OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:is64Bit
(Results
1 - 17
of
17
) sorted by null
/external/llvm/lib/Target/PowerPC/
PPCJITInfo.h
26
bool
is64Bit
;
30
is64Bit
= tmIs64Bit;
PPCRegisterInfo.cpp
329
bool
is64Bit
= Subtarget.isPPC64();
331
unsigned StackReg =
is64Bit
? PPC::X1 : PPC::R1;
332
unsigned TmpReg =
is64Bit
? PPC::X0 : PPC::R0;
333
unsigned ADDIInstr =
is64Bit
? PPC::ADDI8 : PPC::ADDI;
334
unsigned ADDInstr =
is64Bit
? PPC::ADD8 : PPC::ADD4;
335
unsigned LISInstr =
is64Bit
? PPC::LIS8 : PPC::LIS;
336
unsigned ORIInstr =
is64Bit
? PPC::ORI8 : PPC::ORI;
/external/llvm/include/llvm/MC/
MCELFObjectWriter.h
21
const unsigned
Is64Bit
: 1;
34
bool
is64Bit
() { return
Is64Bit
; }
MCMachObjectWriter.h
28
const unsigned
Is64Bit
: 1;
51
bool
is64Bit
() const { return
Is64Bit
; }
142
bool
is64Bit
() const { return TargetObjectWriter->
is64Bit
(); }
/external/llvm/lib/Target/Sparc/
SparcSubtarget.h
30
bool
Is64Bit
;
34
const std::string &FS, bool
is64bit
);
44
bool
is64Bit
() const { return
Is64Bit
; }
47
if (
is64Bit
()) {
/external/llvm/lib/Target/X86/MCTargetDesc/
X86MCAsmInfo.cpp
52
bool
is64Bit
= T.getArch() == Triple::x86_64;
53
if (
is64Bit
)
61
if (!
is64Bit
)
X86MCTargetDesc.cpp
305
bool
is64Bit
= TheTriple.getArch() == Triple::x86_64;
309
if (
is64Bit
)
321
int stackGrowth =
is64Bit
? -8 : -4;
325
MachineLocation Src(
is64Bit
? X86::RSP : X86::ESP, stackGrowth);
329
MachineLocation CSDst(
is64Bit
? X86::RSP : X86::ESP, stackGrowth);
330
MachineLocation CSSrc(
is64Bit
? X86::RIP : X86::EIP);
346
bool
is64Bit
= T.getArch() == Triple::x86_64;
353
if (
is64Bit
)
357
} else if (T.isOSWindows() &&
is64Bit
)
368
if (
is64Bit
)
[
all
...]
/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/include/llvm/Target/
TargetELFWriterInfo.h
31
bool
is64Bit
, isLittleEndian;
69
unsigned getEIClass() const { return
is64Bit
? ELFCLASS64 : ELFCLASS32; }
75
unsigned getHdrSize() const { return
is64Bit
? 64 : 52; }
76
unsigned getSHdrSize() const { return
is64Bit
? 64 : 40; }
79
unsigned getSymTabEntrySize() const { return
is64Bit
? 24 : 16; }
83
unsigned getPrefELFAlignment() const { return
is64Bit
? 8 : 4; }
87
return
is64Bit
? (hasRelocationAddend() ? 24 : 16)
/external/llvm/lib/CodeGen/
ELFWriter.h
100
///
is64Bit
/isLittleEndian - This information is inferred from the target
102
bool
is64Bit
, isLittleEndian;
159
SectionList.push_back(new ELFSection(Name, isLittleEndian,
is64Bit
));
/external/llvm/lib/Target/PTX/
PTXSubtarget.h
78
bool
Is64Bit
;
83
const std::string &FS, bool
is64Bit
);
92
bool
is64Bit
() const { return
Is64Bit
; }
/frameworks/base/libs/rs/
rsFileA3D.cpp
299
uint32_t
is64Bit
= 0;
300
headerStream.addU32(
is64Bit
);
/external/llvm/lib/MC/
ELFObjectWriter.h
158
bool
is64Bit
() const { return TargetObjectWriter->
is64Bit
(); }
174
if (
is64Bit
())
/external/llvm/lib/Target/X86/
X86Subtarget.h
125
unsigned StackAlignOverride, bool
is64Bit
);
144
bool
is64Bit
() const { return In64BitMode; }
X86InstrInfo.cpp
57
: X86GenInstrInfo((tm.getSubtarget<X86Subtarget>().
is64Bit
()
60
(tm.getSubtarget<X86Subtarget>().
is64Bit
()
727
if (!TM.getSubtarget<X86Subtarget>().
is64Bit
())
[
all
...]
X86ISelLowering.cpp
192
bool
is64Bit
= Subtarget->
is64Bit
();
195
if (
is64Bit
)
201
if (
is64Bit
)
215
X86StackPtr = Subtarget->
is64Bit
() ? X86::RSP : X86::ESP;
228
if (Subtarget->
is64Bit
())
269
if (Subtarget->
is64Bit
())
296
if (Subtarget->
is64Bit
()) {
353
if (Subtarget->
is64Bit
()) {
372
if (Subtarget->
is64Bit
()) {
[
all
...]
Completed in 338 milliseconds