Home
last modified time | relevance | path

Searched refs:Symbols (Results 1 – 25 of 199) sorted by relevance

12345678

/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.cpp155 SmallVector<SymbolEntry, 64> Symbols; in loadSegment32() local
183 Symbols.push_back(SymbolEntry(STE->Value, Name)); in loadSegment32()
189 array_pod_sort(Symbols.begin(), Symbols.end()); in loadSegment32()
192 if (!Symbols.size()) in loadSegment32()
198 for (unsigned i = 0, e = Symbols.size() - 1; i != e; ++i) { in loadSegment32()
199 uint64_t StartOffset = Sect->Address + Symbols[i].first; in loadSegment32()
200 uint64_t EndOffset = Symbols[i + 1].first - 1; in loadSegment32()
201 DEBUG(dbgs() << "Extracting function: " << Symbols[i].second in loadSegment32()
203 extractFunction(Symbols[i].second, Base + StartOffset, Base + EndOffset); in loadSegment32()
207 uint64_t StartOffset = Symbols[Symbols.size() - 1].first; in loadSegment32()
[all …]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
DSymbolTable.g6 * 'scope Symbols;' in those rule definitions.
13 scope Symbols {
26 // scope Symbols;
31 scope Symbols;
34 $Symbols::names = [ANTLRPtrBuffer newANTLRPtrBufferWithLen:10];
38 NSLog( @"globals: \%@", [$Symbols::names toString] );
48 scope Symbols;
51 $Symbols::names = [ANTLRPtrBuffer newANTLRPtrBufferWithLen:10];
55 NSLog( @"level \%d symbols: \%@", level, [$Symbols::names toString] );
65 {[$Symbols::names addObject:$ID];} // add to current symbol table
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DMachineModuleInfo.cpp58 PointerUnion<MCSymbol *, std::vector<MCSymbol*>*> Symbols; member
86 if (I->second.Symbols.is<std::vector<MCSymbol*>*>()) in ~MMIAddrLabelMap()
87 delete I->second.Symbols.get<std::vector<MCSymbol*>*>(); in ~MMIAddrLabelMap()
107 if (!Entry.Symbols.isNull()) { in getAddrLabelSymbol()
109 if (Entry.Symbols.is<MCSymbol*>()) in getAddrLabelSymbol()
110 return Entry.Symbols.get<MCSymbol*>(); in getAddrLabelSymbol()
111 return (*Entry.Symbols.get<std::vector<MCSymbol*>*>())[0]; in getAddrLabelSymbol()
121 Entry.Symbols = Result; in getAddrLabelSymbol()
134 if (Entry.Symbols.isNull()) in getAddrLabelSymbolToEmit()
136 else if (MCSymbol *Sym = Entry.Symbols.dyn_cast<MCSymbol*>()) in getAddrLabelSymbolToEmit()
[all …]
/external/clang/lib/Format/
DSortJavaScriptImports.cpp89 SmallVector<JsImportedSymbol, 1> Symbols; member
244 SmallVector<JsImportedSymbol, 1> Symbols = Reference.Symbols; in appendReference() local
246 Symbols.begin(), Symbols.end(), in appendReference()
250 if (Symbols == Reference.Symbols) { in appendReference()
257 SourceLocation SymbolsStart = Reference.Symbols.front().Range.getBegin(); in appendReference()
258 SourceLocation SymbolsEnd = Reference.Symbols.back().Range.getEnd(); in appendReference()
261 for (auto I = Symbols.begin(), E = Symbols.end(); I != E; ++I) { in appendReference()
262 if (I != Symbols.begin()) in appendReference()
313 for (size_t i = 0; i < Reference.Symbols.size(); ++i) in parseModuleReferences()
314 llvm::dbgs() << ", " << Reference.Symbols[i].Symbol << " as " in parseModuleReferences()
[all …]
/external/llvm/tools/llvm-cxxdump/
Dllvm-cxxdump.cpp123 StringRef Symbols[2]; in dumpCXXData() member
127 StringRef Symbols[1]; in dumpCXXData() member
131 StringRef Symbols[2]; in dumpCXXData() member
135 StringRef Symbols[1]; in dumpCXXData() member
151 StringRef Symbols[2]; in dumpCXXData() member
231 StringRef *I = std::begin(COL.Symbols), *E = std::end(COL.Symbols); in dumpCXXData()
240 StringRef *I = std::begin(CHD.Symbols), *E = std::end(CHD.Symbols); in dumpCXXData()
256 StringRef *I = std::begin(BCD.Symbols), *E = std::end(BCD.Symbols); in dumpCXXData()
269 StringRef *I = std::begin(TD.Symbols), *E = std::end(TD.Symbols); in dumpCXXData()
300 StringRef *I = std::begin(CT.Symbols), *E = std::end(CT.Symbols); in dumpCXXData()
[all …]
/external/llvm/lib/CodeGen/
DMachineModuleInfo.cpp58 TinyPtrVector<MCSymbol *> Symbols; member
100 if (!Entry.Symbols.empty()) { in getAddrLabelSymbolToEmit()
102 return Entry.Symbols; in getAddrLabelSymbolToEmit()
111 Entry.Symbols.push_back(Context.createTempSymbol()); in getAddrLabelSymbolToEmit()
112 return Entry.Symbols; in getAddrLabelSymbolToEmit()
137 assert(!Entry.Symbols.empty() && "Didn't have a symbol, why a callback?"); in UpdateForDeletedBlock()
143 for (MCSymbol *Sym : Entry.Symbols) { in UpdateForDeletedBlock()
159 assert(!OldEntry.Symbols.empty() && "Didn't have a symbol, why a callback?"); in UpdateForRAUWBlock()
164 if (NewEntry.Symbols.empty()) { in UpdateForRAUWBlock()
173 NewEntry.Symbols.insert(NewEntry.Symbols.end(), OldEntry.Symbols.begin(), in UpdateForRAUWBlock()
[all …]
/external/swiftshader/third_party/LLVM/tools/llvm-objdump/
DMachODump.cpp218 std::vector<Symbol> &Symbols, in getSectionsAndSymbols() argument
261 Symbols.push_back(copySymbol(STE)); in getSectionsAndSymbols()
266 Symbols.push_back(copySymbol(STE)); in getSectionsAndSymbols()
326 std::vector<Symbol> Symbols; in DisassembleInputMachO() local
329 getSectionsAndSymbols(Header, MachOObj.get(), &SymtabLC, Sections, Symbols, in DisassembleInputMachO()
333 std::vector<Symbol> UnsortedSymbols(Symbols); in DisassembleInputMachO()
335 array_pod_sort(Symbols.begin(), Symbols.end()); in DisassembleInputMachO()
364 std::vector<Symbol> Symbols; in DisassembleInputMachO() local
366 getSectionsAndSymbols(Header, DSYMObj.get(), 0, DSYMSections, Symbols, in DisassembleInputMachO()
427 for (unsigned SymIdx = 0; SymIdx != Symbols.size(); SymIdx++) { in DisassembleInputMachO()
[all …]
Dllvm-objdump.cpp178 std::vector<std::pair<uint64_t, StringRef> > Symbols; in DisassembleObject() local
188 Symbols.push_back(std::make_pair(Address, Name)); in DisassembleObject()
193 array_pod_sort(Symbols.begin(), Symbols.end()); in DisassembleObject()
215 if (Symbols.empty()) in DisassembleObject()
216 Symbols.push_back(std::make_pair(0, name)); in DisassembleObject()
261 for (unsigned si = 0, se = Symbols.size(); si != se; ++si) { in DisassembleObject()
262 uint64_t Start = Symbols[si].first; in DisassembleObject()
269 else if (Symbols[si + 1].first != Start) in DisassembleObject()
270 End = Symbols[si + 1].first - 1; in DisassembleObject()
275 outs() << '\n' << Symbols[si].second << ":\n"; in DisassembleObject()
/external/llvm/lib/Object/
DRecordStreamer.cpp15 State &S = Symbols[Symbol.getName()]; in markDefined()
33 State &S = Symbols[Symbol.getName()]; in markGlobal()
51 State &S = Symbols[Symbol.getName()]; in markUsed()
69 return Symbols.begin(); in begin()
72 RecordStreamer::const_iterator RecordStreamer::end() { return Symbols.end(); } in end()
/external/llvm/tools/yaml2obj/
Dyaml2elf.cpp119 const std::vector<ELFYAML::Symbol> &Symbols);
128 void addSymbols(const std::vector<ELFYAML::Symbol> &Symbols,
270 SHeader.sh_info = Doc.Symbols.Local.size() + 1; in initSymtabSectionHeader()
283 for (const auto &Sym : Doc.Symbols.Local) in initSymtabSectionHeader()
285 for (const auto &Sym : Doc.Symbols.Global) in initSymtabSectionHeader()
287 for (const auto &Sym : Doc.Symbols.Weak) in initSymtabSectionHeader()
291 addSymbols(Doc.Symbols.Local, Syms, ELF::STB_LOCAL); in initSymtabSectionHeader()
292 addSymbols(Doc.Symbols.Global, Syms, ELF::STB_GLOBAL); in initSymtabSectionHeader()
293 addSymbols(Doc.Symbols.Weak, Syms, ELF::STB_WEAK); in initSymtabSectionHeader()
315 void ELFState<ELFT>::addSymbols(const std::vector<ELFYAML::Symbol> &Symbols, in addSymbols() argument
[all …]
Dyaml2coff.cpp101 for (std::vector<COFFYAML::Symbol>::iterator i = Obj.Symbols.begin(), in parseSymbols()
102 e = Obj.Symbols.end(); i != e; ++i) { in parseSymbols()
209 for (std::vector<COFFYAML::Symbol>::iterator i = CP.Obj.Symbols.begin(), in layoutCOFF()
210 e = CP.Obj.Symbols.end(); in layoutCOFF()
444 for (std::vector<COFFYAML::Symbol>::iterator I = CP.Obj.Symbols.begin(), in writeCOFF()
445 E = CP.Obj.Symbols.end(); in writeCOFF()
470 for (std::vector<COFFYAML::Symbol>::const_iterator i = CP.Obj.Symbols.begin(), in writeCOFF()
471 e = CP.Obj.Symbols.end(); in writeCOFF()
/external/llvm/tools/dsymutil/
DDebugMap.h154 return make_range(Symbols.begin(), Symbols.end()); in symbols()
168 StringMap<SymbolMapping> Symbols; variable
183 std::swap(Symbols, RHS.Symbols);
190 Symbols = std::move(RHS.Symbols); in DebugMapObject()
DDebugMap.cpp29 auto InsertResult = Symbols.insert( in addSymbol()
43 Entries.reserve(Symbols.getNumItems()); in print()
44 for (const auto &Sym : make_range(Symbols.begin(), Symbols.end())) in print()
73 StringMap<SymbolMapping>::const_iterator Sym = Symbols.find(SymbolName); in lookupSymbol()
74 if (Sym == Symbols.end()) in lookupSymbol()
206 Entries.reserve(Obj.Symbols.size()); in YamlDMO()
207 for (auto &Entry : Obj.Symbols) in YamlDMO()
/external/antlr/antlr-3.4/runtime/Python/tests/
Dt033backtracking.g9 scope Symbols {
43 scope Symbols; // entire file is a scope
45 $Symbols::types = set()
71 scope Symbols; // put parameters and locals into same scope for now
73 $Symbols::types = set()
137 // scope Symbols; // structs are scopes
139 // $Symbols::types = set()
200 $Symbols::types.add($IDENTIFIER.text)
418 // scope Symbols; // blocks have a scope of symbols
420 // $Symbols::types = {}
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Dt033backtracking.g9 scope Symbols {
27 scope Symbols; // entire file is a scope
29 $Symbols::types = {};
55 scope Symbols; // put parameters and locals into same scope for now
57 $Symbols::types = set()
121 // scope Symbols; // structs are scopes
123 // $Symbols::types = set()
184 $Symbols::types[$IDENTIFIER.text] = true;
403 // scope Symbols; // blocks have a scope of symbols
405 // $Symbols::types = {}
/external/python/cpython3/Lib/lib2to3/
Dpygram.py20 class Symbols(object): class
34 python_symbols = Symbols(python_grammar)
40 pattern_symbols = Symbols(pattern_grammar)
/external/python/cpython2/Lib/lib2to3/
Dpygram.py20 class Symbols(object): class
34 python_symbols = Symbols(python_grammar)
40 pattern_symbols = Symbols(pattern_grammar)
/external/llvm/test/tools/llvm-readobj/
Dcodeview-linetables.test34 MFUN32-NEXT: SubSectionType: Symbols (0xF1)
42 MFUN32-NEXT: SubSectionType: Symbols (0xF1)
61 MFUN32-NEXT: SubSectionType: Symbols (0xF1)
80 MFUN32-NEXT: SubSectionType: Symbols (0xF1)
103 MFUN32-NEXT: SubSectionType: Symbols (0xF1)
190 MFUN64-NEXT: SubSectionType: Symbols (0xF1)
194 MFUN64-NEXT: SubSectionType: Symbols (0xF1)
209 MFUN64-NEXT: SubSectionType: Symbols (0xF1)
224 MFUN64-NEXT: SubSectionType: Symbols (0xF1)
247 MFUN64-NEXT: SubSectionType: Symbols (0xF1)
[all …]
Dsections-ext.test39 COFF-NEXT: Symbols [
89 ELF-NEXT: Symbols [
111 ELF-NEXT: Symbols [
156 ELF-NEXT: Symbols [
188 MACHO-I386-NEXT: Symbols [
232 MACHO-X86-64-NEXT: Symbols [
267 MACHO-X86-64-NEXT: Symbols [
339 MACHO-PPC-NEXT: Symbols [
405 MACHO-PPC-NEXT: Symbols [
429 MACHO-PPC-NEXT: Symbols [
[all …]
/external/llvm/include/llvm/MC/
DMCAssembler.h105 SymbolDataListType Symbols; variable
314 symbol_iterator symbol_begin() { return Symbols.begin(); } in symbol_begin()
315 const_symbol_iterator symbol_begin() const { return Symbols.begin(); } in symbol_begin()
317 symbol_iterator symbol_end() { return Symbols.end(); } in symbol_end()
318 const_symbol_iterator symbol_end() const { return Symbols.end(); } in symbol_end()
325 size_t symbol_size() const { return Symbols.size(); } in symbol_size()
/external/swiftshader/third_party/LLVM/include/llvm/MC/
DMCAssembler.h673 iplist<MCSymbolData> Symbols; variable
833 const SymbolDataListType &getSymbolList() const { return Symbols; } in getSymbolList()
834 SymbolDataListType &getSymbolList() { return Symbols; } in getSymbolList()
836 symbol_iterator symbol_begin() { return Symbols.begin(); } in symbol_begin()
837 const_symbol_iterator symbol_begin() const { return Symbols.begin(); } in symbol_begin()
839 symbol_iterator symbol_end() { return Symbols.end(); } in symbol_end()
840 const_symbol_iterator symbol_end() const { return Symbols.end(); } in symbol_end()
842 size_t symbol_size() const { return Symbols.size(); } in symbol_size()
/external/swiftshader/third_party/LLVM/lib/MC/
DWinCOFFObjectWriter.cpp135 symbols Symbols; member in __anon28196b7a0111::WinCOFFObjectWriter
326 for (symbols::iterator I = Symbols.begin(), E = Symbols.end(); I != E; ++I) in ~WinCOFFObjectWriter()
333 return createCOFFEntity<COFFSymbol>(Name, Symbols); in createSymbol()
341 = createCOFFEntity<COFFSymbol>(Symbol->getName(), Symbols); in GetOrCreateCOFFSymbol()
747 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) { in WriteObject()
771 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) { in WriteObject()
879 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) in WriteObject()
/external/llvm/lib/DebugInfo/PDB/Raw/
DPDBFile.cpp250 if (!Symbols) { in getPDBSymbolStream()
264 Symbols = std::move(TempSymbols); in getPDBSymbolStream()
266 return *Symbols; in getPDBSymbolStream()
379 if (Symbols) { in commit()
380 if (auto EC = Symbols->commit()) in commit()
/external/llvm/test/Object/
Dyaml2obj-elf-multi-doc.test27 Symbols:
49 Symbols:
/external/llvm/test/MC/MachO/ARM/
Ddarwin-Thumb-reloc.s89 @ CHECK: Symbols [
111 @ CHECK: Indirect Symbols {
113 @ CHECK: Symbols [

12345678