/external/llvm/lib/Target/X86/InstPrinter/ |
X86IntelInstPrinter.h | 30 virtual void printRegName(raw_ostream &OS, unsigned RegNo) const; 35 static const char *getRegisterName(unsigned RegNo);
|
/external/llvm/lib/Target/XCore/InstPrinter/ |
XCoreInstPrinter.cpp | 27 void XCoreInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const { 28 OS << StringRef(getRegisterName(RegNo)).lower();
|
/ndk/sources/cxx-stl/gabi++/include/ |
unwind-arm.h | 124 uint32_t regno, 130 uint32_t regno,
|
/external/llvm/lib/MC/ |
MCInstPrinter.cpp | 28 void MCInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const {
|
/external/llvm/lib/Target/MBlaze/InstPrinter/ |
MBlazeInstPrinter.h | 32 static const char *getRegisterName(unsigned RegNo);
|
/external/llvm/lib/Target/MSP430/InstPrinter/ |
MSP430InstPrinter.h | 32 static const char *getRegisterName(unsigned RegNo);
|
/external/valgrind/main/VEX/useful/ |
x87_to_vex_and_back.c | 204 UInt fp_get_tag ( Fpu_State* x87, UInt regno ) 206 assert(!(regno < 0 || regno > 7)); 207 return (x87->env[FP_ENV_TAG] >> (2*regno)) & 3;
|
hd_fpu.c | 273 UInt regno = fp_get_tos(); local 274 assert(regno >= 0 && regno < 8); 275 regno += stregno; 276 if (regno >= 8) regno -= 8; 277 assert(regno >= 0 && regno < 8); 278 return regno; 304 UInt fp_get_tag ( UInt regno ) [all...] |
/external/javassist/src/main/javassist/ |
CtNewWrappedMethod.java | 167 * @param regno the index of the local variable in which 172 CtClass[] params, int regno) { 173 return JvstCodeGen.compileParameterList(code, params, regno);
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
hard-reg-set.h | 507 unsigned min, unsigned *regno) 525 *regno = min; 529 hard_reg_set_iter_set (hard_reg_set_iterator *iter, unsigned *regno) 543 *regno += 1; 545 return (*regno < FIRST_PSEUDO_REGISTER); 549 *regno = (*regno + HARD_REG_ELT_BITS - 1); 550 *regno -= *regno % HARD_REG_ELT_BITS; 558 *regno += HARD_REG_ELT_BITS [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
hard-reg-set.h | 507 unsigned min, unsigned *regno) 525 *regno = min; 529 hard_reg_set_iter_set (hard_reg_set_iterator *iter, unsigned *regno) 543 *regno += 1; 545 return (*regno < FIRST_PSEUDO_REGISTER); 549 *regno = (*regno + HARD_REG_ELT_BITS - 1); 550 *regno -= *regno % HARD_REG_ELT_BITS; 558 *regno += HARD_REG_ELT_BITS [all...] |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
hard-reg-set.h | 507 unsigned min, unsigned *regno) 525 *regno = min; 529 hard_reg_set_iter_set (hard_reg_set_iterator *iter, unsigned *regno) 543 *regno += 1; 545 return (*regno < FIRST_PSEUDO_REGISTER); 549 *regno = (*regno + HARD_REG_ELT_BITS - 1); 550 *regno -= *regno % HARD_REG_ELT_BITS; 558 *regno += HARD_REG_ELT_BITS [all...] |
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
hard-reg-set.h | 507 unsigned min, unsigned *regno) 525 *regno = min; 529 hard_reg_set_iter_set (hard_reg_set_iterator *iter, unsigned *regno) 543 *regno += 1; 545 return (*regno < FIRST_PSEUDO_REGISTER); 549 *regno = (*regno + HARD_REG_ELT_BITS - 1); 550 *regno -= *regno % HARD_REG_ELT_BITS; 558 *regno += HARD_REG_ELT_BITS [all...] |
/external/elfutils/libebl/ |
libebl.h | 237 If NAME is null, return the maximum REGNO + 1 that has a name. 238 Otherwise, store in NAME the name for DWARF register number REGNO 240 Return -1 if NAMELEN is too short or REGNO is negative or too large. 241 Return 0 if REGNO is unused (a gap in the DWARF number assignment). 247 int regno, char *name, size_t namelen, 332 Dwarf_Half regno; /* DWARF register number. */ member in struct:__anon7912
|
/external/llvm/lib/Target/MBlaze/AsmParser/ |
MBlazeAsmParser.cpp | 44 virtual bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc); 391 bool MBlazeAsmParser::ParseRegister(unsigned &RegNo, 396 RegNo = Reg->getReg(); 412 unsigned RegNo = MatchRegisterName(getLexer().getTok().getIdentifier()); 413 if (RegNo == 0) 417 return MBlazeOperand::CreateReg(RegNo, StartLoc, EndLoc);
|
/external/valgrind/main/coregrind/m_gdbserver/ |
target.h | 168 If REGNO is -1, fetch all registers; otherwise, fetch at least REGNO. */ 169 extern void valgrind_fetch_registers (int regno); 172 If REGNO is -1, store all registers; otherwise, store at least REGNO. */ 173 extern void valgrind_store_registers (int regno);
|
valgrind-low-mips32.c | 149 int regno = abs_regno % num_regs; local 154 switch (regno) { 228 default: VG_(printf)("regno: %d\n", regno); vg_assert(0);
|
valgrind-low-x86.c | 124 int regno = abs_regno % num_regs; local 129 switch (regno) { 171 convert_f64le_to_f80le ((UChar *)&x86->guest_FPREG[regno-16], 177 VG_(transfer) (&x86->guest_FPREG[regno-16], &fpreg64,
|
/external/llvm/include/llvm/CodeGen/ |
CallingConvLower.h | 69 unsigned RegNo, MVT LocVT, 73 Ret.Loc = RegNo; 83 unsigned RegNo, MVT LocVT, 86 Ret = getReg(ValNo, ValVT, RegNo, LocVT, HTP);
|
/external/llvm/lib/Target/R600/InstPrinter/ |
AMDGPUInstPrinter.h | 30 static const char *getRegisterName(unsigned RegNo);
|
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/lib/ |
libdl.so | |
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/lib/ |
libdl.so | |
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/lib/ |
libdl.so | |
/prebuilts/ndk/4/platforms/android-8/arch-arm/usr/lib/ |
libdl.so | |
/prebuilts/ndk/5/platforms/android-3/arch-arm/usr/lib/ |
libdl.so | |