Lines Matching full:formats
35 formats = {} variable
52 # Identifiers for Arguments, Fields, Formats and Patterns.
466 """Common code between instruction formats and instruction patterns"""
1008 global formats
1020 for fmt in formats.values():
1031 name = decode_function + '_Fmt_' + str(len(formats))
1036 formats[name] = fmt
1046 global formats
1081 error(lineno, 'multiple formats')
1082 if tt in formats:
1083 fmt = formats[tt]
1163 # Formats cannot reference formats.
1174 if name in formats:
1178 formats[name] = fmt
1498 global formats
1599 # If we're sharing formats, we're likely also sharing trans_* functions,
1623 for n in sorted(formats.keys()):
1624 f = formats[n]