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

  /external/llvm/lib/Transforms/Scalar/
StructurizeCFG.cpp 129 /// 4 | 2 = "Then" subregion, runs if the condition is true
131 /// |/ 4 = "Else" optional subregion, runs if the condition is false
149 /// |/ 2 = "Loop" optional subregion, with all exits at "Flow" block
405 // Edge from inside a subregion to its entry, ignore it
586 Region *SubRegion = Node->getNodeAs<Region>();
587 BasicBlock *OldExit = SubRegion->getExit();
595 if (!SubRegion->contains(BB))
617 SubRegion->replaceExit(NewExit);
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 144 /// Check if the region is a subregion of the given region.
415 /// SubRegion - A region that subsets another larger region. Most regions
416 /// are subclasses of SubRegion.
417 class SubRegion : public MemRegion {
422 SubRegion(const MemRegion* sReg, Kind k) : MemRegion(k), superRegion(sReg) {}
448 class AllocaRegion : public SubRegion {
456 : SubRegion(superRegion, AllocaRegionKind), Cnt(cnt), Ex(ex) {}
479 class TypedRegion : public SubRegion {
483 TypedRegion(const MemRegion* sReg, Kind k) : SubRegion(sReg, k) {}
711 class SymbolicRegion : public SubRegion {
    [all...]

Completed in 184 milliseconds