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

/freebsd-13-stable/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.h521 int Selection,
/freebsd-13-stable/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;
73 switch (Selection) {
H A DWinCOFFObjectWriter.cpp323 Symbol->Aux[0].Aux.SectionDefinition.Selection = MCSec.getSelection();
552 W.OS << char(i.Aux.SectionDefinition.Selection);
925 return Section.Symbol->Aux[0].Aux.SectionDefinition.Selection ==
1064 if (Section->Symbol->Aux[0].Aux.SectionDefinition.Selection !=
H A DMCContext.cpp552 StringRef COMDATSymName, int Selection,
563 COFFSectionKey T{Section, COMDATSymName, Selection, UniqueID};
575 CachedName, Characteristics, COMDATSymbol, Selection, Kind, Begin);
549 getCOFFSection(StringRef Section, unsigned Characteristics, SectionKind Kind, StringRef COMDATSymName, int Selection, unsigned UniqueID, const char *BeginSymName) argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DASTSelectionRequirements.cpp23 Optional<SelectedASTNode> Selection =
25 if (!Selection)
28 return std::move(*Selection);
H A DASTSelection.cpp39 ASTSelectionFinder(SourceRange Selection, FileID TargetFile, argument
42 SelectionBegin(Selection.getBegin()),
43 SelectionEnd(Selection.getBegin() == Selection.getEnd()
45 : Selection.getEnd()),
/freebsd-13-stable/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-13-stable/contrib/llvm-project/lld/COFF/
H A DInputFiles.cpp441 if (def->Selection == IMAGE_COMDAT_SELECT_ASSOCIATIVE)
645 if (def->Selection < (int)IMAGE_COMDAT_SELECT_NODUPLICATES ||
648 def->Selection > (int)IMAGE_COMDAT_SELECT_LARGEST) {
649 fatal("unknown comdat type " + std::to_string((int)def->Selection) +
652 COMDATType selection = (COMDATType)def->Selection;
673 if (def->Selection != IMAGE_COMDAT_SELECT_ASSOCIATIVE)
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/
H A DReader.cpp139 if (SD && SD->Selection == IMAGE_COMDAT_SELECT_ASSOCIATIVE) {
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenInstruction.cpp505 StringRef Selection = Cur.slice(VariantsStart, VariantsEnd); local
507 Selection = Selection.split('|').second;
508 Res += Selection.split('|').first;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp1448 int Selection = 0; local
1453 Selection = getSelectionForCOFF(GO);
1455 if (Selection == COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE)
1465 Selection = 0;
1470 Selection);
1501 int Selection = getSelectionForCOFF(GO); local
1502 if (!Selection)
1503 Selection = COFF::IMAGE_COMDAT_SELECT_NODUPLICATES;
1525 COMDATSymName, Selection, UniqueID);
1530 Selection, UniqueI
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DCOFF.h450 uint8_t Selection; member in struct:llvm::COFF::AuxiliarySectionDefinition
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp711 , unsigned(asd->Selection));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DWindowsResource.cpp829 Aux->Selection = 0;
848 Aux->Selection = 0;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCOFFEmitter.cpp582 << binary_le(i->SectionDefinition->Selection)
H A DCOFFYAML.cpp525 IO, ASD.Selection);
532 IO.mapOptional("Selection", NSST->SelectionType, COFFYAML::COMDATType(0));
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1549 W.printEnum("Selection", Aux->Selection, makeArrayRef(ImageCOMDATSelect));
1552 && Aux->Selection == COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE) {
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DCOFF.h517 uint8_t Selection; member in struct:llvm::object::coff_aux_section_definition

Completed in 318 milliseconds