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

1 2

  /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/qemu-pc-bios/bochs/bios/
makesym.perl 16 if ($where == WHERE_BEFORE_SYM_TABLE && /^Symbols:/) {
  /external/srec/srec/Semproc/src/
SymbolTable.c 207 MEMCHK(rc, ptr->next, &ptr->Symbols[MAX_SYMBOLS-1]);
224 ptr->next = &ptr->Symbols[0];
227 ptr->Symbols[i].key[0] = 0;
228 ptr->Symbols[i].value[0] = 0;
246 ptr->next = &ptr->Symbols[0
250 ptr->Symbols[i].key[0] = 0;
251 ptr->Symbols[i].value[0] = 0;
291 PLogError(L("Semproc: Symbol table has too many special symbols"));
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
backtracking.rb 17 scope Symbols {
36 scope Symbols; // entire file is a scope
38 $Symbols::types = Set.new
64 scope Symbols; // put parameters and locals into same scope for now
66 $Symbols::types = set()
136 $Symbols::types.add($IDENTIFIER.text)
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.h 54 const SymbolTableMap &Symbols,
RuntimeDyldELF.h 74 const SymbolTableMap &Symbols,
RuntimeDyldMachO.cpp 211 const SymbolTableMap &Symbols,
225 SymbolTableMap::const_iterator lsi = Symbols.find(TargetName.data());
226 if (lsi != Symbols.end()) {
RuntimeDyldImpl.h 137 // A global symbol table for symbols from all loaded modules. Maps the
145 // Keep a map of common symbols to their info pairs
159 // Relocations to external symbols that are not yet resolved. Symbols are
233 /// \brief Given the common symbols discovered in the object file, emit a
292 const SymbolTableMap &Symbols,
295 /// \brief Resolve relocations to external symbols.
RuntimeDyldELF.cpp 95 // addresses for sections and common symbols
599 const SymbolTableMap &Symbols,
615 SymbolTableMap::const_iterator lsi = Symbols.find(TargetName.data());
618 if (lsi != Symbols.end()) {
823 // Extra check to avoid relocation againt empty symbols (usually
  /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/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/include/llvm/MC/
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...]
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;
  /external/llvm/lib/MC/
MCContext.cpp 38 Allocator(), Symbols(Allocator), UsedNames(Allocator),
64 // NOTE: The symbols are all allocated out of a bump pointer allocator,
77 Symbols.clear();
110 assert(!Name.empty() && "Normal symbols cannot be unnamed!");
114 StringMapEntry<MCSymbol*> &Entry = Symbols.GetOrCreateValue(Name);
133 assert(isTemporary && "Cannot rename non temporary symbols");
192 return Symbols.lookup(Name);
WinCOFFObjectWriter.cpp 121 typedef std::vector<COFFSymbol*> symbols; typedef in class:__anon11568::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/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];
  /packages/apps/Calculator/src/com/android/calculator2/
Logic.java 32 import org.javia.arity.Symbols;
37 private Symbols mSymbols = new Symbols();
  /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/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/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/webkit/Tools/DumpRenderTree/qt/
fonts.conf 231 <string>Standard Symbols L</string>
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /external/v8/test/mjsunit/
switch.js 141 // Symbols
395 } else if (test_type === 'symbols') {
439 var test_types = ['symbols', 'strings', 'oddball', 'smi', 'heapnum'];
  /external/clang/lib/CodeGen/
CGObjCMac.cpp 840 /// LazySymbols - Symbols to generate a lazy reference for. See
844 /// DefinedSymbols - External symbols which are defined by thi
    [all...]

Completed in 1127 milliseconds

1 2