1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*
* MRustC - Rust Compiler
* - By John Hodge (Mutabah/thePowersGang)
*
* mir/mir.cpp
* - MIR (Middle Intermediate Representation) definitions
*/
#include <mir/mir.hpp>
::MIR::LValue MIR::LValue::clone() const
{
TU_MATCHA( (*this), (e),
(Variable, return LValue(e); ),
(Temporary, return LValue(e); ),
(Argument, return LValue(e); ),
(Static, return LValue(e.clone()); ),
(Return, return LValue(e); ),
(Field, return LValue::make_Field({
box$( e.val->clone() ),
e.field_index
}); ),
(Deref, return LValue::make_Deref({
box$( e.val->clone() )
}); ),
(Index, return LValue::make_Index({
box$( e.val->clone() ),
box$( e.idx->clone() )
}); ),
(Downcast, return LValue::make_Downcast({
box$( e.val->clone() ),
e.variant_index
}); )
)
throw "";
}
|