Searched defs:isSubRegion (Results 1 - 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DRegionInfo.h87 /// @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 { function in class:llvm::RegionNode
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/
H A DRegionInfo.h146 /// @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(); } function in class:llvm::RegionNodeBase
847 inline RegionNode(Region *Parent, BasicBlock *Entry, bool isSubRegion = false)
848 : RegionNodeBase<RegionTraits<Function>>(Parent, Entry, isSubRegion) {}
954 assert(!isSubRegion() && "This is not a BasicBlock RegionNode!");
962 assert(isSubRegion() && "This is not a subregion RegionNode!");
973 if (Node.isSubRegion())
[all...]

Completed in 46 milliseconds