HomeSort by relevance Sort by last modified time
    Searched full:is64bit (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /external/llvm/lib/Target/X86/MCTargetDesc/
X86WinCOFFObjectWriter.cpp 24 const bool Is64Bit;
37 Is64Bit(Is64Bit_) {}
46 return Is64Bit ? COFF::IMAGE_REL_AMD64_REL32 : COFF::IMAGE_REL_I386_REL32;
49 return Is64Bit ? COFF::IMAGE_REL_AMD64_ADDR32 : COFF::IMAGE_REL_I386_DIR32;
51 if (Is64Bit)
55 return Is64Bit ? COFF::IMAGE_REL_AMD64_SECREL : COFF::IMAGE_REL_I386_SECREL;
62 bool Is64Bit) {
63 MCWinCOFFObjectTargetWriter *MOTW = new X86WinCOFFObjectWriter(Is64Bit);
X86ELFObjectWriter.cpp 23 X86ELFObjectWriter(bool is64Bit, uint8_t OSABI);
33 X86ELFObjectWriter::X86ELFObjectWriter(bool Is64Bit, uint8_t OSABI)
34 : MCELFObjectTargetWriter(Is64Bit, OSABI,
35 Is64Bit ? ELF::EM_X86_64 : ELF::EM_386,
36 /*HasRelocationAddend*/ Is64Bit) {}
51 if (is64Bit()) {
219 bool Is64Bit,
222 new X86ELFObjectWriter(Is64Bit, OSABI);
X86MCTargetDesc.h 87 bool Is64Bit,
93 bool Is64Bit,
96 MCObjectWriter *createX86WinCOFFObjectWriter(raw_ostream &OS, bool Is64Bit);
X86AsmBackend.cpp 63 X86ELFObjectWriter(bool is64Bit, uint8_t OSABI, uint16_t EMachine,
65 : MCELFObjectTargetWriter(is64Bit, OSABI, EMachine, HasRelocationAddend) {}
347 return createX86ELFObjectWriter(OS, /*Is64Bit*/ false, OSABI);
357 return createX86ELFObjectWriter(OS, /*Is64Bit*/ true, OSABI);
362 bool Is64Bit;
365 WindowsX86AsmBackend(const Target &T, bool is64Bit)
367 , Is64Bit(is64Bit) {
371 return createX86WinCOFFObjectWriter(OS, Is64Bit);
387 return createX86MachObjectWriter(OS, /*Is64Bit=*/false
    [all...]
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCAsmInfo.cpp 19 PPCMCAsmInfoDarwin::PPCMCAsmInfoDarwin(bool is64Bit) {
20 if (is64Bit)
28 if (!is64Bit)
37 PPCLinuxMCAsmInfo::PPCLinuxMCAsmInfo(bool is64Bit) {
38 if (is64Bit)
62 if (!is64Bit)
66 Data64bitsDirective = is64Bit ? "\t.quad\t" : 0;
PPCELFObjectWriter.cpp 20 PPCELFObjectWriter(bool Is64Bit, uint8_t OSABI);
31 PPCELFObjectWriter::PPCELFObjectWriter(bool Is64Bit, uint8_t OSABI)
32 : MCELFObjectTargetWriter(Is64Bit, OSABI,
33 Is64Bit ? ELF::EM_PPC64 : ELF::EM_PPC,
99 bool Is64Bit,
101 MCELFObjectTargetWriter *MOTW = new PPCELFObjectWriter(Is64Bit, OSABI);
PPCMCAsmInfo.h 24 explicit PPCMCAsmInfoDarwin(bool is64Bit);
30 explicit PPCLinuxMCAsmInfo(bool is64Bit);
  /external/llvm/lib/Target/Sparc/
SparcSubtarget.cpp 27 const std::string &FS, bool is64Bit) :
32 Is64Bit(is64Bit) {
37 if (is64Bit)
SparcSubtarget.h 31 bool Is64Bit;
35 const std::string &FS, bool is64bit);
45 bool is64Bit() const { return Is64Bit; }
48 if (is64Bit()) {
  /external/llvm/test/Scripts/
macho-dumpx 17 self.is64Bit = None
69 f.isLSB, f.is64Bit = False, False
71 f.isLSB, f.is64Bit = True, False
73 f.isLSB, f.is64Bit = False, True
75 f.isLSB, f.is64Bit = True, True
92 if f.is64Bit:
136 def dumpSegmentLoadCommand(f, opts, is64Bit):
138 if is64Bit:
156 dumpSection(f, i, opts, is64Bit)
195 if f.is64Bit
    [all...]
  /external/llvm/include/llvm/Target/
TargetELFWriterInfo.h 28 bool is64Bit, isLittleEndian;
66 unsigned getEIClass() const { return is64Bit ? ELFCLASS64 : ELFCLASS32; }
72 unsigned getHdrSize() const { return is64Bit ? 64 : 52; }
73 unsigned getSHdrSize() const { return is64Bit ? 64 : 40; }
76 unsigned getSymTabEntrySize() const { return is64Bit ? 24 : 16; }
80 unsigned getPrefELFAlignment() const { return is64Bit ? 8 : 4; }
84 return is64Bit ? (hasRelocationAddend() ? 24 : 16)
  /external/llvm/lib/Target/PTX/
PTXSubtarget.cpp 28 const std::string &FS, bool is64Bit)
34 Is64Bit(is64Bit) {
PTXSubtarget.h 79 bool Is64Bit;
84 const std::string &FS, bool is64Bit);
93 bool is64Bit() const { return Is64Bit; }
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp 58 static unsigned getSUBriOpcode(unsigned is64Bit, int64_t Imm) {
59 if (is64Bit) {
70 static unsigned getADDriOpcode(unsigned is64Bit, int64_t Imm) {
71 if (is64Bit) {
82 static unsigned getLEArOpcode(unsigned is64Bit) {
83 return is64Bit ? X86::LEA64r : X86::LEA32r;
92 bool Is64Bit) {
132 const uint16_t *CS = Is64Bit ? CallerSavedRegs64Bit : CallerSavedRegs32Bit;
148 bool Is64Bit, bool UseLEA,
154 Opc = getLEArOpcode(Is64Bit);
    [all...]
X86ELFWriterInfo.cpp 30 EMachine = is64Bit ? EM_X86_64 : EM_386;
36 if (is64Bit) {
67 if (is64Bit) {
88 if (is64Bit) {
111 if (is64Bit) {
135 return is64Bit ?
  /external/llvm/lib/MC/
MCMachObjectTargetWriter.cpp 17 : Is64Bit(Is64Bit_), CPUType(CPUType_), CPUSubtype(CPUSubtype_),
MCELFObjectTargetWriter.cpp 20 HasRelocationAddend(HasRelocationAddend_), Is64Bit(Is64Bit_) {
  /external/llvm/include/llvm/Object/
MachOObject.h 61 bool Is64Bit;
79 MachOObject(MemoryBuffer *Buffer, bool IsLittleEndian, bool Is64Bit);
100 bool is64Bit() const { return Is64Bit; }
103 return Is64Bit ? macho::Header64Size : macho::Header32Size;
130 assert(is64Bit() && "Invalid access!");
  /external/llvm/include/llvm/Support/
OutputBuffer.h 27 /// is64Bit/isLittleEndian - This information is inferred from the target
29 bool is64Bit, isLittleEndian;
32 bool is64bit, bool le)
33 : Output(Out), is64Bit(is64bit), isLittleEndian(le) {}
105 if (!is64Bit)
150 if (!is64Bit)
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsAsmBackend.cpp 69 bool Is64Bit; // 32 or 64 bit words
74 :MCAsmBackend(), OSType(_OSType), IsLittle(_isLittle), Is64Bit(_is64Bit) {}
77 return createMipsELFObjectWriter(OS, OSType, IsLittle, Is64Bit);
218 /*IsLittle*/true, /*Is64Bit*/false);
223 /*IsLittle*/false, /*Is64Bit*/false);
228 /*IsLittle*/true, /*Is64Bit*/true);
233 /*IsLittle*/false, /*Is64Bit*/true);
  /external/llvm/include/llvm/MC/
MCMachObjectWriter.h 28 const unsigned Is64Bit : 1;
51 bool is64Bit() const { return Is64Bit; }
142 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
MCELFObjectWriter.h 56 const unsigned Is64Bit : 1;
97 bool is64Bit() const { return Is64Bit; }
  /external/llvm/lib/Object/
MachOObject.cpp 62 : Buffer(Buffer_), IsLittleEndian(IsLittleEndian_), Is64Bit(Is64Bit_),
77 if (is64Bit()) {
97 bool IsLittleEndian = false, Is64Bit = false;
103 Is64Bit = true;
106 Is64Bit = true;
113 unsigned HeaderSize = Is64Bit ? macho::Header64Size : macho::Header32Size;
120 Is64Bit));
387 if (is64Bit())
  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.h 26 bool is64Bit;
30 is64Bit = tmIs64Bit;
  /external/llvm/lib/Target/
TargetELFWriterInfo.cpp 21 is64Bit(is64Bit_), isLittleEndian(isLittleEndian_) {

Completed in 431 milliseconds

1 2 3 4