OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsInBounds
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Operator.h
463
IsInBounds
= (1 << 0),
469
(SubclassOptionalData & ~
IsInBounds
) | (B *
IsInBounds
);
474
bool
isInBounds
() const {
475
return SubclassOptionalData &
IsInBounds
;
/src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp
1818
if (!GEP1.
isInBounds
() && !GEP2.
isInBounds
())
1821
return (GEP1.
isInBounds
() || GEP1.hasAllZeroIndices()) &&
1822
(GEP2.
isInBounds
() || GEP2.hasAllZeroIndices());
1844
bool
IsInBounds
= GEP.
isInBounds
();
1846
Value *NewTrueC =
IsInBounds
? Builder.CreateInBoundsGEP(Ty, TrueC, IndexC)
1848
Value *NewFalseC =
IsInBounds
? Builder.CreateInBoundsGEP(Ty, FalseC, IndexC)
2079
NewSrc->setIsInBounds(Src->
isInBounds
());
2081
NewGEP->setIsInBounds(GEP.
isInBounds
());
[
all
...]
Completed in 21 milliseconds
Indexes created Thu Jun 11 00:25:07 UTC 2026