Searched refs:getGetElementPtr (Results 1 - 25 of 34) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstantFolder.h150 return ConstantExpr::getGetElementPtr(Ty, C, IdxList);
158 return ConstantExpr::getGetElementPtr(Ty, C, Idx);
163 return ConstantExpr::getGetElementPtr(Ty, C, IdxList);
H A DConstants.h1166 static Constant *getGetElementPtr(Type *Ty, Constant *C, function in class:llvm::ConstantExpr
1171 return getGetElementPtr(
1175 static Constant *getGetElementPtr(Type *Ty, Constant *C, Constant *Idx, function in class:llvm::ConstantExpr
1182 return getGetElementPtr(Ty, C, cast<Value>(Idx), InBounds, InRangeIndex,
1185 static Constant *getGetElementPtr(Type *Ty, Constant *C,
1195 return getGetElementPtr(Ty, C, IdxList, true);
1202 return getGetElementPtr(Ty, C, Idx, true);
1206 return getGetElementPtr(Ty, C, IdxList, true);
H A DNoFolder.h184 return ConstantExpr::getGetElementPtr(Ty, C, IdxList);
192 return ConstantExpr::getGetElementPtr(Ty, C, Idx);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetFolder.h142 return Fold(ConstantExpr::getGetElementPtr(Ty, C, IdxList));
149 return Fold(ConstantExpr::getGetElementPtr(Ty, C, Idx));
153 return Fold(ConstantExpr::getGetElementPtr(Ty, C, IdxList));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalSplit.cpp130 auto *NewGEP = ConstantExpr::getGetElementPtr(
H A DLowerTypeTests.cpp885 Constant *CombinedGlobalElemPtr = ConstantExpr::getGetElementPtr(
1139 TIL.OffsetedGlobal = ConstantExpr::getGetElementPtr(
H A DWholeProgramDevirt.cpp1476 return ConstantExpr::getGetElementPtr(Int8Ty, C,
1686 ConstantExpr::getGetElementPtr(
H A DGlobalOpt.cpp614 ConstantExpr::getGetElementPtr(NewTy, cast<Constant>(NewPtr), Idxs);
762 GEPI, ConstantExpr::getGetElementPtr(GEPI->getSourceElementType(),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSanitizerStats.cpp62 auto InitAddr = ConstantExpr::getGetElementPtr(
H A DEvaluator.cpp197 Ptr = ConstantExpr::getGetElementPtr(Ty, Ptr, IdxList);
439 ConstantExpr::getGetElementPtr(GEP->getSourceElementType(), P, GEPOps,
H A DVNCoercion.cpp414 Src = ConstantExpr::getGetElementPtr(Type::getInt8Ty(Src->getContext()),
595 Src = ConstantExpr::getGetElementPtr(Type::getInt8Ty(Src->getContext()),
H A DScalarEvolutionExpander.cpp531 return ConstantExpr::getGetElementPtr(Type::getInt8Ty(Ty->getContext()),
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGVTT.cpp82 llvm::Constant *Init = llvm::ConstantExpr::getGetElementPtr(
H A DCGObjCGNU.cpp208 return llvm::ConstantExpr::getGetElementPtr(Array.getElementType(),
230 return llvm::ConstantExpr::getGetElementPtr(ConstStr->getValueType(),
1458 return llvm::ConstantExpr::getGetElementPtr(TypesGlobal->getValueType(),
2448 llvm::ConstantExpr::getGetElementPtr(Vtable->getValueType(), Vtable, Two),
3558 llvm::Constant *offsetValue = llvm::ConstantExpr::getGetElementPtr(
3720 llvm::Constant *selPtr = llvm::ConstantExpr::getGetElementPtr(
H A DCGCUDANV.cpp98 return llvm::ConstantExpr::getGetElementPtr(ConstStr.getElementType(),
H A DCGExprConstant.cpp1807 C = llvm::ConstantExpr::getGetElementPtr(CGM.Int8Ty, C, getOffset());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DShadowStackGCLowering.cpp153 return ConstantExpr::getGetElementPtr(FrameMap->getType(), GV, GEPIndices);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp1450 return ConstantExpr::getGetElementPtr(
2152 Constant *GEP = getGetElementPtr(
2166 Constant *GEP = getGetElementPtr(AligningTy, NullPtr, Indices);
2183 Constant *GEP = getGetElementPtr(
2228 Constant *ConstantExpr::getGetElementPtr(Type *Ty, Constant *C, function in class:ConstantExpr
H A DConstantFold.cpp2400 return ConstantExpr::getGetElementPtr(
2428 return ConstantExpr::getGetElementPtr(SrcArrayTy,
2565 return ConstantExpr::getGetElementPtr(PointeeTy, C, NewIdxs, InBounds,
2574 return ConstantExpr::getGetElementPtr(PointeeTy, C, Idxs,
/freebsd-13-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DMiscompilation.cpp858 Value *GEP = ConstantExpr::getGetElementPtr(InitArray->getType(),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp825 Constant *C = ConstantExpr::getGetElementPtr(
1024 Constant *C = ConstantExpr::getGetElementPtr(SrcElemTy, Ptr, NewIdxs,
1061 return ConstantExpr::getGetElementPtr(GEP->getSourceElementType(), Ops[0],
H A DInstructionSimplify.cpp3592 Constant *NewLHS = ConstantExpr::getGetElementPtr(
3596 Constant *NewRHS = ConstantExpr::getGetElementPtr(
4276 auto *CE = ConstantExpr::getGetElementPtr(SrcTy, cast<Constant>(Ops[0]),
5126 Constant *C = ConstantExpr::getGetElementPtr(
H A DInlineCost.cpp1031 return ConstantExpr::getGetElementPtr(I.getSourceElementType(), COps[0],
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp1081 ConstantExpr::getGetElementPtr(I.getSourceElementType(), Ptr, Indices);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp303 Constant *GAI = ConstantExpr::getGetElementPtr(

Completed in 462 milliseconds

12