Lines Matching refs:opcode

1989           // Instruction provided an opcode: "primary", "secondary", "tertiary"
2398 // Missing opcode
2400 "Missing $%s opcode definition in %s, used by encoding %s\n",
2454 // Missing opcode
2456 "Missing $%s opcode definition in %s\n",
2995 fprintf(fp,"uint %sOper::opcode() const { return %s; }\n",
3014 fprintf(fp,"uint %sOper::opcode() const { return %s; }\n",
3357 void map(OperandForm &oper) { // Generate the entry for this opcode
3411 // Generate the entry for this opcode
3683 // Generate the case statement for this opcode
3715 fprintf(fp_cpp, "(int opcode, Compile* C)");
3718 fprintf(fp_cpp, " switch(opcode) {\n");
3738 // Generate the case statement for this opcode
3743 // Generate the default case for switch(opcode)
3747 fprintf(fp_cpp, " fprintf(stderr, \" opcode = %cd\\n\", opcode);\n", '%');
3786 // with the enum for the opcode that needs to be built.
3789 const char *opcode = machOperEnum(comp->_type);
3791 fprintf(fp_cpp, "MachOperGenerator(%s, C));\n", opcode);
3950 // Build switch to invoke appropriate "new" MachNode for an opcode
3963 fprintf(fp_cpp, "(int opcode, Compile* C)");
3965 fprintf(fp_cpp, " switch(opcode) {\n");
3975 int opcode = opIndex++;
3991 // Generate the default case for switch(opcode)
3995 fprintf(fp_cpp, " fprintf(stderr, \" opcode = %cd\\n\", opcode);\n", '%');
4010 fprintf(fp_cpp, "const bool Matcher::has_match_rule(int opcode) {\n");
4011 fprintf(fp_cpp, " assert(_last_machine_leaf < opcode && opcode < _last_opcode, \"opcode in range\");\n");
4012 fprintf(fp_cpp, " return _hasMatchRule[opcode];\n");