OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SectionName
(Results
1 - 15
of
15
) sorted by null
/external/llvm/include/llvm/MC/
MCSectionCOFF.h
26
StringRef
SectionName
;
48
: MCSection(SV_COFF, K),
SectionName
(Section),
63
StringRef getSectionName() const { return
SectionName
; }
65
return
SectionName
.str() + "_begin";
68
return
SectionName
.str() + "_end";
MCSectionELF.h
30
///
SectionName
- This is the name of the section. The referenced memory is
32
StringRef
SectionName
;
52
: MCSection(SV_ELF, K),
SectionName
(Section), Type(type), Flags(flags),
61
StringRef getSectionName() const { return
SectionName
; }
63
return
SectionName
.str() + "_begin"; }
65
return
SectionName
.str() + "_end";
MCSectionMachO.h
27
char
SectionName
[16]; // Not necessarily null terminated!
142
//
SectionName
is not necessarily null terminated!
143
if (
SectionName
[15])
144
return StringRef(
SectionName
, 16);
145
return StringRef(
SectionName
);
/external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp
206
StringRef
SectionName
= GV->getSection();
209
Kind = getELFKindForNamedSection(
SectionName
, Kind);
211
return getContext().getELFSection(
SectionName
,
212
getELFSectionType(
SectionName
, Kind),
/external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp
154
bool ParseSectionName(StringRef &
SectionName
);
231
bool ELFAsmParser::ParseSectionName(StringRef &
SectionName
) {
238
SectionName
= getTok().getIdentifier();
262
SectionName
= StringRef(FirstLoc.getPointer(), Size);
345
StringRef
SectionName
;
347
if (ParseSectionName(
SectionName
))
357
if (
SectionName
== ".fini" ||
SectionName
== ".init" ||
358
SectionName
== ".rodata")
360
if (
SectionName
== ".fini" || SectionName == ".init"
[
all
...]
COFFAsmParser.cpp
38
bool ParseSectionName(StringRef &
SectionName
);
297
bool COFFAsmParser::ParseSectionName(StringRef &
SectionName
) {
301
SectionName
= getTok().getIdentifier();
321
StringRef
SectionName
;
323
if (ParseSectionName(
SectionName
))
347
ParseSectionSwitch(
SectionName
, Flags, Kind);
DarwinAsmParser.cpp
503
StringRef
SectionName
;
504
if (getParser().parseIdentifier(
SectionName
))
511
std::string SectionSpec =
SectionName
;
/external/llvm/tools/llvm-readobj/
ELFDumper.cpp
638
StringRef
SectionName
= "";
640
Obj->getSectionName(Section,
SectionName
);
662
W.printHex ("Section",
SectionName
, Symbol->st_shndx);
MachODumper.cpp
410
StringRef
SectionName
= "";
414
error(SecI->getName(
SectionName
));
423
W.printHex ("Section",
SectionName
, Symbol.SectionIndex);
COFFDumper.cpp
817
StringRef
SectionName
= "";
819
Obj->getSectionName(Section,
SectionName
);
823
W.printNumber("Section",
SectionName
, Symbol->SectionNumber);
[
all
...]
/external/chromium_org/courgette/
disassembler_win32_x64.cc
325
std::string DisassemblerWin32X64::
SectionName
(const Section* section) {
670
s <<
SectionName
(section) << "+"
disassembler_win32_x86.cc
325
std::string DisassemblerWin32X86::
SectionName
(const Section* section) {
670
s <<
SectionName
(section) << "+"
/external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp
249
std::string
SectionName
= ".mips16.call.fp." + Name;
263
FStub->setSection(
SectionName
);
391
std::string
SectionName
= ".mips16.fn." + Name;
402
FStub->setSection(
SectionName
);
/external/llvm/tools/llvm-objdump/
llvm-objdump.cpp
727
StringRef
SectionName
;
728
if (error(Section->getName(
SectionName
)))
729
SectionName
= "";
730
outs() <<
SectionName
;
/external/llvm/lib/MC/
ELFObjectWriter.cpp
[
all
...]
Completed in 241 milliseconds