1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 #include "uno/mapping.h"
26 #include "vtablefactory.hxx"
28 namespace CPPU_CURRENT_NAMESPACE
31 void dummy_can_throw_anything( char const * );
34 // ----- following decl from libstdc++-v3/libsupc++/unwind-cxx.h and unwind.h
36 struct _Unwind_Exception
38 unsigned exception_class
__attribute__((__mode__(__DI__
)));
39 void * exception_cleanup
;
40 unsigned private_1
__attribute__((__mode__(__word__
)));
41 unsigned private_2
__attribute__((__mode__(__word__
)));
42 } __attribute__((__aligned__
));
44 struct __cxa_exception
46 std::type_info
*exceptionType
;
47 void (*exceptionDestructor
)(void *);
49 void (*unexpectedHandler
)(); // std::unexpected_handler dropped from C++17
50 std::terminate_handler terminateHandler
;
52 __cxa_exception
*nextException
;
56 int handlerSwitchValue
;
57 const unsigned char *actionRecord
;
58 const unsigned char *languageSpecificData
;
62 _Unwind_Exception unwindHeader
;
65 extern "C" void *__cxa_allocate_exception(
66 std::size_t thrown_size
) throw();
67 extern "C" void __cxa_throw (
68 void *thrown_exception
, std::type_info
*tinfo
, void (*dest
) (void *) ) __attribute__((noreturn
));
70 struct __cxa_eh_globals
72 __cxa_exception
*caughtExceptions
;
73 unsigned int uncaughtExceptions
;
76 extern "C" __cxa_eh_globals
*__cxa_get_globals () throw();
77 extern "C" std::type_info
*__cxa_current_exception_type() throw();
80 uno_Any
* pUnoExc
, uno_Mapping
* pUno2Cpp
);
82 void fillUnoException(uno_Any
*, uno_Mapping
* pCpp2Uno
);
87 enum ia64limits
{ MAX_GPR_REGS
= 8, MAX_SSE_REGS
= 8, MAX_REG_SLOTS
= 8 };
89 bool return_in_hidden_param( typelib_TypeDescriptionReference
*pTypeRef
);
90 bool return_via_r8_buffer( typelib_TypeDescriptionReference
*pTypeRef
);
108 http://www.swag.uwaterloo.ca/asx/ABI.html
109 On Itanium, function pointers are pairs: the function address followed
110 by the global pointer value that should be used when calling the
111 function (code address, gp value)
113 struct VtableFactory::Slot
115 sal_uInt64 code_address
;
122 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */