Home
last modified time | relevance | path

Searched refs:is64Bits (Results 1 – 3 of 3) sorted by relevance

/external/llvm/include/llvm/Object/
DBinary.h65 static inline unsigned int getELFType(bool isLE, bool is64Bits) { in getELFType() argument
67 return is64Bits ? ID_ELF64L : ID_ELF32L; in getELFType()
69 return is64Bits ? ID_ELF64B : ID_ELF32B; in getELFType()
72 static unsigned int getMachOType(bool isLE, bool is64Bits) { in getMachOType() argument
74 return is64Bits ? ID_MachO64L : ID_MachO32L; in getMachOType()
76 return is64Bits ? ID_MachO64B : ID_MachO32B; in getMachOType()
DELFTypes.h24 template <endianness target_endianness, bool is64Bits> struct ELFType {
26 static const bool Is64Bits = is64Bits;
/external/llvm/lib/Target/X86/
DX86MCInstLower.cpp716 bool is64Bits = MI.getOpcode() == X86::TLS_addr64 || in LowerTlsAddr() local
746 if (is64Bits) { in LowerTlsAddr()
779 StringRef name = is64Bits ? "__tls_get_addr" : "___tls_get_addr"; in LowerTlsAddr()
786 EmitAndCountInstruction(MCInstBuilder(is64Bits ? X86::CALL64pcrel32 in LowerTlsAddr()