Home
last modified time | relevance | path

Searched refs:is64Bits (Results 1 – 4 of 4) 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()
/external/llvm-project/llvm/include/llvm/Object/
DBinary.h75 static inline unsigned int getELFType(bool isLE, bool is64Bits) { in getELFType() argument
77 return is64Bits ? ID_ELF64L : ID_ELF32L; in getELFType()
79 return is64Bits ? ID_ELF64B : ID_ELF32B; in getELFType()
82 static unsigned int getMachOType(bool isLE, bool is64Bits) { in getMachOType() argument
84 return is64Bits ? ID_MachO64L : ID_MachO32L; in getMachOType()
86 return is64Bits ? ID_MachO64B : ID_MachO32B; in getMachOType()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DBinary.h75 static inline unsigned int getELFType(bool isLE, bool is64Bits) { in getELFType() argument
77 return is64Bits ? ID_ELF64L : ID_ELF32L; in getELFType()
79 return is64Bits ? ID_ELF64B : ID_ELF32B; in getELFType()
82 static unsigned int getMachOType(bool isLE, bool is64Bits) { in getMachOType() argument
84 return is64Bits ? ID_MachO64L : ID_MachO32L; in getMachOType()
86 return is64Bits ? ID_MachO64B : ID_MachO32B; in getMachOType()
/external/llvm/lib/Target/X86/
DX86MCInstLower.cpp696 bool is64Bits = MI.getOpcode() == X86::TLS_addr64 || in LowerTlsAddr() local
726 if (is64Bits) { in LowerTlsAddr()
759 StringRef name = is64Bits ? "__tls_get_addr" : "___tls_get_addr"; in LowerTlsAddr()
766 EmitAndCountInstruction(MCInstBuilder(is64Bits ? X86::CALL64pcrel32 in LowerTlsAddr()