HomeSort by relevance Sort by last modified time
    Searched refs:SectionKind (Results 1 - 25 of 41) sorted by null

1 2

  /external/llvm/include/llvm/MC/
SectionKind.h 20 /// SectionKind - This is a simple POD value that classifies the properties of
28 class SectionKind {
38 /// SectionKind are not mergeable.
200 static SectionKind get(Kind K) {
201 SectionKind Res;
207 static SectionKind getMetadata() { return get(Metadata); }
208 static SectionKind getText() { return get(Text); }
209 static SectionKind getReadOnly() { return get(ReadOnly); }
210 static SectionKind getMergeable1ByteCString() {
213 static SectionKind getMergeable2ByteCString()
    [all...]
MCSection.h 17 #include "llvm/MC/SectionKind.h"
40 MCSection(SectionVariant V, SectionKind K) : Variant(V), Kind(K) {}
42 SectionKind Kind;
46 SectionKind getKind() const { return Kind; }
MCSectionELF.h 49 SectionKind K, unsigned entrySize, const MCSymbol *group)
82 static unsigned DetermineEntrySize(SectionKind Kind);
MCSectionCOFF.h 39 int Selection, SectionKind K)
MCContext.h 13 #include "llvm/MC/SectionKind.h"
202 SectionKind K);
206 SectionKind K) {
211 unsigned Flags, SectionKind Kind);
214 unsigned Flags, SectionKind Kind,
220 int Selection, SectionKind Kind);
223 SectionKind Kind) {
MCSectionMachO.h 38 unsigned TAA, unsigned reserved2, SectionKind K);
  /external/llvm/lib/MC/
MCObjectFileInfo.cpp 37 SectionKind::getText());
40 SectionKind::getDataRel());
45 SectionKind::getDataRel());
49 SectionKind::getThreadBSS());
55 SectionKind::getDataRel());
60 SectionKind::getDataRel());
65 SectionKind::getMergeable1ByteCString());
68 SectionKind::getMergeable2ByteCString());
72 SectionKind::getMergeableConst4());
76 SectionKind::getMergeableConst8())
    [all...]
MCContext.cpp 163 unsigned Reserved2, SectionKind Kind) {
191 SectionKind Kind) {
197 SectionKind Kind, unsigned EntrySize, StringRef Group) {
224 SectionKind::getReadOnly(), 4, NULL);
231 SectionKind Kind) {
MCELFStreamer.cpp 128 SectionKind Kind) {
135 SectionKind::getDataRel());
141 ELF::SHF_ALLOC, SectionKind::getText());
147 ELF::SHF_ALLOC, SectionKind::getBSS());
334 SectionKind::getBSS());
WinCOFFStreamer.cpp 93 SectionKind Kind) {
102 SectionKind::getText());
111 SectionKind::getDataRel());
120 SectionKind::getBSS());
153 SectionName, Characteristics, Selection, SectionKind::getBSS());
  /external/llvm/lib/Target/
TargetLoweringObjectFile.cpp 117 SectionKind TargetLoweringObjectFile::getKindForGlobal(const GlobalValue *GV,
127 return SectionKind::getText();
132 return SectionKind::getThreadBSS();
133 return SectionKind::getThreadData();
138 return SectionKind::getCommon();
143 return SectionKind::getBSSLocal();
145 return SectionKind::getBSSExtern();
146 return SectionKind::getBSS();
163 return SectionKind::getReadOnly();
174 return SectionKind::getMergeable1ByteCString()
    [all...]
  /external/llvm/include/llvm/CodeGen/
TargetLoweringObjectFileImpl.h 18 #include "llvm/MC/SectionKind.h"
43 /// getSectionForConstant - Given a constant with the SectionKind, return a
45 virtual const MCSection *getSectionForConstant(SectionKind Kind) const;
49 getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind,
53 SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
88 SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
92 getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind,
95 virtual const MCSection *getSectionForConstant(SectionKind Kind) const;
123 getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind,
127 SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonTargetObjectFile.h 28 SectionKind Kind) const;
33 SectionKind Kind,
HexagonTargetObjectFile.cpp 38 SectionKind::getDataRel());
42 SectionKind::getBSS());
68 SectionKind Kind) const {
83 SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
  /external/llvm/lib/Target/MBlaze/
MBlazeTargetObjectFile.h 28 SectionKind Kind) const;
34 SectionKind Kind,
MBlazeTargetObjectFile.cpp 29 SectionKind::getDataRel());
34 SectionKind::getBSS());
57 SectionKind Kind) const {
77 SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
  /external/llvm/lib/Target/Mips/
MipsTargetObjectFile.h 28 const TargetMachine &TM, SectionKind Kind)const;
33 SectionKind Kind,
MipsTargetObjectFile.cpp 33 SectionKind::getDataRel());
38 SectionKind::getBSS());
61 SectionKind Kind) const {
89 SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
  /external/llvm/lib/Target/XCore/
XCoreTargetObjectFile.cpp 26 SectionKind::getDataRel());
31 SectionKind::getBSS());
37 SectionKind::getMergeableConst4());
42 SectionKind::getMergeableConst8());
47 SectionKind::getMergeableConst16());
59 SectionKind::getReadOnlyWithRel());
  /external/llvm/lib/Target/ARM/
ARMTargetObjectFile.cpp 35 SectionKind::getDataRel());
40 SectionKind::getDataRel());
48 SectionKind::getMetadata());
63 SectionKind::getDataRel());
78 SectionKind::getDataRel());
  /external/llvm/include/llvm/Target/
TargetLoweringObjectFile.h 20 #include "llvm/MC/SectionKind.h"
70 /// getSectionForConstant - Given a constant with the SectionKind, return a
72 virtual const MCSection *getSectionForConstant(SectionKind Kind) const;
75 /// target independent categories embodied in SectionKind.
76 static SectionKind getKindForGlobal(const GlobalValue *GV,
83 SectionKind Kind, Mangler *Mang,
99 getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind,
106 SectionKind Kind) const {
141 SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
  /frameworks/compile/mclinker/lib/LD/
LDSection.cpp 10 #include <llvm/MC/SectionKind.h>
21 : llvm::MCSection(llvm::MCSection::SV_LDContext, llvm::SectionKind::getMetadata()),
  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 32 unsigned Flags, SectionKind Kind);
83 SectionKind::getDataRel());
88 ELF::SHF_ALLOC, SectionKind::getText());
93 ELF::SHF_ALLOC, SectionKind::getBSS());
98 SectionKind::getReadOnly());
104 SectionKind::getThreadData());
110 SectionKind::getThreadBSS());
116 SectionKind::getDataRel());
122 SectionKind::getReadOnlyWithRel());
128 SectionKind::getReadOnlyWithRelLocal())
    [all...]
COFFAsmParser.cpp 35 SectionKind Kind);
85 SectionKind::getText());
92 SectionKind::getDataRel());
99 SectionKind::getBSS());
165 SectionKind Kind) {
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 78 SectionKind::getDataRel(),
91 static SectionKind
92 getELFKindForNamedSection(StringRef Name, SectionKind K) {
109 return SectionKind::getBSS();
115 return SectionKind::getThreadData();
121 return SectionKind::getThreadBSS();
127 static unsigned getELFSectionType(StringRef Name, SectionKind K) {
146 getELFSectionFlags(SectionKind K) {
174 getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind,
188 static const char *getSectionPrefixForGlobal(SectionKind Kind)
    [all...]

Completed in 663 milliseconds

1 2