OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:landingPad
(Results
1 - 5
of
5
) sorted by null
/external/compiler-rt/lib/builtins/
gcc_personality_v0.c
220
uintptr_t
landingPad
= readEncodedPointer(&p, callSiteEncoding);
222
if (
landingPad
== 0 )
233
_Unwind_SetIP(context, (funcStart +
landingPad
));
/external/libcxxabi/src/
cxa_personality.cpp
63
| |
landingPad
| (encoded with callSiteEncoding) | offset relative to lpStart | |
76
| |
landingPad
| (ULEB128) | offset relative to lpStart | |
129
*
landingPad
can be 0, this implies there is nothing to be done.
131
*
landingPad
!= 0 and actionEntry == 0 implies a cleanup needs to be done
132
@
landingPad
.
134
* A cleanup can also be found under
landingPad
!= 0 and actionEntry != 0 in
508
uintptr_t
landingPad
; // null -> nothing found, else something found
530
_Unwind_SetIP(context, results.
landingPad
);
562
results.
landingPad
= 0;
659
uintptr_t
landingPad
= readEncodedPointer(&callSitePtr, callSiteEncoding)
[
all
...]
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/src/
cxa_personality.cpp
63
| |
landingPad
| (encoded with callSiteEncoding) | offset relative to lpStart | |
76
| |
landingPad
| (ULEB128) | offset relative to lpStart | |
129
*
landingPad
can be 0, this implies there is nothing to be done.
131
*
landingPad
!= 0 and actionEntry == 0 implies a cleanup needs to be done
132
@
landingPad
.
134
* A cleanup can also be found under
landingPad
!= 0 and actionEntry != 0 in
508
uintptr_t
landingPad
; // null -> nothing found, else something found
530
_Unwind_SetIP(context, results.
landingPad
);
562
results.
landingPad
= 0;
659
uintptr_t
landingPad
= readEncodedPointer(&callSitePtr, callSiteEncoding)
[
all
...]
/external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp
708
uintptr_t
landingPad
= readEncodedPointer(&callSitePtr,
720
if (
landingPad
== 0) {
789
_Unwind_SetIP(context, funcStart +
landingPad
);
[
all
...]
/external/swiftshader/third_party/LLVM/examples/ExceptionDemo/
ExceptionDemo.cpp
684
uintptr_t
landingPad
= readEncodedPointer(&callSitePtr,
697
if (
landingPad
== 0) {
765
_Unwind_SetIP(context, funcStart +
landingPad
);
973
/// @param caughtResultStorage reference to
landingpad
result storage
[
all
...]
Completed in 278 milliseconds