Searched defs:Sym (Results 101 - 105 of 105) sorted by relevance

12345

/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1433 SDValue SelectionDAG::getExternalSymbol(const char *Sym, EVT VT) { argument
1434 SDNode *&N = ExternalSymbols[Sym];
1436 N = new (NodeAllocator) ExternalSymbolSDNode(false, Sym, 0, VT);
1441 SDValue SelectionDAG::getTargetExternalSymbol(const char *Sym, EVT VT, argument
1444 TargetExternalSymbols[std::pair<std::string,unsigned char>(Sym,
1447 N = new (NodeAllocator) ExternalSymbolSDNode(true, Sym, TargetFlags, VT);
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp680 MCSymbol *Sym = i->getValue(); local
684 if (Sym->isTemporary() && !Sym->isVariable() && !Sym->isDefined())
690 "assembler local symbol '" + Sym->getName() + "' not defined");
801 MCSymbol *Sym = Ctx.CreateTempSymbol(); local
802 Out.EmitLabel(Sym);
803 Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None,
858 MCSymbol *Sym = getContext().GetOrCreateSymbol(SymbolName); local
862 if (Sym
895 MCSymbol *Sym = local
917 MCSymbol *Sym = Ctx.CreateTempSymbol(); local
2147 isUsedIn(const MCSymbol *Sym, const MCExpr *Value) argument
2191 MCSymbol *Sym = getContext().LookupSymbol(Name); local
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp2380 const char *Sym = S->getSymbol(); local
2382 DAG.getTargetExternalSymbol(Sym, getPointerTy(), AArch64II::MO_GOT);
2389 const char *Sym = S->getSymbol(); local
2390 Callee = DAG.getTargetExternalSymbol(Sym, getPointerTy(), 0);
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp1628 const char *Sym = S->getSymbol(); local
1633 ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym,
1684 const char *Sym = S->getSymbol(); local
1688 ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym,
1705 Callee = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlags);
6439 MCSymbol *Sym = II->getOperand(0).getMCSymbol(); local
6440 if (!MMI.hasCallSiteLandingPad(Sym)) continue;
6442 SmallVectorImpl<unsigned> &CallSiteIdxs = MMI.getCallSiteLandingPad(Sym);
/external/valgrind/main/perf/
H A Dtinycc.c485 #define STV_HIDDEN 2 /* Sym unavailable in other modules */
1753 "Static Sym". */
2133 struct Sym *sym_define; /* direct pointer to define */
2134 struct Sym *sym_label; /* direct pointer to label */
2135 struct Sym *sym_struct; /* direct pointer to structure */
2136 struct Sym *sym_identifier; /* direct pointer to identifier */
2152 struct Sym *ref;
2177 struct Sym *sym; /* symbol, if (VT_SYM | VT_CONST) */
2181 typedef struct Sym {
2186 struct Sym *nex
2179 typedef struct Sym { struct
2187 } Sym; typedef in typeref:struct:Sym
[all...]

Completed in 790 milliseconds

12345