HomeSort by relevance Sort by last modified time
    Searched defs:Symbols (Results 1 - 11 of 11) sorted by null

  /external/srec/srec/Semproc/include/
SR_SymbolTable.h 39 * Entries in the Symbol table are symbols i.e. key-value pairs.
60 * Keep track of symbols using a hashmap of pointers
65 * The symbols stored as an array
67 Symbol Symbols[MAX_SYMBOLS];
75 * Any special symbols that are set prior to semantic processing and read by the semantic processor
80 * The number of special symbols set.
105 * Copies the symbols to a new hashmap (creates values dynamically)
142 * Store a "special" key value pair. These are special symbols that are set prior to semantic
  /external/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...]
  /external/llvm/include/llvm/MC/
MCContext.h 62 /// Symbols - Bindings of names to symbols.
63 SymbolTable Symbols;
66 /// and artificial symbols.
149 /// @param Name - The symbol name, which must be unique across all symbols.
157 /// want to, for example, iterate over all symbols. 'const' because we
161 return Symbols;
MCAssembler.h 365 /// AddrDelta - The expression for the difference of the two symbols that
396 /// AddrDelta - The expression for the difference of the two symbols that
673 iplist<MCSymbolData> Symbols;
680 /// The map of symbols to their associated assembler backend data.
687 /// The set of function symbols for which a .thumb_func directive has
833 const SymbolDataListType &getSymbolList() const { return Symbols; }
834 SymbolDataListType &getSymbolList() { return Symbols; }
836 symbol_iterator symbol_begin() { return Symbols.begin(); }
837 const_symbol_iterator symbol_begin() const { return Symbols.begin(); }
839 symbol_iterator symbol_end() { return Symbols.end();
    [all...]
  /external/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...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 204 std::vector<SymbolRef> &Symbols,
209 Symbols.push_back(*SI);
289 std::vector<SymbolRef> Symbols;
292 getSectionsAndSymbols(Header, MachOOF.get(), &SymtabLC, Sections, Symbols,
296 std::vector<SymbolRef> UnsortedSymbols(Symbols);
297 // Sort the symbols by address, just in case they didn't come in that way.
298 std::sort(Symbols.begin(), Symbols.end(), SymbolSorter());
328 std::vector<SymbolRef> Symbols;
330 getSectionsAndSymbols(Header, DSYMObj.get(), 0, DSYMSections, Symbols,
    [all...]
llvm-objdump.cpp 181 // Make a list of all the symbols in this section.
182 std::vector<std::pair<uint64_t, StringRef> > Symbols;
192 Symbols.push_back(std::make_pair(Address, Name));
196 // Sort the symbols by address, just in case they didn't come in that way.
197 array_pod_sort(Symbols.begin(), Symbols.end());
217 // If the section has no symbols just insert a dummy one and disassemble
219 if (Symbols.empty())
220 Symbols.push_back(std::make_pair(0, name));
265 for (unsigned si = 0, se = Symbols.size(); si != se; ++si)
    [all...]
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 125 typedef std::vector<COFFSymbol*> symbols; typedef in class:__anon8237::WinCOFFObjectWriter
135 symbols Symbols;
326 for (symbols::iterator I = Symbols.begin(), E = Symbols.end(); I != E; ++I)
333 return createCOFFEntity<COFFSymbol>(Name, Symbols);
341 = createCOFFEntity<COFFSymbol>(Symbol->getName(), Symbols);
513 // need symbols so they can be linked to code in the .text section right?
517 // For now, all non-variable symbols are exported
    [all...]
  /external/llvm/tools/lto/
LTOModule.cpp 186 // add to list of defined symbols
284 // Add to list of defined symbols.
289 // contortions to avoid real linker symbols. For instance, the
301 // symbols (.objc_class_name_Foo = 0) and a floating reference
304 // The following synthesizes the implicit .objc_* symbols for the linker
333 // ignore all llvm.* symbols
380 // add to table of symbols
431 // ignore all llvm.* symbols
467 StringMap<State> Symbols;
470 State &S = Symbols[Symbol.getName()]
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 489 // Check to see that all assembler local symbols were actually defined.
490 // Targets that don't do subsections via symbols may not want this, though,
494 const MCContext::SymbolTable &Symbols = getContext().getSymbols();
495 for (MCContext::SymbolTable::const_iterator i = Symbols.begin(),
496 e = Symbols.end();
499 // Variable symbols may not be marked as defined, so check those
792 "' (no symbols present)");
    [all...]
  /packages/apps/Calculator/
arity-2.1.2.jar 

Completed in 535 milliseconds