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

/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp4655 /// Evaluate given GEPVal, which is either an inbounds GEP, or a constant,
4659 static GEPOffsetAndOverflow EmitGEPOffsetInBytes(Value *BasePtr, Value *GEPVal, argument
4669 if (isa<llvm::Constant>(GEPVal)) {
4671 // GEPVal = BasePtr + ptr(Offset) <--> Offset = int(GEPVal) - int(BasePtr)
4675 Builder.CreatePtrToInt(GEPVal, DL.getIntPtrType(GEPVal->getType()));
4680 auto *GEP = cast<llvm::GEPOperator>(GEPVal);
4758 Value *GEPVal = Builder.CreateInBoundsGEP(Ptr, IdxList, Name); local
4762 return GEPVal;
[all...]

Completed in 63 milliseconds