src/share/vm/adlc/output_h.cpp

Fri, 20 Dec 2013 13:51:14 +0100

author
goetz
date
Fri, 20 Dec 2013 13:51:14 +0100
changeset 6499
ad3b94907eed
parent 6490
41b780b43b74
child 6503
a9becfeecd1b
permissions
-rw-r--r--

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

mercurial