Searched refs:MCConstantExpr (Results 1 - 25 of 25) sorted by relevance

/external/llvm/lib/Target/X86/
H A DX86TargetObjectFile.cpp33 const MCExpr *Four = MCConstantExpr::Create(4, getContext());
H A DX86MCInstLower.cpp191 MCConstantExpr::Create(MO.getOffset(), Ctx),
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp339 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 *C
[all...]
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp207 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>(getIm
[all...]
/external/llvm/lib/MC/
H A DMCExpr.cpp34 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>(thi
[all...]
H A DMCSymbol.cpp57 assert((isUndefined() || (isAbsolute() && isa<MCConstantExpr>(Value))) &&
H A DMCELFStreamer.cpp220 SD.setSize(MCConstantExpr::Create(Size, getContext()));
H A DMCStreamer.cpp139 const MCExpr *E = MCConstantExpr::Create(FillValue, getContext());
H A DMCAsmStreamer.cpp604 EmitValue(MCConstantExpr::Create(Value, getContext()), Size, AddrSpace);
H A DMCDwarf.cpp119 MCConstantExpr::Create(IntVal, MCOS.getContext());
H A DMachObjectWriter.cpp318 Address = cast<MCConstantExpr>(Symbol.getVariableValue())->getValue();
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCAsmInfo.cpp118 const MCExpr *Four = MCConstantExpr::Create(4, Context);
H A DX86MCCodeEmitter.cpp205 Expr = MCConstantExpr::Create(DispOp.getImm(), Ctx);
232 Expr = MCBinaryExpr::CreateAdd(Expr, MCConstantExpr::Create(ImmOffset, Ctx),
/external/llvm/include/llvm/MC/
H A DMCExpr.h112 //// MCConstantExpr - Represent a constant integer expression.
113 class MCConstantExpr : public MCExpr { class in namespace:llvm
116 explicit MCConstantExpr(int64_t _Value) function in class:llvm::MCConstantExpr
123 static const MCConstantExpr *Create(int64_t Value, MCContext &Ctx);
136 static bool classof(const MCConstantExpr *) { return true; }
/external/llvm/lib/Target/ARM/
H A DARMMCInstLower.cpp60 MCConstantExpr::Create(MO.getOffset(),
H A DARMAsmPrinter.cpp882 MCConstantExpr::Create(ACPV->getPCAdjustment(),
941 Expr = MCBinaryExpr::CreateAdd(Expr, MCConstantExpr::Create(1,OutContext),
1003 Expr = MCBinaryExpr::CreateDiv(Expr, MCConstantExpr::Create(2, OutContext),
1333 MCConstantExpr::Create(PCAdj, OutContext),
1371 MCConstantExpr::Create(PCAdj, OutContext),
/external/llvm/lib/Target/MSP430/
H A DMSP430MCInstLower.cpp104 MCConstantExpr::Create(MO.getOffset(), Ctx),
/external/llvm/lib/Target/MBlaze/AsmParser/
H A DMBlazeAsmParser.cpp181 else if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr))
432 const MCExpr *EVal = MCConstantExpr::Create(reg,getContext());
/external/llvm/lib/Target/MBlaze/
H A DMBlazeMCInstLower.cpp112 MCConstantExpr::Create(MO.getOffset(), Ctx),
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp625 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());
1551 else if (!isa<MCConstantExpr>(Sym->getVariableValue()))
1728 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2434 if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Value)) {
2453 if (const MCConstantExpr *MC
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCMCInstLower.cpp116 MCConstantExpr::Create(MO.getOffset(), Ctx),
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp415 OutStreamer.EmitELFSize(GVSym, MCConstantExpr::Create(Size, OutContext));
1364 MCConstantExpr::Create(Offset, OutContext),
1393 MCConstantExpr::Create(Offset, OutContext),
1429 return MCConstantExpr::Create(0, Ctx);
1432 return MCConstantExpr::Create(CI->getZExtValue(), Ctx);
1443 return MCConstantExpr::Create(0, Ctx);
1465 return MCConstantExpr::Create(0, Ctx);
1483 return MCBinaryExpr::CreateAdd(Base, MCConstantExpr::Create(Offset, Ctx),
1524 const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx);
/external/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp84 const MCExpr *E = MCConstantExpr::Create(8, getContext());
/external/llvm/lib/Target/ARM/InstPrinter/
H A DARMInstPrinter.cpp211 const MCConstantExpr *BranchTarget = dyn_cast<MCConstantExpr>(Op.getExpr());
/external/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp482 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);

Completed in 6535 milliseconds