Home
last modified time | relevance | path

Searched defs:Symbol (Results 1 – 25 of 261) sorted by relevance

1234567891011

/openbsd/gnu/llvm/llvm/lib/DebugInfo/PDB/
H A DPDBSymDumper.cpp24 void PDBSymDumper::dump(const PDBSymbolAnnotation &Symbol) { in dump()
28 void PDBSymDumper::dump(const PDBSymbolBlock &Symbol) { in dump()
32 void PDBSymDumper::dump(const PDBSymbolCompiland &Symbol) { in dump()
44 void PDBSymDumper::dump(const PDBSymbolCustom &Symbol) { in dump()
48 void PDBSymDumper::dump(const PDBSymbolData &Symbol) { in dump()
52 void PDBSymDumper::dump(const PDBSymbolExe &Symbol) { in dump()
56 void PDBSymDumper::dump(const PDBSymbolFunc &Symbol) { in dump()
68 void PDBSymDumper::dump(const PDBSymbolLabel &Symbol) { in dump()
76 void PDBSymDumper::dump(const PDBSymbolThunk &Symbol) { in dump()
128 void PDBSymDumper::dump(const PDBSymbolTypeUDT &Symbol) { in dump()
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/
H A DPDBSymDumper.h56 virtual void dumpRight(const PDBSymbolTypeArray &Symbol) {} in dumpRight()
57 virtual void dumpRight(const PDBSymbolTypeBaseClass &Symbol) {} in dumpRight()
58 virtual void dumpRight(const PDBSymbolTypeBuiltin &Symbol) {} in dumpRight()
59 virtual void dumpRight(const PDBSymbolTypeCustom &Symbol) {} in dumpRight()
61 virtual void dumpRight(const PDBSymbolTypeEnum &Symbol) {} in dumpRight()
62 virtual void dumpRight(const PDBSymbolTypeFriend &Symbol) {} in dumpRight()
65 virtual void dumpRight(const PDBSymbolTypeManaged &Symbol) {} in dumpRight()
66 virtual void dumpRight(const PDBSymbolTypePointer &Symbol) {} in dumpRight()
67 virtual void dumpRight(const PDBSymbolTypeTypedef &Symbol) {} in dumpRight()
68 virtual void dumpRight(const PDBSymbolTypeUDT &Symbol) {} in dumpRight()
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/Object/
H A DIRSymtab.h91 struct Symbol { struct
93 Str Name;
97 Str IRName;
121 /// referenced by a Symbol. argument
170 struct Symbol { struct
192 using S = storage::Symbol; argument
205 bool canBeOmittedFromSymbolTable() const { in canBeOmittedFromSymbolTable() argument
209 bool isGlobal() const { return (Flags >> S::FB_global) & 1; } in isGlobal()
212 bool isExecutable() const { return (Flags >> S::FB_executable) & 1; } in isExecutable()
214 uint64_t getCommonSize() const { in getCommonSize()
[all …]
H A DTapiFile.h56 struct Symbol { struct
61 constexpr Symbol(StringRef Prefix, StringRef Name, uint32_t Flags) in Symbol() argument
/openbsd/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DPrettyCompilandDumper.cpp42 void CompilandDumper::dump(const PDBSymbolCompilandDetails &Symbol) {} in dump()
44 void CompilandDumper::dump(const PDBSymbolCompilandEnv &Symbol) {} in dump()
46 void CompilandDumper::start(const PDBSymbolCompiland &Symbol, in start()
127 void CompilandDumper::dump(const PDBSymbolData &Symbol) { in dump()
160 void CompilandDumper::dump(const PDBSymbolFunc &Symbol) { in dump()
173 void CompilandDumper::dump(const PDBSymbolLabel &Symbol) { in dump()
184 void CompilandDumper::dump(const PDBSymbolThunk &Symbol) { in dump()
212 void CompilandDumper::dump(const PDBSymbolTypeTypedef &Symbol) {} in dump()
214 void CompilandDumper::dump(const PDBSymbolUnknown &Symbol) { in dump()
219 void CompilandDumper::dump(const PDBSymbolUsingNamespace &Symbol) { in dump()
H A DPrettyVariableDumper.cpp114 void VariableDumper::dump(const PDBSymbolTypeArray &Symbol) { in dump()
122 void VariableDumper::dumpRight(const PDBSymbolTypeArray &Symbol) { in dumpRight()
131 void VariableDumper::dump(const PDBSymbolTypeBuiltin &Symbol) { in dump()
136 void VariableDumper::dump(const PDBSymbolTypeEnum &Symbol) { in dump()
140 void VariableDumper::dump(const PDBSymbolTypeFunctionSig &Symbol) { in dump()
157 void VariableDumper::dumpRight(const PDBSymbolTypeFunctionSig &Symbol) { in dumpRight()
178 void VariableDumper::dump(const PDBSymbolTypePointer &Symbol) { in dump()
201 void VariableDumper::dumpRight(const PDBSymbolTypePointer &Symbol) { in dumpRight()
213 void VariableDumper::dump(const PDBSymbolTypeTypedef &Symbol) { in dump()
218 void VariableDumper::dump(const PDBSymbolTypeUDT &Symbol) { in dump()
H A DPrettyTypedefDumper.cpp31 void TypedefDumper::start(const PDBSymbolTypeTypedef &Symbol) { in start()
40 void TypedefDumper::dump(const PDBSymbolTypeArray &Symbol) { in dump()
45 void TypedefDumper::dump(const PDBSymbolTypeBuiltin &Symbol) { in dump()
50 void TypedefDumper::dump(const PDBSymbolTypeEnum &Symbol) { in dump()
55 void TypedefDumper::dump(const PDBSymbolTypePointer &Symbol) { in dump()
76 void TypedefDumper::dump(const PDBSymbolTypeFunctionSig &Symbol) { in dump()
81 void TypedefDumper::dump(const PDBSymbolTypeUDT &Symbol) { in dump()
H A DPrettyFunctionDumper.cpp38 void dumpClassParentWithScopeOperator(const T &Symbol, LinePrinter &Printer, in dumpClassParentWithScopeOperator()
55 void FunctionDumper::start(const PDBSymbolTypeFunctionSig &Symbol, in start()
119 void FunctionDumper::start(const PDBSymbolFunc &Symbol, PointerType Pointer) { in start()
210 void FunctionDumper::dump(const PDBSymbolTypeArray &Symbol) { in dump()
219 void FunctionDumper::dump(const PDBSymbolTypeBuiltin &Symbol) { in dump()
224 void FunctionDumper::dump(const PDBSymbolTypeEnum &Symbol) { in dump()
229 void FunctionDumper::dump(const PDBSymbolTypeFunctionArg &Symbol) { in dump()
240 void FunctionDumper::dump(const PDBSymbolTypeTypedef &Symbol) { in dump()
245 void FunctionDumper::dump(const PDBSymbolTypePointer &Symbol) { in dump()
268 void FunctionDumper::dump(const PDBSymbolTypeUDT &Symbol) { in dump()
H A DPrettyClassLayoutGraphicalDumper.cpp109 const PDBSymbolTypeBaseClass &Symbol) { in dump()
150 void PrettyClassLayoutGraphicalDumper::dump(const PDBSymbolData &Symbol) { in dump()
171 void PrettyClassLayoutGraphicalDumper::dump(const PDBSymbolTypeVTable &Symbol) { in dump()
180 void PrettyClassLayoutGraphicalDumper::dump(const PDBSymbolTypeEnum &Symbol) { in dump()
188 const PDBSymbolTypeTypedef &Symbol) { in dump()
196 const PDBSymbolTypeBuiltin &Symbol) {} in dump()
198 void PrettyClassLayoutGraphicalDumper::dump(const PDBSymbolTypeUDT &Symbol) {} in dump()
200 void PrettyClassLayoutGraphicalDumper::dump(const PDBSymbolFunc &Symbol) { in dump()
H A DPrettyTypeDumper.cpp143 static bool isTypeExcluded(LinePrinter &Printer, const T &Symbol) { in isTypeExcluded()
277 void TypeDumper::dump(const PDBSymbolTypeEnum &Symbol) { in dump()
284 void TypeDumper::dump(const PDBSymbolTypeBuiltin &Symbol) { in dump()
289 void TypeDumper::dump(const PDBSymbolTypeUDT &Symbol) { in dump()
293 void TypeDumper::dump(const PDBSymbolTypeTypedef &Symbol) { in dump()
300 void TypeDumper::dump(const PDBSymbolTypeArray &Symbol) { in dump()
309 void TypeDumper::dump(const PDBSymbolTypeFunctionSig &Symbol) { in dump()
314 void TypeDumper::dump(const PDBSymbolTypePointer &Symbol) { in dump()
346 void TypeDumper::dump(const PDBSymbolTypeVTableShape &Symbol) { in dump()
/openbsd/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DCOFFYAML.h83 struct Symbol { struct
85 COFF::SymbolBaseType SimpleType = COFF::IMAGE_SYM_TYPE_NULL; argument
86 COFF::SymbolComplexType ComplexType = COFF::IMAGE_SYM_DTYPE_NULL; argument
88 std::optional<COFF::AuxiliarybfAndefSymbol> bfAndefSymbol; argument
95 Symbol(); argument
118 LLVM_YAML_IS_SEQUENCE_VECTOR(COFFYAML::Symbol) in LLVM_YAML_IS_SEQUENCE_VECTOR()
/openbsd/gnu/llvm/llvm/lib/MC/
H A DMCWinCOFFStreamer.cpp86 auto *Symbol = cast<MCSymbolCOFF>(S); in emitLabel() local
112 auto *Symbol = cast<MCSymbolCOFF>(S); in emitSymbolAttribute() local
137 auto *Symbol = cast<MCSymbolCOFF>(S); in beginCOFFSymbolDef() local
181 void MCWinCOFFStreamer::emitCOFFSafeSEH(MCSymbol const *Symbol) { in emitCOFFSafeSEH()
206 void MCWinCOFFStreamer::emitCOFFSymbolIndex(MCSymbol const *Symbol) { in emitCOFFSymbolIndex()
216 void MCWinCOFFStreamer::emitCOFFSectionIndex(const MCSymbol *Symbol) { in emitCOFFSectionIndex()
225 void MCWinCOFFStreamer::emitCOFFSecRel32(const MCSymbol *Symbol, in emitCOFFSecRel32()
243 void MCWinCOFFStreamer::emitCOFFImgRel32(const MCSymbol *Symbol, in emitCOFFImgRel32()
264 auto *Symbol = cast<MCSymbolCOFF>(S); in emitCommonSymbol() local
296 auto *Symbol = cast<MCSymbolCOFF>(S); in emitLocalCommonSymbol() local
[all …]
H A DMCMachOStreamer.cpp188 void MCMachOStreamer::emitEHSymAttributes(const MCSymbol *Symbol, in emitEHSymAttributes()
199 void MCMachOStreamer::emitLabel(MCSymbol *Symbol, SMLoc Loc) { in emitLabel()
217 void MCMachOStreamer::emitAssignment(MCSymbol *Symbol, const MCExpr *Value) { in emitAssignment()
309 void MCMachOStreamer::emitThumbFunc(MCSymbol *Symbol) { in emitThumbFunc()
318 MCSymbolMachO *Symbol = cast<MCSymbolMachO>(Sym); in emitSymbolAttribute() local
427 void MCMachOStreamer::emitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) { in emitSymbolDesc()
433 void MCMachOStreamer::emitCommonSymbol(MCSymbol *Symbol, uint64_t Size, in emitCommonSymbol()
450 void MCMachOStreamer::emitZerofill(MCSection *Section, MCSymbol *Symbol, in emitZerofill()
478 void MCMachOStreamer::emitTBSSSymbol(MCSection *Section, MCSymbol *Symbol, in emitTBSSSymbol()
510 for (const MCSymbol &Symbol : getAssembler().symbols()) { in finishImpl() local
[all …]
H A DMCNullStreamer.cpp34 bool emitSymbolAttribute(MCSymbol *Symbol, in emitSymbolAttribute()
39 void emitCommonSymbol(MCSymbol *Symbol, uint64_t Size, in emitCommonSymbol()
41 void emitZerofill(MCSection *Section, MCSymbol *Symbol = nullptr, in emitZerofill()
45 void beginCOFFSymbolDef(const MCSymbol *Symbol) override {} in beginCOFFSymbolDef()
50 emitXCOFFSymbolLinkageWithVisibility(MCSymbol *Symbol, MCSymbolAttr Linkage, in emitXCOFFSymbolLinkageWithVisibility()
H A DMCWasmStreamer.cpp56 auto *Symbol = cast<MCSymbolWasm>(S); in emitLabel() local
67 auto *Symbol = cast<MCSymbolWasm>(S); in emitLabelAtPos() local
97 const MCSymbol *Symbol) { in emitWeakReference()
107 auto *Symbol = cast<MCSymbolWasm>(S); in emitSymbolAttribute() local
171 void MCWasmStreamer::emitELFSize(MCSymbol *Symbol, const MCExpr *Value) { in emitELFSize()
261 void MCWasmStreamer::emitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) { in emitSymbolDesc()
265 void MCWasmStreamer::emitZerofill(MCSection *Section, MCSymbol *Symbol, in emitZerofill()
271 void MCWasmStreamer::emitTBSSSymbol(MCSection *Section, MCSymbol *Symbol, in emitTBSSSymbol()
H A DMCXCOFFStreamer.cpp36 auto *Symbol = cast<MCSymbolXCOFF>(Sym); in emitSymbolAttribute() local
73 MCSymbol *Symbol, MCSymbolAttr Linkage, MCSymbolAttr Visibility) { in emitXCOFFSymbolLinkageWithVisibility()
84 void MCXCOFFStreamer::emitXCOFFExceptDirective(const MCSymbol *Symbol, in emitXCOFFExceptDirective()
93 void MCXCOFFStreamer::emitCommonSymbol(MCSymbol *Symbol, uint64_t Size, in emitCommonSymbol()
110 void MCXCOFFStreamer::emitZerofill(MCSection *Section, MCSymbol *Symbol, in emitZerofill()
H A DMCELFStreamer.cpp105 auto *Symbol = cast<MCSymbolELF>(S); in emitLabel() local
116 auto *Symbol = cast<MCSymbolELF>(S); in emitLabelAtPos() local
170 void MCELFStreamer::emitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) { in emitWeakReference()
197 auto *Symbol = cast<MCSymbolELF>(S); in emitSymbolAttribute() local
317 auto *Symbol = cast<MCSymbolELF>(S); in emitCommonSymbol() local
346 void MCELFStreamer::emitELFSize(MCSymbol *Symbol, const MCExpr *Value) { in emitELFSize()
359 auto *Symbol = cast<MCSymbolELF>(S); in emitLocalCommonSymbol() local
728 void MCELFStreamer::emitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) { in emitSymbolDesc()
732 void MCELFStreamer::emitZerofill(MCSection *Section, MCSymbol *Symbol, in emitZerofill()
738 void MCELFStreamer::emitTBSSSymbol(MCSection *Section, MCSymbol *Symbol, in emitTBSSSymbol()
/openbsd/gnu/llvm/llvm/lib/ObjCopy/COFF/
H A DCOFFObject.h82 struct Symbol { struct
85 std::vector<AuxSymbol> AuxData; argument
89 std::optional<size_t> WeakTargetSymbolId; argument
109 ArrayRef<Symbol> getSymbols() const { return Symbols; } in getSymbols() argument
/openbsd/gnu/llvm/llvm/lib/Object/
H A DRecordStreamer.cpp17 void RecordStreamer::markDefined(const MCSymbol &Symbol) { in markDefined()
36 void RecordStreamer::markGlobal(const MCSymbol &Symbol, in markGlobal()
56 void RecordStreamer::markUsed(const MCSymbol &Symbol) { in markUsed()
89 void RecordStreamer::emitLabel(MCSymbol *Symbol, SMLoc Loc) { in emitLabel()
94 void RecordStreamer::emitAssignment(MCSymbol *Symbol, const MCExpr *Value) { in emitAssignment()
99 bool RecordStreamer::emitSymbolAttribute(MCSymbol *Symbol, in emitSymbolAttribute()
108 void RecordStreamer::emitZerofill(MCSection *Section, MCSymbol *Symbol, in emitZerofill()
114 void RecordStreamer::emitCommonSymbol(MCSymbol *Symbol, uint64_t Size, in emitCommonSymbol()
/openbsd/gnu/llvm/llvm/lib/TextAPI/
H A DTextStub.cpp491 const auto *Symbol = SymArch.first; in NormalizedTBD() local
550 const auto *Symbol = SymArch.first; in NormalizedTBD() local
660 for (auto &Symbol : Section.Classes) { in denormalize() local
666 for (auto &Symbol : Section.ClassEHs) in denormalize() local
668 for (auto &Symbol : Section.IVars) { in denormalize() local
678 for (auto &Symbol : Section.TLVSymbols) in denormalize() local
686 for (auto &Symbol : Section.Symbols) { in denormalize() local
696 for (auto &Symbol : Section.Classes) { in denormalize() local
703 for (auto &Symbol : Section.ClassEHs) in denormalize() local
706 for (auto &Symbol : Section.IVars) { in denormalize() local
[all …]
/openbsd/gnu/llvm/clang/include/clang/Tooling/Inclusions/
H A DStandardLibrary.h32 class Symbol; variable
51 friend Symbol; variable
82 Symbol(unsigned ID) : ID(ID) {} in Symbol() function
/openbsd/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DJITSymbol.cpp69 llvm::JITSymbolFlags::fromObjectSymbol(const object::SymbolRef &Symbol) { in fromObjectSymbol()
94 llvm::ARMJITSymbolFlags::fromObjectSymbol(const object::SymbolRef &Symbol) { in fromObjectSymbol()
111 for (auto &Symbol : Symbols) { in lookup() local
152 for (auto &Symbol : Symbols) { in getResponsibilitySet() local
/openbsd/gnu/llvm/llvm/lib/ObjCopy/XCOFF/
H A DXCOFFObject.h29 struct Symbol { struct
30 XCOFFSymbolEntry32 Sym; argument
33 StringRef AuxSymbolEntries; argument
/openbsd/gnu/llvm/lld/MachO/
H A DEhFrame.cpp109 static void createSubtraction(PointerUnion<Symbol *, InputSection *> a, in createSubtraction()
127 PointerUnion<Symbol *, InputSection *> target, in makePcRel()
133 uint64_t off, PointerUnion<Symbol *, InputSection *> target, in makeNegativePcRel()
/openbsd/gnu/llvm/llvm/tools/llvm-mca/
H A DCodeRegionGenerator.cpp46 bool emitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute) override { in emitSymbolAttribute()
50 void emitCommonSymbol(MCSymbol *Symbol, uint64_t Size, in emitCommonSymbol()
52 void emitZerofill(MCSection *Section, MCSymbol *Symbol = nullptr, in emitZerofill()
56 void beginCOFFSymbolDef(const MCSymbol *Symbol) override {} in beginCOFFSymbolDef()

1234567891011