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

1 2

  /external/llvm/lib/Target/X86/
X86TargetObjectFile.cpp 32 const MCExpr *Four = MCConstantExpr::Create(4, getContext());
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 366 const MCConstantExpr *OffsetImm; // Offset immediate value
550 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
557 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
564 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
571 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
578 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm())
    [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 246 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
260 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
274 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
288 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
302 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm())
    [all...]
  /external/llvm/lib/MC/
MCExpr.cpp 36 OS << cast<MCConstantExpr>(*this).getValue();
89 if (isa<MCConstantExpr>(BE.getLHS()) || isa<MCSymbolRefExpr>(BE.getLHS())) {
98 if (const MCConstantExpr *RHSC = dyn_cast<MCConstantExpr>(BE.getRHS())) {
127 if (isa<MCConstantExpr>(BE.getRHS()) || isa<MCSymbolRefExpr>(BE.getRHS())) {
156 const MCConstantExpr *MCConstantExpr::Create(int64_t Value, MCContext &Ctx) {
157 return new (Ctx) MCConstantExpr(Value);
292 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(this))
    [all...]
MCELFStreamer.cpp 343 SD.setSize(MCConstantExpr::Create(Size, getContext()));
MCStreamer.cpp 143 const MCExpr *E = MCConstantExpr::Create(FillValue, getContext());
  /external/llvm/lib/Target/Mips/InstPrinter/
MipsInstPrinter.cpp 81 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(BE->getRHS());
  /external/llvm/lib/Target/X86/InstPrinter/
X86ATTInstPrinter.cpp 105 const MCConstantExpr *BranchTarget = dyn_cast<MCConstantExpr>(Op.getExpr());
X86IntelInstPrinter.cpp 96 const MCConstantExpr *BranchTarget = dyn_cast<MCConstantExpr>(Op.getExpr());
  /external/llvm/include/llvm/MC/
MCExpr.h 111 //// MCConstantExpr - Represent a constant integer expression.
112 class MCConstantExpr : public MCExpr {
115 explicit MCConstantExpr(int64_t _Value)
122 static const MCConstantExpr *Create(int64_t Value, MCContext &Ctx);
135 static bool classof(const MCConstantExpr *) { return true; }
  /external/llvm/lib/Target/Hexagon/
HexagonMCInstLower.cpp 34 ME = MCBinaryExpr::CreateAdd(ME, MCConstantExpr::Create(MO.getOffset(), MC),
  /external/llvm/lib/Target/ARM/
ARMMCInstLower.cpp 59 MCConstantExpr::Create(MO.getOffset(),
ARMAsmPrinter.cpp     [all...]
  /external/llvm/lib/Target/MSP430/
MSP430MCInstLower.cpp 104 MCConstantExpr::Create(MO.getOffset(), Ctx),
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCAsmInfo.cpp 122 const MCExpr *Four = MCConstantExpr::Create(4, Context);
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsBaseInfo.h 218 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(BE->getRHS());
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 179 else if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr))
429 const MCExpr *EVal = MCConstantExpr::Create(reg,getContext());
  /external/llvm/lib/Target/MBlaze/
MBlazeMCInstLower.cpp 110 MCConstantExpr::Create(MO.getOffset(), Ctx),
  /external/llvm/lib/Target/X86/Disassembler/
X86Disassembler.cpp 243 Add = MCConstantExpr::Create((int)SymbolicOp.AddSymbol.Value, *Ctx);
254 Sub = MCConstantExpr::Create((int)SymbolicOp.SubtractSymbol.Value, *Ctx);
260 Off = MCConstantExpr::Create(SymbolicOp.Value, *Ctx);
282 Expr = MCConstantExpr::Create(0, *Ctx);
  /external/llvm/lib/Target/Mips/
MipsMCInstLower.cpp 105 const MCConstantExpr *OffsetExpr = MCConstantExpr::Create(Offset, *Ctx);
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 677 if (Sym->isVariable() && isa<MCConstantExpr>(Sym->getVariableValue())) {
692 Res = MCConstantExpr::Create(IntVal, getContext());
714 Res = MCConstantExpr::Create(IntVal, getContext());
853 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 416 OutStreamer.EmitELFSize(GVSym, MCConstantExpr::Create(Size, OutContext));
    [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 84 const MCExpr *E = MCConstantExpr::Create(Size, getContext());
  /external/llvm/lib/Target/ARM/InstPrinter/
ARMInstPrinter.cpp 213 const MCConstantExpr *BranchTarget = dyn_cast<MCConstantExpr>(Op.getExpr());
    [all...]

Completed in 109 milliseconds

1 2