Skip to content

Commit be10b62

Browse files
XLS Teamcopybara-github
XLS Team
authored andcommitted
Extracted the optimization of merging consecutive PrioritySelect and OneHotSelect from the select simplification pass.
This merging optimization is moved to its own pass called select merging. The related tests that were in select_simplification_pass_test.cc are moved to the new file select_merging_pass_test.cc. This extraction is needed to defer the merging optimization towards the end of the optimization pipeline as it often blocks other optimizations (e.g., translating a PrioritySelect with a single non-zero case to a mask operation). This happens because these optimizations target only simple PrioritySelect and OneHotSelect with two (not more) possible inputs. PiperOrigin-RevId: 741401964
1 parent 829f17b commit be10b62

7 files changed

+405
-613
lines changed

xls/passes/BUILD

-46
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ cc_library(
146146
":reassociation_pass",
147147
":receive_default_value_simplification_pass",
148148
":select_lifting_pass",
149-
":select_merging_pass",
150149
":select_simplification_pass",
151150
":sparsify_select_pass",
152151
":strength_reduction_pass",
@@ -989,30 +988,6 @@ cc_library(
989988
],
990989
)
991990

992-
cc_library(
993-
name = "select_merging_pass",
994-
srcs = ["select_merging_pass.cc"],
995-
hdrs = ["select_merging_pass.h"],
996-
deps = [
997-
":optimization_pass",
998-
":optimization_pass_registry",
999-
":pass_base",
1000-
"//xls/common/status:ret_check",
1001-
"//xls/common/status:status_macros",
1002-
"//xls/ir",
1003-
"//xls/ir:node_util",
1004-
"//xls/ir:op",
1005-
"//xls/ir:value_utils",
1006-
"@com_google_absl//absl/algorithm:container",
1007-
"@com_google_absl//absl/log",
1008-
"@com_google_absl//absl/log:check",
1009-
"@com_google_absl//absl/status",
1010-
"@com_google_absl//absl/status:statusor",
1011-
"@com_google_absl//absl/strings:str_format",
1012-
"@com_google_absl//absl/types:span",
1013-
],
1014-
)
1015-
1016991
cc_library(
1017992
name = "select_simplification_pass",
1018993
srcs = ["select_simplification_pass.cc"],
@@ -1456,7 +1431,6 @@ cc_test(
14561431
"//xls/ir:bits_ops",
14571432
"//xls/ir:function_builder",
14581433
"//xls/ir:interval",
1459-
"//xls/ir:interval_ops",
14601434
"//xls/ir:interval_set",
14611435
"//xls/ir:interval_set_test_utils",
14621436
"//xls/ir:ir_test_base",
@@ -2620,26 +2594,6 @@ cc_test(
26202594
],
26212595
)
26222596

2623-
cc_test(
2624-
name = "select_merging_pass_test",
2625-
srcs = ["select_merging_pass_test.cc"],
2626-
deps = [
2627-
":optimization_pass",
2628-
":pass_base",
2629-
":select_merging_pass",
2630-
"//xls/common:xls_gunit_main",
2631-
"//xls/common/status:matchers",
2632-
"//xls/common/status:status_macros",
2633-
"//xls/ir",
2634-
"//xls/ir:function_builder",
2635-
"//xls/ir:ir_matcher",
2636-
"//xls/ir:ir_test_base",
2637-
"//xls/solvers:z3_ir_equivalence_testutils",
2638-
"@com_google_absl//absl/status:statusor",
2639-
"@googletest//:gtest",
2640-
],
2641-
)
2642-
26432597
cc_test(
26442598
name = "select_simplification_pass_test",
26452599
srcs = ["select_simplification_pass_test.cc"],

xls/passes/optimization_pass_pipeline.cc

-3
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@
7171
#include "xls/passes/reassociation_pass.h"
7272
#include "xls/passes/receive_default_value_simplification_pass.h"
7373
#include "xls/passes/select_lifting_pass.h"
74-
#include "xls/passes/select_merging_pass.h"
7574
#include "xls/passes/select_simplification_pass.h"
7675
#include "xls/passes/sparsify_select_pass.h"
7776
#include "xls/passes/strength_reduction_pass.h"
@@ -282,8 +281,6 @@ class PostInliningOptPassGroup : public OptimizationCompoundPass {
282281

283282
Add<ConditionalSpecializationPass>(/*use_bdd=*/true);
284283
Add<DeadCodeEliminationPass>();
285-
Add<SelectMergingPass>();
286-
Add<DeadCodeEliminationPass>();
287284
Add<CapOptLevel<3, FixedPointSimplificationPass>>();
288285
}
289286
};

xls/passes/select_merging_pass.cc

-271
This file was deleted.

0 commit comments

Comments
 (0)