Home
last modified time | relevance | path

Searched refs:OffsetExpr (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZMCInstLower.cpp73 const MCExpr *OffsetExpr = MCConstantExpr::create(Offset, Ctx); in getExpr() local
74 Expr = MCBinaryExpr::createAdd(Expr, OffsetExpr, Ctx); in getExpr()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARC/
H A DARCMCInstLower.cpp71 const MCConstantExpr *OffsetExpr = MCConstantExpr::create(Offset, *Ctx); in LowerSymbolOperand() local
72 const MCBinaryExpr *Add = MCBinaryExpr::createAdd(MCSym, OffsetExpr, *Ctx); in LowerSymbolOperand()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
H A DXCoreMCInstLower.cpp72 const MCConstantExpr *OffsetExpr = MCConstantExpr::create(Offset, *Ctx); in LowerSymbolOperand() local
73 const MCBinaryExpr *Add = MCBinaryExpr::createAdd(MCSym, OffsetExpr, *Ctx); in LowerSymbolOperand()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DTargetRegisterInfo.cpp656 SmallVector<uint64_t, 16> OffsetExpr; in prependOffsetExpression() local
658 OffsetExpr.push_back(dwarf::DW_OP_deref); in prependOffsetExpression()
659 getOffsetOpcodes(Offset, OffsetExpr); in prependOffsetExpression()
661 OffsetExpr.push_back(dwarf::DW_OP_deref); in prependOffsetExpression()
662 return DIExpression::prependOpcodes(Expr, OffsetExpr, in prependOffsetExpression()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCCodeEmitter.cpp285 const MCExpr *OffsetExpr = MCConstantExpr::create(Offset, Ctx); in getPCRelEncoding() local
286 Expr = MCBinaryExpr::createAdd(Expr, OffsetExpr, Ctx); in getPCRelEncoding()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsAsmPrinter.cpp173 const MCExpr *OffsetExpr = in emitDirectiveRelocJalr() local
178 *OffsetExpr, in emitDirectiveRelocJalr()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp3899 const MCExpr *OffsetExpr = Inst.getOperand(2).getExpr(); in expandCondBranches() local
4033 TOut.emitRX(Mips::BLTZ, Mips::ZERO, MCOperand::createExpr(OffsetExpr), in expandCondBranches()
4038 TOut.emitRX(Mips::BLEZ, Mips::ZERO, MCOperand::createExpr(OffsetExpr), in expandCondBranches()
4044 TOut.emitRX(Mips::BGEZ, Mips::ZERO, MCOperand::createExpr(OffsetExpr), in expandCondBranches()
4050 TOut.emitRX(Mips::BGTZ, Mips::ZERO, MCOperand::createExpr(OffsetExpr), in expandCondBranches()
4056 MCOperand::createExpr(OffsetExpr), IDLoc, STI); in expandCondBranches()
4063 MCOperand::createExpr(OffsetExpr), IDLoc, STI); in expandCondBranches()
4088 MCOperand::createExpr(OffsetExpr), IDLoc, STI); in expandCondBranches()
4107 MCOperand::createExpr(OffsetExpr), IDLoc, STI); in expandCondBranches()
4115 MCOperand::createExpr(OffsetExpr), IDLoc, STI); in expandCondBranches()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64FrameLowering.cpp520 SmallString<64> OffsetExpr; in createCfaOffset() local
521 appendVGScaledOffsetExpr(OffsetExpr, NumBytes, NumVGScaledBytes, in createCfaOffset()
529 CfaExpr.append(buffer, buffer + encodeULEB128(OffsetExpr.size(), buffer)); in createCfaOffset()
530 CfaExpr.append(OffsetExpr.str()); in createCfaOffset()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp11616 const MCExpr *OffsetExpr; in parseDirectiveSetFP() local
11619 if (getParser().parseExpression(OffsetExpr, EndLoc)) in parseDirectiveSetFP()
11621 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr); in parseDirectiveSetFP()
11651 const MCExpr *OffsetExpr; in parseDirectivePad() local
11654 if (getParser().parseExpression(OffsetExpr, EndLoc)) in parseDirectivePad()
11656 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr); in parseDirectivePad()
11843 const MCExpr *OffsetExpr; in parseDirectiveUnwindRaw() local
11848 if (getParser().parseExpression(OffsetExpr)) in parseDirectiveUnwindRaw()
11851 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(OffsetExpr); in parseDirectiveUnwindRaw()
11932 const MCExpr *OffsetExpr; in parseDirectiveMovSP() local
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp8135 const Expr *OffsetExpr = OASE->getLowerBound(); in generateInfoForComponentList() local
8137 if (!OffsetExpr) { in generateInfoForComponentList()
8141 Offset = CGF.Builder.CreateIntCast(CGF.EmitScalarExpr(OffsetExpr), in generateInfoForComponentList()