Home
last modified time | relevance | path

Searched refs:SubExpr (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/
DARMMachORelocationInfo.cpp23 const MCExpr *createExprForCAPIVariantKind(const MCExpr *SubExpr, in createExprForCAPIVariantKind() argument
27 return ARMMCExpr::createUpper16(SubExpr, Ctx); in createExprForCAPIVariantKind()
29 return ARMMCExpr::createLower16(SubExpr, Ctx); in createExprForCAPIVariantKind()
31 return MCRelocationInfo::createExprForCAPIVariantKind(SubExpr, in createExprForCAPIVariantKind()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/MCTargetDesc/
DAVRMCExpr.h48 const MCExpr *getSubExpr() const { return SubExpr; } in getSubExpr()
80 const MCExpr *SubExpr; variable
85 : Kind(Kind), SubExpr(Expr), Negated(Negated) {} in AVRMCExpr()
DAVRMCExpr.cpp75 bool isRelocatable = SubExpr->evaluateAsRelocatable(Value, Layout, Fixup); in evaluateAsRelocatableImpl()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCDisassembler/
DMCRelocationInfo.cpp20 MCRelocationInfo::createExprForCAPIVariantKind(const MCExpr *SubExpr, in createExprForCAPIVariantKind() argument
24 return SubExpr; in createExprForCAPIVariantKind()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPULowerKernelAttributes.cpp191 auto SubExpr = m_Sub(m_Specific(GridSize), in processUse() local
196 m_Select(m_ICmp(Pred, SubExpr, m_Specific(ZextGroupSize)), in processUse()
197 SubExpr, in processUse()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/MCDisassembler/
DMCRelocationInfo.h38 virtual const MCExpr *createExprForCAPIVariantKind(const MCExpr *SubExpr,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/MCTargetDesc/
DMipsMCExpr.cpp138 const MCExpr *SubExpr = in evaluateAsRelocatableImpl() local
141 if (!SubExpr->evaluateAsRelocatable(Res, Layout, Fixup)) in evaluateAsRelocatableImpl()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/
DMetadataLoader.cpp574 auto SubExpr = ArrayRef<uint64_t>(Expr); in upgradeDIExpression() local
575 while (!SubExpr.empty()) { in upgradeDIExpression()
580 switch (SubExpr.front()) { in upgradeDIExpression()
596 HistoricSize = std::min(SubExpr.size(), HistoricSize); in upgradeDIExpression()
597 ArrayRef<uint64_t> Args = SubExpr.slice(1, HistoricSize-1); in upgradeDIExpression()
599 switch (SubExpr.front()) { in upgradeDIExpression()
610 Buffer.push_back(*SubExpr.begin()); in upgradeDIExpression()
616 SubExpr = SubExpr.slice(HistoricSize); in upgradeDIExpression()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldChecker.cpp130 EvalResult unexpectedToken(StringRef TokenStart, StringRef SubExpr, in unexpectedToken() argument
134 if (SubExpr != "") { in unexpectedToken()
136 ErrorMsg += SubExpr; in unexpectedToken()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/AsmParser/
DRISCVAsmParser.cpp1201 const MCExpr *SubExpr; in parseOperandWithModifier() local
1202 if (getParser().parseParenExpression(SubExpr, E)) { in parseOperandWithModifier()
1206 const MCExpr *ModExpr = RISCVMCExpr::create(SubExpr, VK, getContext()); in parseOperandWithModifier()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopStrengthReduce.cpp2785 const SCEV *SubExpr = *I; in getExprBase() local
2786 if (SubExpr->getSCEVType() == scAddExpr) in getExprBase()
2787 return getExprBase(SubExpr); in getExprBase()
2789 if (SubExpr->getSCEVType() != scMulExpr) in getExprBase()
2790 return SubExpr; in getExprBase()