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

  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
RegionInfo.h 87 /// @param isSubRegion If this RegionNode represents a SubRegion.
88 inline RegionNode(Region* Parent, BasicBlock* Entry, bool isSubRegion = 0)
89 : entry(Entry, isSubRegion), parent(Parent) {}
112 /// check the type of the content with the isSubRegion() function call.
122 inline bool isSubRegion() const {
132 assert(!isSubRegion() && "This is not a BasicBlock RegionNode!");
138 assert(isSubRegion() && "This is not a subregion RegionNode!");
681 if (Node.isSubRegion())
  /external/llvm/include/llvm/Analysis/
RegionInfo.h 146 /// @param isSubRegion If this RegionNode represents a SubRegion.
148 bool isSubRegion = false)
149 : entry(Entry, isSubRegion), parent(Parent) {}
173 /// check the type of the content with the isSubRegion() function call.
182 inline bool isSubRegion() const { return entry.getInt(); }
847 inline RegionNode(Region *Parent, BasicBlock *Entry, bool isSubRegion = false)
848 : RegionNodeBase<RegionTraits<Function>>(Parent, Entry, isSubRegion) {}
    [all...]

Completed in 877 milliseconds