HomeSort by: relevance | last modified time | path
    Searched refs:OffsetExpr (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/ARC/
ARCMCInstLower.cpp 71 const MCConstantExpr *OffsetExpr = MCConstantExpr::create(Offset, *Ctx);
72 const MCBinaryExpr *Add = MCBinaryExpr::createAdd(MCSym, OffsetExpr, *Ctx);
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZMCInstLower.cpp 73 const MCExpr *OffsetExpr = MCConstantExpr::create(Offset, Ctx);
74 Expr = MCBinaryExpr::createAdd(Expr, OffsetExpr, Ctx);
  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreMCInstLower.cpp 72 const MCConstantExpr *OffsetExpr = MCConstantExpr::create(Offset, *Ctx);
73 const MCBinaryExpr *Add = MCBinaryExpr::createAdd(MCSym, OffsetExpr, *Ctx);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetRegisterInfo.cpp 656 SmallVector<uint64_t, 16> OffsetExpr;
658 OffsetExpr.push_back(dwarf::DW_OP_deref);
659 getOffsetOpcodes(Offset, OffsetExpr);
661 OffsetExpr.push_back(dwarf::DW_OP_deref);
662 return DIExpression::prependOpcodes(Expr, OffsetExpr,
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCCodeEmitter.cpp 285 const MCExpr *OffsetExpr = MCConstantExpr::create(Offset, Ctx);
286 Expr = MCBinaryExpr::createAdd(Expr, OffsetExpr, Ctx);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsAsmPrinter.cpp 173 const MCExpr *OffsetExpr =
178 *OffsetExpr,
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 3899 const MCExpr *OffsetExpr = Inst.getOperand(2).getExpr();
4033 TOut.emitRX(Mips::BLTZ, Mips::ZERO, MCOperand::createExpr(OffsetExpr),
4038 TOut.emitRX(Mips::BLEZ, Mips::ZERO, MCOperand::createExpr(OffsetExpr),
4044 TOut.emitRX(Mips::BGEZ, Mips::ZERO, MCOperand::createExpr(OffsetExpr),
4050 TOut.emitRX(Mips::BGTZ, Mips::ZERO, MCOperand::createExpr(OffsetExpr),
4056 MCOperand::createExpr(OffsetExpr), IDLoc, STI);
4063 MCOperand::createExpr(OffsetExpr), IDLoc, STI);
4088 MCOperand::createExpr(OffsetExpr), IDLoc, STI);
4107 MCOperand::createExpr(OffsetExpr), IDLoc, STI);
4115 MCOperand::createExpr(OffsetExpr), IDLoc, STI)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64FrameLowering.cpp 520 SmallString<64> OffsetExpr;
521 appendVGScaledOffsetExpr(OffsetExpr, NumBytes, NumVGScaledBytes,
529 CfaExpr.append(buffer, buffer + encodeULEB128(OffsetExpr.size(), buffer));
530 CfaExpr.append(OffsetExpr.str());
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 11616 const MCExpr *OffsetExpr;
11619 if (getParser().parseExpression(OffsetExpr, EndLoc))
11621 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr);
11651 const MCExpr *OffsetExpr;
11654 if (getParser().parseExpression(OffsetExpr, EndLoc))
11656 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr);
11843 const MCExpr *OffsetExpr;
11848 if (getParser().parseExpression(OffsetExpr))
11851 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr);
11932 const MCExpr *OffsetExpr;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntime.cpp 8135 const Expr *OffsetExpr = OASE->getLowerBound();
8137 if (!OffsetExpr) {
8141 Offset = CGF.Builder.CreateIntCast(CGF.EmitScalarExpr(OffsetExpr),

Completed in 79 milliseconds