You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
861 B
27 lines
861 B
/*
|
|
* Copyright (c) 2018 - present Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
/* A simple implementation of the Itanium Base ABI for analysis purposes.
|
|
See http://itanium-cxx-abi.github.io/cxx-abi/abi-eh.html */
|
|
|
|
#include "abort_message.cpp"
|
|
#include "cxa_exception.cpp"
|
|
#include "cxa_exception_storage.cpp"
|
|
#include "cxa_handlers.cpp"
|
|
#include "llair_intrinsics.h"
|
|
|
|
extern "C" {
|
|
|
|
__attribute__((always_inline)) _Unwind_Reason_Code
|
|
_Unwind_RaiseException(_Unwind_Exception* unwind_exception) {
|
|
__llair_throw(thrown_object_from_cxa_exception(
|
|
abi::cxa_exception_from_exception_unwind_exception(unwind_exception)));
|
|
}
|
|
}
|