OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hasRelocationAddend
(Results
1 - 8
of
8
) sorted by null
/external/llvm/include/llvm/Target/
TargetELFWriterInfo.h
87
return is64Bit ? (
hasRelocationAddend
() ? 24 : 16)
88
: (
hasRelocationAddend
() ? 12 : 8);
95
///
hasRelocationAddend
- True if the target uses an addend in the
97
virtual bool
hasRelocationAddend
() const = 0;
/external/llvm/lib/Target/ARM/
ARMELFWriterInfo.h
30
///
hasRelocationAddend
- True if the target uses an addend in the
32
virtual bool
hasRelocationAddend
() const { return false; }
/external/llvm/lib/Target/MBlaze/
MBlazeELFWriterInfo.h
30
///
hasRelocationAddend
- True if the target uses an addend in the
32
virtual bool
hasRelocationAddend
() const { return false; }
/external/llvm/lib/Target/X86/
X86ELFWriterInfo.h
31
///
hasRelocationAddend
- True if the target uses an addend in the
33
virtual bool
hasRelocationAddend
() const { return is64Bit ? true : false; }
/external/llvm/include/llvm/MC/
MCELFObjectWriter.h
20
const unsigned
HasRelocationAddend
: 1;
33
bool
hasRelocationAddend
() { return
HasRelocationAddend
; }
/external/llvm/lib/MC/
ELFObjectWriter.h
159
bool
hasRelocationAddend
() const {
160
return TargetObjectWriter->
hasRelocationAddend
();
ELFObjectWriter.cpp
450
if (!
hasRelocationAddend
())
675
std::string RelaSectionName =
hasRelocationAddend
() ? ".rela" : ".rel";
679
if (
hasRelocationAddend
())
685
Ctx.getELFSection(RelaSectionName,
hasRelocationAddend
() ?
754
if (
hasRelocationAddend
())
763
if (
hasRelocationAddend
())
[
all
...]
/external/llvm/lib/CodeGen/
ELFWriter.cpp
258
unsigned SectionType = TEW->
hasRelocationAddend
() ?
262
if (TEW->
hasRelocationAddend
())
755
bool HasRelA = TEW->
hasRelocationAddend
();
[
all
...]
Completed in 240 milliseconds