/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/ |
D | control_dependence.cpp | 31 std::vector<ControlDependence>& ret) { in GatherEdges() 39 std::vector<ControlDependence> reverse_edges; in GatherEdges() 177 std::vector<ControlDependence> edges; in TEST() 181 ControlDependence(0, 10), ControlDependence(0, 11, 10), in TEST() 182 ControlDependence(0, 14, 10), ControlDependence(0, 19, 10), in TEST() 183 ControlDependence(11, 12), ControlDependence(11, 13), in TEST() 184 ControlDependence(14, 15), ControlDependence(14, 16), in TEST() 185 ControlDependence(14, 18, 16), ControlDependence(16, 17))); in TEST() 278 std::vector<ControlDependence> edges; in TEST() 282 ControlDependence(0, 1), ControlDependence(0, 2, 1), in TEST() [all …]
|
/third_party/skia/third_party/externals/spirv-tools/test/opt/ |
D | control_dependence.cpp | 31 std::vector<ControlDependence>& ret) { in GatherEdges() 39 std::vector<ControlDependence> reverse_edges; in GatherEdges() 177 std::vector<ControlDependence> edges; in TEST() 181 ControlDependence(0, 10), ControlDependence(0, 11, 10), in TEST() 182 ControlDependence(0, 14, 10), ControlDependence(0, 19, 10), in TEST() 183 ControlDependence(11, 12), ControlDependence(11, 13), in TEST() 184 ControlDependence(14, 15), ControlDependence(14, 16), in TEST() 185 ControlDependence(14, 18, 16), ControlDependence(16, 17))); in TEST() 278 std::vector<ControlDependence> edges; in TEST() 282 ControlDependence(0, 1), ControlDependence(0, 2, 1), in TEST() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | control_dependence.h | 31 class ControlDependence { 53 ControlDependence(uint32_t source, uint32_t target) in ControlDependence() function 59 ControlDependence(uint32_t source, uint32_t target, uint32_t branch_target) in ControlDependence() function 70 bool operator==(const ControlDependence& other) const; 71 bool operator!=(const ControlDependence& other) const { 76 bool operator<(const ControlDependence& other) const; 77 bool operator>(const ControlDependence& other) const { return other < *this; } 78 bool operator<=(const ControlDependence& other) const { 81 bool operator>=(const ControlDependence& other) const { 94 std::ostream& operator<<(std::ostream& os, const ControlDependence& dep); [all …]
|
D | control_dependence.cpp | 45 uint32_t ControlDependence::GetConditionID(const CFG& cfg) const { in GetConditionID() 59 bool ControlDependence::operator<(const ControlDependence& other) const { in operator <() 65 bool ControlDependence::operator==(const ControlDependence& other) const { in operator ==() 71 std::ostream& operator<<(std::ostream& os, const ControlDependence& dep) { in operator <<() 117 edges.push_back(ControlDependence(pred, label)); in ComputePostDominanceFrontierForNode() 124 edges.push_back(ControlDependence(kPseudoEntryBlock, label)); in ComputePostDominanceFrontierForNode() 128 for (const ControlDependence& dep : reverse_nodes_[child->id()]) { in ComputePostDominanceFrontierForNode() 132 edges.push_back(ControlDependence(dep.source_bb_id(), label, in ComputePostDominanceFrontierForNode() 149 for (const ControlDependence& dep : entry.second) { in ComputeForwardGraphFromReverse()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
D | control_dependence.h | 31 class ControlDependence { 53 ControlDependence(uint32_t source, uint32_t target) in ControlDependence() function 59 ControlDependence(uint32_t source, uint32_t target, uint32_t branch_target) in ControlDependence() function 70 bool operator==(const ControlDependence& other) const; 71 bool operator!=(const ControlDependence& other) const { 76 bool operator<(const ControlDependence& other) const; 77 bool operator>(const ControlDependence& other) const { return other < *this; } 78 bool operator<=(const ControlDependence& other) const { 81 bool operator>=(const ControlDependence& other) const { 94 std::ostream& operator<<(std::ostream& os, const ControlDependence& dep); [all …]
|
D | control_dependence.cpp | 45 uint32_t ControlDependence::GetConditionID(const CFG& cfg) const { in GetConditionID() 59 bool ControlDependence::operator<(const ControlDependence& other) const { in operator <() 65 bool ControlDependence::operator==(const ControlDependence& other) const { in operator ==() 71 std::ostream& operator<<(std::ostream& os, const ControlDependence& dep) { in operator <<() 117 edges.push_back(ControlDependence(pred, label)); in ComputePostDominanceFrontierForNode() 124 edges.push_back(ControlDependence(kPseudoEntryBlock, label)); in ComputePostDominanceFrontierForNode() 128 for (const ControlDependence& dep : reverse_nodes_[child->id()]) { in ComputePostDominanceFrontierForNode() 132 edges.push_back(ControlDependence(dep.source_bb_id(), label, in ComputePostDominanceFrontierForNode() 149 for (const ControlDependence& dep : entry.second) { in ComputeForwardGraphFromReverse()
|
/third_party/spirv-tools/source/opt/ |
D | control_dependence.h | 31 class ControlDependence { 53 ControlDependence(uint32_t source, uint32_t target) in ControlDependence() function 59 ControlDependence(uint32_t source, uint32_t target, uint32_t branch_target) in ControlDependence() function 70 bool operator==(const ControlDependence& other) const; 71 bool operator!=(const ControlDependence& other) const { 76 bool operator<(const ControlDependence& other) const; 77 bool operator>(const ControlDependence& other) const { return other < *this; } 78 bool operator<=(const ControlDependence& other) const { 81 bool operator>=(const ControlDependence& other) const { 94 std::ostream& operator<<(std::ostream& os, const ControlDependence& dep); [all …]
|
D | control_dependence.cpp | 45 uint32_t ControlDependence::GetConditionID(const CFG& cfg) const { in GetConditionID() 59 bool ControlDependence::operator<(const ControlDependence& other) const { in operator <() 65 bool ControlDependence::operator==(const ControlDependence& other) const { in operator ==() 71 std::ostream& operator<<(std::ostream& os, const ControlDependence& dep) { in operator <<() 117 edges.push_back(ControlDependence(pred, label)); in ComputePostDominanceFrontierForNode() 124 edges.push_back(ControlDependence(kPseudoEntryBlock, label)); in ComputePostDominanceFrontierForNode() 128 for (const ControlDependence& dep : reverse_nodes_[child->id()]) { in ComputePostDominanceFrontierForNode() 132 edges.push_back(ControlDependence(dep.source_bb_id(), label, in ComputePostDominanceFrontierForNode() 149 for (const ControlDependence& dep : entry.second) { in ComputeForwardGraphFromReverse()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/lint/ |
D | divergence_analysis.cpp | 47 for (const spvtools::opt::ControlDependence& dep : in EnqueueSuccessors() 73 for (const spvtools::opt::ControlDependence& dep : in VisitBlock()
|
/third_party/skia/third_party/externals/spirv-tools/source/lint/ |
D | divergence_analysis.cpp | 47 for (const spvtools::opt::ControlDependence& dep : in EnqueueSuccessors() 73 for (const spvtools::opt::ControlDependence& dep : in VisitBlock()
|
/third_party/spirv-tools/source/lint/ |
D | divergence_analysis.cpp | 47 for (const spvtools::opt::ControlDependence& dep : in EnqueueSuccessors() 73 for (const spvtools::opt::ControlDependence& dep : in VisitBlock()
|