src/hotspot/share/adlc/adlparse.cpp
author jbhateja
Tue, 26 Nov 2019 16:09:25 +0300
changeset 59278 8375560db76b
parent 52683 e017d2f176d0
permissions -rw-r--r--
8234394: C2: Dynamic register class support in ADLC Reviewed-by: vlivanov, sviswanathan, thartmann, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 35164
diff changeset
     2
 * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2154
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2154
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2154
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// ADLPARSE.CPP - Architecture Description Language Parser
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// Authors: Chris Vick and Mike Paleczny
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
#include "adlc.hpp"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
//----------------------------ADLParser----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// Create a new ADL parser
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
ADLParser::ADLParser(FileBuff& buffer, ArchDesc& archDesc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  : _buf(buffer), _AD(archDesc),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
    _globalNames(archDesc.globalNames()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  _AD._syntax_errs = _AD._semantic_errs = 0; // No errors so far this file
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  _AD._warnings    = 0;                      // No warnings either
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  _curline         = _ptr = NULL;            // No pointers into buffer yet
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  _preproc_depth = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  _preproc_not_taken = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  // Delimit command-line definitions from in-file definitions:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  _AD._preproc_list.add_signal();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
//------------------------------~ADLParser-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// Delete an ADL parser.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
ADLParser::~ADLParser() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  if (!_AD._quiet_mode)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    fprintf(stderr,"---------------------------- Errors and Warnings ----------------------------\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
#ifndef ASSERT
35164
80ecc1fdfbd6 8142909: Integration of minor fixes from the build-infra project
ihse
parents: 30202
diff changeset
    51
  if (!_AD._quiet_mode) {
80ecc1fdfbd6 8142909: Integration of minor fixes from the build-infra project
ihse
parents: 30202
diff changeset
    52
    fprintf(stderr, "**************************************************************\n");
80ecc1fdfbd6 8142909: Integration of minor fixes from the build-infra project
ihse
parents: 30202
diff changeset
    53
    fprintf(stderr, "***** WARNING: ASSERT is undefined, assertions disabled. *****\n");
80ecc1fdfbd6 8142909: Integration of minor fixes from the build-infra project
ihse
parents: 30202
diff changeset
    54
    fprintf(stderr, "**************************************************************\n");
80ecc1fdfbd6 8142909: Integration of minor fixes from the build-infra project
ihse
parents: 30202
diff changeset
    55
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  if( _AD._syntax_errs + _AD._semantic_errs + _AD._warnings == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    if (!_AD._quiet_mode)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
      fprintf(stderr,"No errors or warnings to report from phase-1 parse.\n" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    if( _AD._syntax_errs ) {      // Any syntax errors?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
      fprintf(stderr,"%s:  Found %d syntax error", _buf._fp->_name, _AD._syntax_errs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
      if( _AD._syntax_errs > 1 ) fprintf(stderr,"s.\n\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
      else fprintf(stderr,".\n\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    if( _AD._semantic_errs ) {    // Any semantic errors?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
      fprintf(stderr,"%s:  Found %d semantic error", _buf._fp->_name, _AD._semantic_errs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
      if( _AD._semantic_errs > 1 ) fprintf(stderr,"s.\n\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      else fprintf(stderr,".\n\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    if( _AD._warnings ) {         // Any warnings?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
      fprintf(stderr,"%s:  Found %d warning", _buf._fp->_name, _AD._warnings);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
      if( _AD._warnings > 1 ) fprintf(stderr,"s.\n\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
      else fprintf(stderr,".\n\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  if (!_AD._quiet_mode)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    fprintf(stderr,"-----------------------------------------------------------------------------\n");
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
    80
  _AD._TotalLines += linenum()-1;     // -1 for overshoot in "nextline" routine
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // Write out information we have stored
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // // UNIXism == fsync(stderr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
//------------------------------parse------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
// Each top-level keyword should appear as the first non-whitespace on a line.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
void ADLParser::parse() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  char *ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // Iterate over the lines in the file buffer parsing Level 1 objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  for( next_line(); _curline != NULL; next_line()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    _ptr = _curline;             // Reset ptr to start of new line
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    skipws();                    // Skip any leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    ident = get_ident();         // Get first token
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    if (ident == NULL) {         // Empty line
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
      continue;                  // Get the next line
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    }
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
   100
         if (!strcmp(ident, "instruct"))   instr_parse();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    else if (!strcmp(ident, "operand"))    oper_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    else if (!strcmp(ident, "opclass"))    opclass_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    else if (!strcmp(ident, "ins_attrib")) ins_attr_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    else if (!strcmp(ident, "op_attrib"))  op_attr_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    else if (!strcmp(ident, "source"))     source_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    else if (!strcmp(ident, "source_hpp")) source_hpp_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    else if (!strcmp(ident, "register"))   reg_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    else if (!strcmp(ident, "frame"))      frame_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    else if (!strcmp(ident, "encode"))     encode_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    else if (!strcmp(ident, "pipeline"))   pipe_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    else if (!strcmp(ident, "definitions")) definitions_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    else if (!strcmp(ident, "peephole"))   peep_parse();
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
   113
    else if (!strcmp(ident, "#line"))      preproc_line();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    else if (!strcmp(ident, "#define"))    preproc_define();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    else if (!strcmp(ident, "#undef"))     preproc_undef();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
      parse_err(SYNERR, "expected one of - instruct, operand, ins_attrib, op_attrib, source, register, pipeline, encode\n     Found %s",ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  }
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 11197
diff changeset
   120
  // Add reg_class spill_regs after parsing.
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 11197
diff changeset
   121
  RegisterForm *regBlock = _AD.get_registers();
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 11197
diff changeset
   122
  if (regBlock == NULL) {
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 11197
diff changeset
   123
    parse_err(SEMERR, "Did not declare 'register' definitions");
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 11197
diff changeset
   124
  }
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 11197
diff changeset
   125
  regBlock->addSpillRegClass();
59278
8375560db76b 8234394: C2: Dynamic register class support in ADLC
jbhateja
parents: 52683
diff changeset
   126
  regBlock->addDynamicRegClass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // Done with parsing, check consistency.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  if (_preproc_depth != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    parse_err(SYNERR, "End of file inside #ifdef");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  // AttributeForms ins_cost and op_cost must be defined for default behaviour
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  if (_globalNames[AttributeForm::_ins_cost] == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    parse_err(SEMERR, "Did not declare 'ins_cost' attribute");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  if (_globalNames[AttributeForm::_op_cost] == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    parse_err(SEMERR, "Did not declare 'op_cost' attribute");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
// ******************** Private Level 1 Parse Functions ********************
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
//------------------------------instr_parse------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
// Parse the contents of an instruction definition, build the InstructForm to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
// represent that instruction, and add it to the InstructForm list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
void ADLParser::instr_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  char          *ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  InstructForm  *instr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  MatchRule     *rule;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  int            match_rules_cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // First get the name of the instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  if( (ident = get_unique_ident(_globalNames,"instruction")) == NULL )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  instr = new InstructForm(ident); // Create new instruction form
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
   157
  instr->_linenum = linenum();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  _globalNames.Insert(ident, instr); // Add name to the name table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // Debugging Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  if (_AD._adl_debug > 1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    fprintf(stderr,"Parsing Instruction Form %s\n", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // Then get the operands
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    parse_err(SYNERR, "missing '(' in instruct definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // Parse the operand list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  else get_oplist(instr->_parameters, instr->_localNames);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  skipws();                        // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // Check for block delimiter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  if ( (_curchar != '%')
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
       || ( next_char(),  (_curchar != '{')) ) {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
   174
    parse_err(SYNERR, "missing '%%{' in instruction definition\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  next_char();                     // Maintain the invariant
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    ident = get_ident();           // Grab next identifier
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    if (ident == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
      parse_err(SYNERR, "keyword identifier expected at %c\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    if      (!strcmp(ident, "predicate")) instr->_predicate = pred_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    else if      (!strcmp(ident, "match")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
      // Allow one instruction have several match rules.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
      rule = instr->_matrule;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
      if (rule == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
        // This is first match rule encountered
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
        rule = match_parse(instr->_localNames);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
        if (rule) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
          instr->_matrule = rule;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
          // Special case the treatment of Control instructions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
          if( instr->is_ideal_control() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
            // Control instructions return a special result, 'Universe'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
            rule->_result = "Universe";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
          // Check for commutative operations with tree operands.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
          matchrule_clone_and_swap(rule, instr->_ident, match_rules_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
        // Find the end of the match rule list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
        while (rule->_next != NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
          rule = rule->_next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
        // Add the new match rule to the list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
        rule->_next = match_parse(instr->_localNames);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
        if (rule->_next) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
          rule = rule->_next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
          if( instr->is_ideal_control() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
            parse_err(SYNERR, "unique match rule expected for %s\n", rule->_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
          assert(match_rules_cnt < 100," too many match rule clones");
52583
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51050
diff changeset
   214
          char* buf = (char*) AllocateHeap(strlen(instr->_ident) + 4);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
          sprintf(buf, "%s_%d", instr->_ident, match_rules_cnt++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
          rule->_result = buf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
          // Check for commutative operations with tree operands.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
          matchrule_clone_and_swap(rule, instr->_ident, match_rules_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    else if (!strcmp(ident, "encode"))  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
      parse_err(SYNERR, "Instructions specify ins_encode, not encode\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    }
22844
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   225
    else if (!strcmp(ident, "ins_encode"))       ins_encode_parse(*instr);
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   226
    // Parse late expand keyword.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   227
    else if (!strcmp(ident, "postalloc_expand")) postalloc_expand_parse(*instr);
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   228
    else if (!strcmp(ident, "opcode"))           instr->_opcode    = opcode_parse(instr);
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   229
    else if (!strcmp(ident, "size"))             instr->_size      = size_parse(instr);
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   230
    else if (!strcmp(ident, "effect"))           effect_parse(instr);
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   231
    else if (!strcmp(ident, "expand"))           instr->_exprule   = expand_parse(instr);
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   232
    else if (!strcmp(ident, "rewrite"))          instr->_rewrule   = rewrite_parse();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    else if (!strcmp(ident, "constraint")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
      parse_err(SYNERR, "Instructions do not specify a constraint\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    else if (!strcmp(ident, "construct")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
      parse_err(SYNERR, "Instructions do not specify a construct\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    }
22844
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   239
    else if (!strcmp(ident, "format"))           instr->_format    = format_parse();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    else if (!strcmp(ident, "interface")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
      parse_err(SYNERR, "Instructions do not specify an interface\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    }
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
   243
    else if (!strcmp(ident, "ins_pipe"))        ins_pipe_parse(*instr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    else {  // Done with staticly defined parts of instruction definition
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
      // Check identifier to see if it is the name of an attribute
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
      const Form    *form = _globalNames[ident];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
      AttributeForm *attr = form ? form->is_attribute() : NULL;
22844
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   248
      if (attr && (attr->_atype == INS_ATTR)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
        // Insert the new attribute into the linked list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
        Attribute *temp = attr_parse(ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
        temp->_next = instr->_attribs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
        instr->_attribs = temp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
      } else {
22844
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   254
        parse_err(SYNERR, "expected one of:\n predicate, match, encode, or the name of"
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   255
                  " an instruction attribute at %s\n", ident);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  } while(_curchar != '%');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  if (_curchar != '}') {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
   262
    parse_err(SYNERR, "missing '%%}' in instruction definition\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  // Check for "Set" form of chain rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  adjust_set_rule(instr);
22844
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   267
  if (_AD._pipeline) {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   268
    // No pipe required for late expand.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   269
    if (instr->expands() || instr->postalloc_expands()) {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   270
      if (instr->_ins_pipe) {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   271
        parse_err(WARN, "ins_pipe and expand rule both specified for instruction \"%s\";"
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   272
                  " ins_pipe will be unused\n", instr->_ident);
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   273
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    } else {
22844
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   275
      if (!instr->_ins_pipe) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
        parse_err(WARN, "No ins_pipe specified for instruction \"%s\"\n", instr->_ident);
22844
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
   277
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  // Add instruction to tail of instruction list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  _AD.addForm(instr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  // Create instruction form for each additional match rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  rule = instr->_matrule;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  if (rule != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
    rule = rule->_next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    while (rule != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
      ident = (char*)rule->_result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
      InstructForm *clone = new InstructForm(ident, instr, rule); // Create new instruction form
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
      _globalNames.Insert(ident, clone); // Add name to the name table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
      // Debugging Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
      if (_AD._adl_debug > 1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
        fprintf(stderr,"Parsing Instruction Form %s\n", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
      // Check for "Set" form of chain rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
      adjust_set_rule(clone);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
      // Add instruction to tail of instruction list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
      _AD.addForm(clone);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
      rule = rule->_next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
      clone->_matrule->_next = NULL; // One match rule per clone
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
//------------------------------matchrule_clone_and_swap-----------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
// Check for commutative operations with subtree operands,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
// create clones and swap operands.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
void ADLParser::matchrule_clone_and_swap(MatchRule* rule, const char* instr_ident, int& match_rules_cnt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  // Check for commutative operations with tree operands.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  int count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  rule->count_commutative_op(count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  if (count > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    // Clone match rule and swap commutative operation's operands.
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
   313
    rule->matchrule_swap_commutative_op(instr_ident, count, match_rules_cnt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
//------------------------------adjust_set_rule--------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
// Check for "Set" form of chain rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
void ADLParser::adjust_set_rule(InstructForm *instr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  if (instr->_matrule == NULL || instr->_matrule->_rChild == NULL) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  const char *rch = instr->_matrule->_rChild->_opType;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  const Form *frm = _globalNames[rch];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  if( (! strcmp(instr->_matrule->_opType,"Set")) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
      frm && frm->is_operand() && (! frm->ideal_only()) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
    // Previous implementation, which missed leaP*, but worked for loadCon*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    unsigned    position = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
    const char *result   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    const char *name     = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
    const char *optype   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
    MatchNode  *right    = instr->_matrule->_rChild;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    if (right->base_operand(position, _globalNames, result, name, optype)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
      position = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
      const char *result2  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
      const char *name2    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
      const char *optype2  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
      // Can not have additional base operands in right side of match!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
      if ( ! right->base_operand( position, _globalNames, result2, name2, optype2) ) {
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
   338
        if (instr->_predicate != NULL)
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
   339
          parse_err(SYNERR, "ADLC does not support instruction chain rules with predicates");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
        // Chain from input  _ideal_operand_type_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
        // Needed for shared roots of match-trees
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
        ChainList *lst = (ChainList *)_AD._chainRules[optype];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
        if (lst == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
          lst = new ChainList();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
          _AD._chainRules.Insert(optype, lst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
        if (!lst->search(instr->_matrule->_lChild->_opType)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
          const char *cost = instr->cost();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
          if (cost == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
            cost = ((AttributeForm*)_globalNames[AttributeForm::_ins_cost])->_attrdef;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
          // The ADLC does not support chaining from the ideal operand type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
          // of a predicated user-defined operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
          if( frm->is_operand() == NULL || frm->is_operand()->_predicate == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
            lst->insert(instr->_matrule->_lChild->_opType,cost,instr->_ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
        // Chain from input  _user_defined_operand_type_,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
        lst = (ChainList *)_AD._chainRules[result];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
        if (lst == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
          lst = new ChainList();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
          _AD._chainRules.Insert(result, lst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
        if (!lst->search(instr->_matrule->_lChild->_opType)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
          const char *cost = instr->cost();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
          if (cost == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
            cost = ((AttributeForm*)_globalNames[AttributeForm::_ins_cost])->_attrdef;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
          // It is safe to chain from the top-level user-defined operand even
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
          // if it has a predicate, since the predicate is checked before
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
          // the user-defined type is available.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
          lst->insert(instr->_matrule->_lChild->_opType,cost,instr->_ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
        // May have instruction chain rule if root of right-tree is an ideal
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
        OperandForm *rightOp = _globalNames[right->_opType]->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
        if( rightOp ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
          const Form *rightRoot = _globalNames[rightOp->_matrule->_opType];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
          if( rightRoot && rightRoot->ideal_only() ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
            const char *chain_op = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
            if( rightRoot->is_instruction() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
              chain_op = rightOp->_ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
            if( chain_op ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
              // Look-up the operation in chain rule table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
              ChainList *lst = (ChainList *)_AD._chainRules[chain_op];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
              if (lst == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
                lst = new ChainList();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
                _AD._chainRules.Insert(chain_op, lst);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
              // if (!lst->search(instr->_matrule->_lChild->_opType)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
              const char *cost = instr->cost();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
              if (cost == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
                cost = ((AttributeForm*)_globalNames[AttributeForm::_ins_cost])->_attrdef;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
              // This chains from a top-level operand whose predicate, if any,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
              // has been checked.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
              lst->insert(instr->_matrule->_lChild->_opType,cost,instr->_ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
              // }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
      } // end chain rule from right-tree's ideal root
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
//------------------------------oper_parse-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
void ADLParser::oper_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  char          *ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  OperandForm   *oper;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  AttributeForm *attr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  MatchRule     *rule;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  // First get the name of the operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  if( (ident = get_unique_ident(_globalNames,"operand")) == NULL )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  oper = new OperandForm(ident);        // Create new operand form
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
   420
  oper->_linenum = linenum();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  _globalNames.Insert(ident, oper); // Add name to the name table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  // Debugging Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  if (_AD._adl_debug > 1) fprintf(stderr,"Parsing Operand Form %s\n", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  // Get the component operands
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
    parse_err(SYNERR, "missing '(' in operand definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  else get_oplist(oper->_parameters, oper->_localNames); // Parse the component operand list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  // Check for block delimiter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  if ((_curchar != '%') || (*(_ptr+1) != '{')) { // If not open block
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
   436
    parse_err(SYNERR, "missing '%%{' in operand definition\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  next_char(); next_char();        // Skip over "%{" symbol
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
    ident = get_ident();           // Grab next identifier
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
    if (ident == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
      parse_err(SYNERR, "keyword identifier expected at %c\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
    if      (!strcmp(ident, "predicate")) oper->_predicate = pred_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
    else if (!strcmp(ident, "match"))     {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
      // Find the end of the match rule list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
      rule = oper->_matrule;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
      if (rule) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
        while (rule->_next) rule = rule->_next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
        // Add the new match rule to the list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
        rule->_next = match_parse(oper->_localNames);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
        if (rule->_next) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
          rule->_next->_result = oper->_ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
      else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
        // This is first match rule encountered
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
        oper->_matrule = match_parse(oper->_localNames);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
        if (oper->_matrule) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
          oper->_matrule->_result = oper->_ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    else if (!strcmp(ident, "encode"))    oper->_interface = interface_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    else if (!strcmp(ident, "ins_encode")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
      parse_err(SYNERR, "Operands specify 'encode', not 'ins_encode'\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
    else if (!strcmp(ident, "opcode"))    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
      parse_err(SYNERR, "Operands do not specify an opcode\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
    else if (!strcmp(ident, "effect"))    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
      parse_err(SYNERR, "Operands do not specify an effect\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
    else if (!strcmp(ident, "expand"))    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
      parse_err(SYNERR, "Operands do not specify an expand\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
    else if (!strcmp(ident, "rewrite"))   {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
      parse_err(SYNERR, "Operands do not specify a rewrite\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
    else if (!strcmp(ident, "constraint"))oper->_constraint= constraint_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
    else if (!strcmp(ident, "construct")) oper->_construct = construct_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
    else if (!strcmp(ident, "format"))    oper->_format    = format_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
    else if (!strcmp(ident, "interface")) oper->_interface = interface_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
    // Check identifier to see if it is the name of an attribute
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    else if (((attr = _globalNames[ident]->is_attribute()) != NULL) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
             (attr->_atype == OP_ATTR))   oper->_attribs   = attr_parse(ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
    else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
      parse_err(SYNERR, "expected one of - constraint, predicate, match, encode, format, construct, or the name of a defined operand attribute at %s\n", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  } while(_curchar != '%');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  if (_curchar != '}') {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
   496
    parse_err(SYNERR, "missing '%%}' in operand definition\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  // Add operand to tail of operand list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  _AD.addForm(oper);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
//------------------------------opclass_parse----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
// Operand Classes are a block with a comma delimited list of operand names
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
void ADLParser::opclass_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  char          *ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  OpClassForm   *opc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  OperandForm   *opForm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  // First get the name of the operand class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  if( (ident = get_unique_ident(_globalNames,"opclass")) == NULL )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  opc = new OpClassForm(ident);             // Create new operand class form
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  _globalNames.Insert(ident, opc);  // Add name to the name table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  // Debugging Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  if (_AD._adl_debug > 1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
    fprintf(stderr,"Parsing Operand Class Form %s\n", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  // Get the list of operands
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
    parse_err(SYNERR, "missing '(' in operand definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
    next_char();                            // Skip past open paren or comma
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
    ident = get_ident();                    // Grab next identifier
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
    if (ident == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
      parse_err(SYNERR, "keyword identifier expected at %c\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
    // Check identifier to see if it is the name of an operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    const Form *form = _globalNames[ident];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
    opForm     = form ? form->is_operand() : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    if ( opForm ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
      opc->_oplst.addName(ident);           // Add operand to opclass list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
      opForm->_classes.addName(opc->_ident);// Add opclass to operand list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
      parse_err(SYNERR, "expected name of a defined operand at %s\n", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
    skipws();                               // skip trailing whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  } while (_curchar == ',');                // Check for the comma
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  // Check for closing ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  if (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
    parse_err(SYNERR, "missing ')' or ',' in opclass definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  next_char();                              // Consume the ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  // Check for closing ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
    parse_err(SYNERR, "missing ';' in opclass definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  next_char();                             // Consume the ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  // Add operand to tail of operand list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  _AD.addForm(opc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
//------------------------------ins_attr_parse---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
void ADLParser::ins_attr_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  char          *ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  char          *aexpr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  AttributeForm *attrib;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  // get name for the instruction attribute
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  skipws();                      // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  if( (ident = get_unique_ident(_globalNames,"inst_attrib")) == NULL )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  // Debugging Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  if (_AD._adl_debug > 1) fprintf(stderr,"Parsing Ins_Attribute Form %s\n", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  // Get default value of the instruction attribute
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  skipws();                      // Skip whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  if ((aexpr = get_paren_expr("attribute default expression string")) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
    parse_err(SYNERR, "missing '(' in ins_attrib definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  if (_AD._adl_debug > 1) fprintf(stderr,"Attribute Expression: %s\n", aexpr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  // Check for terminator
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
    parse_err(SYNERR, "missing ';' in ins_attrib definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  next_char();                    // Advance past the ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  // Construct the attribute, record global name, and store in ArchDesc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  attrib = new AttributeForm(ident, INS_ATTR, aexpr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  _globalNames.Insert(ident, attrib);  // Add name to the name table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  _AD.addForm(attrib);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
//------------------------------op_attr_parse----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
void ADLParser::op_attr_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  char          *ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  char          *aexpr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  AttributeForm *attrib;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
  // get name for the operand attribute
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  skipws();                      // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  if( (ident = get_unique_ident(_globalNames,"op_attrib")) == NULL )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  // Debugging Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  if (_AD._adl_debug > 1) fprintf(stderr,"Parsing Op_Attribute Form %s\n", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  // Get default value of the instruction attribute
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  skipws();                      // Skip whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  if ((aexpr = get_paren_expr("attribute default expression string")) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
    parse_err(SYNERR, "missing '(' in op_attrib definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  if (_AD._adl_debug > 1) fprintf(stderr,"Attribute Expression: %s\n", aexpr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  // Check for terminator
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
    parse_err(SYNERR, "missing ';' in op_attrib definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  next_char();                    // Advance past the ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  // Construct the attribute, record global name, and store in ArchDesc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  attrib = new AttributeForm(ident, OP_ATTR, aexpr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  _globalNames.Insert(ident, attrib);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  _AD.addForm(attrib);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
//------------------------------definitions_parse-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
void ADLParser::definitions_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  skipws();                       // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  if (_curchar == '%' && *(_ptr+1) == '{') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
    next_char(); next_char();     // Skip "%{"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
    while (_curchar != '%' && *(_ptr+1) != '}') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
      // Process each definition until finding closing string "%}"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
      char *token = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
      if (token == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
        parse_err(SYNERR, "missing identifier inside definitions block.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
      if (strcmp(token,"int_def")==0)     { int_def_parse(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
      // if (strcmp(token,"str_def")==0)   { str_def_parse(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    parse_err(SYNERR, "Missing %%{ ... %%} block after definitions keyword.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
//------------------------------int_def_parse----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
// Parse Example:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
// int_def    MEMORY_REF_COST      (         200,  DEFAULT_COST * 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
// <keyword>  <name>               ( <int_value>,   <description>  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
void ADLParser::int_def_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  char *name        = NULL;         // Name of definition
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  char *value       = NULL;         // its value,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  int   int_value   = -1;           // positive values only
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  char *description = NULL;         // textual description
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  // Get definition name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  skipws();                      // Skip whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  name = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  if (name == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
    parse_err(SYNERR, "missing definition name after int_def\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  // Check for value of int_def dname( integer_value [, string_expression ] )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  if (_curchar == '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
    // Parse the integer value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
    value = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
    if (value == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
      parse_err(SYNERR, "missing value in int_def\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
    if( !is_int_token(value, int_value) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
      parse_err(SYNERR, "value in int_def is not recognized as integer\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
    // Check for description
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
    if (_curchar == ',') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
      next_char();   // skip ','
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
      description = get_expr("int_def description", ")");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
      if (description == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
        parse_err(SYNERR, "invalid or missing description in int_def\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
      trim(description);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
    if (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
      parse_err(SYNERR, "missing ')' in register definition statement\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  // Check for closing ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
    parse_err(SYNERR, "missing ';' after int_def\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  next_char();                   // move past ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  if (_AD._adl_debug > 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
    fprintf(stderr,"int_def: %s ( %s, %s )\n", name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
            (value), (description ? description : ""));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  // Record new definition.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
  Expr *expr     = new Expr(name, description, int_value, int_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  const Expr *old_expr = _AD.globalDefs().define(name, expr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  if (old_expr != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
    parse_err(SYNERR, "Duplicate definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
//------------------------------source_parse-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
void ADLParser::source_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  SourceForm *source;             // Encode class for instruction/operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  char   *rule = NULL;            // String representation of encode rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  skipws();                       // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  if ( (rule = find_cpp_block("source block")) == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
    parse_err(SYNERR, "incorrect or missing block for 'source'.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  if (_AD._adl_debug > 1) fprintf(stderr,"Source Form: %s\n", rule);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
  source = new SourceForm(rule);    // Build new Source object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  _AD.addForm(source);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
  // skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
//------------------------------source_hpp_parse-------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
// Parse a source_hpp %{ ... %} block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
// The code gets stuck into the ad_<arch>.hpp file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
// If the source_hpp block appears before the register block in the AD
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
// file, it goes up at the very top of the ad_<arch>.hpp file, so that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
// it can be used by register encodings, etc.  Otherwise, it goes towards
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
// the bottom, where it's useful as a global definition to *.cpp files.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
void ADLParser::source_hpp_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  char   *rule = NULL;            // String representation of encode rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  skipws();                       // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  if ( (rule = find_cpp_block("source_hpp block")) == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
    parse_err(SYNERR, "incorrect or missing block for 'source_hpp'.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  if (_AD._adl_debug > 1) fprintf(stderr,"Header Form: %s\n", rule);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  if (_AD.get_registers() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
    // Very early in the file, before reg_defs, we collect pre-headers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
    PreHeaderForm* pre_header = new PreHeaderForm(rule);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
    _AD.addForm(pre_header);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
    // Normally, we collect header info, placed at the bottom of the hpp file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
    HeaderForm* header = new HeaderForm(rule);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
    _AD.addForm(header);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
//------------------------------reg_parse--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
void ADLParser::reg_parse(void) {
13104
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 11197
diff changeset
   787
  RegisterForm *regBlock = _AD.get_registers(); // Information about registers encoding
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 11197
diff changeset
   788
  if (regBlock == NULL) {
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 11197
diff changeset
   789
    // Create the RegisterForm for the architecture description.
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 11197
diff changeset
   790
    regBlock = new RegisterForm();    // Build new Source object
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 11197
diff changeset
   791
    _AD.addForm(regBlock);
657b387034fb 7119644: Increase superword's vector size up to 256 bits
kvn
parents: 11197
diff changeset
   792
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
  skipws();                       // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  if (_curchar == '%' && *(_ptr+1) == '{') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
    next_char(); next_char();     // Skip "%{"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
    while (_curchar != '%' && *(_ptr+1) != '}') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
      char *token = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
      if (token == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
        parse_err(SYNERR, "missing identifier inside register block.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
      }
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
   804
      if (strcmp(token,"reg_def")==0)          { reg_def_parse(); }
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
   805
      else if (strcmp(token,"reg_class")==0)   { reg_class_parse(); }
30202
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
   806
      else if (strcmp(token, "reg_class_dynamic") == 0) { reg_class_dynamic_parse(); }
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
   807
      else if (strcmp(token,"alloc_class")==0) { alloc_class_parse(); }
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
   808
      else if (strcmp(token,"#define")==0)     { preproc_define(); }
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
   809
      else { parse_err(SYNERR, "bad token %s inside register block.\n", token); break; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
    parse_err(SYNERR, "Missing %c{ ... %c} block after register keyword.\n",'%','%');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
//------------------------------encode_parse-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
void ADLParser::encode_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
  EncodeForm *encBlock;         // Information about instruction/operand encoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
  _AD.getForm(&encBlock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
  if ( encBlock == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
    // Create the EncodeForm for the architecture description.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
    encBlock = new EncodeForm();    // Build new Source object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
    _AD.addForm(encBlock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
  skipws();                       // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  if (_curchar == '%' && *(_ptr+1) == '{') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
    next_char(); next_char();     // Skip "%{"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
    while (_curchar != '%' && *(_ptr+1) != '}') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
      char *token = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
      if (token == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
            parse_err(SYNERR, "missing identifier inside encoding block.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
      if (strcmp(token,"enc_class")==0)   { enc_class_parse(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
    parse_err(SYNERR, "Missing %c{ ... %c} block after encode keyword.\n",'%','%');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
//------------------------------enc_class_parse--------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
void ADLParser::enc_class_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
  char       *ec_name;           // Name of encoding class being defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  // Get encoding class name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
  skipws();                      // Skip whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
  ec_name = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
  if (ec_name == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
    parse_err(SYNERR, "missing encoding class name after encode.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  EncClass  *encoding = _AD._encode->add_EncClass(ec_name);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
   863
  encoding->_linenum = linenum();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
  skipws();                      // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
  // Check for optional parameter list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
  if (_curchar == '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
    do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
      char *pType = NULL;        // parameter type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
      char *pName = NULL;        // parameter name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
      next_char();               // skip open paren & comma characters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
      if (_curchar == ')') break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
      // Get parameter type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
      pType = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
      if (pType == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
        parse_err(SYNERR, "parameter type expected at %c\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
      // Get parameter name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
      pName = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
      if (pName == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
        parse_err(SYNERR, "parameter name expected at %c\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
      // Record parameter type and name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
      encoding->add_parameter( pType, pName );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
    } while(_curchar == ',');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
    if (_curchar != ')') parse_err(SYNERR, "missing ')'\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
    else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
      next_char();                  // Skip ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
  } // Done with parameter list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
  // Check for block starting delimiters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  if ((_curchar != '%') || (*(_ptr+1) != '{')) { // If not open block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
    parse_err(SYNERR, "missing '%c{' in enc_class definition\n", '%');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  next_char();                      // Skip '%'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  next_char();                      // Skip '{'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  enc_class_parse_block(encoding, ec_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
void ADLParser::enc_class_parse_block(EncClass* encoding, char* ec_name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  skipws_no_preproc();              // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
  // Prepend location descriptor, for debugging; cf. ADLParser::find_cpp_block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
  if (_AD._adlocation_debug) {
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
   920
    encoding->add_code(get_line_string());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
  // Collect the parts of the encode description
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
  // (1) strings that are passed through to output
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
  // (2) replacement/substitution variable, preceeded by a '$'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
  while ( (_curchar != '%') && (*(_ptr+1) != '}') ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
    // (1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
    // Check if there is a string to pass through to output
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
    char *start = _ptr;       // Record start of the next string
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
    while ((_curchar != '$') && ((_curchar != '%') || (*(_ptr+1) != '}')) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
      // If at the start of a comment, skip past it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
      if( (_curchar == '/') && ((*(_ptr+1) == '/') || (*(_ptr+1) == '*')) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
        skipws_no_preproc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
        // ELSE advance to the next character, or start of the next line
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
        next_char_or_line();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
    // If a string was found, terminate it and record in EncClass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
    if ( start != _ptr ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
      *_ptr  = '\0';          // Terminate the string
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
      encoding->add_code(start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
    // (2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
    // If we are at a replacement variable,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
    // copy it and record in EncClass
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
   949
    if (_curchar == '$') {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
      // Found replacement Variable
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
   951
      char* rep_var = get_rep_var_ident_dup();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
      // Add flag to _strings list indicating we should check _rep_vars
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
      encoding->add_rep_var(rep_var);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  } // end while part of format description
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  next_char();                      // Skip '%'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
  next_char();                      // Skip '}'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
   961
  if (_AD._adlocation_debug) {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
   962
    encoding->add_code(end_line_marker());
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
   963
  }
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
   964
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
  if (_AD._adl_debug > 1) fprintf(stderr,"EncodingClass Form: %s\n", ec_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
//------------------------------frame_parse-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
void ADLParser::frame_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
  FrameForm  *frame;              // Information about stack-frame layout
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
  char       *desc = NULL;        // String representation of frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
  skipws();                       // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
  frame = new FrameForm();        // Build new Frame object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
  // Check for open block sequence
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
  skipws();                       // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
  if (_curchar == '%' && *(_ptr+1) == '{') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
    next_char(); next_char();     // Skip "%{"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
    while (_curchar != '%' && *(_ptr+1) != '}') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
      char *token = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
      if (token == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
            parse_err(SYNERR, "missing identifier inside frame block.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
            return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
      if (strcmp(token,"stack_direction")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
        stack_dir_parse(frame);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
      if (strcmp(token,"sync_stack_slots")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
        sync_stack_slots_parse(frame);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
      if (strcmp(token,"frame_pointer")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
        frame_pointer_parse(frame, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
      if (strcmp(token,"interpreter_frame_pointer")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
        interpreter_frame_pointer_parse(frame, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
      if (strcmp(token,"inline_cache_reg")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
        inline_cache_parse(frame, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
      if (strcmp(token,"compiler_method_oop_reg")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
        parse_err(WARN, "Using obsolete Token, compiler_method_oop_reg");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
        skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
      if (strcmp(token,"interpreter_method_oop_reg")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
        interpreter_method_oop_parse(frame, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
      if (strcmp(token,"cisc_spilling_operand_name")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
        cisc_spilling_operand_name_parse(frame, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
      if (strcmp(token,"stack_alignment")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
        stack_alignment_parse(frame);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
      if (strcmp(token,"return_addr")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
        return_addr_parse(frame, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
      if (strcmp(token,"in_preserve_stack_slots")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
        preserve_stack_parse(frame);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
      if (strcmp(token,"out_preserve_stack_slots")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
        parse_err(WARN, "Using obsolete token, out_preserve_stack_slots");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
        skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
      if (strcmp(token,"varargs_C_out_slots_killed")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
        frame->_varargs_C_out_slots_killed = parse_one_arg("varargs C out slots killed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
      if (strcmp(token,"calling_convention")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
        frame->_calling_convention = calling_convention_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
      if (strcmp(token,"return_value")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
        frame->_return_value = return_value_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
      if (strcmp(token,"c_frame_pointer")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
        frame_pointer_parse(frame, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
      if (strcmp(token,"c_return_addr")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
        return_addr_parse(frame, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
      if (strcmp(token,"c_calling_convention")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
        frame->_c_calling_convention = calling_convention_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
      if (strcmp(token,"c_return_value")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
        frame->_c_return_value = return_value_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
    parse_err(SYNERR, "Missing %c{ ... %c} block after encode keyword.\n",'%','%');
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
  // All Java versions are required, native versions are optional
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
  if(frame->_frame_pointer == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
    parse_err(SYNERR, "missing frame pointer definition in frame section.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
  // !!!!! !!!!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  // if(frame->_interpreter_frame_ptr_reg == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
  //   parse_err(SYNERR, "missing interpreter frame pointer definition in frame section.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
  //   return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  // }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
  if(frame->_alignment == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
    parse_err(SYNERR, "missing alignment definition in frame section.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
  if(frame->_return_addr == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
    parse_err(SYNERR, "missing return address location in frame section.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
  if(frame->_in_preserve_slots == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
    parse_err(SYNERR, "missing stack slot preservation definition in frame section.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
  if(frame->_varargs_C_out_slots_killed == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
    parse_err(SYNERR, "missing varargs C out slots killed definition in frame section.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
  if(frame->_calling_convention == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
    parse_err(SYNERR, "missing calling convention definition in frame section.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
  if(frame->_return_value == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
    parse_err(SYNERR, "missing return value definition in frame section.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
  // Fill natives in identically with the Java versions if not present.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
  if(frame->_c_frame_pointer == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
    frame->_c_frame_pointer = frame->_frame_pointer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
  if(frame->_c_return_addr == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
    frame->_c_return_addr = frame->_return_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
    frame->_c_return_addr_loc = frame->_return_addr_loc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
  if(frame->_c_calling_convention == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
    frame->_c_calling_convention = frame->_calling_convention;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
  if(frame->_c_return_value == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
    frame->_c_return_value = frame->_return_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
  if (_AD._adl_debug > 1) fprintf(stderr,"Frame Form: %s\n", desc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
  // Create the EncodeForm for the architecture description.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
  _AD.addForm(frame);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
  // skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
//------------------------------stack_dir_parse--------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
void ADLParser::stack_dir_parse(FrameForm *frame) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
  char *direction = parse_one_arg("stack direction entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
  if (strcmp(direction, "TOWARDS_LOW") == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
    frame->_direction = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
  else if (strcmp(direction, "TOWARDS_HIGH") == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
    frame->_direction = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
    parse_err(SYNERR, "invalid value inside stack direction entry.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
//------------------------------sync_stack_slots_parse-------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
void ADLParser::sync_stack_slots_parse(FrameForm *frame) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
    // Assign value into frame form
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
    frame->_sync_stack_slots = parse_one_arg("sync stack slots entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
//------------------------------frame_pointer_parse----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
void ADLParser::frame_pointer_parse(FrameForm *frame, bool native) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
  char *frame_pointer = parse_one_arg("frame pointer entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
  // Assign value into frame form
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
  if (native) { frame->_c_frame_pointer = frame_pointer; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
  else        { frame->_frame_pointer   = frame_pointer; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
//------------------------------interpreter_frame_pointer_parse----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
void ADLParser::interpreter_frame_pointer_parse(FrameForm *frame, bool native) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
  frame->_interpreter_frame_pointer_reg = parse_one_arg("interpreter frame pointer entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
//------------------------------inline_cache_parse-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
void ADLParser::inline_cache_parse(FrameForm *frame, bool native) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
  frame->_inline_cache_reg = parse_one_arg("inline cache reg entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
//------------------------------interpreter_method_oop_parse------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
void ADLParser::interpreter_method_oop_parse(FrameForm *frame, bool native) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
  frame->_interpreter_method_oop_reg = parse_one_arg("method oop reg entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
//------------------------------cisc_spilling_operand_parse---------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
void ADLParser::cisc_spilling_operand_name_parse(FrameForm *frame, bool native) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
  frame->_cisc_spilling_operand_name = parse_one_arg("cisc spilling operand name");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
//------------------------------stack_alignment_parse--------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
void ADLParser::stack_alignment_parse(FrameForm *frame) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
  char *alignment = parse_one_arg("stack alignment entry");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
  // Assign value into frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
  frame->_alignment   = alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
//------------------------------parse_one_arg-------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
char *ADLParser::parse_one_arg(const char *description) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
  char *token = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
  if(_curchar == '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
    token = get_expr(description, ")");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
    if (token == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
      parse_err(SYNERR, "missing value inside %s.\n", description);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
    next_char();           // skip the close paren
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
    if(_curchar != ';') {  // check for semi-colon
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
      parse_err(SYNERR, "missing %c in.\n", ';', description);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
    next_char();           // skip the semi-colon
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
    parse_err(SYNERR, "Missing %c in.\n", '(', description);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
  trim(token);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
  return token;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
//------------------------------return_addr_parse------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
void ADLParser::return_addr_parse(FrameForm *frame, bool native) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
  bool in_register  = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
  if(_curchar == '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
    char *token = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
    if (token == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
      parse_err(SYNERR, "missing value inside return address entry.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
    // check for valid values for stack/register
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
    if (strcmp(token, "REG") == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
      in_register = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
    else if (strcmp(token, "STACK") == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
      in_register = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
    else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
      parse_err(SYNERR, "invalid value inside return_address entry.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
    if (native) { frame->_c_return_addr_loc = in_register; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
    else        { frame->_return_addr_loc   = in_register; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
    // Parse expression that specifies register or stack position
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
    char *token2 = get_expr("return address entry", ")");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
    if (token2 == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
      parse_err(SYNERR, "missing value inside return address entry.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
    next_char();           // skip the close paren
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
    if (native) { frame->_c_return_addr = token2; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
    else        { frame->_return_addr   = token2; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
    if(_curchar != ';') {  // check for semi-colon
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
      parse_err(SYNERR, "missing %c in return address entry.\n", ';');
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
    next_char();           // skip the semi-colon
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
    parse_err(SYNERR, "Missing %c in return_address entry.\n", '(');
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
//------------------------------preserve_stack_parse---------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
void ADLParser::preserve_stack_parse(FrameForm *frame) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
  if(_curchar == '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
    char *token = get_paren_expr("preserve_stack_slots");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
    frame->_in_preserve_slots   = token;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
    if(_curchar != ';') {  // check for semi-colon
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
      parse_err(SYNERR, "missing %c in preserve stack slot entry.\n", ';');
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
    next_char();           // skip the semi-colon
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
    parse_err(SYNERR, "Missing %c in preserve stack slot entry.\n", '(');
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
//------------------------------calling_convention_parse-----------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
char *ADLParser::calling_convention_parse() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
  char   *desc = NULL;          // String representation of calling_convention
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
  skipws();                     // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
  if ( (desc = find_cpp_block("calling convention block")) == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
    parse_err(SYNERR, "incorrect or missing block for 'calling_convention'.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
  return desc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
//------------------------------return_value_parse-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
char *ADLParser::return_value_parse() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
  char   *desc = NULL;          // String representation of calling_convention
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
  skipws();                     // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
  if ( (desc = find_cpp_block("return value block")) == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
    parse_err(SYNERR, "incorrect or missing block for 'return_value'.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
  return desc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
//------------------------------ins_pipe_parse---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
void ADLParser::ins_pipe_parse(InstructForm &instr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
  char * ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
  if ( _curchar != '(' ) {       // Check for delimiter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
    parse_err(SYNERR, "missing \"(\" in ins_pipe definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
  next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
  ident = get_ident();           // Grab next identifier
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
  if (ident == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
    parse_err(SYNERR, "keyword identifier expected at %c\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
  if ( _curchar != ')' ) {       // Check for delimiter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
    parse_err(SYNERR, "missing \")\" in ins_pipe definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
  next_char();                   // skip the close paren
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
  if(_curchar != ';') {          // check for semi-colon
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
    parse_err(SYNERR, "missing %c in return value entry.\n", ';');
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
  next_char();                   // skip the semi-colon
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
  // Check ident for validity
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
  if (_AD._pipeline && !_AD._pipeline->_classlist.search(ident)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
    parse_err(SYNERR, "\"%s\" is not a valid pipeline class\n", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
  // Add this instruction to the list in the pipeline class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
  _AD._pipeline->_classdict[ident]->is_pipeclass()->_instructs.addName(instr._ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
  // Set the name of the pipeline class in the instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
  instr._ins_pipe = ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
//------------------------------pipe_parse-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
void ADLParser::pipe_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
  PipelineForm *pipeline;         // Encode class for instruction/operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
  char * ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
  pipeline = new PipelineForm();  // Build new Source object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
  _AD.addForm(pipeline);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
  skipws();                       // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
  // Check for block delimiter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
  if ( (_curchar != '%')
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
       || ( next_char(),  (_curchar != '{')) ) {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  1338
    parse_err(SYNERR, "missing '%%{' in pipeline definition\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
  next_char();                     // Maintain the invariant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
    ident = get_ident();           // Grab next identifier
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
    if (ident == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
      parse_err(SYNERR, "keyword identifier expected at %c\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
    if      (!strcmp(ident, "resources" )) resource_parse(*pipeline);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
    else if (!strcmp(ident, "pipe_desc" )) pipe_desc_parse(*pipeline);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
    else if (!strcmp(ident, "pipe_class")) pipe_class_parse(*pipeline);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
    else if (!strcmp(ident, "define")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
      if ( (_curchar != '%')
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
           || ( next_char(),  (_curchar != '{')) ) {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  1355
        parse_err(SYNERR, "expected '%%{'\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
      char *node_class = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
      if (node_class == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
        parse_err(SYNERR, "expected identifier, found \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
      if (_curchar != ',' && _curchar != '=') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
        parse_err(SYNERR, "expected `=`, found '%c'\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
      char *pipe_class = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
      if (pipe_class == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
        parse_err(SYNERR, "expected identifier, found \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
      if (_curchar != ';' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
        parse_err(SYNERR, "expected `;`, found '%c'\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
      next_char();              // Skip over semi-colon
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
      if ( (_curchar != '%')
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
           || ( next_char(),  (_curchar != '}')) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
        parse_err(SYNERR, "expected '%%}', found \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
      next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
      // Check ident for validity
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
      if (_AD._pipeline && !_AD._pipeline->_classlist.search(pipe_class)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
        parse_err(SYNERR, "\"%s\" is not a valid pipeline class\n", pipe_class);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
      // Add this machine node to the list in the pipeline class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
      _AD._pipeline->_classdict[pipe_class]->is_pipeclass()->_instructs.addName(node_class);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
      MachNodeForm *machnode = new MachNodeForm(node_class); // Create new machnode form
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
      machnode->_machnode_pipe = pipe_class;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
      _AD.addForm(machnode);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
    else if (!strcmp(ident, "attributes")) {
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  1406
      bool vsi_seen = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
      if ( (_curchar != '%')
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
           || ( next_char(),  (_curchar != '{')) ) {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  1411
        parse_err(SYNERR, "expected '%%{'\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
      while (_curchar != '%') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
        ident = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
        if (ident == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
        if (!strcmp(ident, "variable_size_instructions")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
          skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
          if (_curchar == ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
            next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
          pipeline->_variableSizeInstrs = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
          vsi_seen = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
        if (!strcmp(ident, "fixed_size_instructions")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
          skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
          if (_curchar == ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
            next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
          pipeline->_variableSizeInstrs = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
          vsi_seen = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
        if (!strcmp(ident, "branch_has_delay_slot")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
          skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
          if (_curchar == ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
            next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
          pipeline->_branchHasDelaySlot = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
        if (!strcmp(ident, "max_instructions_per_bundle")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
          skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
          if (_curchar != '=') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
            parse_err(SYNERR, "expected `=`\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
          next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
          pipeline->_maxInstrsPerBundle = get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
          skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
          if (_curchar == ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
            next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
        if (!strcmp(ident, "max_bundles_per_cycle")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
          skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
          if (_curchar != '=') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
            parse_err(SYNERR, "expected `=`\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
          next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
          pipeline->_maxBundlesPerCycle = get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
          skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
          if (_curchar == ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
            next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
        if (!strcmp(ident, "instruction_unit_size")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
          skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
          if (_curchar != '=') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
            parse_err(SYNERR, "expected `=`, found '%c'\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
          next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
          pipeline->_instrUnitSize = get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
          skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
          if (_curchar == ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
            next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
        if (!strcmp(ident, "bundle_unit_size")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
          skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
          if (_curchar != '=') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
            parse_err(SYNERR, "expected `=`, found '%c'\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1512
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
          next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
          pipeline->_bundleUnitSize = get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
          skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
          if (_curchar == ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
            next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1521
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1523
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1525
        if (!strcmp(ident, "instruction_fetch_unit_size")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1526
          skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1527
          if (_curchar != '=') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1528
            parse_err(SYNERR, "expected `=`, found '%c'\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1529
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1530
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1531
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1532
          next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1533
          pipeline->_instrFetchUnitSize = get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1534
          skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1535
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1536
          if (_curchar == ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
            next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1538
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
        if (!strcmp(ident, "instruction_fetch_units")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
          skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1545
          if (_curchar != '=') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1546
            parse_err(SYNERR, "expected `=`, found '%c'\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1547
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1549
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1550
          next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
          pipeline->_instrFetchUnits = get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
          skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
          if (_curchar == ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
            next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1556
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
        if (!strcmp(ident, "nops")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
          skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
          if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
            parse_err(SYNERR, "expected `(`, found '%c'\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1566
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1568
          next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1569
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
          while (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
            ident = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
            if (ident == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
              parse_err(SYNERR, "expected identifier for nop instruction, found '%c'\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
              break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
            pipeline->_noplist.addName(ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
            pipeline->_nopcnt++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
            skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
            if (_curchar == ',') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
              next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1586
          next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1587
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1588
          if (_curchar == ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1589
            next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1590
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1591
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1592
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1593
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1594
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1595
        parse_err(SYNERR, "unknown specifier \"%s\"\n", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1596
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1597
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1598
      if ( (_curchar != '%')
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1599
           || ( next_char(),  (_curchar != '}')) ) {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  1600
        parse_err(SYNERR, "expected '%%}', found \"%c\"\n", _curchar);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1601
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1603
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1604
      if (pipeline->_maxInstrsPerBundle == 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1605
        parse_err(SYNERR, "\"max_instructions_per_bundle\" unspecified\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1606
      if (pipeline->_instrUnitSize == 0 && pipeline->_bundleUnitSize == 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1607
        parse_err(SYNERR, "\"instruction_unit_size\" and \"bundle_unit_size\" unspecified\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1608
      if (pipeline->_instrFetchUnitSize == 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
        parse_err(SYNERR, "\"instruction_fetch_unit_size\" unspecified\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
      if (pipeline->_instrFetchUnits == 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
        parse_err(SYNERR, "\"instruction_fetch_units\" unspecified\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
      if (!vsi_seen)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
        parse_err(SYNERR, "\"variable_size_instruction\" or \"fixed_size_instruction\" unspecified\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
    else {  // Done with staticly defined parts of instruction definition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1616
      parse_err(SYNERR, "expected one of \"resources\", \"pipe_desc\", \"pipe_class\", found \"%s\"\n", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1617
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1618
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1619
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
    if (_curchar == ';')
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1621
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1622
  } while(_curchar != '%');
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1623
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1624
  next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1625
  if (_curchar != '}') {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  1626
    parse_err(SYNERR, "missing \"%%}\" in pipeline definition\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1627
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1628
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1629
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1630
  next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1631
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1632
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1633
//------------------------------resource_parse----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1634
void ADLParser::resource_parse(PipelineForm &pipeline) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1635
  ResourceForm *resource;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1636
  char * ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1637
  char * expr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1638
  unsigned mask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1639
  pipeline._rescount = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1640
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1641
  skipws();                       // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1642
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1643
  if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1644
    parse_err(SYNERR, "missing \"(\" in resource definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1645
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
    next_char();                   // Skip "(" or ","
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1650
    ident = get_ident();           // Grab next identifier
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1651
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  1652
    if (_AD._adl_debug > 1) {
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  1653
      if (ident != NULL) {
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  1654
        fprintf(stderr, "resource_parse: identifier: %s\n", ident);
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  1655
      }
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  1656
    }
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  1657
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
    if (ident == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
      parse_err(SYNERR, "keyword identifier expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1660
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1662
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1663
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1664
    if (_curchar != '=') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1665
      mask = (1 << pipeline._rescount++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1667
    else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1668
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1669
      expr = get_ident();          // Grab next identifier
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1670
      if (expr == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1671
        parse_err(SYNERR, "keyword identifier expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1672
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1673
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1674
      resource = (ResourceForm *) pipeline._resdict[expr];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1675
      if (resource == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1676
        parse_err(SYNERR, "resource \"%s\" is not defined\n", expr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1677
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1678
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1679
      mask = resource->mask();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1680
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1682
      while (_curchar == '|') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1683
        next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1684
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1685
        expr = get_ident();          // Grab next identifier
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1686
        if (expr == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1687
          parse_err(SYNERR, "keyword identifier expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1688
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1689
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1690
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1691
        resource = (ResourceForm *) pipeline._resdict[expr];   // Look up the value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1692
        if (resource == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1693
          parse_err(SYNERR, "resource \"%s\" is not defined\n", expr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1694
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1695
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1696
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1697
        mask |= resource->mask();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1698
        skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1699
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1700
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1701
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1702
    resource = new ResourceForm(mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1703
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1704
    pipeline._resdict.Insert(ident, resource);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1705
    pipeline._reslist.addName(ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1706
  } while (_curchar == ',');
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1707
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1708
  if (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1709
      parse_err(SYNERR, "\")\" expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1710
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1711
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1712
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1713
  next_char();                 // Skip ")"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1714
  if (_curchar == ';')
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1715
    next_char();               // Skip ";"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1716
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1717
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1718
//------------------------------resource_parse----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1719
void ADLParser::pipe_desc_parse(PipelineForm &pipeline) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1720
  char * ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1721
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1722
  skipws();                       // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1723
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1724
  if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1725
    parse_err(SYNERR, "missing \"(\" in pipe_desc definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1726
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1727
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1728
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1729
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1730
    next_char();                   // Skip "(" or ","
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1731
    ident = get_ident();           // Grab next identifier
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1732
    if (ident == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1733
      parse_err(SYNERR, "keyword identifier expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1734
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1735
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1736
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1737
    // Add the name to the list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1738
    pipeline._stages.addName(ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1739
    pipeline._stagecnt++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1740
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1741
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1742
  } while (_curchar == ',');
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1743
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1744
  if (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1745
      parse_err(SYNERR, "\")\" expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1746
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1747
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1748
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1749
  next_char();                     // Skip ")"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1750
  if (_curchar == ';')
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1751
    next_char();                   // Skip ";"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1752
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1753
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1754
//------------------------------pipe_class_parse--------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1755
void ADLParser::pipe_class_parse(PipelineForm &pipeline) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1756
  PipeClassForm *pipe_class;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1757
  char * ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1758
  char * stage;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1759
  char * read_or_write;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1760
  int is_write;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1761
  int is_read;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1762
  OperandForm  *oper;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1763
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1764
  skipws();                       // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1765
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1766
  ident = get_ident();            // Grab next identifier
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1767
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1768
  if (ident == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1769
    parse_err(SYNERR, "keyword identifier expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1770
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1771
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1772
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1773
  // Create a record for the pipe_class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1774
  pipe_class = new PipeClassForm(ident, ++pipeline._classcnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1775
  pipeline._classdict.Insert(ident, pipe_class);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1776
  pipeline._classlist.addName(ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1777
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1778
  // Then get the operands
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1779
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1780
  if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1781
    parse_err(SYNERR, "missing \"(\" in pipe_class definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1782
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1783
  // Parse the operand list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1784
  else get_oplist(pipe_class->_parameters, pipe_class->_localNames);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1785
  skipws();                        // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1786
  // Check for block delimiter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1787
  if ( (_curchar != '%')
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1788
       || ( next_char(),  (_curchar != '{')) ) {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  1789
    parse_err(SYNERR, "missing \"%%{\" in pipe_class definition\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1791
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1792
  next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1793
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1794
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1795
    ident = get_ident();           // Grab next identifier
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
    if (ident == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
      parse_err(SYNERR, "keyword identifier expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1798
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1799
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1800
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1801
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1802
    if (!strcmp(ident, "fixed_latency")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1803
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1804
      if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1805
        parse_err(SYNERR, "missing \"(\" in latency definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1806
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1809
      if( !isdigit(_curchar) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
        parse_err(SYNERR, "number expected for \"%c\" in latency definition\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1811
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1812
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1813
      int fixed_latency = get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1814
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1815
      if (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1816
        parse_err(SYNERR, "missing \")\" in latency definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1817
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1820
      if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1821
        parse_err(SYNERR, "missing \";\" in latency definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1822
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1823
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1824
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1825
      pipe_class->setFixedLatency(fixed_latency);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1826
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1827
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1828
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1829
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1830
    if (!strcmp(ident, "zero_instructions") ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1831
        !strcmp(ident, "no_instructions")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1832
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1833
      if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1834
        parse_err(SYNERR, "missing \";\" in latency definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1835
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1836
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1837
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1838
      pipe_class->setInstructionCount(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1839
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1840
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1841
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1843
    if (!strcmp(ident, "one_instruction_with_delay_slot") ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1844
        !strcmp(ident, "single_instruction_with_delay_slot")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1845
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1846
      if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1847
        parse_err(SYNERR, "missing \";\" in latency definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1848
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1849
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1850
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1851
      pipe_class->setInstructionCount(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1852
      pipe_class->setBranchDelay(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1853
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1854
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1855
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1856
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1857
    if (!strcmp(ident, "one_instruction") ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1858
        !strcmp(ident, "single_instruction")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1859
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1860
      if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1861
        parse_err(SYNERR, "missing \";\" in latency definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1862
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
      pipe_class->setInstructionCount(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1867
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1868
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1869
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1870
    if (!strcmp(ident, "instructions_in_first_bundle") ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1871
        !strcmp(ident, "instruction_count")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1872
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1873
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1874
      int number_of_instructions = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1875
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1876
      if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1877
        parse_err(SYNERR, "\"(\" expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1878
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1879
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1880
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1881
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1882
      number_of_instructions = get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1883
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1884
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1885
      if (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1886
        parse_err(SYNERR, "\")\" expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1887
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1888
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1889
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1890
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1891
      if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1892
        parse_err(SYNERR, "missing \";\" in latency definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1893
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1894
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1895
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1896
      pipe_class->setInstructionCount(number_of_instructions);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1897
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1898
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1899
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1900
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1901
    if (!strcmp(ident, "multiple_bundles")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1902
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1903
      if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1904
        parse_err(SYNERR, "missing \";\" after multiple bundles\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1905
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1906
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1907
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1908
      pipe_class->setMultipleBundles(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1909
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1910
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1911
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1912
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1913
    if (!strcmp(ident, "has_delay_slot")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1914
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1915
      if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1916
        parse_err(SYNERR, "missing \";\" after \"has_delay_slot\"\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1917
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1918
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1919
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1920
      pipe_class->setBranchDelay(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1921
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1922
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1923
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1924
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1925
    if (!strcmp(ident, "force_serialization")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1926
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1927
      if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1928
        parse_err(SYNERR, "missing \";\" after \"force_serialization\"\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1929
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1930
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1931
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1932
      pipe_class->setForceSerialization(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1933
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1934
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1935
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1936
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1937
    if (!strcmp(ident, "may_have_no_code")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1938
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1939
      if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1940
        parse_err(SYNERR, "missing \";\" after \"may_have_no_code\"\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1941
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1942
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1943
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1944
      pipe_class->setMayHaveNoCode(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1945
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1946
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1947
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1948
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1949
    const Form *parm = pipe_class->_localNames[ident];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1950
    if (parm != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1951
      oper = parm->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1952
      if (oper == NULL && !parm->is_opclass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1953
        parse_err(SYNERR, "operand name expected at %s\n", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1954
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1955
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1956
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1957
      if (_curchar != ':') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1958
        parse_err(SYNERR, "\":\" expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1959
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1960
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1961
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1962
      stage = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1963
      if (stage == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1964
        parse_err(SYNERR, "pipeline stage identifier expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1965
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1966
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1967
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1968
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1969
      if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1970
        parse_err(SYNERR, "\"(\" expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1971
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1972
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1973
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1974
      next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1975
      read_or_write = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1976
      if (read_or_write == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1977
        parse_err(SYNERR, "\"read\" or \"write\" expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1978
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1979
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1980
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1981
      is_read  = strcmp(read_or_write, "read")   == 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1982
      is_write = strcmp(read_or_write, "write")  == 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1983
      if (!is_read && !is_write) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1984
        parse_err(SYNERR, "\"read\" or \"write\" expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1985
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1986
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1987
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1988
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1989
      if (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1990
        parse_err(SYNERR, "\")\" expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1991
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1992
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1993
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1994
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1995
      int more_instrs = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1996
      if (_curchar == '+') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1997
          next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1998
          if (_curchar < '0' || _curchar > '9') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1999
            parse_err(SYNERR, "<number> expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2000
            continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2001
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2002
          while (_curchar >= '0' && _curchar <= '9') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2003
            more_instrs *= 10;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2004
            more_instrs += _curchar - '0';
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2005
            next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2006
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2007
          skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2009
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2010
      PipeClassOperandForm *pipe_operand = new PipeClassOperandForm(stage, is_write, more_instrs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2011
      pipe_class->_localUsage.Insert(ident, pipe_operand);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2012
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2013
      if (_curchar == '%')
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2014
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2015
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2016
      if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2017
        parse_err(SYNERR, "\";\" expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2018
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2019
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2020
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2021
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2022
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2023
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2024
    // Scan for Resource Specifier
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2025
    const Form *res = pipeline._resdict[ident];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2026
    if (res != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2027
      int cyclecnt = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
      if (_curchar != ':') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2029
        parse_err(SYNERR, "\":\" expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2030
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2031
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2032
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2033
      stage = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2034
      if (stage == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2035
        parse_err(SYNERR, "pipeline stage identifier expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2036
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2037
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2038
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2039
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2040
      if (_curchar == '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2041
        next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2042
        cyclecnt = get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2043
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2044
        skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2045
        if (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2046
          parse_err(SYNERR, "\")\" expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2047
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2048
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2049
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2050
        next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2051
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2052
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2053
      PipeClassResourceForm *resource = new PipeClassResourceForm(ident, stage, cyclecnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2054
      int stagenum = pipeline._stages.index(stage);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2055
      if (pipeline._maxcycleused < (stagenum+cyclecnt))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2056
        pipeline._maxcycleused = (stagenum+cyclecnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2057
      pipe_class->_resUsage.addForm(resource);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2058
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2059
      if (_curchar == '%')
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2060
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2061
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2062
      if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2063
        parse_err(SYNERR, "\";\" expected at \"%c\"\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2064
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2065
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2066
      next_char(); skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2067
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2068
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2069
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2070
    parse_err(SYNERR, "resource expected at \"%s\"\n", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2071
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2072
  } while(_curchar != '%');
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2073
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2074
  next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2075
  if (_curchar != '}') {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  2076
    parse_err(SYNERR, "missing \"%%}\" in pipe_class definition\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2077
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2078
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2079
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2080
  next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2081
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2082
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2083
//------------------------------peep_parse-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2084
void ADLParser::peep_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2085
  Peephole  *peep;                // Pointer to current peephole rule form
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2086
  char      *desc = NULL;         // String representation of rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2087
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2088
  skipws();                       // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2089
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2090
  peep = new Peephole();          // Build new Peephole object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2091
  // Check for open block sequence
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2092
  skipws();                       // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2093
  if (_curchar == '%' && *(_ptr+1) == '{') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2094
    next_char(); next_char();     // Skip "%{"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2095
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2096
    while (_curchar != '%' && *(_ptr+1) != '}') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2097
      char *token = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2098
      if (token == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2099
        parse_err(SYNERR, "missing identifier inside peephole rule.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2100
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2101
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2102
      // check for legal subsections of peephole rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2103
      if (strcmp(token,"peepmatch")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2104
        peep_match_parse(*peep); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2105
      else if (strcmp(token,"peepconstraint")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2106
        peep_constraint_parse(*peep); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2107
      else if (strcmp(token,"peepreplace")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2108
        peep_replace_parse(*peep); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2109
      else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2110
        parse_err(SYNERR, "expected peepmatch, peepconstraint, or peepreplace for identifier %s.\n", token);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2111
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2112
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2113
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2114
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2115
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2116
    parse_err(SYNERR, "Missing %%{ ... %%} block after peephole keyword.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2117
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2118
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2119
  next_char();                    // Skip past '%'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2120
  next_char();                    // Skip past '}'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2121
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2122
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2123
// ******************** Private Level 2 Parse Functions ********************
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2124
//------------------------------constraint_parse------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2125
Constraint *ADLParser::constraint_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2126
  char *func;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2127
  char *arg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2128
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2129
  // Check for constraint expression
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2130
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2131
  if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2132
    parse_err(SYNERR, "missing constraint expression, (...)\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2133
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2134
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2135
  next_char();                    // Skip past '('
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2136
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2137
  // Get constraint function
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2138
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2139
  func = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2140
  if (func == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2141
    parse_err(SYNERR, "missing function in constraint expression.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2142
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2143
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2144
  if (strcmp(func,"ALLOC_IN_RC")==0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2145
      || strcmp(func,"IS_R_CLASS")==0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2146
    // Check for '(' before argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2147
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2148
    if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2149
      parse_err(SYNERR, "missing '(' for constraint function's argument.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2150
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2151
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2152
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2153
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2154
    // Get it's argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2155
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2156
    arg = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2157
    if (arg == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2158
      parse_err(SYNERR, "missing argument for constraint function %s\n",func);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2159
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2160
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2161
    // Check for ')' after argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2162
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2163
    if (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2164
      parse_err(SYNERR, "missing ')' after constraint function argument %s\n",arg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2165
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2166
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2167
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2168
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2169
    parse_err(SYNERR, "Invalid constraint function %s\n",func);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2170
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2171
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2172
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2173
  // Check for closing paren and ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2174
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2175
  if (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2176
    parse_err(SYNERR, "Missing ')' for constraint function %s\n",func);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2177
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2178
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2179
  next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2180
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2181
  if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2182
    parse_err(SYNERR, "Missing ';' after constraint.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2183
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2184
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2185
  next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2186
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2187
  // Create new "Constraint"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2188
  Constraint *constraint = new Constraint(func,arg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2189
  return constraint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2190
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2191
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2192
//------------------------------constr_parse-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2193
ConstructRule *ADLParser::construct_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2194
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2195
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2196
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2197
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2198
//------------------------------reg_def_parse----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2199
void ADLParser::reg_def_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2200
  char *rname;                   // Name of register being defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2201
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2202
  // Get register name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2203
  skipws();                      // Skip whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2204
  rname = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2205
  if (rname == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2206
    parse_err(SYNERR, "missing register name after reg_def\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2207
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2208
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2209
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2210
  // Check for definition of register calling convention (save on call, ...),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2211
  // register save type, and register encoding value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2212
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2213
  char *callconv  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2214
  char *c_conv    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2215
  char *idealtype = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2216
  char *encoding  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2217
  char *concrete = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2218
  if (_curchar == '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2219
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2220
    callconv = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2221
    // Parse the internal calling convention, must be NS, SOC, SOE, or AS.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2222
    if (callconv == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2223
      parse_err(SYNERR, "missing register calling convention value\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2224
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2225
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2226
    if(strcmp(callconv, "SOC") && strcmp(callconv,"SOE") &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2227
       strcmp(callconv, "NS") && strcmp(callconv, "AS")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2228
      parse_err(SYNERR, "invalid value for register calling convention\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2229
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2230
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2231
    if (_curchar != ',') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2232
      parse_err(SYNERR, "missing comma in register definition statement\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2233
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2234
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2235
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2236
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2237
    // Parse the native calling convention, must be NS, SOC, SOE, AS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2238
    c_conv = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2239
    if (c_conv == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2240
      parse_err(SYNERR, "missing register native calling convention value\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2241
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2242
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2243
    if(strcmp(c_conv, "SOC") && strcmp(c_conv,"SOE") &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2244
       strcmp(c_conv, "NS") && strcmp(c_conv, "AS")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2245
      parse_err(SYNERR, "invalid value for register calling convention\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2246
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2247
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2248
    if (_curchar != ',') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2249
      parse_err(SYNERR, "missing comma in register definition statement\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2250
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2251
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2252
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2253
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2254
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2255
    // Parse the ideal save type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2256
    idealtype = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2257
    if (idealtype == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2258
      parse_err(SYNERR, "missing register save type value\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2259
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2260
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2261
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2262
    if (_curchar != ',') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2263
      parse_err(SYNERR, "missing comma in register definition statement\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2264
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2265
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2266
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2267
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2268
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2269
    // Parse the encoding value
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2270
    encoding = get_expr("encoding", ",");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2271
    if (encoding == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2272
      parse_err(SYNERR, "missing register encoding value\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2273
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2274
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2275
    trim(encoding);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2276
    if (_curchar != ',') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2277
      parse_err(SYNERR, "missing comma in register definition statement\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2278
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2279
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2280
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2281
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2282
    // Parse the concrete name type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2283
    // concrete = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2284
    concrete = get_expr("concrete", ")");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2285
    if (concrete == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2286
      parse_err(SYNERR, "missing vm register name value\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2287
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2288
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2289
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2290
    if (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2291
      parse_err(SYNERR, "missing ')' in register definition statement\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2292
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2293
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2294
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2295
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2296
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2297
  // Check for closing ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2298
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2299
  if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2300
    parse_err(SYNERR, "missing ';' after reg_def\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2301
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2302
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2303
  next_char();                   // move past ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2304
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2305
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2306
  if (_AD._adl_debug > 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2307
    fprintf(stderr,"Register Definition: %s ( %s, %s %s )\n", rname,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2308
            (callconv ? callconv : ""), (c_conv ? c_conv : ""), concrete);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2309
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2310
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2311
  // Record new register definition.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2312
  _AD._register->addRegDef(rname, callconv, c_conv, idealtype, encoding, concrete);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2313
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2314
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2315
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2316
//------------------------------reg_class_parse--------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2317
void ADLParser::reg_class_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2318
  char *cname;                    // Name of register class being defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2319
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2320
  // Get register class name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2321
  skipws();                       // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2322
  cname = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2323
  if (cname == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2324
    parse_err(SYNERR, "missing register class name after 'reg_class'\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2325
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2326
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2327
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2328
  if (_AD._adl_debug >1) fprintf(stderr,"Register Class: %s\n", cname);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2329
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2330
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2331
  if (_curchar == '(') {
30202
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2332
    // A register list is defined for the register class.
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2333
    // Collect registers into a generic RegClass register class.
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2334
    RegClass* reg_class = _AD._register->addRegClass<RegClass>(cname);
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2335
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2336
    next_char();                  // Skip '('
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2337
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2338
    while (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2339
      char *rname = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2340
      if (rname==NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2341
        parse_err(SYNERR, "missing identifier inside reg_class list.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2342
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2343
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2344
      RegDef *regDef = _AD._register->getRegDef(rname);
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  2345
      if (!regDef) {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  2346
        parse_err(SEMERR, "unknown identifier %s inside reg_class list.\n", rname);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  2347
      } else {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  2348
        reg_class->addReg(regDef); // add regDef to regClass
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  2349
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2350
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2351
      // Check for ',' and position to next token.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2352
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2353
      if (_curchar == ',') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2354
        next_char();              // Skip trailing ','
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2355
        skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2356
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2357
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2358
    next_char();                  // Skip closing ')'
11197
158eecd6b330 7090968: Allow adlc register class to depend on runtime conditions
roland
parents: 11196
diff changeset
  2359
  } else if (_curchar == '%') {
30202
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2360
    // A code snippet is defined for the register class.
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2361
    // Collect the code snippet into a CodeSnippetRegClass register class.
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2362
    CodeSnippetRegClass* reg_class = _AD._register->addRegClass<CodeSnippetRegClass>(cname);
11197
158eecd6b330 7090968: Allow adlc register class to depend on runtime conditions
roland
parents: 11196
diff changeset
  2363
    char *code = find_cpp_block("reg class");
158eecd6b330 7090968: Allow adlc register class to depend on runtime conditions
roland
parents: 11196
diff changeset
  2364
    if (code == NULL) {
158eecd6b330 7090968: Allow adlc register class to depend on runtime conditions
roland
parents: 11196
diff changeset
  2365
      parse_err(SYNERR, "missing code declaration for reg class.\n");
158eecd6b330 7090968: Allow adlc register class to depend on runtime conditions
roland
parents: 11196
diff changeset
  2366
      return;
158eecd6b330 7090968: Allow adlc register class to depend on runtime conditions
roland
parents: 11196
diff changeset
  2367
    }
30202
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2368
    reg_class->set_code_snippet(code);
11197
158eecd6b330 7090968: Allow adlc register class to depend on runtime conditions
roland
parents: 11196
diff changeset
  2369
    return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2370
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2371
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2372
  // Check for terminating ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2373
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2374
  if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2375
    parse_err(SYNERR, "missing ';' at end of reg_class definition.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2376
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2377
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2378
  next_char();                    // Skip trailing ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2379
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2380
  // Check RegClass size, must be <= 32 registers in class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2381
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2382
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2383
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2384
30202
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2385
//------------------------------reg_class_dynamic_parse------------------------
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2386
void ADLParser::reg_class_dynamic_parse(void) {
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2387
  char *cname; // Name of dynamic register class being defined
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2388
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2389
  // Get register class name
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2390
  skipws();
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2391
  cname = get_ident();
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2392
  if (cname == NULL) {
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2393
    parse_err(SYNERR, "missing dynamic register class name after 'reg_class_dynamic'\n");
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2394
    return;
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2395
  }
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2396
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2397
  if (_AD._adl_debug > 1) {
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2398
    fprintf(stdout, "Dynamic Register Class: %s\n", cname);
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2399
  }
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2400
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2401
  skipws();
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2402
  if (_curchar != '(') {
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2403
    parse_err(SYNERR, "missing '(' at the beginning of reg_class_dynamic definition\n");
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2404
    return;
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2405
  }
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2406
  next_char();
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2407
  skipws();
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2408
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2409
  // Collect two register classes and the C++ code representing the condition code used to
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2410
  // select between the two classes into a ConditionalRegClass register class.
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2411
  ConditionalRegClass* reg_class = _AD._register->addRegClass<ConditionalRegClass>(cname);
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2412
  int i;
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2413
  for (i = 0; i < 2; i++) {
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2414
    char* name = get_ident();
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2415
    if (name == NULL) {
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2416
      parse_err(SYNERR, "missing class identifier inside reg_class_dynamic list.\n");
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2417
      return;
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2418
    }
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2419
    RegClass* rc = _AD._register->getRegClass(name);
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2420
    if (rc == NULL) {
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2421
      parse_err(SEMERR, "unknown identifier %s inside reg_class_dynamic list.\n", name);
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2422
    } else {
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2423
      reg_class->set_rclass_at_index(i, rc);
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2424
    }
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2425
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2426
    skipws();
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2427
    if (_curchar == ',') {
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2428
      next_char();
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2429
      skipws();
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2430
    } else {
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2431
      parse_err(SYNERR, "missing separator ',' inside reg_class_dynamic list.\n");
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2432
    }
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2433
  }
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2434
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2435
  // Collect the condition code.
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2436
  skipws();
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2437
  if (_curchar == '%') {
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2438
    char* code = find_cpp_block("reg class dynamic");
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2439
    if (code == NULL) {
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2440
       parse_err(SYNERR, "missing code declaration for reg_class_dynamic.\n");
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2441
       return;
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2442
    }
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2443
    reg_class->set_condition_code(code);
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2444
  } else {
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2445
    parse_err(SYNERR, "missing %% at the beginning of code block in reg_class_dynamic definition\n");
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2446
    return;
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2447
  }
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2448
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2449
  skipws();
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2450
  if (_curchar != ')') {
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2451
    parse_err(SYNERR, "missing ')' at the end of reg_class_dynamic definition\n");
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2452
    return;
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2453
  }
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2454
  next_char();
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2455
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2456
  skipws();
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2457
  if (_curchar != ';') {
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2458
    parse_err(SYNERR, "missing ';' at the end of reg_class_dynamic definition.\n");
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2459
    return;
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2460
  }
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2461
  next_char();                    // Skip trailing ';'
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2462
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2463
  return;
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2464
}
6f5c48bd9b82 8075798: Allow ADLC register class to depend on runtime conditions also for cisc-spillable classes
zmajo
parents: 22872
diff changeset
  2465
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2466
//------------------------------alloc_class_parse------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2467
void ADLParser::alloc_class_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2468
  char *name;                     // Name of allocation class being defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2469
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2470
  // Get allocation class name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2471
  skipws();                       // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2472
  name = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2473
  if (name == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2474
    parse_err(SYNERR, "missing allocation class name after 'reg_class'\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2475
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2476
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2477
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2478
  if (_AD._adl_debug >1) fprintf(stderr,"Allocation Class: %s\n", name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2479
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2480
  AllocClass *alloc_class = _AD._register->addAllocClass(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2481
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2482
  // Collect registers in class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2483
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2484
  if (_curchar == '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2485
    next_char();                  // Skip '('
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2486
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2487
    while (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2488
      char *rname = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2489
      if (rname==NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2490
        parse_err(SYNERR, "missing identifier inside reg_class list.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2491
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2492
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2493
      // Check if name is a RegDef
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2494
      RegDef *regDef = _AD._register->getRegDef(rname);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2495
      if (regDef) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2496
        alloc_class->addReg(regDef);   // add regDef to allocClass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2497
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2498
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2499
        // name must be a RegDef or a RegClass
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2500
        parse_err(SYNERR, "name %s should be a previously defined reg_def.\n", rname);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2501
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2502
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2503
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2504
      // Check for ',' and position to next token.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2505
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2506
      if (_curchar == ',') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2507
        next_char();              // Skip trailing ','
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2508
        skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2509
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2510
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2511
    next_char();                  // Skip closing ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2512
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2513
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2514
  // Check for terminating ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2515
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2516
  if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2517
    parse_err(SYNERR, "missing ';' at end of reg_class definition.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2518
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2519
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2520
  next_char();                    // Skip trailing ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2521
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2522
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2523
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2524
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2525
//------------------------------peep_match_child_parse-------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2526
InstructForm *ADLParser::peep_match_child_parse(PeepMatch &match, int parent, int &position, int input){
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2527
  char      *token  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2528
  int        lparen = 0;          // keep track of parenthesis nesting depth
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2529
  int        rparen = 0;          // position of instruction at this depth
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2530
  InstructForm *inst_seen  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2531
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2532
  // Walk the match tree,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2533
  // Record <parent, position, instruction name, input position>
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2534
  while ( lparen >= rparen ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2535
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2536
    // Left paren signals start of an input, collect with recursive call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2537
    if (_curchar == '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2538
      ++lparen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2539
      next_char();
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  2540
      ( void ) peep_match_child_parse(match, parent, position, rparen);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2541
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2542
    // Right paren signals end of an input, may be more
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2543
    else if (_curchar == ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2544
      ++rparen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2545
      if( rparen == lparen ) { // IF rparen matches an lparen I've seen
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2546
        next_char();           //    move past ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2547
      } else {                 // ELSE leave ')' for parent
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2548
        assert( rparen == lparen + 1, "Should only see one extra ')'");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2549
        // if an instruction was not specified for this paren-pair
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2550
        if( ! inst_seen ) {   // record signal entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2551
          match.add_instruction( parent, position, NameList::_signal, input );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2552
          ++position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2553
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2554
        // ++input;   // TEMPORARY
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2555
        return inst_seen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2556
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2557
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2558
    // if no parens, then check for instruction name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2559
    // This instruction is the parent of a sub-tree
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2560
    else if ((token = get_ident_dup()) != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2561
      const Form *form = _AD._globalNames[token];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2562
      if (form) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2563
        InstructForm *inst = form->is_instruction();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2564
        // Record the first instruction at this level
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2565
        if( inst_seen == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2566
          inst_seen = inst;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2567
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2568
        if (inst) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2569
          match.add_instruction( parent, position, token, input );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2570
          parent = position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2571
          ++position;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2572
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2573
          parse_err(SYNERR, "instruction name expected at identifier %s.\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2574
                    token);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2575
          return inst_seen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2576
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2577
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2578
      else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2579
        parse_err(SYNERR, "missing identifier in peepmatch rule.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2580
        return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2581
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2582
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2583
    else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2584
      parse_err(SYNERR, "missing identifier in peepmatch rule.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2585
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2586
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2587
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2588
  } // end while
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2589
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2590
  assert( false, "ShouldNotReachHere();");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2591
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2592
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2593
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2594
//------------------------------peep_match_parse-------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2595
// Syntax for a peepmatch rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2596
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2597
// peepmatch ( root_instr_name [(instruction subtree)] [,(instruction subtree)]* );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2598
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2599
void ADLParser::peep_match_parse(Peephole &peep) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2600
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2601
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2602
  // Check the structure of the rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2603
  // Check for open paren
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2604
  if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2605
    parse_err(SYNERR, "missing '(' at start of peepmatch rule.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2606
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2607
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2608
  next_char();   // skip '('
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2609
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2610
  // Construct PeepMatch and parse the peepmatch rule.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2611
  PeepMatch *match = new PeepMatch(_ptr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2612
  int  parent   = -1;                   // parent of root
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2613
  int  position = 0;                    // zero-based positions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2614
  int  input    = 0;                    // input position in parent's operands
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2615
  InstructForm *root= peep_match_child_parse( *match, parent, position, input);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2616
  if( root == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2617
    parse_err(SYNERR, "missing instruction-name at start of peepmatch.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2618
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2619
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2620
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2621
  if( _curchar != ')' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2622
    parse_err(SYNERR, "missing ')' at end of peepmatch.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2623
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2624
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2625
  next_char();   // skip ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2626
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2627
  // Check for closing semicolon
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2628
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2629
  if( _curchar != ';' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2630
    parse_err(SYNERR, "missing ';' at end of peepmatch.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2631
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2632
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2633
  next_char();   // skip ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2634
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2635
  // Store match into peep, and store peep into instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2636
  peep.add_match(match);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2637
  root->append_peephole(&peep);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2638
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2639
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2640
//------------------------------peep_constraint_parse--------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2641
// Syntax for a peepconstraint rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2642
// A parenthesized list of relations between operands in peepmatch subtree
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2643
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2644
// peepconstraint %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2645
// (instruction_number.operand_name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2646
//     relational_op
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2647
//  instruction_number.operand_name OR register_name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2648
//  [, ...] );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2649
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2650
// // instruction numbers are zero-based using topological order in peepmatch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2651
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2652
void ADLParser::peep_constraint_parse(Peephole &peep) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2653
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2654
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2655
  // Check the structure of the rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2656
  // Check for open paren
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2657
  if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2658
    parse_err(SYNERR, "missing '(' at start of peepconstraint rule.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2659
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2660
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2661
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2662
    next_char();                  // Skip '('
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2663
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2664
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2665
  // Check for a constraint
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2666
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2667
  while( _curchar != ')' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2668
    // Get information on the left instruction and its operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2669
    // left-instructions's number
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  2670
    int left_inst = get_int();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2671
    // Left-instruction's operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2672
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2673
    if( _curchar != '.' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2674
      parse_err(SYNERR, "missing '.' in peepconstraint after instruction number.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2675
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2676
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2677
    next_char();                  // Skip '.'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2678
    char *left_op = get_ident_dup();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2679
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2680
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2681
    // Collect relational operator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2682
    char *relation = get_relation_dup();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2683
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2684
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2685
    // Get information on the right instruction and its operand
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  2686
    int right_inst;        // Right-instructions's number
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2687
    if( isdigit(_curchar) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2688
      right_inst = get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2689
      // Right-instruction's operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2690
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2691
      if( _curchar != '.' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2692
        parse_err(SYNERR, "missing '.' in peepconstraint after instruction number.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2693
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2694
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2695
      next_char();              // Skip '.'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2696
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2697
      right_inst = -1;          // Flag as being a register constraint
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2698
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2699
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2700
    char *right_op = get_ident_dup();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2701
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2702
    // Construct the next PeepConstraint
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2703
    PeepConstraint *constraint = new PeepConstraint( left_inst, left_op,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2704
                                                     relation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2705
                                                     right_inst, right_op );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2706
    // And append it to the list for this peephole rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2707
    peep.append_constraint( constraint );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2708
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2709
    // Check for another constraint, or end of rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2710
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2711
    if( _curchar == ',' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2712
      next_char();                // Skip ','
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2713
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2714
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2715
    else if( _curchar != ')' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2716
      parse_err(SYNERR, "expected ',' or ')' after peephole constraint.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2717
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2718
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2719
  } // end while( processing constraints )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2720
  next_char();                    // Skip ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2721
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2722
  // Check for terminating ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2723
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2724
  if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2725
    parse_err(SYNERR, "missing ';' at end of peepconstraint.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2726
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2727
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2728
  next_char();                    // Skip trailing ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2729
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2730
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2731
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2732
//------------------------------peep_replace_parse-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2733
// Syntax for a peepreplace rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2734
// root instruction name followed by a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2735
// parenthesized list of whitespace separated instruction.operand specifiers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2736
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2737
// peepreplace ( instr_name  ( [instruction_number.operand_name]* ) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2738
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2739
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2740
void ADLParser::peep_replace_parse(Peephole &peep) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2741
  int          lparen = 0;        // keep track of parenthesis nesting depth
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2742
  int          rparen = 0;        // keep track of parenthesis nesting depth
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2743
  int          icount = 0;        // count of instructions in rule for naming
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2744
  char        *str    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2745
  char        *token  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2746
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2747
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2748
  // Check for open paren
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2749
  if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2750
    parse_err(SYNERR, "missing '(' at start of peepreplace rule.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2751
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2752
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2753
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2754
    lparen++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2755
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2756
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2757
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2758
  // Check for root instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2759
  char       *inst = get_ident_dup();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2760
  const Form *form = _AD._globalNames[inst];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2761
  if( form == NULL || form->is_instruction() == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2762
    parse_err(SYNERR, "Instruction name expected at start of peepreplace.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2763
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2764
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2765
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2766
  // Store string representation of rule into replace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2767
  PeepReplace *replace = new PeepReplace(str);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2768
  replace->add_instruction( inst );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2769
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2770
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2771
  // Start of root's operand-list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2772
  if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2773
    parse_err(SYNERR, "missing '(' at peepreplace root's operand-list.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2774
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2775
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2776
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2777
    lparen++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2778
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2779
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2780
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2781
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2782
  // Get the list of operands
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2783
  while( _curchar != ')' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2784
    // Get information on an instruction and its operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2785
    // instructions's number
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2786
    int   inst_num = get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2787
    // Left-instruction's operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2788
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2789
    if( _curchar != '.' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2790
      parse_err(SYNERR, "missing '.' in peepreplace after instruction number.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2791
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2792
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2793
    next_char();                  // Skip '.'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2794
    char *inst_op = get_ident_dup();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2795
    if( inst_op == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2796
      parse_err(SYNERR, "missing operand identifier in peepreplace.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2797
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2798
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2799
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2800
    // Record this operand's position in peepmatch
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2801
    replace->add_operand( inst_num, inst_op );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2802
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2803
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2804
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2805
  // Check for the end of operands list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2806
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2807
  assert( _curchar == ')', "While loop should have advanced to ')'.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2808
  next_char();  // Skip ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2809
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2810
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2811
  // Check for end of peepreplace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2812
  if( _curchar != ')' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2813
    parse_err(SYNERR, "missing ')' at end of peepmatch.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2814
    parse_err(SYNERR, "Support one replacement instruction.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2815
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2816
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2817
  next_char(); // Skip ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2818
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2819
  // Check for closing semicolon
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2820
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2821
  if( _curchar != ';' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2822
    parse_err(SYNERR, "missing ';' at end of peepreplace.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2823
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2824
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2825
  next_char();   // skip ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2826
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2827
  // Store replace into peep
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2828
  peep.add_replace( replace );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2829
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2830
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2831
//------------------------------pred_parse-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2832
Predicate *ADLParser::pred_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2833
  Predicate *predicate;           // Predicate class for operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2834
  char      *rule = NULL;         // String representation of predicate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2835
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2836
  skipws();                       // Skip leading whitespace
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  2837
  int line = linenum();
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  2838
  if ( (rule = get_paren_expr("pred expression", true)) == NULL ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2839
    parse_err(SYNERR, "incorrect or missing expression for 'predicate'\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2840
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2841
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2842
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2843
  if (_AD._adl_debug > 1) fprintf(stderr,"Predicate: %s\n", rule);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2844
  if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2845
    parse_err(SYNERR, "missing ';' in predicate definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2846
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2847
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2848
  next_char();                     // Point after the terminator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2849
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2850
  predicate = new Predicate(rule); // Build new predicate object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2851
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2852
  return predicate;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2853
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2854
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2855
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2856
//------------------------------ins_encode_parse_block-------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2857
// Parse the block form of ins_encode.  See ins_encode_parse for more details
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2858
void ADLParser::ins_encode_parse_block(InstructForm& inst) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2859
  // Create a new encoding name based on the name of the instruction
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2860
  // definition, which should be unique.
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2861
  const char* prefix = "__ins_encode_";
52583
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51050
diff changeset
  2862
  char* ec_name = (char*) AllocateHeap(strlen(inst._ident) + strlen(prefix) + 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2863
  sprintf(ec_name, "%s%s", prefix, inst._ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2864
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2865
  assert(_AD._encode->encClass(ec_name) == NULL, "shouldn't already exist");
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2866
  EncClass* encoding = _AD._encode->add_EncClass(ec_name);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  2867
  encoding->_linenum = linenum();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2868
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2869
  // synthesize the arguments list for the enc_class from the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2870
  // arguments to the instruct definition.
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2871
  const char* param = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2872
  inst._parameters.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2873
  while ((param = inst._parameters.iter()) != NULL) {
52683
e017d2f176d0 8214059: Undefined behaviour in ADLC
sgehwolf
parents: 52583
diff changeset
  2874
    OpClassForm* opForm = inst._localNames[param]->is_opclass();
e017d2f176d0 8214059: Undefined behaviour in ADLC
sgehwolf
parents: 52583
diff changeset
  2875
    assert(opForm != NULL, "sanity");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2876
    encoding->add_parameter(opForm->_ident, param);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2877
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2878
22844
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  2879
  if (!inst._is_postalloc_expand) {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  2880
    // Define a MacroAssembler instance for use by the encoding.  The
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  2881
    // name is chosen to match the __ idiom used for assembly in other
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  2882
    // parts of hotspot and assumes the existence of the standard
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  2883
    // #define __ _masm.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  2884
    encoding->add_code("    MacroAssembler _masm(&cbuf);\n");
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  2885
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2886
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2887
  // Parse the following %{ }% block
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2888
  ins_encode_parse_block_impl(inst, encoding, ec_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2889
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2890
  // Build an encoding rule which invokes the encoding rule we just
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2891
  // created, passing all arguments that we received.
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2892
  InsEncode*   encrule = new InsEncode(); // Encode class for instruction
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2893
  NameAndList* params  = encrule->add_encode(ec_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2894
  inst._parameters.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2895
  while ((param = inst._parameters.iter()) != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2896
    params->add_entry(param);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2897
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2898
10016
8020d5b49663 7061101: adlc should complain about mixing block and expression forms of ins_encode
never
parents: 7433
diff changeset
  2899
  // Check for duplicate ins_encode sections after parsing the block
8020d5b49663 7061101: adlc should complain about mixing block and expression forms of ins_encode
never
parents: 7433
diff changeset
  2900
  // so that parsing can continue and find any other errors.
8020d5b49663 7061101: adlc should complain about mixing block and expression forms of ins_encode
never
parents: 7433
diff changeset
  2901
  if (inst._insencode != NULL) {
8020d5b49663 7061101: adlc should complain about mixing block and expression forms of ins_encode
never
parents: 7433
diff changeset
  2902
    parse_err(SYNERR, "Multiple ins_encode sections defined\n");
8020d5b49663 7061101: adlc should complain about mixing block and expression forms of ins_encode
never
parents: 7433
diff changeset
  2903
    return;
8020d5b49663 7061101: adlc should complain about mixing block and expression forms of ins_encode
never
parents: 7433
diff changeset
  2904
  }
8020d5b49663 7061101: adlc should complain about mixing block and expression forms of ins_encode
never
parents: 7433
diff changeset
  2905
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2906
  // Set encode class of this instruction.
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2907
  inst._insencode = encrule;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2908
}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2909
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2910
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2911
void ADLParser::ins_encode_parse_block_impl(InstructForm& inst, EncClass* encoding, char* ec_name) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2912
  skipws_no_preproc();              // Skip leading whitespace
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2913
  // Prepend location descriptor, for debugging; cf. ADLParser::find_cpp_block
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2914
  if (_AD._adlocation_debug) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2915
    encoding->add_code(get_line_string());
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2916
  }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2917
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2918
  // Collect the parts of the encode description
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2919
  // (1) strings that are passed through to output
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2920
  // (2) replacement/substitution variable, preceeded by a '$'
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2921
  while ((_curchar != '%') && (*(_ptr+1) != '}')) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2922
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2923
    // (1)
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2924
    // Check if there is a string to pass through to output
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2925
    char *start = _ptr;       // Record start of the next string
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2926
    while ((_curchar != '$') && ((_curchar != '%') || (*(_ptr+1) != '}')) ) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2927
      // If at the start of a comment, skip past it
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2928
      if( (_curchar == '/') && ((*(_ptr+1) == '/') || (*(_ptr+1) == '*')) ) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2929
        skipws_no_preproc();
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2930
      } else {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2931
        // ELSE advance to the next character, or start of the next line
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2932
        next_char_or_line();
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2933
      }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2934
    }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2935
    // If a string was found, terminate it and record in EncClass
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2936
    if (start != _ptr) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2937
      *_ptr = '\0';          // Terminate the string
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2938
      encoding->add_code(start);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2939
    }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2940
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2941
    // (2)
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2942
    // If we are at a replacement variable,
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2943
    // copy it and record in EncClass
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2944
    if (_curchar == '$') {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2945
      // Found replacement Variable
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2946
      char* rep_var = get_rep_var_ident_dup();
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2947
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2948
      // Add flag to _strings list indicating we should check _rep_vars
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2949
      encoding->add_rep_var(rep_var);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2950
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2951
      skipws();
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2952
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2953
      // Check if this instruct is a MachConstantNode.
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2954
      if (strcmp(rep_var, "constanttablebase") == 0) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2955
        // This instruct is a MachConstantNode.
22850
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  2956
        inst.set_needs_constant_base(true);
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  2957
        if (strncmp("MachCall", inst.mach_base_class(_globalNames), strlen("MachCall")) != 0 ) {
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  2958
          inst.set_is_mach_constant(true);
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  2959
        }
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2960
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2961
        if (_curchar == '(')  {
22844
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  2962
          parse_err(SYNERR, "constanttablebase in instruct %s cannot have an argument "
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  2963
                            "(only constantaddress and constantoffset)", ec_name);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2964
          return;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2965
        }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2966
      }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2967
      else if ((strcmp(rep_var, "constantaddress")   == 0) ||
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2968
               (strcmp(rep_var, "constantoffset")    == 0)) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2969
        // This instruct is a MachConstantNode.
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2970
        inst.set_is_mach_constant(true);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2971
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2972
        // If the constant keyword has an argument, parse it.
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2973
        if (_curchar == '(')  constant_parse(inst);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2974
      }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2975
    }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2976
  } // end while part of format description
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2977
  next_char();                      // Skip '%'
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2978
  next_char();                      // Skip '}'
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2979
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2980
  skipws();
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2981
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2982
  if (_AD._adlocation_debug) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2983
    encoding->add_code(end_line_marker());
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2984
  }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2985
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2986
  // Debug Stuff
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  2987
  if (_AD._adl_debug > 1)  fprintf(stderr, "EncodingClass Form: %s\n", ec_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2988
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2989
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2990
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2991
//------------------------------ins_encode_parse-------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2992
// Encode rules have the form
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2993
//   ins_encode( encode_class_name(parameter_list), ... );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2994
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2995
// The "encode_class_name" must be defined in the encode section
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2996
// The parameter list contains $names that are locals.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2997
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2998
// Alternatively it can be written like this:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2999
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3000
//   ins_encode %{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3001
//      ... // body
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3002
//   %}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3003
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3004
// which synthesizes a new encoding class taking the same arguments as
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3005
// the InstructForm, and automatically prefixes the definition with:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3006
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3007
//    MacroAssembler masm(&cbuf);\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3008
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3009
//  making it more compact to take advantage of the MacroAssembler and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3010
//  placing the assembly closer to it's use by instructions.
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3011
void ADLParser::ins_encode_parse(InstructForm& inst) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3012
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3013
  // Parse encode class name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3014
  skipws();                        // Skip whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3015
  if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3016
    // Check for ins_encode %{ form
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3017
    if ((_curchar == '%') && (*(_ptr+1) == '{')) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3018
      next_char();                      // Skip '%'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3019
      next_char();                      // Skip '{'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3020
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3021
      // Parse the block form of ins_encode
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3022
      ins_encode_parse_block(inst);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3023
      return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3024
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3025
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3026
    parse_err(SYNERR, "missing '%%{' or '(' in ins_encode definition\n");
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3027
    return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3028
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3029
  next_char();                     // move past '('
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3030
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3031
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3032
  InsEncode *encrule  = new InsEncode(); // Encode class for instruction
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3033
  encrule->_linenum = linenum();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3034
  char      *ec_name  = NULL;      // String representation of encode rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3035
  // identifier is optional.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3036
  while (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3037
    ec_name = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3038
    if (ec_name == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3039
      parse_err(SYNERR, "Invalid encode class name after 'ins_encode('.\n");
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3040
      return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3041
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3042
    // Check that encoding is defined in the encode section
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3043
    EncClass *encode_class = _AD._encode->encClass(ec_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3044
    if (encode_class == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3045
      // Like to defer checking these till later...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3046
      // parse_err(WARN, "Using an undefined encode class '%s' in 'ins_encode'.\n", ec_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3047
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3048
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3049
    // Get list for encode method's parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3050
    NameAndList *params = encrule->add_encode(ec_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3051
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3052
    // Parse the parameters to this encode method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3053
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3054
    if ( _curchar == '(' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3055
      next_char();                 // move past '(' for parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3056
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3057
      // Parse the encode method's parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3058
      while (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3059
        char *param = get_ident_or_literal_constant("encoding operand");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3060
        if ( param != NULL ) {
22850
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3061
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3062
          // Check if this instruct is a MachConstantNode.
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3063
          if (strcmp(param, "constanttablebase") == 0) {
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3064
            // This instruct is a MachConstantNode.
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3065
            inst.set_needs_constant_base(true);
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3066
            if (strncmp("MachCall", inst.mach_base_class(_globalNames), strlen("MachCall")) != 0 ) {
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3067
              inst.set_is_mach_constant(true);
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3068
            }
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3069
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3070
            if (_curchar == '(')  {
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3071
              parse_err(SYNERR, "constanttablebase in instruct %s cannot have an argument "
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3072
                        "(only constantaddress and constantoffset)", ec_name);
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3073
              return;
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3074
            }
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3075
          } else {
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3076
            // Found a parameter:
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3077
            // Check it is a local name, add it to the list, then check for more
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3078
            // New: allow hex constants as parameters to an encode method.
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3079
            // New: allow parenthesized expressions as parameters.
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3080
            // New: allow "primary", "secondary", "tertiary" as parameters.
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3081
            // New: allow user-defined register name as parameter
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3082
            if ( (inst._localNames[param] == NULL) &&
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3083
                 !ADLParser::is_literal_constant(param) &&
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3084
                 (Opcode::as_opcode_type(param) == Opcode::NOT_AN_OPCODE) &&
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3085
                 ((_AD._register == NULL ) || (_AD._register->getRegDef(param) == NULL)) ) {
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3086
              parse_err(SYNERR, "Using non-locally defined parameter %s for encoding %s.\n", param, ec_name);
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3087
              return;
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3088
            }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3089
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3090
          params->add_entry(param);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3091
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3092
          skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3093
          if (_curchar == ',' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3094
            // More parameters to come
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3095
            next_char();           // move past ',' between parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3096
            skipws();              // Skip to next parameter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3097
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3098
          else if (_curchar == ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3099
            // Done with parameter list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3100
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3101
          else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3102
            // Only ',' or ')' are valid after a parameter name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3103
            parse_err(SYNERR, "expected ',' or ')' after parameter %s.\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3104
                      ec_name);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3105
            return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3106
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3107
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3108
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3109
          skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3110
          // Did not find a parameter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3111
          if (_curchar == ',') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3112
            parse_err(SYNERR, "Expected encode parameter before ',' in encoding %s.\n", ec_name);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3113
            return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3114
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3115
          if (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3116
            parse_err(SYNERR, "Expected ')' after encode parameters.\n");
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3117
            return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3118
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3119
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3120
      } // WHILE loop collecting parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3121
      next_char();                   // move past ')' at end of parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3122
    } // done with parameter list for encoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3123
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3124
    // Check for ',' or ')' after encoding
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3125
    skipws();                      // move to character after parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3126
    if ( _curchar == ',' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3127
      // Found a ','
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3128
      next_char();                 // move past ',' between encode methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3129
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3130
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3131
    else if ( _curchar != ')' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3132
      // If not a ',' then only a ')' is allowed
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3133
      parse_err(SYNERR, "Expected ')' after encoding %s.\n", ec_name);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3134
      return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3135
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3136
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3137
    // Check for ',' separating parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3138
    // if ( _curchar != ',' && _curchar != ')' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3139
    //   parse_err(SYNERR, "expected ',' or ')' after encode method inside ins_encode.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3140
    //   return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3141
    // }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3142
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3143
  } // done parsing ins_encode methods and their parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3144
  if (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3145
    parse_err(SYNERR, "Missing ')' at end of ins_encode description.\n");
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3146
    return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3147
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3148
  next_char();                     // move past ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3149
  skipws();                        // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3150
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3151
  if ( _curchar != ';' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3152
    parse_err(SYNERR, "Missing ';' at end of ins_encode.\n");
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3153
    return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3154
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3155
  next_char();                     // move past ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3156
  skipws();                        // be friendly to oper_parse()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3157
10016
8020d5b49663 7061101: adlc should complain about mixing block and expression forms of ins_encode
never
parents: 7433
diff changeset
  3158
  // Check for duplicate ins_encode sections after parsing the block
8020d5b49663 7061101: adlc should complain about mixing block and expression forms of ins_encode
never
parents: 7433
diff changeset
  3159
  // so that parsing can continue and find any other errors.
8020d5b49663 7061101: adlc should complain about mixing block and expression forms of ins_encode
never
parents: 7433
diff changeset
  3160
  if (inst._insencode != NULL) {
8020d5b49663 7061101: adlc should complain about mixing block and expression forms of ins_encode
never
parents: 7433
diff changeset
  3161
    parse_err(SYNERR, "Multiple ins_encode sections defined\n");
8020d5b49663 7061101: adlc should complain about mixing block and expression forms of ins_encode
never
parents: 7433
diff changeset
  3162
    return;
8020d5b49663 7061101: adlc should complain about mixing block and expression forms of ins_encode
never
parents: 7433
diff changeset
  3163
  }
8020d5b49663 7061101: adlc should complain about mixing block and expression forms of ins_encode
never
parents: 7433
diff changeset
  3164
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3165
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3166
  if (_AD._adl_debug > 1) fprintf(stderr,"Instruction Encode: %s\n", ec_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3167
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3168
  // Set encode class of this instruction.
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3169
  inst._insencode = encrule;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3170
}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3171
22844
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3172
//------------------------------postalloc_expand_parse---------------------------
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3173
// Encode rules have the form
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3174
//   postalloc_expand( encode_class_name(parameter_list) );
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3175
//
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3176
// The "encode_class_name" must be defined in the encode section.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3177
// The parameter list contains $names that are locals.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3178
//
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3179
// This is just a copy of ins_encode_parse without the loop.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3180
void ADLParser::postalloc_expand_parse(InstructForm& inst) {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3181
  inst._is_postalloc_expand = true;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3182
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3183
  // Parse encode class name.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3184
  skipws();                        // Skip whitespace.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3185
  if (_curchar != '(') {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3186
    // Check for postalloc_expand %{ form
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3187
    if ((_curchar == '%') && (*(_ptr+1) == '{')) {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3188
      next_char();                      // Skip '%'
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3189
      next_char();                      // Skip '{'
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3190
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3191
      // Parse the block form of postalloc_expand
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3192
      ins_encode_parse_block(inst);
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3193
      return;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3194
    }
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3195
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3196
    parse_err(SYNERR, "missing '(' in postalloc_expand definition\n");
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3197
    return;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3198
  }
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3199
  next_char();                     // Move past '('.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3200
  skipws();
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3201
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3202
  InsEncode *encrule = new InsEncode(); // Encode class for instruction.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3203
  encrule->_linenum = linenum();
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3204
  char      *ec_name = NULL;       // String representation of encode rule.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3205
  // identifier is optional.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3206
  if (_curchar != ')') {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3207
    ec_name = get_ident();
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3208
    if (ec_name == NULL) {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3209
      parse_err(SYNERR, "Invalid postalloc_expand class name after 'postalloc_expand('.\n");
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3210
      return;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3211
    }
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3212
    // Check that encoding is defined in the encode section.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3213
    EncClass *encode_class = _AD._encode->encClass(ec_name);
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3214
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3215
    // Get list for encode method's parameters
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3216
    NameAndList *params = encrule->add_encode(ec_name);
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3217
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3218
    // Parse the parameters to this encode method.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3219
    skipws();
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3220
    if (_curchar == '(') {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3221
      next_char();                 // Move past '(' for parameters.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3222
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3223
      // Parse the encode method's parameters.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3224
      while (_curchar != ')') {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3225
        char *param = get_ident_or_literal_constant("encoding operand");
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3226
        if (param != NULL) {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3227
          // Found a parameter:
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3228
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3229
          // First check for constant table support.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3230
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3231
          // Check if this instruct is a MachConstantNode.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3232
          if (strcmp(param, "constanttablebase") == 0) {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3233
            // This instruct is a MachConstantNode.
22850
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3234
            inst.set_needs_constant_base(true);
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3235
            if (strncmp("MachCall", inst.mach_base_class(_globalNames), strlen("MachCall")) != 0 ) {
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3236
              inst.set_is_mach_constant(true);
4e69ce7e1101 8028580: PPC64 (part 114/120): Support for Call nodes with constants.
goetz
parents: 22847
diff changeset
  3237
            }
22844
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3238
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3239
            if (_curchar == '(') {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3240
              parse_err(SYNERR, "constanttablebase in instruct %s cannot have an argument "
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3241
                        "(only constantaddress and constantoffset)", ec_name);
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3242
              return;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3243
            }
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3244
          }
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3245
          else if ((strcmp(param, "constantaddress") == 0) ||
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3246
                   (strcmp(param, "constantoffset")  == 0))  {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3247
            // This instruct is a MachConstantNode.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3248
            inst.set_is_mach_constant(true);
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3249
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3250
            // If the constant keyword has an argument, parse it.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3251
            if (_curchar == '(') constant_parse(inst);
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3252
          }
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3253
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3254
          // Else check it is a local name, add it to the list, then check for more.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3255
          // New: allow hex constants as parameters to an encode method.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3256
          // New: allow parenthesized expressions as parameters.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3257
          // New: allow "primary", "secondary", "tertiary" as parameters.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3258
          // New: allow user-defined register name as parameter.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3259
          else if ((inst._localNames[param] == NULL) &&
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3260
                   !ADLParser::is_literal_constant(param) &&
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3261
                   (Opcode::as_opcode_type(param) == Opcode::NOT_AN_OPCODE) &&
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3262
                   ((_AD._register == NULL) || (_AD._register->getRegDef(param) == NULL))) {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3263
            parse_err(SYNERR, "Using non-locally defined parameter %s for encoding %s.\n", param, ec_name);
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3264
            return;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3265
          }
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3266
          params->add_entry(param);
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3267
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3268
          skipws();
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3269
          if (_curchar == ',') {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3270
            // More parameters to come.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3271
            next_char();           // Move past ',' between parameters.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3272
            skipws();              // Skip to next parameter.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3273
          } else if (_curchar == ')') {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3274
            // Done with parameter list
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3275
          } else {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3276
            // Only ',' or ')' are valid after a parameter name.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3277
            parse_err(SYNERR, "expected ',' or ')' after parameter %s.\n", ec_name);
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3278
            return;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3279
          }
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3280
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3281
        } else {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3282
          skipws();
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3283
          // Did not find a parameter.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3284
          if (_curchar == ',') {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3285
            parse_err(SYNERR, "Expected encode parameter before ',' in postalloc_expand %s.\n", ec_name);
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3286
            return;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3287
          }
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3288
          if (_curchar != ')') {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3289
            parse_err(SYNERR, "Expected ')' after postalloc_expand parameters.\n");
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3290
            return;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3291
          }
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3292
        }
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3293
      } // WHILE loop collecting parameters.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3294
      next_char();                 // Move past ')' at end of parameters.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3295
    } // Done with parameter list for encoding.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3296
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3297
    // Check for ',' or ')' after encoding.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3298
    skipws();                      // Move to character after parameters.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3299
    if (_curchar != ')') {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3300
      // Only a ')' is allowed.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3301
      parse_err(SYNERR, "Expected ')' after postalloc_expand %s.\n", ec_name);
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3302
      return;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3303
    }
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3304
  } // Done parsing postalloc_expand method and their parameters.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3305
  if (_curchar != ')') {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3306
    parse_err(SYNERR, "Missing ')' at end of postalloc_expand description.\n");
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3307
    return;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3308
  }
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3309
  next_char();                     // Move past ')'.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3310
  skipws();                        // Skip leading whitespace.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3311
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3312
  if (_curchar != ';') {
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3313
    parse_err(SYNERR, "Missing ';' at end of postalloc_expand.\n");
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3314
    return;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3315
  }
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3316
  next_char();                     // Move past ';'.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3317
  skipws();                        // Be friendly to oper_parse().
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3318
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3319
  // Debug Stuff.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3320
  if (_AD._adl_debug > 1) fprintf(stderr, "Instruction postalloc_expand: %s\n", ec_name);
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3321
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3322
  // Set encode class of this instruction.
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3323
  inst._insencode = encrule;
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3324
}
90f76a40ed8a 8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents: 20289
diff changeset
  3325
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3326
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3327
//------------------------------constant_parse---------------------------------
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3328
// Parse a constant expression.
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3329
void ADLParser::constant_parse(InstructForm& inst) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3330
  // Create a new encoding name based on the name of the instruction
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3331
  // definition, which should be unique.
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3332
  const char* prefix = "__constant_";
52583
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51050
diff changeset
  3333
  char* ec_name = (char*) AllocateHeap(strlen(inst._ident) + strlen(prefix) + 1);
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3334
  sprintf(ec_name, "%s%s", prefix, inst._ident);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3335
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3336
  assert(_AD._encode->encClass(ec_name) == NULL, "shouldn't already exist");
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3337
  EncClass* encoding = _AD._encode->add_EncClass(ec_name);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3338
  encoding->_linenum = linenum();
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3339
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3340
  // synthesize the arguments list for the enc_class from the
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3341
  // arguments to the instruct definition.
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3342
  const char* param = NULL;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3343
  inst._parameters.reset();
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3344
  while ((param = inst._parameters.iter()) != NULL) {
52683
e017d2f176d0 8214059: Undefined behaviour in ADLC
sgehwolf
parents: 52583
diff changeset
  3345
    OpClassForm* opForm = inst._localNames[param]->is_opclass();
e017d2f176d0 8214059: Undefined behaviour in ADLC
sgehwolf
parents: 52583
diff changeset
  3346
    assert(opForm != NULL, "sanity");
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3347
    encoding->add_parameter(opForm->_ident, param);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3348
  }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3349
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3350
  // Parse the following ( ) expression.
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3351
  constant_parse_expression(encoding, ec_name);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3352
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3353
  // Build an encoding rule which invokes the encoding rule we just
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3354
  // created, passing all arguments that we received.
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3355
  InsEncode*   encrule = new InsEncode(); // Encode class for instruction
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3356
  NameAndList* params  = encrule->add_encode(ec_name);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3357
  inst._parameters.reset();
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3358
  while ((param = inst._parameters.iter()) != NULL) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3359
    params->add_entry(param);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3360
  }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3361
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3362
  // Set encode class of this instruction.
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3363
  inst._constant = encrule;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3364
}
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3365
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3366
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3367
//------------------------------constant_parse_expression----------------------
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3368
void ADLParser::constant_parse_expression(EncClass* encoding, char* ec_name) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3369
  skipws();
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3370
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3371
  // Prepend location descriptor, for debugging; cf. ADLParser::find_cpp_block
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3372
  if (_AD._adlocation_debug) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3373
    encoding->add_code(get_line_string());
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3374
  }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3375
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3376
  // Start code line.
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3377
  encoding->add_code("    _constant = C->constant_table().add");
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3378
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3379
  // Parse everything in ( ) expression.
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10255
diff changeset
  3380
  encoding->add_code("(this, ");
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3381
  next_char();  // Skip '('
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3382
  int parens_depth = 1;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3383
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3384
  // Collect the parts of the constant expression.
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3385
  // (1) strings that are passed through to output
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3386
  // (2) replacement/substitution variable, preceeded by a '$'
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3387
  while (parens_depth > 0) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3388
    if (_curchar == '(') {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3389
      parens_depth++;
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3390
      encoding->add_code("(");
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3391
      next_char();
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3392
    }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3393
    else if (_curchar == ')') {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3394
      parens_depth--;
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10255
diff changeset
  3395
      if (parens_depth > 0)
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10255
diff changeset
  3396
        encoding->add_code(")");
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3397
      next_char();
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3398
    }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3399
    else {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3400
      // (1)
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3401
      // Check if there is a string to pass through to output
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3402
      char *start = _ptr;  // Record start of the next string
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3403
      while ((_curchar != '$') && (_curchar != '(') && (_curchar != ')')) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3404
        next_char();
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3405
      }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3406
      // If a string was found, terminate it and record in EncClass
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3407
      if (start != _ptr) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3408
        *_ptr = '\0';  // Terminate the string
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3409
        encoding->add_code(start);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3410
      }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3411
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3412
      // (2)
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3413
      // If we are at a replacement variable, copy it and record in EncClass.
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3414
      if (_curchar == '$') {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3415
        // Found replacement Variable
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3416
        char* rep_var = get_rep_var_ident_dup();
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3417
        encoding->add_rep_var(rep_var);
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3418
      }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3419
    }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3420
  }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3421
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3422
  // Finish code line.
11190
d561d41f241a 7003454: order constants in constant table by number of references in code
twisti
parents: 10255
diff changeset
  3423
  encoding->add_code(");");
7433
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3424
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3425
  if (_AD._adlocation_debug) {
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3426
    encoding->add_code(end_line_marker());
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3427
  }
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3428
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3429
  // Debug Stuff
b418028612ad 6961690: load oops from constant table on SPARC
twisti
parents: 7397
diff changeset
  3430
  if (_AD._adl_debug > 1)  fprintf(stderr, "EncodingClass Form: %s\n", ec_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3431
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3432
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3433
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3434
//------------------------------size_parse-----------------------------------
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  3435
// Parse a 'size(<expr>)' attribute which specifies the size of the
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  3436
// emitted instructions in bytes. <expr> can be a C++ expression,
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  3437
// e.g. a constant.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3438
char* ADLParser::size_parse(InstructForm *instr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3439
  char* sizeOfInstr = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3440
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3441
  // Get value of the instruction's size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3442
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3443
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3444
  // Parse size
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3445
  sizeOfInstr = get_paren_expr("size expression");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3446
  if (sizeOfInstr == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3447
     parse_err(SYNERR, "size of opcode expected at %c\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3448
     return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3449
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3450
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3451
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3452
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3453
  // Check for terminator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3454
  if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3455
    parse_err(SYNERR, "missing ';' in ins_attrib definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3456
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3457
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3458
  next_char();                     // Advance past the ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3459
  skipws();                        // necessary for instr_parse()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3460
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3461
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3462
  if (_AD._adl_debug > 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3463
    if (sizeOfInstr != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3464
      fprintf(stderr,"size of opcode: %s\n", sizeOfInstr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3465
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3466
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3467
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3468
  return sizeOfInstr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3469
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3470
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3471
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3472
//------------------------------opcode_parse-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3473
Opcode * ADLParser::opcode_parse(InstructForm *instr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3474
  char *primary   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3475
  char *secondary = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3476
  char *tertiary  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3477
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3478
  char   *val    = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3479
  Opcode *opcode = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3480
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3481
  // Get value of the instruction's opcode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3482
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3483
  if (_curchar != '(') {         // Check for parenthesized operand list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3484
    parse_err(SYNERR, "missing '(' in expand instruction declaration\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3485
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3486
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3487
  next_char();                   // skip open paren
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3488
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3489
  if (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3490
    // Parse primary, secondary, and tertiary opcodes, if provided.
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 35164
diff changeset
  3491
    if ( (primary = get_ident_or_literal_constant("primary opcode")) == NULL ) {
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 35164
diff changeset
  3492
          parse_err(SYNERR, "primary hex opcode expected at %c\n", _curchar);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3493
        return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3494
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3495
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3496
    if (_curchar == ',') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3497
      next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3498
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3499
      // Parse secondary opcode
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 35164
diff changeset
  3500
      if ( (secondary = get_ident_or_literal_constant("secondary opcode")) == NULL ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3501
        parse_err(SYNERR, "secondary hex opcode expected at %c\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3502
        return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3503
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3504
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3505
      if (_curchar == ',') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3506
        next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3507
        skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3508
        // Parse tertiary opcode
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 35164
diff changeset
  3509
        if ( (tertiary = get_ident_or_literal_constant("tertiary opcode")) == NULL ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3510
          parse_err(SYNERR,"tertiary hex opcode expected at %c\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3511
          return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3512
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3513
        skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3514
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3515
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3516
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3517
    if (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3518
      parse_err(SYNERR, "Missing ')' in opcode description\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3519
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3520
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3521
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3522
  next_char();                     // Skip ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3523
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3524
  // Check for terminator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3525
  if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3526
    parse_err(SYNERR, "missing ';' in ins_attrib definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3527
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3528
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3529
  next_char();                     // Advance past the ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3530
  skipws();                        // necessary for instr_parse()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3531
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3532
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3533
  if (_AD._adl_debug > 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3534
    if (primary   != NULL) fprintf(stderr,"primary   opcode: %s\n", primary);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3535
    if (secondary != NULL) fprintf(stderr,"secondary opcode: %s\n", secondary);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3536
    if (tertiary  != NULL) fprintf(stderr,"tertiary  opcode: %s\n", tertiary);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3537
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3538
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3539
  // Generate new object and return
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3540
  opcode = new Opcode(primary, secondary, tertiary);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3541
  return opcode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3542
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3543
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3544
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3545
//------------------------------interface_parse--------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3546
Interface *ADLParser::interface_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3547
  char *iface_name  = NULL;      // Name of interface class being used
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3548
  char *iface_code  = NULL;      // Describe components of this class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3549
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3550
  // Get interface class name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3551
  skipws();                       // Skip whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3552
  if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3553
    parse_err(SYNERR, "Missing '(' at start of interface description.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3554
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3555
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3556
  next_char();                    // move past '('
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3557
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3558
  iface_name = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3559
  if (iface_name == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3560
    parse_err(SYNERR, "missing interface name after 'interface'.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3561
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3562
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3563
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3564
  if (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3565
    parse_err(SYNERR, "Missing ')' after name of interface.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3566
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3567
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3568
  next_char();                    // move past ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3569
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3570
  // Get details of the interface,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3571
  // for the type of interface indicated by iface_name.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3572
  Interface *inter = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3573
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3574
  if ( _curchar != ';' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3575
    if ( strcmp(iface_name,"MEMORY_INTER") == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3576
      inter = mem_interface_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3577
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3578
    else if ( strcmp(iface_name,"COND_INTER") == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3579
      inter = cond_interface_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3580
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3581
    // The parse routines consume the "%}"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3582
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3583
    // Check for probable extra ';' after defining block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3584
    if ( _curchar == ';' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3585
      parse_err(SYNERR, "Extra ';' after defining interface block.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3586
      next_char();                // Skip ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3587
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3588
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3589
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3590
    next_char();                  // move past ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3591
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3592
    // Create appropriate interface object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3593
    if ( strcmp(iface_name,"REG_INTER") == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3594
      inter = new RegInterface();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3595
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3596
    else if ( strcmp(iface_name,"CONST_INTER") == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3597
      inter = new ConstInterface();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3598
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3599
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3600
  skipws();                       // be friendly to oper_parse()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3601
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3602
  if (_AD._adl_debug > 1) fprintf(stderr,"Interface Form: %s\n", iface_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3603
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3604
  // Create appropriate interface object and return.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3605
  return inter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3606
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3607
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3608
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3609
//------------------------------mem_interface_parse----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3610
Interface *ADLParser::mem_interface_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3611
  // Fields for MemInterface
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3612
  char *base        = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3613
  char *index       = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3614
  char *scale       = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3615
  char *disp        = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3616
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3617
  if (_curchar != '%') {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  3618
    parse_err(SYNERR, "Missing '%%{' for 'interface' block.\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3619
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3620
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3621
  next_char();                  // Skip '%'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3622
  if (_curchar != '{') {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  3623
    parse_err(SYNERR, "Missing '%%{' for 'interface' block.\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3624
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3625
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3626
  next_char();                  // Skip '{'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3627
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3628
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3629
    char *field = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3630
    if (field == NULL) {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  3631
      parse_err(SYNERR, "Expected keyword, base|index|scale|disp,  or '%%}' ending interface.\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3632
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3633
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3634
    if ( strcmp(field,"base") == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3635
      base  = interface_field_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3636
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3637
    else if ( strcmp(field,"index") == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3638
      index = interface_field_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3639
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3640
    else if ( strcmp(field,"scale") == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3641
      scale = interface_field_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3642
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3643
    else if ( strcmp(field,"disp") == 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3644
      disp  = interface_field_parse();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3645
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3646
    else {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  3647
      parse_err(SYNERR, "Expected keyword, base|index|scale|disp,  or '%%}' ending interface.\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3648
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3649
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3650
  } while( _curchar != '%' );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3651
  next_char();                  // Skip '%'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3652
  if ( _curchar != '}' ) {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  3653
    parse_err(SYNERR, "Missing '%%}' for 'interface' block.\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3654
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3655
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3656
  next_char();                  // Skip '}'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3657
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3658
  // Construct desired object and return
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3659
  Interface *inter = new MemInterface(base, index, scale, disp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3660
  return inter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3661
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3662
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3663
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3664
//------------------------------cond_interface_parse---------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3665
Interface *ADLParser::cond_interface_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3666
  char *equal;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3667
  char *not_equal;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3668
  char *less;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3669
  char *greater_equal;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3670
  char *less_equal;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3671
  char *greater;
20289
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 15477
diff changeset
  3672
  char *overflow;
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 15477
diff changeset
  3673
  char *no_overflow;
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3674
  const char *equal_format = "eq";
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3675
  const char *not_equal_format = "ne";
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3676
  const char *less_format = "lt";
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3677
  const char *greater_equal_format = "ge";
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3678
  const char *less_equal_format = "le";
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3679
  const char *greater_format = "gt";
20289
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 15477
diff changeset
  3680
  const char *overflow_format = "o";
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 15477
diff changeset
  3681
  const char *no_overflow_format = "no";
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3682
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3683
  if (_curchar != '%') {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  3684
    parse_err(SYNERR, "Missing '%%{' for 'cond_interface' block.\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3685
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3686
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3687
  next_char();                  // Skip '%'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3688
  if (_curchar != '{') {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  3689
    parse_err(SYNERR, "Missing '%%{' for 'cond_interface' block.\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3690
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3691
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3692
  next_char();                  // Skip '{'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3693
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3694
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3695
    char *field = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3696
    if (field == NULL) {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  3697
      parse_err(SYNERR, "Expected keyword, base|index|scale|disp,  or '%%}' ending interface.\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3698
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3699
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3700
    if ( strcmp(field,"equal") == 0 ) {
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3701
      equal  = interface_field_parse(&equal_format);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3702
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3703
    else if ( strcmp(field,"not_equal") == 0 ) {
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3704
      not_equal = interface_field_parse(&not_equal_format);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3705
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3706
    else if ( strcmp(field,"less") == 0 ) {
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3707
      less = interface_field_parse(&less_format);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3708
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3709
    else if ( strcmp(field,"greater_equal") == 0 ) {
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3710
      greater_equal  = interface_field_parse(&greater_equal_format);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3711
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3712
    else if ( strcmp(field,"less_equal") == 0 ) {
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3713
      less_equal = interface_field_parse(&less_equal_format);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3714
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3715
    else if ( strcmp(field,"greater") == 0 ) {
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3716
      greater = interface_field_parse(&greater_format);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3717
    }
20289
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 15477
diff changeset
  3718
    else if ( strcmp(field,"overflow") == 0 ) {
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 15477
diff changeset
  3719
      overflow = interface_field_parse(&overflow_format);
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 15477
diff changeset
  3720
    }
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 15477
diff changeset
  3721
    else if ( strcmp(field,"no_overflow") == 0 ) {
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 15477
diff changeset
  3722
      no_overflow = interface_field_parse(&no_overflow_format);
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 15477
diff changeset
  3723
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3724
    else {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  3725
      parse_err(SYNERR, "Expected keyword, base|index|scale|disp,  or '%%}' ending interface.\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3726
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3727
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3728
  } while( _curchar != '%' );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3729
  next_char();                  // Skip '%'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3730
  if ( _curchar != '}' ) {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  3731
    parse_err(SYNERR, "Missing '%%}' for 'interface' block.\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3732
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3733
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3734
  next_char();                  // Skip '}'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3735
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3736
  // Construct desired object and return
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3737
  Interface *inter = new CondInterface(equal,         equal_format,
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3738
                                       not_equal,     not_equal_format,
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3739
                                       less,          less_format,
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3740
                                       greater_equal, greater_equal_format,
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3741
                                       less_equal,    less_equal_format,
20289
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 15477
diff changeset
  3742
                                       greater,       greater_format,
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 15477
diff changeset
  3743
                                       overflow,      overflow_format,
35d78de0c547 8024924: Intrinsify java.lang.Math.addExact
rbackman
parents: 15477
diff changeset
  3744
                                       no_overflow,   no_overflow_format);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3745
  return inter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3746
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3747
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3748
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3749
//------------------------------interface_field_parse--------------------------
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3750
char *ADLParser::interface_field_parse(const char ** format) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3751
  char *iface_field = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3752
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3753
  // Get interface field
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3754
  skipws();                      // Skip whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3755
  if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3756
    parse_err(SYNERR, "Missing '(' at start of interface field.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3757
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3758
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3759
  next_char();                   // move past '('
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3760
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3761
  if ( _curchar != '0' && _curchar != '$' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3762
    parse_err(SYNERR, "missing or invalid interface field contents.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3763
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3764
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3765
  iface_field = get_rep_var_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3766
  if (iface_field == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3767
    parse_err(SYNERR, "missing or invalid interface field contents.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3768
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3769
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3770
  skipws();
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3771
  if (format != NULL && _curchar == ',') {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3772
    next_char();
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3773
    skipws();
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3774
    if (_curchar != '"') {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3775
      parse_err(SYNERR, "Missing '\"' in field format .\n");
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3776
      return NULL;
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3777
    }
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3778
    next_char();
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3779
    char *start = _ptr;       // Record start of the next string
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3780
    while ((_curchar != '"') && (_curchar != '%') && (_curchar != '\n')) {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3781
      if (_curchar == '\\')  next_char();  // superquote
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3782
      if (_curchar == '\n')  parse_err(SYNERR, "newline in string");  // unimplemented!
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3783
      next_char();
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3784
    }
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3785
    if (_curchar != '"') {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3786
      parse_err(SYNERR, "Missing '\"' at end of field format .\n");
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3787
      return NULL;
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3788
    }
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3789
    // If a string was found, terminate it and record in FormatRule
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3790
    if ( start != _ptr ) {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3791
      *_ptr  = '\0';          // Terminate the string
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3792
      *format = start;
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3793
    }
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3794
    next_char();
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3795
    skipws();
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3796
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3797
  if (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3798
    parse_err(SYNERR, "Missing ')' after interface field.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3799
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3800
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3801
  next_char();                   // move past ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3802
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3803
  if ( _curchar != ';' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3804
    parse_err(SYNERR, "Missing ';' at end of interface field.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3805
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3806
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3807
  next_char();                    // move past ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3808
  skipws();                       // be friendly to interface_parse()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3809
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3810
  return iface_field;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3811
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3812
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3813
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3814
//------------------------------match_parse------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3815
MatchRule *ADLParser::match_parse(FormDict &operands) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3816
  MatchRule *match;               // Match Rule class for instruction/operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3817
  char      *cnstr = NULL;        // Code for constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3818
  int        depth = 0;           // Counter for matching parentheses
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3819
  int        numleaves = 0;       // Counter for number of leaves in rule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3820
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3821
  // Parse the match rule tree
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3822
  MatchNode *mnode = matchNode_parse(operands, depth, numleaves, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3823
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3824
  // Either there is a block with a constructor, or a ';' here
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3825
  skipws();                       // Skip whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3826
  if ( _curchar == ';' ) {        // Semicolon is valid terminator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3827
    cnstr = NULL;                 // no constructor for this form
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3828
    next_char();                  // Move past the ';', replaced with '\0'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3829
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3830
  else if ((cnstr = find_cpp_block("match constructor")) == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3831
    parse_err(SYNERR, "invalid construction of match rule\n"
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  3832
              "Missing ';' or invalid '%%{' and '%%}' constructor\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3833
    return NULL;                  // No MatchRule to return
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3834
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3835
  if (_AD._adl_debug > 1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3836
    if (cnstr) fprintf(stderr,"Match Constructor: %s\n", cnstr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3837
  // Build new MatchRule object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3838
  match = new MatchRule(_AD, mnode, depth, cnstr, numleaves);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3839
  skipws();                       // Skip any trailing whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3840
  return match;                   // Return MatchRule object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3841
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3842
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3843
//------------------------------format_parse-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3844
FormatRule* ADLParser::format_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3845
  char       *desc   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3846
  FormatRule *format = (new FormatRule(desc));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3847
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3848
  // Without expression form, MUST have a code block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3849
  skipws();                       // Skip whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3850
  if ( _curchar == ';' ) {        // Semicolon is valid terminator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3851
    desc  = NULL;                 // no constructor for this form
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3852
    next_char();                  // Move past the ';', replaced with '\0'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3853
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3854
  else if ( _curchar == '%' && *(_ptr+1) == '{') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3855
    next_char();                  // Move past the '%'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3856
    next_char();                  // Move past the '{'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3857
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3858
    skipws();
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3859
    if (_curchar == '$') {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3860
      char* ident = get_rep_var_ident();
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3861
      if (strcmp(ident, "$$template") == 0) return template_parse();
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3862
      parse_err(SYNERR, "Unknown \"%s\" directive in format", ident);
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3863
      return NULL;
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3864
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3865
    // Check for the opening '"' inside the format description
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3866
    if ( _curchar == '"' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3867
      next_char();              // Move past the initial '"'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3868
      if( _curchar == '"' ) {   // Handle empty format string case
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3869
        *_ptr = '\0';           // Terminate empty string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3870
        format->_strings.addName(_ptr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3871
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3872
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3873
      // Collect the parts of the format description
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3874
      // (1) strings that are passed through to tty->print
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3875
      // (2) replacement/substitution variable, preceeded by a '$'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3876
      // (3) multi-token ANSIY C style strings
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3877
      while ( true ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3878
        if ( _curchar == '%' || _curchar == '\n' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3879
          if ( _curchar != '"' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3880
            parse_err(SYNERR, "missing '\"' at end of format block");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3881
            return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3882
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3883
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3884
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3885
        // (1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3886
        // Check if there is a string to pass through to output
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3887
        char *start = _ptr;       // Record start of the next string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3888
        while ((_curchar != '$') && (_curchar != '"') && (_curchar != '%') && (_curchar != '\n')) {
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  3889
          if (_curchar == '\\') {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  3890
            next_char();  // superquote
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  3891
            if ((_curchar == '$') || (_curchar == '%'))
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  3892
              // hack to avoid % escapes and warnings about undefined \ escapes
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  3893
              *(_ptr-1) = _curchar;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  3894
          }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3895
          if (_curchar == '\n')  parse_err(SYNERR, "newline in string");  // unimplemented!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3896
          next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3897
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3898
        // If a string was found, terminate it and record in FormatRule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3899
        if ( start != _ptr ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3900
          *_ptr  = '\0';          // Terminate the string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3901
          format->_strings.addName(start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3902
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3903
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3904
        // (2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3905
        // If we are at a replacement variable,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3906
        // copy it and record in FormatRule
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3907
        if ( _curchar == '$' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3908
          next_char();          // Move past the '$'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3909
          char* rep_var = get_ident(); // Nil terminate the variable name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3910
          rep_var = strdup(rep_var);// Copy the string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3911
          *_ptr   = _curchar;     // and replace Nil with original character
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3912
          format->_rep_vars.addName(rep_var);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3913
          // Add flag to _strings list indicating we should check _rep_vars
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3914
          format->_strings.addName(NameList::_signal);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3915
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3916
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3917
        // (3)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3918
        // Allow very long strings to be broken up,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3919
        // using the ANSI C syntax "foo\n" <newline> "bar"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3920
        if ( _curchar == '"') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3921
          next_char();           // Move past the '"'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3922
          skipws();              // Skip white space before next string token
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3923
          if ( _curchar != '"') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3924
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3925
          } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3926
            // Found one.  Skip both " and the whitespace in between.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3927
            next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3928
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3929
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3930
      } // end while part of format description
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3931
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3932
      // Check for closing '"' and '%}' in format description
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3933
      skipws();                   // Move to closing '%}'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3934
      if ( _curchar != '%' ) {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  3935
        parse_err(SYNERR, "non-blank characters between closing '\"' and '%%' in format");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3936
        return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3937
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3938
    } // Done with format description inside
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3939
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3940
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3941
    // Past format description, at '%'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3942
    if ( _curchar != '%' || *(_ptr+1) != '}' ) {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  3943
      parse_err(SYNERR, "missing '%%}' at end of format block");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3944
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3945
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3946
    next_char();                  // Move past the '%'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3947
    next_char();                  // Move past the '}'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3948
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3949
  else {  // parameter list alone must terminate with a ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3950
    parse_err(SYNERR, "missing ';' after Format expression");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3951
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3952
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3953
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3954
  if (_AD._adl_debug > 1) fprintf(stderr,"Format Rule: %s\n", desc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3955
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3956
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3957
  return format;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3958
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3959
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3960
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3961
//------------------------------template_parse-----------------------------------
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3962
FormatRule* ADLParser::template_parse(void) {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3963
  char       *desc   = NULL;
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3964
  FormatRule *format = (new FormatRule(desc));
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3965
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3966
  skipws();
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3967
  while ( (_curchar != '%') && (*(_ptr+1) != '}') ) {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3968
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3969
    // (1)
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3970
    // Check if there is a string to pass through to output
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  3971
    {
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  3972
      char *start = _ptr;       // Record start of the next string
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  3973
      while ((_curchar != '$') && ((_curchar != '%') || (*(_ptr+1) != '}')) ) {
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  3974
        // If at the start of a comment, skip past it
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  3975
        if( (_curchar == '/') && ((*(_ptr+1) == '/') || (*(_ptr+1) == '*')) ) {
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  3976
          skipws_no_preproc();
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  3977
        } else {
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  3978
          // ELSE advance to the next character, or start of the next line
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  3979
          next_char_or_line();
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  3980
        }
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3981
      }
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  3982
      // If a string was found, terminate it and record in EncClass
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  3983
      if ( start != _ptr ) {
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  3984
        *_ptr  = '\0';          // Terminate the string
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  3985
        // Add flag to _strings list indicating we should check _rep_vars
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  3986
        format->_strings.addName(NameList::_signal2);
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  3987
        format->_strings.addName(start);
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  3988
      }
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3989
    }
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3990
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3991
    // (2)
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3992
    // If we are at a replacement variable,
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3993
    // copy it and record in EncClass
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3994
    if ( _curchar == '$' ) {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3995
      // Found replacement Variable
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3996
      char *rep_var = get_rep_var_ident_dup();
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3997
      if (strcmp(rep_var, "$emit") == 0) {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3998
        // switch to normal format parsing
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  3999
        next_char();
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4000
        next_char();
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4001
        skipws();
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4002
        // Check for the opening '"' inside the format description
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4003
        if ( _curchar == '"' ) {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4004
          next_char();              // Move past the initial '"'
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4005
          if( _curchar == '"' ) {   // Handle empty format string case
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4006
            *_ptr = '\0';           // Terminate empty string
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4007
            format->_strings.addName(_ptr);
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4008
          }
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4009
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4010
          // Collect the parts of the format description
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4011
          // (1) strings that are passed through to tty->print
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4012
          // (2) replacement/substitution variable, preceeded by a '$'
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4013
          // (3) multi-token ANSIY C style strings
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4014
          while ( true ) {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4015
            if ( _curchar == '%' || _curchar == '\n' ) {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4016
              parse_err(SYNERR, "missing '\"' at end of format block");
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4017
              return NULL;
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4018
            }
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4019
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4020
            // (1)
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4021
            // Check if there is a string to pass through to output
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4022
            char *start = _ptr;       // Record start of the next string
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4023
            while ((_curchar != '$') && (_curchar != '"') && (_curchar != '%') && (_curchar != '\n')) {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4024
              if (_curchar == '\\')  next_char();  // superquote
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4025
              if (_curchar == '\n')  parse_err(SYNERR, "newline in string");  // unimplemented!
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4026
              next_char();
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4027
            }
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4028
            // If a string was found, terminate it and record in FormatRule
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4029
            if ( start != _ptr ) {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4030
              *_ptr  = '\0';          // Terminate the string
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4031
              format->_strings.addName(start);
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4032
            }
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4033
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4034
            // (2)
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4035
            // If we are at a replacement variable,
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4036
            // copy it and record in FormatRule
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4037
            if ( _curchar == '$' ) {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4038
              next_char();          // Move past the '$'
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  4039
              char* next_rep_var = get_ident(); // Nil terminate the variable name
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  4040
              next_rep_var = strdup(next_rep_var);// Copy the string
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4041
              *_ptr   = _curchar;     // and replace Nil with original character
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  4042
              format->_rep_vars.addName(next_rep_var);
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4043
              // Add flag to _strings list indicating we should check _rep_vars
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4044
              format->_strings.addName(NameList::_signal);
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4045
            }
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4046
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4047
            // (3)
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4048
            // Allow very long strings to be broken up,
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4049
            // using the ANSI C syntax "foo\n" <newline> "bar"
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4050
            if ( _curchar == '"') {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4051
              next_char();           // Move past the '"'
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4052
              skipws();              // Skip white space before next string token
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4053
              if ( _curchar != '"') {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4054
                break;
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4055
              } else {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4056
                // Found one.  Skip both " and the whitespace in between.
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4057
                next_char();
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4058
              }
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4059
            }
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4060
          } // end while part of format description
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4061
        }
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4062
      } else {
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4063
        // Add flag to _strings list indicating we should check _rep_vars
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4064
        format->_rep_vars.addName(rep_var);
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4065
        // Add flag to _strings list indicating we should check _rep_vars
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4066
        format->_strings.addName(NameList::_signal3);
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4067
      }
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4068
    } // end while part of format description
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4069
  }
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4070
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4071
  skipws();
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4072
  // Past format description, at '%'
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4073
  if ( _curchar != '%' || *(_ptr+1) != '}' ) {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  4074
    parse_err(SYNERR, "missing '%%}' at end of format block");
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4075
    return NULL;
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4076
  }
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4077
  next_char();                  // Move past the '%'
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4078
  next_char();                  // Move past the '}'
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4079
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4080
  // Debug Stuff
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4081
  if (_AD._adl_debug > 1) fprintf(stderr,"Format Rule: %s\n", desc);
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4082
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4083
  skipws();
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4084
  return format;
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4085
}
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4086
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  4087
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4088
//------------------------------effect_parse-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4089
void ADLParser::effect_parse(InstructForm *instr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4090
  char* desc   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4091
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4092
  skipws();                      // Skip whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4093
  if (_curchar != '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4094
    parse_err(SYNERR, "missing '(' in effect definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4095
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4096
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4097
  // Get list of effect-operand pairs and insert into dictionary
11196
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4098
  else get_effectlist(instr->_effects, instr->_localNames, instr->_has_call);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4099
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4100
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4101
  if (_AD._adl_debug > 1) fprintf(stderr,"Effect description: %s\n", desc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4102
  if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4103
    parse_err(SYNERR, "missing ';' in Effect definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4104
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4105
  next_char();                  // Skip ';'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4106
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4107
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4108
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4109
//------------------------------expand_parse-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4110
ExpandRule* ADLParser::expand_parse(InstructForm *instr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4111
  char         *ident, *ident2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4112
  NameAndList  *instr_and_operands = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4113
  ExpandRule   *exp = new ExpandRule();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4114
22847
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4115
  // Expand is a block containing an ordered list of operands with initializers,
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4116
  // or instructions, each of which has an ordered list of operands.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4117
  // Check for block delimiter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4118
  skipws();                        // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4119
  if ((_curchar != '%')
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4120
      || (next_char(), (_curchar != '{')) ) { // If not open block
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  4121
    parse_err(SYNERR, "missing '%%{' in expand definition\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4122
    return(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4123
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4124
  next_char();                     // Maintain the invariant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4125
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4126
    ident = get_ident();           // Grab next identifier
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4127
    if (ident == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4128
      parse_err(SYNERR, "identifier expected at %c\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4129
      continue;
22847
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4130
    }
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4131
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4132
    // Check whether we should parse an instruction or operand.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4133
    const Form *form = _globalNames[ident];
22847
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4134
    bool parse_oper = false;
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4135
    bool parse_ins  = false;
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4136
    if (form == NULL) {
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4137
      skipws();
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4138
      // Check whether this looks like an instruction specification.  If so,
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4139
      // just parse the instruction.  The declaration of the instruction is
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4140
      // not needed here.
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4141
      if (_curchar == '(') parse_ins = true;
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4142
    } else if (form->is_instruction()) {
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4143
      parse_ins = true;
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4144
    } else if (form->is_operand()) {
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4145
      parse_oper = true;
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4146
    } else {
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4147
      parse_err(SYNERR, "instruction/operand name expected at %s\n", ident);
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4148
      continue;
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4149
    }
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4150
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4151
    if (parse_oper) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4152
      // This is a new operand
22847
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4153
      OperandForm *oper = form->is_operand();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4154
      if (oper == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4155
        parse_err(SYNERR, "instruction/operand name expected at %s\n", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4156
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4157
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4158
      // Throw the operand on the _newopers list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4159
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4160
      ident = get_unique_ident(instr->_localNames,"Operand");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4161
      if (ident == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4162
        parse_err(SYNERR, "identifier expected at %c\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4163
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4164
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4165
      exp->_newopers.addName(ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4166
      // Add new operand to LocalNames
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4167
      instr->_localNames.Insert(ident, oper);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4168
      // Grab any constructor code and save as a string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4169
      char *c = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4170
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4171
      if (_curchar == '%') { // Need a constructor for the operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4172
        c = find_cpp_block("Operand Constructor");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4173
        if (c == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4174
          parse_err(SYNERR, "Invalid code block for operand constructor\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4175
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4176
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4177
        // Add constructor to _newopconst Dict
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4178
        exp->_newopconst.Insert(ident, c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4179
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4180
      else if (_curchar != ';') { // If no constructor, need a ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4181
        parse_err(SYNERR, "Missing ; in expand rule operand declaration\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4182
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4183
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4184
      else next_char(); // Skip the ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4185
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4186
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4187
    else {
22847
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4188
      assert(parse_ins, "sanity");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4189
      // Add instruction to list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4190
      instr_and_operands = new NameAndList(ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4191
      // Grab operands, build nameList of them, and then put into dictionary
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4192
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4193
      if (_curchar != '(') {         // Check for parenthesized operand list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4194
        parse_err(SYNERR, "missing '(' in expand instruction declaration\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4195
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4196
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4197
      do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4198
        next_char();                 // skip open paren & comma characters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4199
        skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4200
        if (_curchar == ')') break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4201
        ident2 = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4202
        skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4203
        if (ident2 == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4204
          parse_err(SYNERR, "identifier expected at %c\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4205
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4206
        }                            // Check that you have a valid operand
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  4207
        const Form *form2 = instr->_localNames[ident2];
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  4208
        if (!form2) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4209
          parse_err(SYNERR, "operand name expected at %s\n", ident2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4210
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4211
        }
22847
603ad1f10e16 8028401: PPC (part 117): Improve usability of adlc and format() functionality.
goetz
parents: 22844
diff changeset
  4212
        OperandForm *oper = form2->is_operand();
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  4213
        if (oper == NULL && !form2->is_opclass()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4214
          parse_err(SYNERR, "operand name expected at %s\n", ident2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4215
          continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4216
        }                            // Add operand to list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4217
        instr_and_operands->add_entry(ident2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4218
      } while(_curchar == ',');
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4219
      if (_curchar != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4220
        parse_err(SYNERR, "missing ')'in expand instruction declaration\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4221
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4222
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4223
      next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4224
      if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4225
        parse_err(SYNERR, "missing ';'in expand instruction declaration\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4226
        continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4227
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4228
      next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4229
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4230
      // Record both instruction name and its operand list
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4231
      exp->add_instruction(instr_and_operands);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4232
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4233
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4234
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4235
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4236
  } while(_curchar != '%');
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4237
  next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4238
  if (_curchar != '}') {
15477
26b2c7942f07 8007403: Incorrect format arguments in adlparse.cpp
mikael
parents: 13971
diff changeset
  4239
    parse_err(SYNERR, "missing '%%}' in expand rule definition\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4240
    return(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4241
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4242
  next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4243
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4244
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4245
  if (_AD._adl_debug > 1) fprintf(stderr,"Expand Rule:\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4246
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4247
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4248
  return (exp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4249
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4250
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4251
//------------------------------rewrite_parse----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4252
RewriteRule* ADLParser::rewrite_parse(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4253
  char* params = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4254
  char* desc   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4255
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4256
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4257
  // This feature targeted for second generation description language.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4258
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4259
  skipws();                      // Skip whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4260
  // Get parameters for rewrite
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4261
  if ((params = get_paren_expr("rewrite parameters")) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4262
    parse_err(SYNERR, "missing '(' in rewrite rule\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4263
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4264
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4265
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4266
  if (_AD._adl_debug > 1) fprintf(stderr,"Rewrite parameters: %s\n", params);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4267
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4268
  // For now, grab entire block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4269
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4270
  if ( (desc = find_cpp_block("rewrite block")) == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4271
    parse_err(SYNERR, "incorrect or missing block for 'rewrite'.\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4272
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4273
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4274
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4275
  if (_AD._adl_debug > 1) fprintf(stderr,"Rewrite Rule: %s\n", desc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4276
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4277
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4278
  return (new RewriteRule(params,desc));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4279
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4280
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4281
//------------------------------attr_parse-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4282
Attribute *ADLParser::attr_parse(char* ident) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4283
  Attribute *attrib;              // Attribute class
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4284
  char      *cost = NULL;         // String representation of cost attribute
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4285
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4286
  skipws();                       // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4287
  if ( (cost = get_paren_expr("attribute")) == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4288
    parse_err(SYNERR, "incorrect or missing expression for 'attribute'\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4289
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4290
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4291
  // Debug Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4292
  if (_AD._adl_debug > 1) fprintf(stderr,"Attribute: %s\n", cost);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4293
  if (_curchar != ';') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4294
    parse_err(SYNERR, "missing ';' in attribute definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4295
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4296
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4297
  next_char();                   // Point after the terminator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4298
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4299
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4300
  attrib = new Attribute(ident,cost,INS_ATTR); // Build new predicate object
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4301
  return attrib;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4302
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4303
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4304
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4305
//------------------------------matchNode_parse--------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4306
MatchNode *ADLParser::matchNode_parse(FormDict &operands, int &depth, int &numleaves, bool atroot) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4307
  // Count depth of parenthesis nesting for both left and right children
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4308
  int   lParens = depth;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4309
  int   rParens = depth;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4310
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4311
  // MatchNode objects for left, right, and root of subtree.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4312
  MatchNode *lChild = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4313
  MatchNode *rChild = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4314
  char      *token;               // Identifier which may be opcode or operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4315
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4316
  // Match expression starts with a '('
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4317
  if (cur_char() != '(')
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4318
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4319
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4320
  next_char();                    // advance past '('
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4321
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4322
  // Parse the opcode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4323
  token = get_ident();            // Get identifier, opcode
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4324
  if (token == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4325
    parse_err(SYNERR, "missing opcode in match expression\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4326
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4327
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4328
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4329
  // Take note if we see one of a few special operations - those that are
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4330
  // treated differently on different architectures in the sense that on
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4331
  // one architecture there is a match rule and on another there isn't (so
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4332
  // a call will eventually be generated).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4333
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4334
  for (int i = _last_machine_leaf + 1; i < _last_opcode; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4335
    if (strcmp(token, NodeClassNames[i]) == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4336
      _AD.has_match_rule(i, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4337
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4338
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4339
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4340
  // Lookup the root value in the operands dict to perform substitution
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4341
  const char  *result    = NULL;  // Result type will be filled in later
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4342
  const char  *name      = token; // local name associated with this node
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4343
  const char  *operation = token; // remember valid operation for later
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4344
  const Form  *form      = operands[token];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4345
  OpClassForm *opcForm = form ? form->is_opclass() : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4346
  if (opcForm != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4347
    // If this token is an entry in the local names table, record its type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4348
    if (!opcForm->ideal_only()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4349
      operation = opcForm->_ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4350
      result = operation;         // Operands result in their own type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4351
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4352
    // Otherwise it is an ideal type, and so, has no local name
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4353
    else                        name = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4354
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4355
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4356
  // Parse the operands
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4357
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4358
  if (cur_char() != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4359
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4360
    // Parse the left child
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4361
    if (strcmp(operation,"Set"))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4362
      lChild = matchChild_parse(operands, lParens, numleaves, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4363
    else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4364
      lChild = matchChild_parse(operands, lParens, numleaves, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4365
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4366
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4367
    if (cur_char() != ')' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4368
      if(strcmp(operation, "Set"))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4369
        rChild = matchChild_parse(operands,rParens,numleaves,false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4370
      else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4371
        rChild = matchChild_parse(operands,rParens,numleaves,true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4372
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4373
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4374
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4375
  // Check for required ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4376
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4377
  if (cur_char() != ')') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4378
    parse_err(SYNERR, "missing ')' in match expression\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4379
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4380
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4381
  next_char();                    // skip the ')'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4382
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4383
  MatchNode* mroot = new MatchNode(_AD,result,name,operation,lChild,rChild);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4384
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4385
  // If not the root, reduce this subtree to an internal operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4386
  if (!atroot) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4387
    mroot->build_internalop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4388
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4389
  // depth is greater of left and right paths.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4390
  depth = (lParens > rParens) ? lParens : rParens;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4391
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4392
  return mroot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4393
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4394
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4395
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4396
//------------------------------matchChild_parse-------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4397
MatchNode *ADLParser::matchChild_parse(FormDict &operands, int &parens, int &numleaves, bool atroot) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4398
  MatchNode  *child  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4399
  const char *result = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4400
  const char *token  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4401
  const char *opType = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4402
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4403
  if (cur_char() == '(') {         // child is an operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4404
    ++parens;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4405
    child = matchNode_parse(operands, parens, numleaves, atroot);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4406
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4407
  else {                           // child is an operand
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4408
    token = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4409
    const Form  *form    = operands[token];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4410
    OpClassForm *opcForm = form ? form->is_opclass() : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4411
    if (opcForm != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4412
      opType = opcForm->_ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4413
      result = opcForm->_ident;    // an operand's result matches its type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4414
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4415
      parse_err(SYNERR, "undefined operand %s in match rule\n", token);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4416
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4417
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4418
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4419
    if (opType == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4420
      parse_err(SYNERR, "missing type for argument '%s'\n", token);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4421
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4422
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4423
    child = new MatchNode(_AD, result, token, opType);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4424
    ++numleaves;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4425
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4426
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4427
  return child;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4428
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4429
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4430
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4431
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4432
// ******************** Private Utility Functions *************************
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4433
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4434
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4435
char* ADLParser::find_cpp_block(const char* description) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4436
  char *next;                     // Pointer for finding block delimiters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4437
  char* cppBlock = NULL;          // Beginning of C++ code block
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4438
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4439
  if (_curchar == '%') {          // Encoding is a C++ expression
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4440
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4441
    if (_curchar != '{') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4442
      parse_err(SYNERR, "missing '{' in %s \n", description);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4443
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4444
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4445
    next_char();                  // Skip block delimiter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4446
    skipws_no_preproc();          // Skip leading whitespace
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4447
    cppBlock = _ptr;              // Point to start of expression
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4448
    int line = linenum();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4449
    next = _ptr + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4450
    while(((_curchar != '%') || (*next != '}')) && (_curchar != '\0')) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4451
      next_char_or_line();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4452
      next = _ptr+1;              // Maintain the next pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4453
    }                             // Grab string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4454
    if (_curchar == '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4455
      parse_err(SYNERR, "invalid termination of %s \n", description);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4456
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4457
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4458
    *_ptr = '\0';                 // Terminate string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4459
    _ptr += 2;                    // Skip block delimiter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4460
    _curchar = *_ptr;             // Maintain invariant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4461
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4462
    // Prepend location descriptor, for debugging.
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4463
    if (_AD._adlocation_debug) {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4464
      char* location = get_line_string(line);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4465
      char* end_loc  = end_line_marker();
52583
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51050
diff changeset
  4466
      char* result = (char *)AllocateHeap(strlen(location) + strlen(cppBlock) + strlen(end_loc) + 1);
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4467
      strcpy(result, location);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4468
      strcat(result, cppBlock);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4469
      strcat(result, end_loc);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4470
      cppBlock = result;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4471
      free(location);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4472
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4473
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4474
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4475
  return cppBlock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4476
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4477
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4478
// Move to the closing token of the expression we are currently at,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4479
// as defined by stop_chars.  Match parens and quotes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4480
char* ADLParser::get_expr(const char *desc, const char *stop_chars) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4481
  char* expr = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4482
  int   paren = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4483
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4484
  expr = _ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4485
  while (paren > 0 || !strchr(stop_chars, _curchar)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4486
    if (_curchar == '(') {        // Down level of nesting
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4487
      paren++;                    // Bump the parenthesis counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4488
      next_char();                // maintain the invariant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4489
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4490
    else if (_curchar == ')') {   // Up one level of nesting
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4491
      if (paren == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4492
        // Paren underflow:  We didn't encounter the required stop-char.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4493
        parse_err(SYNERR, "too many )'s, did not find %s after %s\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4494
                  stop_chars, desc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4495
        return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4496
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4497
      paren--;                    // Drop the parenthesis counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4498
      next_char();                // Maintain the invariant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4499
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4500
    else if (_curchar == '"' || _curchar == '\'') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4501
      int qchar = _curchar;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4502
      while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4503
        next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4504
        if (_curchar == qchar) { next_char(); break; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4505
        if (_curchar == '\\')  next_char();  // superquote
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4506
        if (_curchar == '\n' || _curchar == '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4507
          parse_err(SYNERR, "newline in string in %s\n", desc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4508
          return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4509
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4510
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4511
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4512
    else if (_curchar == '%' && (_ptr[1] == '{' || _ptr[1] == '}')) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4513
      // Make sure we do not stray into the next ADLC-level form.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4514
      parse_err(SYNERR, "unexpected %%%c in %s\n", _ptr[1], desc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4515
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4516
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4517
    else if (_curchar == '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4518
      parse_err(SYNERR, "unexpected EOF in %s\n", desc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4519
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4520
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4521
    else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4522
      // Always walk over whitespace, comments, preprocessor directives, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4523
      char* pre_skip_ptr = _ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4524
      skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4525
      // If the parser declined to make progress on whitespace,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4526
      // skip the next character, which is therefore NOT whitespace.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4527
      if (pre_skip_ptr == _ptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4528
        next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4529
      } else if (pre_skip_ptr+strlen(pre_skip_ptr) != _ptr+strlen(_ptr)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4530
        parse_err(SYNERR, "unimplemented: preprocessor must not elide subexpression in %s", desc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4531
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4532
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4533
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4534
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4535
  assert(strchr(stop_chars, _curchar), "non-null return must be at stop-char");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4536
  *_ptr = '\0';               // Replace ')' or other stop-char with '\0'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4537
  return expr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4538
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4539
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4540
// Helper function around get_expr
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4541
// Sets _curchar to '(' so that get_paren_expr will search for a matching ')'
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4542
char *ADLParser::get_paren_expr(const char *description, bool include_location) {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4543
  int line = linenum();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4544
  if (_curchar != '(')            // Escape if not valid starting position
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4545
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4546
  next_char();                    // Skip the required initial paren.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4547
  char *token2 = get_expr(description, ")");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4548
  if (_curchar == ')')
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4549
    next_char();                  // Skip required final paren.
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4550
  int junk = 0;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4551
  if (include_location && _AD._adlocation_debug && !is_int_token(token2, junk)) {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4552
    // Prepend location descriptor, for debugging.
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4553
    char* location = get_line_string(line);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4554
    char* end_loc  = end_line_marker();
52583
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51050
diff changeset
  4555
    char* result = (char *)AllocateHeap(strlen(location) + strlen(token2) + strlen(end_loc) + 1);
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4556
    strcpy(result, location);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4557
    strcat(result, token2);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4558
    strcat(result, end_loc);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4559
    token2 = result;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4560
    free(location);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4561
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4562
  return token2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4563
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4564
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4565
//------------------------------get_ident_common-------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4566
// Looks for an identifier in the buffer, and turns it into a null terminated
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4567
// string(still inside the file buffer).  Returns a pointer to the string or
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4568
// NULL if some other token is found instead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4569
char *ADLParser::get_ident_common(bool do_preproc) {
51050
96ea37459ca7 8207011: Remove uses of the register storage class specifier
mikael
parents: 47216
diff changeset
  4570
  char c;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4571
  char *start;                    // Pointer to start of token
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4572
  char *end;                      // Pointer to end of token
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4573
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4574
  if( _curline == NULL )          // Return NULL at EOF.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4575
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4576
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4577
  skipws_common(do_preproc);      // Skip whitespace before identifier
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4578
  start = end = _ptr;             // Start points at first character
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4579
  end--;                          // unwind end by one to prepare for loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4580
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4581
    end++;                        // Increment end pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4582
    c = *end;                     // Grab character to test
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4583
  } while ( ((c >= 'a') && (c <= 'z')) || ((c >= 'A') && (c <= 'Z'))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4584
            || ((c >= '0') && (c <= '9'))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4585
            || ((c == '_')) || ((c == ':')) || ((c == '#')) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4586
  if (start == end) {             // We popped out on the first try
13971
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  4587
    // It can occur that `start' contains the rest of the input file.
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  4588
    // In this case the output should be truncated.
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  4589
    if (strlen(start) > 24) {
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  4590
      char buf[32];
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  4591
      strncpy(buf, start, 20);
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  4592
      buf[20] = '\0';
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  4593
      strcat(buf, "[...]");
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  4594
      parse_err(SYNERR, "Identifier expected, but found '%s'.", buf);
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  4595
    } else {
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  4596
      parse_err(SYNERR, "Identifier expected, but found '%s'.", start);
3c568f3dacca 8000592: Improve adlc usability
kvn
parents: 13104
diff changeset
  4597
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4598
    start = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4599
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4600
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4601
    _curchar = c;                 // Save the first character of next token
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4602
    *end = '\0';                  // NULL terminate the string in place
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4603
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4604
  _ptr = end;                     // Reset _ptr to point to next char after token
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4605
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4606
  // Make sure we do not try to use #defined identifiers.  If start is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4607
  // NULL an error was already reported.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4608
  if (do_preproc && start != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4609
    const char* def = _AD.get_preproc_def(start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4610
    if (def != NULL && strcmp(def, start)) {
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4611
      const char* def1 = def;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4612
      const char* def2 = _AD.get_preproc_def(def1);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4613
      // implement up to 2 levels of #define
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4614
      if (def2 != NULL && strcmp(def2, def1)) {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4615
        def = def2;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4616
        const char* def3 = _AD.get_preproc_def(def2);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4617
        if (def3 != NULL && strcmp(def3, def2) && strcmp(def3, def1)) {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4618
          parse_err(SYNERR, "unimplemented: using %s defined as %s => %s => %s",
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4619
                    start, def1, def2, def3);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4620
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4621
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4622
      start = strdup(def);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4623
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4624
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4625
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4626
  return start;                   // Pointer to token in filebuf
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4627
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4628
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4629
//------------------------------get_ident_dup----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4630
// Looks for an identifier in the buffer, and returns a duplicate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4631
// or NULL if some other token is found instead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4632
char *ADLParser::get_ident_dup(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4633
  char *ident = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4634
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4635
  // Duplicate an identifier before returning and restore string.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4636
  if( ident != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4637
    ident = strdup(ident);  // Copy the string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4638
    *_ptr   = _curchar;         // and replace Nil with original character
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4639
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4640
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4641
  return ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4642
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4643
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4644
//----------------------get_ident_or_literal_constant--------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4645
// Looks for an identifier in the buffer, or a parenthesized expression.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4646
char *ADLParser::get_ident_or_literal_constant(const char* description) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4647
  char* param = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4648
  skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4649
  if (_curchar == '(') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4650
    // Grab a constant expression.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4651
    param = get_paren_expr(description);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4652
    if (param[0] != '(') {
52583
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51050
diff changeset
  4653
      char* buf = (char*) AllocateHeap(strlen(param) + 3);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4654
      sprintf(buf, "(%s)", param);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4655
      param = buf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4656
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4657
    assert(is_literal_constant(param),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4658
           "expr must be recognizable as a constant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4659
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4660
    param = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4661
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4662
  return param;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4663
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4664
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4665
//------------------------------get_rep_var_ident-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4666
// Do NOT duplicate,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4667
// Leave nil terminator in buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4668
// Preserve initial '$'(s) in string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4669
char *ADLParser::get_rep_var_ident(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4670
  // Remember starting point
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4671
  char *rep_var = _ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4672
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4673
  // Check for replacement variable indicator '$' and pass if present
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4674
  if ( _curchar == '$' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4675
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4676
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4677
  // Check for a subfield indicator, a second '$', and pass if present
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4678
  if ( _curchar == '$' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4679
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4680
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4681
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4682
  // Check for a control indicator, a third '$':
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4683
  if ( _curchar == '$' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4684
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4685
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4686
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4687
  // Check for more than three '$'s in sequence, SYNERR
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4688
  if( _curchar == '$' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4689
    parse_err(SYNERR, "Replacement variables and field specifiers can not start with '$$$$'");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4690
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4691
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4692
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4693
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4694
  // Nil terminate the variable name following the '$'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4695
  char *rep_var_name = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4696
  assert( rep_var_name != NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4697
          "Missing identifier after replacement variable indicator '$'");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4698
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4699
  return rep_var;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4700
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4701
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4702
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4703
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4704
//------------------------------get_rep_var_ident_dup-------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4705
// Return the next replacement variable identifier, skipping first '$'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4706
// given a pointer into a line of the buffer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4707
// Null terminates string, still inside the file buffer,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4708
// Returns a pointer to a copy of the string, or NULL on failure
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4709
char *ADLParser::get_rep_var_ident_dup(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4710
  if( _curchar != '$' ) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4711
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4712
  next_char();                // Move past the '$'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4713
  char *rep_var = _ptr;       // Remember starting point
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4714
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4715
  // Check for a subfield indicator, a second '$':
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4716
  if ( _curchar == '$' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4717
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4718
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4719
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4720
  // Check for a control indicator, a third '$':
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4721
  if ( _curchar == '$' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4722
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4723
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4724
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4725
  // Check for more than three '$'s in sequence, SYNERR
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4726
  if( _curchar == '$' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4727
    parse_err(SYNERR, "Replacement variables and field specifiers can not start with '$$$$'");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4728
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4729
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4730
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4731
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4732
  // Nil terminate the variable name following the '$'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4733
  char *rep_var_name = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4734
  assert( rep_var_name != NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4735
          "Missing identifier after replacement variable indicator '$'");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4736
  rep_var = strdup(rep_var);  // Copy the string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4737
  *_ptr   = _curchar;         // and replace Nil with original character
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4738
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4739
  return rep_var;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4740
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4741
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4742
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4743
//------------------------------get_unique_ident------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4744
// Looks for an identifier in the buffer, terminates it with a NULL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4745
// and checks that it is unique
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4746
char *ADLParser::get_unique_ident(FormDict& dict, const char* nameDescription){
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4747
  char* ident = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4748
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4749
  if (ident == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4750
    parse_err(SYNERR, "missing %s identifier at %c\n", nameDescription, _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4751
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4752
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4753
    if (dict[ident] != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4754
      parse_err(SYNERR, "duplicate name %s for %s\n", ident, nameDescription);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4755
      ident = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4756
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4757
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4758
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4759
  return ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4760
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4761
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4762
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4763
//------------------------------get_int----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4764
// Looks for a character string integer in the buffer, and turns it into an int
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4765
// invokes a parse_err if the next token is not an integer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4766
// This routine does not leave the integer null-terminated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4767
int ADLParser::get_int(void) {
51050
96ea37459ca7 8207011: Remove uses of the register storage class specifier
mikael
parents: 47216
diff changeset
  4768
  char          c;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4769
  char         *start;            // Pointer to start of token
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4770
  char         *end;              // Pointer to end of token
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4771
  int           result;           // Storage for integer result
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4772
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4773
  if( _curline == NULL )          // Return NULL at EOF.
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1675
diff changeset
  4774
    return 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4775
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4776
  skipws();                       // Skip whitespace before identifier
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4777
  start = end = _ptr;             // Start points at first character
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4778
  c = *end;                       // Grab character to test
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 35164
diff changeset
  4779
  while ((c >= '0' && c <= '9') || (c == '-' && end == start)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4780
    end++;                        // Increment end pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4781
    c = *end;                     // Grab character to test
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4782
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4783
  if (start == end) {             // We popped out on the first try
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4784
    parse_err(SYNERR, "integer expected at %c\n", c);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4785
    result = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4786
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4787
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4788
    _curchar = c;                 // Save the first character of next token
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4789
    *end = '\0';                  // NULL terminate the string in place
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4790
    result = atoi(start);         // Convert the string to an integer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4791
    *end = _curchar;              // Restore buffer to original condition
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4792
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4793
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4794
  // Reset _ptr to next char after token
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4795
  _ptr = end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4796
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4797
  return result;                   // integer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4798
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4799
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4800
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4801
//------------------------------get_relation_dup------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4802
// Looks for a relational operator in the buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4803
// invokes a parse_err if the next token is not a relation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4804
// This routine creates a duplicate of the string in the buffer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4805
char *ADLParser::get_relation_dup(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4806
  char         *result = NULL;    // relational operator being returned
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4807
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4808
  if( _curline == NULL )          // Return NULL at EOF.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4809
    return  NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4810
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4811
  skipws();                       // Skip whitespace before relation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4812
  char *start = _ptr;             // Store start of relational operator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4813
  char first  = *_ptr;            // the first character
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4814
  if( (first == '=') || (first == '!') || (first == '<') || (first == '>') ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4815
    next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4816
    char second = *_ptr;          // the second character
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 35164
diff changeset
  4817
    if( second == '=' ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4818
      next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4819
      char tmp  = *_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4820
      *_ptr = '\0';               // NULL terminate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4821
      result = strdup(start);     // Duplicate the string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4822
      *_ptr = tmp;                // restore buffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4823
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4824
      parse_err(SYNERR, "relational operator expected at %s\n", _ptr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4825
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4826
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4827
    parse_err(SYNERR, "relational operator expected at %s\n", _ptr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4828
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4829
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4830
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4831
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4832
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4833
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4834
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4835
//------------------------------get_oplist-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4836
// Looks for identifier pairs where first must be the name of an operand, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4837
// second must be a name unique in the scope of this instruction.  Stores the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4838
// names with a pointer to the OpClassForm of their type in a local name table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4839
void ADLParser::get_oplist(NameList &parameters, FormDict &operands) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4840
  OpClassForm *opclass = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4841
  char        *ident   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4842
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4843
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4844
    next_char();             // skip open paren & comma characters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4845
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4846
    if (_curchar == ')') break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4847
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4848
    // Get operand type, and check it against global name table
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4849
    ident = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4850
    if (ident == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4851
      parse_err(SYNERR, "optype identifier expected at %c\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4852
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4853
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4854
    else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4855
      const Form  *form = _globalNames[ident];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4856
      if( form == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4857
        parse_err(SYNERR, "undefined operand type %s\n", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4858
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4859
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4860
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4861
      // Check for valid operand type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4862
      OpClassForm *opc  = form->is_opclass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4863
      OperandForm *oper = form->is_operand();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4864
      if((oper == NULL) && (opc == NULL)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4865
        parse_err(SYNERR, "identifier %s not operand type\n", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4866
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4867
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4868
      opclass = opc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4869
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4870
    // Debugging Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4871
    if (_AD._adl_debug > 1) fprintf(stderr, "\tOperand Type: %s\t", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4872
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4873
    // Get name of operand and add it to local name table
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4874
    if( (ident = get_unique_ident(operands, "operand")) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4875
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4876
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4877
    // Parameter names must not be global names.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4878
    if( _globalNames[ident] != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4879
         parse_err(SYNERR, "Reuse of global name %s as operand.\n",ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4880
         return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4881
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4882
    operands.Insert(ident, opclass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4883
    parameters.addName(ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4884
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4885
    // Debugging Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4886
    if (_AD._adl_debug > 1) fprintf(stderr, "\tOperand Name: %s\n", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4887
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4888
  } while(_curchar == ',');
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4889
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4890
  if (_curchar != ')') parse_err(SYNERR, "missing ')'\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4891
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4892
    next_char();  // set current character position past the close paren
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4893
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4894
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4895
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4896
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4897
//------------------------------get_effectlist---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4898
// Looks for identifier pairs where first must be the name of a pre-defined,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4899
// effect, and the second must be the name of an operand defined in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4900
// operand list of this instruction.  Stores the names with a pointer to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4901
// effect form in a local effects table.
11196
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4902
void ADLParser::get_effectlist(FormDict &effects, FormDict &operands, bool& has_call) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4903
  OperandForm *opForm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4904
  Effect      *eForm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4905
  char        *ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4906
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4907
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4908
    next_char();             // skip open paren & comma characters
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4909
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4910
    if (_curchar == ')') break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4911
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4912
    // Get effect type, and check it against global name table
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4913
    ident = get_ident();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4914
    if (ident == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4915
      parse_err(SYNERR, "effect type identifier expected at %c\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4916
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4917
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4918
    else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4919
      // Check for valid effect type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4920
      const Form *form = _globalNames[ident];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4921
      if( form == NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4922
        parse_err(SYNERR, "undefined effect type %s\n", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4923
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4924
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4925
      else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4926
        if( (eForm = form->is_effect()) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4927
          parse_err(SYNERR, "identifier %s not effect type\n", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4928
          return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4929
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4930
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4931
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4932
      // Debugging Stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4933
    if (_AD._adl_debug > 1) fprintf(stderr, "\tEffect Type: %s\t", ident);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4934
    skipws();
11196
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4935
    if (eForm->is(Component::CALL)) {
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4936
      if (_AD._adl_debug > 1) fprintf(stderr, "\n");
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4937
      has_call = true;
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4938
    } else {
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4939
      // Get name of operand and check that it is in the local name table
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4940
      if( (ident = get_unique_ident(effects, "effect")) == NULL) {
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4941
        parse_err(SYNERR, "missing operand identifier in effect list\n");
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4942
        return;
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4943
      }
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4944
      const Form *form = operands[ident];
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4945
      opForm = form ? form->is_operand() : NULL;
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4946
      if( opForm == NULL ) {
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4947
        if( form && form->is_opclass() ) {
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4948
          const char* cname = form->is_opclass()->_ident;
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4949
          parse_err(SYNERR, "operand classes are illegal in effect lists (found %s %s)\n", cname, ident);
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4950
        } else {
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4951
          parse_err(SYNERR, "undefined operand %s in effect list\n", ident);
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4952
        }
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4953
        return;
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4954
      }
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4955
      // Add the pair to the effects table
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4956
      effects.Insert(ident, eForm);
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4957
      // Debugging Stuff
a310a659c580 7077312: Provide a CALL effect for instruct declaration in the ad file
roland
parents: 11190
diff changeset
  4958
      if (_AD._adl_debug > 1) fprintf(stderr, "\tOperand Name: %s\n", ident);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4959
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4960
    skipws();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4961
  } while(_curchar == ',');
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4962
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4963
  if (_curchar != ')') parse_err(SYNERR, "missing ')'\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4964
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4965
    next_char();  // set current character position past the close paren
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4966
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4967
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4968
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4969
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4970
//-------------------------------preproc_line----------------------------------
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4971
// A "#line" keyword has been seen, so parse the rest of the line.
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4972
void ADLParser::preproc_line(void) {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4973
  int line = get_int();
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4974
  skipws_no_preproc();
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4975
  const char* file = NULL;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4976
  if (_curchar == '"') {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4977
    next_char();              // Move past the initial '"'
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4978
    file = _ptr;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4979
    while (true) {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4980
      if (_curchar == '\n') {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4981
        parse_err(SYNERR, "missing '\"' at end of #line directive");
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4982
        return;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4983
      }
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4984
      if (_curchar == '"') {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4985
        *_ptr  = '\0';          // Terminate the string
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4986
        next_char();
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4987
        skipws_no_preproc();
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4988
        break;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4989
      }
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4990
      next_char();
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4991
    }
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4992
  }
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4993
  ensure_end_of_line();
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4994
  if (file != NULL)
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4995
    _AD._ADL_file._name = file;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4996
  _buf.set_linenum(line);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4997
}
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  4998
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4999
//------------------------------preproc_define---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5000
// A "#define" keyword has been seen, so parse the rest of the line.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5001
void ADLParser::preproc_define(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5002
  char* flag = get_ident_no_preproc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5003
  skipws_no_preproc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5004
  // only #define x y is supported for now
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5005
  char* def = get_ident_no_preproc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5006
  _AD.set_preproc_def(flag, def);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5007
  skipws_no_preproc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5008
  if (_curchar != '\n') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5009
    parse_err(SYNERR, "non-identifier in preprocessor definition\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5010
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5011
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5012
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5013
//------------------------------preproc_undef----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5014
// An "#undef" keyword has been seen, so parse the rest of the line.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5015
void ADLParser::preproc_undef(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5016
  char* flag = get_ident_no_preproc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5017
  skipws_no_preproc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5018
  ensure_end_of_line();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5019
  _AD.set_preproc_def(flag, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5020
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5021
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5022
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5023
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5024
//------------------------------parse_err--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5025
// Issue a parser error message, and skip to the end of the current line
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5026
void ADLParser::parse_err(int flag, const char *fmt, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5027
  va_list args;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5028
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5029
  va_start(args, fmt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5030
  if (flag == 1)
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  5031
    _AD._syntax_errs += _AD.emit_msg(0, flag, linenum(), fmt, args);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5032
  else if (flag == 2)
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  5033
    _AD._semantic_errs += _AD.emit_msg(0, flag, linenum(), fmt, args);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5034
  else
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  5035
    _AD._warnings += _AD.emit_msg(0, flag, linenum(), fmt, args);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5036
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5037
  int error_char = _curchar;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5038
  char* error_ptr = _ptr+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5039
  for(;*_ptr != '\n'; _ptr++) ; // Skip to the end of the current line
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5040
  _curchar = '\n';
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5041
  va_end(args);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5042
  _AD._no_output = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5043
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5044
  if (flag == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5045
    char* error_tail = strchr(error_ptr, '\n');
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5046
    char tem = *error_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5047
    error_ptr[-1] = '\0';
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5048
    char* error_head = error_ptr-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5049
    while (error_head > _curline && *error_head)  --error_head;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5050
    if (error_tail)  *error_tail = '\0';
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5051
    fprintf(stderr, "Error Context:  %s>>>%c<<<%s\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5052
            error_head, error_char, error_ptr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5053
    if (error_tail)  *error_tail = '\n';
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5054
    error_ptr[-1] = tem;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5055
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5056
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5057
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5058
//---------------------------ensure_start_of_line------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5059
// A preprocessor directive has been encountered.  Be sure it has fallen at
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 2129
diff changeset
  5060
// the beginning of a line, or else report an error.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5061
void ADLParser::ensure_start_of_line(void) {
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5062
  if (_curchar == '\n') { next_line(); return; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5063
  assert( _ptr >= _curline && _ptr < _curline+strlen(_curline),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5064
          "Must be able to find which line we are in" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5065
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5066
  for (char *s = _curline; s < _ptr; s++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5067
    if (*s > ' ') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5068
      parse_err(SYNERR, "'%c' must be at beginning of line\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5069
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5070
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5071
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5072
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5073
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5074
//---------------------------ensure_end_of_line--------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5075
// A preprocessor directive has been parsed.  Be sure there is no trailing
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5076
// garbage at the end of this line.  Set the scan point to the beginning of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5077
// the next line.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5078
void ADLParser::ensure_end_of_line(void) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5079
  skipws_no_preproc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5080
  if (_curchar != '\n' && _curchar != '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5081
    parse_err(SYNERR, "garbage char '%c' at end of line\n", _curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5082
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5083
    next_char_or_line();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5084
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5085
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5086
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5087
//---------------------------handle_preproc------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5088
// The '#' character introducing a preprocessor directive has been found.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5089
// Parse the whole directive name (e.g., #define, #endif) and take appropriate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5090
// action.  If we are in an "untaken" span of text, simply keep track of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5091
// #ifdef nesting structure, so we can find out when to start taking text
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5092
// again.  (In this state, we "sort of support" C's #if directives, enough
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5093
// to disregard their associated #else and #endif lines.)  If we are in a
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5094
// "taken" span of text, there are two cases:  "#define" and "#undef"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5095
// directives are preserved and passed up to the caller, which eventually
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5096
// passes control to the top-level parser loop, which handles #define and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5097
// #undef directly.  (This prevents these directives from occurring in
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5098
// arbitrary positions in the AD file--we require better structure than C.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5099
// In the other case, and #ifdef, #ifndef, #else, or #endif is silently
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5100
// processed as whitespace, with the "taken" state of the text correctly
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5101
// updated.  This routine returns "false" exactly in the case of a "taken"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5102
// #define or #undef, which tells the caller that a preprocessor token
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5103
// has appeared which must be handled explicitly by the parse loop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5104
bool ADLParser::handle_preproc_token() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5105
  assert(*_ptr == '#', "must be at start of preproc");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5106
  ensure_start_of_line();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5107
  next_char();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5108
  skipws_no_preproc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5109
  char* start_ident = _ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5110
  char* ident = (_curchar == '\n') ? NULL : get_ident_no_preproc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5111
  if (ident == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5112
    parse_err(SYNERR, "expected preprocessor command, got end of line\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5113
  } else if (!strcmp(ident, "ifdef") ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5114
             !strcmp(ident, "ifndef")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5115
    char* flag = get_ident_no_preproc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5116
    ensure_end_of_line();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5117
    // Test the identifier only if we are already in taken code:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5118
    bool flag_def  = preproc_taken() && (_AD.get_preproc_def(flag) != NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5119
    bool now_taken = !strcmp(ident, "ifdef") ? flag_def : !flag_def;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5120
    begin_if_def(now_taken);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5121
  } else if (!strcmp(ident, "if")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5122
    if (preproc_taken())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5123
      parse_err(SYNERR, "unimplemented: #%s %s", ident, _ptr+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5124
    next_line();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5125
    // Intelligently skip this nested C preprocessor directive:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5126
    begin_if_def(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5127
  } else if (!strcmp(ident, "else")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5128
    ensure_end_of_line();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5129
    invert_if_def();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5130
  } else if (!strcmp(ident, "endif")) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5131
    ensure_end_of_line();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5132
    end_if_def();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5133
  } else if (preproc_taken()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5134
    // pass this token up to the main parser as "#define" or "#undef"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5135
    _ptr = start_ident;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5136
    _curchar = *--_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5137
    if( _curchar != '#' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5138
      parse_err(SYNERR, "no space allowed after # in #define or #undef");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5139
      assert(_curchar == '#', "no space allowed after # in #define or #undef");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5140
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5141
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5142
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5143
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5144
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5145
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5146
//---------------------------skipws_common-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5147
// Skip whitespace, including comments and newlines, while keeping an accurate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5148
// line count.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5149
// Maybe handle certain preprocessor constructs: #ifdef, #ifndef, #else, #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5150
void ADLParser::skipws_common(bool do_preproc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5151
  char *start = _ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5152
  char *next = _ptr + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5153
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5154
  if (*_ptr == '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5155
    // Check for string terminator
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5156
    if (_curchar > ' ')  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5157
    if (_curchar == '\n') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5158
      if (!do_preproc)  return;            // let caller handle the newline
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5159
      next_line();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5160
      _ptr = _curline; next = _ptr + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5161
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5162
    else if (_curchar == '#' ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5163
        (_curchar == '/' && (*next == '/' || *next == '*'))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5164
      parse_err(SYNERR, "unimplemented: comment token in a funny place");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5165
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5166
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5167
  while(_curline != NULL) {                // Check for end of file
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5168
    if (*_ptr == '\n') {                   // keep proper track of new lines
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5169
      if (!do_preproc)  break;             // let caller handle the newline
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5170
      next_line();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5171
      _ptr = _curline; next = _ptr + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5172
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5173
    else if ((*_ptr == '/') && (*next == '/'))      // C++ comment
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5174
      do { _ptr++; next++; } while(*_ptr != '\n');  // So go to end of line
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5175
    else if ((*_ptr == '/') && (*next == '*')) {    // C comment
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5176
      _ptr++; next++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5177
      do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5178
        _ptr++; next++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5179
        if (*_ptr == '\n') {               // keep proper track of new lines
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5180
          next_line();                     // skip newlines within comments
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5181
          if (_curline == NULL) {          // check for end of file
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5182
            parse_err(SYNERR, "end-of-file detected inside comment\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5183
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5184
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5185
          _ptr = _curline; next = _ptr + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5186
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5187
      } while(!((*_ptr == '*') && (*next == '/'))); // Go to end of comment
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5188
      _ptr = ++next; next++;               // increment _ptr past comment end
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5189
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5190
    else if (do_preproc && *_ptr == '#') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5191
      // Note that this calls skipws_common(false) recursively!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5192
      bool preproc_handled = handle_preproc_token();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5193
      if (!preproc_handled) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5194
        if (preproc_taken()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5195
          return;  // short circuit
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5196
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5197
        ++_ptr;    // skip the preprocessor character
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5198
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5199
      next = _ptr+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5200
    } else if(*_ptr > ' ' && !(do_preproc && !preproc_taken())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5201
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5202
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5203
    else if (*_ptr == '"' || *_ptr == '\'') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5204
      assert(do_preproc, "only skip strings if doing preproc");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5205
      // skip untaken quoted string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5206
      int qchar = *_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5207
      while (true) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5208
        ++_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5209
        if (*_ptr == qchar) { ++_ptr; break; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5210
        if (*_ptr == '\\')  ++_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5211
        if (*_ptr == '\n' || *_ptr == '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5212
          parse_err(SYNERR, "newline in string");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5213
          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5214
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5215
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5216
      next = _ptr + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5217
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5218
    else { ++_ptr; ++next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5219
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5220
  if( _curline != NULL )            // at end of file _curchar isn't valid
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5221
    _curchar = *_ptr;               // reset _curchar to maintain invariant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5222
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5223
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5224
//---------------------------cur_char-----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5225
char ADLParser::cur_char() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5226
  return (_curchar);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5227
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5228
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5229
//---------------------------next_char-----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5230
void ADLParser::next_char() {
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5231
  if (_curchar == '\n')  parse_err(WARN, "must call next_line!");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5232
  _curchar = *++_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5233
  // if ( _curchar == '\n' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5234
  //   next_line();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5235
  // }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5236
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5237
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5238
//---------------------------next_char_or_line---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5239
void ADLParser::next_char_or_line() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5240
  if ( _curchar != '\n' ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5241
    _curchar = *++_ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5242
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5243
    next_line();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5244
    _ptr = _curline;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5245
    _curchar = *_ptr;  // maintain invariant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5246
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5247
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5248
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5249
//---------------------------next_line-----------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5250
void ADLParser::next_line() {
1495
128fe18951ed 6754519: don't emit flag fixup for NaN when condition being tested doesn't need it
never
parents: 1
diff changeset
  5251
  _curline = _buf.get_line();
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5252
  _curchar = ' ';
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5253
}
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5254
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5255
//------------------------get_line_string--------------------------------------
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5256
// Prepended location descriptor, for debugging.
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5257
// Must return a malloced string (that can be freed if desired).
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5258
char* ADLParser::get_line_string(int linenum) {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5259
  const char* file = _AD._ADL_file._name;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5260
  int         line = linenum ? linenum : this->linenum();
52583
a3aa8d5380d9 8212779: ADL Parser does not check allocation return values in all cases
jcm
parents: 51050
diff changeset
  5261
  char* location = (char *)AllocateHeap(strlen(file) + 100);
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5262
  sprintf(location, "\n#line %d \"%s\"\n", line, file);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5263
  return location;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5264
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5265
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5266
//-------------------------is_literal_constant---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5267
bool ADLParser::is_literal_constant(const char *param) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5268
  if (param[0] == 0)     return false;  // null string
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5269
  if (param[0] == '(')   return true;   // parenthesized expression
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5270
  if (param[0] == '0' && (param[1] == 'x' || param[1] == 'X')) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5271
    // Make sure it's a hex constant.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5272
    int i = 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5273
    do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5274
      if( !ADLParser::is_hex_digit(*(param+i)) )  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5275
      ++i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5276
    } while( *(param+i) != 0 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5277
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5278
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5279
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5280
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5281
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5282
//---------------------------is_hex_digit--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5283
bool ADLParser::is_hex_digit(char digit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5284
  return ((digit >= '0') && (digit <= '9'))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5285
       ||((digit >= 'a') && (digit <= 'f'))
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5286
       ||((digit >= 'A') && (digit <= 'F'));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5287
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5288
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5289
//---------------------------is_int_token--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5290
bool ADLParser::is_int_token(const char* token, int& intval) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5291
  const char* cp = token;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5292
  while (*cp != '\0' && *cp <= ' ')  cp++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5293
  if (*cp == '-')  cp++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5294
  int ndigit = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5295
  while (*cp >= '0' && *cp <= '9')  { cp++; ndigit++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5296
  while (*cp != '\0' && *cp <= ' ')  cp++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5297
  if (ndigit == 0 || *cp != '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5298
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5299
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5300
  intval = atoi(token);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5301
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5302
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5303
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5304
static const char* skip_expr_ws(const char* str) {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5305
  const char * cp = str;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5306
  while (cp[0]) {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5307
    if (cp[0] <= ' ') {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5308
      ++cp;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5309
    } else if (cp[0] == '#') {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5310
      ++cp;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5311
      while (cp[0] == ' ')  ++cp;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5312
      assert(0 == strncmp(cp, "line", 4), "must be a #line directive");
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5313
      const char* eol = strchr(cp, '\n');
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5314
      assert(eol != NULL, "must find end of line");
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5315
      if (eol == NULL)  eol = cp + strlen(cp);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5316
      cp = eol;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5317
    } else {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5318
      break;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5319
    }
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5320
  }
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5321
  return cp;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5322
}
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5323
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5324
//-----------------------equivalent_expressions--------------------------------
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5325
bool ADLParser::equivalent_expressions(const char* str1, const char* str2) {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5326
  if (str1 == str2)
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5327
    return true;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5328
  else if (str1 == NULL || str2 == NULL)
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5329
    return false;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5330
  const char* cp1 = str1;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5331
  const char* cp2 = str2;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5332
  char in_quote = '\0';
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5333
  while (cp1[0] && cp2[0]) {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5334
    if (!in_quote) {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5335
      // skip spaces and/or cpp directives
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5336
      const char* cp1a = skip_expr_ws(cp1);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5337
      const char* cp2a = skip_expr_ws(cp2);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5338
      if (cp1a > cp1 && cp2a > cp2) {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5339
        cp1 = cp1a; cp2 = cp2a;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5340
        continue;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5341
      }
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5342
      if (cp1a > cp1 || cp2a > cp2)  break; // fail
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5343
    }
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5344
    // match one non-space char
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5345
    if (cp1[0] != cp2[0])  break; // fail
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5346
    char ch = cp1[0];
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5347
    cp1++; cp2++;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5348
    // watch for quotes
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5349
    if (in_quote && ch == '\\') {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5350
      if (cp1[0] != cp2[0])  break; // fail
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5351
      if (!cp1[0])  break;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5352
      cp1++; cp2++;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5353
    }
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5354
    if (in_quote && ch == in_quote) {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5355
      in_quote = '\0';
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5356
    } else if (!in_quote && (ch == '"' || ch == '\'')) {
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5357
      in_quote = ch;
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5358
    }
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5359
  }
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5360
  return (!cp1[0] && !cp2[0]);
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5361
}
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5362
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 1495
diff changeset
  5363
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5364
//-------------------------------trim------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5365
void ADLParser::trim(char* &token) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5366
  while (*token <= ' ')  token++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5367
  char* end = token + strlen(token);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5368
  while (end > token && *(end-1) <= ' ')  --end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5369
  *end = '\0';
489c9b5090e2 Initial load
duke
parents:
diff changeset
  5370
}