HomeSort by relevance Sort by last modified time
    Searched refs:Symbols (Results 1 - 25 of 196) sorted by null

1 2 3 4 5 6 7 8

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Orc/
NullResolver.cpp 17 SymbolFlagsMap NullResolver::lookupFlags(const SymbolNameSet &Symbols) {
23 SymbolNameSet Symbols) {
24 assert(Symbols.empty() && "Null resolver: Symbols must be empty");
25 return Symbols;
Legacy.cpp 22 JITSymbolResolverAdapter::lookup(const LookupSet &Symbols) {
24 for (auto &S : Symbols)
52 JITSymbolResolverAdapter::lookupFlags(const LookupSet &Symbols) {
54 for (auto &S : Symbols)
Core.cpp 58 raw_ostream &operator<<(raw_ostream &OS, const SymbolNameSet &Symbols) {
60 if (!Symbols.empty()) {
61 OS << " \"" << **Symbols.begin() << "\"";
62 for (auto &Sym : make_range(std::next(Symbols.begin()), Symbols.end()))
69 raw_ostream &operator<<(raw_ostream &OS, const SymbolMap &Symbols) {
71 if (!Symbols.empty()) {
72 OS << " {" << *Symbols.begin() << "}";
73 for (auto &Sym : make_range(std::next(Symbols.begin()), Symbols.end())
    [all...]
RTDyldObjectLinkingLayer.cpp 21 Expected<LookupResult> lookup(const LookupSet &Symbols) {
25 for (auto &S : Symbols)
47 Expected<LookupFlagsResult> lookupFlags(const LookupSet &Symbols) {
52 for (auto &S : Symbols)
123 for (auto &Sym : (*ObjFile)->symbols()) {
135 SymbolMap Symbols;
138 Symbols[ES.getSymbolStringPool().intern(KV.first)] = KV.second;
140 R.resolve(Symbols);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
CVSymbolVisitor.h 29 Error visitSymbolStream(const CVSymbolArray &Symbols);
30 Error visitSymbolStream(const CVSymbolArray &Symbols, uint32_t InitialOffset);
DebugSymbolsSubsection.h 22 : DebugSubsectionRef(DebugSubsectionKind::Symbols) {}
25 return S->kind() == DebugSubsectionKind::Symbols;
39 DebugSymbolsSubsection() : DebugSubsection(DebugSubsectionKind::Symbols) {}
41 return S->kind() == DebugSubsectionKind::Symbols;
SymbolDumper.h 44 Error dump(const CVSymbolArray &Symbols);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/Orc/
NullResolver.h 26 SymbolFlagsMap lookupFlags(const SymbolNameSet &Symbols) override;
29 SymbolNameSet Symbols) override;
Legacy.h 34 /// Returns the flags for each symbol in Symbols that can be found,
36 virtual SymbolFlagsMap lookupFlags(const SymbolNameSet &Symbols) = 0;
38 /// For each symbol in Symbols that can be found, assigns that symbols
39 /// value in Query. Returns the set of symbols that could not be found.
41 SymbolNameSet Symbols) = 0;
57 SymbolFlagsMap lookupFlags(const SymbolNameSet &Symbols) final {
58 return LookupFlags(Symbols);
62 SymbolNameSet Symbols) final {
63 return Lookup(std::move(Query), std::move(Symbols));
    [all...]
Core.h 47 raw_ostream &operator<<(raw_ostream &OS, const SymbolNameSet &Symbols);
54 raw_ostream &operator<<(raw_ostream &OS, const SymbolMap &Symbols);
60 raw_ostream &operator<<(raw_ostream &OS, const SymbolFlagsMap &Symbols);
63 /// symbols to be obtained for logging.
75 /// Callback to notify client that symbols have been resolved.
78 /// Callback to notify client that symbols are ready for execution.
89 /// Used to notify a VSO that the given set of symbols failed to materialize.
94 FailedToMaterialize(SymbolNameSet Symbols);
97 const SymbolNameSet &getSymbols() const { return Symbols; }
100 SymbolNameSet Symbols;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 153 // Address and names of symbols in the section.
155 SmallVector<SymbolEntry, 64> Symbols;
170 // Just skip symbols not defined in this section.
183 Symbols.push_back(SymbolEntry(STE->Value, Name));
188 // Sort the symbols by address, just in case they didn't come in that way.
189 array_pod_sort(Symbols.begin(), Symbols.end());
192 if (!Symbols.size())
198 for (unsigned i = 0, e = Symbols.size() - 1; i != e; ++i) {
199 uint64_t StartOffset = Sect->Address + Symbols[i].first
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
pygram.py 4 """Export the Python grammar and symbols."""
20 class Symbols(object):
34 python_symbols = Symbols(python_grammar)
40 pattern_symbols = Symbols(pattern_grammar)
  /external/python/cpython2/Lib/lib2to3/
pygram.py 4 """Export the Python grammar and symbols."""
20 class Symbols(object):
34 python_symbols = Symbols(python_grammar)
40 pattern_symbols = Symbols(pattern_grammar)
  /external/python/cpython3/Lib/lib2to3/
pygram.py 4 """Export the Python grammar and symbols."""
20 class Symbols(object):
34 python_symbols = Symbols(python_grammar)
40 pattern_symbols = Symbols(pattern_grammar)
  /external/llvm/lib/Object/
RecordStreamer.cpp 1 //===-- RecordStreamer.cpp - Record asm definde and used symbols ----------===//
15 State &S = Symbols[Symbol.getName()];
33 State &S = Symbols[Symbol.getName()];
51 State &S = Symbols[Symbol.getName()];
69 return Symbols.begin();
72 RecordStreamer::const_iterator RecordStreamer::end() { return Symbols.end(); }
  /external/swiftshader/third_party/llvm-7.0/llvm/test/Object/X86/
obj2yaml-dup-symbol-name.s 6 # CHECK: Symbols:
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
CVSymbolVisitor.cpp 67 Error CVSymbolVisitor::visitSymbolStream(const CVSymbolArray &Symbols) {
68 for (auto I : Symbols) {
75 Error CVSymbolVisitor::visitSymbolStream(const CVSymbolArray &Symbols,
77 for (auto I : Symbols) {
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-undname/
llvm-undname.cpp 29 cl::list<std::string> Symbols(cl::Positional, cl::desc("<input symbols>"),
49 if (Symbols.empty()) {
73 for (StringRef S : Symbols) {
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/
LegacyAPIInteropTest.cpp 25 [&](const SymbolNameSet &Symbols) { return V.lookupFlags(Symbols); },
26 [&](std::shared_ptr<AsynchronousSymbolQuery> Q, SymbolNameSet Symbols) {
27 return V.legacyLookup(std::move(Q), Symbols);
30 SymbolNameSet Symbols({Foo, Bar, Baz});
32 SymbolFlagsMap SymbolFlags = Resolver->lookupFlags(Symbols);
48 EXPECT_EQ(Result->size(), 2U) << "Unexpected number of resolved symbols";
62 auto Unresolved = Resolver->lookup(std::move(Q), Symbols);
83 SymbolNameSet Symbols) {
84 return V.legacyLookup(std::move(Query), Symbols);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
IRSymtab.h 19 // multiple modules, so symbol tables may likewise contain symbols for multiple
71 /// Describes the range of a particular module's symbols within the symbol
144 Range<Symbol> Symbols;
233 ArrayRef<storage::Symbol> Symbols;
253 Symbols = range(header().Symbols);
260 /// The symbols enumerated by this method are ephemeral, but they can be
262 symbol_range symbols() const;
267 /// The symbols enumerated by this method are ephemeral, but they can be
289 /// Ephemeral symbols produced by Reader::symbols() an
332 inline Reader::symbol_range Reader::symbols() const { function in class:llvm::irsymtab::Reader
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
MachineModuleInfo.cpp 70 /// The symbols for the label.
71 TinyPtrVector<MCSymbol *> Symbols;
83 /// This is a per-function list of symbols whose corresponding BasicBlock got
84 /// deleted. These symbols need to be emitted at some point in the file, so
114 if (!Entry.Symbols.empty()) {
116 return Entry.Symbols;
125 Entry.Symbols.push_back(Context.createTempSymbol());
126 return Entry.Symbols;
129 /// If we have any deleted symbols for F, return them.
149 assert(!Entry.Symbols.empty() && "Didn't have a symbol, why a callback?")
    [all...]
  /external/clang/lib/Format/
SortJavaScriptImports.cpp 56 // can reference other modules, either importing symbols from them, or exporting
57 // symbols from them:
67 // imports and exports support individual symbols, but also a wildcard syntax:
88 // Symbols from `import {SymbolA, SymbolB, ...} from ...;`.
89 SmallVector<JsImportedSymbol, 1> Symbols;
242 // Sort the individual symbols within the import.
244 SmallVector<JsImportedSymbol, 1> Symbols = Reference.Symbols;
246 Symbols.begin(), Symbols.end()
    [all...]
  /external/llvm/include/llvm/DebugInfo/CodeView/
SymbolDumper.h 42 bool dump(const CVSymbolArray &Symbols);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/
JITSymbol.cpp 55 LegacyJITSymbolResolver::lookup(const LookupSet &Symbols) {
57 for (auto &Symbol : Symbols) {
87 LegacyJITSymbolResolver::lookupFlags(const LookupSet &Symbols) {
90 for (auto &Symbol : Symbols) {
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineModuleInfo.cpp 56 /// Symbols - The symbols for the label. This is a pointer union that is
57 /// either one symbol (the common case) or a list of symbols.
58 PointerUnion<MCSymbol *, std::vector<MCSymbol*>*> Symbols;
70 /// DeletedAddrLabelsNeedingEmission - This is a per-function list of symbols
71 /// whose corresponding BasicBlock got deleted. These symbols need to be
83 // Deallocate any of the 'list of symbols' case.
86 if (I->second.Symbols.is<std::vector<MCSymbol*>*>())
87 delete I->second.Symbols.get<std::vector<MCSymbol*>*>();
107 if (!Entry.Symbols.isNull())
    [all...]

Completed in 1748 milliseconds

1 2 3 4 5 6 7 8