]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_codegen_cranelift/src/analyze.rs
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / compiler / rustc_codegen_cranelift / src / analyze.rs
CommitLineData
29967ef6
XL
1//! SSA analysis
2
3use crate::prelude::*;
4
5use rustc_index::vec::IndexVec;
6use rustc_middle::mir::StatementKind::*;
7
8#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
9pub(crate) enum SsaKind {
10 NotSsa,
11 Ssa,
12}
13
6a06907d 14pub(crate) fn analyze(fx: &FunctionCx<'_, '_, '_>) -> IndexVec<Local, SsaKind> {
29967ef6
XL
15 let mut flag_map = fx
16 .mir
17 .local_decls
18 .iter()
19 .map(|local_decl| {
fc512014 20 let ty = fx.monomorphize(local_decl.ty);
29967ef6
XL
21 if fx.clif_type(ty).is_some() || fx.clif_pair_type(ty).is_some() {
22 SsaKind::Ssa
23 } else {
24 SsaKind::NotSsa
25 }
26 })
27 .collect::<IndexVec<Local, SsaKind>>();
28
29 for bb in fx.mir.basic_blocks().iter() {
30 for stmt in bb.statements.iter() {
31 match &stmt.kind {
32 Assign(place_and_rval) => match &place_and_rval.1 {
33 Rvalue::Ref(_, _, place) | Rvalue::AddressOf(_, place) => {
34 not_ssa(&mut flag_map, place.local)
35 }
36 _ => {}
37 },
38 _ => {}
39 }
40 }
41
42 match &bb.terminator().kind {
6a06907d 43 TerminatorKind::Call { destination, func, args, .. } => {
29967ef6 44 if let Some((dest_place, _dest_bb)) = destination {
5869c6ff 45 if !crate::abi::can_return_to_ssa_var(fx, func, args) {
29967ef6
XL
46 not_ssa(&mut flag_map, dest_place.local)
47 }
48 }
49 }
50 _ => {}
51 }
52 }
53
54 flag_map
55}
56
57fn not_ssa(flag_map: &mut IndexVec<Local, SsaKind>, local: Local) {
58 flag_map[local] = SsaKind::NotSsa;
59}