Home
last modified time | relevance | path

Searched refs:Is64 (Results 1 – 17 of 17) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Object/
DELFTypes.h49 template <endianness E, bool Is64> struct ELFType {
56 static const bool Is64Bits = Is64;
58 using uint = std::conditional_t<Is64, uint64_t, uint32_t>;
59 using Ehdr = Elf_Ehdr_Impl<ELFType<E, Is64>>;
60 using Shdr = Elf_Shdr_Impl<ELFType<E, Is64>>;
61 using Sym = Elf_Sym_Impl<ELFType<E, Is64>>;
62 using Dyn = Elf_Dyn_Impl<ELFType<E, Is64>>;
63 using Phdr = Elf_Phdr_Impl<ELFType<E, Is64>>;
64 using Rel = Elf_Rel_Impl<ELFType<E, Is64>, false>;
65 using Rela = Elf_Rel_Impl<ELFType<E, Is64>, true>;
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/
DCommonConfig.h40 MachineInfo(uint16_t EM, uint8_t ABI, bool Is64, bool IsLittle) in MachineInfo()
41 : EMachine(EM), OSABI(ABI), Is64Bit(Is64), IsLittleEndian(IsLittle) {} in MachineInfo()
43 MachineInfo(uint16_t EM, bool Is64, bool IsLittle) in MachineInfo()
44 : MachineInfo(EM, ELF::ELFOSABI_NONE, Is64, IsLittle) {} in MachineInfo()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCAsmBackend.cpp222 bool Is64 = TT.isPPC64(); in createObjectTargetWriter() local
223 return createPPCELFObjectWriter(Is64, OSABI); in createObjectTargetWriter()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
DMipsELFObjectWriter.cpp59 MipsELFObjectWriter(uint8_t OSABI, bool HasRelocationAddend, bool Is64);
214 bool HasRelocationAddend, bool Is64) in MipsELFObjectWriter() argument
215 : MCELFObjectTargetWriter(Is64, OSABI, ELF::EM_MIPS, HasRelocationAddend) {} in MipsELFObjectWriter()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPUInstructionSelector.cpp266 static unsigned getLogicalBitOpcode(unsigned Opc, bool Is64) { in getLogicalBitOpcode() argument
269 return Is64 ? AMDGPU::S_AND_B64 : AMDGPU::S_AND_B32; in getLogicalBitOpcode()
271 return Is64 ? AMDGPU::S_OR_B64 : AMDGPU::S_OR_B32; in getLogicalBitOpcode()
273 return Is64 ? AMDGPU::S_XOR_B64 : AMDGPU::S_XOR_B32; in getLogicalBitOpcode()
288 bool Is64 = Size > 32 || (DstRB->getID() == AMDGPU::VCCRegBankID && in selectG_AND_OR_XOR() local
290 I.setDesc(TII.get(getLogicalBitOpcode(I.getOpcode(), Is64))); in selectG_AND_OR_XOR()
1127 const bool Is64 = Size == 64; in selectBallot() local
1138 unsigned Opcode = Is64 ? AMDGPU::S_MOV_B64 : AMDGPU::S_MOV_B32; in selectBallot()
1141 Register SrcReg = Is64 ? AMDGPU::EXEC : AMDGPU::EXEC_LO; in selectBallot()
1685 const bool Is64 = MRI->getType(VDataOut).getSizeInBits() == 64; in selectImageIntrinsic() local
[all …]
DAMDGPULegalizerInfo.cpp4775 bool Is64 = MRI.getType(NodePtr).getSizeInBits() == 64; in legalizeBVHIntrinsic() local
4776 unsigned Opcode = IsA16 ? Is64 ? AMDGPU::IMAGE_BVH64_INTERSECT_RAY_a16_nsa in legalizeBVHIntrinsic()
4778 : Is64 ? AMDGPU::IMAGE_BVH64_INTERSECT_RAY_nsa in legalizeBVHIntrinsic()
4782 if (Is64) { in legalizeBVHIntrinsic()
DAMDGPURegisterBankInfo.cpp895 bool Is64 = OpSize % 64 == 0; in executeInWaterfallLoop() local
915 if (Is64) { in executeInWaterfallLoop()
DSIISelLowering.cpp7364 bool Is64 = NodePtr.getValueType() == MVT::i64; in LowerINTRINSIC_W_CHAIN() local
7365 unsigned Opcode = IsA16 ? Is64 ? AMDGPU::IMAGE_BVH64_INTERSECT_RAY_a16_nsa in LowerINTRINSIC_W_CHAIN()
7367 : Is64 ? AMDGPU::IMAGE_BVH64_INTERSECT_RAY_nsa in LowerINTRINSIC_W_CHAIN()
7399 if (Is64) in LowerINTRINSIC_W_CHAIN()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/
DWriter.cpp188 PeHeaderSize = Obj.Is64 ? sizeof(pe32plus_header) : sizeof(pe32_header); in finalize()
281 if (Obj.Is64) { in writeHeaders()
DObject.h103 bool Is64 = false; member
DReader.cpp28 Obj.Is64 = COFFObj.is64(); in readExecutableHeaders()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
DHexagonBitTracker.cpp1248 bool Is64 = DoubleRegsRegClass.contains(PReg); in getNextPhysReg() local
1249 assert(PReg == 0 || Is64 || IntRegsRegClass.contains(PReg)); in getNextPhysReg()
1263 if (!Is64) { in getNextPhysReg()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
DELFDumper.cpp3986 constexpr bool Is64 = ELFT::Is64Bits; in printSectionDetails() local
3988 {Is64 ? "Address" : "Addr", 23}, in printSectionDetails()
3989 {"Off", Is64 ? 40 : 32}, in printSectionDetails()
3990 {"Size", Is64 ? 47 : 39}, in printSectionDetails()
3991 {"ES", Is64 ? 54 : 46}, in printSectionDetails()
3992 {"Lk", Is64 ? 59 : 51}, in printSectionDetails()
3993 {"Inf", Is64 ? 62 : 54}, in printSectionDetails()
3994 {"Al", Is64 ? 66 : 57}}); in printSectionDetails()
4005 const unsigned AddrSize = Is64 ? 16 : 8; in printSectionDetails()
4020 {to_string(format_hex_no_prefix(S.sh_offset, 6)), Is64 ? 39 : 32}, in printSectionDetails()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
DELFYAML.cpp1185 const bool Is64 = static_cast<ELFYAML::Object *>(Ctx)->Header.Class == in input() local
1194 const int64_t MinVal = Is64 ? INT64_MIN : INT32_MIN; in input()
1202 const uint64_t MaxVal = Is64 ? UINT64_MAX : UINT32_MAX; in input()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Object/
DMachOObjectFile.cpp97 bool Is64 = O.is64Bit(); in getSectionPtr() local
98 unsigned SegmentLoadSize = Is64 ? sizeof(MachO::segment_command_64) : in getSectionPtr()
100 unsigned SectionSize = Is64 ? sizeof(MachO::section_64) : in getSectionPtr()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
DMachODump.cpp7788 CompactUnwindEntry(StringRef Contents, unsigned Offset, bool Is64) in CompactUnwindEntry()
7790 if (Is64) in CompactUnwindEntry()
7893 bool Is64 = Obj->is64Bit(); in printMachOCompactUnwindSection() local
7894 uint32_t PointerSize = Is64 ? sizeof(uint64_t) : sizeof(uint32_t); in printMachOCompactUnwindSection()
7903 CompactUnwindEntry Entry(Contents, Offset, Is64); in printMachOCompactUnwindSection()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGBuiltin.cpp9857 bool Is64 = Ops[0]->getType()->getPrimitiveSizeInBits() == 64; in EmitAArch64BuiltinExpr() local
9858 llvm::Type *InTy = Is64 ? Int64Ty : Int32Ty; in EmitAArch64BuiltinExpr()
9859 llvm::Type *FTy = Is64 ? DoubleTy : FloatTy; in EmitAArch64BuiltinExpr()