OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UNWIND_IP_REG
(Results
1 - 4
of
4
) sorted by null
/development/ndk/sources/android/libportable/arch-arm/
unwind.c
57
#define
UNWIND_IP_REG
15
71
return WRAP(_Unwind_GetGR)(ctx,
UNWIND_IP_REG
) & ~1; // thumb bit
77
uint32_t thumbState = WRAP(_Unwind_GetGR)(ctx,
UNWIND_IP_REG
) & 1;
79
WRAP(_Unwind_SetGR)(ctx,
UNWIND_IP_REG
, new_val);
/ndk/sources/cxx-stl/gabi++/include/
unwind-arm.h
145
#define
UNWIND_IP_REG
15
158
return _Unwind_GetGR(ctx,
UNWIND_IP_REG
) & ~1; // thumb bit
162
uint32_t thumbState = _Unwind_GetGR(ctx,
UNWIND_IP_REG
) & 1;
163
_Unwind_SetGR(ctx,
UNWIND_IP_REG
, (val | thumbState));
/prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/
unwind-arm.h
146
#define
UNWIND_IP_REG
15
159
return _Unwind_GetGR(ctx,
UNWIND_IP_REG
) & ~1; // thumb bit
163
uint32_t thumbState = _Unwind_GetGR(ctx,
UNWIND_IP_REG
) & 1;
164
_Unwind_SetGR(ctx,
UNWIND_IP_REG
, (val | thumbState));
/prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/gabi++/include/
unwind-arm.h
146
#define
UNWIND_IP_REG
15
159
return _Unwind_GetGR(ctx,
UNWIND_IP_REG
) & ~1; // thumb bit
163
uint32_t thumbState = _Unwind_GetGR(ctx,
UNWIND_IP_REG
) & 1;
164
_Unwind_SetGR(ctx,
UNWIND_IP_REG
, (val | thumbState));
Completed in 178 milliseconds