src/share/vm/adlc/output_h.cpp

Thu, 19 Sep 2013 17:31:42 +0200

author
goetz
date
Thu, 19 Sep 2013 17:31:42 +0200
changeset 6469
7373e44fa207
parent 4906
705ef39fcaa9
child 6472
2b8e28fdf503
permissions
-rw-r--r--

8024922: PPC64 (part 116): Extend adlc to generate fields into nodes.
Summary: Similar to specifying functions returning constants (as ins_avoid_back_to_back()) adlc now accepts specifications with prefix ins_field_xxx(tp) and adds field xxx of type tp to the node.
Reviewed-by: kvn

duke@435 1 /*
coleenp@4037 2 * Copyright (c) 1998, 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 // output_h.cpp - Class HPP file output routines for architecture definition
duke@435 26 #include "adlc.hpp"
duke@435 27
kvn@4161 28 // The comment delimiter used in format statements after assembler instructions.
kvn@4161 29 #define commentSeperator "!"
duke@435 30
duke@435 31 // Generate the #define that describes the number of registers.
duke@435 32 static void defineRegCount(FILE *fp, RegisterForm *registers) {
duke@435 33 if (registers) {
duke@435 34 int regCount = AdlcVMDeps::Physical + registers->_rdefs.count();
duke@435 35 fprintf(fp,"\n");
duke@435 36 fprintf(fp,"// the number of reserved registers + machine registers.\n");
duke@435 37 fprintf(fp,"#define REG_COUNT %d\n", regCount);
duke@435 38 }
duke@435 39 }
duke@435 40
duke@435 41 // Output enumeration of machine register numbers
duke@435 42 // (1)
duke@435 43 // // Enumerate machine registers starting after reserved regs.
duke@435 44 // // in the order of occurrence in the register block.
duke@435 45 // enum MachRegisterNumbers {
duke@435 46 // EAX_num = 0,
duke@435 47 // ...
duke@435 48 // _last_Mach_Reg
duke@435 49 // }
duke@435 50 void ArchDesc::buildMachRegisterNumbers(FILE *fp_hpp) {
duke@435 51 if (_register) {
duke@435 52 RegDef *reg_def = NULL;
duke@435 53
duke@435 54 // Output a #define for the number of machine registers
duke@435 55 defineRegCount(fp_hpp, _register);
duke@435 56
duke@435 57 // Count all the Save_On_Entry and Always_Save registers
duke@435 58 int saved_on_entry = 0;
duke@435 59 int c_saved_on_entry = 0;
duke@435 60 _register->reset_RegDefs();
duke@435 61 while( (reg_def = _register->iter_RegDefs()) != NULL ) {
duke@435 62 if( strcmp(reg_def->_callconv,"SOE") == 0 ||
duke@435 63 strcmp(reg_def->_callconv,"AS") == 0 ) ++saved_on_entry;
duke@435 64 if( strcmp(reg_def->_c_conv,"SOE") == 0 ||
duke@435 65 strcmp(reg_def->_c_conv,"AS") == 0 ) ++c_saved_on_entry;
duke@435 66 }
duke@435 67 fprintf(fp_hpp, "\n");
duke@435 68 fprintf(fp_hpp, "// the number of save_on_entry + always_saved registers.\n");
duke@435 69 fprintf(fp_hpp, "#define MAX_SAVED_ON_ENTRY_REG_COUNT %d\n", max(saved_on_entry,c_saved_on_entry));
duke@435 70 fprintf(fp_hpp, "#define SAVED_ON_ENTRY_REG_COUNT %d\n", saved_on_entry);
duke@435 71 fprintf(fp_hpp, "#define C_SAVED_ON_ENTRY_REG_COUNT %d\n", c_saved_on_entry);
duke@435 72
duke@435 73 // (1)
duke@435 74 // Build definition for enumeration of register numbers
duke@435 75 fprintf(fp_hpp, "\n");
duke@435 76 fprintf(fp_hpp, "// Enumerate machine register numbers starting after reserved regs.\n");
duke@435 77 fprintf(fp_hpp, "// in the order of occurrence in the register block.\n");
duke@435 78 fprintf(fp_hpp, "enum MachRegisterNumbers {\n");
duke@435 79
duke@435 80 // Output the register number for each register in the allocation classes
duke@435 81 _register->reset_RegDefs();
duke@435 82 int i = 0;
duke@435 83 while( (reg_def = _register->iter_RegDefs()) != NULL ) {
kvn@4161 84 fprintf(fp_hpp," %s_num,", reg_def->_regname);
kvn@4161 85 for (int j = 0; j < 20-(int)strlen(reg_def->_regname); j++) fprintf(fp_hpp, " ");
kvn@4161 86 fprintf(fp_hpp," // enum %3d, regnum %3d, reg encode %3s\n",
kvn@4161 87 i++,
kvn@4161 88 reg_def->register_num(),
kvn@4161 89 reg_def->register_encode());
duke@435 90 }
duke@435 91 // Finish defining enumeration
kvn@4161 92 fprintf(fp_hpp, " _last_Mach_Reg // %d\n", i);
duke@435 93 fprintf(fp_hpp, "};\n");
duke@435 94 }
duke@435 95
duke@435 96 fprintf(fp_hpp, "\n// Size of register-mask in ints\n");
duke@435 97 fprintf(fp_hpp, "#define RM_SIZE %d\n",RegisterForm::RegMask_Size());
duke@435 98 fprintf(fp_hpp, "// Unroll factor for loops over the data in a RegMask\n");
duke@435 99 fprintf(fp_hpp, "#define FORALL_BODY ");
duke@435 100 int len = RegisterForm::RegMask_Size();
duke@435 101 for( int i = 0; i < len; i++ )
duke@435 102 fprintf(fp_hpp, "BODY(%d) ",i);
duke@435 103 fprintf(fp_hpp, "\n\n");
duke@435 104
duke@435 105 fprintf(fp_hpp,"class RegMask;\n");
duke@435 106 // All RegMasks are declared "extern const ..." in ad_<arch>.hpp
duke@435 107 // fprintf(fp_hpp,"extern RegMask STACK_OR_STACK_SLOTS_mask;\n\n");
duke@435 108 }
duke@435 109
duke@435 110
duke@435 111 // Output enumeration of machine register encodings
duke@435 112 // (2)
duke@435 113 // // Enumerate machine registers starting after reserved regs.
duke@435 114 // // in the order of occurrence in the alloc_class(es).
duke@435 115 // enum MachRegisterEncodes {
duke@435 116 // EAX_enc = 0x00,
duke@435 117 // ...
duke@435 118 // }
duke@435 119 void ArchDesc::buildMachRegisterEncodes(FILE *fp_hpp) {
duke@435 120 if (_register) {
duke@435 121 RegDef *reg_def = NULL;
duke@435 122 RegDef *reg_def_next = NULL;
duke@435 123
duke@435 124 // (2)
duke@435 125 // Build definition for enumeration of encode values
duke@435 126 fprintf(fp_hpp, "\n");
duke@435 127 fprintf(fp_hpp, "// Enumerate machine registers starting after reserved regs.\n");
duke@435 128 fprintf(fp_hpp, "// in the order of occurrence in the alloc_class(es).\n");
duke@435 129 fprintf(fp_hpp, "enum MachRegisterEncodes {\n");
duke@435 130
kvn@4161 131 // Find max enum string length.
kvn@4161 132 size_t maxlen = 0;
kvn@4161 133 _register->reset_RegDefs();
kvn@4161 134 reg_def = _register->iter_RegDefs();
kvn@4161 135 while (reg_def != NULL) {
kvn@4161 136 size_t len = strlen(reg_def->_regname);
kvn@4161 137 if (len > maxlen) maxlen = len;
kvn@4161 138 reg_def = _register->iter_RegDefs();
kvn@4161 139 }
kvn@4161 140
duke@435 141 // Output the register encoding for each register in the allocation classes
duke@435 142 _register->reset_RegDefs();
duke@435 143 reg_def_next = _register->iter_RegDefs();
duke@435 144 while( (reg_def = reg_def_next) != NULL ) {
duke@435 145 reg_def_next = _register->iter_RegDefs();
kvn@4161 146 fprintf(fp_hpp," %s_enc", reg_def->_regname);
kvn@4161 147 for (size_t i = strlen(reg_def->_regname); i < maxlen; i++) fprintf(fp_hpp, " ");
kvn@4161 148 fprintf(fp_hpp," = %3s%s\n", reg_def->register_encode(), reg_def_next == NULL? "" : "," );
duke@435 149 }
duke@435 150 // Finish defining enumeration
duke@435 151 fprintf(fp_hpp, "};\n");
duke@435 152
duke@435 153 } // Done with register form
duke@435 154 }
duke@435 155
duke@435 156
duke@435 157 // Declare an array containing the machine register names, strings.
duke@435 158 static void declareRegNames(FILE *fp, RegisterForm *registers) {
duke@435 159 if (registers) {
duke@435 160 // fprintf(fp,"\n");
duke@435 161 // fprintf(fp,"// An array of character pointers to machine register names.\n");
duke@435 162 // fprintf(fp,"extern const char *regName[];\n");
duke@435 163 }
duke@435 164 }
duke@435 165
duke@435 166 // Declare an array containing the machine register sizes in 32-bit words.
duke@435 167 void ArchDesc::declareRegSizes(FILE *fp) {
duke@435 168 // regSize[] is not used
duke@435 169 }
duke@435 170
duke@435 171 // Declare an array containing the machine register encoding values
duke@435 172 static void declareRegEncodes(FILE *fp, RegisterForm *registers) {
duke@435 173 if (registers) {
duke@435 174 // // //
duke@435 175 // fprintf(fp,"\n");
duke@435 176 // fprintf(fp,"// An array containing the machine register encode values\n");
duke@435 177 // fprintf(fp,"extern const char regEncode[];\n");
duke@435 178 }
duke@435 179 }
duke@435 180
duke@435 181
duke@435 182 // ---------------------------------------------------------------------------
duke@435 183 //------------------------------Utilities to build Instruction Classes--------
duke@435 184 // ---------------------------------------------------------------------------
duke@435 185 static void out_RegMask(FILE *fp) {
duke@435 186 fprintf(fp," virtual const RegMask &out_RegMask() const;\n");
duke@435 187 }
duke@435 188
duke@435 189 // ---------------------------------------------------------------------------
duke@435 190 //--------Utilities to build MachOper and MachNode derived Classes------------
duke@435 191 // ---------------------------------------------------------------------------
duke@435 192
duke@435 193 //------------------------------Utilities to build Operand Classes------------
duke@435 194 static void in_RegMask(FILE *fp) {
duke@435 195 fprintf(fp," virtual const RegMask *in_RegMask(int index) const;\n");
duke@435 196 }
duke@435 197
duke@435 198 static void declareConstStorage(FILE *fp, FormDict &globals, OperandForm *oper) {
duke@435 199 int i = 0;
duke@435 200 Component *comp;
duke@435 201
duke@435 202 if (oper->num_consts(globals) == 0) return;
duke@435 203 // Iterate over the component list looking for constants
duke@435 204 oper->_components.reset();
duke@435 205 if ((comp = oper->_components.iter()) == NULL) {
duke@435 206 assert(oper->num_consts(globals) == 1, "Bad component list detected.\n");
duke@435 207 const char *type = oper->ideal_type(globals);
duke@435 208 if (!strcmp(type, "ConI")) {
duke@435 209 if (i > 0) fprintf(fp,", ");
duke@435 210 fprintf(fp," int32 _c%d;\n", i);
duke@435 211 }
duke@435 212 else if (!strcmp(type, "ConP")) {
duke@435 213 if (i > 0) fprintf(fp,", ");
duke@435 214 fprintf(fp," const TypePtr *_c%d;\n", i);
duke@435 215 }
coleenp@548 216 else if (!strcmp(type, "ConN")) {
coleenp@548 217 if (i > 0) fprintf(fp,", ");
coleenp@548 218 fprintf(fp," const TypeNarrowOop *_c%d;\n", i);
coleenp@548 219 }
roland@4159 220 else if (!strcmp(type, "ConNKlass")) {
roland@4159 221 if (i > 0) fprintf(fp,", ");
roland@4159 222 fprintf(fp," const TypeNarrowKlass *_c%d;\n", i);
roland@4159 223 }
duke@435 224 else if (!strcmp(type, "ConL")) {
duke@435 225 if (i > 0) fprintf(fp,", ");
duke@435 226 fprintf(fp," jlong _c%d;\n", i);
duke@435 227 }
duke@435 228 else if (!strcmp(type, "ConF")) {
duke@435 229 if (i > 0) fprintf(fp,", ");
duke@435 230 fprintf(fp," jfloat _c%d;\n", i);
duke@435 231 }
duke@435 232 else if (!strcmp(type, "ConD")) {
duke@435 233 if (i > 0) fprintf(fp,", ");
duke@435 234 fprintf(fp," jdouble _c%d;\n", i);
duke@435 235 }
duke@435 236 else if (!strcmp(type, "Bool")) {
duke@435 237 fprintf(fp,"private:\n");
duke@435 238 fprintf(fp," BoolTest::mask _c%d;\n", i);
duke@435 239 fprintf(fp,"public:\n");
duke@435 240 }
duke@435 241 else {
duke@435 242 assert(0, "Non-constant operand lacks component list.");
duke@435 243 }
duke@435 244 } // end if NULL
duke@435 245 else {
duke@435 246 oper->_components.reset();
duke@435 247 while ((comp = oper->_components.iter()) != NULL) {
duke@435 248 if (!strcmp(comp->base_type(globals), "ConI")) {
duke@435 249 fprintf(fp," jint _c%d;\n", i);
duke@435 250 i++;
duke@435 251 }
duke@435 252 else if (!strcmp(comp->base_type(globals), "ConP")) {
duke@435 253 fprintf(fp," const TypePtr *_c%d;\n", i);
duke@435 254 i++;
duke@435 255 }
coleenp@548 256 else if (!strcmp(comp->base_type(globals), "ConN")) {
coleenp@548 257 fprintf(fp," const TypePtr *_c%d;\n", i);
coleenp@548 258 i++;
coleenp@548 259 }
roland@4159 260 else if (!strcmp(comp->base_type(globals), "ConNKlass")) {
roland@4159 261 fprintf(fp," const TypePtr *_c%d;\n", i);
roland@4159 262 i++;
roland@4159 263 }
duke@435 264 else if (!strcmp(comp->base_type(globals), "ConL")) {
duke@435 265 fprintf(fp," jlong _c%d;\n", i);
duke@435 266 i++;
duke@435 267 }
duke@435 268 else if (!strcmp(comp->base_type(globals), "ConF")) {
duke@435 269 fprintf(fp," jfloat _c%d;\n", i);
duke@435 270 i++;
duke@435 271 }
duke@435 272 else if (!strcmp(comp->base_type(globals), "ConD")) {
duke@435 273 fprintf(fp," jdouble _c%d;\n", i);
duke@435 274 i++;
duke@435 275 }
duke@435 276 }
duke@435 277 }
duke@435 278 }
duke@435 279
duke@435 280 // Declare constructor.
duke@435 281 // Parameters start with condition code, then all other constants
duke@435 282 //
duke@435 283 // (0) public:
duke@435 284 // (1) MachXOper(int32 ccode, int32 c0, int32 c1, ..., int32 cn)
duke@435 285 // (2) : _ccode(ccode), _c0(c0), _c1(c1), ..., _cn(cn) { }
duke@435 286 //
duke@435 287 static void defineConstructor(FILE *fp, const char *name, uint num_consts,
duke@435 288 ComponentList &lst, bool is_ideal_bool,
duke@435 289 Form::DataType constant_type, FormDict &globals) {
duke@435 290 fprintf(fp,"public:\n");
duke@435 291 // generate line (1)
duke@435 292 fprintf(fp," %sOper(", name);
duke@435 293 if( num_consts == 0 ) {
duke@435 294 fprintf(fp,") {}\n");
duke@435 295 return;
duke@435 296 }
duke@435 297
duke@435 298 // generate parameters for constants
duke@435 299 uint i = 0;
duke@435 300 Component *comp;
duke@435 301 lst.reset();
duke@435 302 if ((comp = lst.iter()) == NULL) {
duke@435 303 assert(num_consts == 1, "Bad component list detected.\n");
duke@435 304 switch( constant_type ) {
duke@435 305 case Form::idealI : {
duke@435 306 fprintf(fp,is_ideal_bool ? "BoolTest::mask c%d" : "int32 c%d", i);
duke@435 307 break;
duke@435 308 }
roland@4159 309 case Form::idealN : { fprintf(fp,"const TypeNarrowOop *c%d", i); break; }
roland@4159 310 case Form::idealNKlass : { fprintf(fp,"const TypeNarrowKlass *c%d", i); break; }
roland@4159 311 case Form::idealP : { fprintf(fp,"const TypePtr *c%d", i); break; }
roland@4159 312 case Form::idealL : { fprintf(fp,"jlong c%d", i); break; }
roland@4159 313 case Form::idealF : { fprintf(fp,"jfloat c%d", i); break; }
roland@4159 314 case Form::idealD : { fprintf(fp,"jdouble c%d", i); break; }
duke@435 315 default:
duke@435 316 assert(!is_ideal_bool, "Non-constant operand lacks component list.");
duke@435 317 break;
duke@435 318 }
duke@435 319 } // end if NULL
duke@435 320 else {
duke@435 321 lst.reset();
duke@435 322 while((comp = lst.iter()) != NULL) {
duke@435 323 if (!strcmp(comp->base_type(globals), "ConI")) {
duke@435 324 if (i > 0) fprintf(fp,", ");
duke@435 325 fprintf(fp,"int32 c%d", i);
duke@435 326 i++;
duke@435 327 }
duke@435 328 else if (!strcmp(comp->base_type(globals), "ConP")) {
duke@435 329 if (i > 0) fprintf(fp,", ");
duke@435 330 fprintf(fp,"const TypePtr *c%d", i);
duke@435 331 i++;
duke@435 332 }
coleenp@548 333 else if (!strcmp(comp->base_type(globals), "ConN")) {
coleenp@548 334 if (i > 0) fprintf(fp,", ");
coleenp@548 335 fprintf(fp,"const TypePtr *c%d", i);
coleenp@548 336 i++;
coleenp@548 337 }
roland@4159 338 else if (!strcmp(comp->base_type(globals), "ConNKlass")) {
roland@4159 339 if (i > 0) fprintf(fp,", ");
roland@4159 340 fprintf(fp,"const TypePtr *c%d", i);
roland@4159 341 i++;
roland@4159 342 }
duke@435 343 else if (!strcmp(comp->base_type(globals), "ConL")) {
duke@435 344 if (i > 0) fprintf(fp,", ");
duke@435 345 fprintf(fp,"jlong c%d", i);
duke@435 346 i++;
duke@435 347 }
duke@435 348 else if (!strcmp(comp->base_type(globals), "ConF")) {
duke@435 349 if (i > 0) fprintf(fp,", ");
duke@435 350 fprintf(fp,"jfloat c%d", i);
duke@435 351 i++;
duke@435 352 }
duke@435 353 else if (!strcmp(comp->base_type(globals), "ConD")) {
duke@435 354 if (i > 0) fprintf(fp,", ");
duke@435 355 fprintf(fp,"jdouble c%d", i);
duke@435 356 i++;
duke@435 357 }
duke@435 358 else if (!strcmp(comp->base_type(globals), "Bool")) {
duke@435 359 if (i > 0) fprintf(fp,", ");
duke@435 360 fprintf(fp,"BoolTest::mask c%d", i);
duke@435 361 i++;
duke@435 362 }
duke@435 363 }
duke@435 364 }
duke@435 365 // finish line (1) and start line (2)
duke@435 366 fprintf(fp,") : ");
duke@435 367 // generate initializers for constants
duke@435 368 i = 0;
duke@435 369 fprintf(fp,"_c%d(c%d)", i, i);
duke@435 370 for( i = 1; i < num_consts; ++i) {
duke@435 371 fprintf(fp,", _c%d(c%d)", i, i);
duke@435 372 }
duke@435 373 // The body for the constructor is empty
duke@435 374 fprintf(fp," {}\n");
duke@435 375 }
duke@435 376
duke@435 377 // ---------------------------------------------------------------------------
duke@435 378 // Utilities to generate format rules for machine operands and instructions
duke@435 379 // ---------------------------------------------------------------------------
duke@435 380
duke@435 381 // Generate the format rule for condition codes
never@850 382 static void defineCCodeDump(OperandForm* oper, FILE *fp, int i) {
never@850 383 assert(oper != NULL, "what");
never@850 384 CondInterface* cond = oper->_interface->is_CondInterface();
kvn@4161 385 fprintf(fp, " if( _c%d == BoolTest::eq ) st->print(\"%s\");\n",i,cond->_equal_format);
kvn@4161 386 fprintf(fp, " else if( _c%d == BoolTest::ne ) st->print(\"%s\");\n",i,cond->_not_equal_format);
kvn@4161 387 fprintf(fp, " else if( _c%d == BoolTest::le ) st->print(\"%s\");\n",i,cond->_less_equal_format);
kvn@4161 388 fprintf(fp, " else if( _c%d == BoolTest::ge ) st->print(\"%s\");\n",i,cond->_greater_equal_format);
kvn@4161 389 fprintf(fp, " else if( _c%d == BoolTest::lt ) st->print(\"%s\");\n",i,cond->_less_format);
kvn@4161 390 fprintf(fp, " else if( _c%d == BoolTest::gt ) st->print(\"%s\");\n",i,cond->_greater_format);
duke@435 391 }
duke@435 392
duke@435 393 // Output code that dumps constant values, increment "i" if type is constant
never@850 394 static uint dump_spec_constant(FILE *fp, const char *ideal_type, uint i, OperandForm* oper) {
duke@435 395 if (!strcmp(ideal_type, "ConI")) {
duke@435 396 fprintf(fp," st->print(\"#%%d\", _c%d);\n", i);
kvn@4161 397 fprintf(fp," st->print(\"/0x%%08x\", _c%d);\n", i);
duke@435 398 ++i;
duke@435 399 }
duke@435 400 else if (!strcmp(ideal_type, "ConP")) {
duke@435 401 fprintf(fp," _c%d->dump_on(st);\n", i);
duke@435 402 ++i;
duke@435 403 }
coleenp@548 404 else if (!strcmp(ideal_type, "ConN")) {
never@852 405 fprintf(fp," _c%d->dump_on(st);\n", i);
coleenp@548 406 ++i;
coleenp@548 407 }
roland@4159 408 else if (!strcmp(ideal_type, "ConNKlass")) {
roland@4159 409 fprintf(fp," _c%d->dump_on(st);\n", i);
roland@4159 410 ++i;
roland@4159 411 }
duke@435 412 else if (!strcmp(ideal_type, "ConL")) {
duke@435 413 fprintf(fp," st->print(\"#\" INT64_FORMAT, _c%d);\n", i);
kvn@4161 414 fprintf(fp," st->print(\"/\" PTR64_FORMAT, _c%d);\n", i);
duke@435 415 ++i;
duke@435 416 }
duke@435 417 else if (!strcmp(ideal_type, "ConF")) {
duke@435 418 fprintf(fp," st->print(\"#%%f\", _c%d);\n", i);
kvn@4161 419 fprintf(fp," jint _c%di = JavaValue(_c%d).get_jint();\n", i, i);
kvn@4161 420 fprintf(fp," st->print(\"/0x%%x/\", _c%di);\n", i);
duke@435 421 ++i;
duke@435 422 }
duke@435 423 else if (!strcmp(ideal_type, "ConD")) {
duke@435 424 fprintf(fp," st->print(\"#%%f\", _c%d);\n", i);
kvn@4161 425 fprintf(fp," jlong _c%dl = JavaValue(_c%d).get_jlong();\n", i, i);
kvn@4161 426 fprintf(fp," st->print(\"/\" PTR64_FORMAT, _c%dl);\n", i);
duke@435 427 ++i;
duke@435 428 }
duke@435 429 else if (!strcmp(ideal_type, "Bool")) {
never@850 430 defineCCodeDump(oper, fp,i);
duke@435 431 ++i;
duke@435 432 }
duke@435 433
duke@435 434 return i;
duke@435 435 }
duke@435 436
duke@435 437 // Generate the format rule for an operand
duke@435 438 void gen_oper_format(FILE *fp, FormDict &globals, OperandForm &oper, bool for_c_file = false) {
duke@435 439 if (!for_c_file) {
duke@435 440 // invoked after output #ifndef PRODUCT to ad_<arch>.hpp
duke@435 441 // compile the bodies separately, to cut down on recompilations
duke@435 442 fprintf(fp," virtual void int_format(PhaseRegAlloc *ra, const MachNode *node, outputStream *st) const;\n");
duke@435 443 fprintf(fp," virtual void ext_format(PhaseRegAlloc *ra, const MachNode *node, int idx, outputStream *st) const;\n");
duke@435 444 return;
duke@435 445 }
duke@435 446
duke@435 447 // Local pointer indicates remaining part of format rule
kvn@4161 448 int idx = 0; // position of operand in match rule
duke@435 449
duke@435 450 // Generate internal format function, used when stored locally
duke@435 451 fprintf(fp, "\n#ifndef PRODUCT\n");
duke@435 452 fprintf(fp,"void %sOper::int_format(PhaseRegAlloc *ra, const MachNode *node, outputStream *st) const {\n", oper._ident);
duke@435 453 // Generate the user-defined portion of the format
duke@435 454 if (oper._format) {
duke@435 455 if ( oper._format->_strings.count() != 0 ) {
duke@435 456 // No initialization code for int_format
duke@435 457
duke@435 458 // Build the format from the entries in strings and rep_vars
duke@435 459 const char *string = NULL;
duke@435 460 oper._format->_rep_vars.reset();
duke@435 461 oper._format->_strings.reset();
duke@435 462 while ( (string = oper._format->_strings.iter()) != NULL ) {
duke@435 463
duke@435 464 // Check if this is a standard string or a replacement variable
duke@435 465 if ( string != NameList::_signal ) {
duke@435 466 // Normal string
duke@435 467 // Pass through to st->print
kvn@4161 468 fprintf(fp," st->print(\"%s\");\n", string);
duke@435 469 } else {
duke@435 470 // Replacement variable
duke@435 471 const char *rep_var = oper._format->_rep_vars.iter();
duke@435 472 // Check that it is a local name, and an operand
coleenp@548 473 const Form* form = oper._localNames[rep_var];
coleenp@548 474 if (form == NULL) {
coleenp@548 475 globalAD->syntax_err(oper._linenum,
coleenp@548 476 "\'%s\' not found in format for %s\n", rep_var, oper._ident);
coleenp@548 477 assert(form, "replacement variable was not found in local names");
coleenp@548 478 }
coleenp@548 479 OperandForm *op = form->is_operand();
duke@435 480 // Get index if register or constant
duke@435 481 if ( op->_matrule && op->_matrule->is_base_register(globals) ) {
duke@435 482 idx = oper.register_position( globals, rep_var);
duke@435 483 }
duke@435 484 else if (op->_matrule && op->_matrule->is_base_constant(globals)) {
duke@435 485 idx = oper.constant_position( globals, rep_var);
duke@435 486 } else {
duke@435 487 idx = 0;
duke@435 488 }
duke@435 489
duke@435 490 // output invocation of "$..."s format function
kvn@4161 491 if ( op != NULL ) op->int_format(fp, globals, idx);
duke@435 492
duke@435 493 if ( idx == -1 ) {
duke@435 494 fprintf(stderr,
duke@435 495 "Using a name, %s, that isn't in match rule\n", rep_var);
duke@435 496 assert( strcmp(op->_ident,"label")==0, "Unimplemented");
duke@435 497 }
duke@435 498 } // Done with a replacement variable
duke@435 499 } // Done with all format strings
duke@435 500 } else {
duke@435 501 // Default formats for base operands (RegI, RegP, ConI, ConP, ...)
duke@435 502 oper.int_format(fp, globals, 0);
duke@435 503 }
duke@435 504
duke@435 505 } else { // oper._format == NULL
duke@435 506 // Provide a few special case formats where the AD writer cannot.
duke@435 507 if ( strcmp(oper._ident,"Universe")==0 ) {
duke@435 508 fprintf(fp, " st->print(\"$$univ\");\n");
duke@435 509 }
duke@435 510 // labelOper::int_format is defined in ad_<...>.cpp
duke@435 511 }
duke@435 512 // ALWAYS! Provide a special case output for condition codes.
duke@435 513 if( oper.is_ideal_bool() ) {
never@850 514 defineCCodeDump(&oper, fp,0);
duke@435 515 }
duke@435 516 fprintf(fp,"}\n");
duke@435 517
duke@435 518 // Generate external format function, when data is stored externally
duke@435 519 fprintf(fp,"void %sOper::ext_format(PhaseRegAlloc *ra, const MachNode *node, int idx, outputStream *st) const {\n", oper._ident);
duke@435 520 // Generate the user-defined portion of the format
duke@435 521 if (oper._format) {
duke@435 522 if ( oper._format->_strings.count() != 0 ) {
duke@435 523
duke@435 524 // Check for a replacement string "$..."
duke@435 525 if ( oper._format->_rep_vars.count() != 0 ) {
duke@435 526 // Initialization code for ext_format
duke@435 527 }
duke@435 528
duke@435 529 // Build the format from the entries in strings and rep_vars
duke@435 530 const char *string = NULL;
duke@435 531 oper._format->_rep_vars.reset();
duke@435 532 oper._format->_strings.reset();
duke@435 533 while ( (string = oper._format->_strings.iter()) != NULL ) {
duke@435 534
duke@435 535 // Check if this is a standard string or a replacement variable
duke@435 536 if ( string != NameList::_signal ) {
duke@435 537 // Normal string
duke@435 538 // Pass through to st->print
kvn@4161 539 fprintf(fp," st->print(\"%s\");\n", string);
duke@435 540 } else {
duke@435 541 // Replacement variable
duke@435 542 const char *rep_var = oper._format->_rep_vars.iter();
coleenp@548 543 // Check that it is a local name, and an operand
coleenp@548 544 const Form* form = oper._localNames[rep_var];
coleenp@548 545 if (form == NULL) {
coleenp@548 546 globalAD->syntax_err(oper._linenum,
coleenp@548 547 "\'%s\' not found in format for %s\n", rep_var, oper._ident);
coleenp@548 548 assert(form, "replacement variable was not found in local names");
coleenp@548 549 }
coleenp@548 550 OperandForm *op = form->is_operand();
duke@435 551 // Get index if register or constant
duke@435 552 if ( op->_matrule && op->_matrule->is_base_register(globals) ) {
duke@435 553 idx = oper.register_position( globals, rep_var);
duke@435 554 }
duke@435 555 else if (op->_matrule && op->_matrule->is_base_constant(globals)) {
duke@435 556 idx = oper.constant_position( globals, rep_var);
duke@435 557 } else {
duke@435 558 idx = 0;
duke@435 559 }
duke@435 560 // output invocation of "$..."s format function
duke@435 561 if ( op != NULL ) op->ext_format(fp, globals, idx);
duke@435 562
duke@435 563 // Lookup the index position of the replacement variable
kvn@4161 564 idx = oper._components.operand_position_format(rep_var, &oper);
duke@435 565 if ( idx == -1 ) {
duke@435 566 fprintf(stderr,
duke@435 567 "Using a name, %s, that isn't in match rule\n", rep_var);
duke@435 568 assert( strcmp(op->_ident,"label")==0, "Unimplemented");
duke@435 569 }
duke@435 570 } // Done with a replacement variable
duke@435 571 } // Done with all format strings
duke@435 572
duke@435 573 } else {
duke@435 574 // Default formats for base operands (RegI, RegP, ConI, ConP, ...)
duke@435 575 oper.ext_format(fp, globals, 0);
duke@435 576 }
duke@435 577 } else { // oper._format == NULL
duke@435 578 // Provide a few special case formats where the AD writer cannot.
duke@435 579 if ( strcmp(oper._ident,"Universe")==0 ) {
duke@435 580 fprintf(fp, " st->print(\"$$univ\");\n");
duke@435 581 }
duke@435 582 // labelOper::ext_format is defined in ad_<...>.cpp
duke@435 583 }
duke@435 584 // ALWAYS! Provide a special case output for condition codes.
duke@435 585 if( oper.is_ideal_bool() ) {
never@850 586 defineCCodeDump(&oper, fp,0);
duke@435 587 }
duke@435 588 fprintf(fp, "}\n");
duke@435 589 fprintf(fp, "#endif\n");
duke@435 590 }
duke@435 591
duke@435 592
duke@435 593 // Generate the format rule for an instruction
duke@435 594 void gen_inst_format(FILE *fp, FormDict &globals, InstructForm &inst, bool for_c_file = false) {
duke@435 595 if (!for_c_file) {
duke@435 596 // compile the bodies separately, to cut down on recompilations
duke@435 597 // #ifndef PRODUCT region generated by caller
duke@435 598 fprintf(fp," virtual void format(PhaseRegAlloc *ra, outputStream *st) const;\n");
duke@435 599 return;
duke@435 600 }
duke@435 601
duke@435 602 // Define the format function
duke@435 603 fprintf(fp, "#ifndef PRODUCT\n");
duke@435 604 fprintf(fp, "void %sNode::format(PhaseRegAlloc *ra, outputStream *st) const {\n", inst._ident);
duke@435 605
duke@435 606 // Generate the user-defined portion of the format
duke@435 607 if( inst._format ) {
duke@435 608 // If there are replacement variables,
twisti@1040 609 // Generate index values needed for determining the operand position
duke@435 610 if( inst._format->_rep_vars.count() )
duke@435 611 inst.index_temps(fp, globals);
duke@435 612
duke@435 613 // Build the format from the entries in strings and rep_vars
duke@435 614 const char *string = NULL;
duke@435 615 inst._format->_rep_vars.reset();
duke@435 616 inst._format->_strings.reset();
duke@435 617 while( (string = inst._format->_strings.iter()) != NULL ) {
kvn@4161 618 fprintf(fp," ");
duke@435 619 // Check if this is a standard string or a replacement variable
never@850 620 if( string == NameList::_signal ) { // Replacement variable
never@850 621 const char* rep_var = inst._format->_rep_vars.iter();
never@850 622 inst.rep_var_format( fp, rep_var);
never@850 623 } else if( string == NameList::_signal3 ) { // Replacement variable in raw text
never@850 624 const char* rep_var = inst._format->_rep_vars.iter();
never@850 625 const Form *form = inst._localNames[rep_var];
never@850 626 if (form == NULL) {
never@850 627 fprintf(stderr, "unknown replacement variable in format statement: '%s'\n", rep_var);
never@850 628 assert(false, "ShouldNotReachHere()");
never@850 629 }
never@850 630 OpClassForm *opc = form->is_opclass();
never@850 631 assert( opc, "replacement variable was not found in local names");
never@850 632 // Lookup the index position of the replacement variable
never@850 633 int idx = inst.operand_position_format(rep_var);
never@850 634 if ( idx == -1 ) {
never@850 635 assert( strcmp(opc->_ident,"label")==0, "Unimplemented");
never@850 636 assert( false, "ShouldNotReachHere()");
never@850 637 }
never@850 638
never@850 639 if (inst.is_noninput_operand(idx)) {
never@850 640 assert( false, "ShouldNotReachHere()");
never@850 641 } else {
never@850 642 // Output the format call for this operand
never@850 643 fprintf(fp,"opnd_array(%d)",idx);
never@850 644 }
never@850 645 rep_var = inst._format->_rep_vars.iter();
never@850 646 inst._format->_strings.iter();
never@850 647 if ( strcmp(rep_var,"$constant") == 0 && opc->is_operand()) {
never@850 648 Form::DataType constant_type = form->is_operand()->is_base_constant(globals);
never@850 649 if ( constant_type == Form::idealD ) {
never@850 650 fprintf(fp,"->constantD()");
never@850 651 } else if ( constant_type == Form::idealF ) {
never@850 652 fprintf(fp,"->constantF()");
never@850 653 } else if ( constant_type == Form::idealL ) {
never@850 654 fprintf(fp,"->constantL()");
never@850 655 } else {
never@850 656 fprintf(fp,"->constant()");
never@850 657 }
never@850 658 } else if ( strcmp(rep_var,"$cmpcode") == 0) {
never@850 659 fprintf(fp,"->ccode()");
never@850 660 } else {
never@850 661 assert( false, "ShouldNotReachHere()");
never@850 662 }
never@850 663 } else if( string == NameList::_signal2 ) // Raw program text
never@850 664 fputs(inst._format->_strings.iter(), fp);
never@850 665 else
duke@435 666 fprintf(fp,"st->print(\"%s\");\n", string);
duke@435 667 } // Done with all format strings
duke@435 668 } // Done generating the user-defined portion of the format
duke@435 669
duke@435 670 // Add call debug info automatically
duke@435 671 Form::CallType call_type = inst.is_ideal_call();
duke@435 672 if( call_type != Form::invalid_type ) {
duke@435 673 switch( call_type ) {
duke@435 674 case Form::JAVA_DYNAMIC:
kvn@4161 675 fprintf(fp," _method->print_short_name(st);\n");
duke@435 676 break;
duke@435 677 case Form::JAVA_STATIC:
kvn@4161 678 fprintf(fp," if( _method ) _method->print_short_name(st);\n");
kvn@4161 679 fprintf(fp," else st->print(\" wrapper for: %%s\", _name);\n");
kvn@4161 680 fprintf(fp," if( !_method ) dump_trap_args(st);\n");
duke@435 681 break;
duke@435 682 case Form::JAVA_COMPILED:
duke@435 683 case Form::JAVA_INTERP:
duke@435 684 break;
duke@435 685 case Form::JAVA_RUNTIME:
duke@435 686 case Form::JAVA_LEAF:
duke@435 687 case Form::JAVA_NATIVE:
kvn@4161 688 fprintf(fp," st->print(\" %%s\", _name);");
duke@435 689 break;
duke@435 690 default:
kvn@4161 691 assert(0,"ShouldNotReachHere");
duke@435 692 }
kvn@4161 693 fprintf(fp, " st->print_cr(\"\");\n" );
kvn@4161 694 fprintf(fp, " if (_jvms) _jvms->format(ra, this, st); else st->print_cr(\" No JVM State Info\");\n" );
kvn@4161 695 fprintf(fp, " st->print(\" # \");\n" );
kvn@4161 696 fprintf(fp, " if( _jvms && _oop_map ) _oop_map->print_on(st);\n");
duke@435 697 }
duke@435 698 else if(inst.is_ideal_safepoint()) {
kvn@4161 699 fprintf(fp, " st->print(\"\");\n" );
kvn@4161 700 fprintf(fp, " if (_jvms) _jvms->format(ra, this, st); else st->print_cr(\" No JVM State Info\");\n" );
kvn@4161 701 fprintf(fp, " st->print(\" # \");\n" );
kvn@4161 702 fprintf(fp, " if( _jvms && _oop_map ) _oop_map->print_on(st);\n");
duke@435 703 }
duke@435 704 else if( inst.is_ideal_if() ) {
kvn@4161 705 fprintf(fp, " st->print(\" P=%%f C=%%f\",_prob,_fcnt);\n" );
duke@435 706 }
duke@435 707 else if( inst.is_ideal_mem() ) {
duke@435 708 // Print out the field name if available to improve readability
kvn@4161 709 fprintf(fp, " if (ra->C->alias_type(adr_type())->field() != NULL) {\n");
kvn@4161 710 fprintf(fp, " ciField* f = ra->C->alias_type(adr_type())->field();\n");
kvn@4161 711 fprintf(fp, " st->print(\" %s Field: \");\n", commentSeperator);
kvn@4161 712 fprintf(fp, " if (f->is_volatile())\n");
kvn@4161 713 fprintf(fp, " st->print(\"volatile \");\n");
kvn@4161 714 fprintf(fp, " f->holder()->name()->print_symbol_on(st);\n");
kvn@4161 715 fprintf(fp, " st->print(\".\");\n");
kvn@4161 716 fprintf(fp, " f->name()->print_symbol_on(st);\n");
kvn@4161 717 fprintf(fp, " if (f->is_constant())\n");
kvn@4161 718 fprintf(fp, " st->print(\" (constant)\");\n");
kvn@4161 719 fprintf(fp, " } else {\n");
duke@435 720 // Make sure 'Volatile' gets printed out
twisti@3969 721 fprintf(fp, " if (ra->C->alias_type(adr_type())->is_volatile())\n");
twisti@3969 722 fprintf(fp, " st->print(\" volatile!\");\n");
kvn@4161 723 fprintf(fp, " }\n");
duke@435 724 }
duke@435 725
duke@435 726 // Complete the definition of the format function
kvn@4161 727 fprintf(fp, "}\n#endif\n");
duke@435 728 }
duke@435 729
duke@435 730 void ArchDesc::declare_pipe_classes(FILE *fp_hpp) {
duke@435 731 if (!_pipeline)
duke@435 732 return;
duke@435 733
duke@435 734 fprintf(fp_hpp, "\n");
duke@435 735 fprintf(fp_hpp, "// Pipeline_Use_Cycle_Mask Class\n");
duke@435 736 fprintf(fp_hpp, "class Pipeline_Use_Cycle_Mask {\n");
duke@435 737
duke@435 738 if (_pipeline->_maxcycleused <=
duke@435 739 #ifdef SPARC
duke@435 740 64
duke@435 741 #else
duke@435 742 32
duke@435 743 #endif
duke@435 744 ) {
duke@435 745 fprintf(fp_hpp, "protected:\n");
duke@435 746 fprintf(fp_hpp, " %s _mask;\n\n", _pipeline->_maxcycleused <= 32 ? "uint" : "uint64_t" );
duke@435 747 fprintf(fp_hpp, "public:\n");
duke@435 748 fprintf(fp_hpp, " Pipeline_Use_Cycle_Mask() : _mask(0) {}\n\n");
duke@435 749 if (_pipeline->_maxcycleused <= 32)
duke@435 750 fprintf(fp_hpp, " Pipeline_Use_Cycle_Mask(uint mask) : _mask(mask) {}\n\n");
duke@435 751 else {
duke@435 752 fprintf(fp_hpp, " Pipeline_Use_Cycle_Mask(uint mask1, uint mask2) : _mask((((uint64_t)mask1) << 32) | mask2) {}\n\n");
duke@435 753 fprintf(fp_hpp, " Pipeline_Use_Cycle_Mask(uint64_t mask) : _mask(mask) {}\n\n");
duke@435 754 }
duke@435 755 fprintf(fp_hpp, " Pipeline_Use_Cycle_Mask& operator=(const Pipeline_Use_Cycle_Mask &in) {\n");
duke@435 756 fprintf(fp_hpp, " _mask = in._mask;\n");
duke@435 757 fprintf(fp_hpp, " return *this;\n");
duke@435 758 fprintf(fp_hpp, " }\n\n");
duke@435 759 fprintf(fp_hpp, " bool overlaps(const Pipeline_Use_Cycle_Mask &in2) const {\n");
duke@435 760 fprintf(fp_hpp, " return ((_mask & in2._mask) != 0);\n");
duke@435 761 fprintf(fp_hpp, " }\n\n");
duke@435 762 fprintf(fp_hpp, " Pipeline_Use_Cycle_Mask& operator<<=(int n) {\n");
duke@435 763 fprintf(fp_hpp, " _mask <<= n;\n");
duke@435 764 fprintf(fp_hpp, " return *this;\n");
duke@435 765 fprintf(fp_hpp, " }\n\n");
duke@435 766 fprintf(fp_hpp, " void Or(const Pipeline_Use_Cycle_Mask &in2) {\n");
duke@435 767 fprintf(fp_hpp, " _mask |= in2._mask;\n");
duke@435 768 fprintf(fp_hpp, " }\n\n");
duke@435 769 fprintf(fp_hpp, " friend Pipeline_Use_Cycle_Mask operator&(const Pipeline_Use_Cycle_Mask &, const Pipeline_Use_Cycle_Mask &);\n");
duke@435 770 fprintf(fp_hpp, " friend Pipeline_Use_Cycle_Mask operator|(const Pipeline_Use_Cycle_Mask &, const Pipeline_Use_Cycle_Mask &);\n\n");
duke@435 771 }
duke@435 772 else {
duke@435 773 fprintf(fp_hpp, "protected:\n");
duke@435 774 uint masklen = (_pipeline->_maxcycleused + 31) >> 5;
duke@435 775 uint l;
duke@435 776 fprintf(fp_hpp, " uint ");
duke@435 777 for (l = 1; l <= masklen; l++)
duke@435 778 fprintf(fp_hpp, "_mask%d%s", l, l < masklen ? ", " : ";\n\n");
duke@435 779 fprintf(fp_hpp, "public:\n");
duke@435 780 fprintf(fp_hpp, " Pipeline_Use_Cycle_Mask() : ");
duke@435 781 for (l = 1; l <= masklen; l++)
duke@435 782 fprintf(fp_hpp, "_mask%d(0)%s", l, l < masklen ? ", " : " {}\n\n");
duke@435 783 fprintf(fp_hpp, " Pipeline_Use_Cycle_Mask(");
duke@435 784 for (l = 1; l <= masklen; l++)
duke@435 785 fprintf(fp_hpp, "uint mask%d%s", l, l < masklen ? ", " : ") : ");
duke@435 786 for (l = 1; l <= masklen; l++)
duke@435 787 fprintf(fp_hpp, "_mask%d(mask%d)%s", l, l, l < masklen ? ", " : " {}\n\n");
duke@435 788
duke@435 789 fprintf(fp_hpp, " Pipeline_Use_Cycle_Mask& operator=(const Pipeline_Use_Cycle_Mask &in) {\n");
duke@435 790 for (l = 1; l <= masklen; l++)
duke@435 791 fprintf(fp_hpp, " _mask%d = in._mask%d;\n", l, l);
duke@435 792 fprintf(fp_hpp, " return *this;\n");
duke@435 793 fprintf(fp_hpp, " }\n\n");
duke@435 794 fprintf(fp_hpp, " Pipeline_Use_Cycle_Mask intersect(const Pipeline_Use_Cycle_Mask &in2) {\n");
duke@435 795 fprintf(fp_hpp, " Pipeline_Use_Cycle_Mask out;\n");
duke@435 796 for (l = 1; l <= masklen; l++)
duke@435 797 fprintf(fp_hpp, " out._mask%d = _mask%d & in2._mask%d;\n", l, l, l);
duke@435 798 fprintf(fp_hpp, " return out;\n");
duke@435 799 fprintf(fp_hpp, " }\n\n");
duke@435 800 fprintf(fp_hpp, " bool overlaps(const Pipeline_Use_Cycle_Mask &in2) const {\n");
duke@435 801 fprintf(fp_hpp, " return (");
duke@435 802 for (l = 1; l <= masklen; l++)
duke@435 803 fprintf(fp_hpp, "((_mask%d & in2._mask%d) != 0)%s", l, l, l < masklen ? " || " : "");
duke@435 804 fprintf(fp_hpp, ") ? true : false;\n");
duke@435 805 fprintf(fp_hpp, " }\n\n");
duke@435 806 fprintf(fp_hpp, " Pipeline_Use_Cycle_Mask& operator<<=(int n) {\n");
duke@435 807 fprintf(fp_hpp, " if (n >= 32)\n");
duke@435 808 fprintf(fp_hpp, " do {\n ");
duke@435 809 for (l = masklen; l > 1; l--)
duke@435 810 fprintf(fp_hpp, " _mask%d = _mask%d;", l, l-1);
duke@435 811 fprintf(fp_hpp, " _mask%d = 0;\n", 1);
duke@435 812 fprintf(fp_hpp, " } while ((n -= 32) >= 32);\n\n");
duke@435 813 fprintf(fp_hpp, " if (n > 0) {\n");
duke@435 814 fprintf(fp_hpp, " uint m = 32 - n;\n");
duke@435 815 fprintf(fp_hpp, " uint mask = (1 << n) - 1;\n");
duke@435 816 fprintf(fp_hpp, " uint temp%d = mask & (_mask%d >> m); _mask%d <<= n;\n", 2, 1, 1);
duke@435 817 for (l = 2; l < masklen; l++) {
duke@435 818 fprintf(fp_hpp, " uint temp%d = mask & (_mask%d >> m); _mask%d <<= n; _mask%d |= temp%d;\n", l+1, l, l, l, l);
duke@435 819 }
duke@435 820 fprintf(fp_hpp, " _mask%d <<= n; _mask%d |= temp%d;\n", masklen, masklen, masklen);
duke@435 821 fprintf(fp_hpp, " }\n");
duke@435 822
duke@435 823 fprintf(fp_hpp, " return *this;\n");
duke@435 824 fprintf(fp_hpp, " }\n\n");
duke@435 825 fprintf(fp_hpp, " void Or(const Pipeline_Use_Cycle_Mask &);\n\n");
duke@435 826 fprintf(fp_hpp, " friend Pipeline_Use_Cycle_Mask operator&(const Pipeline_Use_Cycle_Mask &, const Pipeline_Use_Cycle_Mask &);\n");
duke@435 827 fprintf(fp_hpp, " friend Pipeline_Use_Cycle_Mask operator|(const Pipeline_Use_Cycle_Mask &, const Pipeline_Use_Cycle_Mask &);\n\n");
duke@435 828 }
duke@435 829
duke@435 830 fprintf(fp_hpp, " friend class Pipeline_Use;\n\n");
duke@435 831 fprintf(fp_hpp, " friend class Pipeline_Use_Element;\n\n");
duke@435 832 fprintf(fp_hpp, "};\n\n");
duke@435 833
duke@435 834 uint rescount = 0;
duke@435 835 const char *resource;
duke@435 836
duke@435 837 for ( _pipeline->_reslist.reset(); (resource = _pipeline->_reslist.iter()) != NULL; ) {
duke@435 838 int mask = _pipeline->_resdict[resource]->is_resource()->mask();
duke@435 839 if ((mask & (mask-1)) == 0)
duke@435 840 rescount++;
duke@435 841 }
duke@435 842
duke@435 843 fprintf(fp_hpp, "// Pipeline_Use_Element Class\n");
duke@435 844 fprintf(fp_hpp, "class Pipeline_Use_Element {\n");
duke@435 845 fprintf(fp_hpp, "protected:\n");
duke@435 846 fprintf(fp_hpp, " // Mask of used functional units\n");
duke@435 847 fprintf(fp_hpp, " uint _used;\n\n");
duke@435 848 fprintf(fp_hpp, " // Lower and upper bound of functional unit number range\n");
duke@435 849 fprintf(fp_hpp, " uint _lb, _ub;\n\n");
duke@435 850 fprintf(fp_hpp, " // Indicates multiple functionals units available\n");
duke@435 851 fprintf(fp_hpp, " bool _multiple;\n\n");
duke@435 852 fprintf(fp_hpp, " // Mask of specific used cycles\n");
duke@435 853 fprintf(fp_hpp, " Pipeline_Use_Cycle_Mask _mask;\n\n");
duke@435 854 fprintf(fp_hpp, "public:\n");
duke@435 855 fprintf(fp_hpp, " Pipeline_Use_Element() {}\n\n");
duke@435 856 fprintf(fp_hpp, " Pipeline_Use_Element(uint used, uint lb, uint ub, bool multiple, Pipeline_Use_Cycle_Mask mask)\n");
duke@435 857 fprintf(fp_hpp, " : _used(used), _lb(lb), _ub(ub), _multiple(multiple), _mask(mask) {}\n\n");
duke@435 858 fprintf(fp_hpp, " uint used() const { return _used; }\n\n");
duke@435 859 fprintf(fp_hpp, " uint lowerBound() const { return _lb; }\n\n");
duke@435 860 fprintf(fp_hpp, " uint upperBound() const { return _ub; }\n\n");
duke@435 861 fprintf(fp_hpp, " bool multiple() const { return _multiple; }\n\n");
duke@435 862 fprintf(fp_hpp, " Pipeline_Use_Cycle_Mask mask() const { return _mask; }\n\n");
duke@435 863 fprintf(fp_hpp, " bool overlaps(const Pipeline_Use_Element &in2) const {\n");
duke@435 864 fprintf(fp_hpp, " return ((_used & in2._used) != 0 && _mask.overlaps(in2._mask));\n");
duke@435 865 fprintf(fp_hpp, " }\n\n");
duke@435 866 fprintf(fp_hpp, " void step(uint cycles) {\n");
duke@435 867 fprintf(fp_hpp, " _used = 0;\n");
duke@435 868 fprintf(fp_hpp, " _mask <<= cycles;\n");
duke@435 869 fprintf(fp_hpp, " }\n\n");
duke@435 870 fprintf(fp_hpp, " friend class Pipeline_Use;\n");
duke@435 871 fprintf(fp_hpp, "};\n\n");
duke@435 872
duke@435 873 fprintf(fp_hpp, "// Pipeline_Use Class\n");
duke@435 874 fprintf(fp_hpp, "class Pipeline_Use {\n");
duke@435 875 fprintf(fp_hpp, "protected:\n");
duke@435 876 fprintf(fp_hpp, " // These resources can be used\n");
duke@435 877 fprintf(fp_hpp, " uint _resources_used;\n\n");
duke@435 878 fprintf(fp_hpp, " // These resources are used; excludes multiple choice functional units\n");
duke@435 879 fprintf(fp_hpp, " uint _resources_used_exclusively;\n\n");
duke@435 880 fprintf(fp_hpp, " // Number of elements\n");
duke@435 881 fprintf(fp_hpp, " uint _count;\n\n");
duke@435 882 fprintf(fp_hpp, " // This is the array of Pipeline_Use_Elements\n");
duke@435 883 fprintf(fp_hpp, " Pipeline_Use_Element * _elements;\n\n");
duke@435 884 fprintf(fp_hpp, "public:\n");
duke@435 885 fprintf(fp_hpp, " Pipeline_Use(uint resources_used, uint resources_used_exclusively, uint count, Pipeline_Use_Element *elements)\n");
duke@435 886 fprintf(fp_hpp, " : _resources_used(resources_used)\n");
duke@435 887 fprintf(fp_hpp, " , _resources_used_exclusively(resources_used_exclusively)\n");
duke@435 888 fprintf(fp_hpp, " , _count(count)\n");
duke@435 889 fprintf(fp_hpp, " , _elements(elements)\n");
duke@435 890 fprintf(fp_hpp, " {}\n\n");
duke@435 891 fprintf(fp_hpp, " uint resourcesUsed() const { return _resources_used; }\n\n");
duke@435 892 fprintf(fp_hpp, " uint resourcesUsedExclusively() const { return _resources_used_exclusively; }\n\n");
duke@435 893 fprintf(fp_hpp, " uint count() const { return _count; }\n\n");
duke@435 894 fprintf(fp_hpp, " Pipeline_Use_Element * element(uint i) const { return &_elements[i]; }\n\n");
duke@435 895 fprintf(fp_hpp, " uint full_latency(uint delay, const Pipeline_Use &pred) const;\n\n");
duke@435 896 fprintf(fp_hpp, " void add_usage(const Pipeline_Use &pred);\n\n");
duke@435 897 fprintf(fp_hpp, " void reset() {\n");
duke@435 898 fprintf(fp_hpp, " _resources_used = _resources_used_exclusively = 0;\n");
duke@435 899 fprintf(fp_hpp, " };\n\n");
duke@435 900 fprintf(fp_hpp, " void step(uint cycles) {\n");
duke@435 901 fprintf(fp_hpp, " reset();\n");
duke@435 902 fprintf(fp_hpp, " for (uint i = 0; i < %d; i++)\n",
duke@435 903 rescount);
duke@435 904 fprintf(fp_hpp, " (&_elements[i])->step(cycles);\n");
duke@435 905 fprintf(fp_hpp, " };\n\n");
duke@435 906 fprintf(fp_hpp, " static const Pipeline_Use elaborated_use;\n");
duke@435 907 fprintf(fp_hpp, " static const Pipeline_Use_Element elaborated_elements[%d];\n\n",
duke@435 908 rescount);
duke@435 909 fprintf(fp_hpp, " friend class Pipeline;\n");
duke@435 910 fprintf(fp_hpp, "};\n\n");
duke@435 911
duke@435 912 fprintf(fp_hpp, "// Pipeline Class\n");
duke@435 913 fprintf(fp_hpp, "class Pipeline {\n");
duke@435 914 fprintf(fp_hpp, "public:\n");
duke@435 915
duke@435 916 fprintf(fp_hpp, " static bool enabled() { return %s; }\n\n",
duke@435 917 _pipeline ? "true" : "false" );
duke@435 918
duke@435 919 assert( _pipeline->_maxInstrsPerBundle &&
duke@435 920 ( _pipeline->_instrUnitSize || _pipeline->_bundleUnitSize) &&
duke@435 921 _pipeline->_instrFetchUnitSize &&
duke@435 922 _pipeline->_instrFetchUnits,
duke@435 923 "unspecified pipeline architecture units");
duke@435 924
duke@435 925 uint unitSize = _pipeline->_instrUnitSize ? _pipeline->_instrUnitSize : _pipeline->_bundleUnitSize;
duke@435 926
duke@435 927 fprintf(fp_hpp, " enum {\n");
duke@435 928 fprintf(fp_hpp, " _variable_size_instructions = %d,\n",
duke@435 929 _pipeline->_variableSizeInstrs ? 1 : 0);
duke@435 930 fprintf(fp_hpp, " _fixed_size_instructions = %d,\n",
duke@435 931 _pipeline->_variableSizeInstrs ? 0 : 1);
duke@435 932 fprintf(fp_hpp, " _branch_has_delay_slot = %d,\n",
duke@435 933 _pipeline->_branchHasDelaySlot ? 1 : 0);
duke@435 934 fprintf(fp_hpp, " _max_instrs_per_bundle = %d,\n",
duke@435 935 _pipeline->_maxInstrsPerBundle);
duke@435 936 fprintf(fp_hpp, " _max_bundles_per_cycle = %d,\n",
duke@435 937 _pipeline->_maxBundlesPerCycle);
duke@435 938 fprintf(fp_hpp, " _max_instrs_per_cycle = %d\n",
duke@435 939 _pipeline->_maxBundlesPerCycle * _pipeline->_maxInstrsPerBundle);
duke@435 940 fprintf(fp_hpp, " };\n\n");
duke@435 941
duke@435 942 fprintf(fp_hpp, " static bool instr_has_unit_size() { return %s; }\n\n",
duke@435 943 _pipeline->_instrUnitSize != 0 ? "true" : "false" );
duke@435 944 if( _pipeline->_bundleUnitSize != 0 )
duke@435 945 if( _pipeline->_instrUnitSize != 0 )
duke@435 946 fprintf(fp_hpp, "// Individual Instructions may be bundled together by the hardware\n\n");
duke@435 947 else
duke@435 948 fprintf(fp_hpp, "// Instructions exist only in bundles\n\n");
duke@435 949 else
duke@435 950 fprintf(fp_hpp, "// Bundling is not supported\n\n");
duke@435 951 if( _pipeline->_instrUnitSize != 0 )
duke@435 952 fprintf(fp_hpp, " // Size of an instruction\n");
duke@435 953 else
duke@435 954 fprintf(fp_hpp, " // Size of an individual instruction does not exist - unsupported\n");
duke@435 955 fprintf(fp_hpp, " static uint instr_unit_size() {");
duke@435 956 if( _pipeline->_instrUnitSize == 0 )
duke@435 957 fprintf(fp_hpp, " assert( false, \"Instructions are only in bundles\" );");
duke@435 958 fprintf(fp_hpp, " return %d; };\n\n", _pipeline->_instrUnitSize);
duke@435 959
duke@435 960 if( _pipeline->_bundleUnitSize != 0 )
duke@435 961 fprintf(fp_hpp, " // Size of a bundle\n");
duke@435 962 else
duke@435 963 fprintf(fp_hpp, " // Bundles do not exist - unsupported\n");
duke@435 964 fprintf(fp_hpp, " static uint bundle_unit_size() {");
duke@435 965 if( _pipeline->_bundleUnitSize == 0 )
duke@435 966 fprintf(fp_hpp, " assert( false, \"Bundles are not supported\" );");
duke@435 967 fprintf(fp_hpp, " return %d; };\n\n", _pipeline->_bundleUnitSize);
duke@435 968
duke@435 969 fprintf(fp_hpp, " static bool requires_bundling() { return %s; }\n\n",
duke@435 970 _pipeline->_bundleUnitSize != 0 && _pipeline->_instrUnitSize == 0 ? "true" : "false" );
duke@435 971
duke@435 972 fprintf(fp_hpp, "private:\n");
duke@435 973 fprintf(fp_hpp, " Pipeline(); // Not a legal constructor\n");
duke@435 974 fprintf(fp_hpp, "\n");
duke@435 975 fprintf(fp_hpp, " const unsigned char _read_stage_count;\n");
duke@435 976 fprintf(fp_hpp, " const unsigned char _write_stage;\n");
duke@435 977 fprintf(fp_hpp, " const unsigned char _fixed_latency;\n");
duke@435 978 fprintf(fp_hpp, " const unsigned char _instruction_count;\n");
duke@435 979 fprintf(fp_hpp, " const bool _has_fixed_latency;\n");
duke@435 980 fprintf(fp_hpp, " const bool _has_branch_delay;\n");
duke@435 981 fprintf(fp_hpp, " const bool _has_multiple_bundles;\n");
duke@435 982 fprintf(fp_hpp, " const bool _force_serialization;\n");
duke@435 983 fprintf(fp_hpp, " const bool _may_have_no_code;\n");
duke@435 984 fprintf(fp_hpp, " const enum machPipelineStages * const _read_stages;\n");
duke@435 985 fprintf(fp_hpp, " const enum machPipelineStages * const _resource_stage;\n");
duke@435 986 fprintf(fp_hpp, " const uint * const _resource_cycles;\n");
duke@435 987 fprintf(fp_hpp, " const Pipeline_Use _resource_use;\n");
duke@435 988 fprintf(fp_hpp, "\n");
duke@435 989 fprintf(fp_hpp, "public:\n");
duke@435 990 fprintf(fp_hpp, " Pipeline(uint write_stage,\n");
duke@435 991 fprintf(fp_hpp, " uint count,\n");
duke@435 992 fprintf(fp_hpp, " bool has_fixed_latency,\n");
duke@435 993 fprintf(fp_hpp, " uint fixed_latency,\n");
duke@435 994 fprintf(fp_hpp, " uint instruction_count,\n");
duke@435 995 fprintf(fp_hpp, " bool has_branch_delay,\n");
duke@435 996 fprintf(fp_hpp, " bool has_multiple_bundles,\n");
duke@435 997 fprintf(fp_hpp, " bool force_serialization,\n");
duke@435 998 fprintf(fp_hpp, " bool may_have_no_code,\n");
duke@435 999 fprintf(fp_hpp, " enum machPipelineStages * const dst,\n");
duke@435 1000 fprintf(fp_hpp, " enum machPipelineStages * const stage,\n");
duke@435 1001 fprintf(fp_hpp, " uint * const cycles,\n");
duke@435 1002 fprintf(fp_hpp, " Pipeline_Use resource_use)\n");
duke@435 1003 fprintf(fp_hpp, " : _write_stage(write_stage)\n");
duke@435 1004 fprintf(fp_hpp, " , _read_stage_count(count)\n");
duke@435 1005 fprintf(fp_hpp, " , _has_fixed_latency(has_fixed_latency)\n");
duke@435 1006 fprintf(fp_hpp, " , _fixed_latency(fixed_latency)\n");
duke@435 1007 fprintf(fp_hpp, " , _read_stages(dst)\n");
duke@435 1008 fprintf(fp_hpp, " , _resource_stage(stage)\n");
duke@435 1009 fprintf(fp_hpp, " , _resource_cycles(cycles)\n");
duke@435 1010 fprintf(fp_hpp, " , _resource_use(resource_use)\n");
duke@435 1011 fprintf(fp_hpp, " , _instruction_count(instruction_count)\n");
duke@435 1012 fprintf(fp_hpp, " , _has_branch_delay(has_branch_delay)\n");
duke@435 1013 fprintf(fp_hpp, " , _has_multiple_bundles(has_multiple_bundles)\n");
duke@435 1014 fprintf(fp_hpp, " , _force_serialization(force_serialization)\n");
duke@435 1015 fprintf(fp_hpp, " , _may_have_no_code(may_have_no_code)\n");
duke@435 1016 fprintf(fp_hpp, " {};\n");
duke@435 1017 fprintf(fp_hpp, "\n");
duke@435 1018 fprintf(fp_hpp, " uint writeStage() const {\n");
duke@435 1019 fprintf(fp_hpp, " return (_write_stage);\n");
duke@435 1020 fprintf(fp_hpp, " }\n");
duke@435 1021 fprintf(fp_hpp, "\n");
duke@435 1022 fprintf(fp_hpp, " enum machPipelineStages readStage(int ndx) const {\n");
duke@435 1023 fprintf(fp_hpp, " return (ndx < _read_stage_count ? _read_stages[ndx] : stage_undefined);");
duke@435 1024 fprintf(fp_hpp, " }\n\n");
duke@435 1025 fprintf(fp_hpp, " uint resourcesUsed() const {\n");
duke@435 1026 fprintf(fp_hpp, " return _resource_use.resourcesUsed();\n }\n\n");
duke@435 1027 fprintf(fp_hpp, " uint resourcesUsedExclusively() const {\n");
duke@435 1028 fprintf(fp_hpp, " return _resource_use.resourcesUsedExclusively();\n }\n\n");
duke@435 1029 fprintf(fp_hpp, " bool hasFixedLatency() const {\n");
duke@435 1030 fprintf(fp_hpp, " return (_has_fixed_latency);\n }\n\n");
duke@435 1031 fprintf(fp_hpp, " uint fixedLatency() const {\n");
duke@435 1032 fprintf(fp_hpp, " return (_fixed_latency);\n }\n\n");
duke@435 1033 fprintf(fp_hpp, " uint functional_unit_latency(uint start, const Pipeline *pred) const;\n\n");
duke@435 1034 fprintf(fp_hpp, " uint operand_latency(uint opnd, const Pipeline *pred) const;\n\n");
duke@435 1035 fprintf(fp_hpp, " const Pipeline_Use& resourceUse() const {\n");
duke@435 1036 fprintf(fp_hpp, " return (_resource_use); }\n\n");
duke@435 1037 fprintf(fp_hpp, " const Pipeline_Use_Element * resourceUseElement(uint i) const {\n");
duke@435 1038 fprintf(fp_hpp, " return (&_resource_use._elements[i]); }\n\n");
duke@435 1039 fprintf(fp_hpp, " uint resourceUseCount() const {\n");
duke@435 1040 fprintf(fp_hpp, " return (_resource_use._count); }\n\n");
duke@435 1041 fprintf(fp_hpp, " uint instructionCount() const {\n");
duke@435 1042 fprintf(fp_hpp, " return (_instruction_count); }\n\n");
duke@435 1043 fprintf(fp_hpp, " bool hasBranchDelay() const {\n");
duke@435 1044 fprintf(fp_hpp, " return (_has_branch_delay); }\n\n");
duke@435 1045 fprintf(fp_hpp, " bool hasMultipleBundles() const {\n");
duke@435 1046 fprintf(fp_hpp, " return (_has_multiple_bundles); }\n\n");
duke@435 1047 fprintf(fp_hpp, " bool forceSerialization() const {\n");
duke@435 1048 fprintf(fp_hpp, " return (_force_serialization); }\n\n");
duke@435 1049 fprintf(fp_hpp, " bool mayHaveNoCode() const {\n");
duke@435 1050 fprintf(fp_hpp, " return (_may_have_no_code); }\n\n");
duke@435 1051 fprintf(fp_hpp, "//const Pipeline_Use_Cycle_Mask& resourceUseMask(int resource) const {\n");
duke@435 1052 fprintf(fp_hpp, "// return (_resource_use_masks[resource]); }\n\n");
duke@435 1053 fprintf(fp_hpp, "\n#ifndef PRODUCT\n");
duke@435 1054 fprintf(fp_hpp, " static const char * stageName(uint i);\n");
duke@435 1055 fprintf(fp_hpp, "#endif\n");
duke@435 1056 fprintf(fp_hpp, "};\n\n");
duke@435 1057
duke@435 1058 fprintf(fp_hpp, "// Bundle class\n");
duke@435 1059 fprintf(fp_hpp, "class Bundle {\n");
duke@435 1060
duke@435 1061 uint mshift = 0;
duke@435 1062 for (uint msize = _pipeline->_maxInstrsPerBundle * _pipeline->_maxBundlesPerCycle; msize != 0; msize >>= 1)
duke@435 1063 mshift++;
duke@435 1064
duke@435 1065 uint rshift = rescount;
duke@435 1066
duke@435 1067 fprintf(fp_hpp, "protected:\n");
duke@435 1068 fprintf(fp_hpp, " enum {\n");
duke@435 1069 fprintf(fp_hpp, " _unused_delay = 0x%x,\n", 0);
duke@435 1070 fprintf(fp_hpp, " _use_nop_delay = 0x%x,\n", 1);
duke@435 1071 fprintf(fp_hpp, " _use_unconditional_delay = 0x%x,\n", 2);
duke@435 1072 fprintf(fp_hpp, " _use_conditional_delay = 0x%x,\n", 3);
duke@435 1073 fprintf(fp_hpp, " _used_in_conditional_delay = 0x%x,\n", 4);
duke@435 1074 fprintf(fp_hpp, " _used_in_unconditional_delay = 0x%x,\n", 5);
duke@435 1075 fprintf(fp_hpp, " _used_in_all_conditional_delays = 0x%x,\n", 6);
duke@435 1076 fprintf(fp_hpp, "\n");
duke@435 1077 fprintf(fp_hpp, " _use_delay = 0x%x,\n", 3);
duke@435 1078 fprintf(fp_hpp, " _used_in_delay = 0x%x\n", 4);
duke@435 1079 fprintf(fp_hpp, " };\n\n");
duke@435 1080 fprintf(fp_hpp, " uint _flags : 3,\n");
duke@435 1081 fprintf(fp_hpp, " _starts_bundle : 1,\n");
duke@435 1082 fprintf(fp_hpp, " _instr_count : %d,\n", mshift);
duke@435 1083 fprintf(fp_hpp, " _resources_used : %d;\n", rshift);
duke@435 1084 fprintf(fp_hpp, "public:\n");
duke@435 1085 fprintf(fp_hpp, " Bundle() : _flags(_unused_delay), _starts_bundle(0), _instr_count(0), _resources_used(0) {}\n\n");
duke@435 1086 fprintf(fp_hpp, " void set_instr_count(uint i) { _instr_count = i; }\n");
duke@435 1087 fprintf(fp_hpp, " void set_resources_used(uint i) { _resources_used = i; }\n");
duke@435 1088 fprintf(fp_hpp, " void clear_usage() { _flags = _unused_delay; }\n");
duke@435 1089 fprintf(fp_hpp, " void set_starts_bundle() { _starts_bundle = true; }\n");
duke@435 1090
duke@435 1091 fprintf(fp_hpp, " uint flags() const { return (_flags); }\n");
duke@435 1092 fprintf(fp_hpp, " uint instr_count() const { return (_instr_count); }\n");
duke@435 1093 fprintf(fp_hpp, " uint resources_used() const { return (_resources_used); }\n");
duke@435 1094 fprintf(fp_hpp, " bool starts_bundle() const { return (_starts_bundle != 0); }\n");
duke@435 1095
duke@435 1096 fprintf(fp_hpp, " void set_use_nop_delay() { _flags = _use_nop_delay; }\n");
duke@435 1097 fprintf(fp_hpp, " void set_use_unconditional_delay() { _flags = _use_unconditional_delay; }\n");
duke@435 1098 fprintf(fp_hpp, " void set_use_conditional_delay() { _flags = _use_conditional_delay; }\n");
duke@435 1099 fprintf(fp_hpp, " void set_used_in_unconditional_delay() { _flags = _used_in_unconditional_delay; }\n");
duke@435 1100 fprintf(fp_hpp, " void set_used_in_conditional_delay() { _flags = _used_in_conditional_delay; }\n");
duke@435 1101 fprintf(fp_hpp, " void set_used_in_all_conditional_delays() { _flags = _used_in_all_conditional_delays; }\n");
duke@435 1102
duke@435 1103 fprintf(fp_hpp, " bool use_nop_delay() { return (_flags == _use_nop_delay); }\n");
duke@435 1104 fprintf(fp_hpp, " bool use_unconditional_delay() { return (_flags == _use_unconditional_delay); }\n");
duke@435 1105 fprintf(fp_hpp, " bool use_conditional_delay() { return (_flags == _use_conditional_delay); }\n");
duke@435 1106 fprintf(fp_hpp, " bool used_in_unconditional_delay() { return (_flags == _used_in_unconditional_delay); }\n");
duke@435 1107 fprintf(fp_hpp, " bool used_in_conditional_delay() { return (_flags == _used_in_conditional_delay); }\n");
duke@435 1108 fprintf(fp_hpp, " bool used_in_all_conditional_delays() { return (_flags == _used_in_all_conditional_delays); }\n");
duke@435 1109 fprintf(fp_hpp, " bool use_delay() { return ((_flags & _use_delay) != 0); }\n");
duke@435 1110 fprintf(fp_hpp, " bool used_in_delay() { return ((_flags & _used_in_delay) != 0); }\n\n");
duke@435 1111
duke@435 1112 fprintf(fp_hpp, " enum {\n");
duke@435 1113 fprintf(fp_hpp, " _nop_count = %d\n",
duke@435 1114 _pipeline->_nopcnt);
duke@435 1115 fprintf(fp_hpp, " };\n\n");
duke@435 1116 fprintf(fp_hpp, " static void initialize_nops(MachNode *nop_list[%d], Compile* C);\n\n",
duke@435 1117 _pipeline->_nopcnt);
duke@435 1118 fprintf(fp_hpp, "#ifndef PRODUCT\n");
kvn@4161 1119 fprintf(fp_hpp, " void dump(outputStream *st = tty) const;\n");
duke@435 1120 fprintf(fp_hpp, "#endif\n");
duke@435 1121 fprintf(fp_hpp, "};\n\n");
duke@435 1122
duke@435 1123 // const char *classname;
duke@435 1124 // for (_pipeline->_classlist.reset(); (classname = _pipeline->_classlist.iter()) != NULL; ) {
duke@435 1125 // PipeClassForm *pipeclass = _pipeline->_classdict[classname]->is_pipeclass();
duke@435 1126 // fprintf(fp_hpp, "// Pipeline Class Instance for \"%s\"\n", classname);
duke@435 1127 // }
duke@435 1128 }
duke@435 1129
duke@435 1130 //------------------------------declareClasses---------------------------------
duke@435 1131 // Construct the class hierarchy of MachNode classes from the instruction &
duke@435 1132 // operand lists
duke@435 1133 void ArchDesc::declareClasses(FILE *fp) {
duke@435 1134
duke@435 1135 // Declare an array containing the machine register names, strings.
duke@435 1136 declareRegNames(fp, _register);
duke@435 1137
duke@435 1138 // Declare an array containing the machine register encoding values
duke@435 1139 declareRegEncodes(fp, _register);
duke@435 1140
duke@435 1141 // Generate declarations for the total number of operands
duke@435 1142 fprintf(fp,"\n");
duke@435 1143 fprintf(fp,"// Total number of operands defined in architecture definition\n");
duke@435 1144 int num_operands = 0;
duke@435 1145 OperandForm *op;
duke@435 1146 for (_operands.reset(); (op = (OperandForm*)_operands.iter()) != NULL; ) {
duke@435 1147 // Ensure this is a machine-world instruction
duke@435 1148 if (op->ideal_only()) continue;
duke@435 1149
duke@435 1150 ++num_operands;
duke@435 1151 }
duke@435 1152 int first_operand_class = num_operands;
duke@435 1153 OpClassForm *opc;
duke@435 1154 for (_opclass.reset(); (opc = (OpClassForm*)_opclass.iter()) != NULL; ) {
duke@435 1155 // Ensure this is a machine-world instruction
duke@435 1156 if (opc->ideal_only()) continue;
duke@435 1157
duke@435 1158 ++num_operands;
duke@435 1159 }
duke@435 1160 fprintf(fp,"#define FIRST_OPERAND_CLASS %d\n", first_operand_class);
duke@435 1161 fprintf(fp,"#define NUM_OPERANDS %d\n", num_operands);
duke@435 1162 fprintf(fp,"\n");
duke@435 1163 // Generate declarations for the total number of instructions
duke@435 1164 fprintf(fp,"// Total number of instructions defined in architecture definition\n");
duke@435 1165 fprintf(fp,"#define NUM_INSTRUCTIONS %d\n",instructFormCount());
duke@435 1166
duke@435 1167
duke@435 1168 // Generate Machine Classes for each operand defined in AD file
duke@435 1169 fprintf(fp,"\n");
duke@435 1170 fprintf(fp,"//----------------------------Declare classes derived from MachOper----------\n");
duke@435 1171 // Iterate through all operands
duke@435 1172 _operands.reset();
duke@435 1173 OperandForm *oper;
duke@435 1174 for( ; (oper = (OperandForm*)_operands.iter()) != NULL;) {
duke@435 1175 // Ensure this is a machine-world instruction
duke@435 1176 if (oper->ideal_only() ) continue;
duke@435 1177 // The declaration of labelOper is in machine-independent file: machnode
duke@435 1178 if ( strcmp(oper->_ident,"label") == 0 ) continue;
duke@435 1179 // The declaration of methodOper is in machine-independent file: machnode
duke@435 1180 if ( strcmp(oper->_ident,"method") == 0 ) continue;
duke@435 1181
duke@435 1182 // Build class definition for this operand
duke@435 1183 fprintf(fp,"\n");
duke@435 1184 fprintf(fp,"class %sOper : public MachOper { \n",oper->_ident);
duke@435 1185 fprintf(fp,"private:\n");
duke@435 1186 // Operand definitions that depend upon number of input edges
duke@435 1187 {
duke@435 1188 uint num_edges = oper->num_edges(_globalNames);
duke@435 1189 if( num_edges != 1 ) { // Use MachOper::num_edges() {return 1;}
duke@435 1190 fprintf(fp," virtual uint num_edges() const { return %d; }\n",
duke@435 1191 num_edges );
duke@435 1192 }
duke@435 1193 if( num_edges > 0 ) {
duke@435 1194 in_RegMask(fp);
duke@435 1195 }
duke@435 1196 }
duke@435 1197
duke@435 1198 // Support storing constants inside the MachOper
duke@435 1199 declareConstStorage(fp,_globalNames,oper);
duke@435 1200
duke@435 1201 // Support storage of the condition codes
duke@435 1202 if( oper->is_ideal_bool() ) {
duke@435 1203 fprintf(fp," virtual int ccode() const { \n");
duke@435 1204 fprintf(fp," switch (_c0) {\n");
duke@435 1205 fprintf(fp," case BoolTest::eq : return equal();\n");
duke@435 1206 fprintf(fp," case BoolTest::gt : return greater();\n");
duke@435 1207 fprintf(fp," case BoolTest::lt : return less();\n");
duke@435 1208 fprintf(fp," case BoolTest::ne : return not_equal();\n");
duke@435 1209 fprintf(fp," case BoolTest::le : return less_equal();\n");
duke@435 1210 fprintf(fp," case BoolTest::ge : return greater_equal();\n");
duke@435 1211 fprintf(fp," default : ShouldNotReachHere(); return 0;\n");
duke@435 1212 fprintf(fp," }\n");
duke@435 1213 fprintf(fp," };\n");
duke@435 1214 }
duke@435 1215
duke@435 1216 // Support storage of the condition codes
duke@435 1217 if( oper->is_ideal_bool() ) {
duke@435 1218 fprintf(fp," virtual void negate() { \n");
duke@435 1219 fprintf(fp," _c0 = (BoolTest::mask)((int)_c0^0x4); \n");
duke@435 1220 fprintf(fp," };\n");
duke@435 1221 }
duke@435 1222
duke@435 1223 // Declare constructor.
duke@435 1224 // Parameters start with condition code, then all other constants
duke@435 1225 //
duke@435 1226 // (1) MachXOper(int32 ccode, int32 c0, int32 c1, ..., int32 cn)
duke@435 1227 // (2) : _ccode(ccode), _c0(c0), _c1(c1), ..., _cn(cn) { }
duke@435 1228 //
duke@435 1229 Form::DataType constant_type = oper->simple_type(_globalNames);
duke@435 1230 defineConstructor(fp, oper->_ident, oper->num_consts(_globalNames),
duke@435 1231 oper->_components, oper->is_ideal_bool(),
duke@435 1232 constant_type, _globalNames);
duke@435 1233
duke@435 1234 // Clone function
duke@435 1235 fprintf(fp," virtual MachOper *clone(Compile* C) const;\n");
duke@435 1236
duke@435 1237 // Support setting a spill offset into a constant operand.
duke@435 1238 // We only support setting an 'int' offset, while in the
duke@435 1239 // LP64 build spill offsets are added with an AddP which
duke@435 1240 // requires a long constant. Thus we don't support spilling
duke@435 1241 // in frames larger than 4Gig.
duke@435 1242 if( oper->has_conI(_globalNames) ||
duke@435 1243 oper->has_conL(_globalNames) )
duke@435 1244 fprintf(fp, " virtual void set_con( jint c0 ) { _c0 = c0; }\n");
duke@435 1245
duke@435 1246 // virtual functions for encoding and format
duke@435 1247 // fprintf(fp," virtual void encode() const {\n %s }\n",
duke@435 1248 // (oper->_encrule)?(oper->_encrule->_encrule):"");
duke@435 1249 // Check the interface type, and generate the correct query functions
duke@435 1250 // encoding queries based upon MEMORY_INTER, REG_INTER, CONST_INTER.
duke@435 1251
duke@435 1252 fprintf(fp," virtual uint opcode() const { return %s; }\n",
duke@435 1253 machOperEnum(oper->_ident));
duke@435 1254
duke@435 1255 // virtual function to look up ideal return type of machine instruction
duke@435 1256 //
duke@435 1257 // (1) virtual const Type *type() const { return .....; }
duke@435 1258 //
duke@435 1259 if ((oper->_matrule) && (oper->_matrule->_lChild == NULL) &&
duke@435 1260 (oper->_matrule->_rChild == NULL)) {
duke@435 1261 unsigned int position = 0;
duke@435 1262 const char *opret, *opname, *optype;
duke@435 1263 oper->_matrule->base_operand(position,_globalNames,opret,opname,optype);
kvn@4161 1264 fprintf(fp," virtual const Type *type() const {");
duke@435 1265 const char *type = getIdealType(optype);
duke@435 1266 if( type != NULL ) {
duke@435 1267 Form::DataType data_type = oper->is_base_constant(_globalNames);
duke@435 1268 // Check if we are an ideal pointer type
roland@4159 1269 if( data_type == Form::idealP || data_type == Form::idealN || data_type == Form::idealNKlass ) {
duke@435 1270 // Return the ideal type we already have: <TypePtr *>
duke@435 1271 fprintf(fp," return _c0;");
duke@435 1272 } else {
duke@435 1273 // Return the appropriate bottom type
duke@435 1274 fprintf(fp," return %s;", getIdealType(optype));
duke@435 1275 }
duke@435 1276 } else {
duke@435 1277 fprintf(fp," ShouldNotCallThis(); return Type::BOTTOM;");
duke@435 1278 }
duke@435 1279 fprintf(fp," }\n");
duke@435 1280 } else {
duke@435 1281 // Check for user-defined stack slots, based upon sRegX
duke@435 1282 Form::DataType data_type = oper->is_user_name_for_sReg();
duke@435 1283 if( data_type != Form::none ){
duke@435 1284 const char *type = NULL;
duke@435 1285 switch( data_type ) {
duke@435 1286 case Form::idealI: type = "TypeInt::INT"; break;
duke@435 1287 case Form::idealP: type = "TypePtr::BOTTOM";break;
duke@435 1288 case Form::idealF: type = "Type::FLOAT"; break;
duke@435 1289 case Form::idealD: type = "Type::DOUBLE"; break;
duke@435 1290 case Form::idealL: type = "TypeLong::LONG"; break;
duke@435 1291 case Form::none: // fall through
duke@435 1292 default:
duke@435 1293 assert( false, "No support for this type of stackSlot");
duke@435 1294 }
duke@435 1295 fprintf(fp," virtual const Type *type() const { return %s; } // stackSlotX\n", type);
duke@435 1296 }
duke@435 1297 }
duke@435 1298
duke@435 1299
duke@435 1300 //
duke@435 1301 // virtual functions for defining the encoding interface.
duke@435 1302 //
duke@435 1303 // Access the linearized ideal register mask,
duke@435 1304 // map to physical register encoding
duke@435 1305 if ( oper->_matrule && oper->_matrule->is_base_register(_globalNames) ) {
duke@435 1306 // Just use the default virtual 'reg' call
duke@435 1307 } else if ( oper->ideal_to_sReg_type(oper->_ident) != Form::none ) {
duke@435 1308 // Special handling for operand 'sReg', a Stack Slot Register.
duke@435 1309 // Map linearized ideal register mask to stack slot number
duke@435 1310 fprintf(fp," virtual int reg(PhaseRegAlloc *ra_, const Node *node) const {\n");
duke@435 1311 fprintf(fp," return (int)OptoReg::reg2stack(ra_->get_reg_first(node));/* sReg */\n");
duke@435 1312 fprintf(fp," }\n");
duke@435 1313 fprintf(fp," virtual int reg(PhaseRegAlloc *ra_, const Node *node, int idx) const {\n");
duke@435 1314 fprintf(fp," return (int)OptoReg::reg2stack(ra_->get_reg_first(node->in(idx)));/* sReg */\n");
duke@435 1315 fprintf(fp," }\n");
duke@435 1316 }
duke@435 1317
duke@435 1318 // Output the operand specific access functions used by an enc_class
duke@435 1319 // These are only defined when we want to override the default virtual func
duke@435 1320 if (oper->_interface != NULL) {
duke@435 1321 fprintf(fp,"\n");
duke@435 1322 // Check if it is a Memory Interface
duke@435 1323 if ( oper->_interface->is_MemInterface() != NULL ) {
duke@435 1324 MemInterface *mem_interface = oper->_interface->is_MemInterface();
duke@435 1325 const char *base = mem_interface->_base;
duke@435 1326 if( base != NULL ) {
duke@435 1327 define_oper_interface(fp, *oper, _globalNames, "base", base);
duke@435 1328 }
duke@435 1329 char *index = mem_interface->_index;
duke@435 1330 if( index != NULL ) {
duke@435 1331 define_oper_interface(fp, *oper, _globalNames, "index", index);
duke@435 1332 }
duke@435 1333 const char *scale = mem_interface->_scale;
duke@435 1334 if( scale != NULL ) {
duke@435 1335 define_oper_interface(fp, *oper, _globalNames, "scale", scale);
duke@435 1336 }
duke@435 1337 const char *disp = mem_interface->_disp;
duke@435 1338 if( disp != NULL ) {
duke@435 1339 define_oper_interface(fp, *oper, _globalNames, "disp", disp);
duke@435 1340 oper->disp_is_oop(fp, _globalNames);
duke@435 1341 }
duke@435 1342 if( oper->stack_slots_only(_globalNames) ) {
duke@435 1343 // should not call this:
duke@435 1344 fprintf(fp," virtual int constant_disp() const { return Type::OffsetBot; }");
duke@435 1345 } else if ( disp != NULL ) {
duke@435 1346 define_oper_interface(fp, *oper, _globalNames, "constant_disp", disp);
duke@435 1347 }
duke@435 1348 } // end Memory Interface
duke@435 1349 // Check if it is a Conditional Interface
duke@435 1350 else if (oper->_interface->is_CondInterface() != NULL) {
duke@435 1351 CondInterface *cInterface = oper->_interface->is_CondInterface();
duke@435 1352 const char *equal = cInterface->_equal;
duke@435 1353 if( equal != NULL ) {
duke@435 1354 define_oper_interface(fp, *oper, _globalNames, "equal", equal);
duke@435 1355 }
duke@435 1356 const char *not_equal = cInterface->_not_equal;
duke@435 1357 if( not_equal != NULL ) {
duke@435 1358 define_oper_interface(fp, *oper, _globalNames, "not_equal", not_equal);
duke@435 1359 }
duke@435 1360 const char *less = cInterface->_less;
duke@435 1361 if( less != NULL ) {
duke@435 1362 define_oper_interface(fp, *oper, _globalNames, "less", less);
duke@435 1363 }
duke@435 1364 const char *greater_equal = cInterface->_greater_equal;
duke@435 1365 if( greater_equal != NULL ) {
duke@435 1366 define_oper_interface(fp, *oper, _globalNames, "greater_equal", greater_equal);
duke@435 1367 }
duke@435 1368 const char *less_equal = cInterface->_less_equal;
duke@435 1369 if( less_equal != NULL ) {
duke@435 1370 define_oper_interface(fp, *oper, _globalNames, "less_equal", less_equal);
duke@435 1371 }
duke@435 1372 const char *greater = cInterface->_greater;
duke@435 1373 if( greater != NULL ) {
duke@435 1374 define_oper_interface(fp, *oper, _globalNames, "greater", greater);
duke@435 1375 }
duke@435 1376 } // end Conditional Interface
duke@435 1377 // Check if it is a Constant Interface
duke@435 1378 else if (oper->_interface->is_ConstInterface() != NULL ) {
duke@435 1379 assert( oper->num_consts(_globalNames) == 1,
duke@435 1380 "Must have one constant when using CONST_INTER encoding");
duke@435 1381 if (!strcmp(oper->ideal_type(_globalNames), "ConI")) {
duke@435 1382 // Access the locally stored constant
duke@435 1383 fprintf(fp," virtual intptr_t constant() const {");
duke@435 1384 fprintf(fp, " return (intptr_t)_c0;");
duke@435 1385 fprintf(fp," }\n");
duke@435 1386 }
duke@435 1387 else if (!strcmp(oper->ideal_type(_globalNames), "ConP")) {
duke@435 1388 // Access the locally stored constant
duke@435 1389 fprintf(fp," virtual intptr_t constant() const {");
duke@435 1390 fprintf(fp, " return _c0->get_con();");
duke@435 1391 fprintf(fp, " }\n");
duke@435 1392 // Generate query to determine if this pointer is an oop
coleenp@4037 1393 fprintf(fp," virtual relocInfo::relocType constant_reloc() const {");
coleenp@4037 1394 fprintf(fp, " return _c0->reloc();");
duke@435 1395 fprintf(fp, " }\n");
duke@435 1396 }
coleenp@548 1397 else if (!strcmp(oper->ideal_type(_globalNames), "ConN")) {
coleenp@548 1398 // Access the locally stored constant
coleenp@548 1399 fprintf(fp," virtual intptr_t constant() const {");
never@1262 1400 fprintf(fp, " return _c0->get_ptrtype()->get_con();");
coleenp@548 1401 fprintf(fp, " }\n");
coleenp@548 1402 // Generate query to determine if this pointer is an oop
coleenp@4037 1403 fprintf(fp," virtual relocInfo::relocType constant_reloc() const {");
coleenp@4037 1404 fprintf(fp, " return _c0->get_ptrtype()->reloc();");
coleenp@548 1405 fprintf(fp, " }\n");
coleenp@548 1406 }
roland@4159 1407 else if (!strcmp(oper->ideal_type(_globalNames), "ConNKlass")) {
roland@4159 1408 // Access the locally stored constant
roland@4159 1409 fprintf(fp," virtual intptr_t constant() const {");
roland@4159 1410 fprintf(fp, " return _c0->get_ptrtype()->get_con();");
roland@4159 1411 fprintf(fp, " }\n");
roland@4159 1412 // Generate query to determine if this pointer is an oop
roland@4159 1413 fprintf(fp," virtual relocInfo::relocType constant_reloc() const {");
roland@4159 1414 fprintf(fp, " return _c0->get_ptrtype()->reloc();");
roland@4159 1415 fprintf(fp, " }\n");
roland@4159 1416 }
duke@435 1417 else if (!strcmp(oper->ideal_type(_globalNames), "ConL")) {
duke@435 1418 fprintf(fp," virtual intptr_t constant() const {");
duke@435 1419 // We don't support addressing modes with > 4Gig offsets.
duke@435 1420 // Truncate to int.
duke@435 1421 fprintf(fp, " return (intptr_t)_c0;");
duke@435 1422 fprintf(fp, " }\n");
duke@435 1423 fprintf(fp," virtual jlong constantL() const {");
duke@435 1424 fprintf(fp, " return _c0;");
duke@435 1425 fprintf(fp, " }\n");
duke@435 1426 }
duke@435 1427 else if (!strcmp(oper->ideal_type(_globalNames), "ConF")) {
duke@435 1428 fprintf(fp," virtual intptr_t constant() const {");
duke@435 1429 fprintf(fp, " ShouldNotReachHere(); return 0; ");
duke@435 1430 fprintf(fp, " }\n");
duke@435 1431 fprintf(fp," virtual jfloat constantF() const {");
duke@435 1432 fprintf(fp, " return (jfloat)_c0;");
duke@435 1433 fprintf(fp, " }\n");
duke@435 1434 }
duke@435 1435 else if (!strcmp(oper->ideal_type(_globalNames), "ConD")) {
duke@435 1436 fprintf(fp," virtual intptr_t constant() const {");
duke@435 1437 fprintf(fp, " ShouldNotReachHere(); return 0; ");
duke@435 1438 fprintf(fp, " }\n");
duke@435 1439 fprintf(fp," virtual jdouble constantD() const {");
duke@435 1440 fprintf(fp, " return _c0;");
duke@435 1441 fprintf(fp, " }\n");
duke@435 1442 }
duke@435 1443 }
duke@435 1444 else if (oper->_interface->is_RegInterface() != NULL) {
duke@435 1445 // make sure that a fixed format string isn't used for an
duke@435 1446 // operand which might be assiged to multiple registers.
duke@435 1447 // Otherwise the opto assembly output could be misleading.
duke@435 1448 if (oper->_format->_strings.count() != 0 && !oper->is_bound_register()) {
duke@435 1449 syntax_err(oper->_linenum,
duke@435 1450 "Only bound registers can have fixed formats: %s\n",
duke@435 1451 oper->_ident);
duke@435 1452 }
duke@435 1453 }
duke@435 1454 else {
duke@435 1455 assert( false, "ShouldNotReachHere();");
duke@435 1456 }
duke@435 1457 }
duke@435 1458
duke@435 1459 fprintf(fp,"\n");
duke@435 1460 // // Currently all XXXOper::hash() methods are identical (990820)
duke@435 1461 // declare_hash(fp);
duke@435 1462 // // Currently all XXXOper::Cmp() methods are identical (990820)
duke@435 1463 // declare_cmp(fp);
duke@435 1464
duke@435 1465 // Do not place dump_spec() and Name() into PRODUCT code
duke@435 1466 // int_format and ext_format are not needed in PRODUCT code either
duke@435 1467 fprintf(fp, "#ifndef PRODUCT\n");
duke@435 1468
duke@435 1469 // Declare int_format() and ext_format()
duke@435 1470 gen_oper_format(fp, _globalNames, *oper);
duke@435 1471
duke@435 1472 // Machine independent print functionality for debugging
duke@435 1473 // IF we have constants, create a dump_spec function for the derived class
duke@435 1474 //
duke@435 1475 // (1) virtual void dump_spec() const {
duke@435 1476 // (2) st->print("#%d", _c#); // Constant != ConP
duke@435 1477 // OR _c#->dump_on(st); // Type ConP
duke@435 1478 // ...
duke@435 1479 // (3) }
duke@435 1480 uint num_consts = oper->num_consts(_globalNames);
duke@435 1481 if( num_consts > 0 ) {
duke@435 1482 // line (1)
duke@435 1483 fprintf(fp, " virtual void dump_spec(outputStream *st) const {\n");
duke@435 1484 // generate format string for st->print
duke@435 1485 // Iterate over the component list & spit out the right thing
duke@435 1486 uint i = 0;
duke@435 1487 const char *type = oper->ideal_type(_globalNames);
duke@435 1488 Component *comp;
duke@435 1489 oper->_components.reset();
duke@435 1490 if ((comp = oper->_components.iter()) == NULL) {
duke@435 1491 assert(num_consts == 1, "Bad component list detected.\n");
never@850 1492 i = dump_spec_constant( fp, type, i, oper );
duke@435 1493 // Check that type actually matched
duke@435 1494 assert( i != 0, "Non-constant operand lacks component list.");
duke@435 1495 } // end if NULL
duke@435 1496 else {
duke@435 1497 // line (2)
duke@435 1498 // dump all components
duke@435 1499 oper->_components.reset();
duke@435 1500 while((comp = oper->_components.iter()) != NULL) {
duke@435 1501 type = comp->base_type(_globalNames);
never@850 1502 i = dump_spec_constant( fp, type, i, NULL );
duke@435 1503 }
duke@435 1504 }
duke@435 1505 // finish line (3)
duke@435 1506 fprintf(fp," }\n");
duke@435 1507 }
duke@435 1508
duke@435 1509 fprintf(fp," virtual const char *Name() const { return \"%s\";}\n",
duke@435 1510 oper->_ident);
duke@435 1511
duke@435 1512 fprintf(fp,"#endif\n");
duke@435 1513
duke@435 1514 // Close definition of this XxxMachOper
duke@435 1515 fprintf(fp,"};\n");
duke@435 1516 }
duke@435 1517
duke@435 1518
duke@435 1519 // Generate Machine Classes for each instruction defined in AD file
duke@435 1520 fprintf(fp,"\n");
duke@435 1521 fprintf(fp,"//----------------------------Declare classes for Pipelines-----------------\n");
duke@435 1522 declare_pipe_classes(fp);
duke@435 1523
duke@435 1524 // Generate Machine Classes for each instruction defined in AD file
duke@435 1525 fprintf(fp,"\n");
duke@435 1526 fprintf(fp,"//----------------------------Declare classes derived from MachNode----------\n");
duke@435 1527 _instructions.reset();
duke@435 1528 InstructForm *instr;
duke@435 1529 for( ; (instr = (InstructForm*)_instructions.iter()) != NULL; ) {
duke@435 1530 // Ensure this is a machine-world instruction
duke@435 1531 if ( instr->ideal_only() ) continue;
duke@435 1532
duke@435 1533 // Build class definition for this instruction
duke@435 1534 fprintf(fp,"\n");
duke@435 1535 fprintf(fp,"class %sNode : public %s { \n",
never@1896 1536 instr->_ident, instr->mach_base_class(_globalNames) );
duke@435 1537 fprintf(fp,"private:\n");
duke@435 1538 fprintf(fp," MachOper *_opnd_array[%d];\n", instr->num_opnds() );
duke@435 1539 if ( instr->is_ideal_jump() ) {
duke@435 1540 fprintf(fp, " GrowableArray<Label*> _index2label;\n");
duke@435 1541 }
goetz@6469 1542
goetz@6469 1543 fprintf(fp, "public:\n");
goetz@6469 1544
goetz@6469 1545 Attribute *att = instr->_attribs;
goetz@6469 1546 // Fields of the node specified in the ad file.
goetz@6469 1547 while (att != NULL) {
goetz@6469 1548 if (strncmp(att->_ident, "ins_field_", 10) == 0) {
goetz@6469 1549 const char *field_name = att->_ident+10;
goetz@6469 1550 const char *field_type = att->_val;
goetz@6469 1551 fprintf(fp, " %s _%s;\n", field_type, field_name);
goetz@6469 1552 }
goetz@6469 1553 att = (Attribute *)att->_next;
goetz@6469 1554 }
goetz@6469 1555
kvn@4161 1556 fprintf(fp," MachOper *opnd_array(uint operand_index) const {\n");
kvn@4161 1557 fprintf(fp," assert(operand_index < _num_opnds, \"invalid _opnd_array index\");\n");
kvn@4161 1558 fprintf(fp," return _opnd_array[operand_index];\n");
kvn@4161 1559 fprintf(fp," }\n");
kvn@4161 1560 fprintf(fp," void set_opnd_array(uint operand_index, MachOper *operand) {\n");
kvn@4161 1561 fprintf(fp," assert(operand_index < _num_opnds, \"invalid _opnd_array index\");\n");
kvn@4161 1562 fprintf(fp," _opnd_array[operand_index] = operand;\n");
kvn@4161 1563 fprintf(fp," }\n");
duke@435 1564 fprintf(fp,"private:\n");
duke@435 1565 if ( instr->is_ideal_jump() ) {
duke@435 1566 fprintf(fp," virtual void add_case_label(int index_num, Label* blockLabel) {\n");
kvn@4161 1567 fprintf(fp," _index2label.at_put_grow(index_num, blockLabel);\n");
kvn@4161 1568 fprintf(fp," }\n");
duke@435 1569 }
duke@435 1570 if( can_cisc_spill() && (instr->cisc_spill_alternate() != NULL) ) {
duke@435 1571 fprintf(fp," const RegMask *_cisc_RegMask;\n");
duke@435 1572 }
duke@435 1573
duke@435 1574 out_RegMask(fp); // output register mask
duke@435 1575 fprintf(fp," virtual uint rule() const { return %s_rule; }\n",
duke@435 1576 instr->_ident);
duke@435 1577
duke@435 1578 // If this instruction contains a labelOper
duke@435 1579 // Declare Node::methods that set operand Label's contents
duke@435 1580 int label_position = instr->label_position();
duke@435 1581 if( label_position != -1 ) {
kvn@3051 1582 // Set/Save the label, stored in labelOper::_branch_label
kvn@3037 1583 fprintf(fp," virtual void label_set( Label* label, uint block_num );\n");
kvn@3051 1584 fprintf(fp," virtual void save_label( Label** label, uint* block_num );\n");
duke@435 1585 }
duke@435 1586
duke@435 1587 // If this instruction contains a methodOper
duke@435 1588 // Declare Node::methods that set operand method's contents
duke@435 1589 int method_position = instr->method_position();
duke@435 1590 if( method_position != -1 ) {
duke@435 1591 // Set the address method, stored in methodOper::_method
duke@435 1592 fprintf(fp," virtual void method_set( intptr_t method );\n");
duke@435 1593 }
duke@435 1594
duke@435 1595 // virtual functions for attributes
duke@435 1596 //
duke@435 1597 // Each instruction attribute results in a virtual call of same name.
duke@435 1598 // The ins_cost is not handled here.
duke@435 1599 Attribute *attr = instr->_attribs;
kvn@3049 1600 bool avoid_back_to_back = false;
duke@435 1601 while (attr != NULL) {
goetz@6469 1602 if (strcmp (attr->_ident,"ins_cost") &&
goetz@6469 1603 strncmp(attr->_ident,"ins_field_", 10) != 0 &&
goetz@6469 1604 strcmp (attr->_ident,"ins_short_branch")) {
kvn@4161 1605 fprintf(fp," int %s() const { return %s; }\n",
duke@435 1606 attr->_ident, attr->_val);
duke@435 1607 }
kvn@3049 1608 // Check value for ins_avoid_back_to_back, and if it is true (1), set the flag
kvn@3049 1609 if (!strcmp(attr->_ident,"ins_avoid_back_to_back") && attr->int_val(*this) != 0)
kvn@3049 1610 avoid_back_to_back = true;
duke@435 1611 attr = (Attribute *)attr->_next;
duke@435 1612 }
duke@435 1613
duke@435 1614 // virtual functions for encode and format
twisti@2350 1615
twisti@2350 1616 // Virtual function for evaluating the constant.
twisti@2350 1617 if (instr->is_mach_constant()) {
twisti@2350 1618 fprintf(fp," virtual void eval_constant(Compile* C);\n");
twisti@2350 1619 }
twisti@2350 1620
duke@435 1621 // Output the opcode function and the encode function here using the
duke@435 1622 // encoding class information in the _insencode slot.
duke@435 1623 if ( instr->_insencode ) {
duke@435 1624 fprintf(fp," virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const;\n");
duke@435 1625 }
duke@435 1626
duke@435 1627 // virtual function for getting the size of an instruction
duke@435 1628 if ( instr->_size ) {
twisti@2350 1629 fprintf(fp," virtual uint size(PhaseRegAlloc *ra_) const;\n");
duke@435 1630 }
duke@435 1631
duke@435 1632 // Return the top-level ideal opcode.
duke@435 1633 // Use MachNode::ideal_Opcode() for nodes based on MachNode class
duke@435 1634 // if the ideal_Opcode == Op_Node.
duke@435 1635 if ( strcmp("Node", instr->ideal_Opcode(_globalNames)) != 0 ||
never@1896 1636 strcmp("MachNode", instr->mach_base_class(_globalNames)) != 0 ) {
duke@435 1637 fprintf(fp," virtual int ideal_Opcode() const { return Op_%s; }\n",
duke@435 1638 instr->ideal_Opcode(_globalNames) );
duke@435 1639 }
duke@435 1640
duke@435 1641 // Allow machine-independent optimization, invert the sense of the IF test
duke@435 1642 if( instr->is_ideal_if() ) {
duke@435 1643 fprintf(fp," virtual void negate() { \n");
duke@435 1644 // Identify which operand contains the negate(able) ideal condition code
duke@435 1645 int idx = 0;
duke@435 1646 instr->_components.reset();
duke@435 1647 for( Component *comp; (comp = instr->_components.iter()) != NULL; ) {
duke@435 1648 // Check that component is an operand
duke@435 1649 Form *form = (Form*)_globalNames[comp->_type];
duke@435 1650 OperandForm *opForm = form ? form->is_operand() : NULL;
duke@435 1651 if( opForm == NULL ) continue;
duke@435 1652
duke@435 1653 // Lookup the position of the operand in the instruction.
duke@435 1654 if( opForm->is_ideal_bool() ) {
duke@435 1655 idx = instr->operand_position(comp->_name, comp->_usedef);
duke@435 1656 assert( idx != NameList::Not_in_list, "Did not find component in list that contained it.");
duke@435 1657 break;
duke@435 1658 }
duke@435 1659 }
duke@435 1660 fprintf(fp," opnd_array(%d)->negate();\n", idx);
duke@435 1661 fprintf(fp," _prob = 1.0f - _prob;\n");
duke@435 1662 fprintf(fp," };\n");
duke@435 1663 }
duke@435 1664
duke@435 1665
duke@435 1666 // Identify which input register matches the input register.
duke@435 1667 uint matching_input = instr->two_address(_globalNames);
duke@435 1668
duke@435 1669 // Generate the method if it returns != 0 otherwise use MachNode::two_adr()
duke@435 1670 if( matching_input != 0 ) {
duke@435 1671 fprintf(fp," virtual uint two_adr() const ");
duke@435 1672 fprintf(fp,"{ return oper_input_base()");
duke@435 1673 for( uint i = 2; i <= matching_input; i++ )
duke@435 1674 fprintf(fp," + opnd_array(%d)->num_edges()",i-1);
duke@435 1675 fprintf(fp,"; }\n");
duke@435 1676 }
duke@435 1677
duke@435 1678 // Declare cisc_version, if applicable
duke@435 1679 // MachNode *cisc_version( int offset /* ,... */ );
duke@435 1680 instr->declare_cisc_version(*this, fp);
duke@435 1681
duke@435 1682 // If there is an explicit peephole rule, build it
duke@435 1683 if ( instr->peepholes() != NULL ) {
duke@435 1684 fprintf(fp," virtual MachNode *peephole(Block *block, int block_index, PhaseRegAlloc *ra_, int &deleted, Compile *C);\n");
duke@435 1685 }
duke@435 1686
duke@435 1687 // Output the declaration for number of relocation entries
duke@435 1688 if ( instr->reloc(_globalNames) != 0 ) {
kvn@4161 1689 fprintf(fp," virtual int reloc() const;\n");
duke@435 1690 }
duke@435 1691
duke@435 1692 if (instr->alignment() != 1) {
kvn@4161 1693 fprintf(fp," virtual int alignment_required() const { return %d; }\n", instr->alignment());
kvn@4161 1694 fprintf(fp," virtual int compute_padding(int current_offset) const;\n");
duke@435 1695 }
duke@435 1696
duke@435 1697 // Starting point for inputs matcher wants.
duke@435 1698 // Use MachNode::oper_input_base() for nodes based on MachNode class
duke@435 1699 // if the base == 1.
duke@435 1700 if ( instr->oper_input_base(_globalNames) != 1 ||
never@1896 1701 strcmp("MachNode", instr->mach_base_class(_globalNames)) != 0 ) {
duke@435 1702 fprintf(fp," virtual uint oper_input_base() const { return %d; }\n",
duke@435 1703 instr->oper_input_base(_globalNames));
duke@435 1704 }
duke@435 1705
duke@435 1706 // Make the constructor and following methods 'public:'
duke@435 1707 fprintf(fp,"public:\n");
duke@435 1708
duke@435 1709 // Constructor
duke@435 1710 if ( instr->is_ideal_jump() ) {
duke@435 1711 fprintf(fp," %sNode() : _index2label(MinJumpTableSize*2) { ", instr->_ident);
duke@435 1712 } else {
duke@435 1713 fprintf(fp," %sNode() { ", instr->_ident);
duke@435 1714 if( can_cisc_spill() && (instr->cisc_spill_alternate() != NULL) ) {
duke@435 1715 fprintf(fp,"_cisc_RegMask = NULL; ");
duke@435 1716 }
duke@435 1717 }
duke@435 1718
duke@435 1719 fprintf(fp," _num_opnds = %d; _opnds = _opnd_array; ", instr->num_opnds());
duke@435 1720
duke@435 1721 bool node_flags_set = false;
duke@435 1722 // flag: if this instruction matches an ideal 'Copy*' node
duke@435 1723 if ( instr->is_ideal_copy() != 0 ) {
kvn@3040 1724 fprintf(fp,"init_flags(Flag_is_Copy");
kvn@3040 1725 node_flags_set = true;
duke@435 1726 }
duke@435 1727
duke@435 1728 // Is an instruction is a constant? If so, get its type
duke@435 1729 Form::DataType data_type;
duke@435 1730 const char *opType = NULL;
duke@435 1731 const char *result = NULL;
duke@435 1732 data_type = instr->is_chain_of_constant(_globalNames, opType, result);
duke@435 1733 // Check if this instruction is a constant
duke@435 1734 if ( data_type != Form::none ) {
duke@435 1735 if ( node_flags_set ) {
duke@435 1736 fprintf(fp," | Flag_is_Con");
duke@435 1737 } else {
duke@435 1738 fprintf(fp,"init_flags(Flag_is_Con");
duke@435 1739 node_flags_set = true;
duke@435 1740 }
duke@435 1741 }
duke@435 1742
duke@435 1743 // flag: if this instruction is cisc alternate
duke@435 1744 if ( can_cisc_spill() && instr->is_cisc_alternate() ) {
duke@435 1745 if ( node_flags_set ) {
duke@435 1746 fprintf(fp," | Flag_is_cisc_alternate");
duke@435 1747 } else {
duke@435 1748 fprintf(fp,"init_flags(Flag_is_cisc_alternate");
duke@435 1749 node_flags_set = true;
duke@435 1750 }
duke@435 1751 }
duke@435 1752
duke@435 1753 // flag: if this instruction has short branch form
duke@435 1754 if ( instr->has_short_branch_form() ) {
duke@435 1755 if ( node_flags_set ) {
duke@435 1756 fprintf(fp," | Flag_may_be_short_branch");
duke@435 1757 } else {
duke@435 1758 fprintf(fp,"init_flags(Flag_may_be_short_branch");
duke@435 1759 node_flags_set = true;
duke@435 1760 }
duke@435 1761 }
duke@435 1762
kvn@3049 1763 // flag: if this instruction should not be generated back to back.
kvn@3049 1764 if ( avoid_back_to_back ) {
kvn@3049 1765 if ( node_flags_set ) {
kvn@3049 1766 fprintf(fp," | Flag_avoid_back_to_back");
kvn@3049 1767 } else {
kvn@3049 1768 fprintf(fp,"init_flags(Flag_avoid_back_to_back");
kvn@3049 1769 node_flags_set = true;
kvn@3049 1770 }
kvn@3049 1771 }
kvn@3049 1772
duke@435 1773 // Check if machine instructions that USE memory, but do not DEF memory,
duke@435 1774 // depend upon a node that defines memory in machine-independent graph.
duke@435 1775 if ( instr->needs_anti_dependence_check(_globalNames) ) {
duke@435 1776 if ( node_flags_set ) {
duke@435 1777 fprintf(fp," | Flag_needs_anti_dependence_check");
duke@435 1778 } else {
duke@435 1779 fprintf(fp,"init_flags(Flag_needs_anti_dependence_check");
duke@435 1780 node_flags_set = true;
duke@435 1781 }
duke@435 1782 }
duke@435 1783
roland@3316 1784 // flag: if this instruction is implemented with a call
roland@3316 1785 if ( instr->_has_call ) {
roland@3316 1786 if ( node_flags_set ) {
roland@3316 1787 fprintf(fp," | Flag_has_call");
roland@3316 1788 } else {
roland@3316 1789 fprintf(fp,"init_flags(Flag_has_call");
roland@3316 1790 node_flags_set = true;
roland@3316 1791 }
roland@3316 1792 }
roland@3316 1793
duke@435 1794 if ( node_flags_set ) {
duke@435 1795 fprintf(fp,"); ");
duke@435 1796 }
duke@435 1797
duke@435 1798 fprintf(fp,"}\n");
duke@435 1799
duke@435 1800 // size_of, used by base class's clone to obtain the correct size.
duke@435 1801 fprintf(fp," virtual uint size_of() const {");
duke@435 1802 fprintf(fp, " return sizeof(%sNode);", instr->_ident);
duke@435 1803 fprintf(fp, " }\n");
duke@435 1804
duke@435 1805 // Virtual methods which are only generated to override base class
duke@435 1806 if( instr->expands() || instr->needs_projections() ||
duke@435 1807 instr->has_temps() ||
twisti@2350 1808 instr->is_mach_constant() ||
duke@435 1809 instr->_matrule != NULL &&
duke@435 1810 instr->num_opnds() != instr->num_unique_opnds() ) {
never@1638 1811 fprintf(fp," virtual MachNode *Expand(State *state, Node_List &proj_list, Node* mem);\n");
duke@435 1812 }
duke@435 1813
duke@435 1814 if (instr->is_pinned(_globalNames)) {
duke@435 1815 fprintf(fp," virtual bool pinned() const { return ");
duke@435 1816 if (instr->is_parm(_globalNames)) {
duke@435 1817 fprintf(fp,"_in[0]->pinned();");
duke@435 1818 } else {
duke@435 1819 fprintf(fp,"true;");
duke@435 1820 }
duke@435 1821 fprintf(fp," }\n");
duke@435 1822 }
duke@435 1823 if (instr->is_projection(_globalNames)) {
duke@435 1824 fprintf(fp," virtual const Node *is_block_proj() const { return this; }\n");
duke@435 1825 }
duke@435 1826 if ( instr->num_post_match_opnds() != 0
duke@435 1827 || instr->is_chain_of_constant(_globalNames) ) {
duke@435 1828 fprintf(fp," friend MachNode *State::MachNodeGenerator(int opcode, Compile* C);\n");
duke@435 1829 }
duke@435 1830 if ( instr->rematerialize(_globalNames, get_registers()) ) {
duke@435 1831 fprintf(fp," // Rematerialize %s\n", instr->_ident);
duke@435 1832 }
duke@435 1833
duke@435 1834 // Declare short branch methods, if applicable
duke@435 1835 instr->declare_short_branch_methods(fp);
duke@435 1836
duke@435 1837 // See if there is an "ins_pipe" declaration for this instruction
duke@435 1838 if (instr->_ins_pipe) {
duke@435 1839 fprintf(fp," static const Pipeline *pipeline_class();\n");
duke@435 1840 fprintf(fp," virtual const Pipeline *pipeline() const;\n");
duke@435 1841 }
duke@435 1842
duke@435 1843 // Generate virtual function for MachNodeX::bottom_type when necessary
duke@435 1844 //
duke@435 1845 // Note on accuracy: Pointer-types of machine nodes need to be accurate,
duke@435 1846 // or else alias analysis on the matched graph may produce bad code.
duke@435 1847 // Moreover, the aliasing decisions made on machine-node graph must be
duke@435 1848 // no less accurate than those made on the ideal graph, or else the graph
duke@435 1849 // may fail to schedule. (Reason: Memory ops which are reordered in
duke@435 1850 // the ideal graph might look interdependent in the machine graph,
duke@435 1851 // thereby removing degrees of scheduling freedom that the optimizer
duke@435 1852 // assumed would be available.)
duke@435 1853 //
duke@435 1854 // %%% We should handle many of these cases with an explicit ADL clause:
duke@435 1855 // instruct foo() %{ ... bottom_type(TypeRawPtr::BOTTOM); ... %}
duke@435 1856 if( data_type != Form::none ) {
duke@435 1857 // A constant's bottom_type returns a Type containing its constant value
duke@435 1858
duke@435 1859 // !!!!!
duke@435 1860 // Convert all ints, floats, ... to machine-independent TypeXs
duke@435 1861 // as is done for pointers
duke@435 1862 //
duke@435 1863 // Construct appropriate constant type containing the constant value.
kvn@4161 1864 fprintf(fp," virtual const class Type *bottom_type() const {\n");
duke@435 1865 switch( data_type ) {
duke@435 1866 case Form::idealI:
duke@435 1867 fprintf(fp," return TypeInt::make(opnd_array(1)->constant());\n");
duke@435 1868 break;
duke@435 1869 case Form::idealP:
coleenp@548 1870 case Form::idealN:
roland@4159 1871 case Form::idealNKlass:
twisti@1038 1872 fprintf(fp," return opnd_array(1)->type();\n");
duke@435 1873 break;
duke@435 1874 case Form::idealD:
duke@435 1875 fprintf(fp," return TypeD::make(opnd_array(1)->constantD());\n");
duke@435 1876 break;
duke@435 1877 case Form::idealF:
duke@435 1878 fprintf(fp," return TypeF::make(opnd_array(1)->constantF());\n");
duke@435 1879 break;
duke@435 1880 case Form::idealL:
duke@435 1881 fprintf(fp," return TypeLong::make(opnd_array(1)->constantL());\n");
duke@435 1882 break;
duke@435 1883 default:
duke@435 1884 assert( false, "Unimplemented()" );
duke@435 1885 break;
duke@435 1886 }
duke@435 1887 fprintf(fp," };\n");
duke@435 1888 }
duke@435 1889 /* else if ( instr->_matrule && instr->_matrule->_rChild &&
duke@435 1890 ( strcmp("ConvF2I",instr->_matrule->_rChild->_opType)==0
duke@435 1891 || strcmp("ConvD2I",instr->_matrule->_rChild->_opType)==0 ) ) {
duke@435 1892 // !!!!! !!!!!
duke@435 1893 // Provide explicit bottom type for conversions to int
duke@435 1894 // On Intel the result operand is a stackSlot, untyped.
kvn@4161 1895 fprintf(fp," virtual const class Type *bottom_type() const {");
duke@435 1896 fprintf(fp, " return TypeInt::INT;");
duke@435 1897 fprintf(fp, " };\n");
duke@435 1898 }*/
duke@435 1899 else if( instr->is_ideal_copy() &&
duke@435 1900 !strcmp(instr->_matrule->_lChild->_opType,"stackSlotP") ) {
duke@435 1901 // !!!!!
duke@435 1902 // Special hack for ideal Copy of pointer. Bottom type is oop or not depending on input.
duke@435 1903 fprintf(fp," const Type *bottom_type() const { return in(1)->bottom_type(); } // Copy?\n");
duke@435 1904 }
duke@435 1905 else if( instr->is_ideal_loadPC() ) {
duke@435 1906 // LoadPCNode provides the return address of a call to native code.
duke@435 1907 // Define its bottom type to be TypeRawPtr::BOTTOM instead of TypePtr::BOTTOM
duke@435 1908 // since it is a pointer to an internal VM location and must have a zero offset.
duke@435 1909 // Allocation detects derived pointers, in part, by their non-zero offsets.
duke@435 1910 fprintf(fp," const Type *bottom_type() const { return TypeRawPtr::BOTTOM; } // LoadPC?\n");
duke@435 1911 }
duke@435 1912 else if( instr->is_ideal_box() ) {
duke@435 1913 // BoxNode provides the address of a stack slot.
duke@435 1914 // Define its bottom type to be TypeRawPtr::BOTTOM instead of TypePtr::BOTTOM
duke@435 1915 // This prevent s insert_anti_dependencies from complaining. It will
kvn@4161 1916 // complain if it sees that the pointer base is TypePtr::BOTTOM since
duke@435 1917 // it doesn't understand what that might alias.
duke@435 1918 fprintf(fp," const Type *bottom_type() const { return TypeRawPtr::BOTTOM; } // Box?\n");
duke@435 1919 }
duke@435 1920 else if( instr->_matrule && instr->_matrule->_rChild && !strcmp(instr->_matrule->_rChild->_opType,"CMoveP") ) {
duke@435 1921 int offset = 1;
duke@435 1922 // Special special hack to see if the Cmp? has been incorporated in the conditional move
duke@435 1923 MatchNode *rl = instr->_matrule->_rChild->_lChild;
duke@435 1924 if( rl && !strcmp(rl->_opType, "Binary") ) {
duke@435 1925 MatchNode *rlr = rl->_rChild;
duke@435 1926 if (rlr && strncmp(rlr->_opType, "Cmp", 3) == 0)
duke@435 1927 offset = 2;
duke@435 1928 }
duke@435 1929 // Special hack for ideal CMoveP; ideal type depends on inputs
duke@435 1930 fprintf(fp," const Type *bottom_type() const { const Type *t = in(oper_input_base()+%d)->bottom_type(); return (req() <= oper_input_base()+%d) ? t : t->meet(in(oper_input_base()+%d)->bottom_type()); } // CMoveP\n",
duke@435 1931 offset, offset+1, offset+1);
duke@435 1932 }
kvn@728 1933 else if( instr->_matrule && instr->_matrule->_rChild && !strcmp(instr->_matrule->_rChild->_opType,"CMoveN") ) {
kvn@728 1934 int offset = 1;
kvn@728 1935 // Special special hack to see if the Cmp? has been incorporated in the conditional move
kvn@728 1936 MatchNode *rl = instr->_matrule->_rChild->_lChild;
kvn@728 1937 if( rl && !strcmp(rl->_opType, "Binary") ) {
kvn@728 1938 MatchNode *rlr = rl->_rChild;
kvn@728 1939 if (rlr && strncmp(rlr->_opType, "Cmp", 3) == 0)
kvn@728 1940 offset = 2;
kvn@728 1941 }
kvn@728 1942 // Special hack for ideal CMoveN; ideal type depends on inputs
kvn@728 1943 fprintf(fp," const Type *bottom_type() const { const Type *t = in(oper_input_base()+%d)->bottom_type(); return (req() <= oper_input_base()+%d) ? t : t->meet(in(oper_input_base()+%d)->bottom_type()); } // CMoveN\n",
kvn@728 1944 offset, offset+1, offset+1);
kvn@728 1945 }
duke@435 1946 else if (instr->is_tls_instruction()) {
duke@435 1947 // Special hack for tlsLoadP
duke@435 1948 fprintf(fp," const Type *bottom_type() const { return TypeRawPtr::BOTTOM; } // tlsLoadP\n");
duke@435 1949 }
duke@435 1950 else if ( instr->is_ideal_if() ) {
duke@435 1951 fprintf(fp," const Type *bottom_type() const { return TypeTuple::IFBOTH; } // matched IfNode\n");
duke@435 1952 }
duke@435 1953 else if ( instr->is_ideal_membar() ) {
duke@435 1954 fprintf(fp," const Type *bottom_type() const { return TypeTuple::MEMBAR; } // matched MemBar\n");
duke@435 1955 }
duke@435 1956
duke@435 1957 // Check where 'ideal_type' must be customized
duke@435 1958 /*
duke@435 1959 if ( instr->_matrule && instr->_matrule->_rChild &&
duke@435 1960 ( strcmp("ConvF2I",instr->_matrule->_rChild->_opType)==0
duke@435 1961 || strcmp("ConvD2I",instr->_matrule->_rChild->_opType)==0 ) ) {
duke@435 1962 fprintf(fp," virtual uint ideal_reg() const { return Compile::current()->matcher()->base2reg[Type::Int]; }\n");
duke@435 1963 }*/
duke@435 1964
duke@435 1965 // Analyze machine instructions that either USE or DEF memory.
duke@435 1966 int memory_operand = instr->memory_operand(_globalNames);
duke@435 1967 // Some guys kill all of memory
duke@435 1968 if ( instr->is_wide_memory_kill(_globalNames) ) {
duke@435 1969 memory_operand = InstructForm::MANY_MEMORY_OPERANDS;
duke@435 1970 }
duke@435 1971 if ( memory_operand != InstructForm::NO_MEMORY_OPERAND ) {
duke@435 1972 if( memory_operand == InstructForm::MANY_MEMORY_OPERANDS ) {
duke@435 1973 fprintf(fp," virtual const TypePtr *adr_type() const;\n");
duke@435 1974 }
duke@435 1975 fprintf(fp," virtual const MachOper *memory_operand() const;\n");
duke@435 1976 }
duke@435 1977
duke@435 1978 fprintf(fp, "#ifndef PRODUCT\n");
duke@435 1979
duke@435 1980 // virtual function for generating the user's assembler output
duke@435 1981 gen_inst_format(fp, _globalNames,*instr);
duke@435 1982
duke@435 1983 // Machine independent print functionality for debugging
duke@435 1984 fprintf(fp," virtual const char *Name() const { return \"%s\";}\n",
duke@435 1985 instr->_ident);
duke@435 1986
duke@435 1987 fprintf(fp, "#endif\n");
duke@435 1988
duke@435 1989 // Close definition of this XxxMachNode
duke@435 1990 fprintf(fp,"};\n");
duke@435 1991 };
duke@435 1992
duke@435 1993 }
duke@435 1994
duke@435 1995 void ArchDesc::defineStateClass(FILE *fp) {
duke@435 1996 static const char *state__valid = "_valid[((uint)index) >> 5] & (0x1 << (((uint)index) & 0x0001F))";
duke@435 1997 static const char *state__set_valid= "_valid[((uint)index) >> 5] |= (0x1 << (((uint)index) & 0x0001F))";
duke@435 1998
duke@435 1999 fprintf(fp,"\n");
duke@435 2000 fprintf(fp,"// MACROS to inline and constant fold State::valid(index)...\n");
duke@435 2001 fprintf(fp,"// when given a constant 'index' in dfa_<arch>.cpp\n");
duke@435 2002 fprintf(fp,"// uint word = index >> 5; // Shift out bit position\n");
duke@435 2003 fprintf(fp,"// uint bitpos = index & 0x0001F; // Mask off word bits\n");
duke@435 2004 fprintf(fp,"#define STATE__VALID(index) ");
duke@435 2005 fprintf(fp," (%s)\n", state__valid);
duke@435 2006 fprintf(fp,"\n");
duke@435 2007 fprintf(fp,"#define STATE__NOT_YET_VALID(index) ");
duke@435 2008 fprintf(fp," ( (%s) == 0 )\n", state__valid);
duke@435 2009 fprintf(fp,"\n");
duke@435 2010 fprintf(fp,"#define STATE__VALID_CHILD(state,index) ");
duke@435 2011 fprintf(fp," ( state && (state->%s) )\n", state__valid);
duke@435 2012 fprintf(fp,"\n");
duke@435 2013 fprintf(fp,"#define STATE__SET_VALID(index) ");
duke@435 2014 fprintf(fp," (%s)\n", state__set_valid);
duke@435 2015 fprintf(fp,"\n");
duke@435 2016 fprintf(fp,
duke@435 2017 "//---------------------------State-------------------------------------------\n");
duke@435 2018 fprintf(fp,"// State contains an integral cost vector, indexed by machine operand opcodes,\n");
duke@435 2019 fprintf(fp,"// a rule vector consisting of machine operand/instruction opcodes, and also\n");
duke@435 2020 fprintf(fp,"// indexed by machine operand opcodes, pointers to the children in the label\n");
duke@435 2021 fprintf(fp,"// tree generated by the Label routines in ideal nodes (currently limited to\n");
duke@435 2022 fprintf(fp,"// two for convenience, but this could change).\n");
duke@435 2023 fprintf(fp,"class State : public ResourceObj {\n");
duke@435 2024 fprintf(fp,"public:\n");
duke@435 2025 fprintf(fp," int _id; // State identifier\n");
duke@435 2026 fprintf(fp," Node *_leaf; // Ideal (non-machine-node) leaf of match tree\n");
duke@435 2027 fprintf(fp," State *_kids[2]; // Children of state node in label tree\n");
duke@435 2028 fprintf(fp," unsigned int _cost[_LAST_MACH_OPER]; // Cost vector, indexed by operand opcodes\n");
duke@435 2029 fprintf(fp," unsigned int _rule[_LAST_MACH_OPER]; // Rule vector, indexed by operand opcodes\n");
duke@435 2030 fprintf(fp," unsigned int _valid[(_LAST_MACH_OPER/32)+1]; // Bit Map of valid Cost/Rule entries\n");
duke@435 2031 fprintf(fp,"\n");
duke@435 2032 fprintf(fp," State(void); // Constructor\n");
duke@435 2033 fprintf(fp," DEBUG_ONLY( ~State(void); ) // Destructor\n");
duke@435 2034 fprintf(fp,"\n");
duke@435 2035 fprintf(fp," // Methods created by ADLC and invoked by Reduce\n");
duke@435 2036 fprintf(fp," MachOper *MachOperGenerator( int opcode, Compile* C );\n");
duke@435 2037 fprintf(fp," MachNode *MachNodeGenerator( int opcode, Compile* C );\n");
duke@435 2038 fprintf(fp,"\n");
duke@435 2039 fprintf(fp," // Assign a state to a node, definition of method produced by ADLC\n");
duke@435 2040 fprintf(fp," bool DFA( int opcode, const Node *ideal );\n");
duke@435 2041 fprintf(fp,"\n");
duke@435 2042 fprintf(fp," // Access function for _valid bit vector\n");
duke@435 2043 fprintf(fp," bool valid(uint index) {\n");
duke@435 2044 fprintf(fp," return( STATE__VALID(index) != 0 );\n");
duke@435 2045 fprintf(fp," }\n");
duke@435 2046 fprintf(fp,"\n");
duke@435 2047 fprintf(fp," // Set function for _valid bit vector\n");
duke@435 2048 fprintf(fp," void set_valid(uint index) {\n");
duke@435 2049 fprintf(fp," STATE__SET_VALID(index);\n");
duke@435 2050 fprintf(fp," }\n");
duke@435 2051 fprintf(fp,"\n");
duke@435 2052 fprintf(fp,"#ifndef PRODUCT\n");
duke@435 2053 fprintf(fp," void dump(); // Debugging prints\n");
duke@435 2054 fprintf(fp," void dump(int depth);\n");
duke@435 2055 fprintf(fp,"#endif\n");
duke@435 2056 if (_dfa_small) {
duke@435 2057 // Generate the routine name we'll need
duke@435 2058 for (int i = 1; i < _last_opcode; i++) {
duke@435 2059 if (_mlistab[i] == NULL) continue;
duke@435 2060 fprintf(fp, " void _sub_Op_%s(const Node *n);\n", NodeClassNames[i]);
duke@435 2061 }
duke@435 2062 }
duke@435 2063 fprintf(fp,"};\n");
duke@435 2064 fprintf(fp,"\n");
duke@435 2065 fprintf(fp,"\n");
duke@435 2066
duke@435 2067 }
duke@435 2068
duke@435 2069
duke@435 2070 //---------------------------buildMachOperEnum---------------------------------
duke@435 2071 // Build enumeration for densely packed operands.
duke@435 2072 // This enumeration is used to index into the arrays in the State objects
duke@435 2073 // that indicate cost and a successfull rule match.
duke@435 2074
duke@435 2075 // Information needed to generate the ReduceOp mapping for the DFA
duke@435 2076 class OutputMachOperands : public OutputMap {
duke@435 2077 public:
duke@435 2078 OutputMachOperands(FILE *hpp, FILE *cpp, FormDict &globals, ArchDesc &AD)
kvn@4161 2079 : OutputMap(hpp, cpp, globals, AD, "MachOperands") {};
duke@435 2080
duke@435 2081 void declaration() { }
duke@435 2082 void definition() { fprintf(_cpp, "enum MachOperands {\n"); }
duke@435 2083 void closing() { fprintf(_cpp, " _LAST_MACH_OPER\n");
duke@435 2084 OutputMap::closing();
duke@435 2085 }
neliasso@4906 2086 void map(OpClassForm &opc) {
neliasso@4906 2087 const char* opc_ident_to_upper = _AD.machOperEnum(opc._ident);
neliasso@4906 2088 fprintf(_cpp, " %s", opc_ident_to_upper);
neliasso@4906 2089 delete[] opc_ident_to_upper;
neliasso@4906 2090 }
neliasso@4906 2091 void map(OperandForm &oper) {
neliasso@4906 2092 const char* oper_ident_to_upper = _AD.machOperEnum(oper._ident);
neliasso@4906 2093 fprintf(_cpp, " %s", oper_ident_to_upper);
neliasso@4906 2094 delete[] oper_ident_to_upper;
neliasso@4906 2095 }
neliasso@4906 2096 void map(char *name) {
neliasso@4906 2097 const char* name_to_upper = _AD.machOperEnum(name);
neliasso@4906 2098 fprintf(_cpp, " %s", name_to_upper);
neliasso@4906 2099 delete[] name_to_upper;
neliasso@4906 2100 }
duke@435 2101
duke@435 2102 bool do_instructions() { return false; }
duke@435 2103 void map(InstructForm &inst){ assert( false, "ShouldNotCallThis()"); }
duke@435 2104 };
duke@435 2105
duke@435 2106
duke@435 2107 void ArchDesc::buildMachOperEnum(FILE *fp_hpp) {
duke@435 2108 // Construct the table for MachOpcodes
duke@435 2109 OutputMachOperands output_mach_operands(fp_hpp, fp_hpp, _globalNames, *this);
duke@435 2110 build_map(output_mach_operands);
duke@435 2111 }
duke@435 2112
duke@435 2113
duke@435 2114 //---------------------------buildMachEnum----------------------------------
duke@435 2115 // Build enumeration for all MachOpers and all MachNodes
duke@435 2116
duke@435 2117 // Information needed to generate the ReduceOp mapping for the DFA
duke@435 2118 class OutputMachOpcodes : public OutputMap {
duke@435 2119 int begin_inst_chain_rule;
duke@435 2120 int end_inst_chain_rule;
duke@435 2121 int begin_rematerialize;
duke@435 2122 int end_rematerialize;
duke@435 2123 int end_instructions;
duke@435 2124 public:
duke@435 2125 OutputMachOpcodes(FILE *hpp, FILE *cpp, FormDict &globals, ArchDesc &AD)
kvn@4161 2126 : OutputMap(hpp, cpp, globals, AD, "MachOpcodes"),
duke@435 2127 begin_inst_chain_rule(-1), end_inst_chain_rule(-1), end_instructions(-1)
duke@435 2128 {};
duke@435 2129
duke@435 2130 void declaration() { }
duke@435 2131 void definition() { fprintf(_cpp, "enum MachOpcodes {\n"); }
duke@435 2132 void closing() {
duke@435 2133 if( begin_inst_chain_rule != -1 )
duke@435 2134 fprintf(_cpp, " _BEGIN_INST_CHAIN_RULE = %d,\n", begin_inst_chain_rule);
duke@435 2135 if( end_inst_chain_rule != -1 )
duke@435 2136 fprintf(_cpp, " _END_INST_CHAIN_RULE = %d,\n", end_inst_chain_rule);
duke@435 2137 if( begin_rematerialize != -1 )
duke@435 2138 fprintf(_cpp, " _BEGIN_REMATERIALIZE = %d,\n", begin_rematerialize);
duke@435 2139 if( end_rematerialize != -1 )
duke@435 2140 fprintf(_cpp, " _END_REMATERIALIZE = %d,\n", end_rematerialize);
duke@435 2141 // always execute since do_instructions() is true, and avoids trailing comma
duke@435 2142 fprintf(_cpp, " _last_Mach_Node = %d \n", end_instructions);
duke@435 2143 OutputMap::closing();
duke@435 2144 }
duke@435 2145 void map(OpClassForm &opc) { fprintf(_cpp, " %s_rule", opc._ident ); }
duke@435 2146 void map(OperandForm &oper) { fprintf(_cpp, " %s_rule", oper._ident ); }
duke@435 2147 void map(char *name) { if (name) fprintf(_cpp, " %s_rule", name);
duke@435 2148 else fprintf(_cpp, " 0"); }
duke@435 2149 void map(InstructForm &inst) {fprintf(_cpp, " %s_rule", inst._ident ); }
duke@435 2150
duke@435 2151 void record_position(OutputMap::position place, int idx ) {
duke@435 2152 switch(place) {
duke@435 2153 case OutputMap::BEGIN_INST_CHAIN_RULES :
duke@435 2154 begin_inst_chain_rule = idx;
duke@435 2155 break;
duke@435 2156 case OutputMap::END_INST_CHAIN_RULES :
duke@435 2157 end_inst_chain_rule = idx;
duke@435 2158 break;
duke@435 2159 case OutputMap::BEGIN_REMATERIALIZE :
duke@435 2160 begin_rematerialize = idx;
duke@435 2161 break;
duke@435 2162 case OutputMap::END_REMATERIALIZE :
duke@435 2163 end_rematerialize = idx;
duke@435 2164 break;
duke@435 2165 case OutputMap::END_INSTRUCTIONS :
duke@435 2166 end_instructions = idx;
duke@435 2167 break;
duke@435 2168 default:
duke@435 2169 break;
duke@435 2170 }
duke@435 2171 }
duke@435 2172 };
duke@435 2173
duke@435 2174
duke@435 2175 void ArchDesc::buildMachOpcodesEnum(FILE *fp_hpp) {
duke@435 2176 // Construct the table for MachOpcodes
duke@435 2177 OutputMachOpcodes output_mach_opcodes(fp_hpp, fp_hpp, _globalNames, *this);
duke@435 2178 build_map(output_mach_opcodes);
duke@435 2179 }
duke@435 2180
duke@435 2181
duke@435 2182 // Generate an enumeration of the pipeline states, and both
duke@435 2183 // the functional units (resources) and the masks for
duke@435 2184 // specifying resources
duke@435 2185 void ArchDesc::build_pipeline_enums(FILE *fp_hpp) {
duke@435 2186 int stagelen = (int)strlen("undefined");
duke@435 2187 int stagenum = 0;
duke@435 2188
duke@435 2189 if (_pipeline) { // Find max enum string length
duke@435 2190 const char *stage;
duke@435 2191 for ( _pipeline->_stages.reset(); (stage = _pipeline->_stages.iter()) != NULL; ) {
duke@435 2192 int len = (int)strlen(stage);
duke@435 2193 if (stagelen < len) stagelen = len;
duke@435 2194 }
duke@435 2195 }
duke@435 2196
duke@435 2197 // Generate a list of stages
duke@435 2198 fprintf(fp_hpp, "\n");
duke@435 2199 fprintf(fp_hpp, "// Pipeline Stages\n");
duke@435 2200 fprintf(fp_hpp, "enum machPipelineStages {\n");
duke@435 2201 fprintf(fp_hpp, " stage_%-*s = 0,\n", stagelen, "undefined");
duke@435 2202
duke@435 2203 if( _pipeline ) {
duke@435 2204 const char *stage;
duke@435 2205 for ( _pipeline->_stages.reset(); (stage = _pipeline->_stages.iter()) != NULL; )
duke@435 2206 fprintf(fp_hpp, " stage_%-*s = %d,\n", stagelen, stage, ++stagenum);
duke@435 2207 }
duke@435 2208
duke@435 2209 fprintf(fp_hpp, " stage_%-*s = %d\n", stagelen, "count", stagenum);
duke@435 2210 fprintf(fp_hpp, "};\n");
duke@435 2211
duke@435 2212 fprintf(fp_hpp, "\n");
duke@435 2213 fprintf(fp_hpp, "// Pipeline Resources\n");
duke@435 2214 fprintf(fp_hpp, "enum machPipelineResources {\n");
duke@435 2215 int rescount = 0;
duke@435 2216
duke@435 2217 if( _pipeline ) {
duke@435 2218 const char *resource;
duke@435 2219 int reslen = 0;
duke@435 2220
duke@435 2221 // Generate a list of resources, and masks
duke@435 2222 for ( _pipeline->_reslist.reset(); (resource = _pipeline->_reslist.iter()) != NULL; ) {
duke@435 2223 int len = (int)strlen(resource);
duke@435 2224 if (reslen < len)
duke@435 2225 reslen = len;
duke@435 2226 }
duke@435 2227
duke@435 2228 for ( _pipeline->_reslist.reset(); (resource = _pipeline->_reslist.iter()) != NULL; ) {
duke@435 2229 const ResourceForm *resform = _pipeline->_resdict[resource]->is_resource();
duke@435 2230 int mask = resform->mask();
duke@435 2231 if ((mask & (mask-1)) == 0)
duke@435 2232 fprintf(fp_hpp, " resource_%-*s = %d,\n", reslen, resource, rescount++);
duke@435 2233 }
duke@435 2234 fprintf(fp_hpp, "\n");
duke@435 2235 for ( _pipeline->_reslist.reset(); (resource = _pipeline->_reslist.iter()) != NULL; ) {
duke@435 2236 const ResourceForm *resform = _pipeline->_resdict[resource]->is_resource();
duke@435 2237 fprintf(fp_hpp, " res_mask_%-*s = 0x%08x,\n", reslen, resource, resform->mask());
duke@435 2238 }
duke@435 2239 fprintf(fp_hpp, "\n");
duke@435 2240 }
duke@435 2241 fprintf(fp_hpp, " resource_count = %d\n", rescount);
duke@435 2242 fprintf(fp_hpp, "};\n");
duke@435 2243 }

mercurial