Home
last modified time | relevance | path

Searched refs:loop_descriptor (Results 1 - 25 of 26) sorted by relevance

12

/third_party/skia/third_party/externals/spirv-tools/test/opt/loop_optimizations/
H A Dunroll_simple.cpp569 LoopDescriptor& loop_descriptor = *context()->GetLoopDescriptor(&f); variable
570 for (auto& loop : loop_descriptor) {
966 LoopDescriptor& loop_descriptor = *context->GetLoopDescriptor(f); in TEST_F() local
967 EXPECT_EQ(loop_descriptor.NumLoops(), 1u); in TEST_F()
969 Loop& loop = loop_descriptor.GetLoopByIndex(0); in TEST_F()
1060 LoopDescriptor& loop_descriptor = *context->GetLoopDescriptor(f); in TEST_F() local
1062 EXPECT_EQ(loop_descriptor.NumLoops(), 1u); in TEST_F()
1064 Loop& loop = loop_descriptor.GetLoopByIndex(0); in TEST_F()
1458 LoopDescriptor& loop_descriptor = *context->GetLoopDescriptor(f); in TEST_F() local
1459 EXPECT_EQ(loop_descriptor in TEST_F()
1629 LoopDescriptor& loop_descriptor = *context->GetLoopDescriptor(f); TEST_F() local
1744 LoopDescriptor& loop_descriptor = *context->GetLoopDescriptor(f); TEST_F() local
1788 LoopDescriptor& loop_descriptor = *context->GetLoopDescriptor(f); TEST_F() local
[all...]
H A Dunroll_assumptions.cpp49 LoopDescriptor& loop_descriptor = *context()->GetLoopDescriptor(&f); variable
50 for (auto& loop : loop_descriptor) {
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/loop_optimizations/
H A Dunroll_simple.cpp569 LoopDescriptor& loop_descriptor = *context()->GetLoopDescriptor(&f); variable
570 for (auto& loop : loop_descriptor) {
966 LoopDescriptor& loop_descriptor = *context->GetLoopDescriptor(f); in TEST_F() local
967 EXPECT_EQ(loop_descriptor.NumLoops(), 1u); in TEST_F()
969 Loop& loop = loop_descriptor.GetLoopByIndex(0); in TEST_F()
1060 LoopDescriptor& loop_descriptor = *context->GetLoopDescriptor(f); in TEST_F() local
1062 EXPECT_EQ(loop_descriptor.NumLoops(), 1u); in TEST_F()
1064 Loop& loop = loop_descriptor.GetLoopByIndex(0); in TEST_F()
1458 LoopDescriptor& loop_descriptor = *context->GetLoopDescriptor(f); in TEST_F() local
1459 EXPECT_EQ(loop_descriptor in TEST_F()
1629 LoopDescriptor& loop_descriptor = *context->GetLoopDescriptor(f); TEST_F() local
1744 LoopDescriptor& loop_descriptor = *context->GetLoopDescriptor(f); TEST_F() local
1788 LoopDescriptor& loop_descriptor = *context->GetLoopDescriptor(f); TEST_F() local
[all...]
H A Dunroll_assumptions.cpp49 LoopDescriptor& loop_descriptor = *context()->GetLoopDescriptor(&f); variable
50 for (auto& loop : loop_descriptor) {
/third_party/spirv-tools/test/opt/loop_optimizations/
H A Dunroll_simple.cpp568 LoopDescriptor& loop_descriptor = *context()->GetLoopDescriptor(&f); variable
569 for (auto& loop : loop_descriptor) {
965 LoopDescriptor& loop_descriptor = *context->GetLoopDescriptor(f); in TEST_F() local
966 EXPECT_EQ(loop_descriptor.NumLoops(), 1u); in TEST_F()
968 Loop& loop = loop_descriptor.GetLoopByIndex(0); in TEST_F()
1059 LoopDescriptor& loop_descriptor = *context->GetLoopDescriptor(f); in TEST_F() local
1061 EXPECT_EQ(loop_descriptor.NumLoops(), 1u); in TEST_F()
1063 Loop& loop = loop_descriptor.GetLoopByIndex(0); in TEST_F()
1457 LoopDescriptor& loop_descriptor = *context->GetLoopDescriptor(f); in TEST_F() local
1458 EXPECT_EQ(loop_descriptor in TEST_F()
1628 LoopDescriptor& loop_descriptor = *context->GetLoopDescriptor(f); TEST_F() local
1743 LoopDescriptor& loop_descriptor = *context->GetLoopDescriptor(f); TEST_F() local
1787 LoopDescriptor& loop_descriptor = *context->GetLoopDescriptor(f); TEST_F() local
[all...]
H A Dunroll_assumptions.cpp48 LoopDescriptor& loop_descriptor = *context()->GetLoopDescriptor(&f); variable
49 for (auto& loop : loop_descriptor) {
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dlicm_pass.cpp42 LoopDescriptor* loop_descriptor = context()->GetLoopDescriptor(f); in ProcessFunction() local
45 for (auto it = loop_descriptor->begin(); in ProcessFunction()
46 it != loop_descriptor->end() && status != Status::Failure; ++it) { in ProcessFunction()
117 LoopDescriptor* loop_descriptor = context()->GetLoopDescriptor(f); in IsImmediatelyContainedInLoop() local
118 return loop == (*loop_descriptor)[bb->id()]; in IsImmediatelyContainedInLoop()
H A Dloop_fission.cpp458 LoopDescriptor& loop_descriptor = *context()->GetLoopDescriptor(&f); in Process() local
459 for (Loop& loop : loop_descriptor) { in Process()
H A Dloop_unswitch_pass.cpp33 #include "source/opt/loop_descriptor.h"
592 LoopDescriptor& loop_descriptor = *context()->GetLoopDescriptor(f); in ProcessFunction() local
598 ++TreeDFIterator<Loop>(loop_descriptor.GetPlaceholderRootLoop()), in ProcessFunction()
603 LoopUnswitch unswitcher(context(), f, &loop, &loop_descriptor); in ProcessFunction() local
H A Dscalar_analysis.cpp265 LoopDescriptor* loop_descriptor = context_->GetLoopDescriptor(function); in AnalyzePhiInstruction() local
268 if (!loop_descriptor) return CreateCantComputeNode(); in AnalyzePhiInstruction()
271 Loop* loop = (*loop_descriptor)[basic_block->id()]; in AnalyzePhiInstruction()
H A Dloop_peeling.cpp24 #include "source/opt/loop_descriptor.h"
581 LoopDescriptor& loop_descriptor = *context()->GetLoopDescriptor(f); in ProcessFunction() local
584 to_process_loop.reserve(loop_descriptor.NumLoops()); in ProcessFunction()
585 for (Loop& l : loop_descriptor) { in ProcessFunction()
H A Dloop_unroller.cpp399 // loop_descriptor.AddLoop. in PartiallyUnrollResidualFactor()
511 LoopDescriptor& loop_descriptor = *context_->GetLoopDescriptor(&function_); in PartiallyUnrollResidualFactor() local
513 loop_descriptor.AddLoop(std::move(new_loop), loop->GetParent()); in PartiallyUnrollResidualFactor()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dlicm_pass.cpp42 LoopDescriptor* loop_descriptor = context()->GetLoopDescriptor(f); in ProcessFunction() local
45 for (auto it = loop_descriptor->begin(); in ProcessFunction()
46 it != loop_descriptor->end() && status != Status::Failure; ++it) { in ProcessFunction()
117 LoopDescriptor* loop_descriptor = context()->GetLoopDescriptor(f); in IsImmediatelyContainedInLoop() local
118 return loop == (*loop_descriptor)[bb->id()]; in IsImmediatelyContainedInLoop()
H A Dloop_fission.cpp458 LoopDescriptor& loop_descriptor = *context()->GetLoopDescriptor(&f); in Process() local
459 for (Loop& loop : loop_descriptor) { in Process()
H A Dloop_unswitch_pass.cpp33 #include "source/opt/loop_descriptor.h"
592 LoopDescriptor& loop_descriptor = *context()->GetLoopDescriptor(f); in ProcessFunction() local
598 ++TreeDFIterator<Loop>(loop_descriptor.GetPlaceholderRootLoop()), in ProcessFunction()
603 LoopUnswitch unswitcher(context(), f, &loop, &loop_descriptor); in ProcessFunction() local
H A Dscalar_analysis.cpp265 LoopDescriptor* loop_descriptor = context_->GetLoopDescriptor(function); in AnalyzePhiInstruction() local
268 if (!loop_descriptor) return CreateCantComputeNode(); in AnalyzePhiInstruction()
271 Loop* loop = (*loop_descriptor)[basic_block->id()]; in AnalyzePhiInstruction()
H A Dloop_peeling.cpp24 #include "source/opt/loop_descriptor.h"
581 LoopDescriptor& loop_descriptor = *context()->GetLoopDescriptor(f); in ProcessFunction() local
584 to_process_loop.reserve(loop_descriptor.NumLoops()); in ProcessFunction()
585 for (Loop& l : loop_descriptor) { in ProcessFunction()
H A Dloop_unroller.cpp399 // loop_descriptor.AddLoop. in PartiallyUnrollResidualFactor()
511 LoopDescriptor& loop_descriptor = *context_->GetLoopDescriptor(&function_); in PartiallyUnrollResidualFactor() local
513 loop_descriptor.AddLoop(std::move(new_loop), loop->GetParent()); in PartiallyUnrollResidualFactor()
/third_party/spirv-tools/source/opt/
H A Dlicm_pass.cpp41 LoopDescriptor* loop_descriptor = context()->GetLoopDescriptor(f); in ProcessFunction() local
44 for (auto it = loop_descriptor->begin(); in ProcessFunction()
45 it != loop_descriptor->end() && status != Status::Failure; ++it) { in ProcessFunction()
116 LoopDescriptor* loop_descriptor = context()->GetLoopDescriptor(f); in IsImmediatelyContainedInLoop() local
117 return loop == (*loop_descriptor)[bb->id()]; in IsImmediatelyContainedInLoop()
H A Dloop_unswitch_pass.cpp32 #include "source/opt/loop_descriptor.h"
586 LoopDescriptor& loop_descriptor = *context()->GetLoopDescriptor(f); in ProcessFunction() local
592 ++TreeDFIterator<Loop>(loop_descriptor.GetPlaceholderRootLoop()), in ProcessFunction()
597 LoopUnswitch unswitcher(context(), f, &loop, &loop_descriptor); in ProcessFunction() local
H A Dloop_fission.cpp458 LoopDescriptor& loop_descriptor = *context()->GetLoopDescriptor(&f); in Process() local
459 for (Loop& loop : loop_descriptor) { in Process()
H A Dscalar_analysis.cpp264 LoopDescriptor* loop_descriptor = context_->GetLoopDescriptor(function); in AnalyzePhiInstruction() local
267 if (!loop_descriptor) return CreateCantComputeNode(); in AnalyzePhiInstruction()
270 Loop* loop = (*loop_descriptor)[basic_block->id()]; in AnalyzePhiInstruction()
H A Dloop_peeling.cpp24 #include "source/opt/loop_descriptor.h"
582 LoopDescriptor& loop_descriptor = *context()->GetLoopDescriptor(f); in ProcessFunction() local
585 to_process_loop.reserve(loop_descriptor.NumLoops()); in ProcessFunction()
586 for (Loop& l : loop_descriptor) { in ProcessFunction()
H A Dloop_unroller.cpp398 // loop_descriptor.AddLoop. in PartiallyUnrollResidualFactor()
510 LoopDescriptor& loop_descriptor = *context_->GetLoopDescriptor(&function_); in PartiallyUnrollResidualFactor() local
512 loop_descriptor.AddLoop(std::move(new_loop), loop->GetParent()); in PartiallyUnrollResidualFactor()
/third_party/skia/third_party/externals/spirv-tools/
H A DAndroid.mk139 source/opt/loop_descriptor.cpp \

Completed in 52 milliseconds

12