blob: 0cdd0998c16328e6ee5bc6dc9056698398d3d66c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
(***********************************************************************)
(* *)
(* Objective Caml *)
(* *)
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
(* *)
(* Copyright 1996 Institut National de Recherche en Informatique et *)
(* en Automatique. All rights reserved. This file is distributed *)
(* under the terms of the Q Public License version 1.0. *)
(* *)
(***********************************************************************)
(* $Id$ *)
(* Instruction scheduling for the HPPA *)
open Arch
open Mach
class scheduler = object (self)
inherit Schedgen.scheduler_generic
(* Latencies (in cycles). Roughly based on the ``Mustang'' chips. *)
method oper_latency = function
Ireload -> 2
| Iload(_, _) -> 2
| Iconst_float _ -> 2 (* turned into a load *)
| Iintop Imul -> 2 (* ends up with a load *)
| Iaddf | Isubf | Imulf -> 3
| Idivf -> 12
| _ -> 1
(* Issue cycles. Rough approximations. *)
method oper_issue_cycles = function
Iconst_float _ -> 3
| Iconst_symbol _ -> 2
| Iload(_, Ibased(_, _)) -> 2
| Istore(_, Ibased(_, _)) -> 2
| Ialloc _ -> 5
| Iintop Imul -> 10
| Iintop Ilsl -> 3
| Iintop Ilsr -> 2
| Iintop Iasr -> 3
| Iintop(Icomp _) -> 2
| Iintop(Icheckbound) -> 2
| Iintop_imm(Idiv, _) -> 4
| Iintop_imm(Imod, _) -> 5
| Iintop_imm(Icomp _, _) -> 2
| Iintop_imm(Icheckbound, _) -> 2
| Ifloatofint -> 4
| Iintoffloat -> 4
| _ -> 1
end
let fundecl f = (new scheduler)#schedule_fundecl f
|