Python InstructionFormat refactoring.

Make some changes that will make it easier to get rid of the
'value_operands' and 'members' fields in the Python InstructionFormat
class. This is necessary to be able to combine instruction formats that
all use a value list representation, but with different fixed value
operands. The goal is to eventually identify formats by a new signature:

   (multiple_results, imm_kinds, num_value_operands)

Start by adding new fields:

- imm_members and imm_kinds are lists describing the format operands,
  excluding any values and variable_args operands.
- num_value_operands is the number of fixed value operands, or None in a
  has_value-list format.

Use these new members in preference to the old ones where possible.
This commit is contained in:
Jakob Stoklund Olesen
2017-03-09 21:03:52 -08:00
parent ec5ee70a5c
commit f3d7485494
3 changed files with 31 additions and 30 deletions

View File

@@ -84,20 +84,11 @@ def gen_arguments_method(fmt, is_mut):
.format(n, mut, mut, as_slice))
continue
has_varargs = cdsl.operands.VARIABLE_ARGS in f.kinds
# Formats with both fixed and variable arguments delegate to
# the data struct. We need to work around borrow checker quirks
# when extracting two mutable references.
if has_varargs and len(f.value_operands) > 0:
fmt.line(
'{} {{ ref {}data, .. }} => data.{}(),'
.format(n, mut, method))
continue
# Fixed args.
if len(f.value_operands) == 0:
if f.num_value_operands == 0:
arg = '&{}[]'.format(mut)
capture = ''
elif len(f.value_operands) == 1:
elif f.num_value_operands == 1:
if f.boxed_storage:
capture = 'ref {}data, '.format(mut)
arg = '{}(&{}data.arg)'.format(rslice, mut)
@@ -111,16 +102,9 @@ def gen_arguments_method(fmt, is_mut):
else:
capture = 'ref {}args, '.format(mut)
arg = 'args'
# Varargs.
if cdsl.operands.VARIABLE_ARGS in f.kinds:
varg = '&{}data.varargs'.format(mut)
capture = 'ref {}data, '.format(mut)
else:
varg = '&{}[]'.format(mut)
fmt.line(
'{} {{ {} .. }} => [{}, {}],'
.format(n, capture, arg, varg))
'{} {{ {} .. }} => [{}, &{}[]],'
.format(n, capture, arg, mut))
def gen_instruction_data_impl(fmt):
@@ -219,7 +203,7 @@ def gen_instruction_data_impl(fmt):
fmt.line(
'{} {{ ref args, .. }} => '
'args.get({}, pool),'.format(n, i))
elif len(f.value_operands) == 1:
elif f.num_value_operands == 1:
# We have a single value operand called 'arg'.
if f.boxed_storage:
fmt.line(
@@ -564,9 +548,9 @@ def gen_member_inits(iform, fmt):
if iform.has_value_list:
# Value-list formats put *all* arguments in the list.
fmt.line('args: vlist,')
elif len(iform.value_operands) == 1:
elif iform.num_value_operands == 1:
fmt.line('arg: op{},'.format(iform.value_operands[0]))
elif len(iform.value_operands) > 1:
elif iform.num_value_operands > 1:
fmt.line('args: [{}],'.format(
', '.join('op{}'.format(i) for i in iform.value_operands)))