Displaying 1 result from an estimated 1 matches for "intselect".
2016 Sep 20
7
RFC: Implement variable-sized register classes
...ontains half of the
information. Each derived class would then need to define a member
"Values", which is a list of corresponding values, of the same length as
the list of modes. The following definitions will be useful for
defining register classes and selection patterns:
class IntSelect<list<Mode> Ms, list<int> Is>
: HwModeSelect<Ms> {
// Select an integer literal.
list<int> Values = Is;
}
class ValueTypeSelect<list<Mode> Ms, list<ValueType> Ts>
: HwModeSelect<Ms> {
// Select a value type....