HomeSort by relevance Sort by last modified time
    Searched defs:Symbol (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/llvm/lib/MC/
MCELFObjectTargetWriter.cpp 38 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
39 return &Symbol.AliasedSymbol();
  /external/javassist/src/main/javassist/compiler/ast/
Symbol.java 23 public class Symbol extends ASTree {
26 public Symbol(String sym) {
  /frameworks/compile/mclinker/include/mcld/LD/
ELFReader.h 48 typedef llvm::ELF::Elf32_Sym Symbol;
85 /// readSignature - read a symbol from the given Input and index in symtab
115 typedef llvm::ELF::Elf64_Sym Symbol;
152 /// readSignature - read a symbol from the given Input and index in symtab
Archive.h 104 struct Symbol
114 Symbol(const char* pName,
120 ~Symbol()
129 typedef std::vector<Symbol*> SymTabType;
204 /// @param pName - symbol name
209 enum Symbol::Status pStatus = Archive::Symbol::Unknown);
211 /// getSymbolName - get the symbol name with the given index
217 /// getSymbolStatus - get the status of a symbol
218 enum Symbol::Status getSymbolStatus(size_t pSymIdx) const
    [all...]
  /external/llvm/bindings/python/llvm/tests/
test_object.py 5 from ..object import Symbol
36 for symbol in o.get_symbols():
38 assert isinstance(symbol, Symbol)
39 assert isinstance(symbol.name, str)
40 assert isinstance(symbol.address, long)
41 assert isinstance(symbol.size, long)
42 assert isinstance(symbol.file_offset, long)
46 for symbol in o.get_symbols():
47 symbol.cache(
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMELFObjectWriter.cpp 56 // I.e. not as an offset to a section symbol.
67 const MCSymbol &Symbol = Target.getSymA()->getSymbol().AliasedSymbol();
71 static_cast<const MCSectionELF&>(Symbol.getSection());
81 dbgs() << "considering symbol "
83 << Symbol.getName() << "/"
87 << Symbol.isAbsolute() << "/" << Symbol.isDefined() << "/"
88 << Symbol.isVariable() << "/" << Symbol.isTemporary()
135 return &Symbol;
    [all...]
  /external/llvm/lib/Target/Mips/
MipsMCInstLower.cpp 40 const MCSymbol *Symbol;
73 Symbol = MO.getMBB()->getSymbol();
77 Symbol = Mang->getSymbol(MO.getGlobal());
82 Symbol = AsmPrinter.GetBlockAddressSymbol(MO.getBlockAddress());
87 Symbol = AsmPrinter.GetExternalSymbolSymbol(MO.getSymbolName());
92 Symbol = AsmPrinter.GetJTISymbol(MO.getIndex());
96 Symbol = AsmPrinter.GetCPISymbol(MO.getIndex());
104 const MCSymbolRefExpr *MCSym = MCSymbolRefExpr::Create(Symbol, Kind, *Ctx);
  /external/llvm/lib/Target/XCore/
XCoreMCInstLower.cpp 39 const MCSymbol *Symbol;
43 Symbol = MO.getMBB()->getSymbol();
46 Symbol = Mang->getSymbol(MO.getGlobal());
50 Symbol = Printer.GetBlockAddressSymbol(MO.getBlockAddress());
54 Symbol = Printer.GetExternalSymbolSymbol(MO.getSymbolName());
58 Symbol = Printer.GetJTISymbol(MO.getIndex());
61 Symbol = Printer.GetCPISymbol(MO.getIndex());
68 const MCSymbolRefExpr *MCSym = MCSymbolRefExpr::Create(Symbol, Kind, *Ctx);
  /external/llvm/lib/Transforms/IPO/
Internalize.cpp 37 cl::desc("A file containing list of symbol names to preserve"));
42 cl::desc("A list of symbol names to preserve"),
95 std::string Symbol;
96 In >> Symbol;
97 if (!Symbol.empty())
98 ExternalNames.insert(Symbol);
136 // Never internalize the llvm.used symbol. It is used to implement
  /external/srec/srec/Semproc/include/
SR_SymbolTable.h 39 * Entries in the Symbol table are symbols i.e. key-value pairs.
52 Symbol;
55 * The Symbol Table
67 Symbol Symbols[MAX_SYMBOLS];
70 * Pointer to the next available symbol slot for storing a symbol in the array
72 Symbol *next;
77 Symbol SpecialSymbols[MAX_SPECIAL_SYMBOLS];
88 * The "undefined" symbol value
100 * @param self pointer to the symbol tabl
    [all...]
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCELFObjectWriter.cpp 53 : ELFRelocationEntry(RE.r_offset, RE.Index, RE.Type, RE.Symbol,
235 const MCSymbol &Symbol = Target.getSymA()->getSymbol().AliasedSymbol();
239 // The .odp creation emits a relocation against the symbol ".TOC." which
240 // create a R_PPC64_TOC relocation. However the relocation symbol name
241 // in final object creation should be NULL, since the symbol does not
246 if (EmitThisSym && !Symbol.isTemporary())
247 return &Symbol;
288 R->Symbol, R->r_addend, *R->Fixup);
  /external/llvm/include/llvm/MC/
MCWin64EH.h 65 Function(0), PrologEnd(0), Symbol(0),
74 MCSymbol *Symbol;
MCELFObjectWriter.h 34 const MCSymbol *Symbol;
39 : r_offset(0), Index(0), Type(0), Symbol(0), r_addend(0), Fixup(0) {}
43 : r_offset(RelocOffset), Index(Idx), Type(RelType), Symbol(Sym),
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64ELFStreamer.cpp 67 // We have to keep track of the mapping symbol state of any sections we
77 /// streamer. We override it to add the appropriate mapping symbol if
85 /// AArch64 streamer overrides it to add the appropriate mapping symbol ($d)
93 /// AArch64 streamer overrides it to add the appropriate mapping symbol ($d)
124 MCSymbol *Symbol =
128 MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
132 Symbol->setSection(*getCurrentSection());
135 Symbol->setVariableValue(Value);
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
symbols.h 60 typedef struct Symbol_Rec Symbol;
64 Symbol *symb;
72 Symbol *symbols;
81 // Symbol table is a simple binary tree.
86 Symbol *left, *right;
87 Symbol *next;
104 Symbol *NewSymbol(SourceLoc *loc, Scope *fScope, int name, symbolkind kind);
105 Symbol *AddSymbol(SourceLoc *loc, Scope *fScope, int atom, symbolkind kind);
106 Symbol *LookUpLocalSymbol(Scope *fScope, int atom);
107 Symbol *LookUpSymbol(Scope *fScope, int atom)
    [all...]
  /frameworks/compile/mclinker/include/mcld/Target/
ELFDynamic.h 59 typedef llvm::ELF::Elf32_Sym Symbol;
75 { return sizeof(Symbol); }
96 typedef llvm::ELF::Elf64_Sym Symbol;
112 { return sizeof(Symbol); }
  /external/llvm/bindings/python/llvm/
object.py 19 Section, Symbol, and Relocation, respectively.
40 To aid working around this limitation, each Section, Symbol, and Relocation
60 for symbol in symbols:
61 print symbol.name # This raises because the object has expired.
65 for symbol in obj.get_symbols():
66 symbols.append(symbol)
67 print symbol.name
69 for symbol in symbols:
70 print symbol.name # OK
71 print symbol.address # NOT OK. We didn't look up this property before
392 def symbol(self): member in class:Relocation
    [all...]
  /external/llvm/examples/BrainF/
BrainF.h 47 enum Symbol {
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 220 // Obtain the symbol name which is referenced in the relocation
222 const SymbolRef &Symbol = Rel.Symbol;
223 Symbol.getName(TargetName);
224 // First search for the symbol in the local symbol table
230 // Search for the symbol in the global symbol table
RuntimeDyldImpl.h 89 /// used to make a relocation section relative instead of symbol relative.
103 SymbolRef Symbol;
137 // A global symbol table for symbols from all loaded modules. Maps the
138 // symbol name to a (SectionID, offset in section) pair.
143 // Pair representing the size and alignment requirement for a common symbol.
148 // For each symbol, keep a list of relocations based on it. Anytime
151 // The symbol (or section) the relocation is sourced from is the Key
160 // external when they aren't found in the global symbol table of all loaded
161 // modules. This map is indexed by symbol name.
198 // a common symbol. Returns no alignment requirement if not implemented
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachObjectWriter.cpp 141 // is to use an absolute symbol (which we don't support yet).
155 // Neither symbol can be modified.
158 report_fatal_error("unsupported relocation of modified symbol");
212 const MCSymbol *Symbol = &Target.getSymA()->getSymbol();
213 MCSymbolData &SD = Asm.getSymbolData(*Symbol);
220 if (Symbol->isInSection()) {
228 // symbol to use as a base address (a local symbol with no preceding
229 // non-local symbol).
237 } else if (Symbol->isInSection() && !Symbol->isVariable())
    [all...]
  /external/valgrind/main/coregrind/m_initimg/
simple_huffman.c 22 * 12 bits per symbol (for 8 bit symbols), meaning a maximum of 384
71 UInt Symbol;
189 sym[k].Symbol = k;
201 /* Sort histogram - most frequent symbol first (bubble sort) */
233 /* Append symbol to tree description */
235 _Huffman_WriteBits( stream, sym[first].Symbol, 8 );
237 /* Store code info in symbol array */
313 UInt symbol; local
318 /* Get symbol from tree description */
319 symbol = _Huffman_ReadBits( stream, 8 )
371 UInt k, total_bytes, swaps, symbol, last_symbol; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_DecodeCoeffsToPair_s.s 52 Symbol RN 7
69 Symbol RN 7
121 ;// Decode Symbol = TotalCoeff*4 + TrailingOnes
122 M_BD_VLD Symbol, T1, T2, pVLDTable, 4, 2
124 MOVS TotalCoeff, Symbol, LSR #2
129 CMP Symbol, #17*4
130 BGE.W EndBadSymbol ;// Error if bad symbol
138 ANDS TrailingOnes, Symbol, #3
144 M_BD_READ8 Symbol, 1, T1
147 SUB T1, T1, Symbol, LSL #
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
armVCM4P10_DecodeCoeffsToPair_s.s 52 Symbol RN 7
69 Symbol RN 7
121 ;// Decode Symbol = TotalCoeff*4 + TrailingOnes
122 M_BD_VLD Symbol, T1, T2, pVLDTable, 4, 2
124 MOVS TotalCoeff, Symbol, LSR #2
129 CMP Symbol, #17*4
130 BGE.W EndBadSymbol ;// Error if bad symbol
138 ANDS TrailingOnes, Symbol, #3
144 M_BD_READ8 Symbol, 1, T1
147 SUB T1, T1, Symbol, LSL #
    [all...]
  /external/llvm/include/llvm/Object/
Archive.h 170 class Symbol {
176 bool operator ==(const Symbol &other) const {
180 Symbol(const Archive *p, uint32_t symi, uint32_t stri)
186 Symbol getNext() const;
190 Symbol symbol; member in class:llvm::object::Archive::symbol_iterator
192 symbol_iterator(const Symbol &s) : symbol(s) {}
193 const Symbol *operator->() const {
194 return &symbol;
    [all...]

Completed in 571 milliseconds

1 2 3