1 //! Intermediate representation of a function.
2 //!
3 //! The `Function` struct defined in this module owns all of its basic blocks and
4 //! instructions.
5 
6 use crate::entity::{PrimaryMap, SecondaryMap};
7 use crate::ir::{
8     self, Block, DataFlowGraph, DynamicStackSlot, DynamicStackSlotData, DynamicStackSlots,
9     DynamicType, ExtFuncData, FuncRef, GlobalValue, GlobalValueData, Inst, JumpTable,
10     JumpTableData, Layout, Opcode, SigRef, Signature, SourceLocs, StackSlot, StackSlotData,
11     StackSlots, Table, TableData, Type,
12 };
13 use crate::isa::CallConv;
14 use crate::value_label::ValueLabelsRanges;
15 use crate::write::write_function;
16 use crate::HashMap;
17 #[cfg(feature = "enable-serde")]
18 use alloc::string::String;
19 use core::fmt;
20 
21 #[cfg(feature = "enable-serde")]
22 use serde::de::{Deserializer, Error};
23 #[cfg(feature = "enable-serde")]
24 use serde::ser::Serializer;
25 #[cfg(feature = "enable-serde")]
26 use serde::{Deserialize, Serialize};
27 
28 use super::entities::UserExternalNameRef;
29 use super::extname::UserFuncName;
30 use super::{RelSourceLoc, SourceLoc, UserExternalName};
31 
32 /// A version marker used to ensure that serialized clif ir is never deserialized with a
33 /// different version of Cranelift.
34 #[derive(Copy, Clone, Debug, PartialEq, Hash)]
35 pub struct VersionMarker;
36 
37 #[cfg(feature = "enable-serde")]
38 impl Serialize for VersionMarker {
39     fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
40     where
41         S: Serializer,
42     {
43         crate::VERSION.serialize(serializer)
44     }
45 }
46 
47 #[cfg(feature = "enable-serde")]
48 impl<'de> Deserialize<'de> for VersionMarker {
49     fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
50     where
51         D: Deserializer<'de>,
52     {
53         let version = String::deserialize(deserializer)?;
54         if version != crate::VERSION {
55             return Err(D::Error::custom(&format!(
56                 "Expected a clif ir function for version {}, found one for version {}",
57                 crate::VERSION,
58                 version,
59             )));
60         }
61         Ok(VersionMarker)
62     }
63 }
64 
65 /// Function parameters used when creating this function, and that will become applied after
66 /// compilation to materialize the final `CompiledCode`.
67 #[derive(Clone, PartialEq)]
68 #[cfg_attr(feature = "enable-serde", derive(Serialize, Deserialize))]
69 pub struct FunctionParameters {
70     /// The first `SourceLoc` appearing in the function, serving as a base for every relative
71     /// source loc in the function.
72     base_srcloc: Option<SourceLoc>,
73 
74     /// External user-defined function references.
75     user_named_funcs: PrimaryMap<UserExternalNameRef, UserExternalName>,
76 
77     /// Inverted mapping of `user_named_funcs`, to deduplicate internally.
78     user_ext_name_to_ref: HashMap<UserExternalName, UserExternalNameRef>,
79 }
80 
81 impl FunctionParameters {
82     /// Creates a new `FunctionParameters` with the given name.
83     pub fn new() -> Self {
84         Self {
85             base_srcloc: None,
86             user_named_funcs: Default::default(),
87             user_ext_name_to_ref: Default::default(),
88         }
89     }
90 
91     /// Returns the base `SourceLoc`.
92     ///
93     /// If it was never explicitly set with `ensure_base_srcloc`, will return an invalid
94     /// `SourceLoc`.
95     pub fn base_srcloc(&self) -> SourceLoc {
96         self.base_srcloc.unwrap_or_default()
97     }
98 
99     /// Sets the base `SourceLoc`, if not set yet, and returns the base value.
100     pub fn ensure_base_srcloc(&mut self, srcloc: SourceLoc) -> SourceLoc {
101         match self.base_srcloc {
102             Some(val) => val,
103             None => {
104                 self.base_srcloc = Some(srcloc);
105                 srcloc
106             }
107         }
108     }
109 
110     /// Retrieve a `UserExternalNameRef` for the given name, or add a new one.
111     ///
112     /// This method internally deduplicates same `UserExternalName` so they map to the same
113     /// reference.
114     pub fn ensure_user_func_name(&mut self, name: UserExternalName) -> UserExternalNameRef {
115         if let Some(reff) = self.user_ext_name_to_ref.get(&name) {
116             *reff
117         } else {
118             let reff = self.user_named_funcs.push(name.clone());
119             self.user_ext_name_to_ref.insert(name, reff);
120             reff
121         }
122     }
123 
124     /// Resets an already existing user function name to a new value.
125     pub fn reset_user_func_name(&mut self, index: UserExternalNameRef, name: UserExternalName) {
126         if let Some(prev_name) = self.user_named_funcs.get_mut(index) {
127             self.user_ext_name_to_ref.remove(prev_name);
128             *prev_name = name.clone();
129             self.user_ext_name_to_ref.insert(name, index);
130         }
131     }
132 
133     /// Returns the internal mapping of `UserExternalNameRef` to `UserExternalName`.
134     pub fn user_named_funcs(&self) -> &PrimaryMap<UserExternalNameRef, UserExternalName> {
135         &self.user_named_funcs
136     }
137 
138     fn clear(&mut self) {
139         self.base_srcloc = None;
140         self.user_named_funcs.clear();
141         self.user_ext_name_to_ref.clear();
142     }
143 }
144 
145 /// Function fields needed when compiling a function.
146 ///
147 /// Additionally, these fields can be the same for two functions that would be compiled the same
148 /// way, and finalized by applying `FunctionParameters` onto their `CompiledCodeStencil`.
149 #[derive(Clone, PartialEq, Hash)]
150 #[cfg_attr(feature = "enable-serde", derive(Serialize, Deserialize))]
151 pub struct FunctionStencil {
152     /// A version marker used to ensure that serialized clif ir is never deserialized with a
153     /// different version of Cranelift.
154     // Note: This must be the first field to ensure that Serde will deserialize it before
155     // attempting to deserialize other fields that are potentially changed between versions.
156     pub version_marker: VersionMarker,
157 
158     /// Signature of this function.
159     pub signature: Signature,
160 
161     /// Sized stack slots allocated in this function.
162     pub sized_stack_slots: StackSlots,
163 
164     /// Dynamic stack slots allocated in this function.
165     pub dynamic_stack_slots: DynamicStackSlots,
166 
167     /// Global values referenced.
168     pub global_values: PrimaryMap<ir::GlobalValue, ir::GlobalValueData>,
169 
170     /// Tables referenced.
171     pub tables: PrimaryMap<ir::Table, ir::TableData>,
172 
173     /// Data flow graph containing the primary definition of all instructions, blocks and values.
174     pub dfg: DataFlowGraph,
175 
176     /// Layout of blocks and instructions in the function body.
177     pub layout: Layout,
178 
179     /// Source locations.
180     ///
181     /// Track the original source location for each instruction. The source locations are not
182     /// interpreted by Cranelift, only preserved.
183     pub srclocs: SourceLocs,
184 
185     /// An optional global value which represents an expression evaluating to
186     /// the stack limit for this function. This `GlobalValue` will be
187     /// interpreted in the prologue, if necessary, to insert a stack check to
188     /// ensure that a trap happens if the stack pointer goes below the
189     /// threshold specified here.
190     pub stack_limit: Option<ir::GlobalValue>,
191 }
192 
193 impl FunctionStencil {
194     fn clear(&mut self) {
195         self.signature.clear(CallConv::Fast);
196         self.sized_stack_slots.clear();
197         self.dynamic_stack_slots.clear();
198         self.global_values.clear();
199         self.tables.clear();
200         self.dfg.clear();
201         self.layout.clear();
202         self.srclocs.clear();
203         self.stack_limit = None;
204     }
205 
206     /// Creates a jump table in the function, to be used by `br_table` instructions.
207     pub fn create_jump_table(&mut self, data: JumpTableData) -> JumpTable {
208         self.dfg.jump_tables.push(data)
209     }
210 
211     /// Creates a sized stack slot in the function, to be used by `stack_load`, `stack_store`
212     /// and `stack_addr` instructions.
213     pub fn create_sized_stack_slot(&mut self, data: StackSlotData) -> StackSlot {
214         self.sized_stack_slots.push(data)
215     }
216 
217     /// Creates a dynamic stack slot in the function, to be used by `dynamic_stack_load`,
218     /// `dynamic_stack_store` and `dynamic_stack_addr` instructions.
219     pub fn create_dynamic_stack_slot(&mut self, data: DynamicStackSlotData) -> DynamicStackSlot {
220         self.dynamic_stack_slots.push(data)
221     }
222 
223     /// Adds a signature which can later be used to declare an external function import.
224     pub fn import_signature(&mut self, signature: Signature) -> SigRef {
225         self.dfg.signatures.push(signature)
226     }
227 
228     /// Declares a global value accessible to the function.
229     pub fn create_global_value(&mut self, data: GlobalValueData) -> GlobalValue {
230         self.global_values.push(data)
231     }
232 
233     /// Find the global dyn_scale value associated with given DynamicType
234     pub fn get_dyn_scale(&self, ty: DynamicType) -> GlobalValue {
235         self.dfg.dynamic_types.get(ty).unwrap().dynamic_scale
236     }
237 
238     /// Find the global dyn_scale for the given stack slot.
239     pub fn get_dynamic_slot_scale(&self, dss: DynamicStackSlot) -> GlobalValue {
240         let dyn_ty = self.dynamic_stack_slots.get(dss).unwrap().dyn_ty;
241         self.get_dyn_scale(dyn_ty)
242     }
243 
244     /// Get a concrete `Type` from a user defined `DynamicType`.
245     pub fn get_concrete_dynamic_ty(&self, ty: DynamicType) -> Option<Type> {
246         self.dfg
247             .dynamic_types
248             .get(ty)
249             .unwrap_or_else(|| panic!("Undeclared dynamic vector type: {}", ty))
250             .concrete()
251     }
252 
253     /// Declares a table accessible to the function.
254     pub fn create_table(&mut self, data: TableData) -> Table {
255         self.tables.push(data)
256     }
257 
258     /// Find a presumed unique special-purpose function parameter value.
259     ///
260     /// Returns the value of the last `purpose` parameter, or `None` if no such parameter exists.
261     pub fn special_param(&self, purpose: ir::ArgumentPurpose) -> Option<ir::Value> {
262         let entry = self.layout.entry_block().expect("Function is empty");
263         self.signature
264             .special_param_index(purpose)
265             .map(|i| self.dfg.block_params(entry)[i])
266     }
267 
268     /// Starts collection of debug information.
269     pub fn collect_debug_info(&mut self) {
270         self.dfg.collect_debug_info();
271     }
272 
273     /// Rewrite the branch destination to `new_dest` if the destination matches `old_dest`.
274     /// Does nothing if called with a non-jump or non-branch instruction.
275     pub fn rewrite_branch_destination(&mut self, inst: Inst, old_dest: Block, new_dest: Block) {
276         for dest in self.dfg.insts[inst].branch_destination_mut(&mut self.dfg.jump_tables) {
277             if dest.block(&self.dfg.value_lists) == old_dest {
278                 dest.set_block(new_dest, &mut self.dfg.value_lists)
279             }
280         }
281     }
282 
283     /// Checks that the specified block can be encoded as a basic block.
284     ///
285     /// On error, returns the first invalid instruction and an error message.
286     pub fn is_block_basic(&self, block: Block) -> Result<(), (Inst, &'static str)> {
287         let dfg = &self.dfg;
288         let inst_iter = self.layout.block_insts(block);
289 
290         // Ignore all instructions prior to the first branch.
291         let mut inst_iter = inst_iter.skip_while(|&inst| !dfg.insts[inst].opcode().is_branch());
292 
293         // A conditional branch is permitted in a basic block only when followed
294         // by a terminal jump instruction.
295         if let Some(_branch) = inst_iter.next() {
296             if let Some(next) = inst_iter.next() {
297                 match dfg.insts[next].opcode() {
298                     Opcode::Jump => (),
299                     _ => return Err((next, "post-branch instruction not jump")),
300                 }
301             }
302         }
303 
304         Ok(())
305     }
306 
307     /// Returns true if the function is function that doesn't call any other functions. This is not
308     /// to be confused with a "leaf function" in Windows terminology.
309     pub fn is_leaf(&self) -> bool {
310         // Conservative result: if there's at least one function signature referenced in this
311         // function, assume it is not a leaf.
312         self.dfg.signatures.is_empty()
313     }
314 
315     /// Replace the `dst` instruction's data with the `src` instruction's data
316     /// and then remove `src`.
317     ///
318     /// `src` and its result values should not be used at all, as any uses would
319     /// be left dangling after calling this method.
320     ///
321     /// `src` and `dst` must have the same number of resulting values, and
322     /// `src`'s i^th value must have the same type as `dst`'s i^th value.
323     pub fn transplant_inst(&mut self, dst: Inst, src: Inst) {
324         debug_assert_eq!(
325             self.dfg.inst_results(dst).len(),
326             self.dfg.inst_results(src).len()
327         );
328         debug_assert!(self
329             .dfg
330             .inst_results(dst)
331             .iter()
332             .zip(self.dfg.inst_results(src))
333             .all(|(a, b)| self.dfg.value_type(*a) == self.dfg.value_type(*b)));
334 
335         self.dfg.insts[dst] = self.dfg.insts[src];
336         self.layout.remove_inst(src);
337     }
338 
339     /// Size occupied by all stack slots associated with this function.
340     ///
341     /// Does not include any padding necessary due to offsets
342     pub fn fixed_stack_size(&self) -> u32 {
343         self.sized_stack_slots.values().map(|ss| ss.size).sum()
344     }
345 
346     /// Returns the list of relative source locations for this function.
347     pub(crate) fn rel_srclocs(&self) -> &SecondaryMap<Inst, RelSourceLoc> {
348         &self.srclocs
349     }
350 }
351 
352 /// Functions can be cloned, but it is not a very fast operation.
353 /// The clone will have all the same entity numbers as the original.
354 #[derive(Clone, PartialEq)]
355 #[cfg_attr(feature = "enable-serde", derive(Serialize, Deserialize))]
356 pub struct Function {
357     /// Name of this function.
358     ///
359     /// Mostly used by `.clif` files, only there for debugging / naming purposes.
360     pub name: UserFuncName,
361 
362     /// All the fields required for compiling a function, independently of details irrelevant to
363     /// compilation and that are stored in the `FunctionParameters` `params` field instead.
364     pub stencil: FunctionStencil,
365 
366     /// All the parameters that can be applied onto the function stencil, that is, that don't
367     /// matter when caching compilation artifacts.
368     pub params: FunctionParameters,
369 }
370 
371 impl core::ops::Deref for Function {
372     type Target = FunctionStencil;
373 
374     fn deref(&self) -> &Self::Target {
375         &self.stencil
376     }
377 }
378 
379 impl core::ops::DerefMut for Function {
380     fn deref_mut(&mut self) -> &mut Self::Target {
381         &mut self.stencil
382     }
383 }
384 
385 impl Function {
386     /// Create a function with the given name and signature.
387     pub fn with_name_signature(name: UserFuncName, sig: Signature) -> Self {
388         Self {
389             name,
390             stencil: FunctionStencil {
391                 version_marker: VersionMarker,
392                 signature: sig,
393                 sized_stack_slots: StackSlots::new(),
394                 dynamic_stack_slots: DynamicStackSlots::new(),
395                 global_values: PrimaryMap::new(),
396                 tables: PrimaryMap::new(),
397                 dfg: DataFlowGraph::new(),
398                 layout: Layout::new(),
399                 srclocs: SecondaryMap::new(),
400                 stack_limit: None,
401             },
402             params: FunctionParameters::new(),
403         }
404     }
405 
406     /// Clear all data structures in this function.
407     pub fn clear(&mut self) {
408         self.stencil.clear();
409         self.params.clear();
410         self.name = UserFuncName::default();
411     }
412 
413     /// Create a new empty, anonymous function with a Fast calling convention.
414     pub fn new() -> Self {
415         Self::with_name_signature(Default::default(), Signature::new(CallConv::Fast))
416     }
417 
418     /// Return an object that can display this function with correct ISA-specific annotations.
419     pub fn display(&self) -> DisplayFunction<'_> {
420         DisplayFunction(self, Default::default())
421     }
422 
423     /// Return an object that can display this function with correct ISA-specific annotations.
424     pub fn display_with<'a>(
425         &'a self,
426         annotations: DisplayFunctionAnnotations<'a>,
427     ) -> DisplayFunction<'a> {
428         DisplayFunction(self, annotations)
429     }
430 
431     /// Sets an absolute source location for the given instruction.
432     ///
433     /// If no base source location has been set yet, records it at the same time.
434     pub fn set_srcloc(&mut self, inst: Inst, srcloc: SourceLoc) {
435         let base = self.params.ensure_base_srcloc(srcloc);
436         self.stencil.srclocs[inst] = RelSourceLoc::from_base_offset(base, srcloc);
437     }
438 
439     /// Returns an absolute source location for the given instruction.
440     pub fn srcloc(&self, inst: Inst) -> SourceLoc {
441         let base = self.params.base_srcloc();
442         self.stencil.srclocs[inst].expand(base)
443     }
444 
445     /// Declare a user-defined external function import, to be referenced in `ExtFuncData::User` later.
446     pub fn declare_imported_user_function(
447         &mut self,
448         name: UserExternalName,
449     ) -> UserExternalNameRef {
450         self.params.ensure_user_func_name(name)
451     }
452 
453     /// Declare an external function import.
454     pub fn import_function(&mut self, data: ExtFuncData) -> FuncRef {
455         self.stencil.dfg.ext_funcs.push(data)
456     }
457 }
458 
459 /// Additional annotations for function display.
460 #[derive(Default)]
461 pub struct DisplayFunctionAnnotations<'a> {
462     /// Enable value labels annotations.
463     pub value_ranges: Option<&'a ValueLabelsRanges>,
464 }
465 
466 /// Wrapper type capable of displaying a `Function` with correct ISA annotations.
467 pub struct DisplayFunction<'a>(&'a Function, DisplayFunctionAnnotations<'a>);
468 
469 impl<'a> fmt::Display for DisplayFunction<'a> {
470     fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
471         write_function(fmt, self.0)
472     }
473 }
474 
475 impl fmt::Display for Function {
476     fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
477         write_function(fmt, self)
478     }
479 }
480 
481 impl fmt::Debug for Function {
482     fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
483         write_function(fmt, self)
484     }
485 }
486