45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
-
+
-
+
|
return out << e;
}, inst.m_content );
}
ostream& operator<<( ostream& out, const Select& ins )
{
out << "SELECT(" << ins.m_memberIndex;
return out << ')';
return out << ')';
}
ostream& operator<<( ostream& out, const Load& ins )
{
out << "LOAD(";
return out << ins.m_type << ')';
return out << ins.m_type << ')';
}
ostream& operator<<( ostream& out, const Store& ins )
{
return out << "STORE";
}
|