Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
Hercules
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
llvm
Hercules
Merge requests
!121
Lift math on dynamic constants in IR to dynamic constant math
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Lift math on dynamic constants in IR to dynamic constant math
lift_to_dc_math
into
main
Overview
0
Commits
1
Pipelines
1
Changes
6
Merged
rarbore2
requested to merge
lift_to_dc_math
into
main
2 months ago
Overview
0
Commits
1
Pipelines
1
Changes
6
Expand
Lift math in IR nodes to dynamic constant math.
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
95a1e726
1 commit,
2 months ago
6 files
+
112
−
3
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
hercules_opt/src/dce.rs
+
1
−
1
Options
@@ -8,7 +8,7 @@ use crate::*;
@@ -8,7 +8,7 @@ use crate::*;
*/
*/
pub
fn
dce
(
editor
:
&
mut
FunctionEditor
)
{
pub
fn
dce
(
editor
:
&
mut
FunctionEditor
)
{
// Create worklist (starts as all nodes).
// Create worklist (starts as all nodes).
let
mut
worklist
:
Vec
<
NodeID
>
=
(
0
..
editor
.
func
()
.nodes
.len
())
.map
(
NodeID
::
new
)
.collect
();
let
mut
worklist
:
Vec
<
NodeID
>
=
editor
.
node_ids
(
)
.collect
();
while
let
Some
(
work
)
=
worklist
.pop
()
{
while
let
Some
(
work
)
=
worklist
.pop
()
{
// If a node on the worklist is a start node, it is either *the* start
// If a node on the worklist is a start node, it is either *the* start
Loading