HomeSort by: relevance | last modified time | path
    Searched refs:Symbols (Results 1 - 25 of 149) sorted by relevancy

1 2 3 4 5 6

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
NativeEnumSymbols.cpp 22 std::vector<SymIndexId> Symbols)
23 : Symbols(std::move(Symbols)), Index(0), Session(PDBSession) {}
26 return static_cast<uint32_t>(Symbols.size());
31 if (N < Symbols.size()) {
32 return Session.getSymbolCache().getSymbolById(Symbols[N]);
  /src/external/apache2/llvm/dist/llvm/lib/InterfaceStub/
ELFStub.cpp 19 Symbols = Stub.Symbols;
27 Symbols = std::move(Stub.Symbols);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
DebugSymbolsSubsection.h 21 : DebugSubsectionRef(DebugSubsectionKind::Symbols) {}
24 return S->kind() == DebugSubsectionKind::Symbols;
38 DebugSymbolsSubsection() : DebugSubsection(DebugSubsectionKind::Symbols) {}
40 return S->kind() == DebugSubsectionKind::Symbols;
CVSymbolVisitor.h 25 Error visitSymbolStream(const CVSymbolArray &Symbols);
26 Error visitSymbolStream(const CVSymbolArray &Symbols, uint32_t InitialOffset);
SymbolRecordHelpers.h 56 CVSymbolArray limitSymbolArrayToScope(const CVSymbolArray &Symbols,
SymbolDumper.h 43 Error dump(const CVSymbolArray &Symbols);
  /src/external/apache2/llvm/dist/llvm/lib/Object/
TapiFile.cpp 44 for (const auto *Symbol : interface.symbols()) {
50 Symbols.emplace_back(StringRef(), Symbol->getName(), getFlags(Symbol));
55 Symbols.emplace_back(ObjC1ClassNamePrefix, Symbol->getName(),
58 Symbols.emplace_back(ObjC2ClassNamePrefix, Symbol->getName(),
60 Symbols.emplace_back(ObjC2MetaClassNamePrefix, Symbol->getName(),
65 Symbols.emplace_back(ObjC2EHTypePrefix, Symbol->getName(),
69 Symbols.emplace_back(ObjC2IVarPrefix, Symbol->getName(),
81 assert(DRI.d.a < Symbols.size() && "Attempt to access symbol out of bounds");
82 const Symbol &Sym = Symbols[DRI.d.a];
88 assert(DRI.d.a < Symbols.size() && "Attempt to access symbol out of bounds")
    [all...]
RecordStreamer.cpp 1 //===-- RecordStreamer.cpp - Record asm defined and used symbols ----------===//
18 State &S = Symbols[Symbol.getName()];
38 State &S = Symbols[Symbol.getName()];
57 State &S = Symbols[Symbol.getName()];
79 return Symbols.begin();
82 RecordStreamer::const_iterator RecordStreamer::end() { return Symbols.end(); }
120 auto SI = Symbols.find(Sym->getName());
121 if (SI == Symbols.end())
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
NativeEnumSymbols.h 1 //==- NativeEnumSymbols.h - Native Symbols Enumerator impl -------*- C++ -*-==//
25 NativeEnumSymbols(NativeSession &Session, std::vector<SymIndexId> Symbols);
33 std::vector<SymIndexId> Symbols;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
Core.h 116 /// A map from JITDylibs to sets of symbols.
122 /// only symbols in that Dylib's interface will be searched. If
123 /// MatchHiddenSymbols is used then symbols with hidden visibility will match
166 /// A set of symbols to look up, each associated with a SymbolLookupFlags
192 Symbols.reserve(Names.size());
202 Symbols.reserve(Names.size());
207 /// Construct a SymbolLookupSet from a vector of symbols with the given Flags
214 Symbols.reserve(Names.size());
224 Symbols.push_back(std::make_pair(std::move(Name), Flags));
230 Symbols.reserve(Symbols.size() + Other.size())
    [all...]
DebugUtils.h 36 raw_ostream &operator<<(raw_ostream &OS, const SymbolNameSet &Symbols);
39 raw_ostream &operator<<(raw_ostream &OS, const SymbolNameVector &Symbols);
42 raw_ostream &operator<<(raw_ostream &OS, ArrayRef<SymbolStringPtr> Symbols);
57 raw_ostream &operator<<(raw_ostream &OS, const SymbolMap &Symbols);
TPCDynamicLibrarySearchGenerator.h 27 /// Create a DynamicLibrarySearchGenerator that searches for symbols in the
30 /// If the Allow predicate is given then only symbols matching the predicate
31 /// will be searched for. If the predicate is not given then all symbols will
45 /// Creates a TPCDynamicLibrarySearchGenerator that searches for symbols in
55 const SymbolLookupSet &Symbols) override;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
CVSymbolVisitor.cpp 66 Error CVSymbolVisitor::visitSymbolStream(const CVSymbolArray &Symbols) {
67 for (auto I : Symbols) {
74 Error CVSymbolVisitor::visitSymbolStream(const CVSymbolArray &Symbols,
76 for (auto I : Symbols) {
77 if (auto EC = visitSymbolRecord(I, InitialOffset + Symbols.skew()))
SymbolRecordHelpers.cpp 85 llvm::codeview::limitSymbolArrayToScope(const CVSymbolArray &Symbols,
87 CVSymbol Opener = *Symbols.at(ScopeBegin);
90 CVSymbol Closer = *Symbols.at(EndOffset);
92 return Symbols.substream(ScopeBegin, EndOffset);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
InterfaceStubFunctionsConsumer.cpp 40 bool WriteNamedDecl(const NamedDecl *ND, MangledSymbols &Symbols, int RDO) {
107 if (Symbols.find(ND) != Symbols.end())
110 // - Do not want to produce symbols for function paremeters.
130 Symbols.insert(std::make_pair(
145 MangledSymbols &Symbols, int RDO) {
147 HandleNamedDecl(dyn_cast<NamedDecl>(D), Symbols, RDO);
151 MangledSymbols &Symbols, int RDO) {
153 HandleNamedDecl(dyn_cast<NamedDecl>(D), Symbols, RDO);
157 MangledSymbols &Symbols, int RDO)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
TPCDynamicLibrarySearchGenerator.cpp 28 JITDylibLookupFlags JDLookupFlags, const SymbolLookupSet &Symbols) {
30 if (Symbols.empty())
35 for (auto &KV : Symbols) {
36 // Skip symbols that don't match the filter.
61 // If there were no resolved symbols bail out.
65 // Define resolved symbols.
Core.cpp 80 std::shared_ptr<SymbolDependenceMap> Symbols)
81 : Symbols(std::move(Symbols)) {
82 assert(!this->Symbols->empty() && "Can not fail to resolve an empty set");
90 OS << "Failed to materialize symbols: " << *Symbols;
93 SymbolsNotFound::SymbolsNotFound(SymbolNameSet Symbols) {
94 for (auto &Sym : Symbols)
95 this->Symbols.push_back(Sym);
96 assert(!this->Symbols.empty() && "Can not fail to resolve an empty set")
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
Object.cpp 22 Symbols.emplace_back(S);
28 SymbolMap = DenseMap<size_t, Symbol *>(Symbols.size());
29 for (Symbol &Sym : Symbols)
40 llvm::erase_if(Symbols, [ToRemove, &Errs](const Symbol &Sym) {
54 for (Symbol &Sym : Symbols)
102 // Remove all symbols referring to the removed sections.
105 Symbols, [&RemovedSections, &AssociatedSections](const Symbol &Sym) {
  /src/usr.bin/make/unit-tests/
cond-func.exp 7 make: cond-func.mk:126: Symbols may start with a function name.
8 make: cond-func.mk:132: Symbols may start with a function name.
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
IRSymtab.h 18 // multiple modules, so symbol tables may likewise contain symbols for multiple
71 /// Describes the range of a particular module's symbols within the symbol
145 Range<Symbol> Symbols;
237 ArrayRef<storage::Symbol> Symbols;
258 Symbols = range(header().Symbols);
266 /// The symbols enumerated by this method are ephemeral, but they can be
268 symbol_range symbols() const;
273 /// The symbols enumerated by this method are ephemeral, but they can be
305 /// Ephemeral symbols produced by Reader::symbols() an
348 inline Reader::symbol_range Reader::symbols() const { function in class:llvm::irsymtab::Reader
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
xcoff2yaml.cpp 54 std::vector<XCOFFYAML::Symbol> &Symbols = YAMLObj.Symbols;
56 for (const SymbolRef &S : Obj.symbols()) {
79 Symbols.push_back(Sym);
  /src/external/apache2/llvm/dist/clang/lib/Format/
SortJavaScriptImports.cpp 55 // can reference other modules, either importing symbols from them, or exporting
56 // symbols from them:
66 // imports and exports support individual symbols, but also a wildcard syntax:
90 // Symbols from `import {SymbolA, SymbolB, ...} from ...;`.
91 SmallVector<JsImportedSymbol, 1> Symbols;
92 // Whether some symbols were merged into this one. Controls if the module
96 // Extracted eagerly to allow modification of Symbols later on.
280 // After sorting, find all references that import named symbols from the
304 !Reference->DefaultImport.empty() || Reference->Symbols.empty() ||
310 // Merge symbols from identical imports
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/InterfaceStub/
ELFStub.h 57 std::set<ELFSymbol> Symbols;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/
DIATable.cpp 32 return PDB_TableType::Symbols;
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
JITSymbol.cpp 108 void LegacyJITSymbolResolver::lookup(const LookupSet &Symbols,
111 for (auto &Symbol : Symbols) {
149 LegacyJITSymbolResolver::getResponsibilitySet(const LookupSet &Symbols) {
152 for (auto &Symbol : Symbols) {

Completed in 76 milliseconds

1 2 3 4 5 6