58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
{
auto t = FromValue< LocalVarType >( *ValueFromIRExpr( v.type() ) );
if( !t )
return nullopt;
auto result = Decompose( v.val(),
Vec(
Val< uint64_t >(),
Val< uint64_t >()
)
);
if( !result )
return nullopt;
auto&& [cfgId,index] = *result;
|
|
|
|
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
{
auto t = FromValue< LocalVarType >( *ValueFromIRExpr( v.type() ) );
if( !t )
return nullopt;
auto result = Decompose( v.val(),
Vec(
Val< uint32_t >(),
Val< uint32_t >()
)
);
if( !result )
return nullopt;
auto&& [cfgId,index] = *result;
|