OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SegmentName
(Results
1 - 9
of
9
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCSectionMachO.h
25
char
SegmentName
[16]; // Not necessarily null terminated!
41
//
SegmentName
is not necessarily null terminated!
42
if (
SegmentName
[15])
43
return StringRef(
SegmentName
, 16);
44
return StringRef(
SegmentName
);
/src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
COFFMasmParser.cpp
255
StringRef
SegmentName
;
258
SegmentName
= getTok().getIdentifier();
261
StringRef SectionName =
SegmentName
;
265
if (
SegmentName
== "_TEXT" ||
SegmentName
.startswith("_TEXT$")) {
266
if (
SegmentName
.size() == 5) {
270
(".text$" +
SegmentName
.substr(6)).toStringRef(SectionNameVector);
284
StringRef
SegmentName
;
287
SegmentName
= getTok().getIdentifier();
/src/external/apache2/llvm/dist/llvm/tools/llvm-size/
llvm-size.cpp
303
StringRef
SegmentName
= StringRef(Sec.segname);
304
if (
SegmentName
== "__TEXT")
306
else if (
SegmentName
== "__DATA")
308
else if (
SegmentName
== "__OBJC")
314
StringRef
SegmentName
= StringRef(Seg.segname);
315
if (
SegmentName
== "__TEXT")
317
else if (
SegmentName
== "__DATA")
319
else if (
SegmentName
== "__OBJC")
329
StringRef
SegmentName
= StringRef(Sec.segname);
330
if (
SegmentName
== "__TEXT"
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/Object/
MachO.h
129
// checked entries are to be used with the
segmentName
(), sectionName() and
140
StringRef
segmentName
(int32_t SegIndex);
149
StringRef
SegmentName
;
175
StringRef
segmentName
() const;
226
StringRef
segmentName
() const;
445
return BindRebaseSectionTable->
segmentName
(SegIndex);
/src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
MachODumper.cpp
280
ArrayRef<char>
SegmentName
;
467
StringRef
SegmentName
= Obj->getSectionFinalSegmentName(DR);
473
W.printBinary("Segment",
SegmentName
, RawSegmentName);
/src/external/apache2/llvm/dist/clang/lib/Parse/
ParsePragma.cpp
875
StringLiteral *
SegmentName
= cast<StringLiteral>(StringResult.get());
876
if (
SegmentName
->getCharByteWidth() != 1) {
936
Actions.ActOnPragmaMSSection(PragmaLocation, SectionFlags,
SegmentName
);
984
StringLiteral *
SegmentName
= nullptr;
997
SegmentName
= cast<StringLiteral>(StringResult.get());
998
if (
SegmentName
->getCharByteWidth() != 1) {
1004
if (
SegmentName
->getLength())
1019
SegmentName
, PragmaName);
1036
StringLiteral *
SegmentName
= nullptr;
1053
SegmentName
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/llvm-nm/
llvm-nm.cpp
554
StringRef
SegmentName
= MachO->getSectionFinalSegmentName(Ref);
555
outs() << "(" <<
SegmentName
<< "," << SectionName << ") ";
1059
StringRef
SegmentName
= Obj.getSectionFinalSegmentName(Ref);
1061
SegmentName
== "__TEXT_EXEC" && SectionName == "__text")
1063
if (
SegmentName
== "__TEXT" && SectionName == "__text")
1065
if (
SegmentName
== "__DATA" && SectionName == "__data")
1067
if (
SegmentName
== "__DATA" && SectionName == "__bss")
1203
StringRef
SegmentName
= Obj->getSectionFinalSegmentName(Ref);
1204
if (
SegmentName
== SegSect[0] && SectionName == SegSect[1])
1322
StringRef
SegmentName
= StringRef()
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Object/
MachOObjectFile.cpp
2057
StringRef
SegmentName
= getSectionFinalSegmentName(Sec);
2059
return (
SegmentName
== "__LLVM" && *NameOrErr == "__bitcode");
3431
StringRef MachORebaseEntry::
segmentName
() const {
3983
StringRef MachOBindEntry::
segmentName
() const {
4024
Info.
SegmentName
=
4026
if (!Info.
SegmentName
.equals(CurSegName)) {
4028
CurSegName = Info.
SegmentName
;
4079
StringRef BindRebaseSegInfo::
segmentName
(int32_t SegIndex) {
4082
return SI.
SegmentName
;
/src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
MachODump.cpp
1517
StringRef
SegmentName
= O->getSectionFinalSegmentName(Ref);
1518
outs() <<
SegmentName
<< ":" << SectName << ":";
7443
StringRef
SegmentName
= MachOOF->getSectionFinalSegmentName(DR);
7444
if (
SegmentName
!= DisSegName)
10323
StringRef
SegmentName
= Entry.
segmentName
();
10329
SegmentName
.str().c_str(), SectionName.str().c_str(),
10367
StringRef
SegmentName
= Entry.
segmentName
();
10376
outs() << left_justify(
SegmentName
, 8) << "
[
all
...]
Completed in 47 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026