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

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSectionCOFF.h48 /// This is the Selection field for the section symbol, if it is a COMDAT
50 mutable int Selection; member in class:llvm::final
55 MCSymbol *COMDATSymbol, int Selection, SectionKind K,
59 Selection(Selection) {
72 int getSelection() const { return Selection; }
74 void setSelection(int Selection) const;
54 MCSectionCOFF(StringRef Section, unsigned Characteristics, MCSymbol *COMDATSymbol, int Selection, SectionKind K, MCSymbol *Begin) argument
H A DMCContext.h471 int Selection,
/freebsd-12-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.cpp315 Symbol->Aux[0].Aux.SectionDefinition.Selection = MCSec.getSelection();
542 W.OS << char(i.Aux.SectionDefinition.Selection);
867 return Section.Symbol->Aux[0].Aux.SectionDefinition.Selection ==
1005 if (Section->Symbol->Aux[0].Aux.SectionDefinition.Selection !=
H A DMCContext.cpp438 StringRef COMDATSymName, int Selection,
449 COFFSectionKey T{Section, COMDATSymName, Selection, UniqueID};
461 CachedName, Characteristics, COMDATSymbol, Selection, Kind, Begin);
435 getCOFFSection(StringRef Section, unsigned Characteristics, SectionKind Kind, StringRef COMDATSymName, int Selection, unsigned UniqueID, const char *BeginSymName) argument
/freebsd-12-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.cpp40 ASTSelectionFinder(SourceRange Selection, FileID TargetFile, argument
43 SelectionBegin(Selection.getBegin()),
44 SelectionEnd(Selection.getBegin() == Selection.getEnd()
46 : Selection.getEnd()),
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/FuzzMutate/
H A DRandom.h35 typename std::remove_const<T>::type Selection = {}; member in class:llvm::ReservoirSampler
46 return Selection;
67 Selection = Item;
/freebsd-12-stable/contrib/llvm-project/lld/COFF/
H A DInputFiles.cpp444 if (def->Selection == IMAGE_COMDAT_SELECT_ASSOCIATIVE)
652 if (def->Selection < (int)IMAGE_COMDAT_SELECT_NODUPLICATES ||
655 def->Selection > (int)IMAGE_COMDAT_SELECT_LARGEST) {
656 fatal("unknown comdat type " + std::to_string((int)def->Selection) +
659 COMDATType selection = (COMDATType)def->Selection;
680 if (def->Selection != IMAGE_COMDAT_SELECT_ASSOCIATIVE)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp1301 int Selection = 0; local
1306 Selection = getSelectionForCOFF(GO);
1308 if (Selection == COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE)
1318 Selection = 0;
1323 Selection);
1354 int Selection = getSelectionForCOFF(GO); local
1355 if (!Selection)
1356 Selection = COFF::IMAGE_COMDAT_SELECT_NODUPLICATES;
1378 COMDATSymName, Selection, UniqueID);
1383 Selection, UniqueI
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/
H A DReader.cpp136 if (SD && SD->Selection == IMAGE_COMDAT_SELECT_ASSOCIATIVE) {
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenInstruction.cpp495 StringRef Selection = Cur.slice(VariantsStart, VariantsEnd); local
497 Selection = Selection.split('|').second;
498 Res += Selection.split('|').first;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DCOFF.h450 uint8_t Selection; member in struct:llvm::COFF::AuxiliarySectionDefinition
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp711 , unsigned(asd->Selection));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Object/
H A DWindowsResource.cpp827 Aux->Selection = 0;
846 Aux->Selection = 0;
/freebsd-12-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-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1531 W.printEnum("Selection", Aux->Selection, makeArrayRef(ImageCOMDATSelect));
1534 && Aux->Selection == COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE) {
/freebsd-12-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 475 milliseconds