OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TAA
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/MC/
MCSectionMachO.cpp
76
unsigned
TAA
, unsigned reserved2, SectionKind K)
77
: MCSection(SV_MachO, K), TypeAndAttributes(
TAA
), Reserved2(reserved2) {
99
unsigned
TAA
= getTypeAndAttributes();
100
if (
TAA
== 0) {
105
unsigned SectionType =
TAA
& MCSectionMachO::SECTION_TYPE;
119
unsigned SectionAttrs =
TAA
& MCSectionMachO::SECTION_ATTRIBUTES;
183
unsigned &
TAA
, // Out.
217
TAA
= 0;
241
TAA
= TypeID;
247
if (
TAA
== MCSectionMachO::S_SYMBOL_STUBS
[
all
...]
/external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp
462
unsigned
TAA
= 0, StubSize = 0;
466
TAA
, TAAParsed, StubSize);
474
getContext().getMachOSection(Segment, Section,
TAA
, StubSize,
489
unsigned
TAA
= 0, StubSize = 0;
493
TAA
, TAAParsed, StubSize);
503
getContext().getMachOSection(Segment, Section,
TAA
, StubSize, Kind);
505
// If
TAA
wasn't set by ParseSectionSpecifier() above,
508
TAA
= S->getTypeAndAttributes();
510
// Okay, now that we got the section, verify that the
TAA
& StubSize agree.
513
if (S->getTypeAndAttributes() !=
TAA
|| S->getStubSize() != StubSize)
[
all
...]
/external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp
37
unsigned
TAA
= 0, unsigned ImplicitAlign = 0,
362
unsigned
TAA
, unsigned Align,
369
bool isText =
TAA
& MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS;
371
Segment, Section,
TAA
, StubSize,
527
unsigned
TAA
;
531
TAA
, TAAParsed, StubSize);
539
Segment, Section,
TAA
, StubSize,
Completed in 43 milliseconds