src/share/vm/adlc/adlparse.cpp

Mon, 25 Jun 2012 21:33:35 -0400

author
coleenp
date
Mon, 25 Jun 2012 21:33:35 -0400
changeset 3875
246d977b51f2
parent 3317
db2e64ca2d5a
child 3882
8c92982cbbc4
permissions
-rw-r--r--

7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
Summary: Cannot delete _buckets and HashtableEntries in shared space (CDS)
Reviewed-by: acorn, kvn, dlong, dcubed, kamg

duke@435 1 /*
twisti@3310 2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 // ADLPARSE.CPP - Architecture Description Language Parser
duke@435 26 // Authors: Chris Vick and Mike Paleczny
duke@435 27 #include "adlc.hpp"
duke@435 28
duke@435 29 //----------------------------ADLParser----------------------------------------
duke@435 30 // Create a new ADL parser
duke@435 31 ADLParser::ADLParser(FileBuff& buffer, ArchDesc& archDesc)
duke@435 32 : _buf(buffer), _AD(archDesc),
duke@435 33 _globalNames(archDesc.globalNames()) {
duke@435 34 _AD._syntax_errs = _AD._semantic_errs = 0; // No errors so far this file
duke@435 35 _AD._warnings = 0; // No warnings either
duke@435 36 _curline = _ptr = NULL; // No pointers into buffer yet
duke@435 37
duke@435 38 _preproc_depth = 0;
duke@435 39 _preproc_not_taken = 0;
duke@435 40
duke@435 41 // Delimit command-line definitions from in-file definitions:
duke@435 42 _AD._preproc_list.add_signal();
duke@435 43 }
duke@435 44
duke@435 45 //------------------------------~ADLParser-------------------------------------
duke@435 46 // Delete an ADL parser.
duke@435 47 ADLParser::~ADLParser() {
duke@435 48 if (!_AD._quiet_mode)
duke@435 49 fprintf(stderr,"---------------------------- Errors and Warnings ----------------------------\n");
duke@435 50 #ifndef ASSERT
duke@435 51 fprintf(stderr, "**************************************************************\n");
duke@435 52 fprintf(stderr, "***** WARNING: ASSERT is undefined, assertions disabled. *****\n");
duke@435 53 fprintf(stderr, "**************************************************************\n");
duke@435 54 #endif
duke@435 55 if( _AD._syntax_errs + _AD._semantic_errs + _AD._warnings == 0 ) {
duke@435 56 if (!_AD._quiet_mode)
duke@435 57 fprintf(stderr,"No errors or warnings to report from phase-1 parse.\n" );
duke@435 58 }
duke@435 59 else {
duke@435 60 if( _AD._syntax_errs ) { // Any syntax errors?
duke@435 61 fprintf(stderr,"%s: Found %d syntax error", _buf._fp->_name, _AD._syntax_errs);
duke@435 62 if( _AD._syntax_errs > 1 ) fprintf(stderr,"s.\n\n");
duke@435 63 else fprintf(stderr,".\n\n");
duke@435 64 }
duke@435 65 if( _AD._semantic_errs ) { // Any semantic errors?
duke@435 66 fprintf(stderr,"%s: Found %d semantic error", _buf._fp->_name, _AD._semantic_errs);
duke@435 67 if( _AD._semantic_errs > 1 ) fprintf(stderr,"s.\n\n");
duke@435 68 else fprintf(stderr,".\n\n");
duke@435 69 }
duke@435 70 if( _AD._warnings ) { // Any warnings?
duke@435 71 fprintf(stderr,"%s: Found %d warning", _buf._fp->_name, _AD._warnings);
duke@435 72 if( _AD._warnings > 1 ) fprintf(stderr,"s.\n\n");
duke@435 73 else fprintf(stderr,".\n\n");
duke@435 74 }
duke@435 75 }
duke@435 76 if (!_AD._quiet_mode)
duke@435 77 fprintf(stderr,"-----------------------------------------------------------------------------\n");
never@850 78 _AD._TotalLines += linenum()-1; // -1 for overshoot in "nextline" routine
duke@435 79
duke@435 80 // Write out information we have stored
duke@435 81 // // UNIXism == fsync(stderr);
duke@435 82 }
duke@435 83
duke@435 84 //------------------------------parse------------------------------------------
duke@435 85 // Each top-level keyword should appear as the first non-whitespace on a line.
duke@435 86 //
duke@435 87 void ADLParser::parse() {
duke@435 88 char *ident;
duke@435 89
duke@435 90 // Iterate over the lines in the file buffer parsing Level 1 objects
duke@435 91 for( next_line(); _curline != NULL; next_line()) {
duke@435 92 _ptr = _curline; // Reset ptr to start of new line
duke@435 93 skipws(); // Skip any leading whitespace
duke@435 94 ident = get_ident(); // Get first token
duke@435 95 if (ident == NULL) { // Empty line
duke@435 96 continue; // Get the next line
duke@435 97 }
twisti@2350 98 if (!strcmp(ident, "instruct")) instr_parse();
duke@435 99 else if (!strcmp(ident, "operand")) oper_parse();
duke@435 100 else if (!strcmp(ident, "opclass")) opclass_parse();
duke@435 101 else if (!strcmp(ident, "ins_attrib")) ins_attr_parse();
duke@435 102 else if (!strcmp(ident, "op_attrib")) op_attr_parse();
duke@435 103 else if (!strcmp(ident, "source")) source_parse();
duke@435 104 else if (!strcmp(ident, "source_hpp")) source_hpp_parse();
duke@435 105 else if (!strcmp(ident, "register")) reg_parse();
duke@435 106 else if (!strcmp(ident, "frame")) frame_parse();
duke@435 107 else if (!strcmp(ident, "encode")) encode_parse();
duke@435 108 else if (!strcmp(ident, "pipeline")) pipe_parse();
duke@435 109 else if (!strcmp(ident, "definitions")) definitions_parse();
duke@435 110 else if (!strcmp(ident, "peephole")) peep_parse();
jrose@910 111 else if (!strcmp(ident, "#line")) preproc_line();
duke@435 112 else if (!strcmp(ident, "#define")) preproc_define();
duke@435 113 else if (!strcmp(ident, "#undef")) preproc_undef();
duke@435 114 else {
duke@435 115 parse_err(SYNERR, "expected one of - instruct, operand, ins_attrib, op_attrib, source, register, pipeline, encode\n Found %s",ident);
duke@435 116 }
duke@435 117 }
duke@435 118
duke@435 119 // Done with parsing, check consistency.
duke@435 120
duke@435 121 if (_preproc_depth != 0) {
duke@435 122 parse_err(SYNERR, "End of file inside #ifdef");
duke@435 123 }
duke@435 124
duke@435 125 // AttributeForms ins_cost and op_cost must be defined for default behaviour
duke@435 126 if (_globalNames[AttributeForm::_ins_cost] == NULL) {
duke@435 127 parse_err(SEMERR, "Did not declare 'ins_cost' attribute");
duke@435 128 }
duke@435 129 if (_globalNames[AttributeForm::_op_cost] == NULL) {
duke@435 130 parse_err(SEMERR, "Did not declare 'op_cost' attribute");
duke@435 131 }
duke@435 132 }
duke@435 133
duke@435 134 // ******************** Private Level 1 Parse Functions ********************
duke@435 135 //------------------------------instr_parse------------------------------------
duke@435 136 // Parse the contents of an instruction definition, build the InstructForm to
duke@435 137 // represent that instruction, and add it to the InstructForm list.
duke@435 138 void ADLParser::instr_parse(void) {
duke@435 139 char *ident;
duke@435 140 InstructForm *instr;
duke@435 141 MatchRule *rule;
duke@435 142 int match_rules_cnt = 0;
duke@435 143
duke@435 144 // First get the name of the instruction
duke@435 145 if( (ident = get_unique_ident(_globalNames,"instruction")) == NULL )
duke@435 146 return;
duke@435 147 instr = new InstructForm(ident); // Create new instruction form
never@850 148 instr->_linenum = linenum();
duke@435 149 _globalNames.Insert(ident, instr); // Add name to the name table
duke@435 150 // Debugging Stuff
duke@435 151 if (_AD._adl_debug > 1)
duke@435 152 fprintf(stderr,"Parsing Instruction Form %s\n", ident);
duke@435 153
duke@435 154 // Then get the operands
duke@435 155 skipws();
duke@435 156 if (_curchar != '(') {
duke@435 157 parse_err(SYNERR, "missing '(' in instruct definition\n");
duke@435 158 }
duke@435 159 // Parse the operand list
duke@435 160 else get_oplist(instr->_parameters, instr->_localNames);
duke@435 161 skipws(); // Skip leading whitespace
duke@435 162 // Check for block delimiter
duke@435 163 if ( (_curchar != '%')
duke@435 164 || ( next_char(), (_curchar != '{')) ) {
duke@435 165 parse_err(SYNERR, "missing '%{' in instruction definition\n");
duke@435 166 return;
duke@435 167 }
duke@435 168 next_char(); // Maintain the invariant
duke@435 169 do {
duke@435 170 ident = get_ident(); // Grab next identifier
duke@435 171 if (ident == NULL) {
duke@435 172 parse_err(SYNERR, "keyword identifier expected at %c\n", _curchar);
duke@435 173 continue;
duke@435 174 }
duke@435 175 if (!strcmp(ident, "predicate")) instr->_predicate = pred_parse();
duke@435 176 else if (!strcmp(ident, "match")) {
duke@435 177 // Allow one instruction have several match rules.
duke@435 178 rule = instr->_matrule;
duke@435 179 if (rule == NULL) {
duke@435 180 // This is first match rule encountered
duke@435 181 rule = match_parse(instr->_localNames);
duke@435 182 if (rule) {
duke@435 183 instr->_matrule = rule;
duke@435 184 // Special case the treatment of Control instructions.
duke@435 185 if( instr->is_ideal_control() ) {
duke@435 186 // Control instructions return a special result, 'Universe'
duke@435 187 rule->_result = "Universe";
duke@435 188 }
duke@435 189 // Check for commutative operations with tree operands.
duke@435 190 matchrule_clone_and_swap(rule, instr->_ident, match_rules_cnt);
duke@435 191 }
duke@435 192 } else {
duke@435 193 // Find the end of the match rule list
duke@435 194 while (rule->_next != NULL)
duke@435 195 rule = rule->_next;
duke@435 196 // Add the new match rule to the list
duke@435 197 rule->_next = match_parse(instr->_localNames);
duke@435 198 if (rule->_next) {
duke@435 199 rule = rule->_next;
duke@435 200 if( instr->is_ideal_control() ) {
duke@435 201 parse_err(SYNERR, "unique match rule expected for %s\n", rule->_name);
duke@435 202 return;
duke@435 203 }
duke@435 204 assert(match_rules_cnt < 100," too many match rule clones");
duke@435 205 char* buf = (char*) malloc(strlen(instr->_ident) + 4);
duke@435 206 sprintf(buf, "%s_%d", instr->_ident, match_rules_cnt++);
duke@435 207 rule->_result = buf;
duke@435 208 // Check for commutative operations with tree operands.
duke@435 209 matchrule_clone_and_swap(rule, instr->_ident, match_rules_cnt);
duke@435 210 }
duke@435 211 }
duke@435 212 }
duke@435 213 else if (!strcmp(ident, "encode")) {
duke@435 214 parse_err(SYNERR, "Instructions specify ins_encode, not encode\n");
duke@435 215 }
twisti@2350 216 else if (!strcmp(ident, "ins_encode")) ins_encode_parse(*instr);
twisti@2350 217 else if (!strcmp(ident, "opcode")) instr->_opcode = opcode_parse(instr);
twisti@2350 218 else if (!strcmp(ident, "size")) instr->_size = size_parse(instr);
twisti@2350 219 else if (!strcmp(ident, "effect")) effect_parse(instr);
twisti@2350 220 else if (!strcmp(ident, "expand")) instr->_exprule = expand_parse(instr);
twisti@2350 221 else if (!strcmp(ident, "rewrite")) instr->_rewrule = rewrite_parse();
duke@435 222 else if (!strcmp(ident, "constraint")) {
duke@435 223 parse_err(SYNERR, "Instructions do not specify a constraint\n");
duke@435 224 }
duke@435 225 else if (!strcmp(ident, "construct")) {
duke@435 226 parse_err(SYNERR, "Instructions do not specify a construct\n");
duke@435 227 }
twisti@2350 228 else if (!strcmp(ident, "format")) instr->_format = format_parse();
duke@435 229 else if (!strcmp(ident, "interface")) {
duke@435 230 parse_err(SYNERR, "Instructions do not specify an interface\n");
duke@435 231 }
twisti@2350 232 else if (!strcmp(ident, "ins_pipe")) ins_pipe_parse(*instr);
duke@435 233 else { // Done with staticly defined parts of instruction definition
duke@435 234 // Check identifier to see if it is the name of an attribute
duke@435 235 const Form *form = _globalNames[ident];
duke@435 236 AttributeForm *attr = form ? form->is_attribute() : NULL;
duke@435 237 if( attr && (attr->_atype == INS_ATTR) ) {
duke@435 238 // Insert the new attribute into the linked list.
duke@435 239 Attribute *temp = attr_parse(ident);
duke@435 240 temp->_next = instr->_attribs;
duke@435 241 instr->_attribs = temp;
duke@435 242 } else {
duke@435 243 parse_err(SYNERR, "expected one of:\n predicate, match, encode, or the name of an instruction attribute at %s\n", ident);
duke@435 244 }
duke@435 245 }
duke@435 246 skipws();
duke@435 247 } while(_curchar != '%');
duke@435 248 next_char();
duke@435 249 if (_curchar != '}') {
duke@435 250 parse_err(SYNERR, "missing '%}' in instruction definition\n");
duke@435 251 return;
duke@435 252 }
duke@435 253 // Check for "Set" form of chain rule
duke@435 254 adjust_set_rule(instr);
duke@435 255 if (_AD._pipeline ) {
duke@435 256 if( instr->expands() ) {
duke@435 257 if( instr->_ins_pipe )
duke@435 258 parse_err(WARN, "ins_pipe and expand rule both specified for instruction \"%s\"; ins_pipe will be unused\n", instr->_ident);
duke@435 259 } else {
duke@435 260 if( !instr->_ins_pipe )
duke@435 261 parse_err(WARN, "No ins_pipe specified for instruction \"%s\"\n", instr->_ident);
duke@435 262 }
duke@435 263 }
duke@435 264 // Add instruction to tail of instruction list
duke@435 265 _AD.addForm(instr);
duke@435 266
duke@435 267 // Create instruction form for each additional match rule
duke@435 268 rule = instr->_matrule;
duke@435 269 if (rule != NULL) {
duke@435 270 rule = rule->_next;
duke@435 271 while (rule != NULL) {
duke@435 272 ident = (char*)rule->_result;
duke@435 273 InstructForm *clone = new InstructForm(ident, instr, rule); // Create new instruction form
duke@435 274 _globalNames.Insert(ident, clone); // Add name to the name table
duke@435 275 // Debugging Stuff
duke@435 276 if (_AD._adl_debug > 1)
duke@435 277 fprintf(stderr,"Parsing Instruction Form %s\n", ident);
duke@435 278 // Check for "Set" form of chain rule
duke@435 279 adjust_set_rule(clone);
duke@435 280 // Add instruction to tail of instruction list
duke@435 281 _AD.addForm(clone);
duke@435 282 rule = rule->_next;
duke@435 283 clone->_matrule->_next = NULL; // One match rule per clone
duke@435 284 }
duke@435 285 }
duke@435 286 }
duke@435 287
duke@435 288 //------------------------------matchrule_clone_and_swap-----------------------
duke@435 289 // Check for commutative operations with subtree operands,
duke@435 290 // create clones and swap operands.
duke@435 291 void ADLParser::matchrule_clone_and_swap(MatchRule* rule, const char* instr_ident, int& match_rules_cnt) {
duke@435 292 // Check for commutative operations with tree operands.
duke@435 293 int count = 0;
duke@435 294 rule->count_commutative_op(count);
duke@435 295 if (count > 0) {
duke@435 296 // Clone match rule and swap commutative operation's operands.
twisti@1038 297 rule->matchrule_swap_commutative_op(instr_ident, count, match_rules_cnt);
duke@435 298 }
duke@435 299 }
duke@435 300
duke@435 301 //------------------------------adjust_set_rule--------------------------------
duke@435 302 // Check for "Set" form of chain rule
duke@435 303 void ADLParser::adjust_set_rule(InstructForm *instr) {
duke@435 304 if (instr->_matrule == NULL || instr->_matrule->_rChild == NULL) return;
duke@435 305 const char *rch = instr->_matrule->_rChild->_opType;
duke@435 306 const Form *frm = _globalNames[rch];
duke@435 307 if( (! strcmp(instr->_matrule->_opType,"Set")) &&
duke@435 308 frm && frm->is_operand() && (! frm->ideal_only()) ) {
duke@435 309 // Previous implementation, which missed leaP*, but worked for loadCon*
duke@435 310 unsigned position = 0;
duke@435 311 const char *result = NULL;
duke@435 312 const char *name = NULL;
duke@435 313 const char *optype = NULL;
duke@435 314 MatchNode *right = instr->_matrule->_rChild;
duke@435 315 if (right->base_operand(position, _globalNames, result, name, optype)) {
duke@435 316 position = 1;
duke@435 317 const char *result2 = NULL;
duke@435 318 const char *name2 = NULL;
duke@435 319 const char *optype2 = NULL;
duke@435 320 // Can not have additional base operands in right side of match!
duke@435 321 if ( ! right->base_operand( position, _globalNames, result2, name2, optype2) ) {
twisti@2350 322 if (instr->_predicate != NULL)
twisti@2350 323 parse_err(SYNERR, "ADLC does not support instruction chain rules with predicates");
duke@435 324 // Chain from input _ideal_operand_type_,
duke@435 325 // Needed for shared roots of match-trees
duke@435 326 ChainList *lst = (ChainList *)_AD._chainRules[optype];
duke@435 327 if (lst == NULL) {
duke@435 328 lst = new ChainList();
duke@435 329 _AD._chainRules.Insert(optype, lst);
duke@435 330 }
duke@435 331 if (!lst->search(instr->_matrule->_lChild->_opType)) {
duke@435 332 const char *cost = instr->cost();
duke@435 333 if (cost == NULL) {
duke@435 334 cost = ((AttributeForm*)_globalNames[AttributeForm::_ins_cost])->_attrdef;
duke@435 335 }
duke@435 336 // The ADLC does not support chaining from the ideal operand type
duke@435 337 // of a predicated user-defined operand
duke@435 338 if( frm->is_operand() == NULL || frm->is_operand()->_predicate == NULL ) {
duke@435 339 lst->insert(instr->_matrule->_lChild->_opType,cost,instr->_ident);
duke@435 340 }
duke@435 341 }
duke@435 342 // Chain from input _user_defined_operand_type_,
duke@435 343 lst = (ChainList *)_AD._chainRules[result];
duke@435 344 if (lst == NULL) {
duke@435 345 lst = new ChainList();
duke@435 346 _AD._chainRules.Insert(result, lst);
duke@435 347 }
duke@435 348 if (!lst->search(instr->_matrule->_lChild->_opType)) {
duke@435 349 const char *cost = instr->cost();
duke@435 350 if (cost == NULL) {
duke@435 351 cost = ((AttributeForm*)_globalNames[AttributeForm::_ins_cost])->_attrdef;
duke@435 352 }
duke@435 353 // It is safe to chain from the top-level user-defined operand even
duke@435 354 // if it has a predicate, since the predicate is checked before
duke@435 355 // the user-defined type is available.
duke@435 356 lst->insert(instr->_matrule->_lChild->_opType,cost,instr->_ident);
duke@435 357 }
duke@435 358 } else {
duke@435 359 // May have instruction chain rule if root of right-tree is an ideal
duke@435 360 OperandForm *rightOp = _globalNames[right->_opType]->is_operand();
duke@435 361 if( rightOp ) {
duke@435 362 const Form *rightRoot = _globalNames[rightOp->_matrule->_opType];
duke@435 363 if( rightRoot && rightRoot->ideal_only() ) {
duke@435 364 const char *chain_op = NULL;
duke@435 365 if( rightRoot->is_instruction() )
duke@435 366 chain_op = rightOp->_ident;
duke@435 367 if( chain_op ) {
duke@435 368 // Look-up the operation in chain rule table
duke@435 369 ChainList *lst = (ChainList *)_AD._chainRules[chain_op];
duke@435 370 if (lst == NULL) {
duke@435 371 lst = new ChainList();
duke@435 372 _AD._chainRules.Insert(chain_op, lst);
duke@435 373 }
duke@435 374 // if (!lst->search(instr->_matrule->_lChild->_opType)) {
duke@435 375 const char *cost = instr->cost();
duke@435 376 if (cost == NULL) {
duke@435 377 cost = ((AttributeForm*)_globalNames[AttributeForm::_ins_cost])->_attrdef;
duke@435 378 }
duke@435 379 // This chains from a top-level operand whose predicate, if any,
duke@435 380 // has been checked.
duke@435 381 lst->insert(instr->_matrule->_lChild->_opType,cost,instr->_ident);
duke@435 382 // }
duke@435 383 }
duke@435 384 }
duke@435 385 }
duke@435 386 } // end chain rule from right-tree's ideal root
duke@435 387 }
duke@435 388 }
duke@435 389 }
duke@435 390
duke@435 391
duke@435 392 //------------------------------oper_parse-------------------------------------
duke@435 393 void ADLParser::oper_parse(void) {
duke@435 394 char *ident;
duke@435 395 OperandForm *oper;
duke@435 396 AttributeForm *attr;
duke@435 397 MatchRule *rule;
duke@435 398
duke@435 399 // First get the name of the operand
duke@435 400 skipws();
duke@435 401 if( (ident = get_unique_ident(_globalNames,"operand")) == NULL )
duke@435 402 return;
duke@435 403 oper = new OperandForm(ident); // Create new operand form
never@850 404 oper->_linenum = linenum();
duke@435 405 _globalNames.Insert(ident, oper); // Add name to the name table
duke@435 406
duke@435 407 // Debugging Stuff
duke@435 408 if (_AD._adl_debug > 1) fprintf(stderr,"Parsing Operand Form %s\n", ident);
duke@435 409
duke@435 410 // Get the component operands
duke@435 411 skipws();
duke@435 412 if (_curchar != '(') {
duke@435 413 parse_err(SYNERR, "missing '(' in operand definition\n");
duke@435 414 return;
duke@435 415 }
duke@435 416 else get_oplist(oper->_parameters, oper->_localNames); // Parse the component operand list
duke@435 417 skipws();
duke@435 418 // Check for block delimiter
duke@435 419 if ((_curchar != '%') || (*(_ptr+1) != '{')) { // If not open block
duke@435 420 parse_err(SYNERR, "missing '%c{' in operand definition\n","%");
duke@435 421 return;
duke@435 422 }
duke@435 423 next_char(); next_char(); // Skip over "%{" symbol
duke@435 424 do {
duke@435 425 ident = get_ident(); // Grab next identifier
duke@435 426 if (ident == NULL) {
duke@435 427 parse_err(SYNERR, "keyword identifier expected at %c\n", _curchar);
duke@435 428 continue;
duke@435 429 }
duke@435 430 if (!strcmp(ident, "predicate")) oper->_predicate = pred_parse();
duke@435 431 else if (!strcmp(ident, "match")) {
duke@435 432 // Find the end of the match rule list
duke@435 433 rule = oper->_matrule;
duke@435 434 if (rule) {
duke@435 435 while (rule->_next) rule = rule->_next;
duke@435 436 // Add the new match rule to the list
duke@435 437 rule->_next = match_parse(oper->_localNames);
duke@435 438 if (rule->_next) {
duke@435 439 rule->_next->_result = oper->_ident;
duke@435 440 }
duke@435 441 }
duke@435 442 else {
duke@435 443 // This is first match rule encountered
duke@435 444 oper->_matrule = match_parse(oper->_localNames);
duke@435 445 if (oper->_matrule) {
duke@435 446 oper->_matrule->_result = oper->_ident;
duke@435 447 }
duke@435 448 }
duke@435 449 }
duke@435 450 else if (!strcmp(ident, "encode")) oper->_interface = interface_parse();
duke@435 451 else if (!strcmp(ident, "ins_encode")) {
duke@435 452 parse_err(SYNERR, "Operands specify 'encode', not 'ins_encode'\n");
duke@435 453 }
duke@435 454 else if (!strcmp(ident, "opcode")) {
duke@435 455 parse_err(SYNERR, "Operands do not specify an opcode\n");
duke@435 456 }
duke@435 457 else if (!strcmp(ident, "effect")) {
duke@435 458 parse_err(SYNERR, "Operands do not specify an effect\n");
duke@435 459 }
duke@435 460 else if (!strcmp(ident, "expand")) {
duke@435 461 parse_err(SYNERR, "Operands do not specify an expand\n");
duke@435 462 }
duke@435 463 else if (!strcmp(ident, "rewrite")) {
duke@435 464 parse_err(SYNERR, "Operands do not specify a rewrite\n");
duke@435 465 }
duke@435 466 else if (!strcmp(ident, "constraint"))oper->_constraint= constraint_parse();
duke@435 467 else if (!strcmp(ident, "construct")) oper->_construct = construct_parse();
duke@435 468 else if (!strcmp(ident, "format")) oper->_format = format_parse();
duke@435 469 else if (!strcmp(ident, "interface")) oper->_interface = interface_parse();
duke@435 470 // Check identifier to see if it is the name of an attribute
duke@435 471 else if (((attr = _globalNames[ident]->is_attribute()) != NULL) &&
duke@435 472 (attr->_atype == OP_ATTR)) oper->_attribs = attr_parse(ident);
duke@435 473 else {
duke@435 474 parse_err(SYNERR, "expected one of - constraint, predicate, match, encode, format, construct, or the name of a defined operand attribute at %s\n", ident);
duke@435 475 }
duke@435 476 skipws();
duke@435 477 } while(_curchar != '%');
duke@435 478 next_char();
duke@435 479 if (_curchar != '}') {
duke@435 480 parse_err(SYNERR, "missing '%}' in operand definition\n");
duke@435 481 return;
duke@435 482 }
duke@435 483 // Add operand to tail of operand list
duke@435 484 _AD.addForm(oper);
duke@435 485 }
duke@435 486
duke@435 487 //------------------------------opclass_parse----------------------------------
duke@435 488 // Operand Classes are a block with a comma delimited list of operand names
duke@435 489 void ADLParser::opclass_parse(void) {
duke@435 490 char *ident;
duke@435 491 OpClassForm *opc;
duke@435 492 OperandForm *opForm;
duke@435 493
duke@435 494 // First get the name of the operand class
duke@435 495 skipws();
duke@435 496 if( (ident = get_unique_ident(_globalNames,"opclass")) == NULL )
duke@435 497 return;
duke@435 498 opc = new OpClassForm(ident); // Create new operand class form
duke@435 499 _globalNames.Insert(ident, opc); // Add name to the name table
duke@435 500
duke@435 501 // Debugging Stuff
duke@435 502 if (_AD._adl_debug > 1)
duke@435 503 fprintf(stderr,"Parsing Operand Class Form %s\n", ident);
duke@435 504
duke@435 505 // Get the list of operands
duke@435 506 skipws();
duke@435 507 if (_curchar != '(') {
duke@435 508 parse_err(SYNERR, "missing '(' in operand definition\n");
duke@435 509 return;
duke@435 510 }
duke@435 511 do {
duke@435 512 next_char(); // Skip past open paren or comma
duke@435 513 ident = get_ident(); // Grab next identifier
duke@435 514 if (ident == NULL) {
duke@435 515 parse_err(SYNERR, "keyword identifier expected at %c\n", _curchar);
duke@435 516 continue;
duke@435 517 }
duke@435 518 // Check identifier to see if it is the name of an operand
duke@435 519 const Form *form = _globalNames[ident];
duke@435 520 opForm = form ? form->is_operand() : NULL;
duke@435 521 if ( opForm ) {
duke@435 522 opc->_oplst.addName(ident); // Add operand to opclass list
duke@435 523 opForm->_classes.addName(opc->_ident);// Add opclass to operand list
duke@435 524 }
duke@435 525 else {
duke@435 526 parse_err(SYNERR, "expected name of a defined operand at %s\n", ident);
duke@435 527 }
duke@435 528 skipws(); // skip trailing whitespace
duke@435 529 } while (_curchar == ','); // Check for the comma
duke@435 530 // Check for closing ')'
duke@435 531 if (_curchar != ')') {
duke@435 532 parse_err(SYNERR, "missing ')' or ',' in opclass definition\n");
duke@435 533 return;
duke@435 534 }
duke@435 535 next_char(); // Consume the ')'
duke@435 536 skipws();
duke@435 537 // Check for closing ';'
duke@435 538 if (_curchar != ';') {
duke@435 539 parse_err(SYNERR, "missing ';' in opclass definition\n");
duke@435 540 return;
duke@435 541 }
duke@435 542 next_char(); // Consume the ';'
duke@435 543 // Add operand to tail of operand list
duke@435 544 _AD.addForm(opc);
duke@435 545 }
duke@435 546
duke@435 547 //------------------------------ins_attr_parse---------------------------------
duke@435 548 void ADLParser::ins_attr_parse(void) {
duke@435 549 char *ident;
duke@435 550 char *aexpr;
duke@435 551 AttributeForm *attrib;
duke@435 552
duke@435 553 // get name for the instruction attribute
duke@435 554 skipws(); // Skip leading whitespace
duke@435 555 if( (ident = get_unique_ident(_globalNames,"inst_attrib")) == NULL )
duke@435 556 return;
duke@435 557 // Debugging Stuff
duke@435 558 if (_AD._adl_debug > 1) fprintf(stderr,"Parsing Ins_Attribute Form %s\n", ident);
duke@435 559
duke@435 560 // Get default value of the instruction attribute
duke@435 561 skipws(); // Skip whitespace
duke@435 562 if ((aexpr = get_paren_expr("attribute default expression string")) == NULL) {
duke@435 563 parse_err(SYNERR, "missing '(' in ins_attrib definition\n");
duke@435 564 return;
duke@435 565 }
duke@435 566 // Debug Stuff
duke@435 567 if (_AD._adl_debug > 1) fprintf(stderr,"Attribute Expression: %s\n", aexpr);
duke@435 568
duke@435 569 // Check for terminator
duke@435 570 if (_curchar != ';') {
duke@435 571 parse_err(SYNERR, "missing ';' in ins_attrib definition\n");
duke@435 572 return;
duke@435 573 }
duke@435 574 next_char(); // Advance past the ';'
duke@435 575
duke@435 576 // Construct the attribute, record global name, and store in ArchDesc
duke@435 577 attrib = new AttributeForm(ident, INS_ATTR, aexpr);
duke@435 578 _globalNames.Insert(ident, attrib); // Add name to the name table
duke@435 579 _AD.addForm(attrib);
duke@435 580 }
duke@435 581
duke@435 582 //------------------------------op_attr_parse----------------------------------
duke@435 583 void ADLParser::op_attr_parse(void) {
duke@435 584 char *ident;
duke@435 585 char *aexpr;
duke@435 586 AttributeForm *attrib;
duke@435 587
duke@435 588 // get name for the operand attribute
duke@435 589 skipws(); // Skip leading whitespace
duke@435 590 if( (ident = get_unique_ident(_globalNames,"op_attrib")) == NULL )
duke@435 591 return;
duke@435 592 // Debugging Stuff
duke@435 593 if (_AD._adl_debug > 1) fprintf(stderr,"Parsing Op_Attribute Form %s\n", ident);
duke@435 594
duke@435 595 // Get default value of the instruction attribute
duke@435 596 skipws(); // Skip whitespace
duke@435 597 if ((aexpr = get_paren_expr("attribute default expression string")) == NULL) {
duke@435 598 parse_err(SYNERR, "missing '(' in op_attrib definition\n");
duke@435 599 return;
duke@435 600 }
duke@435 601 // Debug Stuff
duke@435 602 if (_AD._adl_debug > 1) fprintf(stderr,"Attribute Expression: %s\n", aexpr);
duke@435 603
duke@435 604 // Check for terminator
duke@435 605 if (_curchar != ';') {
duke@435 606 parse_err(SYNERR, "missing ';' in op_attrib definition\n");
duke@435 607 return;
duke@435 608 }
duke@435 609 next_char(); // Advance past the ';'
duke@435 610
duke@435 611 // Construct the attribute, record global name, and store in ArchDesc
duke@435 612 attrib = new AttributeForm(ident, OP_ATTR, aexpr);
duke@435 613 _globalNames.Insert(ident, attrib);
duke@435 614 _AD.addForm(attrib);
duke@435 615 }
duke@435 616
duke@435 617 //------------------------------definitions_parse-----------------------------------
duke@435 618 void ADLParser::definitions_parse(void) {
duke@435 619 skipws(); // Skip leading whitespace
duke@435 620 if (_curchar == '%' && *(_ptr+1) == '{') {
duke@435 621 next_char(); next_char(); // Skip "%{"
duke@435 622 skipws();
duke@435 623 while (_curchar != '%' && *(_ptr+1) != '}') {
duke@435 624 // Process each definition until finding closing string "%}"
duke@435 625 char *token = get_ident();
duke@435 626 if (token == NULL) {
duke@435 627 parse_err(SYNERR, "missing identifier inside definitions block.\n");
duke@435 628 return;
duke@435 629 }
duke@435 630 if (strcmp(token,"int_def")==0) { int_def_parse(); }
duke@435 631 // if (strcmp(token,"str_def")==0) { str_def_parse(); }
duke@435 632 skipws();
duke@435 633 }
duke@435 634 }
duke@435 635 else {
duke@435 636 parse_err(SYNERR, "Missing %%{ ... %%} block after definitions keyword.\n");
duke@435 637 return;
duke@435 638 }
duke@435 639 }
duke@435 640
duke@435 641 //------------------------------int_def_parse----------------------------------
duke@435 642 // Parse Example:
duke@435 643 // int_def MEMORY_REF_COST ( 200, DEFAULT_COST * 2);
duke@435 644 // <keyword> <name> ( <int_value>, <description> );
duke@435 645 //
duke@435 646 void ADLParser::int_def_parse(void) {
duke@435 647 char *name = NULL; // Name of definition
duke@435 648 char *value = NULL; // its value,
duke@435 649 int int_value = -1; // positive values only
duke@435 650 char *description = NULL; // textual description
duke@435 651
duke@435 652 // Get definition name
duke@435 653 skipws(); // Skip whitespace
duke@435 654 name = get_ident();
duke@435 655 if (name == NULL) {
duke@435 656 parse_err(SYNERR, "missing definition name after int_def\n");
duke@435 657 return;
duke@435 658 }
duke@435 659
duke@435 660 // Check for value of int_def dname( integer_value [, string_expression ] )
duke@435 661 skipws();
duke@435 662 if (_curchar == '(') {
duke@435 663
duke@435 664 // Parse the integer value.
duke@435 665 next_char();
duke@435 666 value = get_ident();
duke@435 667 if (value == NULL) {
duke@435 668 parse_err(SYNERR, "missing value in int_def\n");
duke@435 669 return;
duke@435 670 }
duke@435 671 if( !is_int_token(value, int_value) ) {
duke@435 672 parse_err(SYNERR, "value in int_def is not recognized as integer\n");
duke@435 673 return;
duke@435 674 }
duke@435 675 skipws();
duke@435 676
duke@435 677 // Check for description
duke@435 678 if (_curchar == ',') {
duke@435 679 next_char(); // skip ','
duke@435 680
duke@435 681 description = get_expr("int_def description", ")");
duke@435 682 if (description == NULL) {
duke@435 683 parse_err(SYNERR, "invalid or missing description in int_def\n");
duke@435 684 return;
duke@435 685 }
duke@435 686 trim(description);
duke@435 687 }
duke@435 688
duke@435 689 if (_curchar != ')') {
duke@435 690 parse_err(SYNERR, "missing ')' in register definition statement\n");
duke@435 691 return;
duke@435 692 }
duke@435 693 next_char();
duke@435 694 }
duke@435 695
duke@435 696 // Check for closing ';'
duke@435 697 skipws();
duke@435 698 if (_curchar != ';') {
duke@435 699 parse_err(SYNERR, "missing ';' after int_def\n");
duke@435 700 return;
duke@435 701 }
duke@435 702 next_char(); // move past ';'
duke@435 703
duke@435 704 // Debug Stuff
duke@435 705 if (_AD._adl_debug > 1) {
duke@435 706 fprintf(stderr,"int_def: %s ( %s, %s )\n", name,
duke@435 707 (value), (description ? description : ""));
duke@435 708 }
duke@435 709
duke@435 710 // Record new definition.
duke@435 711 Expr *expr = new Expr(name, description, int_value, int_value);
duke@435 712 const Expr *old_expr = _AD.globalDefs().define(name, expr);
duke@435 713 if (old_expr != NULL) {
duke@435 714 parse_err(SYNERR, "Duplicate definition\n");
duke@435 715 return;
duke@435 716 }
duke@435 717
duke@435 718 return;
duke@435 719 }
duke@435 720
duke@435 721
duke@435 722 //------------------------------source_parse-----------------------------------
duke@435 723 void ADLParser::source_parse(void) {
duke@435 724 SourceForm *source; // Encode class for instruction/operand
duke@435 725 char *rule = NULL; // String representation of encode rule
duke@435 726
duke@435 727 skipws(); // Skip leading whitespace
duke@435 728 if ( (rule = find_cpp_block("source block")) == NULL ) {
duke@435 729 parse_err(SYNERR, "incorrect or missing block for 'source'.\n");
duke@435 730 return;
duke@435 731 }
duke@435 732 // Debug Stuff
duke@435 733 if (_AD._adl_debug > 1) fprintf(stderr,"Source Form: %s\n", rule);
duke@435 734
duke@435 735 source = new SourceForm(rule); // Build new Source object
duke@435 736 _AD.addForm(source);
duke@435 737 // skipws();
duke@435 738 }
duke@435 739
duke@435 740 //------------------------------source_hpp_parse-------------------------------
duke@435 741 // Parse a source_hpp %{ ... %} block.
duke@435 742 // The code gets stuck into the ad_<arch>.hpp file.
duke@435 743 // If the source_hpp block appears before the register block in the AD
duke@435 744 // file, it goes up at the very top of the ad_<arch>.hpp file, so that
duke@435 745 // it can be used by register encodings, etc. Otherwise, it goes towards
duke@435 746 // the bottom, where it's useful as a global definition to *.cpp files.
duke@435 747 void ADLParser::source_hpp_parse(void) {
duke@435 748 char *rule = NULL; // String representation of encode rule
duke@435 749
duke@435 750 skipws(); // Skip leading whitespace
duke@435 751 if ( (rule = find_cpp_block("source_hpp block")) == NULL ) {
duke@435 752 parse_err(SYNERR, "incorrect or missing block for 'source_hpp'.\n");
duke@435 753 return;
duke@435 754 }
duke@435 755 // Debug Stuff
duke@435 756 if (_AD._adl_debug > 1) fprintf(stderr,"Header Form: %s\n", rule);
duke@435 757
duke@435 758 if (_AD.get_registers() == NULL) {
duke@435 759 // Very early in the file, before reg_defs, we collect pre-headers.
duke@435 760 PreHeaderForm* pre_header = new PreHeaderForm(rule);
duke@435 761 _AD.addForm(pre_header);
duke@435 762 } else {
duke@435 763 // Normally, we collect header info, placed at the bottom of the hpp file.
duke@435 764 HeaderForm* header = new HeaderForm(rule);
duke@435 765 _AD.addForm(header);
duke@435 766 }
duke@435 767 }
duke@435 768
duke@435 769 //------------------------------reg_parse--------------------------------------
duke@435 770 void ADLParser::reg_parse(void) {
duke@435 771
duke@435 772 // Create the RegisterForm for the architecture description.
duke@435 773 RegisterForm *regBlock = new RegisterForm(); // Build new Source object
never@850 774 regBlock->_linenum = linenum();
duke@435 775 _AD.addForm(regBlock);
duke@435 776
duke@435 777 skipws(); // Skip leading whitespace
duke@435 778 if (_curchar == '%' && *(_ptr+1) == '{') {
duke@435 779 next_char(); next_char(); // Skip "%{"
duke@435 780 skipws();
duke@435 781 while (_curchar != '%' && *(_ptr+1) != '}') {
duke@435 782 char *token = get_ident();
duke@435 783 if (token == NULL) {
duke@435 784 parse_err(SYNERR, "missing identifier inside register block.\n");
duke@435 785 return;
duke@435 786 }
jrose@910 787 if (strcmp(token,"reg_def")==0) { reg_def_parse(); }
jrose@910 788 else if (strcmp(token,"reg_class")==0) { reg_class_parse(); }
jrose@910 789 else if (strcmp(token,"alloc_class")==0) { alloc_class_parse(); }
jrose@910 790 else if (strcmp(token,"#define")==0) { preproc_define(); }
jrose@910 791 else { parse_err(SYNERR, "bad token %s inside register block.\n", token); break; }
duke@435 792 skipws();
duke@435 793 }
duke@435 794 }
duke@435 795 else {
duke@435 796 parse_err(SYNERR, "Missing %c{ ... %c} block after register keyword.\n",'%','%');
duke@435 797 return;
duke@435 798 }
duke@435 799
duke@435 800 // Add reg_class spill_regs
duke@435 801 regBlock->addSpillRegClass();
duke@435 802 }
duke@435 803
duke@435 804 //------------------------------encode_parse-----------------------------------
duke@435 805 void ADLParser::encode_parse(void) {
duke@435 806 EncodeForm *encBlock; // Information about instruction/operand encoding
duke@435 807 char *desc = NULL; // String representation of encode rule
duke@435 808
duke@435 809 _AD.getForm(&encBlock);
duke@435 810 if ( encBlock == NULL) {
duke@435 811 // Create the EncodeForm for the architecture description.
duke@435 812 encBlock = new EncodeForm(); // Build new Source object
duke@435 813 _AD.addForm(encBlock);
duke@435 814 }
duke@435 815
duke@435 816 skipws(); // Skip leading whitespace
duke@435 817 if (_curchar == '%' && *(_ptr+1) == '{') {
duke@435 818 next_char(); next_char(); // Skip "%{"
duke@435 819 skipws();
duke@435 820 while (_curchar != '%' && *(_ptr+1) != '}') {
duke@435 821 char *token = get_ident();
duke@435 822 if (token == NULL) {
duke@435 823 parse_err(SYNERR, "missing identifier inside encoding block.\n");
duke@435 824 return;
duke@435 825 }
duke@435 826 if (strcmp(token,"enc_class")==0) { enc_class_parse(); }
duke@435 827 skipws();
duke@435 828 }
duke@435 829 }
duke@435 830 else {
duke@435 831 parse_err(SYNERR, "Missing %c{ ... %c} block after encode keyword.\n",'%','%');
duke@435 832 return;
duke@435 833 }
duke@435 834 }
duke@435 835
duke@435 836 //------------------------------enc_class_parse--------------------------------
duke@435 837 void ADLParser::enc_class_parse(void) {
duke@435 838 char *ec_name; // Name of encoding class being defined
duke@435 839
duke@435 840 // Get encoding class name
duke@435 841 skipws(); // Skip whitespace
duke@435 842 ec_name = get_ident();
duke@435 843 if (ec_name == NULL) {
duke@435 844 parse_err(SYNERR, "missing encoding class name after encode.\n");
duke@435 845 return;
duke@435 846 }
duke@435 847
duke@435 848 EncClass *encoding = _AD._encode->add_EncClass(ec_name);
never@850 849 encoding->_linenum = linenum();
duke@435 850
duke@435 851 skipws(); // Skip leading whitespace
duke@435 852 // Check for optional parameter list
duke@435 853 if (_curchar == '(') {
duke@435 854 do {
duke@435 855 char *pType = NULL; // parameter type
duke@435 856 char *pName = NULL; // parameter name
duke@435 857
duke@435 858 next_char(); // skip open paren & comma characters
duke@435 859 skipws();
duke@435 860 if (_curchar == ')') break;
duke@435 861
duke@435 862 // Get parameter type
duke@435 863 pType = get_ident();
duke@435 864 if (pType == NULL) {
duke@435 865 parse_err(SYNERR, "parameter type expected at %c\n", _curchar);
duke@435 866 return;
duke@435 867 }
duke@435 868
duke@435 869 skipws();
duke@435 870 // Get parameter name
duke@435 871 pName = get_ident();
duke@435 872 if (pName == NULL) {
duke@435 873 parse_err(SYNERR, "parameter name expected at %c\n", _curchar);
duke@435 874 return;
duke@435 875 }
duke@435 876
duke@435 877 // Record parameter type and name
duke@435 878 encoding->add_parameter( pType, pName );
duke@435 879
duke@435 880 skipws();
duke@435 881 } while(_curchar == ',');
duke@435 882
duke@435 883 if (_curchar != ')') parse_err(SYNERR, "missing ')'\n");
duke@435 884 else {
duke@435 885 next_char(); // Skip ')'
duke@435 886 }
duke@435 887 } // Done with parameter list
duke@435 888
duke@435 889 skipws();
duke@435 890 // Check for block starting delimiters
duke@435 891 if ((_curchar != '%') || (*(_ptr+1) != '{')) { // If not open block
duke@435 892 parse_err(SYNERR, "missing '%c{' in enc_class definition\n", '%');
duke@435 893 return;
duke@435 894 }
duke@435 895 next_char(); // Skip '%'
duke@435 896 next_char(); // Skip '{'
duke@435 897
duke@435 898 enc_class_parse_block(encoding, ec_name);
duke@435 899 }
duke@435 900
duke@435 901
duke@435 902 void ADLParser::enc_class_parse_block(EncClass* encoding, char* ec_name) {
duke@435 903 skipws_no_preproc(); // Skip leading whitespace
duke@435 904 // Prepend location descriptor, for debugging; cf. ADLParser::find_cpp_block
duke@435 905 if (_AD._adlocation_debug) {
jrose@910 906 encoding->add_code(get_line_string());
duke@435 907 }
duke@435 908
duke@435 909 // Collect the parts of the encode description
duke@435 910 // (1) strings that are passed through to output
duke@435 911 // (2) replacement/substitution variable, preceeded by a '$'
duke@435 912 while ( (_curchar != '%') && (*(_ptr+1) != '}') ) {
duke@435 913
duke@435 914 // (1)
duke@435 915 // Check if there is a string to pass through to output
duke@435 916 char *start = _ptr; // Record start of the next string
duke@435 917 while ((_curchar != '$') && ((_curchar != '%') || (*(_ptr+1) != '}')) ) {
duke@435 918 // If at the start of a comment, skip past it
duke@435 919 if( (_curchar == '/') && ((*(_ptr+1) == '/') || (*(_ptr+1) == '*')) ) {
duke@435 920 skipws_no_preproc();
duke@435 921 } else {
duke@435 922 // ELSE advance to the next character, or start of the next line
duke@435 923 next_char_or_line();
duke@435 924 }
duke@435 925 }
duke@435 926 // If a string was found, terminate it and record in EncClass
duke@435 927 if ( start != _ptr ) {
duke@435 928 *_ptr = '\0'; // Terminate the string
duke@435 929 encoding->add_code(start);
duke@435 930 }
duke@435 931
duke@435 932 // (2)
duke@435 933 // If we are at a replacement variable,
duke@435 934 // copy it and record in EncClass
twisti@2350 935 if (_curchar == '$') {
duke@435 936 // Found replacement Variable
twisti@2350 937 char* rep_var = get_rep_var_ident_dup();
duke@435 938 // Add flag to _strings list indicating we should check _rep_vars
duke@435 939 encoding->add_rep_var(rep_var);
duke@435 940 }
duke@435 941 } // end while part of format description
duke@435 942 next_char(); // Skip '%'
duke@435 943 next_char(); // Skip '}'
duke@435 944
duke@435 945 skipws();
duke@435 946
jrose@910 947 if (_AD._adlocation_debug) {
jrose@910 948 encoding->add_code(end_line_marker());
jrose@910 949 }
jrose@910 950
duke@435 951 // Debug Stuff
duke@435 952 if (_AD._adl_debug > 1) fprintf(stderr,"EncodingClass Form: %s\n", ec_name);
duke@435 953 }
duke@435 954
duke@435 955 //------------------------------frame_parse-----------------------------------
duke@435 956 void ADLParser::frame_parse(void) {
duke@435 957 FrameForm *frame; // Information about stack-frame layout
duke@435 958 char *desc = NULL; // String representation of frame
duke@435 959
duke@435 960 skipws(); // Skip leading whitespace
duke@435 961
duke@435 962 frame = new FrameForm(); // Build new Frame object
duke@435 963 // Check for open block sequence
duke@435 964 skipws(); // Skip leading whitespace
duke@435 965 if (_curchar == '%' && *(_ptr+1) == '{') {
duke@435 966 next_char(); next_char(); // Skip "%{"
duke@435 967 skipws();
duke@435 968 while (_curchar != '%' && *(_ptr+1) != '}') {
duke@435 969 char *token = get_ident();
duke@435 970 if (token == NULL) {
duke@435 971 parse_err(SYNERR, "missing identifier inside frame block.\n");
duke@435 972 return;
duke@435 973 }
duke@435 974 if (strcmp(token,"stack_direction")==0) {
duke@435 975 stack_dir_parse(frame);
duke@435 976 }
duke@435 977 if (strcmp(token,"sync_stack_slots")==0) {
duke@435 978 sync_stack_slots_parse(frame);
duke@435 979 }
duke@435 980 if (strcmp(token,"frame_pointer")==0) {
duke@435 981 frame_pointer_parse(frame, false);
duke@435 982 }
duke@435 983 if (strcmp(token,"interpreter_frame_pointer")==0) {
duke@435 984 interpreter_frame_pointer_parse(frame, false);
duke@435 985 }
duke@435 986 if (strcmp(token,"inline_cache_reg")==0) {
duke@435 987 inline_cache_parse(frame, false);
duke@435 988 }
duke@435 989 if (strcmp(token,"compiler_method_oop_reg")==0) {
duke@435 990 parse_err(WARN, "Using obsolete Token, compiler_method_oop_reg");
duke@435 991 skipws();
duke@435 992 }
duke@435 993 if (strcmp(token,"interpreter_method_oop_reg")==0) {
duke@435 994 interpreter_method_oop_parse(frame, false);
duke@435 995 }
duke@435 996 if (strcmp(token,"cisc_spilling_operand_name")==0) {
duke@435 997 cisc_spilling_operand_name_parse(frame, false);
duke@435 998 }
duke@435 999 if (strcmp(token,"stack_alignment")==0) {
duke@435 1000 stack_alignment_parse(frame);
duke@435 1001 }
duke@435 1002 if (strcmp(token,"return_addr")==0) {
duke@435 1003 return_addr_parse(frame, false);
duke@435 1004 }
duke@435 1005 if (strcmp(token,"in_preserve_stack_slots")==0) {
duke@435 1006 preserve_stack_parse(frame);
duke@435 1007 }
duke@435 1008 if (strcmp(token,"out_preserve_stack_slots")==0) {
duke@435 1009 parse_err(WARN, "Using obsolete token, out_preserve_stack_slots");
duke@435 1010 skipws();
duke@435 1011 }
duke@435 1012 if (strcmp(token,"varargs_C_out_slots_killed")==0) {
duke@435 1013 frame->_varargs_C_out_slots_killed = parse_one_arg("varargs C out slots killed");
duke@435 1014 }
duke@435 1015 if (strcmp(token,"calling_convention")==0) {
duke@435 1016 frame->_calling_convention = calling_convention_parse();
duke@435 1017 }
duke@435 1018 if (strcmp(token,"return_value")==0) {
duke@435 1019 frame->_return_value = return_value_parse();
duke@435 1020 }
duke@435 1021 if (strcmp(token,"c_frame_pointer")==0) {
duke@435 1022 frame_pointer_parse(frame, true);
duke@435 1023 }
duke@435 1024 if (strcmp(token,"c_return_addr")==0) {
duke@435 1025 return_addr_parse(frame, true);
duke@435 1026 }
duke@435 1027 if (strcmp(token,"c_calling_convention")==0) {
duke@435 1028 frame->_c_calling_convention = calling_convention_parse();
duke@435 1029 }
duke@435 1030 if (strcmp(token,"c_return_value")==0) {
duke@435 1031 frame->_c_return_value = return_value_parse();
duke@435 1032 }
duke@435 1033
duke@435 1034 skipws();
duke@435 1035 }
duke@435 1036 }
duke@435 1037 else {
duke@435 1038 parse_err(SYNERR, "Missing %c{ ... %c} block after encode keyword.\n",'%','%');
duke@435 1039 return;
duke@435 1040 }
duke@435 1041 // All Java versions are required, native versions are optional
duke@435 1042 if(frame->_frame_pointer == NULL) {
duke@435 1043 parse_err(SYNERR, "missing frame pointer definition in frame section.\n");
duke@435 1044 return;
duke@435 1045 }
duke@435 1046 // !!!!! !!!!!
duke@435 1047 // if(frame->_interpreter_frame_ptr_reg == NULL) {
duke@435 1048 // parse_err(SYNERR, "missing interpreter frame pointer definition in frame section.\n");
duke@435 1049 // return;
duke@435 1050 // }
duke@435 1051 if(frame->_alignment == NULL) {
duke@435 1052 parse_err(SYNERR, "missing alignment definition in frame section.\n");
duke@435 1053 return;
duke@435 1054 }
duke@435 1055 if(frame->_return_addr == NULL) {
duke@435 1056 parse_err(SYNERR, "missing return address location in frame section.\n");
duke@435 1057 return;
duke@435 1058 }
duke@435 1059 if(frame->_in_preserve_slots == NULL) {
duke@435 1060 parse_err(SYNERR, "missing stack slot preservation definition in frame section.\n");
duke@435 1061 return;
duke@435 1062 }
duke@435 1063 if(frame->_varargs_C_out_slots_killed == NULL) {
duke@435 1064 parse_err(SYNERR, "missing varargs C out slots killed definition in frame section.\n");
duke@435 1065 return;
duke@435 1066 }
duke@435 1067 if(frame->_calling_convention == NULL) {
duke@435 1068 parse_err(SYNERR, "missing calling convention definition in frame section.\n");
duke@435 1069 return;
duke@435 1070 }
duke@435 1071 if(frame->_return_value == NULL) {
duke@435 1072 parse_err(SYNERR, "missing return value definition in frame section.\n");
duke@435 1073 return;
duke@435 1074 }
duke@435 1075 // Fill natives in identically with the Java versions if not present.
duke@435 1076 if(frame->_c_frame_pointer == NULL) {
duke@435 1077 frame->_c_frame_pointer = frame->_frame_pointer;
duke@435 1078 }
duke@435 1079 if(frame->_c_return_addr == NULL) {
duke@435 1080 frame->_c_return_addr = frame->_return_addr;
duke@435 1081 frame->_c_return_addr_loc = frame->_return_addr_loc;
duke@435 1082 }
duke@435 1083 if(frame->_c_calling_convention == NULL) {
duke@435 1084 frame->_c_calling_convention = frame->_calling_convention;
duke@435 1085 }
duke@435 1086 if(frame->_c_return_value == NULL) {
duke@435 1087 frame->_c_return_value = frame->_return_value;
duke@435 1088 }
duke@435 1089
duke@435 1090 // Debug Stuff
duke@435 1091 if (_AD._adl_debug > 1) fprintf(stderr,"Frame Form: %s\n", desc);
duke@435 1092
duke@435 1093 // Create the EncodeForm for the architecture description.
duke@435 1094 _AD.addForm(frame);
duke@435 1095 // skipws();
duke@435 1096 }
duke@435 1097
duke@435 1098 //------------------------------stack_dir_parse--------------------------------
duke@435 1099 void ADLParser::stack_dir_parse(FrameForm *frame) {
duke@435 1100 char *direction = parse_one_arg("stack direction entry");
duke@435 1101 if (strcmp(direction, "TOWARDS_LOW") == 0) {
duke@435 1102 frame->_direction = false;
duke@435 1103 }
duke@435 1104 else if (strcmp(direction, "TOWARDS_HIGH") == 0) {
duke@435 1105 frame->_direction = true;
duke@435 1106 }
duke@435 1107 else {
duke@435 1108 parse_err(SYNERR, "invalid value inside stack direction entry.\n");
duke@435 1109 return;
duke@435 1110 }
duke@435 1111 }
duke@435 1112
duke@435 1113 //------------------------------sync_stack_slots_parse-------------------------
duke@435 1114 void ADLParser::sync_stack_slots_parse(FrameForm *frame) {
duke@435 1115 // Assign value into frame form
duke@435 1116 frame->_sync_stack_slots = parse_one_arg("sync stack slots entry");
duke@435 1117 }
duke@435 1118
duke@435 1119 //------------------------------frame_pointer_parse----------------------------
duke@435 1120 void ADLParser::frame_pointer_parse(FrameForm *frame, bool native) {
duke@435 1121 char *frame_pointer = parse_one_arg("frame pointer entry");
duke@435 1122 // Assign value into frame form
duke@435 1123 if (native) { frame->_c_frame_pointer = frame_pointer; }
duke@435 1124 else { frame->_frame_pointer = frame_pointer; }
duke@435 1125 }
duke@435 1126
duke@435 1127 //------------------------------interpreter_frame_pointer_parse----------------------------
duke@435 1128 void ADLParser::interpreter_frame_pointer_parse(FrameForm *frame, bool native) {
duke@435 1129 frame->_interpreter_frame_pointer_reg = parse_one_arg("interpreter frame pointer entry");
duke@435 1130 }
duke@435 1131
duke@435 1132 //------------------------------inline_cache_parse-----------------------------
duke@435 1133 void ADLParser::inline_cache_parse(FrameForm *frame, bool native) {
duke@435 1134 frame->_inline_cache_reg = parse_one_arg("inline cache reg entry");
duke@435 1135 }
duke@435 1136
duke@435 1137 //------------------------------interpreter_method_oop_parse------------------
duke@435 1138 void ADLParser::interpreter_method_oop_parse(FrameForm *frame, bool native) {
duke@435 1139 frame->_interpreter_method_oop_reg = parse_one_arg("method oop reg entry");
duke@435 1140 }
duke@435 1141
duke@435 1142 //------------------------------cisc_spilling_operand_parse---------------------
duke@435 1143 void ADLParser::cisc_spilling_operand_name_parse(FrameForm *frame, bool native) {
duke@435 1144 frame->_cisc_spilling_operand_name = parse_one_arg("cisc spilling operand name");
duke@435 1145 }
duke@435 1146
duke@435 1147 //------------------------------stack_alignment_parse--------------------------
duke@435 1148 void ADLParser::stack_alignment_parse(FrameForm *frame) {
duke@435 1149 char *alignment = parse_one_arg("stack alignment entry");
duke@435 1150 // Assign value into frame
duke@435 1151 frame->_alignment = alignment;
duke@435 1152 }
duke@435 1153
duke@435 1154 //------------------------------parse_one_arg-------------------------------
duke@435 1155 char *ADLParser::parse_one_arg(const char *description) {
duke@435 1156 char *token = NULL;
duke@435 1157 if(_curchar == '(') {
duke@435 1158 next_char();
duke@435 1159 skipws();
duke@435 1160 token = get_expr(description, ")");
duke@435 1161 if (token == NULL) {
duke@435 1162 parse_err(SYNERR, "missing value inside %s.\n", description);
duke@435 1163 return NULL;
duke@435 1164 }
duke@435 1165 next_char(); // skip the close paren
duke@435 1166 if(_curchar != ';') { // check for semi-colon
duke@435 1167 parse_err(SYNERR, "missing %c in.\n", ';', description);
duke@435 1168 return NULL;
duke@435 1169 }
duke@435 1170 next_char(); // skip the semi-colon
duke@435 1171 }
duke@435 1172 else {
duke@435 1173 parse_err(SYNERR, "Missing %c in.\n", '(', description);
duke@435 1174 return NULL;
duke@435 1175 }
duke@435 1176
duke@435 1177 trim(token);
duke@435 1178 return token;
duke@435 1179 }
duke@435 1180
duke@435 1181 //------------------------------return_addr_parse------------------------------
duke@435 1182 void ADLParser::return_addr_parse(FrameForm *frame, bool native) {
duke@435 1183 bool in_register = true;
duke@435 1184 if(_curchar == '(') {
duke@435 1185 next_char();
duke@435 1186 skipws();
duke@435 1187 char *token = get_ident();
duke@435 1188 if (token == NULL) {
duke@435 1189 parse_err(SYNERR, "missing value inside return address entry.\n");
duke@435 1190 return;
duke@435 1191 }
duke@435 1192 // check for valid values for stack/register
duke@435 1193 if (strcmp(token, "REG") == 0) {
duke@435 1194 in_register = true;
duke@435 1195 }
duke@435 1196 else if (strcmp(token, "STACK") == 0) {
duke@435 1197 in_register = false;
duke@435 1198 }
duke@435 1199 else {
duke@435 1200 parse_err(SYNERR, "invalid value inside return_address entry.\n");
duke@435 1201 return;
duke@435 1202 }
duke@435 1203 if (native) { frame->_c_return_addr_loc = in_register; }
duke@435 1204 else { frame->_return_addr_loc = in_register; }
duke@435 1205
duke@435 1206 // Parse expression that specifies register or stack position
duke@435 1207 skipws();
duke@435 1208 char *token2 = get_expr("return address entry", ")");
duke@435 1209 if (token2 == NULL) {
duke@435 1210 parse_err(SYNERR, "missing value inside return address entry.\n");
duke@435 1211 return;
duke@435 1212 }
duke@435 1213 next_char(); // skip the close paren
duke@435 1214 if (native) { frame->_c_return_addr = token2; }
duke@435 1215 else { frame->_return_addr = token2; }
duke@435 1216
duke@435 1217 if(_curchar != ';') { // check for semi-colon
duke@435 1218 parse_err(SYNERR, "missing %c in return address entry.\n", ';');
duke@435 1219 return;
duke@435 1220 }
duke@435 1221 next_char(); // skip the semi-colon
duke@435 1222 }
duke@435 1223 else {
duke@435 1224 parse_err(SYNERR, "Missing %c in return_address entry.\n", '(');
duke@435 1225 }
duke@435 1226 }
duke@435 1227
duke@435 1228 //------------------------------preserve_stack_parse---------------------------
duke@435 1229 void ADLParser::preserve_stack_parse(FrameForm *frame) {
duke@435 1230 if(_curchar == '(') {
duke@435 1231 char *token = get_paren_expr("preserve_stack_slots");
duke@435 1232 frame->_in_preserve_slots = token;
duke@435 1233
duke@435 1234 if(_curchar != ';') { // check for semi-colon
duke@435 1235 parse_err(SYNERR, "missing %c in preserve stack slot entry.\n", ';');
duke@435 1236 return;
duke@435 1237 }
duke@435 1238 next_char(); // skip the semi-colon
duke@435 1239 }
duke@435 1240 else {
duke@435 1241 parse_err(SYNERR, "Missing %c in preserve stack slot entry.\n", '(');
duke@435 1242 }
duke@435 1243 }
duke@435 1244
duke@435 1245 //------------------------------calling_convention_parse-----------------------
duke@435 1246 char *ADLParser::calling_convention_parse() {
duke@435 1247 char *desc = NULL; // String representation of calling_convention
duke@435 1248
duke@435 1249 skipws(); // Skip leading whitespace
duke@435 1250 if ( (desc = find_cpp_block("calling convention block")) == NULL ) {
duke@435 1251 parse_err(SYNERR, "incorrect or missing block for 'calling_convention'.\n");
duke@435 1252 }
duke@435 1253 return desc;
duke@435 1254 }
duke@435 1255
duke@435 1256 //------------------------------return_value_parse-----------------------------
duke@435 1257 char *ADLParser::return_value_parse() {
duke@435 1258 char *desc = NULL; // String representation of calling_convention
duke@435 1259
duke@435 1260 skipws(); // Skip leading whitespace
duke@435 1261 if ( (desc = find_cpp_block("return value block")) == NULL ) {
duke@435 1262 parse_err(SYNERR, "incorrect or missing block for 'return_value'.\n");
duke@435 1263 }
duke@435 1264 return desc;
duke@435 1265 }
duke@435 1266
duke@435 1267 //------------------------------ins_pipe_parse---------------------------------
duke@435 1268 void ADLParser::ins_pipe_parse(InstructForm &instr) {
duke@435 1269 char * ident;
duke@435 1270
duke@435 1271 skipws();
duke@435 1272 if ( _curchar != '(' ) { // Check for delimiter
duke@435 1273 parse_err(SYNERR, "missing \"(\" in ins_pipe definition\n");
duke@435 1274 return;
duke@435 1275 }
duke@435 1276
duke@435 1277 next_char();
duke@435 1278 ident = get_ident(); // Grab next identifier
duke@435 1279
duke@435 1280 if (ident == NULL) {
duke@435 1281 parse_err(SYNERR, "keyword identifier expected at %c\n", _curchar);
duke@435 1282 return;
duke@435 1283 }
duke@435 1284
duke@435 1285 skipws();
duke@435 1286 if ( _curchar != ')' ) { // Check for delimiter
duke@435 1287 parse_err(SYNERR, "missing \")\" in ins_pipe definition\n");
duke@435 1288 return;
duke@435 1289 }
duke@435 1290
duke@435 1291 next_char(); // skip the close paren
duke@435 1292 if(_curchar != ';') { // check for semi-colon
duke@435 1293 parse_err(SYNERR, "missing %c in return value entry.\n", ';');
duke@435 1294 return;
duke@435 1295 }
duke@435 1296 next_char(); // skip the semi-colon
duke@435 1297
duke@435 1298 // Check ident for validity
duke@435 1299 if (_AD._pipeline && !_AD._pipeline->_classlist.search(ident)) {
duke@435 1300 parse_err(SYNERR, "\"%s\" is not a valid pipeline class\n", ident);
duke@435 1301 return;
duke@435 1302 }
duke@435 1303
duke@435 1304 // Add this instruction to the list in the pipeline class
duke@435 1305 _AD._pipeline->_classdict[ident]->is_pipeclass()->_instructs.addName(instr._ident);
duke@435 1306
duke@435 1307 // Set the name of the pipeline class in the instruction
duke@435 1308 instr._ins_pipe = ident;
duke@435 1309 return;
duke@435 1310 }
duke@435 1311
duke@435 1312 //------------------------------pipe_parse-------------------------------------
duke@435 1313 void ADLParser::pipe_parse(void) {
duke@435 1314 PipelineForm *pipeline; // Encode class for instruction/operand
duke@435 1315 char * ident;
duke@435 1316
duke@435 1317 pipeline = new PipelineForm(); // Build new Source object
duke@435 1318 _AD.addForm(pipeline);
duke@435 1319
duke@435 1320 skipws(); // Skip leading whitespace
duke@435 1321 // Check for block delimiter
duke@435 1322 if ( (_curchar != '%')
duke@435 1323 || ( next_char(), (_curchar != '{')) ) {
duke@435 1324 parse_err(SYNERR, "missing '%{' in pipeline definition\n");
duke@435 1325 return;
duke@435 1326 }
duke@435 1327 next_char(); // Maintain the invariant
duke@435 1328 do {
duke@435 1329 ident = get_ident(); // Grab next identifier
duke@435 1330 if (ident == NULL) {
duke@435 1331 parse_err(SYNERR, "keyword identifier expected at %c\n", _curchar);
duke@435 1332 continue;
duke@435 1333 }
duke@435 1334 if (!strcmp(ident, "resources" )) resource_parse(*pipeline);
duke@435 1335 else if (!strcmp(ident, "pipe_desc" )) pipe_desc_parse(*pipeline);
duke@435 1336 else if (!strcmp(ident, "pipe_class")) pipe_class_parse(*pipeline);
duke@435 1337 else if (!strcmp(ident, "define")) {
duke@435 1338 skipws();
duke@435 1339 if ( (_curchar != '%')
duke@435 1340 || ( next_char(), (_curchar != '{')) ) {
duke@435 1341 parse_err(SYNERR, "expected '%{'\n");
duke@435 1342 return;
duke@435 1343 }
duke@435 1344 next_char(); skipws();
duke@435 1345
duke@435 1346 char *node_class = get_ident();
duke@435 1347 if (node_class == NULL) {
duke@435 1348 parse_err(SYNERR, "expected identifier, found \"%c\"\n", _curchar);
duke@435 1349 return;
duke@435 1350 }
duke@435 1351
duke@435 1352 skipws();
duke@435 1353 if (_curchar != ',' && _curchar != '=') {
duke@435 1354 parse_err(SYNERR, "expected `=`, found '%c'\n", _curchar);
duke@435 1355 break;
duke@435 1356 }
duke@435 1357 next_char(); skipws();
duke@435 1358
duke@435 1359 char *pipe_class = get_ident();
duke@435 1360 if (pipe_class == NULL) {
duke@435 1361 parse_err(SYNERR, "expected identifier, found \"%c\"\n", _curchar);
duke@435 1362 return;
duke@435 1363 }
duke@435 1364 if (_curchar != ';' ) {
duke@435 1365 parse_err(SYNERR, "expected `;`, found '%c'\n", _curchar);
duke@435 1366 break;
duke@435 1367 }
duke@435 1368 next_char(); // Skip over semi-colon
duke@435 1369
duke@435 1370 skipws();
duke@435 1371 if ( (_curchar != '%')
duke@435 1372 || ( next_char(), (_curchar != '}')) ) {
duke@435 1373 parse_err(SYNERR, "expected '%%}', found \"%c\"\n", _curchar);
duke@435 1374 }
duke@435 1375 next_char();
duke@435 1376
duke@435 1377 // Check ident for validity
duke@435 1378 if (_AD._pipeline && !_AD._pipeline->_classlist.search(pipe_class)) {
duke@435 1379 parse_err(SYNERR, "\"%s\" is not a valid pipeline class\n", pipe_class);
duke@435 1380 return;
duke@435 1381 }
duke@435 1382
duke@435 1383 // Add this machine node to the list in the pipeline class
duke@435 1384 _AD._pipeline->_classdict[pipe_class]->is_pipeclass()->_instructs.addName(node_class);
duke@435 1385
duke@435 1386 MachNodeForm *machnode = new MachNodeForm(node_class); // Create new machnode form
duke@435 1387 machnode->_machnode_pipe = pipe_class;
duke@435 1388
duke@435 1389 _AD.addForm(machnode);
duke@435 1390 }
duke@435 1391 else if (!strcmp(ident, "attributes")) {
duke@435 1392 bool vsi_seen = false, bhds_seen = false;
duke@435 1393
duke@435 1394 skipws();
duke@435 1395 if ( (_curchar != '%')
duke@435 1396 || ( next_char(), (_curchar != '{')) ) {
duke@435 1397 parse_err(SYNERR, "expected '%{'\n");
duke@435 1398 return;
duke@435 1399 }
duke@435 1400 next_char(); skipws();
duke@435 1401
duke@435 1402 while (_curchar != '%') {
duke@435 1403 ident = get_ident();
duke@435 1404 if (ident == NULL)
duke@435 1405 break;
duke@435 1406
duke@435 1407 if (!strcmp(ident, "variable_size_instructions")) {
duke@435 1408 skipws();
duke@435 1409 if (_curchar == ';') {
duke@435 1410 next_char(); skipws();
duke@435 1411 }
duke@435 1412
duke@435 1413 pipeline->_variableSizeInstrs = true;
duke@435 1414 vsi_seen = true;
duke@435 1415 continue;
duke@435 1416 }
duke@435 1417
duke@435 1418 if (!strcmp(ident, "fixed_size_instructions")) {
duke@435 1419 skipws();
duke@435 1420 if (_curchar == ';') {
duke@435 1421 next_char(); skipws();
duke@435 1422 }
duke@435 1423
duke@435 1424 pipeline->_variableSizeInstrs = false;
duke@435 1425 vsi_seen = true;
duke@435 1426 continue;
duke@435 1427 }
duke@435 1428
duke@435 1429 if (!strcmp(ident, "branch_has_delay_slot")) {
duke@435 1430 skipws();
duke@435 1431 if (_curchar == ';') {
duke@435 1432 next_char(); skipws();
duke@435 1433 }
duke@435 1434
duke@435 1435 pipeline->_branchHasDelaySlot = true;
duke@435 1436 bhds_seen = true;
duke@435 1437 continue;
duke@435 1438 }
duke@435 1439
duke@435 1440 if (!strcmp(ident, "max_instructions_per_bundle")) {
duke@435 1441 skipws();
duke@435 1442 if (_curchar != '=') {
duke@435 1443 parse_err(SYNERR, "expected `=`\n");
duke@435 1444 break;
duke@435 1445 }
duke@435 1446
duke@435 1447 next_char(); skipws();
duke@435 1448 pipeline->_maxInstrsPerBundle = get_int();
duke@435 1449 skipws();
duke@435 1450
duke@435 1451 if (_curchar == ';') {
duke@435 1452 next_char(); skipws();
duke@435 1453 }
duke@435 1454
duke@435 1455 continue;
duke@435 1456 }
duke@435 1457
duke@435 1458 if (!strcmp(ident, "max_bundles_per_cycle")) {
duke@435 1459 skipws();
duke@435 1460 if (_curchar != '=') {
duke@435 1461 parse_err(SYNERR, "expected `=`\n");
duke@435 1462 break;
duke@435 1463 }
duke@435 1464
duke@435 1465 next_char(); skipws();
duke@435 1466 pipeline->_maxBundlesPerCycle = get_int();
duke@435 1467 skipws();
duke@435 1468
duke@435 1469 if (_curchar == ';') {
duke@435 1470 next_char(); skipws();
duke@435 1471 }
duke@435 1472
duke@435 1473 continue;
duke@435 1474 }
duke@435 1475
duke@435 1476 if (!strcmp(ident, "instruction_unit_size")) {
duke@435 1477 skipws();
duke@435 1478 if (_curchar != '=') {
duke@435 1479 parse_err(SYNERR, "expected `=`, found '%c'\n", _curchar);
duke@435 1480 break;
duke@435 1481 }
duke@435 1482
duke@435 1483 next_char(); skipws();
duke@435 1484 pipeline->_instrUnitSize = get_int();
duke@435 1485 skipws();
duke@435 1486
duke@435 1487 if (_curchar == ';') {
duke@435 1488 next_char(); skipws();
duke@435 1489 }
duke@435 1490
duke@435 1491 continue;
duke@435 1492 }
duke@435 1493
duke@435 1494 if (!strcmp(ident, "bundle_unit_size")) {
duke@435 1495 skipws();
duke@435 1496 if (_curchar != '=') {
duke@435 1497 parse_err(SYNERR, "expected `=`, found '%c'\n", _curchar);
duke@435 1498 break;
duke@435 1499 }
duke@435 1500
duke@435 1501 next_char(); skipws();
duke@435 1502 pipeline->_bundleUnitSize = get_int();
duke@435 1503 skipws();
duke@435 1504
duke@435 1505 if (_curchar == ';') {
duke@435 1506 next_char(); skipws();
duke@435 1507 }
duke@435 1508
duke@435 1509 continue;
duke@435 1510 }
duke@435 1511
duke@435 1512 if (!strcmp(ident, "instruction_fetch_unit_size")) {
duke@435 1513 skipws();
duke@435 1514 if (_curchar != '=') {
duke@435 1515 parse_err(SYNERR, "expected `=`, found '%c'\n", _curchar);
duke@435 1516 break;
duke@435 1517 }
duke@435 1518
duke@435 1519 next_char(); skipws();
duke@435 1520 pipeline->_instrFetchUnitSize = get_int();
duke@435 1521 skipws();
duke@435 1522
duke@435 1523 if (_curchar == ';') {
duke@435 1524 next_char(); skipws();
duke@435 1525 }
duke@435 1526
duke@435 1527 continue;
duke@435 1528 }
duke@435 1529
duke@435 1530 if (!strcmp(ident, "instruction_fetch_units")) {
duke@435 1531 skipws();
duke@435 1532 if (_curchar != '=') {
duke@435 1533 parse_err(SYNERR, "expected `=`, found '%c'\n", _curchar);
duke@435 1534 break;
duke@435 1535 }
duke@435 1536
duke@435 1537 next_char(); skipws();
duke@435 1538 pipeline->_instrFetchUnits = get_int();
duke@435 1539 skipws();
duke@435 1540
duke@435 1541 if (_curchar == ';') {
duke@435 1542 next_char(); skipws();
duke@435 1543 }
duke@435 1544
duke@435 1545 continue;
duke@435 1546 }
duke@435 1547
duke@435 1548 if (!strcmp(ident, "nops")) {
duke@435 1549 skipws();
duke@435 1550 if (_curchar != '(') {
duke@435 1551 parse_err(SYNERR, "expected `(`, found '%c'\n", _curchar);
duke@435 1552 break;
duke@435 1553 }
duke@435 1554
duke@435 1555 next_char(); skipws();
duke@435 1556
duke@435 1557 while (_curchar != ')') {
duke@435 1558 ident = get_ident();
duke@435 1559 if (ident == NULL) {
duke@435 1560 parse_err(SYNERR, "expected identifier for nop instruction, found '%c'\n", _curchar);
duke@435 1561 break;
duke@435 1562 }
duke@435 1563
duke@435 1564 pipeline->_noplist.addName(ident);
duke@435 1565 pipeline->_nopcnt++;
duke@435 1566 skipws();
duke@435 1567
duke@435 1568 if (_curchar == ',') {
duke@435 1569 next_char(); skipws();
duke@435 1570 }
duke@435 1571 }
duke@435 1572
duke@435 1573 next_char(); skipws();
duke@435 1574
duke@435 1575 if (_curchar == ';') {
duke@435 1576 next_char(); skipws();
duke@435 1577 }
duke@435 1578
duke@435 1579 continue;
duke@435 1580 }
duke@435 1581
duke@435 1582 parse_err(SYNERR, "unknown specifier \"%s\"\n", ident);
duke@435 1583 }
duke@435 1584
duke@435 1585 if ( (_curchar != '%')
duke@435 1586 || ( next_char(), (_curchar != '}')) ) {
duke@435 1587 parse_err(SYNERR, "expected '%}', found \"%c\"\n", _curchar);
duke@435 1588 }
duke@435 1589 next_char(); skipws();
duke@435 1590
duke@435 1591 if (pipeline->_maxInstrsPerBundle == 0)
duke@435 1592 parse_err(SYNERR, "\"max_instructions_per_bundle\" unspecified\n");
duke@435 1593 if (pipeline->_instrUnitSize == 0 && pipeline->_bundleUnitSize == 0)
duke@435 1594 parse_err(SYNERR, "\"instruction_unit_size\" and \"bundle_unit_size\" unspecified\n");
duke@435 1595 if (pipeline->_instrFetchUnitSize == 0)
duke@435 1596 parse_err(SYNERR, "\"instruction_fetch_unit_size\" unspecified\n");
duke@435 1597 if (pipeline->_instrFetchUnits == 0)
duke@435 1598 parse_err(SYNERR, "\"instruction_fetch_units\" unspecified\n");
duke@435 1599 if (!vsi_seen)
duke@435 1600 parse_err(SYNERR, "\"variable_size_instruction\" or \"fixed_size_instruction\" unspecified\n");
duke@435 1601 }
duke@435 1602 else { // Done with staticly defined parts of instruction definition
duke@435 1603 parse_err(SYNERR, "expected one of \"resources\", \"pipe_desc\", \"pipe_class\", found \"%s\"\n", ident);
duke@435 1604 return;
duke@435 1605 }
duke@435 1606 skipws();
duke@435 1607 if (_curchar == ';')
duke@435 1608 skipws();
duke@435 1609 } while(_curchar != '%');
duke@435 1610
duke@435 1611 next_char();
duke@435 1612 if (_curchar != '}') {
duke@435 1613 parse_err(SYNERR, "missing \"%}\" in pipeline definition\n");
duke@435 1614 return;
duke@435 1615 }
duke@435 1616
duke@435 1617 next_char();
duke@435 1618 }
duke@435 1619
duke@435 1620 //------------------------------resource_parse----------------------------
duke@435 1621 void ADLParser::resource_parse(PipelineForm &pipeline) {
duke@435 1622 ResourceForm *resource;
duke@435 1623 char * ident;
duke@435 1624 char * expr;
duke@435 1625 unsigned mask;
duke@435 1626 pipeline._rescount = 0;
duke@435 1627
duke@435 1628 skipws(); // Skip leading whitespace
duke@435 1629
duke@435 1630 if (_curchar != '(') {
duke@435 1631 parse_err(SYNERR, "missing \"(\" in resource definition\n");
duke@435 1632 return;
duke@435 1633 }
duke@435 1634
duke@435 1635 do {
duke@435 1636 next_char(); // Skip "(" or ","
duke@435 1637 ident = get_ident(); // Grab next identifier
duke@435 1638
duke@435 1639 if (ident == NULL) {
duke@435 1640 parse_err(SYNERR, "keyword identifier expected at \"%c\"\n", _curchar);
duke@435 1641 return;
duke@435 1642 }
duke@435 1643 skipws();
duke@435 1644
duke@435 1645 if (_curchar != '=') {
duke@435 1646 mask = (1 << pipeline._rescount++);
duke@435 1647 }
duke@435 1648 else {
duke@435 1649 next_char(); skipws();
duke@435 1650 expr = get_ident(); // Grab next identifier
duke@435 1651 if (expr == NULL) {
duke@435 1652 parse_err(SYNERR, "keyword identifier expected at \"%c\"\n", _curchar);
duke@435 1653 return;
duke@435 1654 }
duke@435 1655 resource = (ResourceForm *) pipeline._resdict[expr];
duke@435 1656 if (resource == NULL) {
duke@435 1657 parse_err(SYNERR, "resource \"%s\" is not defined\n", expr);
duke@435 1658 return;
duke@435 1659 }
duke@435 1660 mask = resource->mask();
duke@435 1661
duke@435 1662 skipws();
duke@435 1663 while (_curchar == '|') {
duke@435 1664 next_char(); skipws();
duke@435 1665
duke@435 1666 expr = get_ident(); // Grab next identifier
duke@435 1667 if (expr == NULL) {
duke@435 1668 parse_err(SYNERR, "keyword identifier expected at \"%c\"\n", _curchar);
duke@435 1669 return;
duke@435 1670 }
duke@435 1671
duke@435 1672 resource = (ResourceForm *) pipeline._resdict[expr]; // Look up the value
duke@435 1673 if (resource == NULL) {
duke@435 1674 parse_err(SYNERR, "resource \"%s\" is not defined\n", expr);
duke@435 1675 return;
duke@435 1676 }
duke@435 1677
duke@435 1678 mask |= resource->mask();
duke@435 1679 skipws();
duke@435 1680 }
duke@435 1681 }
duke@435 1682
duke@435 1683 resource = new ResourceForm(mask);
duke@435 1684
duke@435 1685 pipeline._resdict.Insert(ident, resource);
duke@435 1686 pipeline._reslist.addName(ident);
duke@435 1687 } while (_curchar == ',');
duke@435 1688
duke@435 1689 if (_curchar != ')') {
duke@435 1690 parse_err(SYNERR, "\")\" expected at \"%c\"\n", _curchar);
duke@435 1691 return;
duke@435 1692 }
duke@435 1693
duke@435 1694 next_char(); // Skip ")"
duke@435 1695 if (_curchar == ';')
duke@435 1696 next_char(); // Skip ";"
duke@435 1697 }
duke@435 1698
duke@435 1699 //------------------------------resource_parse----------------------------
duke@435 1700 void ADLParser::pipe_desc_parse(PipelineForm &pipeline) {
duke@435 1701 char * ident;
duke@435 1702
duke@435 1703 skipws(); // Skip leading whitespace
duke@435 1704
duke@435 1705 if (_curchar != '(') {
duke@435 1706 parse_err(SYNERR, "missing \"(\" in pipe_desc definition\n");
duke@435 1707 return;
duke@435 1708 }
duke@435 1709
duke@435 1710 do {
duke@435 1711 next_char(); // Skip "(" or ","
duke@435 1712 ident = get_ident(); // Grab next identifier
duke@435 1713 if (ident == NULL) {
duke@435 1714 parse_err(SYNERR, "keyword identifier expected at \"%c\"\n", _curchar);
duke@435 1715 return;
duke@435 1716 }
duke@435 1717
duke@435 1718 // Add the name to the list
duke@435 1719 pipeline._stages.addName(ident);
duke@435 1720 pipeline._stagecnt++;
duke@435 1721
duke@435 1722 skipws();
duke@435 1723 } while (_curchar == ',');
duke@435 1724
duke@435 1725 if (_curchar != ')') {
duke@435 1726 parse_err(SYNERR, "\")\" expected at \"%c\"\n", _curchar);
duke@435 1727 return;
duke@435 1728 }
duke@435 1729
duke@435 1730 next_char(); // Skip ")"
duke@435 1731 if (_curchar == ';')
duke@435 1732 next_char(); // Skip ";"
duke@435 1733 }
duke@435 1734
duke@435 1735 //------------------------------pipe_class_parse--------------------------
duke@435 1736 void ADLParser::pipe_class_parse(PipelineForm &pipeline) {
duke@435 1737 PipeClassForm *pipe_class;
duke@435 1738 char * ident;
duke@435 1739 char * stage;
duke@435 1740 char * read_or_write;
duke@435 1741 int is_write;
duke@435 1742 int is_read;
duke@435 1743 OperandForm *oper;
duke@435 1744
duke@435 1745 skipws(); // Skip leading whitespace
duke@435 1746
duke@435 1747 ident = get_ident(); // Grab next identifier
duke@435 1748
duke@435 1749 if (ident == NULL) {
duke@435 1750 parse_err(SYNERR, "keyword identifier expected at \"%c\"\n", _curchar);
duke@435 1751 return;
duke@435 1752 }
duke@435 1753
duke@435 1754 // Create a record for the pipe_class
duke@435 1755 pipe_class = new PipeClassForm(ident, ++pipeline._classcnt);
duke@435 1756 pipeline._classdict.Insert(ident, pipe_class);
duke@435 1757 pipeline._classlist.addName(ident);
duke@435 1758
duke@435 1759 // Then get the operands
duke@435 1760 skipws();
duke@435 1761 if (_curchar != '(') {
duke@435 1762 parse_err(SYNERR, "missing \"(\" in pipe_class definition\n");
duke@435 1763 }
duke@435 1764 // Parse the operand list
duke@435 1765 else get_oplist(pipe_class->_parameters, pipe_class->_localNames);
duke@435 1766 skipws(); // Skip leading whitespace
duke@435 1767 // Check for block delimiter
duke@435 1768 if ( (_curchar != '%')
duke@435 1769 || ( next_char(), (_curchar != '{')) ) {
duke@435 1770 parse_err(SYNERR, "missing \"%{\" in pipe_class definition\n");
duke@435 1771 return;
duke@435 1772 }
duke@435 1773 next_char();
duke@435 1774
duke@435 1775 do {
duke@435 1776 ident = get_ident(); // Grab next identifier
duke@435 1777 if (ident == NULL) {
duke@435 1778 parse_err(SYNERR, "keyword identifier expected at \"%c\"\n", _curchar);
duke@435 1779 continue;
duke@435 1780 }
duke@435 1781 skipws();
duke@435 1782
duke@435 1783 if (!strcmp(ident, "fixed_latency")) {
duke@435 1784 skipws();
duke@435 1785 if (_curchar != '(') {
duke@435 1786 parse_err(SYNERR, "missing \"(\" in latency definition\n");
duke@435 1787 return;
duke@435 1788 }
duke@435 1789 next_char(); skipws();
duke@435 1790 if( !isdigit(_curchar) ) {
duke@435 1791 parse_err(SYNERR, "number expected for \"%c\" in latency definition\n", _curchar);
duke@435 1792 return;
duke@435 1793 }
duke@435 1794 int fixed_latency = get_int();
duke@435 1795 skipws();
duke@435 1796 if (_curchar != ')') {
duke@435 1797 parse_err(SYNERR, "missing \")\" in latency definition\n");
duke@435 1798 return;
duke@435 1799 }
duke@435 1800 next_char(); skipws();
duke@435 1801 if (_curchar != ';') {
duke@435 1802 parse_err(SYNERR, "missing \";\" in latency definition\n");
duke@435 1803 return;
duke@435 1804 }
duke@435 1805
duke@435 1806 pipe_class->setFixedLatency(fixed_latency);
duke@435 1807 next_char(); skipws();
duke@435 1808 continue;
duke@435 1809 }
duke@435 1810
duke@435 1811 if (!strcmp(ident, "zero_instructions") ||
duke@435 1812 !strcmp(ident, "no_instructions")) {
duke@435 1813 skipws();
duke@435 1814 if (_curchar != ';') {
duke@435 1815 parse_err(SYNERR, "missing \";\" in latency definition\n");
duke@435 1816 return;
duke@435 1817 }
duke@435 1818
duke@435 1819 pipe_class->setInstructionCount(0);
duke@435 1820 next_char(); skipws();
duke@435 1821 continue;
duke@435 1822 }
duke@435 1823
duke@435 1824 if (!strcmp(ident, "one_instruction_with_delay_slot") ||
duke@435 1825 !strcmp(ident, "single_instruction_with_delay_slot")) {
duke@435 1826 skipws();
duke@435 1827 if (_curchar != ';') {
duke@435 1828 parse_err(SYNERR, "missing \";\" in latency definition\n");
duke@435 1829 return;
duke@435 1830 }
duke@435 1831
duke@435 1832 pipe_class->setInstructionCount(1);
duke@435 1833 pipe_class->setBranchDelay(true);
duke@435 1834 next_char(); skipws();
duke@435 1835 continue;
duke@435 1836 }
duke@435 1837
duke@435 1838 if (!strcmp(ident, "one_instruction") ||
duke@435 1839 !strcmp(ident, "single_instruction")) {
duke@435 1840 skipws();
duke@435 1841 if (_curchar != ';') {
duke@435 1842 parse_err(SYNERR, "missing \";\" in latency definition\n");
duke@435 1843 return;
duke@435 1844 }
duke@435 1845
duke@435 1846 pipe_class->setInstructionCount(1);
duke@435 1847 next_char(); skipws();
duke@435 1848 continue;
duke@435 1849 }
duke@435 1850
duke@435 1851 if (!strcmp(ident, "instructions_in_first_bundle") ||
duke@435 1852 !strcmp(ident, "instruction_count")) {
duke@435 1853 skipws();
duke@435 1854
duke@435 1855 int number_of_instructions = 1;
duke@435 1856
duke@435 1857 if (_curchar != '(') {
duke@435 1858 parse_err(SYNERR, "\"(\" expected at \"%c\"\n", _curchar);
duke@435 1859 continue;
duke@435 1860 }
duke@435 1861
duke@435 1862 next_char(); skipws();
duke@435 1863 number_of_instructions = get_int();
duke@435 1864
duke@435 1865 skipws();
duke@435 1866 if (_curchar != ')') {
duke@435 1867 parse_err(SYNERR, "\")\" expected at \"%c\"\n", _curchar);
duke@435 1868 continue;
duke@435 1869 }
duke@435 1870
duke@435 1871 next_char(); skipws();
duke@435 1872 if (_curchar != ';') {
duke@435 1873 parse_err(SYNERR, "missing \";\" in latency definition\n");
duke@435 1874 return;
duke@435 1875 }
duke@435 1876
duke@435 1877 pipe_class->setInstructionCount(number_of_instructions);
duke@435 1878 next_char(); skipws();
duke@435 1879 continue;
duke@435 1880 }
duke@435 1881
duke@435 1882 if (!strcmp(ident, "multiple_bundles")) {
duke@435 1883 skipws();
duke@435 1884 if (_curchar != ';') {
duke@435 1885 parse_err(SYNERR, "missing \";\" after multiple bundles\n");
duke@435 1886 return;
duke@435 1887 }
duke@435 1888
duke@435 1889 pipe_class->setMultipleBundles(true);
duke@435 1890 next_char(); skipws();
duke@435 1891 continue;
duke@435 1892 }
duke@435 1893
duke@435 1894 if (!strcmp(ident, "has_delay_slot")) {
duke@435 1895 skipws();
duke@435 1896 if (_curchar != ';') {
duke@435 1897 parse_err(SYNERR, "missing \";\" after \"has_delay_slot\"\n");
duke@435 1898 return;
duke@435 1899 }
duke@435 1900
duke@435 1901 pipe_class->setBranchDelay(true);
duke@435 1902 next_char(); skipws();
duke@435 1903 continue;
duke@435 1904 }
duke@435 1905
duke@435 1906 if (!strcmp(ident, "force_serialization")) {
duke@435 1907 skipws();
duke@435 1908 if (_curchar != ';') {
duke@435 1909 parse_err(SYNERR, "missing \";\" after \"force_serialization\"\n");
duke@435 1910 return;
duke@435 1911 }
duke@435 1912
duke@435 1913 pipe_class->setForceSerialization(true);
duke@435 1914 next_char(); skipws();
duke@435 1915 continue;
duke@435 1916 }
duke@435 1917
duke@435 1918 if (!strcmp(ident, "may_have_no_code")) {
duke@435 1919 skipws();
duke@435 1920 if (_curchar != ';') {
duke@435 1921 parse_err(SYNERR, "missing \";\" after \"may_have_no_code\"\n");
duke@435 1922 return;
duke@435 1923 }
duke@435 1924
duke@435 1925 pipe_class->setMayHaveNoCode(true);
duke@435 1926 next_char(); skipws();
duke@435 1927 continue;
duke@435 1928 }
duke@435 1929
duke@435 1930 const Form *parm = pipe_class->_localNames[ident];
duke@435 1931 if (parm != NULL) {
duke@435 1932 oper = parm->is_operand();
duke@435 1933 if (oper == NULL && !parm->is_opclass()) {
duke@435 1934 parse_err(SYNERR, "operand name expected at %s\n", ident);
duke@435 1935 continue;
duke@435 1936 }
duke@435 1937
duke@435 1938 if (_curchar != ':') {
duke@435 1939 parse_err(SYNERR, "\":\" expected at \"%c\"\n", _curchar);
duke@435 1940 continue;
duke@435 1941 }
duke@435 1942 next_char(); skipws();
duke@435 1943 stage = get_ident();
duke@435 1944 if (stage == NULL) {
duke@435 1945 parse_err(SYNERR, "pipeline stage identifier expected at \"%c\"\n", _curchar);
duke@435 1946 continue;
duke@435 1947 }
duke@435 1948
duke@435 1949 skipws();
duke@435 1950 if (_curchar != '(') {
duke@435 1951 parse_err(SYNERR, "\"(\" expected at \"%c\"\n", _curchar);
duke@435 1952 continue;
duke@435 1953 }
duke@435 1954
duke@435 1955 next_char();
duke@435 1956 read_or_write = get_ident();
duke@435 1957 if (read_or_write == NULL) {
duke@435 1958 parse_err(SYNERR, "\"read\" or \"write\" expected at \"%c\"\n", _curchar);
duke@435 1959 continue;
duke@435 1960 }
duke@435 1961
duke@435 1962 is_read = strcmp(read_or_write, "read") == 0;
duke@435 1963 is_write = strcmp(read_or_write, "write") == 0;
duke@435 1964 if (!is_read && !is_write) {
duke@435 1965 parse_err(SYNERR, "\"read\" or \"write\" expected at \"%c\"\n", _curchar);
duke@435 1966 continue;
duke@435 1967 }
duke@435 1968
duke@435 1969 skipws();
duke@435 1970 if (_curchar != ')') {
duke@435 1971 parse_err(SYNERR, "\")\" expected at \"%c\"\n", _curchar);
duke@435 1972 continue;
duke@435 1973 }
duke@435 1974
duke@435 1975 next_char(); skipws();
duke@435 1976 int more_instrs = 0;
duke@435 1977 if (_curchar == '+') {
duke@435 1978 next_char(); skipws();
duke@435 1979 if (_curchar < '0' || _curchar > '9') {
duke@435 1980 parse_err(SYNERR, "<number> expected at \"%c\"\n", _curchar);
duke@435 1981 continue;
duke@435 1982 }
duke@435 1983 while (_curchar >= '0' && _curchar <= '9') {
duke@435 1984 more_instrs *= 10;
duke@435 1985 more_instrs += _curchar - '0';
duke@435 1986 next_char();
duke@435 1987 }
duke@435 1988 skipws();
duke@435 1989 }
duke@435 1990
duke@435 1991 PipeClassOperandForm *pipe_operand = new PipeClassOperandForm(stage, is_write, more_instrs);
duke@435 1992 pipe_class->_localUsage.Insert(ident, pipe_operand);
duke@435 1993
duke@435 1994 if (_curchar == '%')
duke@435 1995 continue;
duke@435 1996
duke@435 1997 if (_curchar != ';') {
duke@435 1998 parse_err(SYNERR, "\";\" expected at \"%c\"\n", _curchar);
duke@435 1999 continue;
duke@435 2000 }
duke@435 2001 next_char(); skipws();
duke@435 2002 continue;
duke@435 2003 }
duke@435 2004
duke@435 2005 // Scan for Resource Specifier
duke@435 2006 const Form *res = pipeline._resdict[ident];
duke@435 2007 if (res != NULL) {
duke@435 2008 int cyclecnt = 1;
duke@435 2009 if (_curchar != ':') {
duke@435 2010 parse_err(SYNERR, "\":\" expected at \"%c\"\n", _curchar);
duke@435 2011 continue;
duke@435 2012 }
duke@435 2013 next_char(); skipws();
duke@435 2014 stage = get_ident();
duke@435 2015 if (stage == NULL) {
duke@435 2016 parse_err(SYNERR, "pipeline stage identifier expected at \"%c\"\n", _curchar);
duke@435 2017 continue;
duke@435 2018 }
duke@435 2019
duke@435 2020 skipws();
duke@435 2021 if (_curchar == '(') {
duke@435 2022 next_char();
duke@435 2023 cyclecnt = get_int();
duke@435 2024
duke@435 2025 skipws();
duke@435 2026 if (_curchar != ')') {
duke@435 2027 parse_err(SYNERR, "\")\" expected at \"%c\"\n", _curchar);
duke@435 2028 continue;
duke@435 2029 }
duke@435 2030
duke@435 2031 next_char(); skipws();
duke@435 2032 }
duke@435 2033
duke@435 2034 PipeClassResourceForm *resource = new PipeClassResourceForm(ident, stage, cyclecnt);
duke@435 2035 int stagenum = pipeline._stages.index(stage);
duke@435 2036 if (pipeline._maxcycleused < (stagenum+cyclecnt))
duke@435 2037 pipeline._maxcycleused = (stagenum+cyclecnt);
duke@435 2038 pipe_class->_resUsage.addForm(resource);
duke@435 2039
duke@435 2040 if (_curchar == '%')
duke@435 2041 continue;
duke@435 2042
duke@435 2043 if (_curchar != ';') {
duke@435 2044 parse_err(SYNERR, "\";\" expected at \"%c\"\n", _curchar);
duke@435 2045 continue;
duke@435 2046 }
duke@435 2047 next_char(); skipws();
duke@435 2048 continue;
duke@435 2049 }
duke@435 2050
duke@435 2051 parse_err(SYNERR, "resource expected at \"%s\"\n", ident);
duke@435 2052 return;
duke@435 2053 } while(_curchar != '%');
duke@435 2054
duke@435 2055 next_char();
duke@435 2056 if (_curchar != '}') {
duke@435 2057 parse_err(SYNERR, "missing \"%}\" in pipe_class definition\n");
duke@435 2058 return;
duke@435 2059 }
duke@435 2060
duke@435 2061 next_char();
duke@435 2062 }
duke@435 2063
duke@435 2064 //------------------------------peep_parse-------------------------------------
duke@435 2065 void ADLParser::peep_parse(void) {
duke@435 2066 Peephole *peep; // Pointer to current peephole rule form
duke@435 2067 char *desc = NULL; // String representation of rule
duke@435 2068
duke@435 2069 skipws(); // Skip leading whitespace
duke@435 2070
duke@435 2071 peep = new Peephole(); // Build new Peephole object
duke@435 2072 // Check for open block sequence
duke@435 2073 skipws(); // Skip leading whitespace
duke@435 2074 if (_curchar == '%' && *(_ptr+1) == '{') {
duke@435 2075 next_char(); next_char(); // Skip "%{"
duke@435 2076 skipws();
duke@435 2077 while (_curchar != '%' && *(_ptr+1) != '}') {
duke@435 2078 char *token = get_ident();
duke@435 2079 if (token == NULL) {
duke@435 2080 parse_err(SYNERR, "missing identifier inside peephole rule.\n");
duke@435 2081 return;
duke@435 2082 }
duke@435 2083 // check for legal subsections of peephole rule
duke@435 2084 if (strcmp(token,"peepmatch")==0) {
duke@435 2085 peep_match_parse(*peep); }
duke@435 2086 else if (strcmp(token,"peepconstraint")==0) {
duke@435 2087 peep_constraint_parse(*peep); }
duke@435 2088 else if (strcmp(token,"peepreplace")==0) {
duke@435 2089 peep_replace_parse(*peep); }
duke@435 2090 else {
duke@435 2091 parse_err(SYNERR, "expected peepmatch, peepconstraint, or peepreplace for identifier %s.\n", token);
duke@435 2092 }
duke@435 2093 skipws();
duke@435 2094 }
duke@435 2095 }
duke@435 2096 else {
duke@435 2097 parse_err(SYNERR, "Missing %%{ ... %%} block after peephole keyword.\n");
duke@435 2098 return;
duke@435 2099 }
duke@435 2100 next_char(); // Skip past '%'
duke@435 2101 next_char(); // Skip past '}'
duke@435 2102 }
duke@435 2103
duke@435 2104 // ******************** Private Level 2 Parse Functions ********************
duke@435 2105 //------------------------------constraint_parse------------------------------
duke@435 2106 Constraint *ADLParser::constraint_parse(void) {
duke@435 2107 char *func;
duke@435 2108 char *arg;
duke@435 2109
duke@435 2110 // Check for constraint expression
duke@435 2111 skipws();
duke@435 2112 if (_curchar != '(') {
duke@435 2113 parse_err(SYNERR, "missing constraint expression, (...)\n");
duke@435 2114 return NULL;
duke@435 2115 }
duke@435 2116 next_char(); // Skip past '('
duke@435 2117
duke@435 2118 // Get constraint function
duke@435 2119 skipws();
duke@435 2120 func = get_ident();
duke@435 2121 if (func == NULL) {
duke@435 2122 parse_err(SYNERR, "missing function in constraint expression.\n");
duke@435 2123 return NULL;
duke@435 2124 }
duke@435 2125 if (strcmp(func,"ALLOC_IN_RC")==0
duke@435 2126 || strcmp(func,"IS_R_CLASS")==0) {
duke@435 2127 // Check for '(' before argument
duke@435 2128 skipws();
duke@435 2129 if (_curchar != '(') {
duke@435 2130 parse_err(SYNERR, "missing '(' for constraint function's argument.\n");
duke@435 2131 return NULL;
duke@435 2132 }
duke@435 2133 next_char();
duke@435 2134
duke@435 2135 // Get it's argument
duke@435 2136 skipws();
duke@435 2137 arg = get_ident();
duke@435 2138 if (arg == NULL) {
duke@435 2139 parse_err(SYNERR, "missing argument for constraint function %s\n",func);
duke@435 2140 return NULL;
duke@435 2141 }
duke@435 2142 // Check for ')' after argument
duke@435 2143 skipws();
duke@435 2144 if (_curchar != ')') {
duke@435 2145 parse_err(SYNERR, "missing ')' after constraint function argument %s\n",arg);
duke@435 2146 return NULL;
duke@435 2147 }
duke@435 2148 next_char();
duke@435 2149 } else {
duke@435 2150 parse_err(SYNERR, "Invalid constraint function %s\n",func);
duke@435 2151 return NULL;
duke@435 2152 }
duke@435 2153
duke@435 2154 // Check for closing paren and ';'
duke@435 2155 skipws();
duke@435 2156 if (_curchar != ')') {
duke@435 2157 parse_err(SYNERR, "Missing ')' for constraint function %s\n",func);
duke@435 2158 return NULL;
duke@435 2159 }
duke@435 2160 next_char();
duke@435 2161 skipws();
duke@435 2162 if (_curchar != ';') {
duke@435 2163 parse_err(SYNERR, "Missing ';' after constraint.\n");
duke@435 2164 return NULL;
duke@435 2165 }
duke@435 2166 next_char();
duke@435 2167
duke@435 2168 // Create new "Constraint"
duke@435 2169 Constraint *constraint = new Constraint(func,arg);
duke@435 2170 return constraint;
duke@435 2171 }
duke@435 2172
duke@435 2173 //------------------------------constr_parse-----------------------------------
duke@435 2174 ConstructRule *ADLParser::construct_parse(void) {
duke@435 2175 return NULL;
duke@435 2176 }
duke@435 2177
duke@435 2178
duke@435 2179 //------------------------------reg_def_parse----------------------------------
duke@435 2180 void ADLParser::reg_def_parse(void) {
duke@435 2181 char *rname; // Name of register being defined
duke@435 2182
duke@435 2183 // Get register name
duke@435 2184 skipws(); // Skip whitespace
duke@435 2185 rname = get_ident();
duke@435 2186 if (rname == NULL) {
duke@435 2187 parse_err(SYNERR, "missing register name after reg_def\n");
duke@435 2188 return;
duke@435 2189 }
duke@435 2190
duke@435 2191 // Check for definition of register calling convention (save on call, ...),
duke@435 2192 // register save type, and register encoding value.
duke@435 2193 skipws();
duke@435 2194 char *callconv = NULL;
duke@435 2195 char *c_conv = NULL;
duke@435 2196 char *idealtype = NULL;
duke@435 2197 char *encoding = NULL;
duke@435 2198 char *concrete = NULL;
duke@435 2199 if (_curchar == '(') {
duke@435 2200 next_char();
duke@435 2201 callconv = get_ident();
duke@435 2202 // Parse the internal calling convention, must be NS, SOC, SOE, or AS.
duke@435 2203 if (callconv == NULL) {
duke@435 2204 parse_err(SYNERR, "missing register calling convention value\n");
duke@435 2205 return;
duke@435 2206 }
duke@435 2207 if(strcmp(callconv, "SOC") && strcmp(callconv,"SOE") &&
duke@435 2208 strcmp(callconv, "NS") && strcmp(callconv, "AS")) {
duke@435 2209 parse_err(SYNERR, "invalid value for register calling convention\n");
duke@435 2210 }
duke@435 2211 skipws();
duke@435 2212 if (_curchar != ',') {
duke@435 2213 parse_err(SYNERR, "missing comma in register definition statement\n");
duke@435 2214 return;
duke@435 2215 }
duke@435 2216 next_char();
duke@435 2217
duke@435 2218 // Parse the native calling convention, must be NS, SOC, SOE, AS
duke@435 2219 c_conv = get_ident();
duke@435 2220 if (c_conv == NULL) {
duke@435 2221 parse_err(SYNERR, "missing register native calling convention value\n");
duke@435 2222 return;
duke@435 2223 }
duke@435 2224 if(strcmp(c_conv, "SOC") && strcmp(c_conv,"SOE") &&
duke@435 2225 strcmp(c_conv, "NS") && strcmp(c_conv, "AS")) {
duke@435 2226 parse_err(SYNERR, "invalid value for register calling convention\n");
duke@435 2227 }
duke@435 2228 skipws();
duke@435 2229 if (_curchar != ',') {
duke@435 2230 parse_err(SYNERR, "missing comma in register definition statement\n");
duke@435 2231 return;
duke@435 2232 }
duke@435 2233 next_char();
duke@435 2234 skipws();
duke@435 2235
duke@435 2236 // Parse the ideal save type
duke@435 2237 idealtype = get_ident();
duke@435 2238 if (idealtype == NULL) {
duke@435 2239 parse_err(SYNERR, "missing register save type value\n");
duke@435 2240 return;
duke@435 2241 }
duke@435 2242 skipws();
duke@435 2243 if (_curchar != ',') {
duke@435 2244 parse_err(SYNERR, "missing comma in register definition statement\n");
duke@435 2245 return;
duke@435 2246 }
duke@435 2247 next_char();
duke@435 2248 skipws();
duke@435 2249
duke@435 2250 // Parse the encoding value
duke@435 2251 encoding = get_expr("encoding", ",");
duke@435 2252 if (encoding == NULL) {
duke@435 2253 parse_err(SYNERR, "missing register encoding value\n");
duke@435 2254 return;
duke@435 2255 }
duke@435 2256 trim(encoding);
duke@435 2257 if (_curchar != ',') {
duke@435 2258 parse_err(SYNERR, "missing comma in register definition statement\n");
duke@435 2259 return;
duke@435 2260 }
duke@435 2261 next_char();
duke@435 2262 skipws();
duke@435 2263 // Parse the concrete name type
duke@435 2264 // concrete = get_ident();
duke@435 2265 concrete = get_expr("concrete", ")");
duke@435 2266 if (concrete == NULL) {
duke@435 2267 parse_err(SYNERR, "missing vm register name value\n");
duke@435 2268 return;
duke@435 2269 }
duke@435 2270
duke@435 2271 if (_curchar != ')') {
duke@435 2272 parse_err(SYNERR, "missing ')' in register definition statement\n");
duke@435 2273 return;
duke@435 2274 }
duke@435 2275 next_char();
duke@435 2276 }
duke@435 2277
duke@435 2278 // Check for closing ';'
duke@435 2279 skipws();
duke@435 2280 if (_curchar != ';') {
duke@435 2281 parse_err(SYNERR, "missing ';' after reg_def\n");
duke@435 2282 return;
duke@435 2283 }
duke@435 2284 next_char(); // move past ';'
duke@435 2285
duke@435 2286 // Debug Stuff
duke@435 2287 if (_AD._adl_debug > 1) {
duke@435 2288 fprintf(stderr,"Register Definition: %s ( %s, %s %s )\n", rname,
duke@435 2289 (callconv ? callconv : ""), (c_conv ? c_conv : ""), concrete);
duke@435 2290 }
duke@435 2291
duke@435 2292 // Record new register definition.
duke@435 2293 _AD._register->addRegDef(rname, callconv, c_conv, idealtype, encoding, concrete);
duke@435 2294 return;
duke@435 2295 }
duke@435 2296
duke@435 2297 //------------------------------reg_class_parse--------------------------------
duke@435 2298 void ADLParser::reg_class_parse(void) {
duke@435 2299 char *cname; // Name of register class being defined
duke@435 2300
duke@435 2301 // Get register class name
duke@435 2302 skipws(); // Skip leading whitespace
duke@435 2303 cname = get_ident();
duke@435 2304 if (cname == NULL) {
duke@435 2305 parse_err(SYNERR, "missing register class name after 'reg_class'\n");
duke@435 2306 return;
duke@435 2307 }
duke@435 2308 // Debug Stuff
duke@435 2309 if (_AD._adl_debug >1) fprintf(stderr,"Register Class: %s\n", cname);
duke@435 2310
duke@435 2311 RegClass *reg_class = _AD._register->addRegClass(cname);
duke@435 2312
duke@435 2313 // Collect registers in class
duke@435 2314 skipws();
duke@435 2315 if (_curchar == '(') {
duke@435 2316 next_char(); // Skip '('
duke@435 2317 skipws();
duke@435 2318 while (_curchar != ')') {
duke@435 2319 char *rname = get_ident();
duke@435 2320 if (rname==NULL) {
duke@435 2321 parse_err(SYNERR, "missing identifier inside reg_class list.\n");
duke@435 2322 return;
duke@435 2323 }
duke@435 2324 RegDef *regDef = _AD._register->getRegDef(rname);
jrose@910 2325 if (!regDef) {
jrose@910 2326 parse_err(SEMERR, "unknown identifier %s inside reg_class list.\n", rname);
jrose@910 2327 } else {
jrose@910 2328 reg_class->addReg(regDef); // add regDef to regClass
jrose@910 2329 }
duke@435 2330
duke@435 2331 // Check for ',' and position to next token.
duke@435 2332 skipws();
duke@435 2333 if (_curchar == ',') {
duke@435 2334 next_char(); // Skip trailing ','
duke@435 2335 skipws();
duke@435 2336 }
duke@435 2337 }
duke@435 2338 next_char(); // Skip closing ')'
roland@3317 2339 } else if (_curchar == '%') {
roland@3317 2340 char *code = find_cpp_block("reg class");
roland@3317 2341 if (code == NULL) {
roland@3317 2342 parse_err(SYNERR, "missing code declaration for reg class.\n");
roland@3317 2343 return;
roland@3317 2344 }
roland@3317 2345 reg_class->_user_defined = code;
roland@3317 2346 return;
duke@435 2347 }
duke@435 2348
duke@435 2349 // Check for terminating ';'
duke@435 2350 skipws();
duke@435 2351 if (_curchar != ';') {
duke@435 2352 parse_err(SYNERR, "missing ';' at end of reg_class definition.\n");
duke@435 2353 return;
duke@435 2354 }
duke@435 2355 next_char(); // Skip trailing ';'
duke@435 2356
duke@435 2357 // Check RegClass size, must be <= 32 registers in class.
duke@435 2358
duke@435 2359 return;
duke@435 2360 }
duke@435 2361
duke@435 2362 //------------------------------alloc_class_parse------------------------------
duke@435 2363 void ADLParser::alloc_class_parse(void) {
duke@435 2364 char *name; // Name of allocation class being defined
duke@435 2365
duke@435 2366 // Get allocation class name
duke@435 2367 skipws(); // Skip leading whitespace
duke@435 2368 name = get_ident();
duke@435 2369 if (name == NULL) {
duke@435 2370 parse_err(SYNERR, "missing allocation class name after 'reg_class'\n");
duke@435 2371 return;
duke@435 2372 }
duke@435 2373 // Debug Stuff
duke@435 2374 if (_AD._adl_debug >1) fprintf(stderr,"Allocation Class: %s\n", name);
duke@435 2375
duke@435 2376 AllocClass *alloc_class = _AD._register->addAllocClass(name);
duke@435 2377
duke@435 2378 // Collect registers in class
duke@435 2379 skipws();
duke@435 2380 if (_curchar == '(') {
duke@435 2381 next_char(); // Skip '('
duke@435 2382 skipws();
duke@435 2383 while (_curchar != ')') {
duke@435 2384 char *rname = get_ident();
duke@435 2385 if (rname==NULL) {
duke@435 2386 parse_err(SYNERR, "missing identifier inside reg_class list.\n");
duke@435 2387 return;
duke@435 2388 }
duke@435 2389 // Check if name is a RegDef
duke@435 2390 RegDef *regDef = _AD._register->getRegDef(rname);
duke@435 2391 if (regDef) {
duke@435 2392 alloc_class->addReg(regDef); // add regDef to allocClass
duke@435 2393 } else {
duke@435 2394
duke@435 2395 // name must be a RegDef or a RegClass
duke@435 2396 parse_err(SYNERR, "name %s should be a previously defined reg_def.\n", rname);
duke@435 2397 return;
duke@435 2398 }
duke@435 2399
duke@435 2400 // Check for ',' and position to next token.
duke@435 2401 skipws();
duke@435 2402 if (_curchar == ',') {
duke@435 2403 next_char(); // Skip trailing ','
duke@435 2404 skipws();
duke@435 2405 }
duke@435 2406 }
duke@435 2407 next_char(); // Skip closing ')'
duke@435 2408 }
duke@435 2409
duke@435 2410 // Check for terminating ';'
duke@435 2411 skipws();
duke@435 2412 if (_curchar != ';') {
duke@435 2413 parse_err(SYNERR, "missing ';' at end of reg_class definition.\n");
duke@435 2414 return;
duke@435 2415 }
duke@435 2416 next_char(); // Skip trailing ';'
duke@435 2417
duke@435 2418 return;
duke@435 2419 }
duke@435 2420
duke@435 2421 //------------------------------peep_match_child_parse-------------------------
duke@435 2422 InstructForm *ADLParser::peep_match_child_parse(PeepMatch &match, int parent, int &position, int input){
duke@435 2423 char *token = NULL;
duke@435 2424 int lparen = 0; // keep track of parenthesis nesting depth
duke@435 2425 int rparen = 0; // position of instruction at this depth
duke@435 2426 InstructForm *inst_seen = NULL;
duke@435 2427 InstructForm *child_seen = NULL;
duke@435 2428
duke@435 2429 // Walk the match tree,
duke@435 2430 // Record <parent, position, instruction name, input position>
duke@435 2431 while ( lparen >= rparen ) {
duke@435 2432 skipws();
duke@435 2433 // Left paren signals start of an input, collect with recursive call
duke@435 2434 if (_curchar == '(') {
duke@435 2435 ++lparen;
duke@435 2436 next_char();
duke@435 2437 child_seen = peep_match_child_parse(match, parent, position, rparen);
duke@435 2438 }
duke@435 2439 // Right paren signals end of an input, may be more
duke@435 2440 else if (_curchar == ')') {
duke@435 2441 ++rparen;
duke@435 2442 if( rparen == lparen ) { // IF rparen matches an lparen I've seen
duke@435 2443 next_char(); // move past ')'
duke@435 2444 } else { // ELSE leave ')' for parent
duke@435 2445 assert( rparen == lparen + 1, "Should only see one extra ')'");
duke@435 2446 // if an instruction was not specified for this paren-pair
duke@435 2447 if( ! inst_seen ) { // record signal entry
duke@435 2448 match.add_instruction( parent, position, NameList::_signal, input );
duke@435 2449 ++position;
duke@435 2450 }
duke@435 2451 // ++input; // TEMPORARY
duke@435 2452 return inst_seen;
duke@435 2453 }
duke@435 2454 }
duke@435 2455 // if no parens, then check for instruction name
duke@435 2456 // This instruction is the parent of a sub-tree
duke@435 2457 else if ((token = get_ident_dup()) != NULL) {
duke@435 2458 const Form *form = _AD._globalNames[token];
duke@435 2459 if (form) {
duke@435 2460 InstructForm *inst = form->is_instruction();
duke@435 2461 // Record the first instruction at this level
duke@435 2462 if( inst_seen == NULL ) {
duke@435 2463 inst_seen = inst;
duke@435 2464 }
duke@435 2465 if (inst) {
duke@435 2466 match.add_instruction( parent, position, token, input );
duke@435 2467 parent = position;
duke@435 2468 ++position;
duke@435 2469 } else {
duke@435 2470 parse_err(SYNERR, "instruction name expected at identifier %s.\n",
duke@435 2471 token);
duke@435 2472 return inst_seen;
duke@435 2473 }
duke@435 2474 }
duke@435 2475 else {
duke@435 2476 parse_err(SYNERR, "missing identifier in peepmatch rule.\n");
duke@435 2477 return NULL;
duke@435 2478 }
duke@435 2479 }
duke@435 2480 else {
duke@435 2481 parse_err(SYNERR, "missing identifier in peepmatch rule.\n");
duke@435 2482 return NULL;
duke@435 2483 }
duke@435 2484
duke@435 2485 } // end while
duke@435 2486
duke@435 2487 assert( false, "ShouldNotReachHere();");
duke@435 2488 return NULL;
duke@435 2489 }
duke@435 2490
duke@435 2491 //------------------------------peep_match_parse-------------------------------
duke@435 2492 // Syntax for a peepmatch rule
duke@435 2493 //
duke@435 2494 // peepmatch ( root_instr_name [(instruction subtree)] [,(instruction subtree)]* );
duke@435 2495 //
duke@435 2496 void ADLParser::peep_match_parse(Peephole &peep) {
duke@435 2497
duke@435 2498 skipws();
duke@435 2499 // Check the structure of the rule
duke@435 2500 // Check for open paren
duke@435 2501 if (_curchar != '(') {
duke@435 2502 parse_err(SYNERR, "missing '(' at start of peepmatch rule.\n");
duke@435 2503 return;
duke@435 2504 }
duke@435 2505 next_char(); // skip '('
duke@435 2506
duke@435 2507 // Construct PeepMatch and parse the peepmatch rule.
duke@435 2508 PeepMatch *match = new PeepMatch(_ptr);
duke@435 2509 int parent = -1; // parent of root
duke@435 2510 int position = 0; // zero-based positions
duke@435 2511 int input = 0; // input position in parent's operands
duke@435 2512 InstructForm *root= peep_match_child_parse( *match, parent, position, input);
duke@435 2513 if( root == NULL ) {
duke@435 2514 parse_err(SYNERR, "missing instruction-name at start of peepmatch.\n");
duke@435 2515 return;
duke@435 2516 }
duke@435 2517
duke@435 2518 if( _curchar != ')' ) {
duke@435 2519 parse_err(SYNERR, "missing ')' at end of peepmatch.\n");
duke@435 2520 return;
duke@435 2521 }
duke@435 2522 next_char(); // skip ')'
duke@435 2523
duke@435 2524 // Check for closing semicolon
duke@435 2525 skipws();
duke@435 2526 if( _curchar != ';' ) {
duke@435 2527 parse_err(SYNERR, "missing ';' at end of peepmatch.\n");
duke@435 2528 return;
duke@435 2529 }
duke@435 2530 next_char(); // skip ';'
duke@435 2531
duke@435 2532 // Store match into peep, and store peep into instruction
duke@435 2533 peep.add_match(match);
duke@435 2534 root->append_peephole(&peep);
duke@435 2535 }
duke@435 2536
duke@435 2537 //------------------------------peep_constraint_parse--------------------------
duke@435 2538 // Syntax for a peepconstraint rule
duke@435 2539 // A parenthesized list of relations between operands in peepmatch subtree
duke@435 2540 //
duke@435 2541 // peepconstraint %{
duke@435 2542 // (instruction_number.operand_name
duke@435 2543 // relational_op
duke@435 2544 // instruction_number.operand_name OR register_name
duke@435 2545 // [, ...] );
duke@435 2546 //
duke@435 2547 // // instruction numbers are zero-based using topological order in peepmatch
duke@435 2548 //
duke@435 2549 void ADLParser::peep_constraint_parse(Peephole &peep) {
duke@435 2550
duke@435 2551 skipws();
duke@435 2552 // Check the structure of the rule
duke@435 2553 // Check for open paren
duke@435 2554 if (_curchar != '(') {
duke@435 2555 parse_err(SYNERR, "missing '(' at start of peepconstraint rule.\n");
duke@435 2556 return;
duke@435 2557 }
duke@435 2558 else {
duke@435 2559 next_char(); // Skip '('
duke@435 2560 }
duke@435 2561
duke@435 2562 // Check for a constraint
duke@435 2563 skipws();
duke@435 2564 while( _curchar != ')' ) {
duke@435 2565 // Get information on the left instruction and its operand
duke@435 2566 // left-instructions's number
twisti@1038 2567 int left_inst = get_int();
duke@435 2568 // Left-instruction's operand
duke@435 2569 skipws();
duke@435 2570 if( _curchar != '.' ) {
duke@435 2571 parse_err(SYNERR, "missing '.' in peepconstraint after instruction number.\n");
duke@435 2572 return;
duke@435 2573 }
duke@435 2574 next_char(); // Skip '.'
duke@435 2575 char *left_op = get_ident_dup();
duke@435 2576
duke@435 2577 skipws();
duke@435 2578 // Collect relational operator
duke@435 2579 char *relation = get_relation_dup();
duke@435 2580
duke@435 2581 skipws();
duke@435 2582 // Get information on the right instruction and its operand
twisti@1038 2583 int right_inst; // Right-instructions's number
duke@435 2584 if( isdigit(_curchar) ) {
duke@435 2585 right_inst = get_int();
duke@435 2586 // Right-instruction's operand
duke@435 2587 skipws();
duke@435 2588 if( _curchar != '.' ) {
duke@435 2589 parse_err(SYNERR, "missing '.' in peepconstraint after instruction number.\n");
duke@435 2590 return;
duke@435 2591 }
duke@435 2592 next_char(); // Skip '.'
duke@435 2593 } else {
duke@435 2594 right_inst = -1; // Flag as being a register constraint
duke@435 2595 }
duke@435 2596
duke@435 2597 char *right_op = get_ident_dup();
duke@435 2598
duke@435 2599 // Construct the next PeepConstraint
duke@435 2600 PeepConstraint *constraint = new PeepConstraint( left_inst, left_op,
duke@435 2601 relation,
duke@435 2602 right_inst, right_op );
duke@435 2603 // And append it to the list for this peephole rule
duke@435 2604 peep.append_constraint( constraint );
duke@435 2605
duke@435 2606 // Check for another constraint, or end of rule
duke@435 2607 skipws();
duke@435 2608 if( _curchar == ',' ) {
duke@435 2609 next_char(); // Skip ','
duke@435 2610 skipws();
duke@435 2611 }
duke@435 2612 else if( _curchar != ')' ) {
duke@435 2613 parse_err(SYNERR, "expected ',' or ')' after peephole constraint.\n");
duke@435 2614 return;
duke@435 2615 }
duke@435 2616 } // end while( processing constraints )
duke@435 2617 next_char(); // Skip ')'
duke@435 2618
duke@435 2619 // Check for terminating ';'
duke@435 2620 skipws();
duke@435 2621 if (_curchar != ';') {
duke@435 2622 parse_err(SYNERR, "missing ';' at end of peepconstraint.\n");
duke@435 2623 return;
duke@435 2624 }
duke@435 2625 next_char(); // Skip trailing ';'
duke@435 2626 }
duke@435 2627
duke@435 2628
duke@435 2629 //------------------------------peep_replace_parse-----------------------------
duke@435 2630 // Syntax for a peepreplace rule
duke@435 2631 // root instruction name followed by a
duke@435 2632 // parenthesized list of whitespace separated instruction.operand specifiers
duke@435 2633 //
duke@435 2634 // peepreplace ( instr_name ( [instruction_number.operand_name]* ) );
duke@435 2635 //
duke@435 2636 //
duke@435 2637 void ADLParser::peep_replace_parse(Peephole &peep) {
duke@435 2638 int lparen = 0; // keep track of parenthesis nesting depth
duke@435 2639 int rparen = 0; // keep track of parenthesis nesting depth
duke@435 2640 int icount = 0; // count of instructions in rule for naming
duke@435 2641 char *str = NULL;
duke@435 2642 char *token = NULL;
duke@435 2643
duke@435 2644 skipws();
duke@435 2645 // Check for open paren
duke@435 2646 if (_curchar != '(') {
duke@435 2647 parse_err(SYNERR, "missing '(' at start of peepreplace rule.\n");
duke@435 2648 return;
duke@435 2649 }
duke@435 2650 else {
duke@435 2651 lparen++;
duke@435 2652 next_char();
duke@435 2653 }
duke@435 2654
duke@435 2655 // Check for root instruction
duke@435 2656 char *inst = get_ident_dup();
duke@435 2657 const Form *form = _AD._globalNames[inst];
duke@435 2658 if( form == NULL || form->is_instruction() == NULL ) {
duke@435 2659 parse_err(SYNERR, "Instruction name expected at start of peepreplace.\n");
duke@435 2660 return;
duke@435 2661 }
duke@435 2662
duke@435 2663 // Store string representation of rule into replace
duke@435 2664 PeepReplace *replace = new PeepReplace(str);
duke@435 2665 replace->add_instruction( inst );
duke@435 2666
duke@435 2667 skipws();
duke@435 2668 // Start of root's operand-list
duke@435 2669 if (_curchar != '(') {
duke@435 2670 parse_err(SYNERR, "missing '(' at peepreplace root's operand-list.\n");
duke@435 2671 return;
duke@435 2672 }
duke@435 2673 else {
duke@435 2674 lparen++;
duke@435 2675 next_char();
duke@435 2676 }
duke@435 2677
duke@435 2678 skipws();
duke@435 2679 // Get the list of operands
duke@435 2680 while( _curchar != ')' ) {
duke@435 2681 // Get information on an instruction and its operand
duke@435 2682 // instructions's number
duke@435 2683 int inst_num = get_int();
duke@435 2684 // Left-instruction's operand
duke@435 2685 skipws();
duke@435 2686 if( _curchar != '.' ) {
duke@435 2687 parse_err(SYNERR, "missing '.' in peepreplace after instruction number.\n");
duke@435 2688 return;
duke@435 2689 }
duke@435 2690 next_char(); // Skip '.'
duke@435 2691 char *inst_op = get_ident_dup();
duke@435 2692 if( inst_op == NULL ) {
duke@435 2693 parse_err(SYNERR, "missing operand identifier in peepreplace.\n");
duke@435 2694 return;
duke@435 2695 }
duke@435 2696
duke@435 2697 // Record this operand's position in peepmatch
duke@435 2698 replace->add_operand( inst_num, inst_op );
duke@435 2699 skipws();
duke@435 2700 }
duke@435 2701
duke@435 2702 // Check for the end of operands list
duke@435 2703 skipws();
duke@435 2704 assert( _curchar == ')', "While loop should have advanced to ')'.");
duke@435 2705 next_char(); // Skip ')'
duke@435 2706
duke@435 2707 skipws();
duke@435 2708 // Check for end of peepreplace
duke@435 2709 if( _curchar != ')' ) {
duke@435 2710 parse_err(SYNERR, "missing ')' at end of peepmatch.\n");
duke@435 2711 parse_err(SYNERR, "Support one replacement instruction.\n");
duke@435 2712 return;
duke@435 2713 }
duke@435 2714 next_char(); // Skip ')'
duke@435 2715
duke@435 2716 // Check for closing semicolon
duke@435 2717 skipws();
duke@435 2718 if( _curchar != ';' ) {
duke@435 2719 parse_err(SYNERR, "missing ';' at end of peepreplace.\n");
duke@435 2720 return;
duke@435 2721 }
duke@435 2722 next_char(); // skip ';'
duke@435 2723
duke@435 2724 // Store replace into peep
duke@435 2725 peep.add_replace( replace );
duke@435 2726 }
duke@435 2727
duke@435 2728 //------------------------------pred_parse-------------------------------------
duke@435 2729 Predicate *ADLParser::pred_parse(void) {
duke@435 2730 Predicate *predicate; // Predicate class for operand
duke@435 2731 char *rule = NULL; // String representation of predicate
duke@435 2732
duke@435 2733 skipws(); // Skip leading whitespace
jrose@910 2734 int line = linenum();
jrose@910 2735 if ( (rule = get_paren_expr("pred expression", true)) == NULL ) {
duke@435 2736 parse_err(SYNERR, "incorrect or missing expression for 'predicate'\n");
duke@435 2737 return NULL;
duke@435 2738 }
duke@435 2739 // Debug Stuff
duke@435 2740 if (_AD._adl_debug > 1) fprintf(stderr,"Predicate: %s\n", rule);
duke@435 2741 if (_curchar != ';') {
duke@435 2742 parse_err(SYNERR, "missing ';' in predicate definition\n");
duke@435 2743 return NULL;
duke@435 2744 }
duke@435 2745 next_char(); // Point after the terminator
duke@435 2746
duke@435 2747 predicate = new Predicate(rule); // Build new predicate object
duke@435 2748 skipws();
duke@435 2749 return predicate;
duke@435 2750 }
duke@435 2751
duke@435 2752
duke@435 2753 //------------------------------ins_encode_parse_block-------------------------
duke@435 2754 // Parse the block form of ins_encode. See ins_encode_parse for more details
twisti@2350 2755 void ADLParser::ins_encode_parse_block(InstructForm& inst) {
duke@435 2756 // Create a new encoding name based on the name of the instruction
duke@435 2757 // definition, which should be unique.
twisti@2350 2758 const char* prefix = "__ins_encode_";
twisti@2350 2759 char* ec_name = (char*) malloc(strlen(inst._ident) + strlen(prefix) + 1);
duke@435 2760 sprintf(ec_name, "%s%s", prefix, inst._ident);
duke@435 2761
duke@435 2762 assert(_AD._encode->encClass(ec_name) == NULL, "shouldn't already exist");
twisti@2350 2763 EncClass* encoding = _AD._encode->add_EncClass(ec_name);
never@850 2764 encoding->_linenum = linenum();
duke@435 2765
duke@435 2766 // synthesize the arguments list for the enc_class from the
duke@435 2767 // arguments to the instruct definition.
twisti@2350 2768 const char* param = NULL;
duke@435 2769 inst._parameters.reset();
duke@435 2770 while ((param = inst._parameters.iter()) != NULL) {
twisti@2350 2771 OperandForm* opForm = (OperandForm*) inst._localNames[param];
duke@435 2772 encoding->add_parameter(opForm->_ident, param);
duke@435 2773 }
duke@435 2774
twisti@2350 2775 // Define a MacroAssembler instance for use by the encoding. The
twisti@2350 2776 // name is chosen to match the __ idiom used for assembly in other
twisti@2350 2777 // parts of hotspot and assumes the existence of the standard
twisti@2350 2778 // #define __ _masm.
twisti@2350 2779 encoding->add_code(" MacroAssembler _masm(&cbuf);\n");
duke@435 2780
duke@435 2781 // Parse the following %{ }% block
twisti@2350 2782 ins_encode_parse_block_impl(inst, encoding, ec_name);
duke@435 2783
duke@435 2784 // Build an encoding rule which invokes the encoding rule we just
duke@435 2785 // created, passing all arguments that we received.
twisti@2350 2786 InsEncode* encrule = new InsEncode(); // Encode class for instruction
twisti@2350 2787 NameAndList* params = encrule->add_encode(ec_name);
duke@435 2788 inst._parameters.reset();
duke@435 2789 while ((param = inst._parameters.iter()) != NULL) {
duke@435 2790 params->add_entry(param);
duke@435 2791 }
duke@435 2792
never@2990 2793 // Check for duplicate ins_encode sections after parsing the block
never@2990 2794 // so that parsing can continue and find any other errors.
never@2990 2795 if (inst._insencode != NULL) {
never@2990 2796 parse_err(SYNERR, "Multiple ins_encode sections defined\n");
never@2990 2797 return;
never@2990 2798 }
never@2990 2799
twisti@2350 2800 // Set encode class of this instruction.
twisti@2350 2801 inst._insencode = encrule;
twisti@2350 2802 }
twisti@2350 2803
twisti@2350 2804
twisti@2350 2805 void ADLParser::ins_encode_parse_block_impl(InstructForm& inst, EncClass* encoding, char* ec_name) {
twisti@2350 2806 skipws_no_preproc(); // Skip leading whitespace
twisti@2350 2807 // Prepend location descriptor, for debugging; cf. ADLParser::find_cpp_block
twisti@2350 2808 if (_AD._adlocation_debug) {
twisti@2350 2809 encoding->add_code(get_line_string());
twisti@2350 2810 }
twisti@2350 2811
twisti@2350 2812 // Collect the parts of the encode description
twisti@2350 2813 // (1) strings that are passed through to output
twisti@2350 2814 // (2) replacement/substitution variable, preceeded by a '$'
twisti@2350 2815 while ((_curchar != '%') && (*(_ptr+1) != '}')) {
twisti@2350 2816
twisti@2350 2817 // (1)
twisti@2350 2818 // Check if there is a string to pass through to output
twisti@2350 2819 char *start = _ptr; // Record start of the next string
twisti@2350 2820 while ((_curchar != '$') && ((_curchar != '%') || (*(_ptr+1) != '}')) ) {
twisti@2350 2821 // If at the start of a comment, skip past it
twisti@2350 2822 if( (_curchar == '/') && ((*(_ptr+1) == '/') || (*(_ptr+1) == '*')) ) {
twisti@2350 2823 skipws_no_preproc();
twisti@2350 2824 } else {
twisti@2350 2825 // ELSE advance to the next character, or start of the next line
twisti@2350 2826 next_char_or_line();
twisti@2350 2827 }
twisti@2350 2828 }
twisti@2350 2829 // If a string was found, terminate it and record in EncClass
twisti@2350 2830 if (start != _ptr) {
twisti@2350 2831 *_ptr = '\0'; // Terminate the string
twisti@2350 2832 encoding->add_code(start);
twisti@2350 2833 }
twisti@2350 2834
twisti@2350 2835 // (2)
twisti@2350 2836 // If we are at a replacement variable,
twisti@2350 2837 // copy it and record in EncClass
twisti@2350 2838 if (_curchar == '$') {
twisti@2350 2839 // Found replacement Variable
twisti@2350 2840 char* rep_var = get_rep_var_ident_dup();
twisti@2350 2841
twisti@2350 2842 // Add flag to _strings list indicating we should check _rep_vars
twisti@2350 2843 encoding->add_rep_var(rep_var);
twisti@2350 2844
twisti@2350 2845 skipws();
twisti@2350 2846
twisti@2350 2847 // Check if this instruct is a MachConstantNode.
twisti@2350 2848 if (strcmp(rep_var, "constanttablebase") == 0) {
twisti@2350 2849 // This instruct is a MachConstantNode.
twisti@2350 2850 inst.set_is_mach_constant(true);
twisti@2350 2851
twisti@2350 2852 if (_curchar == '(') {
twisti@2350 2853 parse_err(SYNERR, "constanttablebase in instruct %s cannot have an argument (only constantaddress and constantoffset)", ec_name);
twisti@2350 2854 return;
twisti@2350 2855 }
twisti@2350 2856 }
twisti@2350 2857 else if ((strcmp(rep_var, "constantaddress") == 0) ||
twisti@2350 2858 (strcmp(rep_var, "constantoffset") == 0)) {
twisti@2350 2859 // This instruct is a MachConstantNode.
twisti@2350 2860 inst.set_is_mach_constant(true);
twisti@2350 2861
twisti@2350 2862 // If the constant keyword has an argument, parse it.
twisti@2350 2863 if (_curchar == '(') constant_parse(inst);
twisti@2350 2864 }
twisti@2350 2865 }
twisti@2350 2866 } // end while part of format description
twisti@2350 2867 next_char(); // Skip '%'
twisti@2350 2868 next_char(); // Skip '}'
twisti@2350 2869
twisti@2350 2870 skipws();
twisti@2350 2871
twisti@2350 2872 if (_AD._adlocation_debug) {
twisti@2350 2873 encoding->add_code(end_line_marker());
twisti@2350 2874 }
twisti@2350 2875
twisti@2350 2876 // Debug Stuff
twisti@2350 2877 if (_AD._adl_debug > 1) fprintf(stderr, "EncodingClass Form: %s\n", ec_name);
duke@435 2878 }
duke@435 2879
duke@435 2880
duke@435 2881 //------------------------------ins_encode_parse-------------------------------
duke@435 2882 // Encode rules have the form
duke@435 2883 // ins_encode( encode_class_name(parameter_list), ... );
duke@435 2884 //
duke@435 2885 // The "encode_class_name" must be defined in the encode section
duke@435 2886 // The parameter list contains $names that are locals.
duke@435 2887 //
duke@435 2888 // Alternatively it can be written like this:
duke@435 2889 //
duke@435 2890 // ins_encode %{
duke@435 2891 // ... // body
duke@435 2892 // %}
duke@435 2893 //
duke@435 2894 // which synthesizes a new encoding class taking the same arguments as
duke@435 2895 // the InstructForm, and automatically prefixes the definition with:
duke@435 2896 //
duke@435 2897 // MacroAssembler masm(&cbuf);\n");
duke@435 2898 //
duke@435 2899 // making it more compact to take advantage of the MacroAssembler and
duke@435 2900 // placing the assembly closer to it's use by instructions.
twisti@2350 2901 void ADLParser::ins_encode_parse(InstructForm& inst) {
duke@435 2902
duke@435 2903 // Parse encode class name
duke@435 2904 skipws(); // Skip whitespace
duke@435 2905 if (_curchar != '(') {
duke@435 2906 // Check for ins_encode %{ form
duke@435 2907 if ((_curchar == '%') && (*(_ptr+1) == '{')) {
duke@435 2908 next_char(); // Skip '%'
duke@435 2909 next_char(); // Skip '{'
duke@435 2910
duke@435 2911 // Parse the block form of ins_encode
twisti@2350 2912 ins_encode_parse_block(inst);
twisti@2350 2913 return;
duke@435 2914 }
duke@435 2915
duke@435 2916 parse_err(SYNERR, "missing '%%{' or '(' in ins_encode definition\n");
twisti@2350 2917 return;
duke@435 2918 }
duke@435 2919 next_char(); // move past '('
duke@435 2920 skipws();
duke@435 2921
duke@435 2922 InsEncode *encrule = new InsEncode(); // Encode class for instruction
never@850 2923 encrule->_linenum = linenum();
duke@435 2924 char *ec_name = NULL; // String representation of encode rule
duke@435 2925 // identifier is optional.
duke@435 2926 while (_curchar != ')') {
duke@435 2927 ec_name = get_ident();
duke@435 2928 if (ec_name == NULL) {
duke@435 2929 parse_err(SYNERR, "Invalid encode class name after 'ins_encode('.\n");
twisti@2350 2930 return;
duke@435 2931 }
duke@435 2932 // Check that encoding is defined in the encode section
duke@435 2933 EncClass *encode_class = _AD._encode->encClass(ec_name);
duke@435 2934 if (encode_class == NULL) {
duke@435 2935 // Like to defer checking these till later...
duke@435 2936 // parse_err(WARN, "Using an undefined encode class '%s' in 'ins_encode'.\n", ec_name);
duke@435 2937 }
duke@435 2938
duke@435 2939 // Get list for encode method's parameters
duke@435 2940 NameAndList *params = encrule->add_encode(ec_name);
duke@435 2941
duke@435 2942 // Parse the parameters to this encode method.
duke@435 2943 skipws();
duke@435 2944 if ( _curchar == '(' ) {
duke@435 2945 next_char(); // move past '(' for parameters
duke@435 2946
duke@435 2947 // Parse the encode method's parameters
duke@435 2948 while (_curchar != ')') {
duke@435 2949 char *param = get_ident_or_literal_constant("encoding operand");
duke@435 2950 if ( param != NULL ) {
duke@435 2951 // Found a parameter:
duke@435 2952 // Check it is a local name, add it to the list, then check for more
duke@435 2953 // New: allow hex constants as parameters to an encode method.
duke@435 2954 // New: allow parenthesized expressions as parameters.
duke@435 2955 // New: allow "primary", "secondary", "tertiary" as parameters.
duke@435 2956 // New: allow user-defined register name as parameter
duke@435 2957 if ( (inst._localNames[param] == NULL) &&
duke@435 2958 !ADLParser::is_literal_constant(param) &&
duke@435 2959 (Opcode::as_opcode_type(param) == Opcode::NOT_AN_OPCODE) &&
duke@435 2960 ((_AD._register == NULL ) || (_AD._register->getRegDef(param) == NULL)) ) {
duke@435 2961 parse_err(SYNERR, "Using non-locally defined parameter %s for encoding %s.\n", param, ec_name);
twisti@2350 2962 return;
duke@435 2963 }
duke@435 2964 params->add_entry(param);
duke@435 2965
duke@435 2966 skipws();
duke@435 2967 if (_curchar == ',' ) {
duke@435 2968 // More parameters to come
duke@435 2969 next_char(); // move past ',' between parameters
duke@435 2970 skipws(); // Skip to next parameter
duke@435 2971 }
duke@435 2972 else if (_curchar == ')') {
duke@435 2973 // Done with parameter list
duke@435 2974 }
duke@435 2975 else {
duke@435 2976 // Only ',' or ')' are valid after a parameter name
duke@435 2977 parse_err(SYNERR, "expected ',' or ')' after parameter %s.\n",
duke@435 2978 ec_name);
twisti@2350 2979 return;
duke@435 2980 }
duke@435 2981
duke@435 2982 } else {
duke@435 2983 skipws();
duke@435 2984 // Did not find a parameter
duke@435 2985 if (_curchar == ',') {
duke@435 2986 parse_err(SYNERR, "Expected encode parameter before ',' in encoding %s.\n", ec_name);
twisti@2350 2987 return;
duke@435 2988 }
duke@435 2989 if (_curchar != ')') {
duke@435 2990 parse_err(SYNERR, "Expected ')' after encode parameters.\n");
twisti@2350 2991 return;
duke@435 2992 }
duke@435 2993 }
duke@435 2994 } // WHILE loop collecting parameters
duke@435 2995 next_char(); // move past ')' at end of parameters
duke@435 2996 } // done with parameter list for encoding
duke@435 2997
duke@435 2998 // Check for ',' or ')' after encoding
duke@435 2999 skipws(); // move to character after parameters
duke@435 3000 if ( _curchar == ',' ) {
duke@435 3001 // Found a ','
duke@435 3002 next_char(); // move past ',' between encode methods
duke@435 3003 skipws();
duke@435 3004 }
duke@435 3005 else if ( _curchar != ')' ) {
duke@435 3006 // If not a ',' then only a ')' is allowed
duke@435 3007 parse_err(SYNERR, "Expected ')' after encoding %s.\n", ec_name);
twisti@2350 3008 return;
duke@435 3009 }
duke@435 3010
duke@435 3011 // Check for ',' separating parameters
duke@435 3012 // if ( _curchar != ',' && _curchar != ')' ) {
duke@435 3013 // parse_err(SYNERR, "expected ',' or ')' after encode method inside ins_encode.\n");
duke@435 3014 // return NULL;
duke@435 3015 // }
duke@435 3016
duke@435 3017 } // done parsing ins_encode methods and their parameters
duke@435 3018 if (_curchar != ')') {
duke@435 3019 parse_err(SYNERR, "Missing ')' at end of ins_encode description.\n");
twisti@2350 3020 return;
duke@435 3021 }
duke@435 3022 next_char(); // move past ')'
duke@435 3023 skipws(); // Skip leading whitespace
duke@435 3024
duke@435 3025 if ( _curchar != ';' ) {
duke@435 3026 parse_err(SYNERR, "Missing ';' at end of ins_encode.\n");
twisti@2350 3027 return;
duke@435 3028 }
duke@435 3029 next_char(); // move past ';'
duke@435 3030 skipws(); // be friendly to oper_parse()
duke@435 3031
never@2990 3032 // Check for duplicate ins_encode sections after parsing the block
never@2990 3033 // so that parsing can continue and find any other errors.
never@2990 3034 if (inst._insencode != NULL) {
never@2990 3035 parse_err(SYNERR, "Multiple ins_encode sections defined\n");
never@2990 3036 return;
never@2990 3037 }
never@2990 3038
duke@435 3039 // Debug Stuff
duke@435 3040 if (_AD._adl_debug > 1) fprintf(stderr,"Instruction Encode: %s\n", ec_name);
duke@435 3041
twisti@2350 3042 // Set encode class of this instruction.
twisti@2350 3043 inst._insencode = encrule;
twisti@2350 3044 }
twisti@2350 3045
twisti@2350 3046
twisti@2350 3047 //------------------------------constant_parse---------------------------------
twisti@2350 3048 // Parse a constant expression.
twisti@2350 3049 void ADLParser::constant_parse(InstructForm& inst) {
twisti@2350 3050 // Create a new encoding name based on the name of the instruction
twisti@2350 3051 // definition, which should be unique.
twisti@2350 3052 const char* prefix = "__constant_";
twisti@2350 3053 char* ec_name = (char*) malloc(strlen(inst._ident) + strlen(prefix) + 1);
twisti@2350 3054 sprintf(ec_name, "%s%s", prefix, inst._ident);
twisti@2350 3055
twisti@2350 3056 assert(_AD._encode->encClass(ec_name) == NULL, "shouldn't already exist");
twisti@2350 3057 EncClass* encoding = _AD._encode->add_EncClass(ec_name);
twisti@2350 3058 encoding->_linenum = linenum();
twisti@2350 3059
twisti@2350 3060 // synthesize the arguments list for the enc_class from the
twisti@2350 3061 // arguments to the instruct definition.
twisti@2350 3062 const char* param = NULL;
twisti@2350 3063 inst._parameters.reset();
twisti@2350 3064 while ((param = inst._parameters.iter()) != NULL) {
twisti@2350 3065 OperandForm* opForm = (OperandForm*) inst._localNames[param];
twisti@2350 3066 encoding->add_parameter(opForm->_ident, param);
twisti@2350 3067 }
twisti@2350 3068
twisti@2350 3069 // Parse the following ( ) expression.
twisti@2350 3070 constant_parse_expression(encoding, ec_name);
twisti@2350 3071
twisti@2350 3072 // Build an encoding rule which invokes the encoding rule we just
twisti@2350 3073 // created, passing all arguments that we received.
twisti@2350 3074 InsEncode* encrule = new InsEncode(); // Encode class for instruction
twisti@2350 3075 NameAndList* params = encrule->add_encode(ec_name);
twisti@2350 3076 inst._parameters.reset();
twisti@2350 3077 while ((param = inst._parameters.iter()) != NULL) {
twisti@2350 3078 params->add_entry(param);
twisti@2350 3079 }
twisti@2350 3080
twisti@2350 3081 // Set encode class of this instruction.
twisti@2350 3082 inst._constant = encrule;
twisti@2350 3083 }
twisti@2350 3084
twisti@2350 3085
twisti@2350 3086 //------------------------------constant_parse_expression----------------------
twisti@2350 3087 void ADLParser::constant_parse_expression(EncClass* encoding, char* ec_name) {
twisti@2350 3088 skipws();
twisti@2350 3089
twisti@2350 3090 // Prepend location descriptor, for debugging; cf. ADLParser::find_cpp_block
twisti@2350 3091 if (_AD._adlocation_debug) {
twisti@2350 3092 encoding->add_code(get_line_string());
twisti@2350 3093 }
twisti@2350 3094
twisti@2350 3095 // Start code line.
twisti@2350 3096 encoding->add_code(" _constant = C->constant_table().add");
twisti@2350 3097
twisti@2350 3098 // Parse everything in ( ) expression.
twisti@3310 3099 encoding->add_code("(this, ");
twisti@2350 3100 next_char(); // Skip '('
twisti@2350 3101 int parens_depth = 1;
twisti@2350 3102
twisti@2350 3103 // Collect the parts of the constant expression.
twisti@2350 3104 // (1) strings that are passed through to output
twisti@2350 3105 // (2) replacement/substitution variable, preceeded by a '$'
twisti@2350 3106 while (parens_depth > 0) {
twisti@2350 3107 if (_curchar == '(') {
twisti@2350 3108 parens_depth++;
twisti@2350 3109 encoding->add_code("(");
twisti@2350 3110 next_char();
twisti@2350 3111 }
twisti@2350 3112 else if (_curchar == ')') {
twisti@2350 3113 parens_depth--;
twisti@3310 3114 if (parens_depth > 0)
twisti@3310 3115 encoding->add_code(")");
twisti@2350 3116 next_char();
twisti@2350 3117 }
twisti@2350 3118 else {
twisti@2350 3119 // (1)
twisti@2350 3120 // Check if there is a string to pass through to output
twisti@2350 3121 char *start = _ptr; // Record start of the next string
twisti@2350 3122 while ((_curchar != '$') && (_curchar != '(') && (_curchar != ')')) {
twisti@2350 3123 next_char();
twisti@2350 3124 }
twisti@2350 3125 // If a string was found, terminate it and record in EncClass
twisti@2350 3126 if (start != _ptr) {
twisti@2350 3127 *_ptr = '\0'; // Terminate the string
twisti@2350 3128 encoding->add_code(start);
twisti@2350 3129 }
twisti@2350 3130
twisti@2350 3131 // (2)
twisti@2350 3132 // If we are at a replacement variable, copy it and record in EncClass.
twisti@2350 3133 if (_curchar == '$') {
twisti@2350 3134 // Found replacement Variable
twisti@2350 3135 char* rep_var = get_rep_var_ident_dup();
twisti@2350 3136 encoding->add_rep_var(rep_var);
twisti@2350 3137 }
twisti@2350 3138 }
twisti@2350 3139 }
twisti@2350 3140
twisti@2350 3141 // Finish code line.
twisti@3310 3142 encoding->add_code(");");
twisti@2350 3143
twisti@2350 3144 if (_AD._adlocation_debug) {
twisti@2350 3145 encoding->add_code(end_line_marker());
twisti@2350 3146 }
twisti@2350 3147
twisti@2350 3148 // Debug Stuff
twisti@2350 3149 if (_AD._adl_debug > 1) fprintf(stderr, "EncodingClass Form: %s\n", ec_name);
duke@435 3150 }
duke@435 3151
duke@435 3152
duke@435 3153 //------------------------------size_parse-----------------------------------
duke@435 3154 char* ADLParser::size_parse(InstructForm *instr) {
duke@435 3155 char* sizeOfInstr = NULL;
duke@435 3156
duke@435 3157 // Get value of the instruction's size
duke@435 3158 skipws();
duke@435 3159
duke@435 3160 // Parse size
duke@435 3161 sizeOfInstr = get_paren_expr("size expression");
duke@435 3162 if (sizeOfInstr == NULL) {
duke@435 3163 parse_err(SYNERR, "size of opcode expected at %c\n", _curchar);
duke@435 3164 return NULL;
duke@435 3165 }
duke@435 3166
duke@435 3167 skipws();
duke@435 3168
duke@435 3169 // Check for terminator
duke@435 3170 if (_curchar != ';') {
duke@435 3171 parse_err(SYNERR, "missing ';' in ins_attrib definition\n");
duke@435 3172 return NULL;
duke@435 3173 }
duke@435 3174 next_char(); // Advance past the ';'
duke@435 3175 skipws(); // necessary for instr_parse()
duke@435 3176
duke@435 3177 // Debug Stuff
duke@435 3178 if (_AD._adl_debug > 1) {
duke@435 3179 if (sizeOfInstr != NULL) {
duke@435 3180 fprintf(stderr,"size of opcode: %s\n", sizeOfInstr);
duke@435 3181 }
duke@435 3182 }
duke@435 3183
duke@435 3184 return sizeOfInstr;
duke@435 3185 }
duke@435 3186
duke@435 3187
duke@435 3188 //------------------------------opcode_parse-----------------------------------
duke@435 3189 Opcode * ADLParser::opcode_parse(InstructForm *instr) {
duke@435 3190 char *primary = NULL;
duke@435 3191 char *secondary = NULL;
duke@435 3192 char *tertiary = NULL;
duke@435 3193
duke@435 3194 char *val = NULL;
duke@435 3195 Opcode *opcode = NULL;
duke@435 3196
duke@435 3197 // Get value of the instruction's opcode
duke@435 3198 skipws();
duke@435 3199 if (_curchar != '(') { // Check for parenthesized operand list
duke@435 3200 parse_err(SYNERR, "missing '(' in expand instruction declaration\n");
duke@435 3201 return NULL;
duke@435 3202 }
duke@435 3203 next_char(); // skip open paren
duke@435 3204 skipws();
duke@435 3205 if (_curchar != ')') {
duke@435 3206 // Parse primary, secondary, and tertiary opcodes, if provided.
duke@435 3207 if ( ((primary = get_ident_or_literal_constant("primary opcode")) == NULL) ) {
duke@435 3208 parse_err(SYNERR, "primary hex opcode expected at %c\n", _curchar);
duke@435 3209 return NULL;
duke@435 3210 }
duke@435 3211 skipws();
duke@435 3212 if (_curchar == ',') {
duke@435 3213 next_char();
duke@435 3214 skipws();
duke@435 3215 // Parse secondary opcode
duke@435 3216 if ( ((secondary = get_ident_or_literal_constant("secondary opcode")) == NULL) ) {
duke@435 3217 parse_err(SYNERR, "secondary hex opcode expected at %c\n", _curchar);
duke@435 3218 return NULL;
duke@435 3219 }
duke@435 3220 skipws();
duke@435 3221 if (_curchar == ',') {
duke@435 3222 next_char();
duke@435 3223 skipws();
duke@435 3224 // Parse tertiary opcode
duke@435 3225 if ( ((tertiary = get_ident_or_literal_constant("tertiary opcode")) == NULL) ) {
duke@435 3226 parse_err(SYNERR,"tertiary hex opcode expected at %c\n", _curchar);
duke@435 3227 return NULL;
duke@435 3228 }
duke@435 3229 skipws();
duke@435 3230 }
duke@435 3231 }
duke@435 3232 skipws();
duke@435 3233 if (_curchar != ')') {
duke@435 3234 parse_err(SYNERR, "Missing ')' in opcode description\n");
duke@435 3235 return NULL;
duke@435 3236 }
duke@435 3237 }
duke@435 3238 next_char(); // Skip ')'
duke@435 3239 skipws();
duke@435 3240 // Check for terminator
duke@435 3241 if (_curchar != ';') {
duke@435 3242 parse_err(SYNERR, "missing ';' in ins_attrib definition\n");
duke@435 3243 return NULL;
duke@435 3244 }
duke@435 3245 next_char(); // Advance past the ';'
duke@435 3246 skipws(); // necessary for instr_parse()
duke@435 3247
duke@435 3248 // Debug Stuff
duke@435 3249 if (_AD._adl_debug > 1) {
duke@435 3250 if (primary != NULL) fprintf(stderr,"primary opcode: %s\n", primary);
duke@435 3251 if (secondary != NULL) fprintf(stderr,"secondary opcode: %s\n", secondary);
duke@435 3252 if (tertiary != NULL) fprintf(stderr,"tertiary opcode: %s\n", tertiary);
duke@435 3253 }
duke@435 3254
duke@435 3255 // Generate new object and return
duke@435 3256 opcode = new Opcode(primary, secondary, tertiary);
duke@435 3257 return opcode;
duke@435 3258 }
duke@435 3259
duke@435 3260
duke@435 3261 //------------------------------interface_parse--------------------------------
duke@435 3262 Interface *ADLParser::interface_parse(void) {
duke@435 3263 char *iface_name = NULL; // Name of interface class being used
duke@435 3264 char *iface_code = NULL; // Describe components of this class
duke@435 3265
duke@435 3266 // Get interface class name
duke@435 3267 skipws(); // Skip whitespace
duke@435 3268 if (_curchar != '(') {
duke@435 3269 parse_err(SYNERR, "Missing '(' at start of interface description.\n");
duke@435 3270 return NULL;
duke@435 3271 }
duke@435 3272 next_char(); // move past '('
duke@435 3273 skipws();
duke@435 3274 iface_name = get_ident();
duke@435 3275 if (iface_name == NULL) {
duke@435 3276 parse_err(SYNERR, "missing interface name after 'interface'.\n");
duke@435 3277 return NULL;
duke@435 3278 }
duke@435 3279 skipws();
duke@435 3280 if (_curchar != ')') {
duke@435 3281 parse_err(SYNERR, "Missing ')' after name of interface.\n");
duke@435 3282 return NULL;
duke@435 3283 }
duke@435 3284 next_char(); // move past ')'
duke@435 3285
duke@435 3286 // Get details of the interface,
duke@435 3287 // for the type of interface indicated by iface_name.
duke@435 3288 Interface *inter = NULL;
duke@435 3289 skipws();
duke@435 3290 if ( _curchar != ';' ) {
duke@435 3291 if ( strcmp(iface_name,"MEMORY_INTER") == 0 ) {
duke@435 3292 inter = mem_interface_parse();
duke@435 3293 }
duke@435 3294 else if ( strcmp(iface_name,"COND_INTER") == 0 ) {
duke@435 3295 inter = cond_interface_parse();
duke@435 3296 }
duke@435 3297 // The parse routines consume the "%}"
duke@435 3298
duke@435 3299 // Check for probable extra ';' after defining block.
duke@435 3300 if ( _curchar == ';' ) {
duke@435 3301 parse_err(SYNERR, "Extra ';' after defining interface block.\n");
duke@435 3302 next_char(); // Skip ';'
duke@435 3303 return NULL;
duke@435 3304 }
duke@435 3305 } else {
duke@435 3306 next_char(); // move past ';'
duke@435 3307
duke@435 3308 // Create appropriate interface object
duke@435 3309 if ( strcmp(iface_name,"REG_INTER") == 0 ) {
duke@435 3310 inter = new RegInterface();
duke@435 3311 }
duke@435 3312 else if ( strcmp(iface_name,"CONST_INTER") == 0 ) {
duke@435 3313 inter = new ConstInterface();
duke@435 3314 }
duke@435 3315 }
duke@435 3316 skipws(); // be friendly to oper_parse()
duke@435 3317 // Debug Stuff
duke@435 3318 if (_AD._adl_debug > 1) fprintf(stderr,"Interface Form: %s\n", iface_name);
duke@435 3319
duke@435 3320 // Create appropriate interface object and return.
duke@435 3321 return inter;
duke@435 3322 }
duke@435 3323
duke@435 3324
duke@435 3325 //------------------------------mem_interface_parse----------------------------
duke@435 3326 Interface *ADLParser::mem_interface_parse(void) {
duke@435 3327 // Fields for MemInterface
duke@435 3328 char *base = NULL;
duke@435 3329 char *index = NULL;
duke@435 3330 char *scale = NULL;
duke@435 3331 char *disp = NULL;
duke@435 3332
duke@435 3333 if (_curchar != '%') {
duke@435 3334 parse_err(SYNERR, "Missing '%{' for 'interface' block.\n");
duke@435 3335 return NULL;
duke@435 3336 }
duke@435 3337 next_char(); // Skip '%'
duke@435 3338 if (_curchar != '{') {
duke@435 3339 parse_err(SYNERR, "Missing '%{' for 'interface' block.\n");
duke@435 3340 return NULL;
duke@435 3341 }
duke@435 3342 next_char(); // Skip '{'
duke@435 3343 skipws();
duke@435 3344 do {
duke@435 3345 char *field = get_ident();
duke@435 3346 if (field == NULL) {
duke@435 3347 parse_err(SYNERR, "Expected keyword, base|index|scale|disp, or '%}' ending interface.\n");
duke@435 3348 return NULL;
duke@435 3349 }
duke@435 3350 if ( strcmp(field,"base") == 0 ) {
duke@435 3351 base = interface_field_parse();
duke@435 3352 }
duke@435 3353 else if ( strcmp(field,"index") == 0 ) {
duke@435 3354 index = interface_field_parse();
duke@435 3355 }
duke@435 3356 else if ( strcmp(field,"scale") == 0 ) {
duke@435 3357 scale = interface_field_parse();
duke@435 3358 }
duke@435 3359 else if ( strcmp(field,"disp") == 0 ) {
duke@435 3360 disp = interface_field_parse();
duke@435 3361 }
duke@435 3362 else {
duke@435 3363 parse_err(SYNERR, "Expected keyword, base|index|scale|disp, or '%}' ending interface.\n");
duke@435 3364 return NULL;
duke@435 3365 }
duke@435 3366 } while( _curchar != '%' );
duke@435 3367 next_char(); // Skip '%'
duke@435 3368 if ( _curchar != '}' ) {
duke@435 3369 parse_err(SYNERR, "Missing '%}' for 'interface' block.\n");
duke@435 3370 return NULL;
duke@435 3371 }
duke@435 3372 next_char(); // Skip '}'
duke@435 3373
duke@435 3374 // Construct desired object and return
duke@435 3375 Interface *inter = new MemInterface(base, index, scale, disp);
duke@435 3376 return inter;
duke@435 3377 }
duke@435 3378
duke@435 3379
duke@435 3380 //------------------------------cond_interface_parse---------------------------
duke@435 3381 Interface *ADLParser::cond_interface_parse(void) {
duke@435 3382 char *equal;
duke@435 3383 char *not_equal;
duke@435 3384 char *less;
duke@435 3385 char *greater_equal;
duke@435 3386 char *less_equal;
duke@435 3387 char *greater;
never@850 3388 const char *equal_format = "eq";
never@850 3389 const char *not_equal_format = "ne";
never@850 3390 const char *less_format = "lt";
never@850 3391 const char *greater_equal_format = "ge";
never@850 3392 const char *less_equal_format = "le";
never@850 3393 const char *greater_format = "gt";
duke@435 3394
duke@435 3395 if (_curchar != '%') {
duke@435 3396 parse_err(SYNERR, "Missing '%{' for 'cond_interface' block.\n");
duke@435 3397 return NULL;
duke@435 3398 }
duke@435 3399 next_char(); // Skip '%'
duke@435 3400 if (_curchar != '{') {
duke@435 3401 parse_err(SYNERR, "Missing '%{' for 'cond_interface' block.\n");
duke@435 3402 return NULL;
duke@435 3403 }
duke@435 3404 next_char(); // Skip '{'
duke@435 3405 skipws();
duke@435 3406 do {
duke@435 3407 char *field = get_ident();
duke@435 3408 if (field == NULL) {
duke@435 3409 parse_err(SYNERR, "Expected keyword, base|index|scale|disp, or '%}' ending interface.\n");
duke@435 3410 return NULL;
duke@435 3411 }
duke@435 3412 if ( strcmp(field,"equal") == 0 ) {
never@850 3413 equal = interface_field_parse(&equal_format);
duke@435 3414 }
duke@435 3415 else if ( strcmp(field,"not_equal") == 0 ) {
never@850 3416 not_equal = interface_field_parse(&not_equal_format);
duke@435 3417 }
duke@435 3418 else if ( strcmp(field,"less") == 0 ) {
never@850 3419 less = interface_field_parse(&less_format);
duke@435 3420 }
duke@435 3421 else if ( strcmp(field,"greater_equal") == 0 ) {
never@850 3422 greater_equal = interface_field_parse(&greater_equal_format);
duke@435 3423 }
duke@435 3424 else if ( strcmp(field,"less_equal") == 0 ) {
never@850 3425 less_equal = interface_field_parse(&less_equal_format);
duke@435 3426 }
duke@435 3427 else if ( strcmp(field,"greater") == 0 ) {
never@850 3428 greater = interface_field_parse(&greater_format);
duke@435 3429 }
duke@435 3430 else {
duke@435 3431 parse_err(SYNERR, "Expected keyword, base|index|scale|disp, or '%}' ending interface.\n");
duke@435 3432 return NULL;
duke@435 3433 }
duke@435 3434 } while( _curchar != '%' );
duke@435 3435 next_char(); // Skip '%'
duke@435 3436 if ( _curchar != '}' ) {
duke@435 3437 parse_err(SYNERR, "Missing '%}' for 'interface' block.\n");
duke@435 3438 return NULL;
duke@435 3439 }
duke@435 3440 next_char(); // Skip '}'
duke@435 3441
duke@435 3442 // Construct desired object and return
never@850 3443 Interface *inter = new CondInterface(equal, equal_format,
never@850 3444 not_equal, not_equal_format,
never@850 3445 less, less_format,
never@850 3446 greater_equal, greater_equal_format,
never@850 3447 less_equal, less_equal_format,
never@850 3448 greater, greater_format);
duke@435 3449 return inter;
duke@435 3450 }
duke@435 3451
duke@435 3452
duke@435 3453 //------------------------------interface_field_parse--------------------------
never@850 3454 char *ADLParser::interface_field_parse(const char ** format) {
duke@435 3455 char *iface_field = NULL;
duke@435 3456
duke@435 3457 // Get interface field
duke@435 3458 skipws(); // Skip whitespace
duke@435 3459 if (_curchar != '(') {
duke@435 3460 parse_err(SYNERR, "Missing '(' at start of interface field.\n");
duke@435 3461 return NULL;
duke@435 3462 }
duke@435 3463 next_char(); // move past '('
duke@435 3464 skipws();
duke@435 3465 if ( _curchar != '0' && _curchar != '$' ) {
duke@435 3466 parse_err(SYNERR, "missing or invalid interface field contents.\n");
duke@435 3467 return NULL;
duke@435 3468 }
duke@435 3469 iface_field = get_rep_var_ident();
duke@435 3470 if (iface_field == NULL) {
duke@435 3471 parse_err(SYNERR, "missing or invalid interface field contents.\n");
duke@435 3472 return NULL;
duke@435 3473 }
duke@435 3474 skipws();
never@850 3475 if (format != NULL && _curchar == ',') {
never@850 3476 next_char();
never@850 3477 skipws();
never@850 3478 if (_curchar != '"') {
never@850 3479 parse_err(SYNERR, "Missing '\"' in field format .\n");
never@850 3480 return NULL;
never@850 3481 }
never@850 3482 next_char();
never@850 3483 char *start = _ptr; // Record start of the next string
never@850 3484 while ((_curchar != '"') && (_curchar != '%') && (_curchar != '\n')) {
never@850 3485 if (_curchar == '\\') next_char(); // superquote
never@850 3486 if (_curchar == '\n') parse_err(SYNERR, "newline in string"); // unimplemented!
never@850 3487 next_char();
never@850 3488 }
never@850 3489 if (_curchar != '"') {
never@850 3490 parse_err(SYNERR, "Missing '\"' at end of field format .\n");
never@850 3491 return NULL;
never@850 3492 }
never@850 3493 // If a string was found, terminate it and record in FormatRule
never@850 3494 if ( start != _ptr ) {
never@850 3495 *_ptr = '\0'; // Terminate the string
never@850 3496 *format = start;
never@850 3497 }
never@850 3498 next_char();
never@850 3499 skipws();
never@850 3500 }
duke@435 3501 if (_curchar != ')') {
duke@435 3502 parse_err(SYNERR, "Missing ')' after interface field.\n");
duke@435 3503 return NULL;
duke@435 3504 }
duke@435 3505 next_char(); // move past ')'
duke@435 3506 skipws();
duke@435 3507 if ( _curchar != ';' ) {
duke@435 3508 parse_err(SYNERR, "Missing ';' at end of interface field.\n");
duke@435 3509 return NULL;
duke@435 3510 }
duke@435 3511 next_char(); // move past ';'
duke@435 3512 skipws(); // be friendly to interface_parse()
duke@435 3513
duke@435 3514 return iface_field;
duke@435 3515 }
duke@435 3516
duke@435 3517
duke@435 3518 //------------------------------match_parse------------------------------------
duke@435 3519 MatchRule *ADLParser::match_parse(FormDict &operands) {
duke@435 3520 MatchRule *match; // Match Rule class for instruction/operand
duke@435 3521 char *cnstr = NULL; // Code for constructor
duke@435 3522 int depth = 0; // Counter for matching parentheses
duke@435 3523 int numleaves = 0; // Counter for number of leaves in rule
duke@435 3524
duke@435 3525 // Parse the match rule tree
duke@435 3526 MatchNode *mnode = matchNode_parse(operands, depth, numleaves, true);
duke@435 3527
duke@435 3528 // Either there is a block with a constructor, or a ';' here
duke@435 3529 skipws(); // Skip whitespace
duke@435 3530 if ( _curchar == ';' ) { // Semicolon is valid terminator
duke@435 3531 cnstr = NULL; // no constructor for this form
duke@435 3532 next_char(); // Move past the ';', replaced with '\0'
duke@435 3533 }
duke@435 3534 else if ((cnstr = find_cpp_block("match constructor")) == NULL ) {
duke@435 3535 parse_err(SYNERR, "invalid construction of match rule\n"
duke@435 3536 "Missing ';' or invalid '%{' and '%}' constructor\n");
duke@435 3537 return NULL; // No MatchRule to return
duke@435 3538 }
duke@435 3539 if (_AD._adl_debug > 1)
duke@435 3540 if (cnstr) fprintf(stderr,"Match Constructor: %s\n", cnstr);
duke@435 3541 // Build new MatchRule object
duke@435 3542 match = new MatchRule(_AD, mnode, depth, cnstr, numleaves);
duke@435 3543 skipws(); // Skip any trailing whitespace
duke@435 3544 return match; // Return MatchRule object
duke@435 3545 }
duke@435 3546
duke@435 3547 //------------------------------format_parse-----------------------------------
duke@435 3548 FormatRule* ADLParser::format_parse(void) {
duke@435 3549 char *desc = NULL;
duke@435 3550 FormatRule *format = (new FormatRule(desc));
duke@435 3551
duke@435 3552 // Without expression form, MUST have a code block;
duke@435 3553 skipws(); // Skip whitespace
duke@435 3554 if ( _curchar == ';' ) { // Semicolon is valid terminator
duke@435 3555 desc = NULL; // no constructor for this form
duke@435 3556 next_char(); // Move past the ';', replaced with '\0'
duke@435 3557 }
duke@435 3558 else if ( _curchar == '%' && *(_ptr+1) == '{') {
duke@435 3559 next_char(); // Move past the '%'
duke@435 3560 next_char(); // Move past the '{'
duke@435 3561
duke@435 3562 skipws();
never@850 3563 if (_curchar == '$') {
never@850 3564 char* ident = get_rep_var_ident();
never@850 3565 if (strcmp(ident, "$$template") == 0) return template_parse();
never@850 3566 parse_err(SYNERR, "Unknown \"%s\" directive in format", ident);
never@850 3567 return NULL;
never@850 3568 }
duke@435 3569 // Check for the opening '"' inside the format description
duke@435 3570 if ( _curchar == '"' ) {
duke@435 3571 next_char(); // Move past the initial '"'
duke@435 3572 if( _curchar == '"' ) { // Handle empty format string case
duke@435 3573 *_ptr = '\0'; // Terminate empty string
duke@435 3574 format->_strings.addName(_ptr);
duke@435 3575 }
duke@435 3576
duke@435 3577 // Collect the parts of the format description
duke@435 3578 // (1) strings that are passed through to tty->print
duke@435 3579 // (2) replacement/substitution variable, preceeded by a '$'
duke@435 3580 // (3) multi-token ANSIY C style strings
duke@435 3581 while ( true ) {
duke@435 3582 if ( _curchar == '%' || _curchar == '\n' ) {
duke@435 3583 if ( _curchar != '"' ) {
duke@435 3584 parse_err(SYNERR, "missing '\"' at end of format block");
duke@435 3585 return NULL;
duke@435 3586 }
duke@435 3587 }
duke@435 3588
duke@435 3589 // (1)
duke@435 3590 // Check if there is a string to pass through to output
duke@435 3591 char *start = _ptr; // Record start of the next string
duke@435 3592 while ((_curchar != '$') && (_curchar != '"') && (_curchar != '%') && (_curchar != '\n')) {
jrose@910 3593 if (_curchar == '\\') {
jrose@910 3594 next_char(); // superquote
jrose@910 3595 if ((_curchar == '$') || (_curchar == '%'))
jrose@910 3596 // hack to avoid % escapes and warnings about undefined \ escapes
jrose@910 3597 *(_ptr-1) = _curchar;
jrose@910 3598 }
duke@435 3599 if (_curchar == '\n') parse_err(SYNERR, "newline in string"); // unimplemented!
duke@435 3600 next_char();
duke@435 3601 }
duke@435 3602 // If a string was found, terminate it and record in FormatRule
duke@435 3603 if ( start != _ptr ) {
duke@435 3604 *_ptr = '\0'; // Terminate the string
duke@435 3605 format->_strings.addName(start);
duke@435 3606 }
duke@435 3607
duke@435 3608 // (2)
duke@435 3609 // If we are at a replacement variable,
duke@435 3610 // copy it and record in FormatRule
duke@435 3611 if ( _curchar == '$' ) {
duke@435 3612 next_char(); // Move past the '$'
duke@435 3613 char* rep_var = get_ident(); // Nil terminate the variable name
duke@435 3614 rep_var = strdup(rep_var);// Copy the string
duke@435 3615 *_ptr = _curchar; // and replace Nil with original character
duke@435 3616 format->_rep_vars.addName(rep_var);
duke@435 3617 // Add flag to _strings list indicating we should check _rep_vars
duke@435 3618 format->_strings.addName(NameList::_signal);
duke@435 3619 }
duke@435 3620
duke@435 3621 // (3)
duke@435 3622 // Allow very long strings to be broken up,
duke@435 3623 // using the ANSI C syntax "foo\n" <newline> "bar"
duke@435 3624 if ( _curchar == '"') {
duke@435 3625 next_char(); // Move past the '"'
duke@435 3626 skipws(); // Skip white space before next string token
duke@435 3627 if ( _curchar != '"') {
duke@435 3628 break;
duke@435 3629 } else {
duke@435 3630 // Found one. Skip both " and the whitespace in between.
duke@435 3631 next_char();
duke@435 3632 }
duke@435 3633 }
duke@435 3634 } // end while part of format description
duke@435 3635
duke@435 3636 // Check for closing '"' and '%}' in format description
duke@435 3637 skipws(); // Move to closing '%}'
duke@435 3638 if ( _curchar != '%' ) {
duke@435 3639 parse_err(SYNERR, "non-blank characters between closing '\"' and '%' in format");
duke@435 3640 return NULL;
duke@435 3641 }
duke@435 3642 } // Done with format description inside
duke@435 3643
duke@435 3644 skipws();
duke@435 3645 // Past format description, at '%'
duke@435 3646 if ( _curchar != '%' || *(_ptr+1) != '}' ) {
duke@435 3647 parse_err(SYNERR, "missing '%}' at end of format block");
duke@435 3648 return NULL;
duke@435 3649 }
duke@435 3650 next_char(); // Move past the '%'
duke@435 3651 next_char(); // Move past the '}'
duke@435 3652 }
duke@435 3653 else { // parameter list alone must terminate with a ';'
duke@435 3654 parse_err(SYNERR, "missing ';' after Format expression");
duke@435 3655 return NULL;
duke@435 3656 }
duke@435 3657 // Debug Stuff
duke@435 3658 if (_AD._adl_debug > 1) fprintf(stderr,"Format Rule: %s\n", desc);
duke@435 3659
duke@435 3660 skipws();
duke@435 3661 return format;
duke@435 3662 }
duke@435 3663
duke@435 3664
never@850 3665 //------------------------------template_parse-----------------------------------
never@850 3666 FormatRule* ADLParser::template_parse(void) {
never@850 3667 char *desc = NULL;
never@850 3668 FormatRule *format = (new FormatRule(desc));
never@850 3669
never@850 3670 skipws();
never@850 3671 while ( (_curchar != '%') && (*(_ptr+1) != '}') ) {
never@850 3672
never@850 3673 // (1)
never@850 3674 // Check if there is a string to pass through to output
twisti@1038 3675 {
twisti@1038 3676 char *start = _ptr; // Record start of the next string
twisti@1038 3677 while ((_curchar != '$') && ((_curchar != '%') || (*(_ptr+1) != '}')) ) {
twisti@1038 3678 // If at the start of a comment, skip past it
twisti@1038 3679 if( (_curchar == '/') && ((*(_ptr+1) == '/') || (*(_ptr+1) == '*')) ) {
twisti@1038 3680 skipws_no_preproc();
twisti@1038 3681 } else {
twisti@1038 3682 // ELSE advance to the next character, or start of the next line
twisti@1038 3683 next_char_or_line();
twisti@1038 3684 }
never@850 3685 }
twisti@1038 3686 // If a string was found, terminate it and record in EncClass
twisti@1038 3687 if ( start != _ptr ) {
twisti@1038 3688 *_ptr = '\0'; // Terminate the string
twisti@1038 3689 // Add flag to _strings list indicating we should check _rep_vars
twisti@1038 3690 format->_strings.addName(NameList::_signal2);
twisti@1038 3691 format->_strings.addName(start);
twisti@1038 3692 }
never@850 3693 }
never@850 3694
never@850 3695 // (2)
never@850 3696 // If we are at a replacement variable,
never@850 3697 // copy it and record in EncClass
never@850 3698 if ( _curchar == '$' ) {
never@850 3699 // Found replacement Variable
never@850 3700 char *rep_var = get_rep_var_ident_dup();
never@850 3701 if (strcmp(rep_var, "$emit") == 0) {
never@850 3702 // switch to normal format parsing
never@850 3703 next_char();
never@850 3704 next_char();
never@850 3705 skipws();
never@850 3706 // Check for the opening '"' inside the format description
never@850 3707 if ( _curchar == '"' ) {
never@850 3708 next_char(); // Move past the initial '"'
never@850 3709 if( _curchar == '"' ) { // Handle empty format string case
never@850 3710 *_ptr = '\0'; // Terminate empty string
never@850 3711 format->_strings.addName(_ptr);
never@850 3712 }
never@850 3713
never@850 3714 // Collect the parts of the format description
never@850 3715 // (1) strings that are passed through to tty->print
never@850 3716 // (2) replacement/substitution variable, preceeded by a '$'
never@850 3717 // (3) multi-token ANSIY C style strings
never@850 3718 while ( true ) {
never@850 3719 if ( _curchar == '%' || _curchar == '\n' ) {
never@850 3720 parse_err(SYNERR, "missing '\"' at end of format block");
never@850 3721 return NULL;
never@850 3722 }
never@850 3723
never@850 3724 // (1)
never@850 3725 // Check if there is a string to pass through to output
never@850 3726 char *start = _ptr; // Record start of the next string
never@850 3727 while ((_curchar != '$') && (_curchar != '"') && (_curchar != '%') && (_curchar != '\n')) {
never@850 3728 if (_curchar == '\\') next_char(); // superquote
never@850 3729 if (_curchar == '\n') parse_err(SYNERR, "newline in string"); // unimplemented!
never@850 3730 next_char();
never@850 3731 }
never@850 3732 // If a string was found, terminate it and record in FormatRule
never@850 3733 if ( start != _ptr ) {
never@850 3734 *_ptr = '\0'; // Terminate the string
never@850 3735 format->_strings.addName(start);
never@850 3736 }
never@850 3737
never@850 3738 // (2)
never@850 3739 // If we are at a replacement variable,
never@850 3740 // copy it and record in FormatRule
never@850 3741 if ( _curchar == '$' ) {
never@850 3742 next_char(); // Move past the '$'
twisti@1038 3743 char* next_rep_var = get_ident(); // Nil terminate the variable name
twisti@1038 3744 next_rep_var = strdup(next_rep_var);// Copy the string
never@850 3745 *_ptr = _curchar; // and replace Nil with original character
twisti@1038 3746 format->_rep_vars.addName(next_rep_var);
never@850 3747 // Add flag to _strings list indicating we should check _rep_vars
never@850 3748 format->_strings.addName(NameList::_signal);
never@850 3749 }
never@850 3750
never@850 3751 // (3)
never@850 3752 // Allow very long strings to be broken up,
never@850 3753 // using the ANSI C syntax "foo\n" <newline> "bar"
never@850 3754 if ( _curchar == '"') {
never@850 3755 next_char(); // Move past the '"'
never@850 3756 skipws(); // Skip white space before next string token
never@850 3757 if ( _curchar != '"') {
never@850 3758 break;
never@850 3759 } else {
never@850 3760 // Found one. Skip both " and the whitespace in between.
never@850 3761 next_char();
never@850 3762 }
never@850 3763 }
never@850 3764 } // end while part of format description
never@850 3765 }
never@850 3766 } else {
never@850 3767 // Add flag to _strings list indicating we should check _rep_vars
never@850 3768 format->_rep_vars.addName(rep_var);
never@850 3769 // Add flag to _strings list indicating we should check _rep_vars
never@850 3770 format->_strings.addName(NameList::_signal3);
never@850 3771 }
never@850 3772 } // end while part of format description
never@850 3773 }
never@850 3774
never@850 3775 skipws();
never@850 3776 // Past format description, at '%'
never@850 3777 if ( _curchar != '%' || *(_ptr+1) != '}' ) {
never@850 3778 parse_err(SYNERR, "missing '%}' at end of format block");
never@850 3779 return NULL;
never@850 3780 }
never@850 3781 next_char(); // Move past the '%'
never@850 3782 next_char(); // Move past the '}'
never@850 3783
never@850 3784 // Debug Stuff
never@850 3785 if (_AD._adl_debug > 1) fprintf(stderr,"Format Rule: %s\n", desc);
never@850 3786
never@850 3787 skipws();
never@850 3788 return format;
never@850 3789 }
never@850 3790
never@850 3791
duke@435 3792 //------------------------------effect_parse-----------------------------------
duke@435 3793 void ADLParser::effect_parse(InstructForm *instr) {
duke@435 3794 char* desc = NULL;
duke@435 3795
duke@435 3796 skipws(); // Skip whitespace
duke@435 3797 if (_curchar != '(') {
duke@435 3798 parse_err(SYNERR, "missing '(' in effect definition\n");
duke@435 3799 return;
duke@435 3800 }
duke@435 3801 // Get list of effect-operand pairs and insert into dictionary
roland@3316 3802 else get_effectlist(instr->_effects, instr->_localNames, instr->_has_call);
duke@435 3803
duke@435 3804 // Debug Stuff
duke@435 3805 if (_AD._adl_debug > 1) fprintf(stderr,"Effect description: %s\n", desc);
duke@435 3806 if (_curchar != ';') {
duke@435 3807 parse_err(SYNERR, "missing ';' in Effect definition\n");
duke@435 3808 }
duke@435 3809 next_char(); // Skip ';'
duke@435 3810
duke@435 3811 }
duke@435 3812
duke@435 3813 //------------------------------expand_parse-----------------------------------
duke@435 3814 ExpandRule* ADLParser::expand_parse(InstructForm *instr) {
duke@435 3815 char *ident, *ident2;
duke@435 3816 OperandForm *oper;
duke@435 3817 InstructForm *ins;
duke@435 3818 NameAndList *instr_and_operands = NULL;
duke@435 3819 ExpandRule *exp = new ExpandRule();
duke@435 3820
duke@435 3821 // Expand is a block containing an ordered list of instructions, each of
duke@435 3822 // which has an ordered list of operands.
duke@435 3823 // Check for block delimiter
duke@435 3824 skipws(); // Skip leading whitespace
duke@435 3825 if ((_curchar != '%')
duke@435 3826 || (next_char(), (_curchar != '{')) ) { // If not open block
duke@435 3827 parse_err(SYNERR, "missing '%{' in expand definition\n");
duke@435 3828 return(NULL);
duke@435 3829 }
duke@435 3830 next_char(); // Maintain the invariant
duke@435 3831 do {
duke@435 3832 ident = get_ident(); // Grab next identifier
duke@435 3833 if (ident == NULL) {
duke@435 3834 parse_err(SYNERR, "identifier expected at %c\n", _curchar);
duke@435 3835 continue;
duke@435 3836 } // Check that you have a valid instruction
duke@435 3837 const Form *form = _globalNames[ident];
duke@435 3838 ins = form ? form->is_instruction() : NULL;
duke@435 3839 if (ins == NULL) {
duke@435 3840 // This is a new operand
duke@435 3841 oper = form ? form->is_operand() : NULL;
duke@435 3842 if (oper == NULL) {
duke@435 3843 parse_err(SYNERR, "instruction/operand name expected at %s\n", ident);
duke@435 3844 continue;
duke@435 3845 }
duke@435 3846 // Throw the operand on the _newopers list
duke@435 3847 skipws();
duke@435 3848 ident = get_unique_ident(instr->_localNames,"Operand");
duke@435 3849 if (ident == NULL) {
duke@435 3850 parse_err(SYNERR, "identifier expected at %c\n", _curchar);
duke@435 3851 continue;
duke@435 3852 }
duke@435 3853 exp->_newopers.addName(ident);
duke@435 3854 // Add new operand to LocalNames
duke@435 3855 instr->_localNames.Insert(ident, oper);
duke@435 3856 // Grab any constructor code and save as a string
duke@435 3857 char *c = NULL;
duke@435 3858 skipws();
duke@435 3859 if (_curchar == '%') { // Need a constructor for the operand
duke@435 3860 c = find_cpp_block("Operand Constructor");
duke@435 3861 if (c == NULL) {
duke@435 3862 parse_err(SYNERR, "Invalid code block for operand constructor\n", _curchar);
duke@435 3863 continue;
duke@435 3864 }
duke@435 3865 // Add constructor to _newopconst Dict
duke@435 3866 exp->_newopconst.Insert(ident, c);
duke@435 3867 }
duke@435 3868 else if (_curchar != ';') { // If no constructor, need a ;
duke@435 3869 parse_err(SYNERR, "Missing ; in expand rule operand declaration\n");
duke@435 3870 continue;
duke@435 3871 }
duke@435 3872 else next_char(); // Skip the ;
duke@435 3873 skipws();
duke@435 3874 }
duke@435 3875 else {
duke@435 3876 // Add instruction to list
duke@435 3877 instr_and_operands = new NameAndList(ident);
duke@435 3878 // Grab operands, build nameList of them, and then put into dictionary
duke@435 3879 skipws();
duke@435 3880 if (_curchar != '(') { // Check for parenthesized operand list
duke@435 3881 parse_err(SYNERR, "missing '(' in expand instruction declaration\n");
duke@435 3882 continue;
duke@435 3883 }
duke@435 3884 do {
duke@435 3885 next_char(); // skip open paren & comma characters
duke@435 3886 skipws();
duke@435 3887 if (_curchar == ')') break;
duke@435 3888 ident2 = get_ident();
duke@435 3889 skipws();
duke@435 3890 if (ident2 == NULL) {
duke@435 3891 parse_err(SYNERR, "identifier expected at %c\n", _curchar);
duke@435 3892 continue;
duke@435 3893 } // Check that you have a valid operand
twisti@1038 3894 const Form *form2 = instr->_localNames[ident2];
twisti@1038 3895 if (!form2) {
duke@435 3896 parse_err(SYNERR, "operand name expected at %s\n", ident2);
duke@435 3897 continue;
duke@435 3898 }
twisti@1038 3899 oper = form2->is_operand();
twisti@1038 3900 if (oper == NULL && !form2->is_opclass()) {
duke@435 3901 parse_err(SYNERR, "operand name expected at %s\n", ident2);
duke@435 3902 continue;
duke@435 3903 } // Add operand to list
duke@435 3904 instr_and_operands->add_entry(ident2);
duke@435 3905 } while(_curchar == ',');
duke@435 3906 if (_curchar != ')') {
duke@435 3907 parse_err(SYNERR, "missing ')'in expand instruction declaration\n");
duke@435 3908 continue;
duke@435 3909 }
duke@435 3910 next_char();
duke@435 3911 if (_curchar != ';') {
duke@435 3912 parse_err(SYNERR, "missing ';'in expand instruction declaration\n");
duke@435 3913 continue;
duke@435 3914 }
duke@435 3915 next_char();
duke@435 3916
duke@435 3917 // Record both instruction name and its operand list
duke@435 3918 exp->add_instruction(instr_and_operands);
duke@435 3919
duke@435 3920 skipws();
duke@435 3921 }
duke@435 3922
duke@435 3923 } while(_curchar != '%');
duke@435 3924 next_char();
duke@435 3925 if (_curchar != '}') {
duke@435 3926 parse_err(SYNERR, "missing '%}' in expand rule definition\n");
duke@435 3927 return(NULL);
duke@435 3928 }
duke@435 3929 next_char();
duke@435 3930
duke@435 3931 // Debug Stuff
duke@435 3932 if (_AD._adl_debug > 1) fprintf(stderr,"Expand Rule:\n");
duke@435 3933
duke@435 3934 skipws();
duke@435 3935 return (exp);
duke@435 3936 }
duke@435 3937
duke@435 3938 //------------------------------rewrite_parse----------------------------------
duke@435 3939 RewriteRule* ADLParser::rewrite_parse(void) {
duke@435 3940 char* params = NULL;
duke@435 3941 char* desc = NULL;
duke@435 3942
duke@435 3943
duke@435 3944 // This feature targeted for second generation description language.
duke@435 3945
duke@435 3946 skipws(); // Skip whitespace
duke@435 3947 // Get parameters for rewrite
duke@435 3948 if ((params = get_paren_expr("rewrite parameters")) == NULL) {
duke@435 3949 parse_err(SYNERR, "missing '(' in rewrite rule\n");
duke@435 3950 return NULL;
duke@435 3951 }
duke@435 3952 // Debug Stuff
duke@435 3953 if (_AD._adl_debug > 1) fprintf(stderr,"Rewrite parameters: %s\n", params);
duke@435 3954
duke@435 3955 // For now, grab entire block;
duke@435 3956 skipws();
duke@435 3957 if ( (desc = find_cpp_block("rewrite block")) == NULL ) {
duke@435 3958 parse_err(SYNERR, "incorrect or missing block for 'rewrite'.\n");
duke@435 3959 return NULL;
duke@435 3960 }
duke@435 3961 // Debug Stuff
duke@435 3962 if (_AD._adl_debug > 1) fprintf(stderr,"Rewrite Rule: %s\n", desc);
duke@435 3963
duke@435 3964 skipws();
duke@435 3965 return (new RewriteRule(params,desc));
duke@435 3966 }
duke@435 3967
duke@435 3968 //------------------------------attr_parse-------------------------------------
duke@435 3969 Attribute *ADLParser::attr_parse(char* ident) {
duke@435 3970 Attribute *attrib; // Attribute class
duke@435 3971 char *cost = NULL; // String representation of cost attribute
duke@435 3972
duke@435 3973 skipws(); // Skip leading whitespace
duke@435 3974 if ( (cost = get_paren_expr("attribute")) == NULL ) {
duke@435 3975 parse_err(SYNERR, "incorrect or missing expression for 'attribute'\n");
duke@435 3976 return NULL;
duke@435 3977 }
duke@435 3978 // Debug Stuff
duke@435 3979 if (_AD._adl_debug > 1) fprintf(stderr,"Attribute: %s\n", cost);
duke@435 3980 if (_curchar != ';') {
duke@435 3981 parse_err(SYNERR, "missing ';' in attribute definition\n");
duke@435 3982 return NULL;
duke@435 3983 }
duke@435 3984 next_char(); // Point after the terminator
duke@435 3985
duke@435 3986 skipws();
duke@435 3987 attrib = new Attribute(ident,cost,INS_ATTR); // Build new predicate object
duke@435 3988 return attrib;
duke@435 3989 }
duke@435 3990
duke@435 3991
duke@435 3992 //------------------------------matchNode_parse--------------------------------
duke@435 3993 MatchNode *ADLParser::matchNode_parse(FormDict &operands, int &depth, int &numleaves, bool atroot) {
duke@435 3994 // Count depth of parenthesis nesting for both left and right children
duke@435 3995 int lParens = depth;
duke@435 3996 int rParens = depth;
duke@435 3997
duke@435 3998 // MatchNode objects for left, right, and root of subtree.
duke@435 3999 MatchNode *lChild = NULL;
duke@435 4000 MatchNode *rChild = NULL;
duke@435 4001 char *token; // Identifier which may be opcode or operand
duke@435 4002
duke@435 4003 // Match expression starts with a '('
duke@435 4004 if (cur_char() != '(')
duke@435 4005 return NULL;
duke@435 4006
duke@435 4007 next_char(); // advance past '('
duke@435 4008
duke@435 4009 // Parse the opcode
duke@435 4010 token = get_ident(); // Get identifier, opcode
duke@435 4011 if (token == NULL) {
duke@435 4012 parse_err(SYNERR, "missing opcode in match expression\n");
duke@435 4013 return NULL;
duke@435 4014 }
duke@435 4015
duke@435 4016 // Take note if we see one of a few special operations - those that are
duke@435 4017 // treated differently on different architectures in the sense that on
duke@435 4018 // one architecture there is a match rule and on another there isn't (so
duke@435 4019 // a call will eventually be generated).
duke@435 4020
duke@435 4021 for (int i = _last_machine_leaf + 1; i < _last_opcode; i++) {
duke@435 4022 if (strcmp(token, NodeClassNames[i]) == 0) {
duke@435 4023 _AD.has_match_rule(i, true);
duke@435 4024 }
duke@435 4025 }
duke@435 4026
duke@435 4027 // Lookup the root value in the operands dict to perform substitution
duke@435 4028 const char *result = NULL; // Result type will be filled in later
duke@435 4029 const char *name = token; // local name associated with this node
duke@435 4030 const char *operation = token; // remember valid operation for later
duke@435 4031 const Form *form = operands[token];
duke@435 4032 OpClassForm *opcForm = form ? form->is_opclass() : NULL;
duke@435 4033 if (opcForm != NULL) {
duke@435 4034 // If this token is an entry in the local names table, record its type
duke@435 4035 if (!opcForm->ideal_only()) {
duke@435 4036 operation = opcForm->_ident;
duke@435 4037 result = operation; // Operands result in their own type
duke@435 4038 }
duke@435 4039 // Otherwise it is an ideal type, and so, has no local name
duke@435 4040 else name = NULL;
duke@435 4041 }
duke@435 4042
duke@435 4043 // Parse the operands
duke@435 4044 skipws();
duke@435 4045 if (cur_char() != ')') {
duke@435 4046
duke@435 4047 // Parse the left child
duke@435 4048 if (strcmp(operation,"Set"))
duke@435 4049 lChild = matchChild_parse(operands, lParens, numleaves, false);
duke@435 4050 else
duke@435 4051 lChild = matchChild_parse(operands, lParens, numleaves, true);
duke@435 4052
duke@435 4053 skipws();
duke@435 4054 if (cur_char() != ')' ) {
duke@435 4055 if(strcmp(operation, "Set"))
duke@435 4056 rChild = matchChild_parse(operands,rParens,numleaves,false);
duke@435 4057 else
duke@435 4058 rChild = matchChild_parse(operands,rParens,numleaves,true);
duke@435 4059 }
duke@435 4060 }
duke@435 4061
duke@435 4062 // Check for required ')'
duke@435 4063 skipws();
duke@435 4064 if (cur_char() != ')') {
duke@435 4065 parse_err(SYNERR, "missing ')' in match expression\n");
duke@435 4066 return NULL;
duke@435 4067 }
duke@435 4068 next_char(); // skip the ')'
duke@435 4069
duke@435 4070 MatchNode* mroot = new MatchNode(_AD,result,name,operation,lChild,rChild);
duke@435 4071
duke@435 4072 // If not the root, reduce this subtree to an internal operand
duke@435 4073 if (!atroot) {
duke@435 4074 mroot->build_internalop();
duke@435 4075 }
duke@435 4076 // depth is greater of left and right paths.
duke@435 4077 depth = (lParens > rParens) ? lParens : rParens;
duke@435 4078
duke@435 4079 return mroot;
duke@435 4080 }
duke@435 4081
duke@435 4082
duke@435 4083 //------------------------------matchChild_parse-------------------------------
duke@435 4084 MatchNode *ADLParser::matchChild_parse(FormDict &operands, int &parens, int &numleaves, bool atroot) {
duke@435 4085 MatchNode *child = NULL;
duke@435 4086 const char *result = NULL;
duke@435 4087 const char *token = NULL;
duke@435 4088 const char *opType = NULL;
duke@435 4089
duke@435 4090 if (cur_char() == '(') { // child is an operation
duke@435 4091 ++parens;
duke@435 4092 child = matchNode_parse(operands, parens, numleaves, atroot);
duke@435 4093 }
duke@435 4094 else { // child is an operand
duke@435 4095 token = get_ident();
duke@435 4096 const Form *form = operands[token];
duke@435 4097 OpClassForm *opcForm = form ? form->is_opclass() : NULL;
duke@435 4098 if (opcForm != NULL) {
duke@435 4099 opType = opcForm->_ident;
duke@435 4100 result = opcForm->_ident; // an operand's result matches its type
duke@435 4101 } else {
duke@435 4102 parse_err(SYNERR, "undefined operand %s in match rule\n", token);
duke@435 4103 return NULL;
duke@435 4104 }
duke@435 4105
duke@435 4106 if (opType == NULL) {
duke@435 4107 parse_err(SYNERR, "missing type for argument '%s'\n", token);
duke@435 4108 }
duke@435 4109
duke@435 4110 child = new MatchNode(_AD, result, token, opType);
duke@435 4111 ++numleaves;
duke@435 4112 }
duke@435 4113
duke@435 4114 return child;
duke@435 4115 }
duke@435 4116
duke@435 4117
duke@435 4118
duke@435 4119 // ******************** Private Utility Functions *************************
duke@435 4120
duke@435 4121
duke@435 4122 char* ADLParser::find_cpp_block(const char* description) {
duke@435 4123 char *next; // Pointer for finding block delimiters
duke@435 4124 char* cppBlock = NULL; // Beginning of C++ code block
duke@435 4125
duke@435 4126 if (_curchar == '%') { // Encoding is a C++ expression
duke@435 4127 next_char();
duke@435 4128 if (_curchar != '{') {
duke@435 4129 parse_err(SYNERR, "missing '{' in %s \n", description);
duke@435 4130 return NULL;
duke@435 4131 }
duke@435 4132 next_char(); // Skip block delimiter
duke@435 4133 skipws_no_preproc(); // Skip leading whitespace
duke@435 4134 cppBlock = _ptr; // Point to start of expression
jrose@910 4135 int line = linenum();
duke@435 4136 next = _ptr + 1;
duke@435 4137 while(((_curchar != '%') || (*next != '}')) && (_curchar != '\0')) {
duke@435 4138 next_char_or_line();
duke@435 4139 next = _ptr+1; // Maintain the next pointer
duke@435 4140 } // Grab string
duke@435 4141 if (_curchar == '\0') {
duke@435 4142 parse_err(SYNERR, "invalid termination of %s \n", description);
duke@435 4143 return NULL;
duke@435 4144 }
duke@435 4145 *_ptr = '\0'; // Terminate string
duke@435 4146 _ptr += 2; // Skip block delimiter
duke@435 4147 _curchar = *_ptr; // Maintain invariant
duke@435 4148
duke@435 4149 // Prepend location descriptor, for debugging.
jrose@910 4150 if (_AD._adlocation_debug) {
jrose@910 4151 char* location = get_line_string(line);
jrose@910 4152 char* end_loc = end_line_marker();
jrose@910 4153 char* result = (char *)malloc(strlen(location) + strlen(cppBlock) + strlen(end_loc) + 1);
jrose@910 4154 strcpy(result, location);
jrose@910 4155 strcat(result, cppBlock);
jrose@910 4156 strcat(result, end_loc);
jrose@910 4157 cppBlock = result;
jrose@910 4158 free(location);
jrose@910 4159 }
duke@435 4160 }
duke@435 4161
duke@435 4162 return cppBlock;
duke@435 4163 }
duke@435 4164
duke@435 4165 // Move to the closing token of the expression we are currently at,
duke@435 4166 // as defined by stop_chars. Match parens and quotes.
duke@435 4167 char* ADLParser::get_expr(const char *desc, const char *stop_chars) {
duke@435 4168 char* expr = NULL;
duke@435 4169 int paren = 0;
duke@435 4170
duke@435 4171 expr = _ptr;
duke@435 4172 while (paren > 0 || !strchr(stop_chars, _curchar)) {
duke@435 4173 if (_curchar == '(') { // Down level of nesting
duke@435 4174 paren++; // Bump the parenthesis counter
duke@435 4175 next_char(); // maintain the invariant
duke@435 4176 }
duke@435 4177 else if (_curchar == ')') { // Up one level of nesting
duke@435 4178 if (paren == 0) {
duke@435 4179 // Paren underflow: We didn't encounter the required stop-char.
duke@435 4180 parse_err(SYNERR, "too many )'s, did not find %s after %s\n",
duke@435 4181 stop_chars, desc);
duke@435 4182 return NULL;
duke@435 4183 }
duke@435 4184 paren--; // Drop the parenthesis counter
duke@435 4185 next_char(); // Maintain the invariant
duke@435 4186 }
duke@435 4187 else if (_curchar == '"' || _curchar == '\'') {
duke@435 4188 int qchar = _curchar;
duke@435 4189 while (true) {
duke@435 4190 next_char();
duke@435 4191 if (_curchar == qchar) { next_char(); break; }
duke@435 4192 if (_curchar == '\\') next_char(); // superquote
duke@435 4193 if (_curchar == '\n' || _curchar == '\0') {
duke@435 4194 parse_err(SYNERR, "newline in string in %s\n", desc);
duke@435 4195 return NULL;
duke@435 4196 }
duke@435 4197 }
duke@435 4198 }
duke@435 4199 else if (_curchar == '%' && (_ptr[1] == '{' || _ptr[1] == '}')) {
duke@435 4200 // Make sure we do not stray into the next ADLC-level form.
duke@435 4201 parse_err(SYNERR, "unexpected %%%c in %s\n", _ptr[1], desc);
duke@435 4202 return NULL;
duke@435 4203 }
duke@435 4204 else if (_curchar == '\0') {
duke@435 4205 parse_err(SYNERR, "unexpected EOF in %s\n", desc);
duke@435 4206 return NULL;
duke@435 4207 }
duke@435 4208 else {
duke@435 4209 // Always walk over whitespace, comments, preprocessor directives, etc.
duke@435 4210 char* pre_skip_ptr = _ptr;
duke@435 4211 skipws();
duke@435 4212 // If the parser declined to make progress on whitespace,
duke@435 4213 // skip the next character, which is therefore NOT whitespace.
duke@435 4214 if (pre_skip_ptr == _ptr) {
duke@435 4215 next_char();
duke@435 4216 } else if (pre_skip_ptr+strlen(pre_skip_ptr) != _ptr+strlen(_ptr)) {
duke@435 4217 parse_err(SYNERR, "unimplemented: preprocessor must not elide subexpression in %s", desc);
duke@435 4218 }
duke@435 4219 }
duke@435 4220 }
duke@435 4221
duke@435 4222 assert(strchr(stop_chars, _curchar), "non-null return must be at stop-char");
duke@435 4223 *_ptr = '\0'; // Replace ')' or other stop-char with '\0'
duke@435 4224 return expr;
duke@435 4225 }
duke@435 4226
duke@435 4227 // Helper function around get_expr
duke@435 4228 // Sets _curchar to '(' so that get_paren_expr will search for a matching ')'
jrose@910 4229 char *ADLParser::get_paren_expr(const char *description, bool include_location) {
jrose@910 4230 int line = linenum();
duke@435 4231 if (_curchar != '(') // Escape if not valid starting position
duke@435 4232 return NULL;
duke@435 4233 next_char(); // Skip the required initial paren.
duke@435 4234 char *token2 = get_expr(description, ")");
duke@435 4235 if (_curchar == ')')
duke@435 4236 next_char(); // Skip required final paren.
jrose@910 4237 int junk = 0;
jrose@910 4238 if (include_location && _AD._adlocation_debug && !is_int_token(token2, junk)) {
jrose@910 4239 // Prepend location descriptor, for debugging.
jrose@910 4240 char* location = get_line_string(line);
jrose@910 4241 char* end_loc = end_line_marker();
jrose@910 4242 char* result = (char *)malloc(strlen(location) + strlen(token2) + strlen(end_loc) + 1);
jrose@910 4243 strcpy(result, location);
jrose@910 4244 strcat(result, token2);
jrose@910 4245 strcat(result, end_loc);
jrose@910 4246 token2 = result;
jrose@910 4247 free(location);
jrose@910 4248 }
duke@435 4249 return token2;
duke@435 4250 }
duke@435 4251
duke@435 4252 //------------------------------get_ident_common-------------------------------
duke@435 4253 // Looks for an identifier in the buffer, and turns it into a null terminated
duke@435 4254 // string(still inside the file buffer). Returns a pointer to the string or
duke@435 4255 // NULL if some other token is found instead.
duke@435 4256 char *ADLParser::get_ident_common(bool do_preproc) {
duke@435 4257 register char c;
duke@435 4258 char *start; // Pointer to start of token
duke@435 4259 char *end; // Pointer to end of token
duke@435 4260
duke@435 4261 if( _curline == NULL ) // Return NULL at EOF.
duke@435 4262 return NULL;
duke@435 4263
duke@435 4264 skipws_common(do_preproc); // Skip whitespace before identifier
duke@435 4265 start = end = _ptr; // Start points at first character
duke@435 4266 end--; // unwind end by one to prepare for loop
duke@435 4267 do {
duke@435 4268 end++; // Increment end pointer
duke@435 4269 c = *end; // Grab character to test
duke@435 4270 } while ( ((c >= 'a') && (c <= 'z')) || ((c >= 'A') && (c <= 'Z'))
duke@435 4271 || ((c >= '0') && (c <= '9'))
duke@435 4272 || ((c == '_')) || ((c == ':')) || ((c == '#')) );
duke@435 4273 if (start == end) { // We popped out on the first try
duke@435 4274 parse_err(SYNERR, "identifier expected at %c\n", c);
duke@435 4275 start = NULL;
duke@435 4276 }
duke@435 4277 else {
duke@435 4278 _curchar = c; // Save the first character of next token
duke@435 4279 *end = '\0'; // NULL terminate the string in place
duke@435 4280 }
duke@435 4281 _ptr = end; // Reset _ptr to point to next char after token
duke@435 4282
duke@435 4283 // Make sure we do not try to use #defined identifiers. If start is
duke@435 4284 // NULL an error was already reported.
duke@435 4285 if (do_preproc && start != NULL) {
duke@435 4286 const char* def = _AD.get_preproc_def(start);
duke@435 4287 if (def != NULL && strcmp(def, start)) {
jrose@910 4288 const char* def1 = def;
jrose@910 4289 const char* def2 = _AD.get_preproc_def(def1);
jrose@910 4290 // implement up to 2 levels of #define
jrose@910 4291 if (def2 != NULL && strcmp(def2, def1)) {
jrose@910 4292 def = def2;
jrose@910 4293 const char* def3 = _AD.get_preproc_def(def2);
jrose@910 4294 if (def3 != NULL && strcmp(def3, def2) && strcmp(def3, def1)) {
jrose@910 4295 parse_err(SYNERR, "unimplemented: using %s defined as %s => %s => %s",
jrose@910 4296 start, def1, def2, def3);
jrose@910 4297 }
duke@435 4298 }
duke@435 4299 start = strdup(def);
duke@435 4300 }
duke@435 4301 }
duke@435 4302
duke@435 4303 return start; // Pointer to token in filebuf
duke@435 4304 }
duke@435 4305
duke@435 4306 //------------------------------get_ident_dup----------------------------------
duke@435 4307 // Looks for an identifier in the buffer, and returns a duplicate
duke@435 4308 // or NULL if some other token is found instead.
duke@435 4309 char *ADLParser::get_ident_dup(void) {
duke@435 4310 char *ident = get_ident();
duke@435 4311
duke@435 4312 // Duplicate an identifier before returning and restore string.
duke@435 4313 if( ident != NULL ) {
duke@435 4314 ident = strdup(ident); // Copy the string
duke@435 4315 *_ptr = _curchar; // and replace Nil with original character
duke@435 4316 }
duke@435 4317
duke@435 4318 return ident;
duke@435 4319 }
duke@435 4320
duke@435 4321 //----------------------get_ident_or_literal_constant--------------------------
duke@435 4322 // Looks for an identifier in the buffer, or a parenthesized expression.
duke@435 4323 char *ADLParser::get_ident_or_literal_constant(const char* description) {
duke@435 4324 char* param = NULL;
duke@435 4325 skipws();
duke@435 4326 if (_curchar == '(') {
duke@435 4327 // Grab a constant expression.
duke@435 4328 param = get_paren_expr(description);
duke@435 4329 if (param[0] != '(') {
duke@435 4330 char* buf = (char*) malloc(strlen(param) + 3);
duke@435 4331 sprintf(buf, "(%s)", param);
duke@435 4332 param = buf;
duke@435 4333 }
duke@435 4334 assert(is_literal_constant(param),
duke@435 4335 "expr must be recognizable as a constant");
duke@435 4336 } else {
duke@435 4337 param = get_ident();
duke@435 4338 }
duke@435 4339 return param;
duke@435 4340 }
duke@435 4341
duke@435 4342 //------------------------------get_rep_var_ident-----------------------------
duke@435 4343 // Do NOT duplicate,
duke@435 4344 // Leave nil terminator in buffer
duke@435 4345 // Preserve initial '$'(s) in string
duke@435 4346 char *ADLParser::get_rep_var_ident(void) {
duke@435 4347 // Remember starting point
duke@435 4348 char *rep_var = _ptr;
duke@435 4349
duke@435 4350 // Check for replacement variable indicator '$' and pass if present
duke@435 4351 if ( _curchar == '$' ) {
duke@435 4352 next_char();
duke@435 4353 }
duke@435 4354 // Check for a subfield indicator, a second '$', and pass if present
duke@435 4355 if ( _curchar == '$' ) {
duke@435 4356 next_char();
duke@435 4357 }
duke@435 4358
duke@435 4359 // Check for a control indicator, a third '$':
duke@435 4360 if ( _curchar == '$' ) {
duke@435 4361 next_char();
duke@435 4362 }
duke@435 4363
duke@435 4364 // Check for more than three '$'s in sequence, SYNERR
duke@435 4365 if( _curchar == '$' ) {
duke@435 4366 parse_err(SYNERR, "Replacement variables and field specifiers can not start with '$$$$'");
duke@435 4367 next_char();
duke@435 4368 return NULL;
duke@435 4369 }
duke@435 4370
duke@435 4371 // Nil terminate the variable name following the '$'
duke@435 4372 char *rep_var_name = get_ident();
duke@435 4373 assert( rep_var_name != NULL,
duke@435 4374 "Missing identifier after replacement variable indicator '$'");
duke@435 4375
duke@435 4376 return rep_var;
duke@435 4377 }
duke@435 4378
duke@435 4379
duke@435 4380
duke@435 4381 //------------------------------get_rep_var_ident_dup-------------------------
duke@435 4382 // Return the next replacement variable identifier, skipping first '$'
duke@435 4383 // given a pointer into a line of the buffer.
duke@435 4384 // Null terminates string, still inside the file buffer,
duke@435 4385 // Returns a pointer to a copy of the string, or NULL on failure
duke@435 4386 char *ADLParser::get_rep_var_ident_dup(void) {
duke@435 4387 if( _curchar != '$' ) return NULL;
duke@435 4388
duke@435 4389 next_char(); // Move past the '$'
duke@435 4390 char *rep_var = _ptr; // Remember starting point
duke@435 4391
duke@435 4392 // Check for a subfield indicator, a second '$':
duke@435 4393 if ( _curchar == '$' ) {
duke@435 4394 next_char();
duke@435 4395 }
duke@435 4396
duke@435 4397 // Check for a control indicator, a third '$':
duke@435 4398 if ( _curchar == '$' ) {
duke@435 4399 next_char();
duke@435 4400 }
duke@435 4401
duke@435 4402 // Check for more than three '$'s in sequence, SYNERR
duke@435 4403 if( _curchar == '$' ) {
duke@435 4404 parse_err(SYNERR, "Replacement variables and field specifiers can not start with '$$$$'");
duke@435 4405 next_char();
duke@435 4406 return NULL;
duke@435 4407 }
duke@435 4408
duke@435 4409 // Nil terminate the variable name following the '$'
duke@435 4410 char *rep_var_name = get_ident();
duke@435 4411 assert( rep_var_name != NULL,
duke@435 4412 "Missing identifier after replacement variable indicator '$'");
duke@435 4413 rep_var = strdup(rep_var); // Copy the string
duke@435 4414 *_ptr = _curchar; // and replace Nil with original character
duke@435 4415
duke@435 4416 return rep_var;
duke@435 4417 }
duke@435 4418
duke@435 4419
duke@435 4420 //------------------------------get_unique_ident------------------------------
duke@435 4421 // Looks for an identifier in the buffer, terminates it with a NULL,
duke@435 4422 // and checks that it is unique
duke@435 4423 char *ADLParser::get_unique_ident(FormDict& dict, const char* nameDescription){
duke@435 4424 char* ident = get_ident();
duke@435 4425
duke@435 4426 if (ident == NULL) {
duke@435 4427 parse_err(SYNERR, "missing %s identifier at %c\n", nameDescription, _curchar);
duke@435 4428 }
duke@435 4429 else {
duke@435 4430 if (dict[ident] != NULL) {
duke@435 4431 parse_err(SYNERR, "duplicate name %s for %s\n", ident, nameDescription);
duke@435 4432 ident = NULL;
duke@435 4433 }
duke@435 4434 }
duke@435 4435
duke@435 4436 return ident;
duke@435 4437 }
duke@435 4438
duke@435 4439
duke@435 4440 //------------------------------get_int----------------------------------------
duke@435 4441 // Looks for a character string integer in the buffer, and turns it into an int
duke@435 4442 // invokes a parse_err if the next token is not an integer.
duke@435 4443 // This routine does not leave the integer null-terminated.
duke@435 4444 int ADLParser::get_int(void) {
duke@435 4445 register char c;
duke@435 4446 char *start; // Pointer to start of token
duke@435 4447 char *end; // Pointer to end of token
duke@435 4448 int result; // Storage for integer result
duke@435 4449
duke@435 4450 if( _curline == NULL ) // Return NULL at EOF.
twisti@1038 4451 return 0;
duke@435 4452
duke@435 4453 skipws(); // Skip whitespace before identifier
duke@435 4454 start = end = _ptr; // Start points at first character
duke@435 4455 c = *end; // Grab character to test
duke@435 4456 while ((c >= '0') && (c <= '9')
duke@435 4457 || ((c == '-') && (end == start))) {
duke@435 4458 end++; // Increment end pointer
duke@435 4459 c = *end; // Grab character to test
duke@435 4460 }
duke@435 4461 if (start == end) { // We popped out on the first try
duke@435 4462 parse_err(SYNERR, "integer expected at %c\n", c);
duke@435 4463 result = 0;
duke@435 4464 }
duke@435 4465 else {
duke@435 4466 _curchar = c; // Save the first character of next token
duke@435 4467 *end = '\0'; // NULL terminate the string in place
duke@435 4468 result = atoi(start); // Convert the string to an integer
duke@435 4469 *end = _curchar; // Restore buffer to original condition
duke@435 4470 }
duke@435 4471
duke@435 4472 // Reset _ptr to next char after token
duke@435 4473 _ptr = end;
duke@435 4474
duke@435 4475 return result; // integer
duke@435 4476 }
duke@435 4477
duke@435 4478
duke@435 4479 //------------------------------get_relation_dup------------------------------
duke@435 4480 // Looks for a relational operator in the buffer
duke@435 4481 // invokes a parse_err if the next token is not a relation
duke@435 4482 // This routine creates a duplicate of the string in the buffer.
duke@435 4483 char *ADLParser::get_relation_dup(void) {
duke@435 4484 char *result = NULL; // relational operator being returned
duke@435 4485
duke@435 4486 if( _curline == NULL ) // Return NULL at EOF.
duke@435 4487 return NULL;
duke@435 4488
duke@435 4489 skipws(); // Skip whitespace before relation
duke@435 4490 char *start = _ptr; // Store start of relational operator
duke@435 4491 char first = *_ptr; // the first character
duke@435 4492 if( (first == '=') || (first == '!') || (first == '<') || (first == '>') ) {
duke@435 4493 next_char();
duke@435 4494 char second = *_ptr; // the second character
duke@435 4495 if( (second == '=') ) {
duke@435 4496 next_char();
duke@435 4497 char tmp = *_ptr;
duke@435 4498 *_ptr = '\0'; // NULL terminate
duke@435 4499 result = strdup(start); // Duplicate the string
duke@435 4500 *_ptr = tmp; // restore buffer
duke@435 4501 } else {
duke@435 4502 parse_err(SYNERR, "relational operator expected at %s\n", _ptr);
duke@435 4503 }
duke@435 4504 } else {
duke@435 4505 parse_err(SYNERR, "relational operator expected at %s\n", _ptr);
duke@435 4506 }
duke@435 4507
duke@435 4508 return result;
duke@435 4509 }
duke@435 4510
duke@435 4511
duke@435 4512
duke@435 4513 //------------------------------get_oplist-------------------------------------
duke@435 4514 // Looks for identifier pairs where first must be the name of an operand, and
duke@435 4515 // second must be a name unique in the scope of this instruction. Stores the
duke@435 4516 // names with a pointer to the OpClassForm of their type in a local name table.
duke@435 4517 void ADLParser::get_oplist(NameList &parameters, FormDict &operands) {
duke@435 4518 OpClassForm *opclass = NULL;
duke@435 4519 char *ident = NULL;
duke@435 4520
duke@435 4521 do {
duke@435 4522 next_char(); // skip open paren & comma characters
duke@435 4523 skipws();
duke@435 4524 if (_curchar == ')') break;
duke@435 4525
duke@435 4526 // Get operand type, and check it against global name table
duke@435 4527 ident = get_ident();
duke@435 4528 if (ident == NULL) {
duke@435 4529 parse_err(SYNERR, "optype identifier expected at %c\n", _curchar);
duke@435 4530 return;
duke@435 4531 }
duke@435 4532 else {
duke@435 4533 const Form *form = _globalNames[ident];
duke@435 4534 if( form == NULL ) {
duke@435 4535 parse_err(SYNERR, "undefined operand type %s\n", ident);
duke@435 4536 return;
duke@435 4537 }
duke@435 4538
duke@435 4539 // Check for valid operand type
duke@435 4540 OpClassForm *opc = form->is_opclass();
duke@435 4541 OperandForm *oper = form->is_operand();
duke@435 4542 if((oper == NULL) && (opc == NULL)) {
duke@435 4543 parse_err(SYNERR, "identifier %s not operand type\n", ident);
duke@435 4544 return;
duke@435 4545 }
duke@435 4546 opclass = opc;
duke@435 4547 }
duke@435 4548 // Debugging Stuff
duke@435 4549 if (_AD._adl_debug > 1) fprintf(stderr, "\tOperand Type: %s\t", ident);
duke@435 4550
duke@435 4551 // Get name of operand and add it to local name table
duke@435 4552 if( (ident = get_unique_ident(operands, "operand")) == NULL) {
duke@435 4553 return;
duke@435 4554 }
duke@435 4555 // Parameter names must not be global names.
duke@435 4556 if( _globalNames[ident] != NULL ) {
duke@435 4557 parse_err(SYNERR, "Reuse of global name %s as operand.\n",ident);
duke@435 4558 return;
duke@435 4559 }
duke@435 4560 operands.Insert(ident, opclass);
duke@435 4561 parameters.addName(ident);
duke@435 4562
duke@435 4563 // Debugging Stuff
duke@435 4564 if (_AD._adl_debug > 1) fprintf(stderr, "\tOperand Name: %s\n", ident);
duke@435 4565 skipws();
duke@435 4566 } while(_curchar == ',');
duke@435 4567
duke@435 4568 if (_curchar != ')') parse_err(SYNERR, "missing ')'\n");
duke@435 4569 else {
duke@435 4570 next_char(); // set current character position past the close paren
duke@435 4571 }
duke@435 4572 }
duke@435 4573
duke@435 4574
duke@435 4575 //------------------------------get_effectlist---------------------------------
duke@435 4576 // Looks for identifier pairs where first must be the name of a pre-defined,
duke@435 4577 // effect, and the second must be the name of an operand defined in the
duke@435 4578 // operand list of this instruction. Stores the names with a pointer to the
duke@435 4579 // effect form in a local effects table.
roland@3316 4580 void ADLParser::get_effectlist(FormDict &effects, FormDict &operands, bool& has_call) {
duke@435 4581 OperandForm *opForm;
duke@435 4582 Effect *eForm;
duke@435 4583 char *ident;
duke@435 4584
duke@435 4585 do {
duke@435 4586 next_char(); // skip open paren & comma characters
duke@435 4587 skipws();
duke@435 4588 if (_curchar == ')') break;
duke@435 4589
duke@435 4590 // Get effect type, and check it against global name table
duke@435 4591 ident = get_ident();
duke@435 4592 if (ident == NULL) {
duke@435 4593 parse_err(SYNERR, "effect type identifier expected at %c\n", _curchar);
duke@435 4594 return;
duke@435 4595 }
duke@435 4596 else {
duke@435 4597 // Check for valid effect type
duke@435 4598 const Form *form = _globalNames[ident];
duke@435 4599 if( form == NULL ) {
duke@435 4600 parse_err(SYNERR, "undefined effect type %s\n", ident);
duke@435 4601 return;
duke@435 4602 }
duke@435 4603 else {
duke@435 4604 if( (eForm = form->is_effect()) == NULL) {
duke@435 4605 parse_err(SYNERR, "identifier %s not effect type\n", ident);
duke@435 4606 return;
duke@435 4607 }
duke@435 4608 }
duke@435 4609 }
duke@435 4610 // Debugging Stuff
duke@435 4611 if (_AD._adl_debug > 1) fprintf(stderr, "\tEffect Type: %s\t", ident);
duke@435 4612 skipws();
roland@3316 4613 if (eForm->is(Component::CALL)) {
roland@3316 4614 if (_AD._adl_debug > 1) fprintf(stderr, "\n");
roland@3316 4615 has_call = true;
roland@3316 4616 } else {
roland@3316 4617 // Get name of operand and check that it is in the local name table
roland@3316 4618 if( (ident = get_unique_ident(effects, "effect")) == NULL) {
roland@3316 4619 parse_err(SYNERR, "missing operand identifier in effect list\n");
roland@3316 4620 return;
roland@3316 4621 }
roland@3316 4622 const Form *form = operands[ident];
roland@3316 4623 opForm = form ? form->is_operand() : NULL;
roland@3316 4624 if( opForm == NULL ) {
roland@3316 4625 if( form && form->is_opclass() ) {
roland@3316 4626 const char* cname = form->is_opclass()->_ident;
roland@3316 4627 parse_err(SYNERR, "operand classes are illegal in effect lists (found %s %s)\n", cname, ident);
roland@3316 4628 } else {
roland@3316 4629 parse_err(SYNERR, "undefined operand %s in effect list\n", ident);
roland@3316 4630 }
roland@3316 4631 return;
roland@3316 4632 }
roland@3316 4633 // Add the pair to the effects table
roland@3316 4634 effects.Insert(ident, eForm);
roland@3316 4635 // Debugging Stuff
roland@3316 4636 if (_AD._adl_debug > 1) fprintf(stderr, "\tOperand Name: %s\n", ident);
duke@435 4637 }
duke@435 4638 skipws();
duke@435 4639 } while(_curchar == ',');
duke@435 4640
duke@435 4641 if (_curchar != ')') parse_err(SYNERR, "missing ')'\n");
duke@435 4642 else {
duke@435 4643 next_char(); // set current character position past the close paren
duke@435 4644 }
duke@435 4645 }
duke@435 4646
duke@435 4647
jrose@910 4648 //-------------------------------preproc_line----------------------------------
jrose@910 4649 // A "#line" keyword has been seen, so parse the rest of the line.
jrose@910 4650 void ADLParser::preproc_line(void) {
jrose@910 4651 int line = get_int();
jrose@910 4652 skipws_no_preproc();
jrose@910 4653 const char* file = NULL;
jrose@910 4654 if (_curchar == '"') {
jrose@910 4655 next_char(); // Move past the initial '"'
jrose@910 4656 file = _ptr;
jrose@910 4657 while (true) {
jrose@910 4658 if (_curchar == '\n') {
jrose@910 4659 parse_err(SYNERR, "missing '\"' at end of #line directive");
jrose@910 4660 return;
jrose@910 4661 }
jrose@910 4662 if (_curchar == '"') {
jrose@910 4663 *_ptr = '\0'; // Terminate the string
jrose@910 4664 next_char();
jrose@910 4665 skipws_no_preproc();
jrose@910 4666 break;
jrose@910 4667 }
jrose@910 4668 next_char();
jrose@910 4669 }
jrose@910 4670 }
jrose@910 4671 ensure_end_of_line();
jrose@910 4672 if (file != NULL)
jrose@910 4673 _AD._ADL_file._name = file;
jrose@910 4674 _buf.set_linenum(line);
jrose@910 4675 }
jrose@910 4676
duke@435 4677 //------------------------------preproc_define---------------------------------
duke@435 4678 // A "#define" keyword has been seen, so parse the rest of the line.
duke@435 4679 void ADLParser::preproc_define(void) {
duke@435 4680 char* flag = get_ident_no_preproc();
duke@435 4681 skipws_no_preproc();
duke@435 4682 // only #define x y is supported for now
duke@435 4683 char* def = get_ident_no_preproc();
duke@435 4684 _AD.set_preproc_def(flag, def);
duke@435 4685 skipws_no_preproc();
duke@435 4686 if (_curchar != '\n') {
duke@435 4687 parse_err(SYNERR, "non-identifier in preprocessor definition\n");
duke@435 4688 }
duke@435 4689 }
duke@435 4690
duke@435 4691 //------------------------------preproc_undef----------------------------------
duke@435 4692 // An "#undef" keyword has been seen, so parse the rest of the line.
duke@435 4693 void ADLParser::preproc_undef(void) {
duke@435 4694 char* flag = get_ident_no_preproc();
duke@435 4695 skipws_no_preproc();
duke@435 4696 ensure_end_of_line();
duke@435 4697 _AD.set_preproc_def(flag, NULL);
duke@435 4698 }
duke@435 4699
duke@435 4700
duke@435 4701
duke@435 4702 //------------------------------parse_err--------------------------------------
duke@435 4703 // Issue a parser error message, and skip to the end of the current line
duke@435 4704 void ADLParser::parse_err(int flag, const char *fmt, ...) {
duke@435 4705 va_list args;
duke@435 4706
duke@435 4707 va_start(args, fmt);
duke@435 4708 if (flag == 1)
never@850 4709 _AD._syntax_errs += _AD.emit_msg(0, flag, linenum(), fmt, args);
duke@435 4710 else if (flag == 2)
never@850 4711 _AD._semantic_errs += _AD.emit_msg(0, flag, linenum(), fmt, args);
duke@435 4712 else
never@850 4713 _AD._warnings += _AD.emit_msg(0, flag, linenum(), fmt, args);
duke@435 4714
duke@435 4715 int error_char = _curchar;
duke@435 4716 char* error_ptr = _ptr+1;
duke@435 4717 for(;*_ptr != '\n'; _ptr++) ; // Skip to the end of the current line
duke@435 4718 _curchar = '\n';
duke@435 4719 va_end(args);
duke@435 4720 _AD._no_output = 1;
duke@435 4721
duke@435 4722 if (flag == 1) {
duke@435 4723 char* error_tail = strchr(error_ptr, '\n');
duke@435 4724 char tem = *error_ptr;
duke@435 4725 error_ptr[-1] = '\0';
duke@435 4726 char* error_head = error_ptr-1;
duke@435 4727 while (error_head > _curline && *error_head) --error_head;
duke@435 4728 if (error_tail) *error_tail = '\0';
duke@435 4729 fprintf(stderr, "Error Context: %s>>>%c<<<%s\n",
duke@435 4730 error_head, error_char, error_ptr);
duke@435 4731 if (error_tail) *error_tail = '\n';
duke@435 4732 error_ptr[-1] = tem;
duke@435 4733 }
duke@435 4734 }
duke@435 4735
duke@435 4736 //---------------------------ensure_start_of_line------------------------------
duke@435 4737 // A preprocessor directive has been encountered. Be sure it has fallen at
twisti@1040 4738 // the beginning of a line, or else report an error.
duke@435 4739 void ADLParser::ensure_start_of_line(void) {
jrose@910 4740 if (_curchar == '\n') { next_line(); return; }
duke@435 4741 assert( _ptr >= _curline && _ptr < _curline+strlen(_curline),
duke@435 4742 "Must be able to find which line we are in" );
duke@435 4743
duke@435 4744 for (char *s = _curline; s < _ptr; s++) {
duke@435 4745 if (*s > ' ') {
duke@435 4746 parse_err(SYNERR, "'%c' must be at beginning of line\n", _curchar);
duke@435 4747 break;
duke@435 4748 }
duke@435 4749 }
duke@435 4750 }
duke@435 4751
duke@435 4752 //---------------------------ensure_end_of_line--------------------------------
duke@435 4753 // A preprocessor directive has been parsed. Be sure there is no trailing
duke@435 4754 // garbage at the end of this line. Set the scan point to the beginning of
duke@435 4755 // the next line.
duke@435 4756 void ADLParser::ensure_end_of_line(void) {
duke@435 4757 skipws_no_preproc();
duke@435 4758 if (_curchar != '\n' && _curchar != '\0') {
duke@435 4759 parse_err(SYNERR, "garbage char '%c' at end of line\n", _curchar);
duke@435 4760 } else {
duke@435 4761 next_char_or_line();
duke@435 4762 }
duke@435 4763 }
duke@435 4764
duke@435 4765 //---------------------------handle_preproc------------------------------------
duke@435 4766 // The '#' character introducing a preprocessor directive has been found.
duke@435 4767 // Parse the whole directive name (e.g., #define, #endif) and take appropriate
duke@435 4768 // action. If we are in an "untaken" span of text, simply keep track of
duke@435 4769 // #ifdef nesting structure, so we can find out when to start taking text
duke@435 4770 // again. (In this state, we "sort of support" C's #if directives, enough
duke@435 4771 // to disregard their associated #else and #endif lines.) If we are in a
duke@435 4772 // "taken" span of text, there are two cases: "#define" and "#undef"
duke@435 4773 // directives are preserved and passed up to the caller, which eventually
duke@435 4774 // passes control to the top-level parser loop, which handles #define and
duke@435 4775 // #undef directly. (This prevents these directives from occurring in
duke@435 4776 // arbitrary positions in the AD file--we require better structure than C.)
duke@435 4777 // In the other case, and #ifdef, #ifndef, #else, or #endif is silently
duke@435 4778 // processed as whitespace, with the "taken" state of the text correctly
duke@435 4779 // updated. This routine returns "false" exactly in the case of a "taken"
duke@435 4780 // #define or #undef, which tells the caller that a preprocessor token
duke@435 4781 // has appeared which must be handled explicitly by the parse loop.
duke@435 4782 bool ADLParser::handle_preproc_token() {
duke@435 4783 assert(*_ptr == '#', "must be at start of preproc");
duke@435 4784 ensure_start_of_line();
duke@435 4785 next_char();
duke@435 4786 skipws_no_preproc();
duke@435 4787 char* start_ident = _ptr;
duke@435 4788 char* ident = (_curchar == '\n') ? NULL : get_ident_no_preproc();
duke@435 4789 if (ident == NULL) {
duke@435 4790 parse_err(SYNERR, "expected preprocessor command, got end of line\n");
duke@435 4791 } else if (!strcmp(ident, "ifdef") ||
duke@435 4792 !strcmp(ident, "ifndef")) {
duke@435 4793 char* flag = get_ident_no_preproc();
duke@435 4794 ensure_end_of_line();
duke@435 4795 // Test the identifier only if we are already in taken code:
duke@435 4796 bool flag_def = preproc_taken() && (_AD.get_preproc_def(flag) != NULL);
duke@435 4797 bool now_taken = !strcmp(ident, "ifdef") ? flag_def : !flag_def;
duke@435 4798 begin_if_def(now_taken);
duke@435 4799 } else if (!strcmp(ident, "if")) {
duke@435 4800 if (preproc_taken())
duke@435 4801 parse_err(SYNERR, "unimplemented: #%s %s", ident, _ptr+1);
duke@435 4802 next_line();
duke@435 4803 // Intelligently skip this nested C preprocessor directive:
duke@435 4804 begin_if_def(true);
duke@435 4805 } else if (!strcmp(ident, "else")) {
duke@435 4806 ensure_end_of_line();
duke@435 4807 invert_if_def();
duke@435 4808 } else if (!strcmp(ident, "endif")) {
duke@435 4809 ensure_end_of_line();
duke@435 4810 end_if_def();
duke@435 4811 } else if (preproc_taken()) {
duke@435 4812 // pass this token up to the main parser as "#define" or "#undef"
duke@435 4813 _ptr = start_ident;
duke@435 4814 _curchar = *--_ptr;
duke@435 4815 if( _curchar != '#' ) {
duke@435 4816 parse_err(SYNERR, "no space allowed after # in #define or #undef");
duke@435 4817 assert(_curchar == '#', "no space allowed after # in #define or #undef");
duke@435 4818 }
duke@435 4819 return false;
duke@435 4820 }
duke@435 4821 return true;
duke@435 4822 }
duke@435 4823
duke@435 4824 //---------------------------skipws_common-------------------------------------
duke@435 4825 // Skip whitespace, including comments and newlines, while keeping an accurate
duke@435 4826 // line count.
duke@435 4827 // Maybe handle certain preprocessor constructs: #ifdef, #ifndef, #else, #endif
duke@435 4828 void ADLParser::skipws_common(bool do_preproc) {
duke@435 4829 char *start = _ptr;
duke@435 4830 char *next = _ptr + 1;
duke@435 4831
duke@435 4832 if (*_ptr == '\0') {
duke@435 4833 // Check for string terminator
duke@435 4834 if (_curchar > ' ') return;
duke@435 4835 if (_curchar == '\n') {
duke@435 4836 if (!do_preproc) return; // let caller handle the newline
duke@435 4837 next_line();
duke@435 4838 _ptr = _curline; next = _ptr + 1;
duke@435 4839 }
duke@435 4840 else if (_curchar == '#' ||
duke@435 4841 (_curchar == '/' && (*next == '/' || *next == '*'))) {
duke@435 4842 parse_err(SYNERR, "unimplemented: comment token in a funny place");
duke@435 4843 }
duke@435 4844 }
duke@435 4845 while(_curline != NULL) { // Check for end of file
duke@435 4846 if (*_ptr == '\n') { // keep proper track of new lines
duke@435 4847 if (!do_preproc) break; // let caller handle the newline
duke@435 4848 next_line();
duke@435 4849 _ptr = _curline; next = _ptr + 1;
duke@435 4850 }
duke@435 4851 else if ((*_ptr == '/') && (*next == '/')) // C++ comment
duke@435 4852 do { _ptr++; next++; } while(*_ptr != '\n'); // So go to end of line
duke@435 4853 else if ((*_ptr == '/') && (*next == '*')) { // C comment
duke@435 4854 _ptr++; next++;
duke@435 4855 do {
duke@435 4856 _ptr++; next++;
duke@435 4857 if (*_ptr == '\n') { // keep proper track of new lines
duke@435 4858 next_line(); // skip newlines within comments
duke@435 4859 if (_curline == NULL) { // check for end of file
duke@435 4860 parse_err(SYNERR, "end-of-file detected inside comment\n");
duke@435 4861 break;
duke@435 4862 }
duke@435 4863 _ptr = _curline; next = _ptr + 1;
duke@435 4864 }
duke@435 4865 } while(!((*_ptr == '*') && (*next == '/'))); // Go to end of comment
duke@435 4866 _ptr = ++next; next++; // increment _ptr past comment end
duke@435 4867 }
duke@435 4868 else if (do_preproc && *_ptr == '#') {
duke@435 4869 // Note that this calls skipws_common(false) recursively!
duke@435 4870 bool preproc_handled = handle_preproc_token();
duke@435 4871 if (!preproc_handled) {
duke@435 4872 if (preproc_taken()) {
duke@435 4873 return; // short circuit
duke@435 4874 }
duke@435 4875 ++_ptr; // skip the preprocessor character
duke@435 4876 }
duke@435 4877 next = _ptr+1;
duke@435 4878 } else if(*_ptr > ' ' && !(do_preproc && !preproc_taken())) {
duke@435 4879 break;
duke@435 4880 }
duke@435 4881 else if (*_ptr == '"' || *_ptr == '\'') {
duke@435 4882 assert(do_preproc, "only skip strings if doing preproc");
duke@435 4883 // skip untaken quoted string
duke@435 4884 int qchar = *_ptr;
duke@435 4885 while (true) {
duke@435 4886 ++_ptr;
duke@435 4887 if (*_ptr == qchar) { ++_ptr; break; }
duke@435 4888 if (*_ptr == '\\') ++_ptr;
duke@435 4889 if (*_ptr == '\n' || *_ptr == '\0') {
duke@435 4890 parse_err(SYNERR, "newline in string");
duke@435 4891 break;
duke@435 4892 }
duke@435 4893 }
duke@435 4894 next = _ptr + 1;
duke@435 4895 }
duke@435 4896 else { ++_ptr; ++next; }
duke@435 4897 }
duke@435 4898 if( _curline != NULL ) // at end of file _curchar isn't valid
duke@435 4899 _curchar = *_ptr; // reset _curchar to maintain invariant
duke@435 4900 }
duke@435 4901
duke@435 4902 //---------------------------cur_char-----------------------------------------
duke@435 4903 char ADLParser::cur_char() {
duke@435 4904 return (_curchar);
duke@435 4905 }
duke@435 4906
duke@435 4907 //---------------------------next_char-----------------------------------------
duke@435 4908 void ADLParser::next_char() {
jrose@910 4909 if (_curchar == '\n') parse_err(WARN, "must call next_line!");
duke@435 4910 _curchar = *++_ptr;
duke@435 4911 // if ( _curchar == '\n' ) {
duke@435 4912 // next_line();
duke@435 4913 // }
duke@435 4914 }
duke@435 4915
duke@435 4916 //---------------------------next_char_or_line---------------------------------
duke@435 4917 void ADLParser::next_char_or_line() {
duke@435 4918 if ( _curchar != '\n' ) {
duke@435 4919 _curchar = *++_ptr;
duke@435 4920 } else {
duke@435 4921 next_line();
duke@435 4922 _ptr = _curline;
duke@435 4923 _curchar = *_ptr; // maintain invariant
duke@435 4924 }
duke@435 4925 }
duke@435 4926
duke@435 4927 //---------------------------next_line-----------------------------------------
duke@435 4928 void ADLParser::next_line() {
never@850 4929 _curline = _buf.get_line();
jrose@910 4930 _curchar = ' ';
jrose@910 4931 }
jrose@910 4932
jrose@910 4933 //------------------------get_line_string--------------------------------------
jrose@910 4934 // Prepended location descriptor, for debugging.
jrose@910 4935 // Must return a malloced string (that can be freed if desired).
jrose@910 4936 char* ADLParser::get_line_string(int linenum) {
jrose@910 4937 const char* file = _AD._ADL_file._name;
jrose@910 4938 int line = linenum ? linenum : this->linenum();
jrose@910 4939 char* location = (char *)malloc(strlen(file) + 100);
jrose@910 4940 sprintf(location, "\n#line %d \"%s\"\n", line, file);
jrose@910 4941 return location;
duke@435 4942 }
duke@435 4943
duke@435 4944 //-------------------------is_literal_constant---------------------------------
duke@435 4945 bool ADLParser::is_literal_constant(const char *param) {
duke@435 4946 if (param[0] == 0) return false; // null string
duke@435 4947 if (param[0] == '(') return true; // parenthesized expression
duke@435 4948 if (param[0] == '0' && (param[1] == 'x' || param[1] == 'X')) {
duke@435 4949 // Make sure it's a hex constant.
duke@435 4950 int i = 2;
duke@435 4951 do {
duke@435 4952 if( !ADLParser::is_hex_digit(*(param+i)) ) return false;
duke@435 4953 ++i;
duke@435 4954 } while( *(param+i) != 0 );
duke@435 4955 return true;
duke@435 4956 }
duke@435 4957 return false;
duke@435 4958 }
duke@435 4959
duke@435 4960 //---------------------------is_hex_digit--------------------------------------
duke@435 4961 bool ADLParser::is_hex_digit(char digit) {
duke@435 4962 return ((digit >= '0') && (digit <= '9'))
duke@435 4963 ||((digit >= 'a') && (digit <= 'f'))
duke@435 4964 ||((digit >= 'A') && (digit <= 'F'));
duke@435 4965 }
duke@435 4966
duke@435 4967 //---------------------------is_int_token--------------------------------------
duke@435 4968 bool ADLParser::is_int_token(const char* token, int& intval) {
duke@435 4969 const char* cp = token;
duke@435 4970 while (*cp != '\0' && *cp <= ' ') cp++;
duke@435 4971 if (*cp == '-') cp++;
duke@435 4972 int ndigit = 0;
duke@435 4973 while (*cp >= '0' && *cp <= '9') { cp++; ndigit++; }
duke@435 4974 while (*cp != '\0' && *cp <= ' ') cp++;
duke@435 4975 if (ndigit == 0 || *cp != '\0') {
duke@435 4976 return false;
duke@435 4977 }
duke@435 4978 intval = atoi(token);
duke@435 4979 return true;
duke@435 4980 }
duke@435 4981
jrose@910 4982 static const char* skip_expr_ws(const char* str) {
jrose@910 4983 const char * cp = str;
jrose@910 4984 while (cp[0]) {
jrose@910 4985 if (cp[0] <= ' ') {
jrose@910 4986 ++cp;
jrose@910 4987 } else if (cp[0] == '#') {
jrose@910 4988 ++cp;
jrose@910 4989 while (cp[0] == ' ') ++cp;
jrose@910 4990 assert(0 == strncmp(cp, "line", 4), "must be a #line directive");
jrose@910 4991 const char* eol = strchr(cp, '\n');
jrose@910 4992 assert(eol != NULL, "must find end of line");
jrose@910 4993 if (eol == NULL) eol = cp + strlen(cp);
jrose@910 4994 cp = eol;
jrose@910 4995 } else {
jrose@910 4996 break;
jrose@910 4997 }
jrose@910 4998 }
jrose@910 4999 return cp;
jrose@910 5000 }
jrose@910 5001
jrose@910 5002 //-----------------------equivalent_expressions--------------------------------
jrose@910 5003 bool ADLParser::equivalent_expressions(const char* str1, const char* str2) {
jrose@910 5004 if (str1 == str2)
jrose@910 5005 return true;
jrose@910 5006 else if (str1 == NULL || str2 == NULL)
jrose@910 5007 return false;
jrose@910 5008 const char* cp1 = str1;
jrose@910 5009 const char* cp2 = str2;
jrose@910 5010 char in_quote = '\0';
jrose@910 5011 while (cp1[0] && cp2[0]) {
jrose@910 5012 if (!in_quote) {
jrose@910 5013 // skip spaces and/or cpp directives
jrose@910 5014 const char* cp1a = skip_expr_ws(cp1);
jrose@910 5015 const char* cp2a = skip_expr_ws(cp2);
jrose@910 5016 if (cp1a > cp1 && cp2a > cp2) {
jrose@910 5017 cp1 = cp1a; cp2 = cp2a;
jrose@910 5018 continue;
jrose@910 5019 }
jrose@910 5020 if (cp1a > cp1 || cp2a > cp2) break; // fail
jrose@910 5021 }
jrose@910 5022 // match one non-space char
jrose@910 5023 if (cp1[0] != cp2[0]) break; // fail
jrose@910 5024 char ch = cp1[0];
jrose@910 5025 cp1++; cp2++;
jrose@910 5026 // watch for quotes
jrose@910 5027 if (in_quote && ch == '\\') {
jrose@910 5028 if (cp1[0] != cp2[0]) break; // fail
jrose@910 5029 if (!cp1[0]) break;
jrose@910 5030 cp1++; cp2++;
jrose@910 5031 }
jrose@910 5032 if (in_quote && ch == in_quote) {
jrose@910 5033 in_quote = '\0';
jrose@910 5034 } else if (!in_quote && (ch == '"' || ch == '\'')) {
jrose@910 5035 in_quote = ch;
jrose@910 5036 }
jrose@910 5037 }
jrose@910 5038 return (!cp1[0] && !cp2[0]);
jrose@910 5039 }
jrose@910 5040
jrose@910 5041
duke@435 5042 //-------------------------------trim------------------------------------------
duke@435 5043 void ADLParser::trim(char* &token) {
duke@435 5044 while (*token <= ' ') token++;
duke@435 5045 char* end = token + strlen(token);
duke@435 5046 while (end > token && *(end-1) <= ' ') --end;
duke@435 5047 *end = '\0';
duke@435 5048 }

mercurial