1 | |
---|
2 | include "Clight/label.ma". |
---|
3 | include "Clight/SimplifyCasts.ma". |
---|
4 | include "Clight/switchRemoval.ma". |
---|
5 | include "Clight/toCminor.ma". |
---|
6 | include "Cminor/initialisation.ma". |
---|
7 | include "Cminor/toRTLabs.ma". |
---|
8 | |
---|
9 | definition front_end : clight_program → res (clight_program × RTLabs_program) ≝ |
---|
10 | λp. |
---|
11 | let p' ≝ clight_label p in |
---|
12 | let p ≝ simplify_program p' in |
---|
13 | let p ≝ program_switch_removal p in |
---|
14 | ! p ← clight_to_cminor p; |
---|
15 | ! p ← cminor_to_rtlabs p; |
---|
16 | return 〈p',p〉. |
---|
17 | |
---|
18 | include "RTLabs/RTLabsToRTL.ma". |
---|
19 | include "RTL/RTLToERTL.ma". |
---|
20 | include "ERTL/ERTLToLTL.ma". |
---|
21 | include "LTL/LTLToLIN.ma". |
---|
22 | include "LIN/LINToASM.ma". |
---|
23 | |
---|
24 | axiom the_fixpoint : fixpoint. |
---|
25 | axiom build : ∀valuation. coloured_graph valuation. |
---|
26 | |
---|
27 | definition back_end : RTLabs_program → pseudo_assembly_program ≝ |
---|
28 | λp. |
---|
29 | let p ≝ rtlabs_to_rtl p in |
---|
30 | let p ≝ rtl_to_ertl p in |
---|
31 | let p ≝ ertl_to_ltl p in (* TODO: abstract over colouring *) |
---|
32 | let p ≝ ltl_to_lin p in |
---|
33 | lin_to_asm p. |
---|
34 | |
---|
35 | include "ASM/Assembly.ma". |
---|
36 | |
---|
37 | include "ASM/Policy.ma". |
---|
38 | |
---|
39 | axiom Jump_expansion_failed : String. |
---|
40 | |
---|
41 | include "ASM/ASMCostsSplit.ma". |
---|
42 | |
---|
43 | definition assembler : pseudo_assembly_program → res (object_code × costlabel_map) ≝ |
---|
44 | λp. |
---|
45 | let 〈preamble, list_instr〉 ≝ p in |
---|
46 | (* TODO: fail if p is too large. *) |
---|
47 | let p' ≝ 〈preamble, list_instr〉 in |
---|
48 | ! sigma_pol ← opt_to_res ? (msg Jump_expansion_failed) (jump_expansion' p'); |
---|
49 | let sigma ≝ λppc. \fst (sigma_pol ppc) in |
---|
50 | let pol ≝ λppc. \snd (sigma_pol ppc) in |
---|
51 | OK ? (assembly p sigma pol). |
---|
52 | cases daemon |
---|
53 | qed. |
---|
54 | |
---|
55 | include "RTLabs/semantics.ma". |
---|
56 | |
---|
57 | axiom RTLabs_abstract_status : genv → abstract_status. |
---|
58 | |
---|
59 | include "joint/semantics.ma". |
---|
60 | axiom joint_abstract_status : |
---|
61 | ∀globals.∀p:params globals.genv globals p → abstract_status. |
---|
62 | |
---|
63 | include "common/StructuredTraces.ma". |
---|
64 | include "ASM/Fetch.ma". (* For load_code_memory only *) |
---|
65 | |
---|
66 | definition in_clight_program : costlabel → Prop ≝ λ_.True. |
---|
67 | |
---|
68 | definition lift_cost_map_back_to_front : |
---|
69 | ∀code_memory, lbls. |
---|
70 | (∀l. (∃pc.as_label_of_pc (ASM_abstract_status code_memory lbls) pc = Some … l) + |
---|
71 | ¬(∃pc.as_label_of_pc (ASM_abstract_status code_memory lbls) pc = Some … l)) → |
---|
72 | as_cost_map (ASM_abstract_status code_memory lbls) → |
---|
73 | (Σl : costlabel.in_clight_program l) → ℕ ≝ λcode_memory,lbls,dec,k,l_sig. |
---|
74 | match dec l_sig with |
---|
75 | [ inl prf ⇒ k «l_sig, prf» |
---|
76 | | inr _ ⇒ 0 (* labels not present in out code get 0 *) |
---|
77 | ]. |
---|
78 | |
---|
79 | definition compile : clight_program → |
---|
80 | res (object_code × costlabel_map × clight_program × ((Σl.in_clight_program l) → ℕ)) ≝ |
---|
81 | λp. |
---|
82 | ! 〈p',p〉 ← front_end p; |
---|
83 | let p ≝ back_end p in |
---|
84 | ! p ← assembler p; |
---|
85 | let k ≝ ASM_cost_map p ? in |
---|
86 | let k' ≝ lift_cost_map_back_to_front |
---|
87 | (load_code_memory (\fst p)) |
---|
88 | (\snd p) |
---|
89 | ? k |
---|
90 | in |
---|
91 | return 〈p, p', k'〉. |
---|
92 | cases daemon |
---|
93 | qed. |
---|
94 | |
---|