Home
last modified time | relevance | path

Searched refs:is64 (Results 1 – 12 of 12) sorted by relevance

/external/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCAsmBackend.cpp208 bool is64 = getPointerSize() == 8; in createObjectWriter() local
211 /*Is64Bit=*/is64, in createObjectWriter()
212 (is64 ? MachO::CPU_TYPE_POWERPC64 : MachO::CPU_TYPE_POWERPC), in createObjectWriter()
224 bool is64 = getPointerSize() == 8; in createObjectWriter() local
225 return createPPCELFObjectWriter(OS, is64, isLittleEndian(), OSABI); in createObjectWriter()
/external/valgrind/VEX/priv/
Dguest_arm64_toIR.c1302 static const HChar* nameIRegOrSP ( Bool is64, UInt iregNo ) in nameIRegOrSP() argument
1304 vassert(is64 == True || is64 == False); in nameIRegOrSP()
1305 return is64 ? nameIReg64orSP(iregNo) : nameIReg32orSP(iregNo); in nameIRegOrSP()
1308 static const HChar* nameIRegOrZR ( Bool is64, UInt iregNo ) in nameIRegOrZR() argument
1310 vassert(is64 == True || is64 == False); in nameIRegOrZR()
1311 return is64 ? nameIReg64orZR(iregNo) : nameIReg32orZR(iregNo); in nameIRegOrZR()
1314 static IRExpr* getIRegOrZR ( Bool is64, UInt iregNo ) in getIRegOrZR() argument
1316 vassert(is64 == True || is64 == False); in getIRegOrZR()
1317 return is64 ? getIReg64orZR(iregNo) : getIReg32orZR(iregNo); in getIRegOrZR()
1320 static void putIRegOrZR ( Bool is64, UInt iregNo, IRExpr* e ) in putIRegOrZR() argument
[all …]
Dhost_arm64_defs.h542 Bool is64; member
884 extern ARM64Instr* ARM64Instr_Cmp ( HReg, ARM64RIA*, Bool is64 );
Dhost_arm64_defs.c829 ARM64Instr* ARM64Instr_Cmp ( HReg argL, ARM64RIA* argR, Bool is64 ) { in ARM64Instr_Cmp() argument
834 i->ARM64in.Cmp.is64 = is64; in ARM64Instr_Cmp()
1374 vex_printf("cmp%s ", i->ARM64in.Cmp.is64 ? " " : "(w)" ); in ppARM64Instr()
3294 Bool is64 = i->ARM64in.Cmp.is64; in emit_ARM64Instr() local
3300 is64 ? X11 : X01, X110001, in emit_ARM64Instr()
3308 *p++ = X_3_8_5_6_5_5(is64 ? X111 : X011, in emit_ARM64Instr()
/external/valgrind/coregrind/
Dm_translate.c1027 Bool is64 = True; in gen_PUSH() local
1041 Bool is64 = False; in gen_PUSH() local
1092 is64 ? IRConst_U64(0) : IRConst_U32(0), in gen_PUSH()
1121 Bool is64 = True; in gen_POP() local
1133 Bool is64 = False; in gen_POP()
1174 is64 ? IRConst_U64(0) : IRConst_U32(0), in gen_POP()
/external/llvm/include/llvm/Object/
DMachO.h285 bool is64);
298 bool is64,
DCOFF.h783 bool is64() const { return PE32PlusHeader; } in is64() function
/external/valgrind/coregrind/m_debuginfo/
Dreaddwarf.c209 ULong step_initial_length_field ( DiCursor* p_img, /*OUT*/Bool* is64 ) in step_initial_length_field() argument
213 *is64 = True; in step_initial_length_field()
216 *is64 = False; in step_initial_length_field()
222 ULong read_initial_length_field ( DiCursor p_img, /*OUT*/Bool* is64 ) in read_initial_length_field() argument
226 return step_initial_length_field( &p_img, is64 ); in read_initial_length_field()
349 Bool is64; in read_dwarf2_lineblock() local
393 info.li_length = step_initial_length_field( &external, &is64 ); in read_dwarf2_lineblock()
419 info.li_header_length = is64 ? ML_(cur_step_ULong)(&external) in read_dwarf2_lineblock()
496 = ML_(cur_plus)(data, info.li_length + (is64 ? 12 : 4)); in read_dwarf2_lineblock()
Dreaddwarf3.c357 static ULong get_Initial_Length ( /*OUT*/Bool* is64, in get_Initial_Length() argument
363 *is64 = False; in get_Initial_Length()
369 *is64 = True; in get_Initial_Length()
372 *is64 = False; in get_Initial_Length()
5237 Bool is64;
5245 len = get_Initial_Length( &is64, &aranges,
5248 d_i_offset = get_Dwarfish_UWord( &aranges, is64 );
/external/llvm/lib/Object/
DMachOObjectFile.cpp1569 MachOObjectFile::rebaseTable(ArrayRef<uint8_t> Opcodes, bool is64) { in rebaseTable() argument
1570 MachORebaseEntry Start(Opcodes, is64); in rebaseTable()
1573 MachORebaseEntry Finish(Opcodes, is64); in rebaseTable()
1819 MachOObjectFile::bindTable(ArrayRef<uint8_t> Opcodes, bool is64, in bindTable() argument
1821 MachOBindEntry Start(Opcodes, is64, BKind); in bindTable()
1824 MachOBindEntry Finish(Opcodes, is64, BKind); in bindTable()
DCOFFObjectFile.cpp1254 AddrIndex * (OwningObject->is64() ? 8 : 4); in getImportAddress()
1258 if (OwningObject->is64()) in getImportAddress()
/external/llvm/lib/Target/X86/
DX86InstrInfo.cpp4409 bool is64 = X86::GR64RegClass.contains(Reg); in copyPhysReg() local
4411 if ((FromEFLAGS || ToEFLAGS) && (is32 || is64)) { in copyPhysReg()
4412 int Mov = is64 ? X86::MOV64rr : X86::MOV32rr; in copyPhysReg()
4413 int Push = is64 ? X86::PUSH64r : X86::PUSH32r; in copyPhysReg()
4414 int PushF = is64 ? X86::PUSHF64 : X86::PUSHF32; in copyPhysReg()
4415 int Pop = is64 ? X86::POP64r : X86::POP32r; in copyPhysReg()
4416 int PopF = is64 ? X86::POPF64 : X86::POPF32; in copyPhysReg()
4417 int AX = is64 ? X86::RAX : X86::EAX; in copyPhysReg()