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

  /external/llvm/lib/Target/R600/
AMDGPUStructurizeCFG.cpp 136 /// 4 | 2 = "Then" subregion, runs if the condition is true
138 /// |/ 4 = "Else" optional subregion, runs if the condition is false
156 /// |/ 2 = "Loop" optional subregion, with all exits at "Flow" block
412 // Edge from inside a subregion to its entry, ignore it
596 Region *SubRegion = Node->getNodeAs<Region>();
597 BasicBlock *OldExit = SubRegion->getExit();
605 if (!SubRegion->contains(BB))
627 SubRegion->replaceExit(NewExit);
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 143 /// Check if the region is a subregion of the given region.
400 /// SubRegion - A region that subsets another larger region. Most regions
401 /// are subclasses of SubRegion.
402 class SubRegion : public MemRegion {
407 SubRegion(const MemRegion* sReg, Kind k) : MemRegion(k), superRegion(sReg) {}
433 class AllocaRegion : public SubRegion {
441 : SubRegion(superRegion, AllocaRegionKind), Cnt(cnt), Ex(ex) {}
464 class TypedRegion : public SubRegion {
468 TypedRegion(const MemRegion* sReg, Kind k) : SubRegion(sReg, k) {}
696 class SymbolicRegion : public SubRegion {
    [all...]

Completed in 305 milliseconds