HomeSort by: relevance | last modified time | path
    Searched defs:InBounds (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
BasicAliasAnalysis.h 142 // Are all operations inbounds GEPs or non-indexing operations?
144 Optional<bool> InBounds;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
StraightLineStrengthReduce.cpp 680 bool InBounds = cast<GetElementPtrInst>(C.Ins)->isInBounds();
686 if (InBounds)
696 if (InBounds)
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ConstantFolding.cpp 833 SrcElemTy, Ops[0], NewIdxs, /*InBounds=*/false, InRangeIndex);
860 bool InBounds = GEP->isInBounds();
911 InBounds &= GEP->isInBounds();
950 // This makes it easy to determine if the getelementptr is "inbounds".
1032 InBounds, InRangeIndex);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonCommonGEP.cpp 182 InBounds = 0x08
228 if (GN.Flags & GepNode::InBounds) {
231 OS << "inbounds";
339 uint32_t InBounds = GepI->isInBounds() ? GepNode::InBounds : 0;
343 N->Flags |= GepNode::Root | InBounds;
379 Nx->Flags |= GepNode::Internal | InBounds;
1120 NewInst->setIsInBounds(RN->Flags & GepNode::InBounds);
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 2677 bool InBounds = false;
2681 InBounds = Op & 1;
2684 InBounds = true;
2710 InBounds, InRangeIndex);
4152 bool InBounds;
4155 InBounds = Record[OpNum++];
4159 InBounds = BitCode == bitc::FUNC_CODE_INST_INBOUNDS_GEP_OLD;
4188 if (InBounds)
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CodeGenPrepare.cpp 2428 bool InBounds = true;
2459 // Conservatively reject 'inbounds' mismatches.
2460 if (InBounds != other.InBounds)
2561 if (InBounds)
2562 OS << "inbounds ";
3883 TestAddrMode.InBounds = false;
3944 TestAddrMode.InBounds = false;
4522 AddrMode.InBounds = false;
4549 AddrMode.InBounds = false
    [all...]

Completed in 38 milliseconds