Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Object/
DBinary.h63 static inline unsigned int getELFType(bool isLE, bool is64Bits) { in getELFType() argument
65 return is64Bits ? ID_ELF64L : ID_ELF32L; in getELFType()
67 return is64Bits ? ID_ELF64B : ID_ELF32B; in getELFType()
70 static unsigned int getMachOType(bool isLE, bool is64Bits) { in getMachOType() argument
72 return is64Bits ? ID_MachO64L : ID_MachO32L; in getMachOType()
74 return is64Bits ? ID_MachO64B : ID_MachO32B; in getMachOType()
DELFTypes.h24 bool is64Bits>
28 static const bool Is64Bits = is64Bits;
/external/llvm/lib/Target/X86/
DX86MCInstLower.cpp681 bool is64Bits = MI.getOpcode() == X86::TLS_addr64 || in LowerTlsAddr() local
711 if (is64Bits) { in LowerTlsAddr()
744 StringRef name = is64Bits ? "__tls_get_addr" : "___tls_get_addr"; in LowerTlsAddr()
751 EmitAndCountInstruction(MCInstBuilder(is64Bits ? X86::CALL64pcrel32 in LowerTlsAddr()