-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathproc.ml
685 lines (604 loc) · 24 KB
/
proc.ml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
# 2 "backend/amd64/proc.ml"
(**************************************************************************)
(* *)
(* OCaml *)
(* *)
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
(* *)
(* Copyright 2000 Institut National de Recherche en Informatique et *)
(* en Automatique. *)
(* *)
(* All rights reserved. This file is distributed under the terms of *)
(* the GNU Lesser General Public License version 2.1, with the *)
(* special exception on linking described in the file LICENSE. *)
(* *)
(**************************************************************************)
[@@@ocaml.warning "+4"]
(* Description of the AMD64 processor *)
open Misc
open Arch
open Cmm
open Reg
open Mach
let simd_regalloc_disabled () = not (Language_extension.is_enabled SIMD)
let fp = Config.with_frame_pointers
(* Which ABI to use *)
let win64 = Arch.win64
(* Registers available for register allocation *)
(* Register map:
rax 0
rbx 1
rdi 2
rsi 3
rdx 4
rcx 5
r8 6
r9 7
r12 8
r13 9
r10 10
r11 11
rbp 12
r14 domain state pointer
r15 allocation pointer
xmm0 - xmm15 100 - 115 *)
(* Conventions:
rax - r13: OCaml function arguments
rax: OCaml and C function results
xmm0 - xmm9: OCaml function arguments
xmm0: OCaml and C function results
Under Unix:
rdi, rsi, rdx, rcx, r8, r9: C function arguments
xmm0 - xmm7: C function arguments
rbx, rbp, r12-r15 are preserved by C
xmm registers are not preserved by C
Under Win64:
rcx, rdx, r8, r9: C function arguments
xmm0 - xmm3: C function arguments
rbx, rbp, rsi, rdi r12-r15 are preserved by C
xmm6-xmm15 are preserved by C
Note (PR#5707, GPR#1304): PLT stubs (used for dynamic resolution of symbols
on Unix-like platforms) may clobber any register except those used for:
1. C parameter passing;
2. C return values;
3. C callee-saved registers.
This translates to the set { r10, r11 }. These registers hence cannot
be used for OCaml parameter passing and must also be marked as
destroyed across [Ialloc] and [Ipoll] (otherwise a call to
caml_call_gc@PLT might clobber these two registers before the assembly
stub saves them into the GC regs block).
*)
let int_reg_name =
match Config.ccomp_type with
| "msvc" ->
[| "rax"; "rbx"; "rdi"; "rsi"; "rdx"; "rcx"; "r8"; "r9";
"r12"; "r13"; "r10"; "r11"; "rbp" |]
| _ ->
[| "%rax"; "%rbx"; "%rdi"; "%rsi"; "%rdx"; "%rcx"; "%r8"; "%r9";
"%r12"; "%r13"; "%r10"; "%r11"; "%rbp" |]
let float_reg_name =
match Config.ccomp_type with
| "msvc" ->
[| "xmm0"; "xmm1"; "xmm2"; "xmm3"; "xmm4"; "xmm5"; "xmm6"; "xmm7";
"xmm8"; "xmm9"; "xmm10"; "xmm11";
"xmm12"; "xmm13"; "xmm14"; "xmm15" |]
| _ ->
[| "%xmm0"; "%xmm1"; "%xmm2"; "%xmm3"; "%xmm4"; "%xmm5"; "%xmm6"; "%xmm7";
"%xmm8"; "%xmm9"; "%xmm10"; "%xmm11";
"%xmm12"; "%xmm13"; "%xmm14"; "%xmm15" |]
let num_register_classes = 2
let register_class r =
match r.typ with
| Val | Int | Addr -> 0
| Float -> 1
| Vec128 ->
if simd_regalloc_disabled () then
Misc.fatal_error "SIMD register allocation is not enabled.";
1
let num_stack_slot_classes = 3
let stack_slot_class typ =
match typ with
| Val | Addr | Int -> 0
| Float -> 1
| Vec128 ->
if simd_regalloc_disabled () then
Misc.fatal_error "SIMD register allocation is not enabled.";
2
let stack_class_tag c =
match c with
| 0 -> "i"
| 1 -> "f"
| 2 ->
if simd_regalloc_disabled () then
Misc.fatal_error "SIMD register allocation is not enabled.";
"x"
| c -> Misc.fatal_errorf "Unspecified stack slot class %d" c
let num_available_registers = [| 13; 16 |]
let first_available_register = [| 0; 100 |]
let register_name ty r =
(* If the ID doesn't match the type, the array access will raise. *)
match ty with
| Int | Addr | Val ->
int_reg_name.(r - first_available_register.(0))
| Float ->
float_reg_name.(r - first_available_register.(1))
| Vec128 ->
if simd_regalloc_disabled () then
Misc.fatal_error "SIMD register allocation is not enabled.";
float_reg_name.(r - first_available_register.(1))
(* Pack registers starting at %rax so as to reduce the number of REX
prefixes and thus improve code density *)
let rotate_registers = false
(* Representation of hard registers by pseudo-registers *)
let hard_int_reg =
let v = Array.make 13 Reg.dummy in
for i = 0 to 12 do v.(i) <- Reg.at_location Int (Reg i) done;
v
let hard_float_reg =
let v = Array.make 16 Reg.dummy in
for i = 0 to 15 do v.(i) <- Reg.at_location Float (Reg (100 + i)) done;
v
let hard_vec128_reg =
let v = Array.make 16 Reg.dummy in
for i = 0 to 15 do v.(i) <- Reg.at_location Vec128 (Reg (100 + i)) done;
fun () -> if simd_regalloc_disabled ()
then Misc.fatal_error "SIMD register allocation is not enabled."
else v
let all_phys_regs =
let basic_regs = Array.append hard_int_reg hard_float_reg in
fun () -> if simd_regalloc_disabled ()
then basic_regs
else Array.append basic_regs (hard_vec128_reg ())
let phys_reg ty n =
match ty with
| Int | Addr | Val -> hard_int_reg.(n)
| Float -> hard_float_reg.(n - 100)
| Vec128 -> (hard_vec128_reg ()).(n - 100)
let rax = phys_reg Int 0
let rdx = phys_reg Int 4
let r10 = phys_reg Int 10
let r11 = phys_reg Int 11
let rbp = phys_reg Int 12
(* CSE needs to know that all versions of xmm15 are destroyed. *)
let destroy_xmm15 () =
if simd_regalloc_disabled ()
then [| phys_reg Float 115 |]
else [| phys_reg Float 115; phys_reg Vec128 115 |]
let destroyed_by_plt_stub =
if not X86_proc.use_plt then [| |] else [| r10; r11 |]
let num_destroyed_by_plt_stub = Array.length destroyed_by_plt_stub
let destroyed_by_plt_stub_set = Reg.set_of_array destroyed_by_plt_stub
let stack_slot slot ty =
(match ty with
| Float | Int | Addr | Val -> ()
| Vec128 -> if simd_regalloc_disabled () then
Misc.fatal_error "SIMD register allocation is not enabled.");
Reg.at_location ty (Stack slot)
(* Instruction selection *)
let word_addressed = false
(* Calling conventions *)
let size_domainstate_args = 64 * size_int
let calling_conventions first_int last_int first_float last_float make_stack first_stack
arg =
let loc = Array.make (Array.length arg) Reg.dummy in
let int = ref first_int in
let float = ref first_float in
let ofs = ref first_stack in
for i = 0 to Array.length arg - 1 do
match arg.(i) with
| Val | Int | Addr as ty ->
if !int <= last_int then begin
loc.(i) <- phys_reg ty !int;
incr int
end else begin
loc.(i) <- stack_slot (make_stack !ofs) ty;
ofs := !ofs + size_int
end;
assert (not (Reg.Set.mem loc.(i) destroyed_by_plt_stub_set))
| Float ->
if !float <= last_float then begin
loc.(i) <- phys_reg Float !float;
incr float
end else begin
loc.(i) <- stack_slot (make_stack !ofs) Float;
ofs := !ofs + size_float
end
| Vec128 ->
if !float <= last_float then begin
loc.(i) <- phys_reg Vec128 !float;
incr float
end else begin
ofs := Misc.align !ofs 16;
loc.(i) <- stack_slot (make_stack !ofs) Vec128;
ofs := !ofs + size_vec128
end
done;
(* CR mslater: (SIMD) will need to be 32/64 if vec256/512 are used. *)
(loc, Misc.align (max 0 !ofs) 16) (* keep stack 16-aligned *)
let incoming ofs =
if ofs >= 0
then Incoming ofs
else Domainstate (ofs + size_domainstate_args)
let outgoing ofs =
if ofs >= 0
then Outgoing ofs
else Domainstate (ofs + size_domainstate_args)
let not_supported _ofs = fatal_error "Proc.loc_results: cannot call"
let loc_arguments arg =
calling_conventions 0 9 100 109 outgoing (- size_domainstate_args) arg
let loc_parameters arg =
let (loc, _ofs) =
calling_conventions 0 9 100 109 incoming (- size_domainstate_args) arg
in
loc
let loc_results_call res =
calling_conventions 0 9 100 109 outgoing (- size_domainstate_args) res
let loc_results_return res =
let (loc, _ofs) =
calling_conventions 0 9 100 109 incoming (- size_domainstate_args) res
in loc
let max_arguments_for_tailcalls = 10 (* in regs *) + 64 (* in domain state *)
(* C calling conventions under Unix:
first integer args in rdi, rsi, rdx, rcx, r8, r9
first float args in xmm0 ... xmm7
remaining args on stack
return value in rax or xmm0.
C calling conventions under Win64:
first integer args in rcx, rdx, r8, r9
first float args in xmm0 ... xmm3
each integer arg consumes a float reg, and conversely
remaining args on stack
always 32 bytes reserved at bottom of stack.
Return value in rax or xmm0. *)
let loc_external_results res =
let (loc, _ofs) = calling_conventions 0 0 100 100 not_supported 0 res in loc
let unix_loc_external_arguments arg =
calling_conventions 2 7 100 107 outgoing 0 arg
let win64_int_external_arguments =
[| 5 (*rcx*); 4 (*rdx*); 6 (*r8*); 7 (*r9*) |]
let win64_float_external_arguments =
[| 100 (*xmm0*); 101 (*xmm1*); 102 (*xmm2*); 103 (*xmm3*) |]
let win64_loc_external_arguments arg =
let loc = Array.make (Array.length arg) Reg.dummy in
let reg = ref 0
and ofs = ref 32 in
for i = 0 to Array.length arg - 1 do
match arg.(i) with
| Val | Int | Addr as ty ->
if !reg < 4 then begin
loc.(i) <- phys_reg ty win64_int_external_arguments.(!reg);
incr reg
end else begin
loc.(i) <- stack_slot (Outgoing !ofs) ty;
ofs := !ofs + size_int
end
| Float ->
if !reg < 4 then begin
loc.(i) <- phys_reg Float win64_float_external_arguments.(!reg);
incr reg
end else begin
loc.(i) <- stack_slot (Outgoing !ofs) Float;
ofs := !ofs + size_float
end
| Vec128 ->
if !reg < 4 then begin
loc.(i) <- phys_reg Vec128 win64_float_external_arguments.(!reg);
incr reg
end else begin
ofs := Misc.align !ofs 16;
loc.(i) <- stack_slot (Outgoing !ofs) Vec128;
ofs := !ofs + size_vec128
end
done;
(* CR mslater: (SIMD) will need to be 32/64 if vec256/512 are used. *)
(loc, Misc.align !ofs 16) (* keep stack 16-aligned *)
let loc_external_arguments ty_args =
let arg = Cmm.machtype_of_exttype_list ty_args in
let loc, stack_ofs =
if win64
then win64_loc_external_arguments arg
else unix_loc_external_arguments arg
in
Array.map (fun reg -> [|reg|]) loc, stack_ofs
let loc_exn_bucket = rax
(** See "System V Application Binary Interface, AMD64 Architecture Processor
Supplement" (www.x86-64.org/documentation/abi.pdf) page 57, fig. 3.36. *)
let int_dwarf_reg_numbers =
[| 0; 3; 5; 4; 1; 2; 8; 9; 12; 13; 10; 11; 6 |]
let float_dwarf_reg_numbers =
[| 17; 18; 19; 20; 21; 22; 23; 24; 25; 26; 27; 28; 29; 30; 31; 32 |]
let dwarf_register_numbers ~reg_class =
match reg_class with
| 0 -> int_dwarf_reg_numbers
| 1 -> float_dwarf_reg_numbers
| _ -> Misc.fatal_errorf "Bad register class %d" reg_class
let stack_ptr_dwarf_register_number = 7
(* Volatile registers: none *)
let regs_are_volatile _rs = false
(* Registers destroyed by operations *)
let destroyed_at_c_call_win64 =
let basic_regs = Array.append
(Array.map (phys_reg Int) [|0;4;5;6;7;10;11|])
(Array.sub hard_float_reg 0 6)
in
fun () -> if simd_regalloc_disabled ()
then basic_regs
else Array.append basic_regs (Array.sub (hard_vec128_reg ()) 0 6)
let destroyed_at_c_call_unix =
(* Unix: rbp, rbx, r12-r15 preserved *)
let basic_regs = Array.append
(Array.map (phys_reg Int) [|0;2;3;4;5;6;7;10;11|])
hard_float_reg
in
fun () -> if simd_regalloc_disabled ()
then basic_regs
else Array.append basic_regs (hard_vec128_reg ())
let destroyed_at_c_call =
if win64 then destroyed_at_c_call_win64 else destroyed_at_c_call_unix
let destroyed_at_alloc_or_poll =
if X86_proc.use_plt then
destroyed_by_plt_stub
else
[| r11 |]
let destroyed_at_pushtrap =
[| r11 |]
let has_pushtrap traps =
List.exists (function Cmm.Push _ -> true | Pop _ -> false) traps
(* note: keep this function in sync with `destroyed_at_{basic,terminator}` below. *)
let destroyed_at_oper = function
Iop(Icall_ind | Icall_imm _ | Iextcall { alloc = true; })
-> all_phys_regs ()
| Iop(Iextcall { alloc = false; }) -> destroyed_at_c_call ()
| Iop(Iintop(Idiv | Imod)) | Iop(Iintop_imm((Idiv | Imod), _))
-> [| rax; rdx |]
| Iop(Istore(Single, _, _))
-> destroy_xmm15 ()
| Iop(Ialloc _ | Ipoll _) -> destroyed_at_alloc_or_poll
| Iop(Iintop(Imulh _ | Icomp _) | Iintop_imm((Icomp _), _))
-> [| rax |]
| Iswitch(_, _) -> [| rax; rdx |]
| Itrywith _ -> destroyed_at_pushtrap
| Iexit (_, traps) when has_pushtrap traps -> destroyed_at_pushtrap
| Ireturn traps when has_pushtrap traps -> assert false
| Iop(Ispecific (Irdtsc | Irdpmc)) -> [| rax; rdx |]
| Iop(Ispecific(Ilfence | Isfence | Imfence)) -> [||]
| Iop(Ispecific(Isqrtf | Isextend32 | Izextend32 | Icrc32q | Ilea _
| Istore_int (_, _, _) | Ioffset_loc (_, _)
| Ipause
| Iprefetch _
| Ifloat_round _
| Ifloat_iround | Ifloat_min | Ifloat_max
| Ifloatarithmem (_, _) | Ibswap _ | Ifloatsqrtf _))
| Iop(Iintop(Iadd | Isub | Imul | Iand | Ior | Ixor | Ilsl | Ilsr | Iasr
| Ipopcnt | Iclz _ | Ictz _ | Icheckbound))
| Iop(Iintop_imm((Iadd | Isub | Imul | Imulh _ | Iand | Ior | Ixor | Ilsl
| Ilsr | Iasr | Ipopcnt | Iclz _ | Ictz _
| Icheckbound),_))
| Iop(Iintop_atomic _)
| Iop(Istore((Byte_unsigned | Byte_signed | Sixteen_unsigned | Sixteen_signed
| Thirtytwo_unsigned | Thirtytwo_signed | Word_int | Word_val
| Double | Onetwentyeight ), _, _))
| Iop(Imove | Ispill | Ireload | Inegf | Iabsf | Iaddf | Isubf | Imulf | Idivf
| Icompf _
| Icsel _
| Ifloatofint | Iintoffloat
| Ivalueofint | Iintofvalue
| Iconst_int _ | Iconst_float _ | Iconst_symbol _ | Iconst_vec128 _
| Itailcall_ind | Itailcall_imm _ | Istackoffset _ | Iload (_, _, _)
| Iname_for_debugger _ | Iprobe _| Iprobe_is_enabled _ | Iopaque)
| Iend | Ireturn _ | Iifthenelse (_, _, _) | Icatch (_, _, _, _)
| Iexit _ | Iraise _
| Iop(Ibeginregion | Iendregion)
->
if fp then
(* prevent any use of the frame pointer ! *)
[| rbp |]
else
[||]
let destroyed_at_raise = all_phys_regs
let destroyed_at_reloadretaddr = [| |]
(* note: keep this function in sync with `destroyed_at_oper` above. *)
let destroyed_at_basic (basic : Cfg_intf.S.basic) =
match basic with
| Reloadretaddr ->
destroyed_at_reloadretaddr
| Pushtrap _ ->
destroyed_at_pushtrap
| Op (Intop (Idiv | Imod)) | Op (Intop_imm ((Idiv | Imod), _)) ->
[| rax; rdx |]
| Op(Store(Single, _, _)) ->
destroy_xmm15 ()
| Op(Intop(Imulh _ | Icomp _) | Intop_imm((Icomp _), _)) ->
[| rax |]
| Op (Specific (Irdtsc | Irdpmc)) ->
[| rax; rdx |]
| Op (Intop Icheckbound | Intop_imm (Icheckbound, _)) ->
assert false
| Op (Move | Spill | Reload
| Const_int _ | Const_float _ | Const_symbol _ | Const_vec128 _
| Stackoffset _
| Load _ | Store ((Byte_unsigned | Byte_signed | Sixteen_unsigned
| Sixteen_signed | Thirtytwo_unsigned
| Thirtytwo_signed | Word_int | Word_val
| Double | Onetwentyeight ), _, _)
| Intop (Iadd | Isub | Imul | Iand | Ior | Ixor | Ilsl | Ilsr
| Iasr | Ipopcnt | Iclz _ | Ictz _)
| Intop_imm ((Iadd | Isub | Imul | Imulh _ | Iand | Ior | Ixor
| Ilsl | Ilsr | Iasr | Ipopcnt | Iclz _ | Ictz _),_)
| Intop_atomic _
| Negf | Absf | Addf | Subf | Mulf | Divf
| Compf _
| Csel _
| Floatofint | Intoffloat
| Valueofint | Intofvalue
| Probe_is_enabled _
| Opaque
| Begin_region
| End_region
| Specific (Ilea _ | Istore_int _ | Ioffset_loc _
| Ifloatarithmem _ | Ibswap _ | Isqrtf
| Ifloatsqrtf _ | Ifloat_iround
| Ifloat_round _ | Ifloat_min | Ifloat_max
| Isextend32 | Izextend32 | Icrc32q | Ipause
| Iprefetch _ | Ilfence | Isfence | Imfence)
| Name_for_debugger _)
| Poptrap | Prologue ->
if fp then [| rbp |] else [||]
(* note: keep this function in sync with `destroyed_at_oper` above,
and `is_destruction_point` below. *)
let destroyed_at_terminator (terminator : Cfg_intf.S.terminator) =
match terminator with
| Never -> assert false
| Prim {op = Alloc _; _} ->
destroyed_at_alloc_or_poll
| Always _ | Parity_test _ | Truth_test _ | Float_test _ | Int_test _
| Return | Raise _ | Tailcall_self _ | Tailcall_func _
| Prim {op = Checkbound _ | Probe _; _}
->
if fp then [| rbp |] else [||]
| Switch _ ->
[| rax; rdx |]
| Call_no_return { func_symbol = _; alloc; ty_res = _; ty_args = _; }
| Prim {op = External { func_symbol = _; alloc; ty_res = _; ty_args = _; }; _} ->
if alloc then all_phys_regs () else destroyed_at_c_call ()
| Call {op = Indirect | Direct _; _} ->
all_phys_regs ()
| Specific_can_raise { op = (Ilea _ | Ibswap _ | Isqrtf | Isextend32 | Izextend32
| Ifloatarithmem _ | Ifloatsqrtf _
| Ifloat_iround | Ifloat_round _ | Ifloat_min | Ifloat_max
| Icrc32q | Irdtsc | Irdpmc | Ipause
| Ilfence | Isfence | Imfence
| Istore_int (_, _, _) | Ioffset_loc (_, _)
| Iprefetch _); _ } ->
Misc.fatal_error "no instructions specific for this architecture can raise"
| Poll_and_jump _ -> destroyed_at_alloc_or_poll
(* CR-soon xclerc for xclerc: consider having more destruction points.
We current return `true` when `destroyed_at_terminator` returns
`all_phys_regs` (which means we are conservative in the sense we will
spill registers that would spill anyway); we could also return `true`
when `destroyed_at_terminator` returns `destroyed_at_c_call` for instance. *)
(* note: keep this function in sync with `destroyed_at_terminator` above. *)
let is_destruction_point (terminator : Cfg_intf.S.terminator) =
match terminator with
| Never -> assert false
| Prim {op = Alloc _; _} ->
false
| Always _ | Parity_test _ | Truth_test _ | Float_test _ | Int_test _
| Return | Raise _ | Tailcall_self _ | Tailcall_func _
| Prim {op = Checkbound _ | Probe _; _} ->
false
| Switch _ ->
false
| Call_no_return { func_symbol = _; alloc; ty_res = _; ty_args = _; }
| Prim {op = External { func_symbol = _; alloc; ty_res = _; ty_args = _; }; _} ->
if alloc then true else false
| Call {op = Indirect | Direct _; _} ->
true
| Specific_can_raise { op = (Ilea _ | Ibswap _ | Isqrtf | Isextend32 | Izextend32
| Ifloatarithmem _ | Ifloatsqrtf _
| Ifloat_iround | Ifloat_round _ | Ifloat_min | Ifloat_max
| Icrc32q | Irdtsc | Irdpmc | Ipause
| Ilfence | Isfence | Imfence
| Istore_int (_, _, _) | Ioffset_loc (_, _)
| Iprefetch _); _ } ->
Misc.fatal_error "no instructions specific for this architecture can raise"
| Poll_and_jump _ -> false
(* Maximal register pressure *)
let safe_register_pressure = function
Iextcall _ -> if win64 then if fp then 7 else 8 else 0
| Ialloc _ | Ipoll _ | Imove | Ispill | Ireload
| Inegf | Iabsf | Iaddf | Isubf | Imulf | Idivf
| Ifloatofint | Iintoffloat | Ivalueofint | Iintofvalue
| Icompf _
| Icsel _
| Iconst_int _ | Iconst_float _ | Iconst_symbol _ | Iconst_vec128 _
| Icall_ind | Icall_imm _ | Itailcall_ind | Itailcall_imm _
| Istackoffset _ | Iload (_, _, _) | Istore (_, _, _)
| Iintop _ | Iintop_imm (_, _) | Iintop_atomic _
| Ispecific _ | Iname_for_debugger _
| Iprobe _ | Iprobe_is_enabled _ | Iopaque
| Ibeginregion | Iendregion
-> if fp then 10 else 11
let max_register_pressure =
let consumes ~int ~float =
if fp
then [| 12 - int; 16 - float |]
else [| 13 - int; 16 - float |]
in function
Iextcall _ ->
if win64
then consumes ~int:5 ~float:6
else consumes ~int:9 ~float:16
| Iintop(Idiv | Imod) | Iintop_imm((Idiv | Imod), _) ->
consumes ~int:2 ~float:0
| Ialloc _ | Ipoll _ ->
consumes ~int:(1 + num_destroyed_by_plt_stub) ~float:0
| Iintop(Icomp _) | Iintop_imm((Icomp _), _) ->
consumes ~int:1 ~float:0
| Istore(Single, _, _) | Icompf _ ->
consumes ~int:0 ~float:1
| Iintop(Iadd | Isub | Imul | Imulh _ | Iand | Ior | Ixor | Ilsl | Ilsr | Iasr
| Ipopcnt|Iclz _| Ictz _|Icheckbound)
| Iintop_imm((Iadd | Isub | Imul | Imulh _ | Iand | Ior | Ixor | Ilsl | Ilsr
| Iasr | Ipopcnt | Iclz _| Ictz _|Icheckbound), _)
| Iintop_atomic _
| Istore((Byte_unsigned | Byte_signed | Sixteen_unsigned | Sixteen_signed
| Thirtytwo_unsigned | Thirtytwo_signed | Word_int | Word_val
| Double | Onetwentyeight ),
_, _)
| Imove | Ispill | Ireload | Inegf | Iabsf | Iaddf | Isubf | Imulf | Idivf
| Icsel _
| Ifloatofint | Iintoffloat | Ivalueofint | Iintofvalue
| Iconst_int _ | Iconst_float _ | Iconst_symbol _ | Iconst_vec128 _
| Icall_ind | Icall_imm _ | Itailcall_ind | Itailcall_imm _
| Istackoffset _ | Iload (_, _, _)
| Ispecific(Ilea _ | Isextend32 | Izextend32 | Iprefetch _ | Ipause
| Irdtsc | Irdpmc | Icrc32q | Istore_int (_, _, _)
| Ilfence | Isfence | Imfence
| Ifloat_round _
| Ifloat_iround | Ifloat_min | Ifloat_max
| Ioffset_loc (_, _) | Ifloatarithmem (_, _)
| Ibswap _ | Ifloatsqrtf _ | Isqrtf)
| Iname_for_debugger _ | Iprobe _ | Iprobe_is_enabled _ | Iopaque
| Ibeginregion | Iendregion
-> consumes ~int:0 ~float:0
(* Layout of the stack frame *)
let frame_required ~fun_contains_calls ~fun_num_stack_slots =
fp || fun_contains_calls ||
fun_num_stack_slots.(0) > 0 ||
fun_num_stack_slots.(1) > 0 ||
fun_num_stack_slots.(2) > 0
let prologue_required ~fun_contains_calls ~fun_num_stack_slots =
frame_required ~fun_contains_calls ~fun_num_stack_slots
(* Calling the assembler *)
let assemble_file infile outfile =
X86_proc.assemble_file infile outfile
let init () =
if fp then begin
num_available_registers.(0) <- 12
end else
num_available_registers.(0) <- 13
(* Precolored_regs is not always the same as [all_phys_regs], as some physical registers
may not be allocatable (e.g. rbp when frame pointers are enabled). *)
let precolored_regs () =
let phys_regs = Reg.set_of_array (all_phys_regs ()) in
if fp then Reg.Set.remove rbp phys_regs else phys_regs
let operation_supported = function
| Cpopcnt -> !popcnt_support
| Cprefetch _ | Catomic _
| Capply _ | Cextcall _ | Cload _ | Calloc _ | Cstore _
| Caddi | Csubi | Cmuli | Cmulhi _ | Cdivi | Cmodi
| Cand | Cor | Cxor | Clsl | Clsr | Casr
| Ccsel _
| Cbswap _
| Cclz _ | Cctz _
| Ccmpi _ | Caddv | Cadda | Ccmpa _
| Cnegf | Cabsf | Caddf | Csubf | Cmulf | Cdivf
| Cfloatofint | Cintoffloat
| Cvalueofint | Cintofvalue
| Ccmpf _
| Craise _
| Ccheckbound
| Cprobe _ | Cprobe_is_enabled _ | Copaque | Cbeginregion | Cendregion
-> true
let trap_size_in_bytes = 16