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 130 /// 4 | 2 = "Then" subregion, runs if the condition is true
132 /// |/ 4 = "Else" optional subregion, runs if the condition is false
150 /// |/ 2 = "Loop" optional subregion, with all exits at "Flow" block
412 // Edge from inside a subregion to its entry, ignore it
590 Region *SubRegion = Node->getNodeAs<Region>();
591 BasicBlock *OldExit = SubRegion->getExit();
599 if (!SubRegion->contains(BB))
621 SubRegion->replaceExit(NewExit);
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 141 /// Check if the region is a subregion of the given region.
412 /// SubRegion - A region that subsets another larger region. Most regions
413 /// are subclasses of SubRegion.
414 class SubRegion : public MemRegion {
419 SubRegion(const MemRegion* sReg, Kind k) : MemRegion(k), superRegion(sReg) {}
445 class AllocaRegion : public SubRegion {
453 : SubRegion(superRegion, AllocaRegionKind), Cnt(cnt), Ex(ex) {}
476 class TypedRegion : public SubRegion {
480 TypedRegion(const MemRegion* sReg, Kind k) : SubRegion(sReg, k) {}
711 class SymbolicRegion : public SubRegion {
    [all...]

Completed in 82 milliseconds