HomeSort by relevance Sort by last modified time
    Searched defs:Symbols (Results 1 - 14 of 14) 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/Target/NVPTX/
NVPTXAsmPrinter.h 90 // in 'buffer', and Symbols[i-1] records the Value*.
99 SmallVector<Value *, 4> Symbols;
140 Symbols.push_back(GVar);
163 Value *v = Symbols[nSym];
  /external/llvm/lib/CodeGen/
MachineModuleInfo.cpp 55 /// Symbols - The symbols for the label. This is a pointer union that is
56 /// either one symbol (the common case) or a list of symbols.
57 PointerUnion<MCSymbol *, std::vector<MCSymbol*>*> Symbols;
69 /// DeletedAddrLabelsNeedingEmission - This is a per-function list of symbols
70 /// whose corresponding BasicBlock got deleted. These symbols need to be
82 // Deallocate any of the 'list of symbols' case.
85 if (I->second.Symbols.is<std::vector<MCSymbol*>*>())
86 delete I->second.Symbols.get<std::vector<MCSymbol*>*>();
106 if (!Entry.Symbols.isNull())
    [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 206 std::vector<SymbolRef> &Symbols,
211 Symbols.push_back(*SI);
295 std::vector<SymbolRef> Symbols;
298 getSectionsAndSymbols(Header, MachOOF.get(), &SymtabLC, Sections, Symbols,
302 std::vector<SymbolRef> UnsortedSymbols(Symbols);
303 // Sort the symbols by address, just in case they didn't come in that way.
304 std::sort(Symbols.begin(), Symbols.end(), SymbolSorter());
380 for (unsigned SymIdx = 0; SymIdx != Symbols.size(); SymIdx++) {
382 Symbols[SymIdx].getName(SymName)
    [all...]
llvm-objdump.cpp 222 // Make a list of all the symbols in this section.
223 std::vector<std::pair<uint64_t, StringRef> > Symbols;
235 Symbols.push_back(std::make_pair(Address, Name));
239 // Sort the symbols by address, just in case they didn't come in that way.
240 array_pod_sort(Symbols.begin(), Symbols.end());
269 // If the section has no symbols just insert a dummy one and disassemble
271 if (Symbols.empty())
272 Symbols.push_back(std::make_pair(0, name));
329 for (unsigned si = 0, se = Symbols.size(); si != se; ++si)
    [all...]
  /external/llvm/utils/yaml2obj/
yaml2obj.cpp 511 YS.printError(SymbolsN, "Symbols must be a sequence");
662 Symbols.push_back(Sym);
689 } else if (KeyValue == "symbols") {
724 std::vector<Symbol> Symbols;
759 // Calculate number of symbols.
761 for (std::vector<COFFParser::Symbol>::iterator i = CP.Symbols.begin(),
762 e = CP.Symbols.end();
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 84 typedef llvm::DenseSet<SymbolRef> Symbols;
87 /// A (stack of) a set of symbols that are registered with this
92 SmallVector<Symbols *, 2> interestingSymbols;
136 Symbols &getInterestingSymbols();
  /external/llvm/include/llvm/MC/
MCContext.h 68 /// Symbols - Bindings of names to symbols.
69 SymbolTable Symbols;
72 /// and artificial symbols.
127 /// Symbols created for the start and end of this section.
213 /// @param Name - The symbol name, which must be unique across all symbols.
222 /// want to, for example, iterate over all symbols. 'const' because we
226 return Symbols;
MCAssembler.h 490 /// AddrDelta - The expression for the difference of the two symbols that
522 /// AddrDelta - The expression for the difference of the two symbols that
845 iplist<MCSymbolData> Symbols;
852 /// The map of symbols to their associated assembler backend data.
864 /// The set of function symbols for which a .thumb_func directive has
1048 const SymbolDataListType &getSymbolList() const { return Symbols; }
1049 SymbolDataListType &getSymbolList() { return Symbols; }
1051 symbol_iterator symbol_begin() { return Symbols.begin(); }
1052 const_symbol_iterator symbol_begin() const { return Symbols.begin(); }
1054 symbol_iterator symbol_end() { return Symbols.end();
    [all...]
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 121 typedef std::vector<COFFSymbol*> symbols; typedef in class:__anon11566::WinCOFFObjectWriter
132 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);
511 // need symbols so they can be linked to code in the .text section right?
515 // For now, all non-variable symbols are exported
    [all...]
  /external/llvm/tools/lto/
LTOModule.cpp 110 cl::desc("Don't place zero-initialized symbols into bss section"),
424 // Add to list of defined symbols.
432 // contortions to avoid real linker symbols. For instance, the
444 // symbols (.objc_class_name_Foo = 0) and a floating reference
447 // The following synthesizes the implicit .objc_* symbols for the linker
474 // add to list of defined symbols
480 // ignore all llvm.* symbols
538 // add to table of symbols
572 // add to table of symbols
613 // ignore all llvm.* symbols
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 333 // Process any special transfer function for dead symbols.
338 // up. Since no symbols are dead, we can optimize and not clean out
345 // values of the soon to be dead symbols.
388 // Remove dead bindings and symbols.
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 636 // Check to see that all assembler local symbols were actually defined.
637 // Targets that don't do subsections via symbols may not want this, though,
641 const MCContext::SymbolTable &Symbols = getContext().getSymbols();
642 for (MCContext::SymbolTable::const_iterator i = Symbols.begin(),
643 e = Symbols.end();
646 // Variable symbols may not be marked as defined, so check those
    [all...]
  /packages/apps/Calculator/
arity-2.1.2.jar 

Completed in 298 milliseconds