1996-01-06 10:56:39 -08:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
2011-07-27 07:17:02 -07:00
|
|
|
(* OCaml *)
|
1996-01-06 10:56:39 -08:00
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1999-11-17 10:59:06 -08:00
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
|
|
(* under the terms of the Q Public License version 1.0. *)
|
1996-01-06 10:56:39 -08:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* Specific operations for the PowerPC processor *)
|
|
|
|
|
2000-04-21 01:13:22 -07:00
|
|
|
open Format
|
1996-01-06 10:56:39 -08:00
|
|
|
|
2002-11-29 07:03:37 -08:00
|
|
|
(* Machine-specific command-line options *)
|
|
|
|
|
|
|
|
let command_line_options = []
|
|
|
|
|
|
|
|
(* Specific operations *)
|
|
|
|
|
1996-01-06 10:56:39 -08:00
|
|
|
type specific_operation =
|
|
|
|
Imultaddf (* multiply and add *)
|
|
|
|
| Imultsubf (* multiply and subtract *)
|
2002-01-09 11:40:48 -08:00
|
|
|
| Ialloc_far of int (* allocation in large functions *)
|
1996-01-06 10:56:39 -08:00
|
|
|
|
|
|
|
(* Addressing modes *)
|
|
|
|
|
|
|
|
type addressing_mode =
|
1996-07-03 09:14:11 -07:00
|
|
|
Ibased of string * int (* symbol + displ *)
|
|
|
|
| Iindexed of int (* reg + displ *)
|
|
|
|
| Iindexed2 (* reg + reg *)
|
1996-01-06 10:56:39 -08:00
|
|
|
|
|
|
|
(* Sizes, endianness *)
|
|
|
|
|
|
|
|
let big_endian = true
|
|
|
|
|
2006-05-31 01:16:34 -07:00
|
|
|
let ppc64 =
|
|
|
|
match Config.model with "ppc64" -> true | _ -> false
|
|
|
|
|
|
|
|
let size_addr = if ppc64 then 8 else 4
|
|
|
|
let size_int = size_addr
|
1996-01-06 10:56:39 -08:00
|
|
|
let size_float = 8
|
|
|
|
|
2012-11-09 08:15:29 -08:00
|
|
|
let allow_unaligned_access = false
|
|
|
|
|
2012-02-24 02:13:02 -08:00
|
|
|
(* Behavior of division *)
|
|
|
|
|
2012-07-26 12:21:54 -07:00
|
|
|
let division_crashes_on_overflow = true
|
2012-02-24 02:13:02 -08:00
|
|
|
|
1996-01-06 10:56:39 -08:00
|
|
|
(* Operations on addressing modes *)
|
|
|
|
|
|
|
|
let identity_addressing = Iindexed 0
|
|
|
|
|
|
|
|
let offset_addressing addr delta =
|
|
|
|
match addr with
|
1996-07-03 09:14:11 -07:00
|
|
|
Ibased(s, n) -> Ibased(s, n + delta)
|
|
|
|
| Iindexed n -> Iindexed(n + delta)
|
2004-06-19 09:17:31 -07:00
|
|
|
| Iindexed2 -> assert false
|
1996-01-06 10:56:39 -08:00
|
|
|
|
|
|
|
let num_args_addressing = function
|
1996-07-03 09:14:11 -07:00
|
|
|
Ibased(s, n) -> 0
|
|
|
|
| Iindexed n -> 1
|
|
|
|
| Iindexed2 -> 2
|
1996-01-06 10:56:39 -08:00
|
|
|
|
|
|
|
(* Printing operations and addressing modes *)
|
|
|
|
|
2000-04-21 01:13:22 -07:00
|
|
|
let print_addressing printreg addr ppf arg =
|
1996-01-06 10:56:39 -08:00
|
|
|
match addr with
|
2000-04-21 01:13:22 -07:00
|
|
|
| Ibased(s, n) ->
|
|
|
|
let idx = if n <> 0 then Printf.sprintf " + %i" n else "" in
|
|
|
|
fprintf ppf "\"%s\"%s" s idx
|
1996-07-03 09:14:11 -07:00
|
|
|
| Iindexed n ->
|
2000-04-21 01:13:22 -07:00
|
|
|
let idx = if n <> 0 then Printf.sprintf " + %i" n else "" in
|
|
|
|
fprintf ppf "%a%s" printreg arg.(0) idx
|
1996-07-03 09:14:11 -07:00
|
|
|
| Iindexed2 ->
|
2000-04-21 01:13:22 -07:00
|
|
|
fprintf ppf "%a + %a" printreg arg.(0) printreg arg.(1)
|
1996-01-06 10:56:39 -08:00
|
|
|
|
2000-04-21 01:13:22 -07:00
|
|
|
let print_specific_operation printreg op ppf arg =
|
1996-01-06 10:56:39 -08:00
|
|
|
match op with
|
2000-04-21 01:13:22 -07:00
|
|
|
| Imultaddf ->
|
|
|
|
fprintf ppf "%a *f %a +f %a"
|
|
|
|
printreg arg.(0) printreg arg.(1) printreg arg.(2)
|
1996-01-06 10:56:39 -08:00
|
|
|
| Imultsubf ->
|
2000-04-21 01:13:22 -07:00
|
|
|
fprintf ppf "%a *f %a -f %a"
|
|
|
|
printreg arg.(0) printreg arg.(1) printreg arg.(2)
|
2002-01-09 11:40:48 -08:00
|
|
|
| Ialloc_far n ->
|
|
|
|
fprintf ppf "alloc_far %d" n
|