aboutsummaryrefslogtreecommitdiffstats
path: root/aarch64/PostpassSchedulingOracle.ml
diff options
context:
space:
mode:
authornicolas.nardino <nicolas.nardino@ens-lyon.fr>2021-06-10 16:31:51 +0200
committernicolas.nardino <nicolas.nardino@ens-lyon.fr>2021-06-10 16:31:51 +0200
commit1701e43316ee8e69e794a025a8c9979af6bb8c93 (patch)
treef489f1f3e7c90d04d47536e480cf2b49a0eb440c /aarch64/PostpassSchedulingOracle.ml
parent386b9053177bb4ef2801cec00b717c400a828139 (diff)
downloadcompcert-kvx-1701e43316ee8e69e794a025a8c9979af6bb8c93.tar.gz
compcert-kvx-1701e43316ee8e69e794a025a8c9979af6bb8c93.zip
Work on new schedluer
Renamed a test file, wrote function to compute pressure deltas, Still need to pass the info in some way; beginning of the actual scheduler function
Diffstat (limited to 'aarch64/PostpassSchedulingOracle.ml')
-rw-r--r--aarch64/PostpassSchedulingOracle.ml3
1 files changed, 2 insertions, 1 deletions
diff --git a/aarch64/PostpassSchedulingOracle.ml b/aarch64/PostpassSchedulingOracle.ml
index a9737088..834d42f5 100644
--- a/aarch64/PostpassSchedulingOracle.ml
+++ b/aarch64/PostpassSchedulingOracle.ml
@@ -507,7 +507,8 @@ let build_problem bb =
{
max_latency = -1;
resource_bounds = opweights.pipelined_resource_bounds;
- live_regs_entry = Registers.Regset.empty; (* PLACEHOLDER *)
+ live_regs_entry = Registers.Regset.empty; (* unused here *)
+ typing = (fun x -> AST.Tint); (* unused here *)
instruction_usages = instruction_usages bb;
latency_constraints = latency_constraints bb;
}