HomeSort by relevance Sort by last modified time
    Searched refs:TAA (Results 1 - 15 of 15) sorted by null

  /external/llvm/lib/MC/
MCSectionMachO.cpp 73 unsigned TAA, unsigned reserved2, SectionKind K,
75 : MCSection(SV_MachO, K, Begin), TypeAndAttributes(TAA),
98 unsigned TAA = getTypeAndAttributes();
99 if (TAA == 0) {
118 unsigned SectionAttrs = TAA & MachO::SECTION_ATTRIBUTES;
174 unsigned &TAA, // Out.
206 TAA = 0;
224 TAA = TypeDescriptor - std::begin(SectionTypeDescriptors);
230 if (TAA == MachO::S_SYMBOL_STUBS)
250 TAA |= AttrDescriptorI->AttrFlag
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCSectionMachO.cpp 76 unsigned TAA, unsigned reserved2, SectionKind K)
77 : MCSection(SV_MachO, K), TypeAndAttributes(TAA), Reserved2(reserved2) {
98 unsigned TAA = getTypeAndAttributes();
99 if (TAA == 0) {
104 unsigned SectionType = TAA & MCSectionMachO::SECTION_TYPE;
118 unsigned SectionAttrs = TAA & MCSectionMachO::SECTION_ATTRIBUTES;
182 unsigned &TAA, // Out.
216 TAA = 0;
240 TAA = TypeID;
246 if (TAA == MCSectionMachO::S_SYMBOL_STUBS
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
MCSectionMachO.cpp 85 unsigned TAA, unsigned reserved2, SectionKind K,
87 : MCSection(SV_MachO, K, Begin), TypeAndAttributes(TAA),
110 unsigned TAA = getTypeAndAttributes();
111 if (TAA == 0) {
130 unsigned SectionAttrs = TAA & MachO::SECTION_ATTRIBUTES;
186 unsigned &TAA, // Out.
218 TAA = 0;
235 TAA = TypeDescriptor - std::begin(SectionTypeDescriptors);
241 if (TAA == MachO::S_SYMBOL_STUBS)
260 TAA |= AttrDescriptorI->AttrFlag
    [all...]
  /external/llvm/include/llvm/MC/
MCSectionMachO.h 37 MCSectionMachO(StringRef Segment, StringRef Section, unsigned TAA,
70 /// a string indicating the problem. If no TAA was parsed, TAA is not altered,
75 unsigned &TAA, // Out.
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
MCSectionMachO.h 37 MCSectionMachO(StringRef Segment, StringRef Section, unsigned TAA,
70 /// a string indicating the problem. If no TAA was parsed, TAA is not altered,
75 unsigned &TAA, // Out.
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCSectionMachO.h 37 unsigned TAA, unsigned reserved2, SectionKind K);
160 /// If no TAA was parsed, TAA is not altered, and TAAWasSet becomes false.
164 unsigned &TAA, // Out.
  /external/swiftshader/third_party/LLVM/lib/MC/MCParser/
DarwinAsmParser.cpp 35 unsigned TAA = 0, unsigned ImplicitAlign = 0,
298 unsigned TAA, unsigned Align,
307 Segment, Section, TAA, StubSize,
436 unsigned TAA;
440 TAA, TAAParsed, StubSize);
448 Segment, Section, TAA, StubSize,
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 514 unsigned TAA = 0, StubSize = 0;
518 TAA, TAAParsed, StubSize);
526 Segment, Section, TAA, StubSize, SectionKind::getData());
549 unsigned TAA = 0, StubSize = 0;
556 TAA, TAAParsed, StubSize);
566 getContext().getMachOSection(Segment, Section, TAA, StubSize, Kind);
568 // If TAA wasn't set by ParseSectionSpecifier() above,
571 TAA = S->getTypeAndAttributes();
573 // Okay, now that we got the section, verify that the TAA & StubSize agree.
576 if (S->getTypeAndAttributes() != TAA || S->getStubSize() != StubSize)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 354 unsigned TAA = 0, StubSize = 0;
358 TAA, TAAParsed, StubSize);
370 getContext().getMachOSection(Segment, Section, TAA, StubSize, Kind);
372 // If TAA wasn't set by ParseSectionSpecifier() above,
375 TAA = S->getTypeAndAttributes();
377 // Okay, now that we got the section, verify that the TAA & StubSize agree.
380 if (S->getTypeAndAttributes() != TAA || S->getStubSize() != StubSize) {
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 41 unsigned TAA = 0, unsigned ImplicitAlign = 0,
394 unsigned TAA, unsigned Align,
401 bool isText = TAA & MachO::S_ATTR_PURE_INSTRUCTIONS;
403 Segment, Section, TAA, StubSize,
612 unsigned TAA;
616 TAA, TAAParsed, StubSize);
647 Segment, Section, TAA, StubSize,
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 54 unsigned TAA = 0, unsigned ImplicitAlign = 0,
470 unsigned TAA, unsigned Align,
477 bool isText = TAA & MachO::S_ATTR_PURE_INSTRUCTIONS;
479 Segment, Section, TAA, StubSize,
686 unsigned TAA;
690 TAA, TAAParsed, StubSize);
721 Segment, Section, TAA, StubSize,
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 712 unsigned TAA = 0, StubSize = 0;
716 TAA, TAAParsed, StubSize);
724 Segment, Section, TAA, StubSize, SectionKind::getData());
746 unsigned TAA = 0, StubSize = 0;
753 TAA, TAAParsed, StubSize);
763 getContext().getMachOSection(Segment, Section, TAA, StubSize, Kind);
765 // If TAA wasn't set by ParseSectionSpecifier() above,
768 TAA = S->getTypeAndAttributes();
770 // Okay, now that we got the section, verify that the TAA & StubSize agree.
773 if (S->getTypeAndAttributes() != TAA || S->getStubSize() != StubSize)
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp     [all...]
  /external/clang/lib/Basic/
Targets.cpp 258 unsigned TAA, StubSize;
261 TAA, HasTAA, StubSize);
    [all...]

Completed in 7608 milliseconds