src/share/vm/c1/c1_Instruction.cpp

Wed, 31 Jan 2018 19:24:57 -0500

author
dbuck
date
Wed, 31 Jan 2018 19:24:57 -0500
changeset 9289
427b2fb1944f
parent 8652
057571442f86
child 8856
ac27a9c85bea
child 9942
eddd586d1a4c
permissions
-rw-r--r--

8189170: Add option to disable stack overflow checking in primordial thread for use with JNI_CreateJavaJVM
Reviewed-by: dcubed

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 {
shshahma@8652 363 ciSignature* declared_signature = state()->scope()->method()->get_declared_signature_at_bci(state()->bci());
shshahma@8652 364 ciType *t = declared_signature->return_type();
roland@2728 365 assert(t->basic_type() != T_VOID, "need return value of void method?");
roland@2728 366 return t;
roland@2728 367 }
twisti@1730 368
duke@435 369 // Implementation of Contant
duke@435 370 intx Constant::hash() const {
roland@2174 371 if (state_before() == NULL) {
duke@435 372 switch (type()->tag()) {
duke@435 373 case intTag:
duke@435 374 return HASH2(name(), type()->as_IntConstant()->value());
coleenp@4037 375 case addressTag:
coleenp@4037 376 return HASH2(name(), type()->as_AddressConstant()->value());
duke@435 377 case longTag:
duke@435 378 {
duke@435 379 jlong temp = type()->as_LongConstant()->value();
duke@435 380 return HASH3(name(), high(temp), low(temp));
duke@435 381 }
duke@435 382 case floatTag:
duke@435 383 return HASH2(name(), jint_cast(type()->as_FloatConstant()->value()));
duke@435 384 case doubleTag:
duke@435 385 {
duke@435 386 jlong temp = jlong_cast(type()->as_DoubleConstant()->value());
duke@435 387 return HASH3(name(), high(temp), low(temp));
duke@435 388 }
duke@435 389 case objectTag:
duke@435 390 assert(type()->as_ObjectType()->is_loaded(), "can't handle unloaded values");
duke@435 391 return HASH2(name(), type()->as_ObjectType()->constant_value());
coleenp@4037 392 case metaDataTag:
coleenp@4037 393 assert(type()->as_MetadataType()->is_loaded(), "can't handle unloaded values");
coleenp@4037 394 return HASH2(name(), type()->as_MetadataType()->constant_value());
coleenp@4037 395 default:
coleenp@4037 396 ShouldNotReachHere();
duke@435 397 }
duke@435 398 }
duke@435 399 return 0;
duke@435 400 }
duke@435 401
duke@435 402 bool Constant::is_equal(Value v) const {
duke@435 403 if (v->as_Constant() == NULL) return false;
duke@435 404
duke@435 405 switch (type()->tag()) {
duke@435 406 case intTag:
duke@435 407 {
duke@435 408 IntConstant* t1 = type()->as_IntConstant();
duke@435 409 IntConstant* t2 = v->type()->as_IntConstant();
duke@435 410 return (t1 != NULL && t2 != NULL &&
duke@435 411 t1->value() == t2->value());
duke@435 412 }
duke@435 413 case longTag:
duke@435 414 {
duke@435 415 LongConstant* t1 = type()->as_LongConstant();
duke@435 416 LongConstant* t2 = v->type()->as_LongConstant();
duke@435 417 return (t1 != NULL && t2 != NULL &&
duke@435 418 t1->value() == t2->value());
duke@435 419 }
duke@435 420 case floatTag:
duke@435 421 {
duke@435 422 FloatConstant* t1 = type()->as_FloatConstant();
duke@435 423 FloatConstant* t2 = v->type()->as_FloatConstant();
duke@435 424 return (t1 != NULL && t2 != NULL &&
duke@435 425 jint_cast(t1->value()) == jint_cast(t2->value()));
duke@435 426 }
duke@435 427 case doubleTag:
duke@435 428 {
duke@435 429 DoubleConstant* t1 = type()->as_DoubleConstant();
duke@435 430 DoubleConstant* t2 = v->type()->as_DoubleConstant();
duke@435 431 return (t1 != NULL && t2 != NULL &&
duke@435 432 jlong_cast(t1->value()) == jlong_cast(t2->value()));
duke@435 433 }
duke@435 434 case objectTag:
duke@435 435 {
duke@435 436 ObjectType* t1 = type()->as_ObjectType();
duke@435 437 ObjectType* t2 = v->type()->as_ObjectType();
duke@435 438 return (t1 != NULL && t2 != NULL &&
duke@435 439 t1->is_loaded() && t2->is_loaded() &&
duke@435 440 t1->constant_value() == t2->constant_value());
duke@435 441 }
coleenp@4037 442 case metaDataTag:
coleenp@4037 443 {
coleenp@4037 444 MetadataType* t1 = type()->as_MetadataType();
coleenp@4037 445 MetadataType* t2 = v->type()->as_MetadataType();
coleenp@4037 446 return (t1 != NULL && t2 != NULL &&
coleenp@4037 447 t1->is_loaded() && t2->is_loaded() &&
coleenp@4037 448 t1->constant_value() == t2->constant_value());
coleenp@4037 449 }
duke@435 450 }
duke@435 451 return false;
duke@435 452 }
duke@435 453
roland@2254 454 Constant::CompareResult Constant::compare(Instruction::Condition cond, Value right) const {
duke@435 455 Constant* rc = right->as_Constant();
duke@435 456 // other is not a constant
roland@2254 457 if (rc == NULL) return not_comparable;
duke@435 458
duke@435 459 ValueType* lt = type();
duke@435 460 ValueType* rt = rc->type();
duke@435 461 // different types
roland@2254 462 if (lt->base() != rt->base()) return not_comparable;
duke@435 463 switch (lt->tag()) {
duke@435 464 case intTag: {
duke@435 465 int x = lt->as_IntConstant()->value();
duke@435 466 int y = rt->as_IntConstant()->value();
duke@435 467 switch (cond) {
roland@2254 468 case If::eql: return x == y ? cond_true : cond_false;
roland@2254 469 case If::neq: return x != y ? cond_true : cond_false;
roland@2254 470 case If::lss: return x < y ? cond_true : cond_false;
roland@2254 471 case If::leq: return x <= y ? cond_true : cond_false;
roland@2254 472 case If::gtr: return x > y ? cond_true : cond_false;
roland@2254 473 case If::geq: return x >= y ? cond_true : cond_false;
duke@435 474 }
duke@435 475 break;
duke@435 476 }
duke@435 477 case longTag: {
duke@435 478 jlong x = lt->as_LongConstant()->value();
duke@435 479 jlong y = rt->as_LongConstant()->value();
duke@435 480 switch (cond) {
roland@2254 481 case If::eql: return x == y ? cond_true : cond_false;
roland@2254 482 case If::neq: return x != y ? cond_true : cond_false;
roland@2254 483 case If::lss: return x < y ? cond_true : cond_false;
roland@2254 484 case If::leq: return x <= y ? cond_true : cond_false;
roland@2254 485 case If::gtr: return x > y ? cond_true : cond_false;
roland@2254 486 case If::geq: return x >= y ? cond_true : cond_false;
duke@435 487 }
duke@435 488 break;
duke@435 489 }
duke@435 490 case objectTag: {
duke@435 491 ciObject* xvalue = lt->as_ObjectType()->constant_value();
duke@435 492 ciObject* yvalue = rt->as_ObjectType()->constant_value();
duke@435 493 assert(xvalue != NULL && yvalue != NULL, "not constants");
duke@435 494 if (xvalue->is_loaded() && yvalue->is_loaded()) {
duke@435 495 switch (cond) {
roland@2254 496 case If::eql: return xvalue == yvalue ? cond_true : cond_false;
roland@2254 497 case If::neq: return xvalue != yvalue ? cond_true : cond_false;
duke@435 498 }
duke@435 499 }
duke@435 500 break;
duke@435 501 }
coleenp@4037 502 case metaDataTag: {
coleenp@4037 503 ciMetadata* xvalue = lt->as_MetadataType()->constant_value();
coleenp@4037 504 ciMetadata* yvalue = rt->as_MetadataType()->constant_value();
coleenp@4037 505 assert(xvalue != NULL && yvalue != NULL, "not constants");
coleenp@4037 506 if (xvalue->is_loaded() && yvalue->is_loaded()) {
coleenp@4037 507 switch (cond) {
coleenp@4037 508 case If::eql: return xvalue == yvalue ? cond_true : cond_false;
coleenp@4037 509 case If::neq: return xvalue != yvalue ? cond_true : cond_false;
coleenp@4037 510 }
coleenp@4037 511 }
coleenp@4037 512 break;
coleenp@4037 513 }
duke@435 514 }
roland@2254 515 return not_comparable;
duke@435 516 }
duke@435 517
duke@435 518
duke@435 519 // Implementation of BlockBegin
duke@435 520
duke@435 521 void BlockBegin::set_end(BlockEnd* end) {
duke@435 522 assert(end != NULL, "should not reset block end to NULL");
twisti@3100 523 if (end == _end) {
duke@435 524 return;
duke@435 525 }
twisti@3100 526 clear_end();
duke@435 527
twisti@3100 528 // Set the new end
duke@435 529 _end = end;
duke@435 530
duke@435 531 _successors.clear();
duke@435 532 // Now reset successors list based on BlockEnd
twisti@3100 533 for (int i = 0; i < end->number_of_sux(); i++) {
duke@435 534 BlockBegin* sux = end->sux_at(i);
duke@435 535 _successors.append(sux);
duke@435 536 sux->_predecessors.append(this);
duke@435 537 }
duke@435 538 _end->set_begin(this);
duke@435 539 }
duke@435 540
duke@435 541
twisti@3100 542 void BlockBegin::clear_end() {
twisti@3100 543 // Must make the predecessors/successors match up with the
twisti@3100 544 // BlockEnd's notion.
twisti@3100 545 if (_end != NULL) {
twisti@3100 546 // disconnect from the old end
twisti@3100 547 _end->set_begin(NULL);
twisti@3100 548
twisti@3100 549 // disconnect this block from it's current successors
twisti@3100 550 for (int i = 0; i < _successors.length(); i++) {
twisti@3100 551 _successors.at(i)->remove_predecessor(this);
twisti@3100 552 }
twisti@3100 553 _end = NULL;
twisti@3100 554 }
twisti@3100 555 }
twisti@3100 556
twisti@3100 557
duke@435 558 void BlockBegin::disconnect_edge(BlockBegin* from, BlockBegin* to) {
duke@435 559 // disconnect any edges between from and to
duke@435 560 #ifndef PRODUCT
duke@435 561 if (PrintIR && Verbose) {
duke@435 562 tty->print_cr("Disconnected edge B%d -> B%d", from->block_id(), to->block_id());
duke@435 563 }
duke@435 564 #endif
duke@435 565 for (int s = 0; s < from->number_of_sux();) {
duke@435 566 BlockBegin* sux = from->sux_at(s);
duke@435 567 if (sux == to) {
duke@435 568 int index = sux->_predecessors.index_of(from);
duke@435 569 if (index >= 0) {
duke@435 570 sux->_predecessors.remove_at(index);
duke@435 571 }
duke@435 572 from->_successors.remove_at(s);
duke@435 573 } else {
duke@435 574 s++;
duke@435 575 }
duke@435 576 }
duke@435 577 }
duke@435 578
duke@435 579
duke@435 580 void BlockBegin::disconnect_from_graph() {
duke@435 581 // disconnect this block from all other blocks
duke@435 582 for (int p = 0; p < number_of_preds(); p++) {
duke@435 583 pred_at(p)->remove_successor(this);
duke@435 584 }
duke@435 585 for (int s = 0; s < number_of_sux(); s++) {
duke@435 586 sux_at(s)->remove_predecessor(this);
duke@435 587 }
duke@435 588 }
duke@435 589
duke@435 590 void BlockBegin::substitute_sux(BlockBegin* old_sux, BlockBegin* new_sux) {
duke@435 591 // modify predecessors before substituting successors
duke@435 592 for (int i = 0; i < number_of_sux(); i++) {
duke@435 593 if (sux_at(i) == old_sux) {
duke@435 594 // remove old predecessor before adding new predecessor
duke@435 595 // otherwise there is a dead predecessor in the list
duke@435 596 new_sux->remove_predecessor(old_sux);
duke@435 597 new_sux->add_predecessor(this);
duke@435 598 }
duke@435 599 }
duke@435 600 old_sux->remove_predecessor(this);
duke@435 601 end()->substitute_sux(old_sux, new_sux);
duke@435 602 }
duke@435 603
duke@435 604
duke@435 605
duke@435 606 // In general it is not possible to calculate a value for the field "depth_first_number"
duke@435 607 // of the inserted block, without recomputing the values of the other blocks
duke@435 608 // in the CFG. Therefore the value of "depth_first_number" in BlockBegin becomes meaningless.
duke@435 609 BlockBegin* BlockBegin::insert_block_between(BlockBegin* sux) {
roland@4860 610 int bci = sux->bci();
roland@4860 611 // critical edge splitting may introduce a goto after a if and array
roland@4860 612 // bound check elimination may insert a predicate between the if and
roland@4860 613 // goto. The bci of the goto can't be the one of the if otherwise
roland@4860 614 // the state and bci are inconsistent and a deoptimization triggered
roland@4860 615 // by the predicate would lead to incorrect execution/a crash.
roland@4860 616 BlockBegin* new_sux = new BlockBegin(bci);
duke@435 617
duke@435 618 // mark this block (special treatment when block order is computed)
duke@435 619 new_sux->set(critical_edge_split_flag);
duke@435 620
duke@435 621 // This goto is not a safepoint.
duke@435 622 Goto* e = new Goto(sux, false);
roland@4860 623 new_sux->set_next(e, bci);
duke@435 624 new_sux->set_end(e);
duke@435 625 // setup states
duke@435 626 ValueStack* s = end()->state();
roland@4860 627 new_sux->set_state(s->copy(s->kind(), bci));
roland@4860 628 e->set_state(s->copy(s->kind(), bci));
duke@435 629 assert(new_sux->state()->locals_size() == s->locals_size(), "local size mismatch!");
duke@435 630 assert(new_sux->state()->stack_size() == s->stack_size(), "stack size mismatch!");
duke@435 631 assert(new_sux->state()->locks_size() == s->locks_size(), "locks size mismatch!");
duke@435 632
duke@435 633 // link predecessor to new block
duke@435 634 end()->substitute_sux(sux, new_sux);
duke@435 635
duke@435 636 // The ordering needs to be the same, so remove the link that the
duke@435 637 // set_end call above added and substitute the new_sux for this
duke@435 638 // block.
duke@435 639 sux->remove_predecessor(new_sux);
duke@435 640
duke@435 641 // the successor could be the target of a switch so it might have
duke@435 642 // multiple copies of this predecessor, so substitute the new_sux
duke@435 643 // for the first and delete the rest.
duke@435 644 bool assigned = false;
duke@435 645 BlockList& list = sux->_predecessors;
duke@435 646 for (int i = 0; i < list.length(); i++) {
duke@435 647 BlockBegin** b = list.adr_at(i);
duke@435 648 if (*b == this) {
duke@435 649 if (assigned) {
duke@435 650 list.remove_at(i);
duke@435 651 // reprocess this index
duke@435 652 i--;
duke@435 653 } else {
duke@435 654 assigned = true;
duke@435 655 *b = new_sux;
duke@435 656 }
duke@435 657 // link the new block back to it's predecessors.
duke@435 658 new_sux->add_predecessor(this);
duke@435 659 }
duke@435 660 }
duke@435 661 assert(assigned == true, "should have assigned at least once");
duke@435 662 return new_sux;
duke@435 663 }
duke@435 664
duke@435 665
duke@435 666 void BlockBegin::remove_successor(BlockBegin* pred) {
duke@435 667 int idx;
duke@435 668 while ((idx = _successors.index_of(pred)) >= 0) {
duke@435 669 _successors.remove_at(idx);
duke@435 670 }
duke@435 671 }
duke@435 672
duke@435 673
duke@435 674 void BlockBegin::add_predecessor(BlockBegin* pred) {
duke@435 675 _predecessors.append(pred);
duke@435 676 }
duke@435 677
duke@435 678
duke@435 679 void BlockBegin::remove_predecessor(BlockBegin* pred) {
duke@435 680 int idx;
duke@435 681 while ((idx = _predecessors.index_of(pred)) >= 0) {
duke@435 682 _predecessors.remove_at(idx);
duke@435 683 }
duke@435 684 }
duke@435 685
duke@435 686
duke@435 687 void BlockBegin::add_exception_handler(BlockBegin* b) {
duke@435 688 assert(b != NULL && (b->is_set(exception_entry_flag)), "exception handler must exist");
duke@435 689 // add only if not in the list already
duke@435 690 if (!_exception_handlers.contains(b)) _exception_handlers.append(b);
duke@435 691 }
duke@435 692
duke@435 693 int BlockBegin::add_exception_state(ValueStack* state) {
duke@435 694 assert(is_set(exception_entry_flag), "only for xhandlers");
duke@435 695 if (_exception_states == NULL) {
duke@435 696 _exception_states = new ValueStackStack(4);
duke@435 697 }
duke@435 698 _exception_states->append(state);
duke@435 699 return _exception_states->length() - 1;
duke@435 700 }
duke@435 701
duke@435 702
duke@435 703 void BlockBegin::iterate_preorder(boolArray& mark, BlockClosure* closure) {
duke@435 704 if (!mark.at(block_id())) {
duke@435 705 mark.at_put(block_id(), true);
duke@435 706 closure->block_do(this);
duke@435 707 BlockEnd* e = end(); // must do this after block_do because block_do may change it!
duke@435 708 { for (int i = number_of_exception_handlers() - 1; i >= 0; i--) exception_handler_at(i)->iterate_preorder(mark, closure); }
duke@435 709 { for (int i = e->number_of_sux () - 1; i >= 0; i--) e->sux_at (i)->iterate_preorder(mark, closure); }
duke@435 710 }
duke@435 711 }
duke@435 712
duke@435 713
duke@435 714 void BlockBegin::iterate_postorder(boolArray& mark, BlockClosure* closure) {
duke@435 715 if (!mark.at(block_id())) {
duke@435 716 mark.at_put(block_id(), true);
duke@435 717 BlockEnd* e = end();
duke@435 718 { for (int i = number_of_exception_handlers() - 1; i >= 0; i--) exception_handler_at(i)->iterate_postorder(mark, closure); }
duke@435 719 { for (int i = e->number_of_sux () - 1; i >= 0; i--) e->sux_at (i)->iterate_postorder(mark, closure); }
duke@435 720 closure->block_do(this);
duke@435 721 }
duke@435 722 }
duke@435 723
duke@435 724
duke@435 725 void BlockBegin::iterate_preorder(BlockClosure* closure) {
duke@435 726 boolArray mark(number_of_blocks(), false);
duke@435 727 iterate_preorder(mark, closure);
duke@435 728 }
duke@435 729
duke@435 730
duke@435 731 void BlockBegin::iterate_postorder(BlockClosure* closure) {
duke@435 732 boolArray mark(number_of_blocks(), false);
duke@435 733 iterate_postorder(mark, closure);
duke@435 734 }
duke@435 735
duke@435 736
iveresov@1939 737 void BlockBegin::block_values_do(ValueVisitor* f) {
duke@435 738 for (Instruction* n = this; n != NULL; n = n->next()) n->values_do(f);
duke@435 739 }
duke@435 740
duke@435 741
duke@435 742 #ifndef PRODUCT
iveresov@2138 743 #define TRACE_PHI(code) if (PrintPhiFunctions) { code; }
duke@435 744 #else
iveresov@2138 745 #define TRACE_PHI(coce)
duke@435 746 #endif
duke@435 747
duke@435 748
duke@435 749 bool BlockBegin::try_merge(ValueStack* new_state) {
duke@435 750 TRACE_PHI(tty->print_cr("********** try_merge for block B%d", block_id()));
duke@435 751
duke@435 752 // local variables used for state iteration
duke@435 753 int index;
duke@435 754 Value new_value, existing_value;
duke@435 755
duke@435 756 ValueStack* existing_state = state();
duke@435 757 if (existing_state == NULL) {
duke@435 758 TRACE_PHI(tty->print_cr("first call of try_merge for this block"));
duke@435 759
duke@435 760 if (is_set(BlockBegin::was_visited_flag)) {
duke@435 761 // this actually happens for complicated jsr/ret structures
duke@435 762 return false; // BAILOUT in caller
duke@435 763 }
duke@435 764
duke@435 765 // copy state because it is altered
roland@2174 766 new_state = new_state->copy(ValueStack::BlockBeginState, bci());
duke@435 767
duke@435 768 // Use method liveness to invalidate dead locals
duke@435 769 MethodLivenessResult liveness = new_state->scope()->method()->liveness_at_bci(bci());
duke@435 770 if (liveness.is_valid()) {
duke@435 771 assert((int)liveness.size() == new_state->locals_size(), "error in use of liveness");
duke@435 772
duke@435 773 for_each_local_value(new_state, index, new_value) {
duke@435 774 if (!liveness.at(index) || new_value->type()->is_illegal()) {
duke@435 775 new_state->invalidate_local(index);
duke@435 776 TRACE_PHI(tty->print_cr("invalidating dead local %d", index));
duke@435 777 }
duke@435 778 }
duke@435 779 }
duke@435 780
duke@435 781 if (is_set(BlockBegin::parser_loop_header_flag)) {
duke@435 782 TRACE_PHI(tty->print_cr("loop header block, initializing phi functions"));
duke@435 783
duke@435 784 for_each_stack_value(new_state, index, new_value) {
duke@435 785 new_state->setup_phi_for_stack(this, index);
duke@435 786 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 787 }
duke@435 788
duke@435 789 BitMap requires_phi_function = new_state->scope()->requires_phi_function();
duke@435 790
duke@435 791 for_each_local_value(new_state, index, new_value) {
duke@435 792 bool requires_phi = requires_phi_function.at(index) || (new_value->type()->is_double_word() && requires_phi_function.at(index + 1));
duke@435 793 if (requires_phi || !SelectivePhiFunctions) {
duke@435 794 new_state->setup_phi_for_local(this, index);
duke@435 795 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 796 }
duke@435 797 }
duke@435 798 }
duke@435 799
duke@435 800 // initialize state of block
duke@435 801 set_state(new_state);
duke@435 802
roland@2174 803 } else if (existing_state->is_same(new_state)) {
duke@435 804 TRACE_PHI(tty->print_cr("exisiting state found"));
duke@435 805
duke@435 806 assert(existing_state->scope() == new_state->scope(), "not matching");
duke@435 807 assert(existing_state->locals_size() == new_state->locals_size(), "not matching");
duke@435 808 assert(existing_state->stack_size() == new_state->stack_size(), "not matching");
duke@435 809
duke@435 810 if (is_set(BlockBegin::was_visited_flag)) {
duke@435 811 TRACE_PHI(tty->print_cr("loop header block, phis must be present"));
duke@435 812
duke@435 813 if (!is_set(BlockBegin::parser_loop_header_flag)) {
duke@435 814 // this actually happens for complicated jsr/ret structures
duke@435 815 return false; // BAILOUT in caller
duke@435 816 }
duke@435 817
duke@435 818 for_each_local_value(existing_state, index, existing_value) {
duke@435 819 Value new_value = new_state->local_at(index);
duke@435 820 if (new_value == NULL || new_value->type()->tag() != existing_value->type()->tag()) {
duke@435 821 // The old code invalidated the phi function here
duke@435 822 // Because dead locals are replaced with NULL, this is a very rare case now, so simply bail out
duke@435 823 return false; // BAILOUT in caller
duke@435 824 }
duke@435 825 }
duke@435 826
duke@435 827 #ifdef ASSERT
duke@435 828 // check that all necessary phi functions are present
duke@435 829 for_each_stack_value(existing_state, index, existing_value) {
duke@435 830 assert(existing_value->as_Phi() != NULL && existing_value->as_Phi()->block() == this, "phi function required");
duke@435 831 }
duke@435 832 for_each_local_value(existing_state, index, existing_value) {
duke@435 833 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 834 }
duke@435 835 #endif
duke@435 836
duke@435 837 } else {
duke@435 838 TRACE_PHI(tty->print_cr("creating phi functions on demand"));
duke@435 839
duke@435 840 // create necessary phi functions for stack
duke@435 841 for_each_stack_value(existing_state, index, existing_value) {
duke@435 842 Value new_value = new_state->stack_at(index);
duke@435 843 Phi* existing_phi = existing_value->as_Phi();
duke@435 844
duke@435 845 if (new_value != existing_value && (existing_phi == NULL || existing_phi->block() != this)) {
duke@435 846 existing_state->setup_phi_for_stack(this, index);
duke@435 847 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 848 }
duke@435 849 }
duke@435 850
duke@435 851 // create necessary phi functions for locals
duke@435 852 for_each_local_value(existing_state, index, existing_value) {
duke@435 853 Value new_value = new_state->local_at(index);
duke@435 854 Phi* existing_phi = existing_value->as_Phi();
duke@435 855
duke@435 856 if (new_value == NULL || new_value->type()->tag() != existing_value->type()->tag()) {
duke@435 857 existing_state->invalidate_local(index);
duke@435 858 TRACE_PHI(tty->print_cr("invalidating local %d because of type mismatch", index));
duke@435 859 } else if (new_value != existing_value && (existing_phi == NULL || existing_phi->block() != this)) {
duke@435 860 existing_state->setup_phi_for_local(this, index);
duke@435 861 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 862 }
duke@435 863 }
duke@435 864 }
duke@435 865
duke@435 866 assert(existing_state->caller_state() == new_state->caller_state(), "caller states must be equal");
duke@435 867
duke@435 868 } else {
duke@435 869 assert(false, "stack or locks not matching (invalid bytecodes)");
duke@435 870 return false;
duke@435 871 }
duke@435 872
duke@435 873 TRACE_PHI(tty->print_cr("********** try_merge for block B%d successful", block_id()));
duke@435 874
duke@435 875 return true;
duke@435 876 }
duke@435 877
duke@435 878
duke@435 879 #ifndef PRODUCT
duke@435 880 void BlockBegin::print_block() {
duke@435 881 InstructionPrinter ip;
duke@435 882 print_block(ip, false);
duke@435 883 }
duke@435 884
duke@435 885
duke@435 886 void BlockBegin::print_block(InstructionPrinter& ip, bool live_only) {
duke@435 887 ip.print_instr(this); tty->cr();
duke@435 888 ip.print_stack(this->state()); tty->cr();
duke@435 889 ip.print_inline_level(this);
duke@435 890 ip.print_head();
duke@435 891 for (Instruction* n = next(); n != NULL; n = n->next()) {
duke@435 892 if (!live_only || n->is_pinned() || n->use_count() > 0) {
duke@435 893 ip.print_line(n);
duke@435 894 }
duke@435 895 }
duke@435 896 tty->cr();
duke@435 897 }
duke@435 898 #endif // PRODUCT
duke@435 899
duke@435 900
duke@435 901 // Implementation of BlockList
duke@435 902
duke@435 903 void BlockList::iterate_forward (BlockClosure* closure) {
duke@435 904 const int l = length();
duke@435 905 for (int i = 0; i < l; i++) closure->block_do(at(i));
duke@435 906 }
duke@435 907
duke@435 908
duke@435 909 void BlockList::iterate_backward(BlockClosure* closure) {
duke@435 910 for (int i = length() - 1; i >= 0; i--) closure->block_do(at(i));
duke@435 911 }
duke@435 912
duke@435 913
duke@435 914 void BlockList::blocks_do(void f(BlockBegin*)) {
duke@435 915 for (int i = length() - 1; i >= 0; i--) f(at(i));
duke@435 916 }
duke@435 917
duke@435 918
iveresov@1939 919 void BlockList::values_do(ValueVisitor* f) {
duke@435 920 for (int i = length() - 1; i >= 0; i--) at(i)->block_values_do(f);
duke@435 921 }
duke@435 922
duke@435 923
duke@435 924 #ifndef PRODUCT
duke@435 925 void BlockList::print(bool cfg_only, bool live_only) {
duke@435 926 InstructionPrinter ip;
duke@435 927 for (int i = 0; i < length(); i++) {
duke@435 928 BlockBegin* block = at(i);
duke@435 929 if (cfg_only) {
duke@435 930 ip.print_instr(block); tty->cr();
duke@435 931 } else {
duke@435 932 block->print_block(ip, live_only);
duke@435 933 }
duke@435 934 }
duke@435 935 }
duke@435 936 #endif // PRODUCT
duke@435 937
duke@435 938
duke@435 939 // Implementation of BlockEnd
duke@435 940
duke@435 941 void BlockEnd::set_begin(BlockBegin* begin) {
duke@435 942 BlockList* sux = NULL;
duke@435 943 if (begin != NULL) {
duke@435 944 sux = begin->successors();
roland@4860 945 } else if (this->begin() != NULL) {
duke@435 946 // copy our sux list
roland@4860 947 BlockList* sux = new BlockList(this->begin()->number_of_sux());
roland@4860 948 for (int i = 0; i < this->begin()->number_of_sux(); i++) {
roland@4860 949 sux->append(this->begin()->sux_at(i));
duke@435 950 }
duke@435 951 }
duke@435 952 _sux = sux;
duke@435 953 }
duke@435 954
duke@435 955
duke@435 956 void BlockEnd::substitute_sux(BlockBegin* old_sux, BlockBegin* new_sux) {
duke@435 957 substitute(*_sux, old_sux, new_sux);
duke@435 958 }
duke@435 959
duke@435 960
duke@435 961 // Implementation of Phi
duke@435 962
duke@435 963 // Normal phi functions take their operands from the last instruction of the
duke@435 964 // predecessor. Special handling is needed for xhanlder entries because there
duke@435 965 // the state of arbitrary instructions are needed.
duke@435 966
duke@435 967 Value Phi::operand_at(int i) const {
duke@435 968 ValueStack* state;
duke@435 969 if (_block->is_set(BlockBegin::exception_entry_flag)) {
duke@435 970 state = _block->exception_state_at(i);
duke@435 971 } else {
duke@435 972 state = _block->pred_at(i)->end()->state();
duke@435 973 }
duke@435 974 assert(state != NULL, "");
duke@435 975
duke@435 976 if (is_local()) {
duke@435 977 return state->local_at(local_index());
duke@435 978 } else {
duke@435 979 return state->stack_at(stack_index());
duke@435 980 }
duke@435 981 }
duke@435 982
duke@435 983
duke@435 984 int Phi::operand_count() const {
duke@435 985 if (_block->is_set(BlockBegin::exception_entry_flag)) {
duke@435 986 return _block->number_of_exception_states();
duke@435 987 } else {
duke@435 988 return _block->number_of_preds();
duke@435 989 }
duke@435 990 }
duke@435 991
roland@4860 992 #ifdef ASSERT
roland@4860 993 // Constructor of Assert
roland@4860 994 Assert::Assert(Value x, Condition cond, bool unordered_is_true, Value y) : Instruction(illegalType)
roland@4860 995 , _x(x)
roland@4860 996 , _cond(cond)
roland@4860 997 , _y(y)
roland@4860 998 {
roland@4860 999 set_flag(UnorderedIsTrueFlag, unordered_is_true);
roland@4860 1000 assert(x->type()->tag() == y->type()->tag(), "types must match");
roland@4860 1001 pin();
duke@435 1002
roland@4860 1003 stringStream strStream;
roland@4860 1004 Compilation::current()->method()->print_name(&strStream);
roland@4860 1005
roland@4860 1006 stringStream strStream1;
roland@4860 1007 InstructionPrinter ip1(1, &strStream1);
roland@4860 1008 ip1.print_instr(x);
roland@4860 1009
roland@4860 1010 stringStream strStream2;
roland@4860 1011 InstructionPrinter ip2(1, &strStream2);
roland@4860 1012 ip2.print_instr(y);
roland@4860 1013
roland@4860 1014 stringStream ss;
roland@4860 1015 ss.print("Assertion %s %s %s in method %s", strStream1.as_string(), ip2.cond_name(cond), strStream2.as_string(), strStream.as_string());
roland@4860 1016
roland@4860 1017 _message = ss.as_string();
roland@4860 1018 }
roland@4860 1019 #endif
roland@4860 1020
roland@4860 1021 void RangeCheckPredicate::check_state() {
roland@4860 1022 assert(state()->kind() != ValueStack::EmptyExceptionState && state()->kind() != ValueStack::ExceptionState, "will deopt with empty state");
roland@4860 1023 }
iveresov@2138 1024
iveresov@2138 1025 void ProfileInvoke::state_values_do(ValueVisitor* f) {
iveresov@2138 1026 if (state() != NULL) state()->values_do(f);
iveresov@2138 1027 }

mercurial