Lines Matching refs:PartitioningModel
622 class PartitioningModel : private WrapperModel { class
764 void addIfOperation(const uint32_t cond, const PartitioningModel& trueModel, in addIfOperation()
765 const PartitioningModel& falseModel, const std::vector<uint32_t>& inputs, in addIfOperation()
775 void addWhileOperation(const PartitioningModel& condModel, const PartitioningModel& bodyModel, in addWhileOperation()
847 uint32_t addRefModelOperand(const PartitioningModel& model) { in addRefModelOperand()
871 PartitioningCompilation(const PartitioningModel* model, in PartitioningCompilation()
1372 bool compare(const ExecutionStep* step, const PartitioningModel* model, in compare()
1381 void compare(const std::shared_ptr<LogicalStep> logicalStep, const PartitioningModel* model, in compare()
1430 PartitioningModel model; in TEST_F()
1477 PartitioningModel modelB0; in TEST_F()
1495 PartitioningModel modelB1; in TEST_F()
1518 PartitioningModel model; in TEST_F()
1560 PartitioningModel modelB0; in TEST_F()
1578 PartitioningModel modelB1; in TEST_F()
1597 PartitioningModel modelB2; in TEST_F()
1616 PartitioningModel modelB3; in TEST_F()
1645 PartitioningModel model; in TEST_F()
1678 PartitioningModel model; in TEST_F()
1709 PartitioningModel model0; in TEST_F()
1731 PartitioningModel model1; in TEST_F()
1753 PartitioningModel model2; in TEST_F()
1773 PartitioningModel model; in TEST_F()
1777 model.addOperation2To1V1_0(0, opnd0, opnd1, PartitioningModel::Dimensioned::NO); in TEST_F()
1830 PartitioningModel model; in TEST_F()
1853 PartitioningModel model0; in TEST_F()
1870 PartitioningModel model1; in TEST_F()
1888 PartitioningModel model; in TEST_F()
1934 PartitioningModel model; in TEST_F()
1977 PartitioningModel model; in TEST_F()
2070 void getTransformedCacheTokenSingle(const PartitioningModel& model, in getTransformedCacheTokenSingle()
2123 void getTransformedCacheToken(const PartitioningModel& model, in getTransformedCacheToken()
2143 void createModelForCachingTests(PartitioningModel* model) { in createModelForCachingTests()
2156 std::vector<std::unique_ptr<PartitioningModel>>* models) { in createControlFlowModelForCachingTests()
2159 auto trueModel = std::make_unique<PartitioningModel>(); in createControlFlowModelForCachingTests()
2169 auto falseModel = std::make_unique<PartitioningModel>(); in createControlFlowModelForCachingTests()
2179 auto mainModel = std::make_unique<PartitioningModel>(); in createControlFlowModelForCachingTests()
2203 PartitioningModel model; in TEST_F()
2221 PartitioningModel model; in TEST_F()
2242 PartitioningModel model; in TEST_F()
2263 PartitioningModel model; in TEST_F()
2286 PartitioningModel model; in TEST_F()
2309 PartitioningModel model; in TEST_F()
2330 PartitioningModel model; in TEST_F()
2350 PartitioningModel model; in TEST_F()
2372 PartitioningModel model; in TEST_F()
2394 PartitioningModel model; in TEST_F()
2417 PartitioningModel model; in TEST_F()
2440 PartitioningModel model; in TEST_F()
2461 PartitioningModel model; in TEST_F()
2487 std::vector<std::unique_ptr<PartitioningModel>> models; in TEST_F()
2559 std::unique_ptr<PartitioningModel> createBranchOrBodyModel() { in createBranchOrBodyModel()
2560 auto model = std::make_unique<PartitioningModel>(); in createBranchOrBodyModel()
2573 std::unique_ptr<PartitioningModel> createCondModel() { in createCondModel()
2574 auto model = std::make_unique<PartitioningModel>(); in createCondModel()
2588 std::vector<std::unique_ptr<PartitioningModel>> createIfModel( in createIfModel()
2593 auto mainModel = std::make_unique<PartitioningModel>(); in createIfModel()
2596 firstOuterInputUnknownSize ? PartitioningModel::Dimensioned::NO in createIfModel()
2597 : PartitioningModel::Dimensioned::YES); in createIfModel()
2605 std::vector<std::unique_ptr<PartitioningModel>> models; in createIfModel()
2615 std::vector<std::unique_ptr<PartitioningModel>> createWhileModel( in createWhileModel()
2620 auto mainModel = std::make_unique<PartitioningModel>(); in createWhileModel()
2622 firstOuterInputUnknownSize ? PartitioningModel::Dimensioned::NO in createWhileModel()
2623 : PartitioningModel::Dimensioned::YES); in createWhileModel()
2631 std::vector<std::unique_ptr<PartitioningModel>> models; in createWhileModel()