Lines Matching refs:symbol
84 SymbolTable("t", cl::desc("Display the symbol table"));
444 // Disassemble symbol by symbol.
449 // symbol.
452 // Make sure this symbol takes up space.
456 // This symbol has the same address as the next symbol. Skip it.
625 const coff_symbol *symbol = 0;
629 if (symbol->StorageClass == COFF::IMAGE_SYM_CLASS_STATIC
630 && symbol->Value == 0) { // Section definition.
647 if (error(coff->getSymbol(i, symbol))) return;
648 if (error(coff->getSymbolName(symbol, name))) return;
650 << "(sec " << format("%2d", int(symbol->SectionNumber)) << ")"
652 << "(ty " << format("%3x", unsigned(symbol->Type)) << ")"
653 << "(scl " << format("%3x", unsigned(symbol->StorageClass)) << ") "
654 << "(nx " << unsigned(symbol->NumberOfAuxSymbols) << ") "
655 << "0x" << format("%08x", unsigned(symbol->Value)) << " "
657 aux_count = symbol->NumberOfAuxSymbols;
663 outs() << "SYMBOL TABLE:\n";
712 << ' ' // Indirect reference to another symbol.
713 << Debug // Debugging (d) or dynamic (D) symbol.