1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Caml Special Light *)
|
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 1995 Institut National de Recherche en Informatique et *)
|
|
|
|
(* Automatique. Distributed only by permission. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
1995-06-15 01:17:29 -07:00
|
|
|
(* Emission of Intel 386 assembly code *)
|
|
|
|
|
|
|
|
open Misc
|
|
|
|
open Cmm
|
|
|
|
open Arch
|
|
|
|
open Proc
|
|
|
|
open Reg
|
|
|
|
open Mach
|
|
|
|
open Linearize
|
|
|
|
open Emitaux
|
|
|
|
|
|
|
|
(* Tradeoff between code size and code speed *)
|
|
|
|
|
|
|
|
let fastcode_flag = ref true
|
|
|
|
|
1995-07-10 02:48:27 -07:00
|
|
|
let stack_offset = ref 0
|
|
|
|
|
|
|
|
(* Layout of the stack frame *)
|
|
|
|
|
|
|
|
let frame_size () = (* includes return address *)
|
|
|
|
!stack_offset + 4 * num_stack_slots.(0) + 8 * num_stack_slots.(1) + 4
|
|
|
|
|
|
|
|
let slot_offset loc class =
|
|
|
|
match loc with
|
|
|
|
Incoming n -> frame_size() + n
|
|
|
|
| Local n ->
|
|
|
|
if class = 0
|
|
|
|
then !stack_offset + n * 4
|
|
|
|
else !stack_offset + num_stack_slots.(0) * 4 + n * 8
|
|
|
|
| Outgoing n -> n
|
|
|
|
|
1995-07-02 09:41:48 -07:00
|
|
|
(* Symbols are prefixed with _ *)
|
|
|
|
|
|
|
|
let emit_symbol s =
|
|
|
|
emit_string "_"; Emitaux.emit_symbol s
|
|
|
|
|
1995-06-15 01:17:29 -07:00
|
|
|
(* Output a label *)
|
|
|
|
|
|
|
|
let emit_label lbl =
|
|
|
|
emit_string "L"; emit_int lbl
|
|
|
|
|
|
|
|
(* Output a pseudo-register *)
|
|
|
|
|
|
|
|
let emit_reg r =
|
|
|
|
match r.loc with
|
|
|
|
Reg r ->
|
|
|
|
emit_string (register_name r)
|
|
|
|
| Stack s ->
|
|
|
|
let ofs = slot_offset s (register_class r) in
|
|
|
|
`{emit_int ofs}(%esp)`
|
|
|
|
| Unknown ->
|
|
|
|
fatal_error "Emit_i386.emit_reg"
|
|
|
|
|
|
|
|
(* Same, but after one push in the floating-point register set *)
|
|
|
|
|
|
|
|
let emit_shift r =
|
|
|
|
match r.loc with
|
|
|
|
Reg r ->
|
|
|
|
emit_string (register_name(r + 1))
|
|
|
|
| Stack s ->
|
|
|
|
let ofs = slot_offset s (register_class r) in
|
|
|
|
`{emit_int ofs}(%esp)`
|
|
|
|
| Unknown ->
|
|
|
|
fatal_error "Emit_i386.emit_shift"
|
|
|
|
|
|
|
|
(* Output an addressing mode *)
|
|
|
|
|
|
|
|
let emit_addressing addr r n =
|
|
|
|
match addr with
|
|
|
|
Ibased(s, d) ->
|
1995-07-02 09:41:48 -07:00
|
|
|
`{emit_symbol s}`;
|
1995-06-15 01:17:29 -07:00
|
|
|
if d <> 0 then ` + {emit_int d}`
|
|
|
|
| Iindexed d ->
|
|
|
|
if d <> 0 then emit_int d;
|
|
|
|
`({emit_reg r.(n)})`
|
|
|
|
| Iindexed2 d ->
|
|
|
|
if d <> 0 then emit_int d;
|
|
|
|
`({emit_reg r.(n)}, {emit_reg r.(n+1)})`
|
1995-07-02 09:41:48 -07:00
|
|
|
| Iscaled(scale, d) ->
|
|
|
|
if d <> 0 then emit_int d;
|
|
|
|
`(, {emit_reg r.(n)}, {emit_int scale})`
|
1995-06-15 01:17:29 -07:00
|
|
|
| Iindexed2scaled(scale, d) ->
|
|
|
|
if d <> 0 then emit_int d;
|
|
|
|
`({emit_reg r.(n)}, {emit_reg r.(n+1)}, {emit_int scale})`
|
|
|
|
|
|
|
|
(* Record live pointers at call points *)
|
|
|
|
|
|
|
|
type frame_descr =
|
|
|
|
{ fd_lbl: int; (* Return address *)
|
|
|
|
fd_frame_size: int; (* Size of stack frame *)
|
|
|
|
fd_live_offset: int list } (* Offsets/regs of live addresses *)
|
|
|
|
|
|
|
|
let frame_descriptors = ref([] : frame_descr list)
|
|
|
|
|
1995-07-10 02:48:27 -07:00
|
|
|
let record_frame_label live =
|
1995-06-15 01:17:29 -07:00
|
|
|
let lbl = new_label() in
|
|
|
|
let live_offset = ref [] in
|
|
|
|
Reg.Set.iter
|
|
|
|
(function
|
|
|
|
{typ = Addr; loc = Reg r} ->
|
|
|
|
live_offset := (-1 - r) :: !live_offset
|
|
|
|
| {typ = Addr; loc = Stack s} as reg ->
|
|
|
|
live_offset := slot_offset s (register_class reg) :: !live_offset
|
|
|
|
| _ -> ())
|
|
|
|
live;
|
|
|
|
frame_descriptors :=
|
|
|
|
{ fd_lbl = lbl;
|
|
|
|
fd_frame_size = frame_size();
|
|
|
|
fd_live_offset = !live_offset } :: !frame_descriptors;
|
1995-07-10 02:48:27 -07:00
|
|
|
lbl
|
|
|
|
|
|
|
|
let record_frame live =
|
|
|
|
let lbl = record_frame_label live in `{emit_label lbl}:`
|
1995-06-15 01:17:29 -07:00
|
|
|
|
|
|
|
let emit_frame fd =
|
1995-07-10 02:48:27 -07:00
|
|
|
` .long {emit_label fd.fd_lbl}\n`;
|
1995-07-02 09:41:48 -07:00
|
|
|
` .word {emit_int fd.fd_frame_size}\n`;
|
|
|
|
` .word {emit_int (List.length fd.fd_live_offset)}\n`;
|
1995-06-15 01:17:29 -07:00
|
|
|
List.iter
|
|
|
|
(fun n ->
|
1995-07-02 09:41:48 -07:00
|
|
|
` .word {emit_int n}\n`)
|
1995-07-10 02:48:27 -07:00
|
|
|
fd.fd_live_offset;
|
|
|
|
` .align 2\n`
|
1995-06-15 01:17:29 -07:00
|
|
|
|
|
|
|
(* Names for instructions *)
|
|
|
|
|
|
|
|
let instr_for_intop = function
|
|
|
|
Iadd -> "addl"
|
|
|
|
| Isub -> "subl"
|
|
|
|
| Imul -> "imull"
|
|
|
|
| Iand -> "andl"
|
|
|
|
| Ior -> "orl"
|
|
|
|
| Ixor -> "xorl"
|
|
|
|
| Ilsl -> "sal"
|
|
|
|
| Ilsr -> "shr"
|
|
|
|
| Iasr -> "sar"
|
|
|
|
| _ -> fatal_error "Emit_i386: instr_for_intop"
|
|
|
|
|
|
|
|
let name_for_cond_branch = function
|
|
|
|
Isigned Ceq -> "e" | Isigned Cne -> "ne"
|
|
|
|
| Isigned Cle -> "le" | Isigned Cgt -> "g"
|
|
|
|
| Isigned Clt -> "l" | Isigned Cge -> "ge"
|
|
|
|
| Iunsigned Ceq -> "e" | Iunsigned Cne -> "ne"
|
|
|
|
| Iunsigned Cle -> "be" | Iunsigned Cgt -> "a"
|
|
|
|
| Iunsigned Clt -> "b" | Iunsigned Cge -> "ae"
|
|
|
|
|
1995-07-30 07:26:43 -07:00
|
|
|
(* Output a comparison with a constant *)
|
|
|
|
|
|
|
|
let output_comparison arg n =
|
|
|
|
match arg.loc with
|
|
|
|
Reg r when n = 0 -> ` testl {emit_reg arg}, {emit_reg arg}\n`
|
|
|
|
| _ -> ` cmpl ${emit_int n}, {emit_reg arg}\n`
|
|
|
|
|
1995-06-15 01:17:29 -07:00
|
|
|
(* Output the assembly code for an instruction *)
|
|
|
|
|
1995-07-10 02:48:27 -07:00
|
|
|
(* Name of current function *)
|
1995-06-15 01:17:29 -07:00
|
|
|
let function_name = ref ""
|
1995-07-10 02:48:27 -07:00
|
|
|
(* Entry point for tail recursive calls *)
|
1995-06-15 01:17:29 -07:00
|
|
|
let tailrec_entry_point = ref 0
|
1995-07-10 02:48:27 -07:00
|
|
|
(* Label of trap for out-of-range accesses *)
|
|
|
|
let range_check_trap = ref 0
|
1995-06-15 01:17:29 -07:00
|
|
|
|
|
|
|
let float_constants = ref ([] : (int * string) list)
|
|
|
|
|
|
|
|
let emit_instr i =
|
|
|
|
match i.desc with
|
|
|
|
Lend -> ()
|
|
|
|
| Lop(Imove | Ispill | Ireload) ->
|
|
|
|
if i.arg.(0).loc <> i.res.(0).loc then begin
|
|
|
|
match i.arg.(0).typ with
|
|
|
|
Int | Addr ->
|
|
|
|
` movl {emit_reg i.arg.(0)}, {emit_reg i.res.(0)}\n`
|
|
|
|
| Float ->
|
|
|
|
if i.arg.(0).loc = Reg 100 then
|
|
|
|
` fstl {emit_reg i.res.(0)}\n`
|
|
|
|
else begin
|
|
|
|
` fldl {emit_reg i.arg.(0)}\n`;
|
|
|
|
` fstpl {emit_shift i.res.(0)}\n`
|
|
|
|
end
|
|
|
|
end
|
1995-07-02 09:41:48 -07:00
|
|
|
| Lop(Iconst_int 0) ->
|
|
|
|
begin match i.res.(0).loc with
|
|
|
|
Reg n -> ` xorl {emit_reg i.res.(0)}, {emit_reg i.res.(0)}\n`
|
|
|
|
| _ -> ` movl $0, {emit_reg i.res.(0)}\n`
|
1995-06-15 01:17:29 -07:00
|
|
|
end
|
1995-07-02 09:41:48 -07:00
|
|
|
| Lop(Iconst_int n) ->
|
|
|
|
` movl ${emit_int n}, {emit_reg i.res.(0)}\n`
|
|
|
|
| Lop(Iconst_float f) ->
|
|
|
|
if float_of_string f = 0.0 then
|
|
|
|
` fldz\n`
|
|
|
|
else begin
|
|
|
|
let lbl = new_label() in
|
|
|
|
float_constants := (lbl, f) :: !float_constants;
|
|
|
|
` fldl {emit_label lbl}\n`
|
|
|
|
end;
|
|
|
|
` fstpl {emit_shift i.res.(0)}\n`
|
|
|
|
| Lop(Iconst_symbol s) ->
|
|
|
|
` movl ${emit_symbol s}, {emit_reg i.res.(0)}\n`
|
1995-06-15 01:17:29 -07:00
|
|
|
| Lop(Icall_ind) ->
|
1995-07-10 02:48:27 -07:00
|
|
|
` call *{emit_reg i.arg.(0)}\n`;
|
|
|
|
record_frame i.live
|
1995-06-15 01:17:29 -07:00
|
|
|
| Lop(Icall_imm s) ->
|
1995-07-10 02:48:27 -07:00
|
|
|
` call {emit_symbol s}\n`;
|
|
|
|
record_frame i.live
|
1995-06-15 01:17:29 -07:00
|
|
|
| Lop(Itailcall_ind) ->
|
|
|
|
let n = frame_size() - 4 in
|
|
|
|
if n > 0 then
|
1995-07-02 09:41:48 -07:00
|
|
|
` addl ${emit_int n}, %esp\n`;
|
1995-06-15 01:17:29 -07:00
|
|
|
` jmp *{emit_reg i.arg.(0)}\n`
|
|
|
|
| Lop(Itailcall_imm s) ->
|
|
|
|
if s = !function_name then
|
|
|
|
` jmp {emit_label !tailrec_entry_point}\n`
|
|
|
|
else begin
|
|
|
|
let n = frame_size() - 4 in
|
|
|
|
if n > 0 then
|
1995-07-02 09:41:48 -07:00
|
|
|
` addl ${emit_int n}, %esp\n`;
|
|
|
|
` jmp {emit_symbol s}\n`
|
1995-06-15 01:17:29 -07:00
|
|
|
end
|
1995-07-10 02:48:27 -07:00
|
|
|
| Lop(Iextcall(s, alloc)) ->
|
|
|
|
if alloc then begin
|
|
|
|
` movl ${emit_symbol s}, %eax\n`;
|
|
|
|
` call _caml_c_call\n`;
|
|
|
|
record_frame i.live
|
|
|
|
end else begin
|
|
|
|
` call {emit_symbol s}\n`
|
1995-07-30 07:26:43 -07:00
|
|
|
end;
|
|
|
|
if Array.length i.res > 0 & i.res.(0).typ = Float then
|
|
|
|
` fstpl {emit_shift i.res.(0)}\n`
|
1995-06-15 01:17:29 -07:00
|
|
|
| Lop(Istackoffset n) ->
|
|
|
|
if n >= 0
|
1995-07-02 09:41:48 -07:00
|
|
|
then ` subl ${emit_int n}, %esp\n`
|
|
|
|
else ` addl ${emit_int(-n)}, %esp\n`;
|
1995-06-15 01:17:29 -07:00
|
|
|
stack_offset := !stack_offset + n
|
|
|
|
| Lop(Iload(chunk, addr)) ->
|
|
|
|
begin match i.res.(0).typ with
|
|
|
|
Int | Addr ->
|
|
|
|
let loadop =
|
|
|
|
match chunk with
|
|
|
|
Word -> "movl"
|
|
|
|
| Byte_unsigned -> "movzbl"
|
|
|
|
| Byte_signed -> "movsbl"
|
|
|
|
| Sixteen_unsigned -> "movzwl"
|
|
|
|
| Sixteen_signed -> "movswl" in
|
|
|
|
` {emit_string loadop} {emit_addressing addr i.arg 0}, {emit_reg i.res.(0)}\n`
|
|
|
|
| Float ->
|
|
|
|
` fldl {emit_addressing addr i.arg 0}\n`;
|
|
|
|
` fstpl {emit_shift i.res.(0)}\n`
|
|
|
|
end
|
|
|
|
| Lop(Istore(Word, addr)) ->
|
|
|
|
begin match i.arg.(0).typ with
|
|
|
|
Int | Addr ->
|
|
|
|
` movl {emit_reg i.arg.(0)}, {emit_addressing addr i.arg 1}\n`
|
|
|
|
| Float ->
|
1995-07-02 09:41:48 -07:00
|
|
|
if i.arg.(0).loc = Reg 100 then
|
|
|
|
` fstl {emit_addressing addr i.arg 1}\n`
|
|
|
|
else begin
|
|
|
|
` fldl {emit_reg i.arg.(0)}\n`;
|
|
|
|
` fstpl {emit_addressing addr i.arg 1}\n`
|
|
|
|
end
|
1995-06-15 01:17:29 -07:00
|
|
|
end
|
|
|
|
| Lop(Istore(chunk, addr)) ->
|
|
|
|
(* i.arg.(0) is guaranteed to be in %edx *)
|
|
|
|
begin match chunk with
|
|
|
|
Word -> fatal_error "Emit_i386: store word"
|
|
|
|
| Byte_unsigned | Byte_signed ->
|
|
|
|
` movb %dl, {emit_addressing addr i.arg 1}\n`
|
|
|
|
| Sixteen_unsigned | Sixteen_signed ->
|
|
|
|
` movw %dx, {emit_addressing addr i.arg 1}\n`
|
|
|
|
end
|
|
|
|
| Lop(Ialloc n) ->
|
|
|
|
if !fastcode_flag then begin
|
|
|
|
` movl _young_ptr, %eax\n`;
|
1995-07-02 09:41:48 -07:00
|
|
|
` subl ${emit_int n}, %eax\n`;
|
1995-06-15 01:17:29 -07:00
|
|
|
` movl %eax, _young_ptr\n`;
|
1995-07-02 09:41:48 -07:00
|
|
|
` cmpl _young_start, %eax\n`;
|
1995-07-10 02:48:27 -07:00
|
|
|
let lbl_cont = record_frame_label i.live in
|
1995-06-15 01:17:29 -07:00
|
|
|
` jae {emit_label lbl_cont}\n`;
|
1995-07-10 02:48:27 -07:00
|
|
|
` call _caml_call_gc\n`;
|
1995-07-30 07:26:43 -07:00
|
|
|
` .word {emit_int n}\n`;
|
1995-06-15 01:17:29 -07:00
|
|
|
`{emit_label lbl_cont}: leal 4(%eax), {emit_reg i.res.(0)}\n`
|
|
|
|
end else begin
|
|
|
|
begin match n with
|
1995-07-10 02:48:27 -07:00
|
|
|
8 -> ` call _caml_alloc1\n`
|
|
|
|
| 12 -> ` call _caml_alloc2\n`
|
|
|
|
| 16 -> ` call _caml_alloc3\n`
|
1995-06-15 01:17:29 -07:00
|
|
|
| _ -> ` movl ${emit_int n}, %eax\n`;
|
1995-07-10 02:48:27 -07:00
|
|
|
` call _caml_alloc\n`
|
1995-06-15 01:17:29 -07:00
|
|
|
end;
|
1995-07-10 02:48:27 -07:00
|
|
|
`{record_frame i.live} leal 4(%eax), {emit_reg i.res.(0)}\n`
|
1995-06-15 01:17:29 -07:00
|
|
|
end
|
|
|
|
| Lop(Iintop(Icomp cmp)) ->
|
|
|
|
` cmpl {emit_reg i.arg.(1)}, {emit_reg i.arg.(0)}\n`;
|
|
|
|
let b = name_for_cond_branch cmp in
|
|
|
|
` set{emit_string b} %al\n`;
|
|
|
|
` movzbl %al, {emit_reg i.res.(0)}\n`
|
|
|
|
| Lop(Iintop_imm(Icomp cmp, n)) ->
|
1995-07-30 07:26:43 -07:00
|
|
|
output_comparison i.arg.(0) n;
|
1995-06-15 01:17:29 -07:00
|
|
|
let b = name_for_cond_branch cmp in
|
|
|
|
` set{emit_string b} %al\n`;
|
|
|
|
` movzbl %al, {emit_reg i.res.(0)}\n`
|
1995-07-10 02:48:27 -07:00
|
|
|
| Lop(Iintop Icheckbound) ->
|
|
|
|
if !range_check_trap = 0 then range_check_trap := new_label();
|
|
|
|
` cmpl {emit_reg i.arg.(1)}, {emit_reg i.arg.(0)}\n`;
|
|
|
|
` jbe {emit_label !range_check_trap}\n`
|
|
|
|
| Lop(Iintop_imm(Icheckbound, n)) ->
|
|
|
|
if !range_check_trap = 0 then range_check_trap := new_label();
|
|
|
|
` cmpl ${emit_int n}, {emit_reg i.arg.(0)}\n`;
|
|
|
|
` jbe {emit_label !range_check_trap}\n`
|
1995-06-15 01:17:29 -07:00
|
|
|
| Lop(Iintop(Idiv | Imod)) ->
|
|
|
|
` cltd\n`;
|
|
|
|
` idivl {emit_reg i.arg.(1)}\n`
|
|
|
|
| Lop(Iintop(Ilsl | Ilsr | Iasr as op)) ->
|
|
|
|
(* We have i.arg.(0) = i.res.(0) and i.arg.(1) = %ecx *)
|
|
|
|
` {emit_string(instr_for_intop op)} %cl, {emit_reg i.res.(0)}\n`
|
|
|
|
| Lop(Iintop op) ->
|
|
|
|
(* We have i.arg.(0) = i.res.(0) *)
|
|
|
|
` {emit_string(instr_for_intop op)} {emit_reg i.arg.(1)}, {emit_reg i.res.(0)}\n`
|
|
|
|
| Lop(Iintop_imm(Iadd, 1) | Iintop_imm(Isub, -1)) ->
|
|
|
|
` incl {emit_reg i.res.(0)}\n`
|
|
|
|
| Lop(Iintop_imm(Iadd, -1) | Iintop_imm(Isub, 1)) ->
|
|
|
|
` decl {emit_reg i.res.(0)}\n`
|
|
|
|
| Lop(Iintop_imm(op, n)) ->
|
|
|
|
(* We have i.arg.(0) = i.res.(0) *)
|
|
|
|
` {emit_string(instr_for_intop op)} ${emit_int n}, {emit_reg i.res.(0)}\n`
|
|
|
|
| Lop(Iaddf | Isubf | Imulf | Idivf as floatop) ->
|
|
|
|
let instr =
|
|
|
|
match floatop with
|
|
|
|
Iaddf -> "fadd"
|
|
|
|
| Isubf -> "fsub"
|
|
|
|
| Imulf -> "fmul"
|
|
|
|
| Idivf -> "fdiv"
|
|
|
|
| _ -> fatal_error "Emit_i386.emit_instr: floatop" in
|
|
|
|
` fldl {emit_reg i.arg.(0)}\n`;
|
|
|
|
begin match i.arg.(1).loc with
|
|
|
|
Stack s ->
|
|
|
|
` {emit_string instr}l {emit_shift i.arg.(1)}\n`
|
|
|
|
| _ ->
|
|
|
|
` {emit_string instr} {emit_shift i.arg.(1)}\n`
|
|
|
|
end;
|
|
|
|
` fstpl {emit_shift i.res.(0)}\n`
|
|
|
|
| Lop(Ifloatofint) ->
|
|
|
|
begin match i.arg.(0).loc with
|
|
|
|
Stack s ->
|
|
|
|
` fildl {emit_reg i.arg.(0)}\n`;
|
|
|
|
` fstpl {emit_shift i.res.(0)}\n`
|
|
|
|
| _ ->
|
|
|
|
` pushl {emit_reg i.arg.(0)}\n`;
|
|
|
|
stack_offset := !stack_offset + 4;
|
|
|
|
` fildl (%esp)\n`;
|
|
|
|
` fstpl {emit_shift i.res.(0)}\n`;
|
|
|
|
` addl $4, %esp\n`;
|
|
|
|
stack_offset := !stack_offset - 4
|
|
|
|
end
|
|
|
|
| Lop(Iintoffloat) ->
|
|
|
|
stack_offset := !stack_offset - 8;
|
|
|
|
` subl $8, %esp\n`;
|
|
|
|
` fnstcw 4(%esp)\n`;
|
|
|
|
` movl 4(%esp), %eax\n`;
|
|
|
|
` movb $12, %ah\n`;
|
|
|
|
` movl %eax, (%esp)\n`;
|
|
|
|
` fldcw (%esp)\n`;
|
|
|
|
` fldl {emit_reg i.arg.(0)}\n`;
|
|
|
|
begin match i.res.(0).loc with
|
|
|
|
Stack s ->
|
|
|
|
` fistpl {emit_shift i.res.(0)}\n`
|
|
|
|
| _ ->
|
|
|
|
` fistpl (%esp)\n`;
|
|
|
|
` movl (%esp), {emit_reg i.res.(0)}\n`
|
|
|
|
end;
|
|
|
|
` addl $8, %esp\n`;
|
|
|
|
stack_offset := !stack_offset + 8
|
|
|
|
| Lop(Ispecific(Ilea addr)) ->
|
|
|
|
` lea {emit_addressing addr i.arg 0}, {emit_reg i.res.(0)}\n`
|
1995-07-02 09:41:48 -07:00
|
|
|
| Lop(Ispecific(Istore_int(n, addr))) ->
|
|
|
|
` movl ${emit_int n}, {emit_addressing addr i.arg 0}\n`
|
|
|
|
| Lop(Ispecific(Istore_symbol(s, addr))) ->
|
|
|
|
` movl ${emit_symbol s}, {emit_addressing addr i.arg 0}\n`
|
|
|
|
| Lop(Ispecific(Ioffset_loc(n, addr))) ->
|
|
|
|
` addl ${emit_int n}, {emit_addressing addr i.arg 0}\n`
|
1995-08-25 01:46:03 -07:00
|
|
|
| Lreloadretaddr ->
|
|
|
|
()
|
1995-06-15 01:17:29 -07:00
|
|
|
| Lreturn ->
|
|
|
|
let n = frame_size() - 4 in
|
|
|
|
if n > 0 then
|
|
|
|
` addl ${emit_int n}, %esp\n`;
|
|
|
|
` ret\n`
|
|
|
|
| Llabel lbl ->
|
|
|
|
`{emit_label lbl}:\n`
|
|
|
|
| Lbranch lbl ->
|
|
|
|
` jmp {emit_label lbl}\n`
|
|
|
|
| Lcondbranch(tst, lbl) ->
|
|
|
|
begin match tst with
|
1995-06-15 09:08:53 -07:00
|
|
|
Itruetest ->
|
1995-07-30 07:26:43 -07:00
|
|
|
output_comparison i.arg.(0) 0;
|
1995-06-15 01:17:29 -07:00
|
|
|
` jne {emit_label lbl}\n`
|
|
|
|
| Ifalsetest ->
|
1995-07-30 07:26:43 -07:00
|
|
|
output_comparison i.arg.(0) 0;
|
1995-06-15 01:17:29 -07:00
|
|
|
` je {emit_label lbl}\n`
|
|
|
|
| Iinttest cmp ->
|
|
|
|
` cmpl {emit_reg i.arg.(1)}, {emit_reg i.arg.(0)}\n`;
|
|
|
|
let b = name_for_cond_branch cmp in
|
|
|
|
` j{emit_string b} {emit_label lbl}\n`
|
|
|
|
| Iinttest_imm(cmp, n) ->
|
1995-07-30 07:26:43 -07:00
|
|
|
output_comparison i.arg.(0) n;
|
1995-06-15 01:17:29 -07:00
|
|
|
let b = name_for_cond_branch cmp in
|
|
|
|
` j{emit_string b} {emit_label lbl}\n`
|
|
|
|
| Ifloattest cmp ->
|
1995-07-10 02:48:27 -07:00
|
|
|
` fldl {emit_reg i.arg.(0)}\n`;
|
1995-07-24 05:44:17 -07:00
|
|
|
let comp_instr =
|
|
|
|
match cmp with
|
|
|
|
Ceq | Cne -> "fucom"
|
|
|
|
| _ -> "fcom" in
|
1995-07-10 02:48:27 -07:00
|
|
|
begin match i.arg.(1).loc with
|
|
|
|
Stack s ->
|
1995-07-24 05:44:17 -07:00
|
|
|
` {emit_string comp_instr}pl {emit_shift i.arg.(1)}\n`
|
1995-07-10 02:48:27 -07:00
|
|
|
| _ ->
|
1995-07-24 05:44:17 -07:00
|
|
|
` {emit_string comp_instr}p {emit_shift i.arg.(1)}\n`
|
1995-07-10 02:48:27 -07:00
|
|
|
end;
|
1995-06-15 01:17:29 -07:00
|
|
|
` fnstsw %ax\n`;
|
1995-07-17 09:10:15 -07:00
|
|
|
begin match cmp with
|
1995-06-15 01:17:29 -07:00
|
|
|
Ceq ->
|
1995-07-24 05:44:17 -07:00
|
|
|
` andb $69, %ah\n`;
|
|
|
|
` cmpb $64, %ah\n`;
|
1995-06-15 01:17:29 -07:00
|
|
|
` je {emit_label lbl}\n`
|
|
|
|
| Cne ->
|
1995-07-24 05:44:17 -07:00
|
|
|
` andb $68, %ah\n`;
|
|
|
|
` xorb $64, %ah\n`;
|
1995-06-15 01:17:29 -07:00
|
|
|
` jne {emit_label lbl}\n`
|
|
|
|
| Cle ->
|
1995-07-24 05:44:17 -07:00
|
|
|
` andb $69, %ah\n`;
|
|
|
|
` decb %ah\n`;
|
|
|
|
` cmpb $64, %ah\n`;
|
1995-06-15 01:17:29 -07:00
|
|
|
` jb {emit_label lbl}\n`
|
|
|
|
| Cge ->
|
1995-07-24 05:44:17 -07:00
|
|
|
` andb $5, %ah\n`;
|
1995-06-15 01:17:29 -07:00
|
|
|
` je {emit_label lbl}\n`
|
|
|
|
| Clt ->
|
1995-07-24 05:44:17 -07:00
|
|
|
` andb $69, %ah\n`;
|
|
|
|
` cmpb $1, %ah\n`;
|
1995-06-15 01:17:29 -07:00
|
|
|
` je {emit_label lbl}\n`
|
|
|
|
| Cgt ->
|
1995-07-24 05:44:17 -07:00
|
|
|
` andb $69, %ah\n`;
|
1995-06-15 01:17:29 -07:00
|
|
|
` je {emit_label lbl}\n`
|
1995-07-17 09:10:15 -07:00
|
|
|
end
|
|
|
|
| Ioddtest ->
|
|
|
|
` testl $1, {emit_reg i.arg.(0)}\n`;
|
|
|
|
` jne {emit_label lbl}\n`
|
|
|
|
| Ieventest ->
|
|
|
|
` testl $1, {emit_reg i.arg.(0)}\n`;
|
|
|
|
` je {emit_label lbl}\n`
|
1995-06-15 01:17:29 -07:00
|
|
|
end
|
1995-08-12 07:26:23 -07:00
|
|
|
| Lcondbranch3(lbl0, lbl1, lbl2) ->
|
1995-06-15 01:17:29 -07:00
|
|
|
` cmpl $1, {emit_reg i.arg.(0)}\n`;
|
1995-08-12 07:26:23 -07:00
|
|
|
begin match lbl0 with
|
|
|
|
None -> ()
|
|
|
|
| Some lbl -> ` jb {emit_label lbl}\n`
|
|
|
|
end;
|
|
|
|
begin match lbl1 with
|
|
|
|
None -> ()
|
|
|
|
| Some lbl -> ` je {emit_label lbl}\n`
|
|
|
|
end;
|
|
|
|
begin match lbl2 with
|
|
|
|
None -> ()
|
|
|
|
| Some lbl -> ` jg {emit_label lbl}\n`
|
|
|
|
end
|
|
|
|
| Lswitch jumptbl ->
|
|
|
|
let lbl = new_label() in
|
|
|
|
` jmp *{emit_label lbl}(, {emit_reg i.arg.(0)}, 4)\n`;
|
|
|
|
` .align 2\n`;
|
|
|
|
`{emit_label lbl}:`;
|
|
|
|
for i = 0 to Array.length jumptbl - 1 do
|
|
|
|
` .long {emit_label jumptbl.(i)}\n`
|
|
|
|
done
|
1995-07-10 02:48:27 -07:00
|
|
|
| Lsetuptrap lbl ->
|
|
|
|
` call {emit_label lbl}\n`
|
|
|
|
| Lpushtrap ->
|
1995-06-15 01:17:29 -07:00
|
|
|
` pushl _caml_exception_pointer\n`;
|
|
|
|
` movl %esp, _caml_exception_pointer\n`;
|
|
|
|
stack_offset := !stack_offset + 8
|
|
|
|
| Lpoptrap ->
|
|
|
|
` popl _caml_exception_pointer\n`;
|
1995-07-10 02:48:27 -07:00
|
|
|
` addl $4, %esp\n`;
|
1995-06-15 01:17:29 -07:00
|
|
|
stack_offset := !stack_offset - 8
|
|
|
|
| Lraise ->
|
|
|
|
` movl _caml_exception_pointer, %esp\n`;
|
|
|
|
` popl _caml_exception_pointer\n`;
|
1995-07-10 02:48:27 -07:00
|
|
|
` ret\n`
|
1995-06-15 01:17:29 -07:00
|
|
|
|
|
|
|
let rec emit_all i =
|
|
|
|
match i.desc with Lend -> () | _ -> emit_instr i; emit_all i.next
|
|
|
|
|
|
|
|
(* Emission of the floating-point constants *)
|
|
|
|
|
|
|
|
let emit_float_constant (lbl, cst) =
|
|
|
|
` .data\n`;
|
|
|
|
`{emit_label lbl}: .double {emit_string cst}\n`
|
|
|
|
|
|
|
|
(* Emission of a function declaration *)
|
|
|
|
|
|
|
|
let fundecl fundecl =
|
|
|
|
function_name := fundecl.fun_name;
|
1995-07-02 09:41:48 -07:00
|
|
|
fastcode_flag := fundecl.fun_fast;
|
1995-06-15 01:17:29 -07:00
|
|
|
tailrec_entry_point := new_label();
|
|
|
|
stack_offset := 0;
|
|
|
|
float_constants := [];
|
1995-07-10 02:48:27 -07:00
|
|
|
range_check_trap := 0;
|
1995-06-15 01:17:29 -07:00
|
|
|
` .text\n`;
|
1995-08-12 07:26:23 -07:00
|
|
|
` .align 2\n`;
|
1995-07-02 09:41:48 -07:00
|
|
|
` .globl {emit_symbol fundecl.fun_name}\n`;
|
|
|
|
`{emit_symbol fundecl.fun_name}:\n`;
|
1995-06-15 01:17:29 -07:00
|
|
|
let n = frame_size() - 4 in
|
|
|
|
if n > 0 then
|
|
|
|
` subl ${emit_int n}, %esp\n`;
|
|
|
|
`{emit_label !tailrec_entry_point}:`;
|
|
|
|
emit_all fundecl.fun_body;
|
1995-07-10 02:48:27 -07:00
|
|
|
if !range_check_trap > 0 then
|
1995-07-24 05:44:17 -07:00
|
|
|
`{emit_label !range_check_trap}: int $5\n`;
|
1995-06-15 01:17:29 -07:00
|
|
|
List.iter emit_float_constant !float_constants
|
|
|
|
|
|
|
|
(* Emission of data *)
|
|
|
|
|
|
|
|
let emit_item = function
|
1995-06-22 03:11:18 -07:00
|
|
|
Cdefine_symbol s ->
|
1995-07-02 09:41:48 -07:00
|
|
|
` .globl {emit_symbol s}\n`;
|
|
|
|
`{emit_symbol s}:\n`
|
1995-06-22 03:11:18 -07:00
|
|
|
| Cdefine_label lbl ->
|
|
|
|
`{emit_label (10000 + lbl)}:\n`
|
1995-06-15 01:17:29 -07:00
|
|
|
| Cint8 n ->
|
|
|
|
` .byte {emit_int n}\n`
|
|
|
|
| Cint16 n ->
|
|
|
|
` .word {emit_int n}\n`
|
|
|
|
| Cint n ->
|
|
|
|
` .long {emit_int n}\n`
|
|
|
|
| Cfloat f ->
|
|
|
|
` .double {emit_string f}\n`
|
1995-06-22 03:11:18 -07:00
|
|
|
| Csymbol_address s ->
|
1995-07-02 09:41:48 -07:00
|
|
|
` .long {emit_symbol s}\n`
|
1995-06-22 03:11:18 -07:00
|
|
|
| Clabel_address lbl ->
|
|
|
|
` .long {emit_label (10000 + lbl)}\n`
|
1995-06-15 01:17:29 -07:00
|
|
|
| Cstring s ->
|
|
|
|
let l = String.length s in
|
|
|
|
if l = 0 then ()
|
|
|
|
else if l < 80 then
|
|
|
|
` .ascii {emit_string_literal s}\n`
|
|
|
|
else begin
|
|
|
|
let i = ref 0 in
|
|
|
|
while !i < l do
|
|
|
|
let n = min (l - !i) 80 in
|
|
|
|
` .ascii {emit_string_literal(String.sub s !i n)}\n`;
|
|
|
|
i := !i + n
|
|
|
|
done
|
|
|
|
end
|
|
|
|
| Cskip n ->
|
|
|
|
if n > 0 then ` .space {emit_int n}\n`
|
|
|
|
| Calign n ->
|
|
|
|
` .align {emit_int(Misc.log2 n)}\n`
|
|
|
|
|
|
|
|
let data l =
|
|
|
|
` .data\n`;
|
|
|
|
List.iter emit_item l
|
|
|
|
|
|
|
|
(* Beginning / end of an assembly file *)
|
|
|
|
|
|
|
|
let begin_assembly() = ()
|
|
|
|
|
|
|
|
let end_assembly() =
|
1995-07-02 09:41:48 -07:00
|
|
|
let lbl = Compilenv.current_unit_name() ^ "_frametable" in
|
1995-06-15 01:17:29 -07:00
|
|
|
` .data\n`;
|
1995-07-02 09:41:48 -07:00
|
|
|
` .globl {emit_symbol lbl}\n`;
|
|
|
|
`{emit_symbol lbl}:\n`;
|
1995-07-07 05:07:07 -07:00
|
|
|
` .long {emit_int (List.length !frame_descriptors)}\n`;
|
1995-06-15 01:17:29 -07:00
|
|
|
List.iter emit_frame !frame_descriptors;
|
1995-07-07 05:07:07 -07:00
|
|
|
frame_descriptors := []
|