1 | (* Front-end related includes *) |
---|
2 | include "Clight/label.ma". |
---|
3 | include "Clight/SimplifyCasts.ma". |
---|
4 | include "Clight/switchRemoval.ma". |
---|
5 | include "Clight/toCminor.ma". |
---|
6 | include "Cminor/toRTLabs.ma". |
---|
7 | include "RTLabs/CostCheck.ma". |
---|
8 | include "RTLabs/CostInj.ma". |
---|
9 | |
---|
10 | (* Back-end related includes *) |
---|
11 | include "RTLabs/RTLabsToRTL.ma". |
---|
12 | include "RTL/RTLToERTL.ma". |
---|
13 | include "ERTL/ERTLToERTLptr.ma". |
---|
14 | include "ERTLptr/ERTLptrToLTL.ma". |
---|
15 | include "LTL/LTLToLIN.ma". |
---|
16 | include "LIN/LINToASM.ma". |
---|
17 | |
---|
18 | (* List of all passes whose outputs can be observed *) |
---|
19 | inductive pass : Type[0] ≝ |
---|
20 | clight_pass: pass |
---|
21 | | clight_switch_removed_pass: pass |
---|
22 | | clight_label_pass: pass |
---|
23 | | clight_simplified_pass: pass |
---|
24 | | cminor_pass: pass |
---|
25 | | rtlabs_pass: pass |
---|
26 | | rtl_separate_pass: pass |
---|
27 | | rtl_uniq_pass: pass |
---|
28 | | ertl_pass: pass |
---|
29 | | ertlptr_pass: pass |
---|
30 | | ltl_pass: pass |
---|
31 | | lin_pass: pass. |
---|
32 | |
---|
33 | definition syntax_of_pass : pass → Type[0] ≝ |
---|
34 | λpass. |
---|
35 | match pass with |
---|
36 | [ clight_pass ⇒ clight_program |
---|
37 | | clight_switch_removed_pass ⇒ clight_program |
---|
38 | | clight_label_pass ⇒ clight_program |
---|
39 | | clight_simplified_pass ⇒ clight_program |
---|
40 | | cminor_pass ⇒ Cminor_program |
---|
41 | | rtlabs_pass ⇒ RTLabs_program |
---|
42 | | rtl_separate_pass ⇒ rtl_program |
---|
43 | | rtl_uniq_pass ⇒ rtl_program |
---|
44 | | ertl_pass ⇒ ertl_program |
---|
45 | | ertlptr_pass ⇒ ertlptr_program |
---|
46 | | ltl_pass ⇒ ltl_program |
---|
47 | | lin_pass ⇒ lin_program ]. |
---|
48 | |
---|
49 | definition observe_pass ≝ ∀pass. syntax_of_pass pass → unit. |
---|
50 | |
---|
51 | (* The compiler front-end *) |
---|
52 | definition front_end : |
---|
53 | observe_pass → clight_program → res (costlabel × clight_program × RTLabs_program) ≝ |
---|
54 | λobserve,p. |
---|
55 | let i ≝ observe clight_pass p in |
---|
56 | let p ≝ program_switch_removal p in |
---|
57 | let i ≝ observe clight_switch_removed_pass p in |
---|
58 | let 〈p',init_cost〉 ≝ clight_label p in |
---|
59 | let i ≝ observe clight_label_pass p' in |
---|
60 | let p ≝ simplify_program p' in |
---|
61 | let i ≝ observe clight_simplified_pass p in |
---|
62 | ! p ← clight_to_cminor p; |
---|
63 | let i ≝ observe cminor_pass p in |
---|
64 | let p ≝ cminor_to_rtlabs init_cost p in |
---|
65 | let i ≝ observe rtlabs_pass p in |
---|
66 | if check_cost_program p then |
---|
67 | if check_program_cost_injectivity p then |
---|
68 | (return 〈init_cost,p',p〉) |
---|
69 | else |
---|
70 | (Error ? (msg RepeatedCostLabel)) |
---|
71 | else |
---|
72 | (Error ? (msg BadCostLabelling)). |
---|
73 | |
---|
74 | (* The compiler back-end *) |
---|
75 | axiom compute_fixpoint : fixpoint_computer. |
---|
76 | axiom colour_graph : coloured_graph_computer. |
---|
77 | |
---|
78 | definition back_end : |
---|
79 | observe_pass → RTLabs_program → |
---|
80 | res (pseudo_assembly_program × stack_cost_model × nat) ≝ |
---|
81 | λobserve,p. |
---|
82 | let p ≝ rtlabs_to_rtl p in |
---|
83 | let i ≝ observe rtl_separate_pass p in |
---|
84 | let i ≝ observe rtl_uniq_pass p in |
---|
85 | let p ≝ rtl_to_ertl p in |
---|
86 | let i ≝ observe ertl_pass p in |
---|
87 | let p ≝ ertl_to_ertlptr p in |
---|
88 | let i ≝ observe ertlptr_pass p in |
---|
89 | let 〈p,stack_cost,max_stack〉 ≝ ertlptr_to_ltl compute_fixpoint colour_graph p in (* TODO: abstract over colouring *) |
---|
90 | let i ≝ observe ltl_pass p in |
---|
91 | let p ≝ ltl_to_lin p in |
---|
92 | let i ≝ observe lin_pass p in |
---|
93 | ! p ← opt_to_res ? (msg AssemblyTooLarge) (lin_to_asm p) ; |
---|
94 | return 〈p,stack_cost,max_stack〉. |
---|
95 | |
---|
96 | (* The assembler *) |
---|
97 | include "ASM/Policy.ma". |
---|
98 | |
---|
99 | definition assembler : pseudo_assembly_program → res labelled_object_code ≝ |
---|
100 | λp. |
---|
101 | ! sigma_pol ← opt_to_res ? (msg Jump_expansion_failed) (jump_expansion' p); |
---|
102 | let sigma ≝ λppc. \fst sigma_pol ppc in |
---|
103 | let pol ≝ λppc. \snd sigma_pol ppc in |
---|
104 | OK ? (assembly p sigma pol). |
---|
105 | |
---|
106 | (* Cost lifting *) |
---|
107 | include "ASM/ASMCosts.ma". |
---|
108 | |
---|
109 | definition lift_cost_map_back_to_front : |
---|
110 | ∀clight, code_memory, lbls. |
---|
111 | let abstat ≝ ASM_abstract_status code_memory lbls in |
---|
112 | as_cost_map abstat → clight_cost_map clight ≝ |
---|
113 | λclight,code_memory,lbls,k,asm_cost_map. |
---|
114 | lift_sigma_map_id … 0 (* labels not present in out code get 0 *) |
---|
115 | (strong_decidable_in_codomain …) k asm_cost_map. |
---|
116 | |
---|
117 | (* Cost model computation *) |
---|
118 | include "ASM/ASMCostsSplit.ma". |
---|
119 | |
---|
120 | record compiler_output : Type[0] ≝ |
---|
121 | { c_labelled_object_code: labelled_object_code |
---|
122 | ; c_stack_cost: stack_cost_model |
---|
123 | ; c_max_stack: nat |
---|
124 | ; c_labelled_clight: clight_program |
---|
125 | ; c_clight_cost_map: clight_cost_map c_labelled_clight |
---|
126 | }. |
---|
127 | |
---|
128 | definition compile : observe_pass → clight_program → res compiler_output ≝ |
---|
129 | λobserve,p. |
---|
130 | ! 〈init_cost,p',p〉 ← front_end observe p; |
---|
131 | ! 〈p,stack_cost,max_stack〉 ← back_end observe p; |
---|
132 | ! p ← assembler p; |
---|
133 | let k ≝ ASM_cost_map p in |
---|
134 | let k' ≝ |
---|
135 | lift_cost_map_back_to_front p' (load_code_memory (oc p)) (costlabels p) k in |
---|
136 | return mk_compiler_output p stack_cost max_stack p' k'. |
---|