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

  /external/llvm/lib/Target/X86/
X86TargetObjectFile.cpp 33 const MCExpr *Four = MCConstantExpr::Create(4, getContext());
X86MCInstLower.cpp 191 MCConstantExpr::Create(MO.getOffset(), Ctx),
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 339 const MCConstantExpr *OffsetImm; // Offset immediate value
529 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
537 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
545 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
553 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
561 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm())
    [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 207 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
224 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
241 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
256 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
272 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm())
    [all...]
  /external/llvm/lib/MC/
MCExpr.cpp 34 OS << cast<MCConstantExpr>(*this).getValue();
87 if (isa<MCConstantExpr>(BE.getLHS()) || isa<MCSymbolRefExpr>(BE.getLHS())) {
97 if (const MCConstantExpr *RHSC = dyn_cast<MCConstantExpr>(BE.getRHS())) {
126 if (isa<MCConstantExpr>(BE.getRHS()) || isa<MCSymbolRefExpr>(BE.getRHS())) {
155 const MCConstantExpr *MCConstantExpr::Create(int64_t Value, MCContext &Ctx) {
156 return new (Ctx) MCConstantExpr(Value);
271 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(this))
    [all...]
MCSymbol.cpp 57 assert((isUndefined() || (isAbsolute() && isa<MCConstantExpr>(Value))) &&
MCELFStreamer.cpp 220 SD.setSize(MCConstantExpr::Create(Size, getContext()));
MCStreamer.cpp 139 const MCExpr *E = MCConstantExpr::Create(FillValue, getContext());
MCAsmStreamer.cpp 604 EmitValue(MCConstantExpr::Create(Value, getContext()), Size, AddrSpace);
    [all...]
MCDwarf.cpp 119 MCConstantExpr::Create(IntVal, MCOS.getContext());
    [all...]
MachObjectWriter.cpp 318 Address = cast<MCConstantExpr>(Symbol.getVariableValue())->getValue();
  /external/llvm/include/llvm/MC/
MCExpr.h 112 //// MCConstantExpr - Represent a constant integer expression.
113 class MCConstantExpr : public MCExpr {
116 explicit MCConstantExpr(int64_t _Value)
123 static const MCConstantExpr *Create(int64_t Value, MCContext &Ctx);
136 static bool classof(const MCConstantExpr *) { return true; }
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCAsmInfo.cpp 118 const MCExpr *Four = MCConstantExpr::Create(4, Context);
X86MCCodeEmitter.cpp 205 Expr = MCConstantExpr::Create(DispOp.getImm(), Ctx);
232 Expr = MCBinaryExpr::CreateAdd(Expr, MCConstantExpr::Create(ImmOffset, Ctx),
    [all...]
  /external/llvm/lib/Target/ARM/
ARMMCInstLower.cpp 60 MCConstantExpr::Create(MO.getOffset(),
ARMAsmPrinter.cpp 882 MCConstantExpr::Create(ACPV->getPCAdjustment(),
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430MCInstLower.cpp 104 MCConstantExpr::Create(MO.getOffset(), Ctx),
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 181 else if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr))
432 const MCExpr *EVal = MCConstantExpr::Create(reg,getContext());
  /external/llvm/lib/Target/MBlaze/
MBlazeMCInstLower.cpp 112 MCConstantExpr::Create(MO.getOffset(), Ctx),
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 625 if (Sym->isVariable() && isa<MCConstantExpr>(Sym->getVariableValue())) {
640 Res = MCConstantExpr::Create(IntVal, getContext());
662 Res = MCConstantExpr::Create(IntVal, getContext());
803 Res = MCConstantExpr::Create(Value, getContext());
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCMCInstLower.cpp 116 MCConstantExpr::Create(MO.getOffset(), Ctx),
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 415 OutStreamer.EmitELFSize(GVSym, MCConstantExpr::Create(Size, OutContext));
    [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 84 const MCExpr *E = MCConstantExpr::Create(8, getContext());
  /external/llvm/lib/Target/ARM/InstPrinter/
ARMInstPrinter.cpp 211 const MCConstantExpr *BranchTarget = dyn_cast<MCConstantExpr>(Op.getExpr());
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 482 Add = MCConstantExpr::Create(SymbolicOp.AddSymbol.Value, *Ctx);
493 Sub = MCConstantExpr::Create(SymbolicOp.SubtractSymbol.Value, *Ctx);
499 Off = MCConstantExpr::Create(SymbolicOp.Value, *Ctx);
521 Expr = MCConstantExpr::Create(0, *Ctx);
    [all...]

Completed in 1702 milliseconds