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
Commits
3ba235b8
Commit
3ba235b8
authored
4 months ago
by
rarbore2
Browse files
Options
Downloads
Patches
Plain Diff
Fix inlining and editor handling of gravestone nodes
parent
29e1a477
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!55
Fix inlining and editor handling of gravestone nodes
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
hercules_opt/src/editor.rs
+11
-1
11 additions, 1 deletion
hercules_opt/src/editor.rs
hercules_opt/src/inline.rs
+8
-1
8 additions, 1 deletion
hercules_opt/src/inline.rs
with
19 additions
and
2 deletions
hercules_opt/src/editor.rs
+
11
−
1
View file @
3ba235b8
...
...
@@ -634,7 +634,17 @@ pub fn repair_plan(plan: &mut Plan, new_function: &Function, edits: &[Edit]) {
new_partitions
[
data_id
.idx
()]
=
new_partitions
[
bbs
[
data_id
.idx
()]
.idx
()];
}
// Step 6: wrap everything up.
// Step 6: create a solitary gravestone partition. This will get removed
// when gravestone nodes are removed.
let
gravestone_partition
=
PartitionID
::
new
(
plan
.num_partitions
);
plan
.num_partitions
+=
1
;
for
(
idx
,
node
)
in
new_function
.nodes
.iter
()
.enumerate
()
{
if
idx
>
0
&&
node
.is_start
()
{
new_partitions
[
idx
]
=
Some
(
gravestone_partition
);
}
}
// Step 7: wrap everything up.
plan
.partitions
=
new_partitions
.into_iter
()
.map
(|
id
|
id
.unwrap
())
.collect
();
plan
.partition_devices
.resize
(
plan
.num_partitions
,
Device
::
CPU
);
...
...
This diff is collapsed.
Click to expand it.
hercules_opt/src/inline.rs
+
8
−
1
View file @
3ba235b8
...
...
@@ -197,7 +197,14 @@ fn inline_func(
// Stich the control use of the original call node's region with
// the predecessor control of the inlined function's return.
edit
=
edit
.replace_all_uses
(
control
,
old_id_to_new_id
(
called_return_pred
))
?
;
edit
=
edit
.replace_all_uses
(
control
,
if
called_return_pred
==
NodeID
::
new
(
0
)
{
call_pred
}
else
{
old_id_to_new_id
(
called_return_pred
)
},
)
?
;
// Stitch uses of parameter nodes in the inlined function to the IDs
// of arguments provided to the call node.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment