/external/llvm/lib/MC/ |
D | MCSectionCOFF.cpp | 18 MCSectionCOFF::~MCSectionCOFF() {} // anchor. in ~MCSectionCOFF() 22 bool MCSectionCOFF::ShouldOmitSectionDirective(StringRef Name, in ShouldOmitSectionDirective() 34 void MCSectionCOFF::setSelection(int Selection) const { in setSelection() 40 void MCSectionCOFF::PrintSwitchToSection(const MCAsmInfo &MAI, in PrintSwitchToSection() 103 bool MCSectionCOFF::UseCodeAlign() const { in UseCodeAlign() 107 bool MCSectionCOFF::isVirtualSection() const { in isVirtualSection()
|
D | MCContext.cpp | 387 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section, in getCOFFSection() 412 MCSectionCOFF *Result = new (COFFAllocator.Allocate()) MCSectionCOFF( in getCOFFSection() 419 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section, in getCOFFSection() 427 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section) { in getCOFFSection() 435 MCSectionCOFF *MCContext::getAssociativeCOFFSection(MCSectionCOFF *Sec, in getAssociativeCOFFSection()
|
D | WinCOFFObjectWriter.cpp | 107 MCSectionCOFF const *MCSection; 156 void defineSection(MCSectionCOFF const &Sec); 266 void WinCOFFObjectWriter::defineSection(MCSectionCOFF const &Sec) { in defineSection() 615 defineSection(static_cast<const MCSectionCOFF &>(Section)); in executePostLayoutBinding() 643 const auto &Sec = cast<MCSectionCOFF>(Sym.getSection()); in isWeak() 897 const MCSectionCOFF &MCSec = *Section->MCSection; in writeObject()
|
D | CMakeLists.txt | 34 MCSectionCOFF.cpp
|
D | MCStreamer.cpp | 528 const auto *TextSecCOFF = cast<MCSectionCOFF>(TextSec); in getWinCFISection() 537 return Context.getAssociativeCOFFSection(cast<MCSectionCOFF>(MainCFISec), in getWinCFISection()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/ |
D | MCSectionCOFF.cpp | 18 MCSectionCOFF::~MCSectionCOFF() = default; // anchor. 22 bool MCSectionCOFF::ShouldOmitSectionDirective(StringRef Name, in ShouldOmitSectionDirective() 34 void MCSectionCOFF::setSelection(int Selection) const { in setSelection() 40 void MCSectionCOFF::PrintSwitchToSection(const MCAsmInfo &MAI, const Triple &T, in PrintSwitchToSection() 110 bool MCSectionCOFF::UseCodeAlign() const { in UseCodeAlign() 114 bool MCSectionCOFF::isVirtualSection() const { in isVirtualSection()
|
D | MCContext.cpp | 422 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section, in getCOFFSection() 447 MCSectionCOFF *Result = new (COFFAllocator.Allocate()) MCSectionCOFF( in getCOFFSection() 454 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section, in getCOFFSection() 462 MCSectionCOFF *MCContext::getCOFFSection(StringRef Section) { in getCOFFSection() 470 MCSectionCOFF *MCContext::getAssociativeCOFFSection(MCSectionCOFF *Sec, in getAssociativeCOFFSection()
|
D | WinCOFFObjectWriter.cpp | 119 MCSectionCOFF const *MCSection = nullptr; 168 void defineSection(MCSectionCOFF const &Sec); 251 static uint32_t getAlignment(const MCSectionCOFF &Sec) { in getAlignment() 287 void WinCOFFObjectWriter::defineSection(const MCSectionCOFF &MCSec) { in defineSection() 683 defineSection(static_cast<const MCSectionCOFF &>(Section)); in executePostLayoutBinding() 1022 const MCSectionCOFF &MCSec = *Section->MCSection; in writeObject()
|
D | CMakeLists.txt | 37 MCSectionCOFF.cpp
|
/external/swiftshader/third_party/LLVM/lib/MC/ |
D | MCSectionCOFF.cpp | 17 MCSectionCOFF::~MCSectionCOFF() {} // anchor. in ~MCSectionCOFF() 21 bool MCSectionCOFF::ShouldOmitSectionDirective(StringRef Name, in ShouldOmitSectionDirective() 31 void MCSectionCOFF::PrintSwitchToSection(const MCAsmInfo &MAI, in PrintSwitchToSection() 78 bool MCSectionCOFF::UseCodeAlign() const { in UseCodeAlign() 82 bool MCSectionCOFF::isVirtualSection() const { in isVirtualSection()
|
D | MCContext.cpp | 27 typedef StringMap<const MCSectionCOFF*> COFFUniqueMapTy; 232 StringMapEntry<const MCSectionCOFF*> &Entry = Map.GetOrCreateValue(Section); in getCOFFSection() 235 MCSectionCOFF *Result = new (*this) MCSectionCOFF(Entry.getKey(), in getCOFFSection()
|
D | MCWin64EH.cpp | 208 const MCSectionCOFF *COFFSection; in GetSectionSuffix() 209 if ((COFFSection = dyn_cast<MCSectionCOFF>(section))) { in GetSectionSuffix()
|
D | WinCOFFObjectWriter.cpp | 368 MCSectionCOFF const &Sec = in DefineSection() 369 static_cast<MCSectionCOFF const &>(SectionData.getSection()); in DefineSection()
|
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
D | MCSectionCOFF.h | 24 class MCSectionCOFF : public MCSection { 38 MCSectionCOFF(StringRef Section, unsigned Characteristics, in MCSectionCOFF() function 45 ~MCSectionCOFF(); 64 static bool classof(const MCSectionCOFF *) { return true; } in classof() argument
|
/external/llvm/include/llvm/MC/ |
D | MCSectionCOFF.h | 24 class MCSectionCOFF final : public MCSection { 52 MCSectionCOFF(StringRef Section, unsigned Characteristics, in MCSectionCOFF() function 63 ~MCSectionCOFF();
|
D | MCContext.h | 45 class MCSectionCOFF; variable 79 SpecificBumpPtrAllocator<MCSectionCOFF> COFFAllocator; 221 std::map<COFFSectionKey, MCSectionCOFF *> COFFUniquingMap; 400 MCSectionCOFF *getCOFFSection(StringRef Section, unsigned Characteristics, 406 MCSectionCOFF *getCOFFSection(StringRef Section, unsigned Characteristics, 410 MCSectionCOFF *getCOFFSection(StringRef Section); 416 MCSectionCOFF * 417 getAssociativeCOFFSection(MCSectionCOFF *Sec, const MCSymbol *KeySym,
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/ |
D | MCSectionCOFF.h | 27 class MCSectionCOFF final : public MCSection { 55 MCSectionCOFF(StringRef Section, unsigned Characteristics, in MCSectionCOFF() function 66 ~MCSectionCOFF();
|
D | MCContext.h | 49 class MCSectionCOFF; variable 91 SpecificBumpPtrAllocator<MCSectionCOFF> COFFAllocator; 252 std::map<COFFSectionKey, MCSectionCOFF *> COFFUniquingMap; 438 MCSectionCOFF *getCOFFSection(StringRef Section, unsigned Characteristics, 444 MCSectionCOFF *getCOFFSection(StringRef Section, unsigned Characteristics, 448 MCSectionCOFF *getCOFFSection(StringRef Section); 454 MCSectionCOFF * 455 getAssociativeCOFFSection(MCSectionCOFF *Sec, const MCSymbol *KeySym,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/ |
D | CodeViewDebug.h | 46 class MCSectionCOFF; variable 160 DenseSet<MCSectionCOFF *> ComdatDebugSections;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/ |
D | COFFAsmParser.cpp | 275 MCSectionCOFF::isImplicitlyDiscardable(SectionName)) in ParseSectionFlags() 603 const MCSectionCOFF *Current = in ParseDirectiveLinkOnce() 604 static_cast<const MCSectionCOFF *>(getStreamer().getCurrentSectionOnly()); in ParseDirectiveLinkOnce()
|
/external/llvm/lib/Target/X86/ |
D | X86AsmPrinter.cpp | 564 if (const MCSectionCOFF *S = dyn_cast<MCSectionCOFF>( in GetCPISymbol()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | CodeViewDebug.h | 108 DenseSet<MCSectionCOFF *> ComdatDebugSections;
|
D | CodeViewDebug.cpp | 596 MCSectionCOFF *GVSec = in switchToDebugSectionForSymbol() 597 GVSym ? dyn_cast<MCSectionCOFF>(&GVSym->getSection()) : nullptr; in switchToDebugSectionForSymbol() 600 MCSectionCOFF *DebugSec = cast<MCSectionCOFF>( in switchToDebugSectionForSymbol()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | TargetLoweringObjectFileImpl.cpp | 1294 static MCSectionCOFF *getCOFFStaticStructorSection(MCContext &Ctx, in getCOFFStaticStructorSection() 1298 MCSectionCOFF *Default) { in getCOFFStaticStructorSection() 1318 cast<MCSectionCOFF>(StaticCtorSection)); in getStaticCtorSection() 1325 cast<MCSectionCOFF>(StaticDtorSection)); in getStaticDtorSection()
|
/external/llvm/lib/MC/MCParser/ |
D | COFFAsmParser.cpp | 517 const MCSectionCOFF *Current = static_cast<const MCSectionCOFF*>( in ParseDirectiveLinkOnce()
|