2000-06-29 04:46:14 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Objective Caml *)
|
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
2000-07-15 19:57:31 -07:00
|
|
|
(* Copyright 2000 Institut National de Recherche en Informatique et *)
|
2000-06-29 04:46:14 -07:00
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
|
|
(* under the terms of the Q Public License version 1.0. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
|
|
|
(* Specific operations for the IA64 processor *)
|
|
|
|
|
2002-07-22 09:38:07 -07:00
|
|
|
open Misc
|
2000-06-29 04:46:14 -07:00
|
|
|
open Format
|
|
|
|
|
2002-11-29 07:03:37 -08:00
|
|
|
(* Machine-specific command-line options *)
|
|
|
|
|
|
|
|
let command_line_options = []
|
|
|
|
|
2000-06-29 04:46:14 -07:00
|
|
|
(* Addressing modes -- only one! (register with no displacement) *)
|
|
|
|
|
|
|
|
type addressing_mode = Iindexed
|
|
|
|
|
|
|
|
(* Specific operations *)
|
|
|
|
|
|
|
|
type specific_operation =
|
|
|
|
Iadd1 (* x + y + 1 or x + x + 1 *)
|
|
|
|
| Isub1 (* x - y - 1 *)
|
|
|
|
| Ishladd of int (* x << N + y *)
|
|
|
|
| Isignextend of int (* truncate 64-bit int to 8N-bit int *)
|
|
|
|
| Imultaddf (* x *. y +. z *)
|
|
|
|
| Imultsubf (* x *. y -. z *)
|
|
|
|
| Isubmultf (* z -. x *. y *)
|
|
|
|
| Istoreincr of int (* store y at x; x <- x + N *)
|
2000-07-15 19:57:31 -07:00
|
|
|
| Iinitbarrier (* end of object initialization *)
|
2000-06-29 04:46:14 -07:00
|
|
|
|
|
|
|
(* Sizes, endianness *)
|
|
|
|
|
|
|
|
let big_endian = false
|
|
|
|
|
|
|
|
let size_addr = 8
|
|
|
|
let size_int = 8
|
|
|
|
let size_float = 8
|
|
|
|
|
|
|
|
(* Operations on addressing modes *)
|
|
|
|
|
|
|
|
let identity_addressing = Iindexed
|
|
|
|
|
|
|
|
let offset_addressing addr delta = assert false
|
|
|
|
|
|
|
|
let num_args_addressing = function Iindexed -> 1
|
|
|
|
|
|
|
|
(* Printing operations and addressing modes *)
|
|
|
|
|
|
|
|
let print_addressing printreg addr ppf arg =
|
|
|
|
printreg ppf arg.(0)
|
|
|
|
|
|
|
|
let print_specific_operation printreg op ppf arg =
|
|
|
|
match op with
|
|
|
|
| Iadd1 ->
|
|
|
|
if Array.length arg >= 2 then
|
|
|
|
fprintf ppf "%a + %a + 1 " printreg arg.(0) printreg arg.(1)
|
|
|
|
else
|
|
|
|
fprintf ppf "%a << 1 + 1 " printreg arg.(0)
|
|
|
|
| Isub1 ->
|
|
|
|
fprintf ppf "%a - %a - 1 " printreg arg.(0) printreg arg.(1)
|
|
|
|
| Ishladd n ->
|
|
|
|
fprintf ppf "%a << %d + %a" printreg arg.(0) n printreg arg.(1)
|
|
|
|
| Isignextend n ->
|
|
|
|
fprintf ppf "truncate%d %a" (n * 8) printreg arg.(0)
|
|
|
|
| Imultaddf ->
|
|
|
|
fprintf ppf "%a * %a + %a"
|
|
|
|
printreg arg.(0) printreg arg.(1) printreg arg.(2)
|
|
|
|
| Imultsubf ->
|
|
|
|
fprintf ppf "%a * %a - %a"
|
|
|
|
printreg arg.(0) printreg arg.(1) printreg arg.(2)
|
|
|
|
| Isubmultf ->
|
|
|
|
fprintf ppf "%a - %a * %a"
|
|
|
|
printreg arg.(2) printreg arg.(0) printreg arg.(1)
|
|
|
|
| Istoreincr n ->
|
|
|
|
fprintf ppf "[%a] := %a; %a += %d"
|
|
|
|
printreg arg.(0) printreg arg.(1) printreg arg.(0) n
|
2000-07-15 19:57:31 -07:00
|
|
|
| Iinitbarrier ->
|
|
|
|
fprintf ppf "initbarrier"
|