HomeSort by relevance Sort by last modified time
    Searched defs:isInBounds (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/Transforms/Utils/
Local.h 188 bool isInBounds = cast<GEPOperator>(GEP)->isInBounds() && !NoAssumptions;
213 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
224 GEP->getName()+".idx", isInBounds /*NUW*/);
  /external/llvm/include/llvm/IR/
Operator.h 360 IsInBounds = (1 << 0)
367 (SubclassOptionalData & ~IsInBounds) | (B * IsInBounds);
371 /// isInBounds - Test whether this is an inbounds GEP, as defined
373 bool isInBounds() const {
374 return SubclassOptionalData & IsInBounds;
  /external/llvm/lib/IR/
Instructions.cpp     [all...]

Completed in 63 milliseconds