MCPcopy Create free account
hub / github.com/KhronosGroup/SPIRV-Tools / structurally_postdominates

Method structurally_postdominates

source/val/basic_block.cpp:92–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90}
91
92bool BasicBlock::structurally_postdominates(const BasicBlock& other) const {
93 return (this == &other) || !(other.structural_pdom_end() ==
94 std::find(other.structural_pdom_begin(),
95 other.structural_pdom_end(), this));
96}
97
98BasicBlock::DominatorIterator::DominatorIterator() : current_(nullptr) {}
99

Callers 2

blocksMethod · 0.80

Calls 3

findFunction · 0.85
structural_pdom_endMethod · 0.80
structural_pdom_beginMethod · 0.80

Tested by

no test coverage detected