Home
last modified time | relevance | path

Searched refs:GEPOp (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DGetElementPtrTypeIterator.h128 auto *GEPOp = cast<GEPOperator>(GEP); in gep_type_begin() local
130 GEPOp->getSourceElementType(), in gep_type_begin()
139 auto &GEPOp = cast<GEPOperator>(GEP); in gep_type_begin() local
141 GEPOp.getSourceElementType(), in gep_type_begin()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DCFLGraph.h316 void visitGEP(GEPOperator &GEPOp) { in visitGEP() argument
318 APInt APOffset(DL.getPointerSizeInBits(GEPOp.getPointerAddressSpace()), in visitGEP()
320 if (GEPOp.accumulateConstantOffset(DL, APOffset)) in visitGEP()
323 auto *Op = GEPOp.getPointerOperand(); in visitGEP()
324 addAssignEdge(Op, &GEPOp, Offset); in visitGEP()
328 auto *GEPOp = cast<GEPOperator>(&Inst); in visitGetElementPtrInst() local
329 visitGEP(*GEPOp); in visitGetElementPtrInst()
512 auto GEPOp = cast<GEPOperator>(CE); in visitConstantExpr() local
513 visitGEP(*GEPOp); in visitConstantExpr()
DPHITransAddr.cpp218 Value *GEPOp = PHITranslateSubExpr(GEP->getOperand(i), CurBB, PredBB, DT); in PHITranslateSubExpr() local
219 if (!GEPOp) return nullptr; in PHITranslateSubExpr()
221 AnyChanged |= GEPOp != GEP->getOperand(i); in PHITranslateSubExpr()
222 GEPOps.push_back(GEPOp); in PHITranslateSubExpr()
DBasicAliasAnalysis.cpp493 const GEPOperator *GEPOp = dyn_cast<GEPOperator>(Op); in DecomposeGEPExpression() local
494 if (!GEPOp) { in DecomposeGEPExpression()
529 if (!GEPOp->getSourceElementType()->isSized()) { in DecomposeGEPExpression()
534 unsigned AS = GEPOp->getPointerAddressSpace(); in DecomposeGEPExpression()
536 gep_type_iterator GTI = gep_type_begin(GEPOp); in DecomposeGEPExpression()
540 for (User::const_op_iterator I = GEPOp->op_begin() + 1, E = GEPOp->op_end(); in DecomposeGEPExpression()
642 V = GEPOp->getOperand(0); in DecomposeGEPExpression()
1272 bool BasicAAResult::isGEPBaseAtNegativeOffset(const GEPOperator *GEPOp, in isGEPBaseAtNegativeOffset() argument
1276 if (MaybeObjectAccessSize == LocationSize::unknown() || !GEPOp->isInBounds()) in isGEPBaseAtNegativeOffset()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/Utils/
DLocal.h31 GEPOperator *GEPOp = cast<GEPOperator>(GEP); variable
37 bool isInBounds = GEPOp->isInBounds() && !NoAssumptions;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DBasicAliasAnalysis.h175 static bool isGEPBaseAtNegativeOffset(const GEPOperator *GEPOp,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUInstructionSelector.cpp1507 const MachineOperand &GEPOp = PtrMI->getOperand(i); in getAddrModeInfo() local
1508 const MachineInstr *OpDef = MRI.getUniqueVRegDef(GEPOp.getReg()); in getAddrModeInfo()
1517 const RegisterBank *OpBank = RBI.getRegBank(GEPOp.getReg(), MRI, TRI); in getAddrModeInfo()
1519 GEPInfo.SgprParts.push_back(GEPOp.getReg()); in getAddrModeInfo()
1521 GEPInfo.VgprParts.push_back(GEPOp.getReg()); in getAddrModeInfo()