Module Stacklayout



Machine- and ABI-dependent layout information for activation records.

Require Import Coqlib.
Require Import Bounds.

The general shape of activation records is as follows, from bottom (lowest offsets) to top: To facilitate some of the proofs, the Cminor stack-allocated data starts at offset 0; the preceding areas in the activation record therefore have negative offsets. This part (with negative offsets) is called the ``frame'', by opposition with the ``Cminor stack data'' which is the part with positive offsets. The frame_env compilation environment records the positions of the boundaries between areas in the frame part.

Definition fe_retaddrsize : Z := 4.

Record frame_env : Type := mk_frame_env {
  fe_size: Z;
  fe_ofs_int_local: Z;
  fe_ofs_int_callee_save: Z;
  fe_num_int_callee_save: Z;
  fe_ofs_float_local: Z;
  fe_ofs_float_callee_save: Z;
  fe_num_float_callee_save: Z
}.

Computation of the frame environment from the bounds of the current function.

Definition make_env (b: bounds) :=
  let oil := 4 * b.(bound_outgoing) in
  let oics := oil + 4 * b.(bound_int_local) in
  let oendi := oics + 4 * b.(bound_int_callee_save) in
  let ofl := align oendi 8 in
  let ofcs := ofl + 8 * b.(bound_float_local) in
  let sz :=
    ofcs + 8 * b.(bound_float_callee_save) + 4 in
  mk_frame_env sz
                  oil oics b.(bound_int_callee_save)
                  ofl ofcs b.(bound_float_callee_save).

Remark align_float_part:
  forall b,
  4 * bound_outgoing b + 4 * bound_int_local b + 4 * bound_int_callee_save b <=
  align (4 * bound_outgoing b + 4 * bound_int_local b + 4 * bound_int_callee_save b) 8.
Proof.
  intros. apply align_le. omega.
Qed.

Definition thread_stack_size := 8388608.