aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/Switchaux.ml5
-rw-r--r--mppa_k1c/TargetPrinter.ml32
2 files changed, 19 insertions, 18 deletions
diff --git a/common/Switchaux.ml b/common/Switchaux.ml
index 81d7208f..1744a932 100644
--- a/common/Switchaux.ml
+++ b/common/Switchaux.ml
@@ -80,9 +80,7 @@ let compile_switch_as_jumptable default cases minkey maxkey =
CTaction default)
let dense_enough (numcases: int) (minkey: Z.t) (maxkey: Z.t) =
- false
-
- (* DM FIXME 2019-03-29 do not use jump tables bug in assembly/link
+ (* DM Settings this to constant false disables jump tables *)
let span = Z.sub maxkey minkey in
assert (Z.ge span Z.zero);
let tree_size = Z.mul (Z.of_uint 4) (Z.of_uint numcases)
@@ -90,7 +88,6 @@ let dense_enough (numcases: int) (minkey: Z.t) (maxkey: Z.t) =
numcases >= 7 (* small jump tables are always less efficient *)
&& Z.le table_size tree_size
&& Z.lt span (Z.of_uint Sys.max_array_length)
- *)
let compile_switch modulus default table =
let (tbl, keys) = normalize_table table in
diff --git a/mppa_k1c/TargetPrinter.ml b/mppa_k1c/TargetPrinter.ml
index 29e0fef4..6416b65b 100644
--- a/mppa_k1c/TargetPrinter.ml
+++ b/mppa_k1c/TargetPrinter.ml
@@ -99,6 +99,14 @@ module Target (*: TARGET*) =
(* Associate labels to floating-point constants and to symbols. *)
+ let print_tbl oc (lbl, tbl) =
+ fprintf oc " .balign 4\n";
+ fprintf oc "%a:\n" label lbl;
+ List.iter
+ (fun l -> fprintf oc " .4byte %a\n"
+ print_label l)
+ tbl
+
let emit_constants oc lit =
if exists_constants () then begin
section oc lit;
@@ -266,15 +274,18 @@ module Target (*: TARGET*) =
fprintf oc " loopdo %a, %a\n" ireg r print_label lbl
| Pjumptable (idx_reg, tbl) ->
let lbl = new_label() in
- jumptables := (lbl, tbl) :: !jumptables;
+ (* jumptables := (lbl, tbl) :: !jumptables; *)
let base_reg = if idx_reg=Asmblock.GPR63 then Asmblock.GPR62 else Asmblock.GPR63 in
fprintf oc "%s jumptable [ " comment;
List.iter (fun l -> fprintf oc "%a " print_label l) tbl;
fprintf oc "]\n";
fprintf oc " make %a = %a\n ;;\n" ireg base_reg label lbl;
fprintf oc " lwz.xs %a = %a[%a]\n ;;\n" ireg base_reg ireg idx_reg ireg base_reg;
- fprintf oc " igoto %a\n ;;\n" ireg base_reg
-
+ fprintf oc " igoto %a\n ;;\n" ireg base_reg;
+ section oc Section_jumptable;
+ print_tbl oc (lbl, tbl);
+ section oc Section_text
+
(* Load/Store instructions *)
| Plb(rd, ra, ofs) ->
fprintf oc " lbs %a = %a[%a]\n" ireg rd offset ofs ireg ra
@@ -523,21 +534,14 @@ module Target (*: TARGET*) =
let print_align oc alignment =
fprintf oc " .balign %d\n" alignment
-
- let print_jumptable oc jmptbl =
- let print_tbl oc (lbl, tbl) =
- fprintf oc "%a:\n" label lbl;
- List.iter
- (fun l -> fprintf oc " .4byte %a\n"
- print_label l)
- tbl in
- if !jumptables <> [] then
+
+ let print_jumptable oc jmptbl = ()
+ (* if !jumptables <> [] then
begin
section oc jmptbl;
- fprintf oc " .balign 4\n";
List.iter (print_tbl oc) !jumptables;
jumptables := []
- end
+ end *)
let print_fun_info = elf_print_fun_info