Searched refs:Selection (Results 1 - 22 of 22) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSectionCOFF.h45 /// This is the Selection field for the section symbol, if it is a COMDAT
47 mutable int Selection; member in class:llvm::final
53 MCSymbol *COMDATSymbol, int Selection, SectionKind K,
56 COMDATSymbol(COMDATSymbol), Selection(Selection) {
68 int getSelection() const { return Selection; }
70 void setSelection(int Selection) const;
52 MCSectionCOFF(StringRef Name, unsigned Characteristics, MCSymbol *COMDATSymbol, int Selection, SectionKind K, MCSymbol *Begin) argument
H A DMCContext.h628 int Selection,
/freebsd-current/contrib/llvm-project/llvm/lib/MC/
H A DMCSectionCOFF.cpp31 void MCSectionCOFF::setSelection(int Selection) const {
32 assert(Selection != 0 && "invalid COMDAT selection type");
33 this->Selection = Selection;
75 switch (Selection) {
H A DWinCOFFObjectWriter.cpp347 Symbol->Aux[0].Aux.SectionDefinition.Selection = MCSec.getSelection();
553 W.OS << char(i.Aux.SectionDefinition.Selection);
741 return Section.Symbol->Aux[0].Aux.SectionDefinition.Selection ==
1069 if (Section->Symbol->Aux[0].Aux.SectionDefinition.Selection !=
H A DMCContext.cpp670 StringRef COMDATSymName, int Selection,
680 COFFSectionKey T{Section, COMDATSymName, Selection, UniqueID};
692 CachedName, Characteristics, COMDATSymbol, Selection, Kind, Begin);
667 getCOFFSection(StringRef Section, unsigned Characteristics, SectionKind Kind, StringRef COMDATSymName, int Selection, unsigned UniqueID, const char *BeginSymName) argument
/freebsd-current/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DASTSelectionRequirements.cpp24 std::optional<SelectedASTNode> Selection =
26 if (!Selection)
29 return std::move(*Selection);
H A DASTSelection.cpp40 ASTSelectionFinder(SourceRange Selection, FileID TargetFile, argument
43 SelectionBegin(Selection.getBegin()),
44 SelectionEnd(Selection.getBegin() == Selection.getEnd()
46 : Selection.getEnd()),
/freebsd-current/contrib/llvm-project/llvm/include/llvm/FuzzMutate/
H A DRandom.h35 std::remove_const_t<T> Selection = {}; member in class:llvm::ReservoirSampler
46 return Selection;
67 Selection = Item;
/freebsd-current/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVOptions.h499 void addRequest(const T &Selection, const U &Dispatch, V &Request) const { argument
500 for (const auto &Entry : Selection) {
579 void addRequest(LVElementKindSet &Selection) { argument
580 addRequest(Selection, ElementDispatch, ElementRequest);
582 void addRequest(LVLineKindSet &Selection) { argument
583 addRequest(Selection, LineDispatch, LineRequest);
585 void addRequest(LVScopeKindSet &Selection) { argument
586 addRequest(Selection, ScopeDispatch, ScopeRequest);
588 void addRequest(LVSymbolKindSet &Selection) { argument
589 addRequest(Selection, SymbolDispatc
591 addRequest(LVTypeKindSelection &Selection) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DObjectFileInterface.cpp172 Def->Selection != COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE) {
180 if (Def->Selection != COFF::IMAGE_COMDAT_SELECT_NODUPLICATES) {
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenInstruction.cpp568 StringRef Selection = Cur.slice(VariantsStart, VariantsEnd); local
570 Selection = Selection.split('|').second;
571 Res += Selection.split('|').first;
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DCOFFLinkGraphBuilder.cpp522 if (Definition->Selection == COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE) {
559 switch (Definition->Selection) {
595 formatv("{0:d}", Definition->Selection));
/freebsd-current/contrib/llvm-project/lld/COFF/
H A DInputFiles.cpp422 if (def->Selection == IMAGE_COMDAT_SELECT_ASSOCIATIVE)
649 if (def->Selection < (int)IMAGE_COMDAT_SELECT_NODUPLICATES ||
652 def->Selection > (int)IMAGE_COMDAT_SELECT_LARGEST) {
653 fatal("unknown comdat type " + std::to_string((int)def->Selection) +
656 COMDATType selection = (COMDATType)def->Selection;
679 if (def->Selection != IMAGE_COMDAT_SELECT_ASSOCIATIVE)
/freebsd-current/contrib/llvm-project/llvm/lib/ObjCopy/COFF/
H A DCOFFReader.cpp139 if (SD && SD->Selection == IMAGE_COMDAT_SELECT_ASSOCIATIVE) {
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp1682 int Selection = 0; local
1686 Selection = getSelectionForCOFF(GO);
1688 if (Selection == COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE)
1698 Selection = 0;
1703 Selection);
1734 int Selection = getSelectionForCOFF(GO); local
1735 if (!Selection)
1736 Selection = COFF::IMAGE_COMDAT_SELECT_NODUPLICATES;
1762 COMDATSymName, Selection, UniqueID);
1767 Selection, UniqueI
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DCOFF.h466 uint8_t Selection; member in struct:llvm::COFF::AuxiliarySectionDefinition
/freebsd-current/contrib/llvm-project/llvm/lib/Object/
H A DWindowsResource.cpp827 Aux->Selection = 0;
846 Aux->Selection = 0;
/freebsd-current/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCOFFYAML.cpp533 IO, ASD.Selection);
540 IO.mapOptional("Selection", NSST->SelectionType, COFFYAML::COMDATType(0));
H A DCOFFEmitter.cpp574 << binary_le(i->SectionDefinition->Selection)
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp890 , unsigned(asd->Selection));
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Object/
H A DCOFF.h517 uint8_t Selection; member in struct:llvm::object::coff_aux_section_definition
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1714 W.printEnum("Selection", Aux->Selection, ArrayRef(ImageCOMDATSelect));
1717 && Aux->Selection == COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE) {

Completed in 314 milliseconds