src/share/vm/c1/c1_Instruction.cpp

Tue, 24 Feb 2015 15:04:52 -0500

author
dlong
date
Tue, 24 Feb 2015 15:04:52 -0500
changeset 7598
ddce0b7cee93
parent 6198
55fb97c4c58d
child 6876
710a3c8b516e
child 8652
057571442f86
permissions
-rw-r--r--

8072383: resolve conflicts between open and closed ports
Summary: refactor close to remove references to closed ports
Reviewed-by: kvn, simonis, sgehwolf, dholmes

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

mercurial