20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
-
-
-
-
|
m_content( move( gt ) )
{}
Instruction( AllocVar&& av ) :
m_content( move( av ) )
{}
Instruction( SetVar&& gv ) :
m_content( move( gv ) )
{}
Instruction( Load&& l ) :
m_content( move( l ) )
{}
Instruction( Store&& s ) :
m_content( move( s ) )
{}
|
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
-
|
using Content = variant
<
Call,
CreateTemporary,
GetTemporary,
AllocVar,
SetVar,
Load,
Store,
Phi,
LoadConstStr,
Not,
And,
|