Merge zizzer.eecs.umich.edu:/z/m5/Bitkeeper/m5
[gem5.git] / arch / isa_parser.py
1 #! /usr/bin/env python
2
3 # $Id$
4
5 # Copyright (c) 2003 The Regents of The University of Michigan
6 # All rights reserved.
7 #
8 # Redistribution and use in source and binary forms, with or without
9 # modification, are permitted provided that the following conditions are
10 # met: redistributions of source code must retain the above copyright
11 # notice, this list of conditions and the following disclaimer;
12 # redistributions in binary form must reproduce the above copyright
13 # notice, this list of conditions and the following disclaimer in the
14 # documentation and/or other materials provided with the distribution;
15 # neither the name of the copyright holders nor the names of its
16 # contributors may be used to endorse or promote products derived from
17 # this software without specific prior written permission.
18 #
19 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31 import os
32 import sys
33 import re
34 import string
35 import traceback
36 # get type names
37 from types import *
38
39 # Prepend the directory where the PLY lex & yacc modules are found
40 # to the search path. Assumes we're compiling in a subdirectory
41 # of 'build' in the current tree.
42 sys.path[0:0] = [os.environ['M5_EXT'] + '/ply']
43
44 import lex
45 import yacc
46
47 #####################################################################
48 #
49 # Lexer
50 #
51 # The PLY lexer module takes two things as input:
52 # - A list of token names (the string list 'tokens')
53 # - A regular expression describing a match for each token. The
54 # regexp for token FOO can be provided in two ways:
55 # - as a string variable named t_FOO
56 # - as the doc string for a function named t_FOO. In this case,
57 # the function is also executed, allowing an action to be
58 # associated with each token match.
59 #
60 #####################################################################
61
62 # Reserved words. These are listed separately as they are matched
63 # using the same regexp as generic IDs, but distinguished in the
64 # t_ID() function. The PLY documentation suggests this approach.
65 reserved = (
66 'BITFIELD', 'DECODE', 'DECODER', 'DEFAULT', 'DEF', 'EXEC', 'FORMAT',
67 'HEADER', 'LET', 'NAMESPACE', 'OPERAND_TYPES', 'OPERANDS',
68 'OUTPUT', 'SIGNED', 'TEMPLATE'
69 )
70
71 # List of tokens. The lex module requires this.
72 tokens = reserved + (
73 # identifier
74 'ID',
75
76 # integer literal
77 'INTLIT',
78
79 # string literal
80 'STRLIT',
81
82 # code literal
83 'CODELIT',
84
85 # ( ) [ ] { } < > , ; : :: *
86 'LPAREN', 'RPAREN',
87 # not used any more... commented out to suppress PLY warning
88 # 'LBRACKET', 'RBRACKET',
89 'LBRACE', 'RBRACE',
90 'LESS', 'GREATER',
91 'COMMA', 'SEMI', 'COLON', 'DBLCOLON',
92 'ASTERISK',
93
94 # C preprocessor directives
95 'CPPDIRECTIVE'
96 )
97
98 # Regular expressions for token matching
99 t_LPAREN = r'\('
100 t_RPAREN = r'\)'
101 # not used any more... commented out to suppress PLY warning
102 # t_LBRACKET = r'\['
103 # t_RBRACKET = r'\]'
104 t_LBRACE = r'\{'
105 t_RBRACE = r'\}'
106 t_LESS = r'\<'
107 t_GREATER = r'\>'
108 t_COMMA = r','
109 t_SEMI = r';'
110 t_COLON = r':'
111 t_DBLCOLON = r'::'
112 t_ASTERISK = r'\*'
113
114 # Identifiers and reserved words
115 reserved_map = { }
116 for r in reserved:
117 reserved_map[r.lower()] = r
118
119 def t_ID(t):
120 r'[A-Za-z_]\w*'
121 t.type = reserved_map.get(t.value,'ID')
122 return t
123
124 # Integer literal
125 def t_INTLIT(t):
126 r'(0x[\da-fA-F]+)|\d+'
127 try:
128 t.value = int(t.value,0)
129 except ValueError:
130 error(t.lineno, 'Integer value "%s" too large' % t.value)
131 t.value = 0
132 return t
133
134 # String literal. Note that these use only single quotes, and
135 # can span multiple lines.
136 def t_STRLIT(t):
137 r"(?m)'([^'])+'"
138 # strip off quotes
139 t.value = t.value[1:-1]
140 t.lineno += t.value.count('\n')
141 return t
142
143
144 # "Code literal"... like a string literal, but delimiters are
145 # '{{' and '}}' so they get formatted nicely under emacs c-mode
146 def t_CODELIT(t):
147 r"(?m)\{\{([^\}]|}(?!\}))+\}\}"
148 # strip off {{ & }}
149 t.value = t.value[2:-2]
150 t.lineno += t.value.count('\n')
151 return t
152
153 def t_CPPDIRECTIVE(t):
154 r'^\#.*\n'
155 t.lineno += t.value.count('\n')
156 return t
157
158 #
159 # The functions t_NEWLINE, t_ignore, and t_error are
160 # special for the lex module.
161 #
162
163 # Newlines
164 def t_NEWLINE(t):
165 r'\n+'
166 t.lineno += t.value.count('\n')
167
168 # Comments
169 def t_comment(t):
170 r'//.*'
171
172 # Completely ignored characters
173 t_ignore = ' \t\x0c'
174
175 # Error handler
176 def t_error(t):
177 error(t.lineno, "illegal character '%s'" % t.value[0])
178 t.skip(1)
179
180 # Build the lexer
181 lex.lex()
182
183 #####################################################################
184 #
185 # Parser
186 #
187 # Every function whose name starts with 'p_' defines a grammar rule.
188 # The rule is encoded in the function's doc string, while the
189 # function body provides the action taken when the rule is matched.
190 # The argument to each function is a list of the values of the
191 # rule's symbols: t[0] for the LHS, and t[1..n] for the symbols
192 # on the RHS. For tokens, the value is copied from the t.value
193 # attribute provided by the lexer. For non-terminals, the value
194 # is assigned by the producing rule; i.e., the job of the grammar
195 # rule function is to set the value for the non-terminal on the LHS
196 # (by assigning to t[0]).
197 #####################################################################
198
199 # The LHS of the first grammar rule is used as the start symbol
200 # (in this case, 'specification'). Note that this rule enforces
201 # that there will be exactly one namespace declaration, with 0 or more
202 # global defs/decls before and after it. The defs & decls before
203 # the namespace decl will be outside the namespace; those after
204 # will be inside. The decoder function is always inside the namespace.
205 def p_specification(t):
206 'specification : opt_defs_and_outputs name_decl opt_defs_and_outputs decode_block'
207 global_code = t[1]
208 isa_name = t[2]
209 namespace = isa_name + "Inst"
210 # wrap the decode block as a function definition
211 t[4].wrap_decode_block('''
212 StaticInstPtr<%(isa_name)s>
213 %(isa_name)s::decodeInst(%(isa_name)s::MachInst machInst)
214 {
215 using namespace %(namespace)s;
216 ''' % vars(), '}')
217 # both the latter output blocks and the decode block are in the namespace
218 namespace_code = t[3] + t[4]
219 # pass it all back to the caller of yacc.parse()
220 t[0] = (isa_name, namespace, global_code, namespace_code)
221
222 # ISA name declaration looks like "namespace <foo>;"
223 def p_name_decl(t):
224 'name_decl : NAMESPACE ID SEMI'
225 t[0] = t[2]
226
227 # 'opt_defs_and_outputs' is a possibly empty sequence of
228 # def and/or output statements.
229 def p_opt_defs_and_outputs_0(t):
230 'opt_defs_and_outputs : empty'
231 t[0] = GenCode()
232
233 def p_opt_defs_and_outputs_1(t):
234 'opt_defs_and_outputs : defs_and_outputs'
235 t[0] = t[1]
236
237 def p_defs_and_outputs_0(t):
238 'defs_and_outputs : def_or_output'
239 t[0] = t[1]
240
241 def p_defs_and_outputs_1(t):
242 'defs_and_outputs : defs_and_outputs def_or_output'
243 t[0] = t[1] + t[2]
244
245 # The list of possible definition/output statements.
246 def p_def_or_output(t):
247 '''def_or_output : def_format
248 | def_bitfield
249 | def_template
250 | def_operand_types
251 | def_operands
252 | output_header
253 | output_decoder
254 | output_exec
255 | global_let'''
256 t[0] = t[1]
257
258 # Output blocks 'output <foo> {{...}}' (C++ code blocks) are copied
259 # directly to the appropriate output section.
260
261 # Massage output block by substituting in template definitions and bit
262 # operators. We handle '%'s embedded in the string that don't
263 # indicate template substitutions (or CPU-specific symbols, which get
264 # handled in GenCode) by doubling them first so that the format
265 # operation will reduce them back to single '%'s.
266 def process_output(s):
267 # protect any non-substitution '%'s (not followed by '(')
268 s = re.sub(r'%(?!\()', '%%', s)
269 # protects cpu-specific symbols too
270 s = protect_cpu_symbols(s)
271 return substBitOps(s % templateMap)
272
273 def p_output_header(t):
274 'output_header : OUTPUT HEADER CODELIT SEMI'
275 t[0] = GenCode(header_output = process_output(t[3]))
276
277 def p_output_decoder(t):
278 'output_decoder : OUTPUT DECODER CODELIT SEMI'
279 t[0] = GenCode(decoder_output = process_output(t[3]))
280
281 def p_output_exec(t):
282 'output_exec : OUTPUT EXEC CODELIT SEMI'
283 t[0] = GenCode(exec_output = process_output(t[3]))
284
285 # global let blocks 'let {{...}}' (Python code blocks) are executed
286 # directly when seen. Note that these execute in a special variable
287 # context 'exportContext' to prevent the code from polluting this
288 # script's namespace.
289 def p_global_let(t):
290 'global_let : LET CODELIT SEMI'
291 updateExportContext()
292 try:
293 exec fixPythonIndentation(t[2]) in exportContext
294 except Exception, exc:
295 error(t.lineno(1),
296 'error: %s in global let block "%s".' % (exc, t[2]))
297 t[0] = GenCode() # contributes nothing to the output C++ file
298
299 # Define the mapping from operand type extensions to C++ types and bit
300 # widths (stored in operandTypeMap).
301 def p_def_operand_types(t):
302 'def_operand_types : DEF OPERAND_TYPES CODELIT SEMI'
303 s = 'global operandTypeMap; operandTypeMap = {' + t[3] + '}'
304 try:
305 exec s
306 except Exception, exc:
307 error(t.lineno(1),
308 'error: %s in def operand_types block "%s".' % (exc, t[3]))
309 t[0] = GenCode() # contributes nothing to the output C++ file
310
311 # Define the mapping from operand names to operand classes and other
312 # traits. Stored in operandTraitsMap.
313 def p_def_operands(t):
314 'def_operands : DEF OPERANDS CODELIT SEMI'
315 s = 'global operandTraitsMap; operandTraitsMap = {' + t[3] + '}'
316 try:
317 exec s
318 except Exception, exc:
319 error(t.lineno(1),
320 'error: %s in def operands block "%s".' % (exc, t[3]))
321 defineDerivedOperandVars()
322 t[0] = GenCode() # contributes nothing to the output C++ file
323
324 # A bitfield definition looks like:
325 # 'def [signed] bitfield <ID> [<first>:<last>]'
326 # This generates a preprocessor macro in the output file.
327 def p_def_bitfield_0(t):
328 'def_bitfield : DEF opt_signed BITFIELD ID LESS INTLIT COLON INTLIT GREATER SEMI'
329 expr = 'bits(machInst, %2d, %2d)' % (t[6], t[8])
330 if (t[2] == 'signed'):
331 expr = 'sext<%d>(%s)' % (t[6] - t[8] + 1, expr)
332 hash_define = '#undef %s\n#define %s\t%s\n' % (t[4], t[4], expr)
333 t[0] = GenCode(header_output = hash_define)
334
335 # alternate form for single bit: 'def [signed] bitfield <ID> [<bit>]'
336 def p_def_bitfield_1(t):
337 'def_bitfield : DEF opt_signed BITFIELD ID LESS INTLIT GREATER SEMI'
338 expr = 'bits(machInst, %2d, %2d)' % (t[6], t[6])
339 if (t[2] == 'signed'):
340 expr = 'sext<%d>(%s)' % (1, expr)
341 hash_define = '#undef %s\n#define %s\t%s\n' % (t[4], t[4], expr)
342 t[0] = GenCode(header_output = hash_define)
343
344 def p_opt_signed_0(t):
345 'opt_signed : SIGNED'
346 t[0] = t[1]
347
348 def p_opt_signed_1(t):
349 'opt_signed : empty'
350 t[0] = ''
351
352 # Global map variable to hold templates
353 templateMap = {}
354
355 def p_def_template(t):
356 'def_template : DEF TEMPLATE ID CODELIT SEMI'
357 templateMap[t[3]] = Template(t[4])
358 t[0] = GenCode()
359
360 # An instruction format definition looks like
361 # "def format <fmt>(<params>) {{...}};"
362 def p_def_format(t):
363 'def_format : DEF FORMAT ID LPAREN param_list RPAREN CODELIT SEMI'
364 (id, params, code) = (t[3], t[5], t[7])
365 defFormat(id, params, code, t.lineno(1))
366 t[0] = GenCode()
367
368 # The formal parameter list for an instruction format is a possibly
369 # empty list of comma-separated parameters.
370 def p_param_list_0(t):
371 'param_list : empty'
372 t[0] = [ ]
373
374 def p_param_list_1(t):
375 'param_list : param'
376 t[0] = [t[1]]
377
378 def p_param_list_2(t):
379 'param_list : param_list COMMA param'
380 t[0] = t[1]
381 t[0].append(t[3])
382
383 # Each formal parameter is either an identifier or an identifier
384 # preceded by an asterisk. As in Python, the latter (if present) gets
385 # a tuple containing all the excess positional arguments, allowing
386 # varargs functions.
387 def p_param_0(t):
388 'param : ID'
389 t[0] = t[1]
390
391 def p_param_1(t):
392 'param : ASTERISK ID'
393 # just concatenate them: '*ID'
394 t[0] = t[1] + t[2]
395
396 # End of format definition-related rules.
397 ##############
398
399 #
400 # A decode block looks like:
401 # decode <field1> [, <field2>]* [default <inst>] { ... }
402 #
403 def p_decode_block(t):
404 'decode_block : DECODE ID opt_default LBRACE decode_stmt_list RBRACE'
405 default_defaults = defaultStack.pop()
406 codeObj = t[5]
407 # use the "default defaults" only if there was no explicit
408 # default statement in decode_stmt_list
409 if not codeObj.has_decode_default:
410 codeObj += default_defaults
411 codeObj.wrap_decode_block('switch (%s) {\n' % t[2], '}\n')
412 t[0] = codeObj
413
414 # The opt_default statement serves only to push the "default defaults"
415 # onto defaultStack. This value will be used by nested decode blocks,
416 # and used and popped off when the current decode_block is processed
417 # (in p_decode_block() above).
418 def p_opt_default_0(t):
419 'opt_default : empty'
420 # no default specified: reuse the one currently at the top of the stack
421 defaultStack.push(defaultStack.top())
422 # no meaningful value returned
423 t[0] = None
424
425 def p_opt_default_1(t):
426 'opt_default : DEFAULT inst'
427 # push the new default
428 codeObj = t[2]
429 codeObj.wrap_decode_block('\ndefault:\n', 'break;\n')
430 defaultStack.push(codeObj)
431 # no meaningful value returned
432 t[0] = None
433
434 def p_decode_stmt_list_0(t):
435 'decode_stmt_list : decode_stmt'
436 t[0] = t[1]
437
438 def p_decode_stmt_list_1(t):
439 'decode_stmt_list : decode_stmt decode_stmt_list'
440 if (t[1].has_decode_default and t[2].has_decode_default):
441 error(t.lineno(1), 'Two default cases in decode block')
442 t[0] = t[1] + t[2]
443
444 #
445 # Decode statement rules
446 #
447 # There are four types of statements allowed in a decode block:
448 # 1. Format blocks 'format <foo> { ... }'
449 # 2. Nested decode blocks
450 # 3. Instruction definitions.
451 # 4. C preprocessor directives.
452
453
454 # Preprocessor directives found in a decode statement list are passed
455 # through to the output, replicated to all of the output code
456 # streams. This works well for ifdefs, so we can ifdef out both the
457 # declarations and the decode cases generated by an instruction
458 # definition. Handling them as part of the grammar makes it easy to
459 # keep them in the right place with respect to the code generated by
460 # the other statements.
461 def p_decode_stmt_cpp(t):
462 'decode_stmt : CPPDIRECTIVE'
463 t[0] = GenCode(t[1], t[1], t[1], t[1])
464
465 # A format block 'format <foo> { ... }' sets the default instruction
466 # format used to handle instruction definitions inside the block.
467 # This format can be overridden by using an explicit format on the
468 # instruction definition or with a nested format block.
469 def p_decode_stmt_format(t):
470 'decode_stmt : FORMAT push_format_id LBRACE decode_stmt_list RBRACE'
471 # The format will be pushed on the stack when 'push_format_id' is
472 # processed (see below). Once the parser has recognized the full
473 # production (though the right brace), we're done with the format,
474 # so now we can pop it.
475 formatStack.pop()
476 t[0] = t[4]
477
478 # This rule exists so we can set the current format (& push the stack)
479 # when we recognize the format name part of the format block.
480 def p_push_format_id(t):
481 'push_format_id : ID'
482 try:
483 formatStack.push(formatMap[t[1]])
484 t[0] = ('', '// format %s' % t[1])
485 except KeyError:
486 error(t.lineno(1), 'instruction format "%s" not defined.' % t[1])
487
488 # Nested decode block: if the value of the current field matches the
489 # specified constant, do a nested decode on some other field.
490 def p_decode_stmt_decode(t):
491 'decode_stmt : case_label COLON decode_block'
492 label = t[1]
493 codeObj = t[3]
494 # just wrap the decoding code from the block as a case in the
495 # outer switch statement.
496 codeObj.wrap_decode_block('\n%s:\n' % label)
497 codeObj.has_decode_default = (label == 'default')
498 t[0] = codeObj
499
500 # Instruction definition (finally!).
501 def p_decode_stmt_inst(t):
502 'decode_stmt : case_label COLON inst SEMI'
503 label = t[1]
504 codeObj = t[3]
505 codeObj.wrap_decode_block('\n%s:' % label, 'break;\n')
506 codeObj.has_decode_default = (label == 'default')
507 t[0] = codeObj
508
509 # The case label is either a list of one or more constants or 'default'
510 def p_case_label_0(t):
511 'case_label : intlit_list'
512 t[0] = ': '.join(map(lambda a: 'case %#x' % a, t[1]))
513
514 def p_case_label_1(t):
515 'case_label : DEFAULT'
516 t[0] = 'default'
517
518 #
519 # The constant list for a decode case label must be non-empty, but may have
520 # one or more comma-separated integer literals in it.
521 #
522 def p_intlit_list_0(t):
523 'intlit_list : INTLIT'
524 t[0] = [t[1]]
525
526 def p_intlit_list_1(t):
527 'intlit_list : intlit_list COMMA INTLIT'
528 t[0] = t[1]
529 t[0].append(t[3])
530
531 # Define an instruction using the current instruction format (specified
532 # by an enclosing format block).
533 # "<mnemonic>(<args>)"
534 def p_inst_0(t):
535 'inst : ID LPAREN arg_list RPAREN'
536 # Pass the ID and arg list to the current format class to deal with.
537 currentFormat = formatStack.top()
538 codeObj = currentFormat.defineInst(t[1], t[3], t.lineno(1))
539 args = ','.join(map(str, t[3]))
540 args = re.sub('(?m)^', '//', args)
541 args = re.sub('^//', '', args)
542 comment = '\n// %s::%s(%s)\n' % (currentFormat.id, t[1], args)
543 codeObj.prepend_all(comment)
544 t[0] = codeObj
545
546 # Define an instruction using an explicitly specified format:
547 # "<fmt>::<mnemonic>(<args>)"
548 def p_inst_1(t):
549 'inst : ID DBLCOLON ID LPAREN arg_list RPAREN'
550 try:
551 format = formatMap[t[1]]
552 except KeyError:
553 error(t.lineno(1), 'instruction format "%s" not defined.' % t[1])
554 codeObj = format.defineInst(t[3], t[5], t.lineno(1))
555 comment = '\n// %s::%s(%s)\n' % (t[1], t[3], t[5])
556 codeObj.prepend_all(comment)
557 t[0] = codeObj
558
559 def p_arg_list_0(t):
560 'arg_list : empty'
561 t[0] = [ ]
562
563 def p_arg_list_1(t):
564 'arg_list : arg'
565 t[0] = [t[1]]
566
567 def p_arg_list_2(t):
568 'arg_list : arg_list COMMA arg'
569 t[0] = t[1]
570 t[0].append(t[3])
571
572 def p_arg(t):
573 '''arg : ID
574 | INTLIT
575 | STRLIT
576 | CODELIT'''
577 t[0] = t[1]
578
579 #
580 # Empty production... use in other rules for readability.
581 #
582 def p_empty(t):
583 'empty :'
584 pass
585
586 # Parse error handler. Note that the argument here is the offending
587 # *token*, not a grammar symbol (hence the need to use t.value)
588 def p_error(t):
589 if t:
590 error(t.lineno, "syntax error at '%s'" % t.value)
591 else:
592 error_bt(0, "unknown syntax error")
593
594 # END OF GRAMMAR RULES
595 #
596 # Now build the parser.
597 yacc.yacc()
598
599
600 #####################################################################
601 #
602 # Support Classes
603 #
604 #####################################################################
605
606 ################
607 # CpuModel class
608 #
609 # The CpuModel class encapsulates everything we need to know about a
610 # particular CPU model.
611
612 class CpuModel:
613 # List of all CPU models. Accessible as CpuModel.list.
614 list = []
615
616 # Constructor. Automatically adds models to CpuModel.list.
617 def __init__(self, name, filename, includes, strings):
618 self.name = name
619 self.filename = filename # filename for output exec code
620 self.includes = includes # include files needed in exec file
621 # The 'strings' dict holds all the per-CPU symbols we can
622 # substitute into templates etc.
623 self.strings = strings
624 # Add self to list.
625 CpuModel.list.append(self)
626
627 # Define CPU models. The following lines should contain the only
628 # CPU-model-specific information in this file. Note that the ISA
629 # description itself should have *no* CPU-model-specific content.
630 CpuModel('InorderCPU', 'inorder_cpu_exec.cc',
631 '#include "cpu/inorder_cpu/inorder_cpu.hh"',
632 { 'CPU_exec_context': 'InorderCPU' })
633 CpuModel('SimpleCPU', 'simple_cpu_exec.cc',
634 '#include "cpu/simple_cpu/simple_cpu.hh"',
635 { 'CPU_exec_context': 'SimpleCPU' })
636 CpuModel('FastCPU', 'fast_cpu_exec.cc',
637 '#include "cpu/fast_cpu/fast_cpu.hh"',
638 { 'CPU_exec_context': 'FastCPU' })
639 CpuModel('FullCPU', 'full_cpu_exec.cc',
640 '#include "cpu/full_cpu/dyn_inst.hh"',
641 { 'CPU_exec_context': 'DynInst' })
642 CpuModel('AlphaFullCPU', 'alpha_full_cpu_exec.cc',
643 '#include "cpu/beta_cpu/alpha_dyn_inst.hh"',
644 { 'CPU_exec_context': 'AlphaDynInst<AlphaSimpleImpl>' })
645
646 # Expand template with CPU-specific references into a dictionary with
647 # an entry for each CPU model name. The entry key is the model name
648 # and the corresponding value is the template with the CPU-specific
649 # refs substituted for that model.
650 def expand_cpu_symbols_to_dict(template):
651 # Protect '%'s that don't go with CPU-specific terms
652 t = re.sub(r'%(?!\(CPU_)', '%%', template)
653 result = {}
654 for cpu in CpuModel.list:
655 result[cpu.name] = t % cpu.strings
656 return result
657
658 # *If* the template has CPU-specific references, return a single
659 # string containing a copy of the template for each CPU model with the
660 # corresponding values substituted in. If the template has no
661 # CPU-specific references, it is returned unmodified.
662 def expand_cpu_symbols_to_string(template):
663 if template.find('%(CPU_') != -1:
664 return reduce(lambda x,y: x+y,
665 expand_cpu_symbols_to_dict(template).values())
666 else:
667 return template
668
669 # Protect CPU-specific references by doubling the corresponding '%'s
670 # (in preparation for substituting a different set of references into
671 # the template).
672 def protect_cpu_symbols(template):
673 return re.sub(r'%(?=\(CPU_)', '%%', template)
674
675 ###############
676 # GenCode class
677 #
678 # The GenCode class encapsulates generated code destined for various
679 # output files. The header_output and decoder_output attributes are
680 # strings containing code destined for decoder.hh and decoder.cc
681 # respectively. The decode_block attribute contains code to be
682 # incorporated in the decode function itself (that will also end up in
683 # decoder.cc). The exec_output attribute is a dictionary with a key
684 # for each CPU model name; the value associated with a particular key
685 # is the string of code for that CPU model's exec.cc file. The
686 # has_decode_default attribute is used in the decode block to allow
687 # explicit default clauses to override default default clauses.
688
689 class GenCode:
690 # Constructor. At this point we substitute out all CPU-specific
691 # symbols. For the exec output, these go into the per-model
692 # dictionary. For all other output types they get collapsed into
693 # a single string.
694 def __init__(self,
695 header_output = '', decoder_output = '', exec_output = '',
696 decode_block = '', has_decode_default = False):
697 self.header_output = expand_cpu_symbols_to_string(header_output)
698 self.decoder_output = expand_cpu_symbols_to_string(decoder_output)
699 if isinstance(exec_output, dict):
700 self.exec_output = exec_output
701 elif isinstance(exec_output, str):
702 # If the exec_output arg is a single string, we replicate
703 # it for each of the CPU models, substituting and
704 # %(CPU_foo)s params appropriately.
705 self.exec_output = expand_cpu_symbols_to_dict(exec_output)
706 self.decode_block = expand_cpu_symbols_to_string(decode_block)
707 self.has_decode_default = has_decode_default
708
709 # Override '+' operator: generate a new GenCode object that
710 # concatenates all the individual strings in the operands.
711 def __add__(self, other):
712 exec_output = {}
713 for cpu in CpuModel.list:
714 n = cpu.name
715 exec_output[n] = self.exec_output[n] + other.exec_output[n]
716 return GenCode(self.header_output + other.header_output,
717 self.decoder_output + other.decoder_output,
718 exec_output,
719 self.decode_block + other.decode_block,
720 self.has_decode_default or other.has_decode_default)
721
722 # Prepend a string (typically a comment) to all the strings.
723 def prepend_all(self, pre):
724 self.header_output = pre + self.header_output
725 self.decoder_output = pre + self.decoder_output
726 self.decode_block = pre + self.decode_block
727 for cpu in CpuModel.list:
728 self.exec_output[cpu.name] = pre + self.exec_output[cpu.name]
729
730 # Wrap the decode block in a pair of strings (e.g., 'case foo:'
731 # and 'break;'). Used to build the big nested switch statement.
732 def wrap_decode_block(self, pre, post = ''):
733 self.decode_block = pre + indent(self.decode_block) + post
734
735 ################
736 # Format object.
737 #
738 # A format object encapsulates an instruction format. It must provide
739 # a defineInst() method that generates the code for an instruction
740 # definition.
741
742 class Format:
743 def __init__(self, id, params, code):
744 # constructor: just save away arguments
745 self.id = id
746 self.params = params
747 label = 'def format ' + id
748 self.user_code = compile(fixPythonIndentation(code), label, 'exec')
749 param_list = string.join(params, ", ")
750 f = '''def defInst(_code, _context, %s):
751 my_locals = vars().copy()
752 exec _code in _context, my_locals
753 return my_locals\n''' % param_list
754 c = compile(f, label + ' wrapper', 'exec')
755 exec c
756 self.func = defInst
757
758 def defineInst(self, name, args, lineno):
759 context = {}
760 updateExportContext()
761 context.update(exportContext)
762 context.update({ 'name': name, 'Name': string.capitalize(name) })
763 try:
764 vars = self.func(self.user_code, context, *args)
765 except Exception, exc:
766 error(lineno, 'error defining "%s": %s.' % (name, exc))
767 for k in vars.keys():
768 if k not in ('header_output', 'decoder_output',
769 'exec_output', 'decode_block'):
770 del vars[k]
771 return GenCode(**vars)
772
773 # Special null format to catch an implicit-format instruction
774 # definition outside of any format block.
775 class NoFormat:
776 def __init__(self):
777 self.defaultInst = ''
778
779 def defineInst(self, name, args, lineno):
780 error(lineno,
781 'instruction definition "%s" with no active format!' % name)
782
783 # This dictionary maps format name strings to Format objects.
784 formatMap = {}
785
786 # Define a new format
787 def defFormat(id, params, code, lineno):
788 # make sure we haven't already defined this one
789 if formatMap.get(id, None) != None:
790 error(lineno, 'format %s redefined.' % id)
791 # create new object and store in global map
792 formatMap[id] = Format(id, params, code)
793
794
795 ##############
796 # Stack: a simple stack object. Used for both formats (formatStack)
797 # and default cases (defaultStack).
798
799 class Stack:
800 def __init__(self, initItem):
801 self.stack = [ initItem ]
802
803 def push(self, item):
804 self.stack.append(item);
805
806 def pop(self):
807 return self.stack.pop()
808
809 def top(self):
810 return self.stack[-1]
811
812 # The global format stack.
813 formatStack = Stack(NoFormat())
814
815 # The global default case stack.
816 defaultStack = Stack( None )
817
818 ###################
819 # Utility functions
820
821 #
822 # Indent every line in string 's' by two spaces
823 # (except preprocessor directives).
824 # Used to make nested code blocks look pretty.
825 #
826 def indent(s):
827 return re.sub(r'(?m)^(?!\#)', ' ', s)
828
829 #
830 # Munge a somewhat arbitrarily formatted piece of Python code
831 # (e.g. from a format 'let' block) into something whose indentation
832 # will get by the Python parser.
833 #
834 # The two keys here are that Python will give a syntax error if
835 # there's any whitespace at the beginning of the first line, and that
836 # all lines at the same lexical nesting level must have identical
837 # indentation. Unfortunately the way code literals work, an entire
838 # let block tends to have some initial indentation. Rather than
839 # trying to figure out what that is and strip it off, we prepend 'if
840 # 1:' to make the let code the nested block inside the if (and have
841 # the parser automatically deal with the indentation for us).
842 #
843 # We don't want to do this if (1) the code block is empty or (2) the
844 # first line of the block doesn't have any whitespace at the front.
845
846 def fixPythonIndentation(s):
847 # get rid of blank lines first
848 s = re.sub(r'(?m)^\s*\n', '', s);
849 if (s != '' and re.match(r'[ \t]', s[0])):
850 s = 'if 1:\n' + s
851 return s
852
853 # Error handler. Just call exit. Output formatted to work under
854 # Emacs compile-mode.
855 def error(lineno, string):
856 sys.exit("%s:%d: %s" % (input_filename, lineno, string))
857
858 # Like error(), but include a Python stack backtrace (for processing
859 # Python exceptions).
860 def error_bt(lineno, string):
861 traceback.print_exc()
862 print >> sys.stderr, "%s:%d: %s" % (input_filename, lineno, string)
863 sys.exit(1)
864
865
866 #####################################################################
867 #
868 # Bitfield Operator Support
869 #
870 #####################################################################
871
872 bitOp1ArgRE = re.compile(r'<\s*(\w+)\s*:\s*>')
873
874 bitOpWordRE = re.compile(r'(?<![\w\.])([\w\.]+)<\s*(\w+)\s*:\s*(\w+)\s*>')
875 bitOpExprRE = re.compile(r'\)<\s*(\w+)\s*:\s*(\w+)\s*>')
876
877 def substBitOps(code):
878 # first convert single-bit selectors to two-index form
879 # i.e., <n> --> <n:n>
880 code = bitOp1ArgRE.sub(r'<\1:\1>', code)
881 # simple case: selector applied to ID (name)
882 # i.e., foo<a:b> --> bits(foo, a, b)
883 code = bitOpWordRE.sub(r'bits(\1, \2, \3)', code)
884 # if selector is applied to expression (ending in ')'),
885 # we need to search backward for matching '('
886 match = bitOpExprRE.search(code)
887 while match:
888 exprEnd = match.start()
889 here = exprEnd - 1
890 nestLevel = 1
891 while nestLevel > 0:
892 if code[here] == '(':
893 nestLevel -= 1
894 elif code[here] == ')':
895 nestLevel += 1
896 here -= 1
897 if here < 0:
898 sys.exit("Didn't find '('!")
899 exprStart = here+1
900 newExpr = r'bits(%s, %s, %s)' % (code[exprStart:exprEnd+1],
901 match.group(1), match.group(2))
902 code = code[:exprStart] + newExpr + code[match.end():]
903 match = bitOpExprRE.search(code)
904 return code
905
906
907 ####################
908 # Template objects.
909 #
910 # Template objects are format strings that allow substitution from
911 # the attribute spaces of other objects (e.g. InstObjParams instances).
912
913 class Template:
914 def __init__(self, t):
915 self.template = t
916
917 def subst(self, d):
918 # Start with the template namespace. Make a copy since we're
919 # going to modify it.
920 myDict = templateMap.copy()
921 # if the argument is a dictionary, we just use it.
922 if isinstance(d, dict):
923 myDict.update(d)
924 # if the argument is an object, we use its attribute map.
925 elif hasattr(d, '__dict__'):
926 myDict.update(d.__dict__)
927 else:
928 raise TypeError, "Template.subst() arg must be or have dictionary"
929 # CPU-model-specific substitutions are handled later (in GenCode).
930 return protect_cpu_symbols(self.template) % myDict
931
932 # Convert to string. This handles the case when a template with a
933 # CPU-specific term gets interpolated into another template or into
934 # an output block.
935 def __str__(self):
936 return expand_cpu_symbols_to_string(self.template)
937
938 #####################################################################
939 #
940 # Code Parser
941 #
942 # The remaining code is the support for automatically extracting
943 # instruction characteristics from pseudocode.
944 #
945 #####################################################################
946
947 # Force the argument to be a list
948 def makeList(list_or_item):
949 if not list_or_item:
950 return []
951 elif type(list_or_item) == ListType:
952 return list_or_item
953 else:
954 return [ list_or_item ]
955
956 # generate operandSizeMap based on provided operandTypeMap:
957 # basically generate equiv. C++ type and make is_signed flag
958 def buildOperandSizeMap():
959 global operandSizeMap
960 operandSizeMap = {}
961 for ext in operandTypeMap.keys():
962 (desc, size) = operandTypeMap[ext]
963 if desc == 'signed int':
964 type = 'int%d_t' % size
965 is_signed = 1
966 elif desc == 'unsigned int':
967 type = 'uint%d_t' % size
968 is_signed = 0
969 elif desc == 'float':
970 is_signed = 1 # shouldn't really matter
971 if size == 32:
972 type = 'float'
973 elif size == 64:
974 type = 'double'
975 if type == '':
976 error(0, 'Unrecognized type description "%s" in operandTypeMap')
977 operandSizeMap[ext] = (size, type, is_signed)
978
979 #
980 # Base class for operand traits. An instance of this class (or actually
981 # a class derived from this one) encapsulates the traits of a particular
982 # operand type (e.g., "32-bit integer register").
983 #
984 class OperandTraits:
985 def __init__(self, dflt_ext, reg_spec, flags, sort_pri):
986 # Force construction of operandSizeMap from operandTypeMap
987 # if it hasn't happened yet
988 if not globals().has_key('operandSizeMap'):
989 buildOperandSizeMap()
990 self.dflt_ext = dflt_ext
991 (self.dflt_size, self.dflt_type, self.dflt_is_signed) = \
992 operandSizeMap[dflt_ext]
993 self.reg_spec = reg_spec
994 # Canonical flag structure is a triple of lists, where each list
995 # indicates the set of flags implied by this operand always, when
996 # used as a source, and when used as a dest, respectively.
997 # For simplicity this can be initialized using a variety of fairly
998 # obvious shortcuts; we convert these to canonical form here.
999 if not flags:
1000 # no flags specified (e.g., 'None')
1001 self.flags = ( [], [], [] )
1002 elif type(flags) == StringType:
1003 # a single flag: assumed to be unconditional
1004 self.flags = ( [ flags ], [], [] )
1005 elif type(flags) == ListType:
1006 # a list of flags: also assumed to be unconditional
1007 self.flags = ( flags, [], [] )
1008 elif type(flags) == TupleType:
1009 # it's a tuple: it should be a triple,
1010 # but each item could be a single string or a list
1011 (uncond_flags, src_flags, dest_flags) = flags
1012 self.flags = (makeList(uncond_flags),
1013 makeList(src_flags), makeList(dest_flags))
1014 self.sort_pri = sort_pri
1015
1016 def isMem(self):
1017 return 0
1018
1019 def isReg(self):
1020 return 0
1021
1022 def isFloatReg(self):
1023 return 0
1024
1025 def isIntReg(self):
1026 return 0
1027
1028 def isControlReg(self):
1029 return 0
1030
1031 def getFlags(self, op_desc):
1032 # note the empty slice '[:]' gives us a copy of self.flags[0]
1033 # instead of a reference to it
1034 my_flags = self.flags[0][:]
1035 if op_desc.is_src:
1036 my_flags += self.flags[1]
1037 if op_desc.is_dest:
1038 my_flags += self.flags[2]
1039 return my_flags
1040
1041 def makeDecl(self, op_desc):
1042 (size, type, is_signed) = operandSizeMap[op_desc.eff_ext]
1043 # Note that initializations in the declarations are solely
1044 # to avoid 'uninitialized variable' errors from the compiler.
1045 return type + ' ' + op_desc.munged_name + ' = 0;\n';
1046
1047 class IntRegOperandTraits(OperandTraits):
1048 def isReg(self):
1049 return 1
1050
1051 def isIntReg(self):
1052 return 1
1053
1054 def makeConstructor(self, op_desc):
1055 c = ''
1056 if op_desc.is_src:
1057 c += '\n\t_srcRegIdx[%d] = %s;' % \
1058 (op_desc.src_reg_idx, self.reg_spec)
1059 if op_desc.is_dest:
1060 c += '\n\t_destRegIdx[%d] = %s;' % \
1061 (op_desc.dest_reg_idx, self.reg_spec)
1062 return c
1063
1064 def makeRead(self, op_desc):
1065 (size, type, is_signed) = operandSizeMap[op_desc.eff_ext]
1066 if (type == 'float' or type == 'double'):
1067 error(0, 'Attempt to read integer register as FP')
1068 if (size == self.dflt_size):
1069 return '%s = xc->readIntReg(this, %d);\n' % \
1070 (op_desc.munged_name, op_desc.src_reg_idx)
1071 else:
1072 return '%s = bits(xc->readIntReg(this, %d), %d, 0);\n' % \
1073 (op_desc.munged_name, op_desc.src_reg_idx, size-1)
1074
1075 def makeWrite(self, op_desc):
1076 (size, type, is_signed) = operandSizeMap[op_desc.eff_ext]
1077 if (type == 'float' or type == 'double'):
1078 error(0, 'Attempt to write integer register as FP')
1079 if (size != self.dflt_size and is_signed):
1080 final_val = 'sext<%d>(%s)' % (size, op_desc.munged_name)
1081 else:
1082 final_val = op_desc.munged_name
1083 wb = '''
1084 {
1085 %s final_val = %s;
1086 xc->setIntReg(this, %d, final_val);\n
1087 if (traceData) { traceData->setData(final_val); }
1088 }''' % (self.dflt_type, final_val, op_desc.dest_reg_idx)
1089 return wb
1090
1091 class FloatRegOperandTraits(OperandTraits):
1092 def isReg(self):
1093 return 1
1094
1095 def isFloatReg(self):
1096 return 1
1097
1098 def makeConstructor(self, op_desc):
1099 c = ''
1100 if op_desc.is_src:
1101 c += '\n\t_srcRegIdx[%d] = %s + FP_Base_DepTag;' % \
1102 (op_desc.src_reg_idx, self.reg_spec)
1103 if op_desc.is_dest:
1104 c += '\n\t_destRegIdx[%d] = %s + FP_Base_DepTag;' % \
1105 (op_desc.dest_reg_idx, self.reg_spec)
1106 return c
1107
1108 def makeRead(self, op_desc):
1109 (size, type, is_signed) = operandSizeMap[op_desc.eff_ext]
1110 bit_select = 0
1111 if (type == 'float'):
1112 func = 'readFloatRegSingle'
1113 elif (type == 'double'):
1114 func = 'readFloatRegDouble'
1115 else:
1116 func = 'readFloatRegInt'
1117 if (size != self.dflt_size):
1118 bit_select = 1
1119 base = 'xc->%s(this, %d)' % \
1120 (func, op_desc.src_reg_idx)
1121 if bit_select:
1122 return '%s = bits(%s, %d, 0);\n' % \
1123 (op_desc.munged_name, base, size-1)
1124 else:
1125 return '%s = %s;\n' % (op_desc.munged_name, base)
1126
1127 def makeWrite(self, op_desc):
1128 (size, type, is_signed) = operandSizeMap[op_desc.eff_ext]
1129 final_val = op_desc.munged_name
1130 if (type == 'float'):
1131 func = 'setFloatRegSingle'
1132 elif (type == 'double'):
1133 func = 'setFloatRegDouble'
1134 else:
1135 func = 'setFloatRegInt'
1136 type = 'uint%d_t' % self.dflt_size
1137 if (size != self.dflt_size and is_signed):
1138 final_val = 'sext<%d>(%s)' % (size, op_desc.munged_name)
1139 wb = '''
1140 {
1141 %s final_val = %s;
1142 xc->%s(this, %d, final_val);\n
1143 if (traceData) { traceData->setData(final_val); }
1144 }''' % (type, final_val, func, op_desc.dest_reg_idx)
1145 return wb
1146
1147 class ControlRegOperandTraits(OperandTraits):
1148 def isReg(self):
1149 return 1
1150
1151 def isControlReg(self):
1152 return 1
1153
1154 def makeConstructor(self, op_desc):
1155 c = ''
1156 if op_desc.is_src:
1157 c += '\n\t_srcRegIdx[%d] = %s_DepTag;' % \
1158 (op_desc.src_reg_idx, self.reg_spec)
1159 if op_desc.is_dest:
1160 c += '\n\t_destRegIdx[%d] = %s_DepTag;' % \
1161 (op_desc.dest_reg_idx, self.reg_spec)
1162 return c
1163
1164 def makeRead(self, op_desc):
1165 (size, type, is_signed) = operandSizeMap[op_desc.eff_ext]
1166 bit_select = 0
1167 if (type == 'float' or type == 'double'):
1168 error(0, 'Attempt to read control register as FP')
1169 base = 'xc->read%s()' % self.reg_spec
1170 if size == self.dflt_size:
1171 return '%s = %s;\n' % (op_desc.munged_name, base)
1172 else:
1173 return '%s = bits(%s, %d, 0);\n' % \
1174 (op_desc.munged_name, base, size-1)
1175
1176 def makeWrite(self, op_desc):
1177 (size, type, is_signed) = operandSizeMap[op_desc.eff_ext]
1178 if (type == 'float' or type == 'double'):
1179 error(0, 'Attempt to write control register as FP')
1180 wb = 'xc->set%s(%s);\n' % (self.reg_spec, op_desc.munged_name)
1181 wb += 'if (traceData) { traceData->setData(%s); }' % \
1182 op_desc.munged_name
1183 return wb
1184
1185 class MemOperandTraits(OperandTraits):
1186 def isMem(self):
1187 return 1
1188
1189 def makeConstructor(self, op_desc):
1190 return ''
1191
1192 def makeDecl(self, op_desc):
1193 (size, type, is_signed) = operandSizeMap[op_desc.eff_ext]
1194 # Note that initializations in the declarations are solely
1195 # to avoid 'uninitialized variable' errors from the compiler.
1196 # Declare memory data variable.
1197 c = '%s %s = 0;\n' % (type, op_desc.munged_name)
1198 # Declare var to hold memory access flags.
1199 c += 'unsigned %s_flags = memAccessFlags;\n' % op_desc.base_name
1200 # If this operand is a dest (i.e., it's a store operation),
1201 # then we need to declare a variable for the write result code
1202 # as well.
1203 if op_desc.is_dest:
1204 c += 'uint64_t %s_write_result = 0;\n' % op_desc.base_name
1205 return c
1206
1207 def makeRead(self, op_desc):
1208 (size, type, is_signed) = operandSizeMap[op_desc.eff_ext]
1209 eff_type = 'uint%d_t' % size
1210 return 'fault = xc->read(EA, (%s&)%s, %s_flags);\n' \
1211 % (eff_type, op_desc.munged_name, op_desc.base_name)
1212
1213 def makeWrite(self, op_desc):
1214 (size, type, is_signed) = operandSizeMap[op_desc.eff_ext]
1215 eff_type = 'uint%d_t' % size
1216 wb = 'fault = xc->write((%s&)%s, EA, %s_flags, &%s_write_result);\n' \
1217 % (eff_type, op_desc.munged_name, op_desc.base_name,
1218 op_desc.base_name)
1219 wb += 'if (traceData) { traceData->setData(%s); }' % \
1220 op_desc.munged_name
1221 return wb
1222
1223 class NPCOperandTraits(OperandTraits):
1224 def makeConstructor(self, op_desc):
1225 return ''
1226
1227 def makeRead(self, op_desc):
1228 return '%s = xc->readPC() + 4;\n' % op_desc.munged_name
1229
1230 def makeWrite(self, op_desc):
1231 return 'xc->setNextPC(%s);\n' % op_desc.munged_name
1232
1233
1234 exportContextSymbols = ('IntRegOperandTraits', 'FloatRegOperandTraits',
1235 'ControlRegOperandTraits', 'MemOperandTraits',
1236 'NPCOperandTraits', 'InstObjParams', 'CodeBlock',
1237 're', 'string')
1238
1239 exportContext = {}
1240
1241 def updateExportContext():
1242 exportContext.update(exportDict(*exportContextSymbols))
1243 exportContext.update(templateMap)
1244
1245
1246 def exportDict(*symNames):
1247 return dict([(s, eval(s)) for s in symNames])
1248
1249
1250 #
1251 # Define operand variables that get derived from the basic declaration
1252 # of ISA-specific operands in operandTraitsMap. This function must be
1253 # called by the ISA description file explicitly after defining
1254 # operandTraitsMap (in a 'let' block).
1255 #
1256 def defineDerivedOperandVars():
1257 global operands
1258 operands = operandTraitsMap.keys()
1259
1260 operandsREString = (r'''
1261 (?<![\w\.]) # neg. lookbehind assertion: prevent partial matches
1262 ((%s)(?:\.(\w+))?) # match: operand with optional '.' then suffix
1263 (?![\w\.]) # neg. lookahead assertion: prevent partial matches
1264 '''
1265 % string.join(operands, '|'))
1266
1267 global operandsRE
1268 operandsRE = re.compile(operandsREString, re.MULTILINE|re.VERBOSE)
1269
1270 # Same as operandsREString, but extension is mandatory, and only two
1271 # groups are returned (base and ext, not full name as above).
1272 # Used for subtituting '_' for '.' to make C++ identifiers.
1273 operandsWithExtREString = (r'(?<![\w\.])(%s)\.(\w+)(?![\w\.])'
1274 % string.join(operands, '|'))
1275
1276 global operandsWithExtRE
1277 operandsWithExtRE = re.compile(operandsWithExtREString, re.MULTILINE)
1278
1279
1280 #
1281 # Operand descriptor class. An instance of this class represents
1282 # a specific operand for a code block.
1283 #
1284 class OperandDescriptor:
1285 def __init__(self, full_name, base_name, ext, is_src, is_dest):
1286 self.full_name = full_name
1287 self.base_name = base_name
1288 self.ext = ext
1289 self.is_src = is_src
1290 self.is_dest = is_dest
1291 self.traits = operandTraitsMap[base_name]
1292 # The 'effective extension' (eff_ext) is either the actual
1293 # extension, if one was explicitly provided, or the default.
1294 # The 'munged name' replaces the '.' between the base and
1295 # extension (if any) with a '_' to make a legal C++ variable name.
1296 if ext:
1297 self.eff_ext = ext
1298 self.munged_name = base_name + '_' + ext
1299 else:
1300 self.eff_ext = self.traits.dflt_ext
1301 self.munged_name = base_name
1302
1303 # Finalize additional fields (primarily code fields). This step
1304 # is done separately since some of these fields may depend on the
1305 # register index enumeration that hasn't been performed yet at the
1306 # time of __init__().
1307 def finalize(self):
1308 self.flags = self.traits.getFlags(self)
1309 self.constructor = self.traits.makeConstructor(self)
1310 self.op_decl = self.traits.makeDecl(self)
1311
1312 if self.is_src:
1313 self.op_rd = self.traits.makeRead(self)
1314 else:
1315 self.op_rd = ''
1316
1317 if self.is_dest:
1318 self.op_wb = self.traits.makeWrite(self)
1319 else:
1320 self.op_wb = ''
1321
1322 class OperandDescriptorList:
1323 def __init__(self):
1324 self.items = []
1325 self.bases = {}
1326
1327 def __len__(self):
1328 return len(self.items)
1329
1330 def __getitem__(self, index):
1331 return self.items[index]
1332
1333 def append(self, op_desc):
1334 self.items.append(op_desc)
1335 self.bases[op_desc.base_name] = op_desc
1336
1337 def find_base(self, base_name):
1338 # like self.bases[base_name], but returns None if not found
1339 # (rather than raising exception)
1340 return self.bases.get(base_name)
1341
1342 # internal helper function for concat[Some]Attr{Strings|Lists}
1343 def __internalConcatAttrs(self, attr_name, filter, result):
1344 for op_desc in self.items:
1345 if filter(op_desc):
1346 result += getattr(op_desc, attr_name)
1347 return result
1348
1349 # return a single string that is the concatenation of the (string)
1350 # values of the specified attribute for all operands
1351 def concatAttrStrings(self, attr_name):
1352 return self.__internalConcatAttrs(attr_name, lambda x: 1, '')
1353
1354 # like concatAttrStrings, but only include the values for the operands
1355 # for which the provided filter function returns true
1356 def concatSomeAttrStrings(self, filter, attr_name):
1357 return self.__internalConcatAttrs(attr_name, filter, '')
1358
1359 # return a single list that is the concatenation of the (list)
1360 # values of the specified attribute for all operands
1361 def concatAttrLists(self, attr_name):
1362 return self.__internalConcatAttrs(attr_name, lambda x: 1, [])
1363
1364 # like concatAttrLists, but only include the values for the operands
1365 # for which the provided filter function returns true
1366 def concatSomeAttrLists(self, filter, attr_name):
1367 return self.__internalConcatAttrs(attr_name, filter, [])
1368
1369 def sort(self):
1370 self.items.sort(lambda a, b: a.traits.sort_pri - b.traits.sort_pri)
1371
1372 # Regular expression object to match C++ comments
1373 # (used in findOperands())
1374 commentRE = re.compile(r'//.*\n')
1375
1376 # Regular expression object to match assignment statements
1377 # (used in findOperands())
1378 assignRE = re.compile(r'\s*=(?!=)', re.MULTILINE)
1379
1380 #
1381 # Find all the operands in the given code block. Returns an operand
1382 # descriptor list (instance of class OperandDescriptorList).
1383 #
1384 def findOperands(code):
1385 operands = OperandDescriptorList()
1386 # delete comments so we don't accidentally match on reg specifiers inside
1387 code = commentRE.sub('', code)
1388 # search for operands
1389 next_pos = 0
1390 while 1:
1391 match = operandsRE.search(code, next_pos)
1392 if not match:
1393 # no more matches: we're done
1394 break
1395 op = match.groups()
1396 # regexp groups are operand full name, base, and extension
1397 (op_full, op_base, op_ext) = op
1398 # if the token following the operand is an assignment, this is
1399 # a destination (LHS), else it's a source (RHS)
1400 is_dest = (assignRE.match(code, match.end()) != None)
1401 is_src = not is_dest
1402 # see if we've already seen this one
1403 op_desc = operands.find_base(op_base)
1404 if op_desc:
1405 if op_desc.ext != op_ext:
1406 error(0, 'Inconsistent extensions for operand %s' % op_base)
1407 op_desc.is_src = op_desc.is_src or is_src
1408 op_desc.is_dest = op_desc.is_dest or is_dest
1409 else:
1410 # new operand: create new descriptor
1411 op_desc = OperandDescriptor(op_full, op_base, op_ext,
1412 is_src, is_dest)
1413 operands.append(op_desc)
1414 # start next search after end of current match
1415 next_pos = match.end()
1416 operands.sort()
1417 # enumerate source & dest register operands... used in building
1418 # constructor later
1419 srcRegs = 0
1420 destRegs = 0
1421 operands.numFPDestRegs = 0
1422 operands.numIntDestRegs = 0
1423 for op_desc in operands:
1424 if op_desc.traits.isReg():
1425 if op_desc.is_src:
1426 op_desc.src_reg_idx = srcRegs
1427 srcRegs += 1
1428 if op_desc.is_dest:
1429 op_desc.dest_reg_idx = destRegs
1430 destRegs += 1
1431 if op_desc.traits.isFloatReg():
1432 operands.numFPDestRegs += 1
1433 elif op_desc.traits.isIntReg():
1434 operands.numIntDestRegs += 1
1435 operands.numSrcRegs = srcRegs
1436 operands.numDestRegs = destRegs
1437 # now make a final pass to finalize op_desc fields that may depend
1438 # on the register enumeration
1439 for op_desc in operands:
1440 op_desc.finalize()
1441 return operands
1442
1443 # Munge operand names in code string to make legal C++ variable names.
1444 # (Will match munged_name attribute of OperandDescriptor object.)
1445 def substMungedOpNames(code):
1446 return operandsWithExtRE.sub(r'\1_\2', code)
1447
1448 def joinLists(t):
1449 return map(string.join, t)
1450
1451 def makeFlagConstructor(flag_list):
1452 if len(flag_list) == 0:
1453 return ''
1454 # filter out repeated flags
1455 flag_list.sort()
1456 i = 1
1457 while i < len(flag_list):
1458 if flag_list[i] == flag_list[i-1]:
1459 del flag_list[i]
1460 else:
1461 i += 1
1462 pre = '\n\tflags['
1463 post = '] = true;'
1464 code = pre + string.join(flag_list, post + pre) + post
1465 return code
1466
1467 class CodeBlock:
1468 def __init__(self, code):
1469 self.orig_code = code
1470 self.operands = findOperands(code)
1471 self.code = substMungedOpNames(substBitOps(code))
1472 self.constructor = self.operands.concatAttrStrings('constructor')
1473 self.constructor += \
1474 '\n\t_numSrcRegs = %d;' % self.operands.numSrcRegs
1475 self.constructor += \
1476 '\n\t_numDestRegs = %d;' % self.operands.numDestRegs
1477 self.constructor += \
1478 '\n\t_numFPDestRegs = %d;' % self.operands.numFPDestRegs
1479 self.constructor += \
1480 '\n\t_numIntDestRegs = %d;' % self.operands.numIntDestRegs
1481
1482 self.op_decl = self.operands.concatAttrStrings('op_decl')
1483
1484 is_mem = lambda op: op.traits.isMem()
1485 not_mem = lambda op: not op.traits.isMem()
1486
1487 self.op_rd = self.operands.concatAttrStrings('op_rd')
1488 self.op_wb = self.operands.concatAttrStrings('op_wb')
1489 self.op_mem_rd = \
1490 self.operands.concatSomeAttrStrings(is_mem, 'op_rd')
1491 self.op_mem_wb = \
1492 self.operands.concatSomeAttrStrings(is_mem, 'op_wb')
1493 self.op_nonmem_rd = \
1494 self.operands.concatSomeAttrStrings(not_mem, 'op_rd')
1495 self.op_nonmem_wb = \
1496 self.operands.concatSomeAttrStrings(not_mem, 'op_wb')
1497
1498 self.flags = self.operands.concatAttrLists('flags')
1499
1500 # Make a basic guess on the operand class (function unit type).
1501 # These are good enough for most cases, and will be overridden
1502 # later otherwise.
1503 if 'IsStore' in self.flags:
1504 self.op_class = 'MemWriteOp'
1505 elif 'IsLoad' in self.flags or 'IsPrefetch' in self.flags:
1506 self.op_class = 'MemReadOp'
1507 elif 'IsFloating' in self.flags:
1508 self.op_class = 'FloatAddOp'
1509 else:
1510 self.op_class = 'IntAluOp'
1511
1512 # Assume all instruction flags are of the form 'IsFoo'
1513 instFlagRE = re.compile(r'Is.*')
1514
1515 # OpClass constants end in 'Op' except No_OpClass
1516 opClassRE = re.compile(r'.*Op|No_OpClass')
1517
1518 class InstObjParams:
1519 def __init__(self, mnem, class_name, base_class = '',
1520 code_block = None, opt_args = []):
1521 self.mnemonic = mnem
1522 self.class_name = class_name
1523 self.base_class = base_class
1524 if code_block:
1525 for code_attr in code_block.__dict__.keys():
1526 setattr(self, code_attr, getattr(code_block, code_attr))
1527 else:
1528 self.constructor = ''
1529 self.flags = []
1530 # Optional arguments are assumed to be either StaticInst flags
1531 # or an OpClass value. To avoid having to import a complete
1532 # list of these values to match against, we do it ad-hoc
1533 # with regexps.
1534 for oa in opt_args:
1535 if instFlagRE.match(oa):
1536 self.flags.append(oa)
1537 elif opClassRE.match(oa):
1538 self.op_class = oa
1539 else:
1540 error(0, 'InstObjParams: optional arg "%s" not recognized '
1541 'as StaticInst::Flag or OpClass.' % oa)
1542
1543 # add flag initialization to contructor here to include
1544 # any flags added via opt_args
1545 self.constructor += makeFlagConstructor(self.flags)
1546
1547 # if 'IsFloating' is set, add call to the FP enable check
1548 # function (which should be provided by isa_desc via a declare)
1549 if 'IsFloating' in self.flags:
1550 self.fp_enable_check = 'fault = checkFpEnableFault(xc);'
1551 else:
1552 self.fp_enable_check = ''
1553
1554 #######################
1555 #
1556 # Output file template
1557 #
1558
1559 file_template = '''
1560 /*
1561 * Copyright (c) 2003
1562 * The Regents of The University of Michigan
1563 * All Rights Reserved
1564 *
1565 * This code is part of the M5 simulator, developed by Nathan Binkert,
1566 * Erik Hallnor, Steve Raasch, and Steve Reinhardt, with contributions
1567 * from Ron Dreslinski, Dave Greene, and Lisa Hsu.
1568 *
1569 * Permission is granted to use, copy, create derivative works and
1570 * redistribute this software and such derivative works for any
1571 * purpose, so long as the copyright notice above, this grant of
1572 * permission, and the disclaimer below appear in all copies made; and
1573 * so long as the name of The University of Michigan is not used in
1574 * any advertising or publicity pertaining to the use or distribution
1575 * of this software without specific, written prior authorization.
1576 *
1577 * THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION FROM THE
1578 * UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY PURPOSE, AND
1579 * WITHOUT WARRANTY BY THE UNIVERSITY OF MICHIGAN OF ANY KIND, EITHER
1580 * EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED
1581 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
1582 * PURPOSE. THE REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE
1583 * LIABLE FOR ANY DAMAGES, INCLUDING DIRECT, SPECIAL, INDIRECT,
1584 * INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM
1585 * ARISING OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN
1586 * IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF SUCH
1587 * DAMAGES.
1588 */
1589
1590 /*
1591 * DO NOT EDIT THIS FILE!!!
1592 *
1593 * It was automatically generated from the ISA description in %(filename)s
1594 */
1595
1596 %(includes)s
1597
1598 %(global_output)s
1599
1600 namespace %(namespace)s {
1601
1602 %(namespace_output)s
1603
1604 } // namespace %(namespace)s
1605 '''
1606
1607
1608 # Update the output file only if the new contents are different from
1609 # the current contents. Minimizes the files that need to be rebuilt
1610 # after minor changes.
1611 def update_if_needed(file, contents):
1612 update = False
1613 if os.access(file, os.R_OK):
1614 f = open(file, 'r')
1615 old_contents = f.read()
1616 f.close()
1617 if contents != old_contents:
1618 print 'Updating', file
1619 os.remove(file) # in case it's write-protected
1620 update = True
1621 else:
1622 print 'File', file, 'is unchanged'
1623 else:
1624 print 'Generating', file
1625 update = True
1626 if update:
1627 f = open(file, 'w')
1628 f.write(contents)
1629 f.close()
1630
1631 #
1632 # Read in and parse the ISA description.
1633 #
1634 def parse_isa_desc(isa_desc_file, output_dir, include_path):
1635 # set a global var for the input filename... used in error messages
1636 global input_filename
1637 input_filename = isa_desc_file
1638
1639 # Suck the ISA description file in.
1640 input = open(isa_desc_file)
1641 isa_desc = input.read()
1642 input.close()
1643
1644 # Parse it.
1645 (isa_name, namespace, global_code, namespace_code) = yacc.parse(isa_desc)
1646
1647 # grab the last three path components of isa_desc_file to put in
1648 # the output
1649 filename = '/'.join(isa_desc_file.split('/')[-3:])
1650
1651 # generate decoder.hh
1652 includes = '#include "base/bitfield.hh" // for bitfield support'
1653 global_output = global_code.header_output
1654 namespace_output = namespace_code.header_output
1655 update_if_needed(output_dir + '/decoder.hh', file_template % vars())
1656
1657 # generate decoder.cc
1658 includes = '#include "%s/decoder.hh"' % include_path
1659 global_output = global_code.decoder_output
1660 namespace_output = namespace_code.decoder_output
1661 namespace_output += namespace_code.decode_block
1662 update_if_needed(output_dir + '/decoder.cc', file_template % vars())
1663
1664 # generate per-cpu exec files
1665 for cpu in CpuModel.list:
1666 includes = '#include "%s/decoder.hh"\n' % include_path
1667 includes += cpu.includes
1668 global_output = global_code.exec_output[cpu.name]
1669 namespace_output = namespace_code.exec_output[cpu.name]
1670 update_if_needed(output_dir + '/' + cpu.filename,
1671 file_template % vars())
1672
1673 # Called as script: get args from command line.
1674 if __name__ == '__main__':
1675 parse_isa_desc(sys.argv[1], sys.argv[2], sys.argv[3])