src/share/vm/c1/c1_Instruction.cpp

Tue, 29 Dec 2009 19:08:54 +0100

author
roland
date
Tue, 29 Dec 2009 19:08:54 +0100
changeset 2174
f02a8bbe6ed4
parent 2138
d5d065957597
child 2254
42a10fc37986
permissions
-rw-r--r--

6986046: C1 valuestack cleanup
Summary: fixes an historical oddity in C1 with inlining where all of the expression stacks are kept in the topmost ValueStack instead of being in their respective ValueStacks.
Reviewed-by: never
Contributed-by: Christian Wimmer <cwimmer@uci.edu>

duke@435 1 /*
trims@1907 2 * Copyright (c) 1999, 2010, 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 #include "incls/_precompiled.incl"
duke@435 26 #include "incls/_c1_Instruction.cpp.incl"
duke@435 27
duke@435 28
duke@435 29 // Implementation of Instruction
duke@435 30
duke@435 31
duke@435 32 Instruction::Condition Instruction::mirror(Condition cond) {
duke@435 33 switch (cond) {
duke@435 34 case eql: return eql;
duke@435 35 case neq: return neq;
duke@435 36 case lss: return gtr;
duke@435 37 case leq: return geq;
duke@435 38 case gtr: return lss;
duke@435 39 case geq: return leq;
duke@435 40 }
duke@435 41 ShouldNotReachHere();
duke@435 42 return eql;
duke@435 43 }
duke@435 44
duke@435 45
duke@435 46 Instruction::Condition Instruction::negate(Condition cond) {
duke@435 47 switch (cond) {
duke@435 48 case eql: return neq;
duke@435 49 case neq: return eql;
duke@435 50 case lss: return geq;
duke@435 51 case leq: return gtr;
duke@435 52 case gtr: return leq;
duke@435 53 case geq: return lss;
duke@435 54 }
duke@435 55 ShouldNotReachHere();
duke@435 56 return eql;
duke@435 57 }
duke@435 58
roland@2174 59 void Instruction::update_exception_state(ValueStack* state) {
roland@2174 60 if (state != NULL && (state->kind() == ValueStack::EmptyExceptionState || state->kind() == ValueStack::ExceptionState)) {
roland@2174 61 assert(state->kind() == ValueStack::EmptyExceptionState || Compilation::current()->env()->jvmti_can_access_local_variables(), "unexpected state kind");
roland@2174 62 _exception_state = state;
roland@2174 63 } else {
roland@2174 64 _exception_state = NULL;
roland@2174 65 }
roland@2174 66 }
roland@2174 67
duke@435 68
duke@435 69 Instruction* Instruction::prev(BlockBegin* block) {
duke@435 70 Instruction* p = NULL;
duke@435 71 Instruction* q = block;
duke@435 72 while (q != this) {
duke@435 73 assert(q != NULL, "this is not in the block's instruction list");
duke@435 74 p = q; q = q->next();
duke@435 75 }
duke@435 76 return p;
duke@435 77 }
duke@435 78
duke@435 79
roland@2174 80 void Instruction::state_values_do(ValueVisitor* f) {
roland@2174 81 if (state_before() != NULL) {
roland@2174 82 state_before()->values_do(f);
roland@2174 83 }
roland@2174 84 if (exception_state() != NULL){
roland@2174 85 exception_state()->values_do(f);
roland@2174 86 }
roland@2174 87 }
roland@2174 88
roland@2174 89
duke@435 90 #ifndef PRODUCT
roland@2174 91 void Instruction::check_state(ValueStack* state) {
roland@2174 92 if (state != NULL) {
roland@2174 93 state->verify();
roland@2174 94 }
roland@2174 95 }
roland@2174 96
roland@2174 97
duke@435 98 void Instruction::print() {
duke@435 99 InstructionPrinter ip;
duke@435 100 print(ip);
duke@435 101 }
duke@435 102
duke@435 103
duke@435 104 void Instruction::print_line() {
duke@435 105 InstructionPrinter ip;
duke@435 106 ip.print_line(this);
duke@435 107 }
duke@435 108
duke@435 109
duke@435 110 void Instruction::print(InstructionPrinter& ip) {
duke@435 111 ip.print_head();
duke@435 112 ip.print_line(this);
duke@435 113 tty->cr();
duke@435 114 }
duke@435 115 #endif // PRODUCT
duke@435 116
duke@435 117
duke@435 118 // perform constant and interval tests on index value
duke@435 119 bool AccessIndexed::compute_needs_range_check() {
duke@435 120 Constant* clength = length()->as_Constant();
duke@435 121 Constant* cindex = index()->as_Constant();
duke@435 122 if (clength && cindex) {
duke@435 123 IntConstant* l = clength->type()->as_IntConstant();
duke@435 124 IntConstant* i = cindex->type()->as_IntConstant();
duke@435 125 if (l && i && i->value() < l->value() && i->value() >= 0) {
duke@435 126 return false;
duke@435 127 }
duke@435 128 }
duke@435 129 return true;
duke@435 130 }
duke@435 131
duke@435 132
duke@435 133 ciType* LoadIndexed::exact_type() const {
duke@435 134 ciType* array_type = array()->exact_type();
duke@435 135 if (array_type == NULL) {
duke@435 136 return NULL;
duke@435 137 }
duke@435 138 assert(array_type->is_array_klass(), "what else?");
duke@435 139 ciArrayKlass* ak = (ciArrayKlass*)array_type;
duke@435 140
duke@435 141 if (ak->element_type()->is_instance_klass()) {
duke@435 142 ciInstanceKlass* ik = (ciInstanceKlass*)ak->element_type();
duke@435 143 if (ik->is_loaded() && ik->is_final()) {
duke@435 144 return ik;
duke@435 145 }
duke@435 146 }
duke@435 147 return NULL;
duke@435 148 }
duke@435 149
duke@435 150
duke@435 151 ciType* LoadIndexed::declared_type() const {
duke@435 152 ciType* array_type = array()->declared_type();
duke@435 153 if (array_type == NULL) {
duke@435 154 return NULL;
duke@435 155 }
duke@435 156 assert(array_type->is_array_klass(), "what else?");
duke@435 157 ciArrayKlass* ak = (ciArrayKlass*)array_type;
duke@435 158 return ak->element_type();
duke@435 159 }
duke@435 160
duke@435 161
duke@435 162 ciType* LoadField::declared_type() const {
duke@435 163 return field()->type();
duke@435 164 }
duke@435 165
duke@435 166
duke@435 167 ciType* LoadField::exact_type() const {
duke@435 168 ciType* type = declared_type();
duke@435 169 // for primitive arrays, the declared type is the exact type
duke@435 170 if (type->is_type_array_klass()) {
duke@435 171 return type;
duke@435 172 }
duke@435 173 if (type->is_instance_klass()) {
duke@435 174 ciInstanceKlass* ik = (ciInstanceKlass*)type;
duke@435 175 if (ik->is_loaded() && ik->is_final()) {
duke@435 176 return type;
duke@435 177 }
duke@435 178 }
duke@435 179 return NULL;
duke@435 180 }
duke@435 181
duke@435 182
duke@435 183 ciType* NewTypeArray::exact_type() const {
duke@435 184 return ciTypeArrayKlass::make(elt_type());
duke@435 185 }
duke@435 186
duke@435 187
duke@435 188 ciType* NewObjectArray::exact_type() const {
duke@435 189 return ciObjArrayKlass::make(klass());
duke@435 190 }
duke@435 191
duke@435 192
duke@435 193 ciType* NewInstance::exact_type() const {
duke@435 194 return klass();
duke@435 195 }
duke@435 196
duke@435 197
duke@435 198 ciType* CheckCast::declared_type() const {
duke@435 199 return klass();
duke@435 200 }
duke@435 201
duke@435 202 ciType* CheckCast::exact_type() const {
duke@435 203 if (klass()->is_instance_klass()) {
duke@435 204 ciInstanceKlass* ik = (ciInstanceKlass*)klass();
duke@435 205 if (ik->is_loaded() && ik->is_final()) {
duke@435 206 return ik;
duke@435 207 }
duke@435 208 }
duke@435 209 return NULL;
duke@435 210 }
duke@435 211
duke@435 212 // Implementation of ArithmeticOp
duke@435 213
duke@435 214 bool ArithmeticOp::is_commutative() const {
duke@435 215 switch (op()) {
duke@435 216 case Bytecodes::_iadd: // fall through
duke@435 217 case Bytecodes::_ladd: // fall through
duke@435 218 case Bytecodes::_fadd: // fall through
duke@435 219 case Bytecodes::_dadd: // fall through
duke@435 220 case Bytecodes::_imul: // fall through
duke@435 221 case Bytecodes::_lmul: // fall through
duke@435 222 case Bytecodes::_fmul: // fall through
duke@435 223 case Bytecodes::_dmul: return true;
duke@435 224 }
duke@435 225 return false;
duke@435 226 }
duke@435 227
duke@435 228
duke@435 229 bool ArithmeticOp::can_trap() const {
duke@435 230 switch (op()) {
duke@435 231 case Bytecodes::_idiv: // fall through
duke@435 232 case Bytecodes::_ldiv: // fall through
duke@435 233 case Bytecodes::_irem: // fall through
duke@435 234 case Bytecodes::_lrem: return true;
duke@435 235 }
duke@435 236 return false;
duke@435 237 }
duke@435 238
duke@435 239
duke@435 240 // Implementation of LogicOp
duke@435 241
duke@435 242 bool LogicOp::is_commutative() const {
duke@435 243 #ifdef ASSERT
duke@435 244 switch (op()) {
duke@435 245 case Bytecodes::_iand: // fall through
duke@435 246 case Bytecodes::_land: // fall through
duke@435 247 case Bytecodes::_ior : // fall through
duke@435 248 case Bytecodes::_lor : // fall through
duke@435 249 case Bytecodes::_ixor: // fall through
duke@435 250 case Bytecodes::_lxor: break;
duke@435 251 default : ShouldNotReachHere();
duke@435 252 }
duke@435 253 #endif
duke@435 254 // all LogicOps are commutative
duke@435 255 return true;
duke@435 256 }
duke@435 257
duke@435 258
duke@435 259 // Implementation of IfOp
duke@435 260
duke@435 261 bool IfOp::is_commutative() const {
duke@435 262 return cond() == eql || cond() == neq;
duke@435 263 }
duke@435 264
duke@435 265
duke@435 266 // Implementation of StateSplit
duke@435 267
duke@435 268 void StateSplit::substitute(BlockList& list, BlockBegin* old_block, BlockBegin* new_block) {
duke@435 269 NOT_PRODUCT(bool assigned = false;)
duke@435 270 for (int i = 0; i < list.length(); i++) {
duke@435 271 BlockBegin** b = list.adr_at(i);
duke@435 272 if (*b == old_block) {
duke@435 273 *b = new_block;
duke@435 274 NOT_PRODUCT(assigned = true;)
duke@435 275 }
duke@435 276 }
duke@435 277 assert(assigned == true, "should have assigned at least once");
duke@435 278 }
duke@435 279
duke@435 280
duke@435 281 IRScope* StateSplit::scope() const {
duke@435 282 return _state->scope();
duke@435 283 }
duke@435 284
duke@435 285
iveresov@1939 286 void StateSplit::state_values_do(ValueVisitor* f) {
roland@2174 287 Instruction::state_values_do(f);
duke@435 288 if (state() != NULL) state()->values_do(f);
duke@435 289 }
duke@435 290
duke@435 291
iveresov@1939 292 void BlockBegin::state_values_do(ValueVisitor* f) {
duke@435 293 StateSplit::state_values_do(f);
duke@435 294
duke@435 295 if (is_set(BlockBegin::exception_entry_flag)) {
duke@435 296 for (int i = 0; i < number_of_exception_states(); i++) {
duke@435 297 exception_state_at(i)->values_do(f);
duke@435 298 }
duke@435 299 }
duke@435 300 }
duke@435 301
duke@435 302
duke@435 303 // Implementation of Invoke
duke@435 304
duke@435 305
duke@435 306 Invoke::Invoke(Bytecodes::Code code, ValueType* result_type, Value recv, Values* args,
twisti@1730 307 int vtable_index, ciMethod* target, ValueStack* state_before)
roland@2174 308 : StateSplit(result_type, state_before)
duke@435 309 , _code(code)
duke@435 310 , _recv(recv)
duke@435 311 , _args(args)
duke@435 312 , _vtable_index(vtable_index)
duke@435 313 , _target(target)
duke@435 314 {
duke@435 315 set_flag(TargetIsLoadedFlag, target->is_loaded());
duke@435 316 set_flag(TargetIsFinalFlag, target_is_loaded() && target->is_final_method());
duke@435 317 set_flag(TargetIsStrictfpFlag, target_is_loaded() && target->is_strict());
duke@435 318
duke@435 319 assert(args != NULL, "args must exist");
duke@435 320 #ifdef ASSERT
iveresov@1939 321 AssertValues assert_value;
iveresov@1939 322 values_do(&assert_value);
iveresov@1939 323 #endif
duke@435 324
duke@435 325 // provide an initial guess of signature size.
duke@435 326 _signature = new BasicTypeList(number_of_arguments() + (has_receiver() ? 1 : 0));
duke@435 327 if (has_receiver()) {
duke@435 328 _signature->append(as_BasicType(receiver()->type()));
twisti@1730 329 } else if (is_invokedynamic()) {
twisti@1730 330 // Add the synthetic MethodHandle argument to the signature.
twisti@1730 331 _signature->append(T_OBJECT);
duke@435 332 }
duke@435 333 for (int i = 0; i < number_of_arguments(); i++) {
duke@435 334 ValueType* t = argument_at(i)->type();
duke@435 335 BasicType bt = as_BasicType(t);
duke@435 336 _signature->append(bt);
duke@435 337 }
duke@435 338 }
duke@435 339
duke@435 340
iveresov@1939 341 void Invoke::state_values_do(ValueVisitor* f) {
twisti@1730 342 StateSplit::state_values_do(f);
twisti@1730 343 if (state_before() != NULL) state_before()->values_do(f);
twisti@1730 344 if (state() != NULL) state()->values_do(f);
twisti@1730 345 }
twisti@1730 346
twisti@1730 347
duke@435 348 // Implementation of Contant
duke@435 349 intx Constant::hash() const {
roland@2174 350 if (state_before() == NULL) {
duke@435 351 switch (type()->tag()) {
duke@435 352 case intTag:
duke@435 353 return HASH2(name(), type()->as_IntConstant()->value());
duke@435 354 case longTag:
duke@435 355 {
duke@435 356 jlong temp = type()->as_LongConstant()->value();
duke@435 357 return HASH3(name(), high(temp), low(temp));
duke@435 358 }
duke@435 359 case floatTag:
duke@435 360 return HASH2(name(), jint_cast(type()->as_FloatConstant()->value()));
duke@435 361 case doubleTag:
duke@435 362 {
duke@435 363 jlong temp = jlong_cast(type()->as_DoubleConstant()->value());
duke@435 364 return HASH3(name(), high(temp), low(temp));
duke@435 365 }
duke@435 366 case objectTag:
duke@435 367 assert(type()->as_ObjectType()->is_loaded(), "can't handle unloaded values");
duke@435 368 return HASH2(name(), type()->as_ObjectType()->constant_value());
duke@435 369 }
duke@435 370 }
duke@435 371 return 0;
duke@435 372 }
duke@435 373
duke@435 374 bool Constant::is_equal(Value v) const {
duke@435 375 if (v->as_Constant() == NULL) return false;
duke@435 376
duke@435 377 switch (type()->tag()) {
duke@435 378 case intTag:
duke@435 379 {
duke@435 380 IntConstant* t1 = type()->as_IntConstant();
duke@435 381 IntConstant* t2 = v->type()->as_IntConstant();
duke@435 382 return (t1 != NULL && t2 != NULL &&
duke@435 383 t1->value() == t2->value());
duke@435 384 }
duke@435 385 case longTag:
duke@435 386 {
duke@435 387 LongConstant* t1 = type()->as_LongConstant();
duke@435 388 LongConstant* t2 = v->type()->as_LongConstant();
duke@435 389 return (t1 != NULL && t2 != NULL &&
duke@435 390 t1->value() == t2->value());
duke@435 391 }
duke@435 392 case floatTag:
duke@435 393 {
duke@435 394 FloatConstant* t1 = type()->as_FloatConstant();
duke@435 395 FloatConstant* t2 = v->type()->as_FloatConstant();
duke@435 396 return (t1 != NULL && t2 != NULL &&
duke@435 397 jint_cast(t1->value()) == jint_cast(t2->value()));
duke@435 398 }
duke@435 399 case doubleTag:
duke@435 400 {
duke@435 401 DoubleConstant* t1 = type()->as_DoubleConstant();
duke@435 402 DoubleConstant* t2 = v->type()->as_DoubleConstant();
duke@435 403 return (t1 != NULL && t2 != NULL &&
duke@435 404 jlong_cast(t1->value()) == jlong_cast(t2->value()));
duke@435 405 }
duke@435 406 case objectTag:
duke@435 407 {
duke@435 408 ObjectType* t1 = type()->as_ObjectType();
duke@435 409 ObjectType* t2 = v->type()->as_ObjectType();
duke@435 410 return (t1 != NULL && t2 != NULL &&
duke@435 411 t1->is_loaded() && t2->is_loaded() &&
duke@435 412 t1->constant_value() == t2->constant_value());
duke@435 413 }
duke@435 414 }
duke@435 415 return false;
duke@435 416 }
duke@435 417
duke@435 418
duke@435 419 BlockBegin* Constant::compare(Instruction::Condition cond, Value right,
duke@435 420 BlockBegin* true_sux, BlockBegin* false_sux) {
duke@435 421 Constant* rc = right->as_Constant();
duke@435 422 // other is not a constant
duke@435 423 if (rc == NULL) return NULL;
duke@435 424
duke@435 425 ValueType* lt = type();
duke@435 426 ValueType* rt = rc->type();
duke@435 427 // different types
duke@435 428 if (lt->base() != rt->base()) return NULL;
duke@435 429 switch (lt->tag()) {
duke@435 430 case intTag: {
duke@435 431 int x = lt->as_IntConstant()->value();
duke@435 432 int y = rt->as_IntConstant()->value();
duke@435 433 switch (cond) {
duke@435 434 case If::eql: return x == y ? true_sux : false_sux;
duke@435 435 case If::neq: return x != y ? true_sux : false_sux;
duke@435 436 case If::lss: return x < y ? true_sux : false_sux;
duke@435 437 case If::leq: return x <= y ? true_sux : false_sux;
duke@435 438 case If::gtr: return x > y ? true_sux : false_sux;
duke@435 439 case If::geq: return x >= y ? true_sux : false_sux;
duke@435 440 }
duke@435 441 break;
duke@435 442 }
duke@435 443 case longTag: {
duke@435 444 jlong x = lt->as_LongConstant()->value();
duke@435 445 jlong y = rt->as_LongConstant()->value();
duke@435 446 switch (cond) {
duke@435 447 case If::eql: return x == y ? true_sux : false_sux;
duke@435 448 case If::neq: return x != y ? true_sux : false_sux;
duke@435 449 case If::lss: return x < y ? true_sux : false_sux;
duke@435 450 case If::leq: return x <= y ? true_sux : false_sux;
duke@435 451 case If::gtr: return x > y ? true_sux : false_sux;
duke@435 452 case If::geq: return x >= y ? true_sux : false_sux;
duke@435 453 }
duke@435 454 break;
duke@435 455 }
duke@435 456 case objectTag: {
duke@435 457 ciObject* xvalue = lt->as_ObjectType()->constant_value();
duke@435 458 ciObject* yvalue = rt->as_ObjectType()->constant_value();
duke@435 459 assert(xvalue != NULL && yvalue != NULL, "not constants");
duke@435 460 if (xvalue->is_loaded() && yvalue->is_loaded()) {
duke@435 461 switch (cond) {
duke@435 462 case If::eql: return xvalue == yvalue ? true_sux : false_sux;
duke@435 463 case If::neq: return xvalue != yvalue ? true_sux : false_sux;
duke@435 464 }
duke@435 465 }
duke@435 466 break;
duke@435 467 }
duke@435 468 }
duke@435 469 return NULL;
duke@435 470 }
duke@435 471
duke@435 472
duke@435 473 // Implementation of BlockBegin
duke@435 474
duke@435 475 void BlockBegin::set_end(BlockEnd* end) {
duke@435 476 assert(end != NULL, "should not reset block end to NULL");
duke@435 477 BlockEnd* old_end = _end;
duke@435 478 if (end == old_end) {
duke@435 479 return;
duke@435 480 }
duke@435 481 // Must make the predecessors/successors match up with the
duke@435 482 // BlockEnd's notion.
duke@435 483 int i, n;
duke@435 484 if (old_end != NULL) {
duke@435 485 // disconnect from the old end
duke@435 486 old_end->set_begin(NULL);
duke@435 487
duke@435 488 // disconnect this block from it's current successors
duke@435 489 for (i = 0; i < _successors.length(); i++) {
duke@435 490 _successors.at(i)->remove_predecessor(this);
duke@435 491 }
duke@435 492 }
duke@435 493 _end = end;
duke@435 494
duke@435 495 _successors.clear();
duke@435 496 // Now reset successors list based on BlockEnd
duke@435 497 n = end->number_of_sux();
duke@435 498 for (i = 0; i < n; i++) {
duke@435 499 BlockBegin* sux = end->sux_at(i);
duke@435 500 _successors.append(sux);
duke@435 501 sux->_predecessors.append(this);
duke@435 502 }
duke@435 503 _end->set_begin(this);
duke@435 504 }
duke@435 505
duke@435 506
duke@435 507 void BlockBegin::disconnect_edge(BlockBegin* from, BlockBegin* to) {
duke@435 508 // disconnect any edges between from and to
duke@435 509 #ifndef PRODUCT
duke@435 510 if (PrintIR && Verbose) {
duke@435 511 tty->print_cr("Disconnected edge B%d -> B%d", from->block_id(), to->block_id());
duke@435 512 }
duke@435 513 #endif
duke@435 514 for (int s = 0; s < from->number_of_sux();) {
duke@435 515 BlockBegin* sux = from->sux_at(s);
duke@435 516 if (sux == to) {
duke@435 517 int index = sux->_predecessors.index_of(from);
duke@435 518 if (index >= 0) {
duke@435 519 sux->_predecessors.remove_at(index);
duke@435 520 }
duke@435 521 from->_successors.remove_at(s);
duke@435 522 } else {
duke@435 523 s++;
duke@435 524 }
duke@435 525 }
duke@435 526 }
duke@435 527
duke@435 528
duke@435 529 void BlockBegin::disconnect_from_graph() {
duke@435 530 // disconnect this block from all other blocks
duke@435 531 for (int p = 0; p < number_of_preds(); p++) {
duke@435 532 pred_at(p)->remove_successor(this);
duke@435 533 }
duke@435 534 for (int s = 0; s < number_of_sux(); s++) {
duke@435 535 sux_at(s)->remove_predecessor(this);
duke@435 536 }
duke@435 537 }
duke@435 538
duke@435 539 void BlockBegin::substitute_sux(BlockBegin* old_sux, BlockBegin* new_sux) {
duke@435 540 // modify predecessors before substituting successors
duke@435 541 for (int i = 0; i < number_of_sux(); i++) {
duke@435 542 if (sux_at(i) == old_sux) {
duke@435 543 // remove old predecessor before adding new predecessor
duke@435 544 // otherwise there is a dead predecessor in the list
duke@435 545 new_sux->remove_predecessor(old_sux);
duke@435 546 new_sux->add_predecessor(this);
duke@435 547 }
duke@435 548 }
duke@435 549 old_sux->remove_predecessor(this);
duke@435 550 end()->substitute_sux(old_sux, new_sux);
duke@435 551 }
duke@435 552
duke@435 553
duke@435 554
duke@435 555 // In general it is not possible to calculate a value for the field "depth_first_number"
duke@435 556 // of the inserted block, without recomputing the values of the other blocks
duke@435 557 // in the CFG. Therefore the value of "depth_first_number" in BlockBegin becomes meaningless.
duke@435 558 BlockBegin* BlockBegin::insert_block_between(BlockBegin* sux) {
roland@2174 559 BlockBegin* new_sux = new BlockBegin(-99);
duke@435 560
duke@435 561 // mark this block (special treatment when block order is computed)
duke@435 562 new_sux->set(critical_edge_split_flag);
duke@435 563
duke@435 564 // This goto is not a safepoint.
duke@435 565 Goto* e = new Goto(sux, false);
roland@2174 566 new_sux->set_next(e, end()->state()->bci());
duke@435 567 new_sux->set_end(e);
duke@435 568 // setup states
duke@435 569 ValueStack* s = end()->state();
duke@435 570 new_sux->set_state(s->copy());
duke@435 571 e->set_state(s->copy());
duke@435 572 assert(new_sux->state()->locals_size() == s->locals_size(), "local size mismatch!");
duke@435 573 assert(new_sux->state()->stack_size() == s->stack_size(), "stack size mismatch!");
duke@435 574 assert(new_sux->state()->locks_size() == s->locks_size(), "locks size mismatch!");
duke@435 575
duke@435 576 // link predecessor to new block
duke@435 577 end()->substitute_sux(sux, new_sux);
duke@435 578
duke@435 579 // The ordering needs to be the same, so remove the link that the
duke@435 580 // set_end call above added and substitute the new_sux for this
duke@435 581 // block.
duke@435 582 sux->remove_predecessor(new_sux);
duke@435 583
duke@435 584 // the successor could be the target of a switch so it might have
duke@435 585 // multiple copies of this predecessor, so substitute the new_sux
duke@435 586 // for the first and delete the rest.
duke@435 587 bool assigned = false;
duke@435 588 BlockList& list = sux->_predecessors;
duke@435 589 for (int i = 0; i < list.length(); i++) {
duke@435 590 BlockBegin** b = list.adr_at(i);
duke@435 591 if (*b == this) {
duke@435 592 if (assigned) {
duke@435 593 list.remove_at(i);
duke@435 594 // reprocess this index
duke@435 595 i--;
duke@435 596 } else {
duke@435 597 assigned = true;
duke@435 598 *b = new_sux;
duke@435 599 }
duke@435 600 // link the new block back to it's predecessors.
duke@435 601 new_sux->add_predecessor(this);
duke@435 602 }
duke@435 603 }
duke@435 604 assert(assigned == true, "should have assigned at least once");
duke@435 605 return new_sux;
duke@435 606 }
duke@435 607
duke@435 608
duke@435 609 void BlockBegin::remove_successor(BlockBegin* pred) {
duke@435 610 int idx;
duke@435 611 while ((idx = _successors.index_of(pred)) >= 0) {
duke@435 612 _successors.remove_at(idx);
duke@435 613 }
duke@435 614 }
duke@435 615
duke@435 616
duke@435 617 void BlockBegin::add_predecessor(BlockBegin* pred) {
duke@435 618 _predecessors.append(pred);
duke@435 619 }
duke@435 620
duke@435 621
duke@435 622 void BlockBegin::remove_predecessor(BlockBegin* pred) {
duke@435 623 int idx;
duke@435 624 while ((idx = _predecessors.index_of(pred)) >= 0) {
duke@435 625 _predecessors.remove_at(idx);
duke@435 626 }
duke@435 627 }
duke@435 628
duke@435 629
duke@435 630 void BlockBegin::add_exception_handler(BlockBegin* b) {
duke@435 631 assert(b != NULL && (b->is_set(exception_entry_flag)), "exception handler must exist");
duke@435 632 // add only if not in the list already
duke@435 633 if (!_exception_handlers.contains(b)) _exception_handlers.append(b);
duke@435 634 }
duke@435 635
duke@435 636 int BlockBegin::add_exception_state(ValueStack* state) {
duke@435 637 assert(is_set(exception_entry_flag), "only for xhandlers");
duke@435 638 if (_exception_states == NULL) {
duke@435 639 _exception_states = new ValueStackStack(4);
duke@435 640 }
duke@435 641 _exception_states->append(state);
duke@435 642 return _exception_states->length() - 1;
duke@435 643 }
duke@435 644
duke@435 645
duke@435 646 void BlockBegin::iterate_preorder(boolArray& mark, BlockClosure* closure) {
duke@435 647 if (!mark.at(block_id())) {
duke@435 648 mark.at_put(block_id(), true);
duke@435 649 closure->block_do(this);
duke@435 650 BlockEnd* e = end(); // must do this after block_do because block_do may change it!
duke@435 651 { for (int i = number_of_exception_handlers() - 1; i >= 0; i--) exception_handler_at(i)->iterate_preorder(mark, closure); }
duke@435 652 { for (int i = e->number_of_sux () - 1; i >= 0; i--) e->sux_at (i)->iterate_preorder(mark, closure); }
duke@435 653 }
duke@435 654 }
duke@435 655
duke@435 656
duke@435 657 void BlockBegin::iterate_postorder(boolArray& mark, BlockClosure* closure) {
duke@435 658 if (!mark.at(block_id())) {
duke@435 659 mark.at_put(block_id(), true);
duke@435 660 BlockEnd* e = end();
duke@435 661 { for (int i = number_of_exception_handlers() - 1; i >= 0; i--) exception_handler_at(i)->iterate_postorder(mark, closure); }
duke@435 662 { for (int i = e->number_of_sux () - 1; i >= 0; i--) e->sux_at (i)->iterate_postorder(mark, closure); }
duke@435 663 closure->block_do(this);
duke@435 664 }
duke@435 665 }
duke@435 666
duke@435 667
duke@435 668 void BlockBegin::iterate_preorder(BlockClosure* closure) {
duke@435 669 boolArray mark(number_of_blocks(), false);
duke@435 670 iterate_preorder(mark, closure);
duke@435 671 }
duke@435 672
duke@435 673
duke@435 674 void BlockBegin::iterate_postorder(BlockClosure* closure) {
duke@435 675 boolArray mark(number_of_blocks(), false);
duke@435 676 iterate_postorder(mark, closure);
duke@435 677 }
duke@435 678
duke@435 679
iveresov@1939 680 void BlockBegin::block_values_do(ValueVisitor* f) {
duke@435 681 for (Instruction* n = this; n != NULL; n = n->next()) n->values_do(f);
duke@435 682 }
duke@435 683
duke@435 684
duke@435 685 #ifndef PRODUCT
iveresov@2138 686 #define TRACE_PHI(code) if (PrintPhiFunctions) { code; }
duke@435 687 #else
iveresov@2138 688 #define TRACE_PHI(coce)
duke@435 689 #endif
duke@435 690
duke@435 691
duke@435 692 bool BlockBegin::try_merge(ValueStack* new_state) {
duke@435 693 TRACE_PHI(tty->print_cr("********** try_merge for block B%d", block_id()));
duke@435 694
duke@435 695 // local variables used for state iteration
duke@435 696 int index;
duke@435 697 Value new_value, existing_value;
duke@435 698
duke@435 699 ValueStack* existing_state = state();
duke@435 700 if (existing_state == NULL) {
duke@435 701 TRACE_PHI(tty->print_cr("first call of try_merge for this block"));
duke@435 702
duke@435 703 if (is_set(BlockBegin::was_visited_flag)) {
duke@435 704 // this actually happens for complicated jsr/ret structures
duke@435 705 return false; // BAILOUT in caller
duke@435 706 }
duke@435 707
duke@435 708 // copy state because it is altered
roland@2174 709 new_state = new_state->copy(ValueStack::BlockBeginState, bci());
duke@435 710
duke@435 711 // Use method liveness to invalidate dead locals
duke@435 712 MethodLivenessResult liveness = new_state->scope()->method()->liveness_at_bci(bci());
duke@435 713 if (liveness.is_valid()) {
duke@435 714 assert((int)liveness.size() == new_state->locals_size(), "error in use of liveness");
duke@435 715
duke@435 716 for_each_local_value(new_state, index, new_value) {
duke@435 717 if (!liveness.at(index) || new_value->type()->is_illegal()) {
duke@435 718 new_state->invalidate_local(index);
duke@435 719 TRACE_PHI(tty->print_cr("invalidating dead local %d", index));
duke@435 720 }
duke@435 721 }
duke@435 722 }
duke@435 723
duke@435 724 if (is_set(BlockBegin::parser_loop_header_flag)) {
duke@435 725 TRACE_PHI(tty->print_cr("loop header block, initializing phi functions"));
duke@435 726
duke@435 727 for_each_stack_value(new_state, index, new_value) {
duke@435 728 new_state->setup_phi_for_stack(this, index);
duke@435 729 TRACE_PHI(tty->print_cr("creating phi-function %c%d for stack %d", new_state->stack_at(index)->type()->tchar(), new_state->stack_at(index)->id(), index));
duke@435 730 }
duke@435 731
duke@435 732 BitMap requires_phi_function = new_state->scope()->requires_phi_function();
duke@435 733
duke@435 734 for_each_local_value(new_state, index, new_value) {
duke@435 735 bool requires_phi = requires_phi_function.at(index) || (new_value->type()->is_double_word() && requires_phi_function.at(index + 1));
duke@435 736 if (requires_phi || !SelectivePhiFunctions) {
duke@435 737 new_state->setup_phi_for_local(this, index);
duke@435 738 TRACE_PHI(tty->print_cr("creating phi-function %c%d for local %d", new_state->local_at(index)->type()->tchar(), new_state->local_at(index)->id(), index));
duke@435 739 }
duke@435 740 }
duke@435 741 }
duke@435 742
duke@435 743 // initialize state of block
duke@435 744 set_state(new_state);
duke@435 745
roland@2174 746 } else if (existing_state->is_same(new_state)) {
duke@435 747 TRACE_PHI(tty->print_cr("exisiting state found"));
duke@435 748
duke@435 749 assert(existing_state->scope() == new_state->scope(), "not matching");
duke@435 750 assert(existing_state->locals_size() == new_state->locals_size(), "not matching");
duke@435 751 assert(existing_state->stack_size() == new_state->stack_size(), "not matching");
duke@435 752
duke@435 753 if (is_set(BlockBegin::was_visited_flag)) {
duke@435 754 TRACE_PHI(tty->print_cr("loop header block, phis must be present"));
duke@435 755
duke@435 756 if (!is_set(BlockBegin::parser_loop_header_flag)) {
duke@435 757 // this actually happens for complicated jsr/ret structures
duke@435 758 return false; // BAILOUT in caller
duke@435 759 }
duke@435 760
duke@435 761 for_each_local_value(existing_state, index, existing_value) {
duke@435 762 Value new_value = new_state->local_at(index);
duke@435 763 if (new_value == NULL || new_value->type()->tag() != existing_value->type()->tag()) {
duke@435 764 // The old code invalidated the phi function here
duke@435 765 // Because dead locals are replaced with NULL, this is a very rare case now, so simply bail out
duke@435 766 return false; // BAILOUT in caller
duke@435 767 }
duke@435 768 }
duke@435 769
duke@435 770 #ifdef ASSERT
duke@435 771 // check that all necessary phi functions are present
duke@435 772 for_each_stack_value(existing_state, index, existing_value) {
duke@435 773 assert(existing_value->as_Phi() != NULL && existing_value->as_Phi()->block() == this, "phi function required");
duke@435 774 }
duke@435 775 for_each_local_value(existing_state, index, existing_value) {
duke@435 776 assert(existing_value == new_state->local_at(index) || (existing_value->as_Phi() != NULL && existing_value->as_Phi()->as_Phi()->block() == this), "phi function required");
duke@435 777 }
duke@435 778 #endif
duke@435 779
duke@435 780 } else {
duke@435 781 TRACE_PHI(tty->print_cr("creating phi functions on demand"));
duke@435 782
duke@435 783 // create necessary phi functions for stack
duke@435 784 for_each_stack_value(existing_state, index, existing_value) {
duke@435 785 Value new_value = new_state->stack_at(index);
duke@435 786 Phi* existing_phi = existing_value->as_Phi();
duke@435 787
duke@435 788 if (new_value != existing_value && (existing_phi == NULL || existing_phi->block() != this)) {
duke@435 789 existing_state->setup_phi_for_stack(this, index);
duke@435 790 TRACE_PHI(tty->print_cr("creating phi-function %c%d for stack %d", existing_state->stack_at(index)->type()->tchar(), existing_state->stack_at(index)->id(), index));
duke@435 791 }
duke@435 792 }
duke@435 793
duke@435 794 // create necessary phi functions for locals
duke@435 795 for_each_local_value(existing_state, index, existing_value) {
duke@435 796 Value new_value = new_state->local_at(index);
duke@435 797 Phi* existing_phi = existing_value->as_Phi();
duke@435 798
duke@435 799 if (new_value == NULL || new_value->type()->tag() != existing_value->type()->tag()) {
duke@435 800 existing_state->invalidate_local(index);
duke@435 801 TRACE_PHI(tty->print_cr("invalidating local %d because of type mismatch", index));
duke@435 802 } else if (new_value != existing_value && (existing_phi == NULL || existing_phi->block() != this)) {
duke@435 803 existing_state->setup_phi_for_local(this, index);
duke@435 804 TRACE_PHI(tty->print_cr("creating phi-function %c%d for local %d", existing_state->local_at(index)->type()->tchar(), existing_state->local_at(index)->id(), index));
duke@435 805 }
duke@435 806 }
duke@435 807 }
duke@435 808
duke@435 809 assert(existing_state->caller_state() == new_state->caller_state(), "caller states must be equal");
duke@435 810
duke@435 811 } else {
duke@435 812 assert(false, "stack or locks not matching (invalid bytecodes)");
duke@435 813 return false;
duke@435 814 }
duke@435 815
duke@435 816 TRACE_PHI(tty->print_cr("********** try_merge for block B%d successful", block_id()));
duke@435 817
duke@435 818 return true;
duke@435 819 }
duke@435 820
duke@435 821
duke@435 822 #ifndef PRODUCT
duke@435 823 void BlockBegin::print_block() {
duke@435 824 InstructionPrinter ip;
duke@435 825 print_block(ip, false);
duke@435 826 }
duke@435 827
duke@435 828
duke@435 829 void BlockBegin::print_block(InstructionPrinter& ip, bool live_only) {
duke@435 830 ip.print_instr(this); tty->cr();
duke@435 831 ip.print_stack(this->state()); tty->cr();
duke@435 832 ip.print_inline_level(this);
duke@435 833 ip.print_head();
duke@435 834 for (Instruction* n = next(); n != NULL; n = n->next()) {
duke@435 835 if (!live_only || n->is_pinned() || n->use_count() > 0) {
duke@435 836 ip.print_line(n);
duke@435 837 }
duke@435 838 }
duke@435 839 tty->cr();
duke@435 840 }
duke@435 841 #endif // PRODUCT
duke@435 842
duke@435 843
duke@435 844 // Implementation of BlockList
duke@435 845
duke@435 846 void BlockList::iterate_forward (BlockClosure* closure) {
duke@435 847 const int l = length();
duke@435 848 for (int i = 0; i < l; i++) closure->block_do(at(i));
duke@435 849 }
duke@435 850
duke@435 851
duke@435 852 void BlockList::iterate_backward(BlockClosure* closure) {
duke@435 853 for (int i = length() - 1; i >= 0; i--) closure->block_do(at(i));
duke@435 854 }
duke@435 855
duke@435 856
duke@435 857 void BlockList::blocks_do(void f(BlockBegin*)) {
duke@435 858 for (int i = length() - 1; i >= 0; i--) f(at(i));
duke@435 859 }
duke@435 860
duke@435 861
iveresov@1939 862 void BlockList::values_do(ValueVisitor* f) {
duke@435 863 for (int i = length() - 1; i >= 0; i--) at(i)->block_values_do(f);
duke@435 864 }
duke@435 865
duke@435 866
duke@435 867 #ifndef PRODUCT
duke@435 868 void BlockList::print(bool cfg_only, bool live_only) {
duke@435 869 InstructionPrinter ip;
duke@435 870 for (int i = 0; i < length(); i++) {
duke@435 871 BlockBegin* block = at(i);
duke@435 872 if (cfg_only) {
duke@435 873 ip.print_instr(block); tty->cr();
duke@435 874 } else {
duke@435 875 block->print_block(ip, live_only);
duke@435 876 }
duke@435 877 }
duke@435 878 }
duke@435 879 #endif // PRODUCT
duke@435 880
duke@435 881
duke@435 882 // Implementation of BlockEnd
duke@435 883
duke@435 884 void BlockEnd::set_begin(BlockBegin* begin) {
duke@435 885 BlockList* sux = NULL;
duke@435 886 if (begin != NULL) {
duke@435 887 sux = begin->successors();
duke@435 888 } else if (_begin != NULL) {
duke@435 889 // copy our sux list
duke@435 890 BlockList* sux = new BlockList(_begin->number_of_sux());
duke@435 891 for (int i = 0; i < _begin->number_of_sux(); i++) {
duke@435 892 sux->append(_begin->sux_at(i));
duke@435 893 }
duke@435 894 }
duke@435 895 _sux = sux;
duke@435 896 _begin = begin;
duke@435 897 }
duke@435 898
duke@435 899
duke@435 900 void BlockEnd::substitute_sux(BlockBegin* old_sux, BlockBegin* new_sux) {
duke@435 901 substitute(*_sux, old_sux, new_sux);
duke@435 902 }
duke@435 903
duke@435 904
duke@435 905 // Implementation of Phi
duke@435 906
duke@435 907 // Normal phi functions take their operands from the last instruction of the
duke@435 908 // predecessor. Special handling is needed for xhanlder entries because there
duke@435 909 // the state of arbitrary instructions are needed.
duke@435 910
duke@435 911 Value Phi::operand_at(int i) const {
duke@435 912 ValueStack* state;
duke@435 913 if (_block->is_set(BlockBegin::exception_entry_flag)) {
duke@435 914 state = _block->exception_state_at(i);
duke@435 915 } else {
duke@435 916 state = _block->pred_at(i)->end()->state();
duke@435 917 }
duke@435 918 assert(state != NULL, "");
duke@435 919
duke@435 920 if (is_local()) {
duke@435 921 return state->local_at(local_index());
duke@435 922 } else {
duke@435 923 return state->stack_at(stack_index());
duke@435 924 }
duke@435 925 }
duke@435 926
duke@435 927
duke@435 928 int Phi::operand_count() const {
duke@435 929 if (_block->is_set(BlockBegin::exception_entry_flag)) {
duke@435 930 return _block->number_of_exception_states();
duke@435 931 } else {
duke@435 932 return _block->number_of_preds();
duke@435 933 }
duke@435 934 }
duke@435 935
duke@435 936
iveresov@2138 937
iveresov@2138 938 void ProfileInvoke::state_values_do(ValueVisitor* f) {
iveresov@2138 939 if (state() != NULL) state()->values_do(f);
iveresov@2138 940 }

mercurial