Searched refs:reg (Results 1 - 7 of 7) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
H A D | DwarfParser.hpp | 378 uint64_t reg; 419 reg = addressSpace.getULEB128(p, instructionsEnd); 422 if (reg > kMaxRegisterNumber) { 424 "malformed DW_CFA_offset_extended dwarf unwind, reg too big\n"); 427 results->savedRegisters[reg].location = kRegisterInCFA; 428 results->savedRegisters[reg].value = offset; 430 fprintf(stderr, "DW_CFA_offset_extended(reg=%lld, offset=%lld)\n", reg, 434 reg = addressSpace.getULEB128(p, instructionsEnd); 436 if (reg > kMaxRegisterNumbe [all...] |
H A D | DwarfInstructions.hpp | 240 uint32_t reg; local 372 reg = addressSpace.get8(p); 374 value = sp[-reg]; 377 fprintf(stderr, "duplicate %d in stack\n", reg); 645 reg = opcode - DW_OP_reg0; 646 *(++sp) = registers.getRegister((int)reg); 648 fprintf(stderr, "push reg %d\n", reg); 652 reg = (uint32_t)addressSpace.getULEB128(p, expressionEnd); 653 *(++sp) = registers.getRegister((int)reg); [all...] |
H A D | Unwind-EHABI.cpp | 245 uint8_t reg = byte & 0x0f; local 246 if (reg == 13 || reg == 15) 249 _Unwind_VRS_Get(context, _UVRSC_CORE, UNW_ARM_R0 + reg, 748 _LIBUNWIND_TRACE_API("_Unwind_VRS_Set(context=%p, regclass=%d, reg=%d, " 851 _LIBUNWIND_TRACE_API("_Unwind_VRS_Get(context=%p, regclass=%d, reg=%d, "
|
/ndk/sources/cxx-stl/gabi++/include/ |
H A D | unwind-arm.h | 147 static inline uint32_t _Unwind_GetGR( _Unwind_Context* ctx, int reg) { argument 149 _Unwind_VRS_Get(ctx, _UVRSC_CORE, reg, _UVRSD_UINT32, &val); 153 static inline void _Unwind_SetGR(_Unwind_Context* ctx, int reg, uint32_t val) { argument 154 _Unwind_VRS_Set(ctx, _UVRSC_CORE, reg, _UVRSD_UINT32, &val);
|
/ndk/sources/host-tools/nawk-20071023/ |
H A D | lex.c | 168 int reg = 0; /* 1 => return a REGEXPR now */ variable 182 if (reg) { 183 reg = 0; 501 reg = 1; 516 FATAL("out of space for reg expr %.10s...", buf);
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
H A D | Android.mk | 377 LOCAL_MODULE := reg-stack 378 LOCAL_SRC_FILES := reg-stack.cpp
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
H A D | Android.mk | 377 LOCAL_MODULE := reg-stack 378 LOCAL_SRC_FILES := reg-stack.cpp
|
Completed in 292 milliseconds