src/share/vm/c1/c1_Instruction.cpp

Thu, 29 Sep 2011 23:09:54 -0700

author
iveresov
date
Thu, 29 Sep 2011 23:09:54 -0700
changeset 3160
dc45ae774613
parent 3100
a32de5085326
child 3969
1d7922586cf6
permissions
-rw-r--r--

7096639: Tiered: Incorrect counter overflow handling for inlined methods
Summary: Enable invocation events for inlinees
Reviewed-by: kvn

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

mercurial