src/share/vm/adlc/adlparse.cpp

Fri, 27 Sep 2013 08:39:19 +0200

author
rbackman
date
Fri, 27 Sep 2013 08:39:19 +0200
changeset 5791
c9ccd7b85f20
parent 4537
39901f2f1abe
child 6198
55fb97c4c58d
child 6478
044b28168e20
permissions
-rw-r--r--

8024924: Intrinsify java.lang.Math.addExact
Reviewed-by: kvn, twisti

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

mercurial