Home
last modified time | relevance | path

Searched refs:IsInBounds (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DOperator.h463 IsInBounds = (1 << 0), enumerator
469 (SubclassOptionalData & ~IsInBounds) | (B * IsInBounds); in setIsInBounds()
475 return SubclassOptionalData & IsInBounds; in isInBounds()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DSROA.cpp3495 bool IsInBounds = GEPI.isInBounds(); in foldGEPSelect() local
3500 IsInBounds in foldGEPSelect()
3508 IsInBounds in foldGEPSelect()
3551 bool IsInBounds = GEPI.isInBounds(); in foldGEPPhi() local
3567 NewVal = IsInBounds in foldGEPPhi()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1844 bool IsInBounds = GEP.isInBounds(); in foldSelectGEP() local
1846 Value *NewTrueC = IsInBounds ? Builder.CreateInBoundsGEP(Ty, TrueC, IndexC) in foldSelectGEP()
1848 Value *NewFalseC = IsInBounds ? Builder.CreateInBoundsGEP(Ty, FalseC, IndexC) in foldSelectGEP()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DConstants.cpp2480 unsigned SubClassOptionalData = InBounds ? GEPOperator::IsInBounds : 0; in getGetElementPtr()