1346 tj = ta = ta->
1347 remove_speculative()->
1348 cast_to_ptr_type(ptr)->
1349 with_offset(offset);
1350 }
1351 } else if (ta) {
1352 // For arrays indexed by constant indices, we flatten the alias
1353 // space to include all of the array body. Only the header, klass
1354 // and array length can be accessed un-aliased.
1355 if( offset != Type::OffsetBot ) {
1356 if( ta->const_oop() ) { // MethodData* or Method*
1357 offset = Type::OffsetBot; // Flatten constant access into array body
1358 tj = ta = ta->
1359 remove_speculative()->
1360 cast_to_ptr_type(ptr)->
1361 cast_to_exactness(false)->
1362 with_offset(offset);
1363 } else if( offset == arrayOopDesc::length_offset_in_bytes() ) {
1364 // range is OK as-is.
1365 tj = ta = TypeAryPtr::RANGE;
1366 } else if( offset == oopDesc::klass_offset_in_bytes() ) {
1367 tj = TypeInstPtr::KLASS; // all klass loads look alike
1368 ta = TypeAryPtr::RANGE; // generic ignored junk
1369 ptr = TypePtr::BotPTR;
1370 } else if( offset == oopDesc::mark_offset_in_bytes() ) {
1371 tj = TypeInstPtr::MARK;
1372 ta = TypeAryPtr::RANGE; // generic ignored junk
1373 ptr = TypePtr::BotPTR;
1374 } else { // Random constant offset into array body
1375 offset = Type::OffsetBot; // Flatten constant access into array body
1376 tj = ta = ta->
1377 remove_speculative()->
1378 cast_to_ptr_type(ptr)->
1379 cast_to_exactness(false)->
1380 with_offset(offset);
1381 }
1382 }
1383 // Arrays of fixed size alias with arrays of unknown size.
1384 if (ta->size() != TypeInt::POS) {
1385 const TypeAry *tary = TypeAry::make(ta->elem(), TypeInt::POS);
1386 tj = ta = ta->
1519 offset = in_bytes(Klass::secondary_super_cache_offset());
1520 tj = tk = tk->with_offset(offset);
1521 }
1522 }
1523
1524 // Flatten all Raw pointers together.
1525 if (tj->base() == Type::RawPtr)
1526 tj = TypeRawPtr::BOTTOM;
1527
1528 if (tj->base() == Type::AnyPtr)
1529 tj = TypePtr::BOTTOM; // An error, which the caller must check for.
1530
1531 offset = tj->offset();
1532 assert( offset != Type::OffsetTop, "Offset has fallen from constant" );
1533
1534 assert( (offset != Type::OffsetBot && tj->base() != Type::AryPtr) ||
1535 (offset == Type::OffsetBot && tj->base() == Type::AryPtr) ||
1536 (offset == Type::OffsetBot && tj == TypeOopPtr::BOTTOM) ||
1537 (offset == Type::OffsetBot && tj == TypePtr::BOTTOM) ||
1538 (offset == oopDesc::mark_offset_in_bytes() && tj->base() == Type::AryPtr) ||
1539 (offset == oopDesc::klass_offset_in_bytes() && tj->base() == Type::AryPtr) ||
1540 (offset == arrayOopDesc::length_offset_in_bytes() && tj->base() == Type::AryPtr),
1541 "For oops, klasses, raw offset must be constant; for arrays the offset is never known" );
1542 assert( tj->ptr() != TypePtr::TopPTR &&
1543 tj->ptr() != TypePtr::AnyNull &&
1544 tj->ptr() != TypePtr::Null, "No imprecise addresses" );
1545 // assert( tj->ptr() != TypePtr::Constant ||
1546 // tj->base() == Type::RawPtr ||
1547 // tj->base() == Type::KlassPtr, "No constant oop addresses" );
1548
1549 return tj;
1550 }
1551
1552 void Compile::AliasType::Init(int i, const TypePtr* at) {
1553 assert(AliasIdxTop <= i && i < Compile::current()->_max_alias_types, "Invalid alias index");
1554 _index = i;
1555 _adr_type = at;
1556 _field = nullptr;
1557 _element = nullptr;
1558 _is_rewritable = true; // default
1559 const TypeOopPtr *atoop = (at != nullptr) ? at->isa_oopptr() : nullptr;
|
1346 tj = ta = ta->
1347 remove_speculative()->
1348 cast_to_ptr_type(ptr)->
1349 with_offset(offset);
1350 }
1351 } else if (ta) {
1352 // For arrays indexed by constant indices, we flatten the alias
1353 // space to include all of the array body. Only the header, klass
1354 // and array length can be accessed un-aliased.
1355 if( offset != Type::OffsetBot ) {
1356 if( ta->const_oop() ) { // MethodData* or Method*
1357 offset = Type::OffsetBot; // Flatten constant access into array body
1358 tj = ta = ta->
1359 remove_speculative()->
1360 cast_to_ptr_type(ptr)->
1361 cast_to_exactness(false)->
1362 with_offset(offset);
1363 } else if( offset == arrayOopDesc::length_offset_in_bytes() ) {
1364 // range is OK as-is.
1365 tj = ta = TypeAryPtr::RANGE;
1366 } else if( offset == Type::klass_offset() ) {
1367 tj = TypeInstPtr::KLASS; // all klass loads look alike
1368 ta = TypeAryPtr::RANGE; // generic ignored junk
1369 ptr = TypePtr::BotPTR;
1370 } else if( offset == oopDesc::mark_offset_in_bytes() ) {
1371 tj = TypeInstPtr::MARK;
1372 ta = TypeAryPtr::RANGE; // generic ignored junk
1373 ptr = TypePtr::BotPTR;
1374 } else { // Random constant offset into array body
1375 offset = Type::OffsetBot; // Flatten constant access into array body
1376 tj = ta = ta->
1377 remove_speculative()->
1378 cast_to_ptr_type(ptr)->
1379 cast_to_exactness(false)->
1380 with_offset(offset);
1381 }
1382 }
1383 // Arrays of fixed size alias with arrays of unknown size.
1384 if (ta->size() != TypeInt::POS) {
1385 const TypeAry *tary = TypeAry::make(ta->elem(), TypeInt::POS);
1386 tj = ta = ta->
1519 offset = in_bytes(Klass::secondary_super_cache_offset());
1520 tj = tk = tk->with_offset(offset);
1521 }
1522 }
1523
1524 // Flatten all Raw pointers together.
1525 if (tj->base() == Type::RawPtr)
1526 tj = TypeRawPtr::BOTTOM;
1527
1528 if (tj->base() == Type::AnyPtr)
1529 tj = TypePtr::BOTTOM; // An error, which the caller must check for.
1530
1531 offset = tj->offset();
1532 assert( offset != Type::OffsetTop, "Offset has fallen from constant" );
1533
1534 assert( (offset != Type::OffsetBot && tj->base() != Type::AryPtr) ||
1535 (offset == Type::OffsetBot && tj->base() == Type::AryPtr) ||
1536 (offset == Type::OffsetBot && tj == TypeOopPtr::BOTTOM) ||
1537 (offset == Type::OffsetBot && tj == TypePtr::BOTTOM) ||
1538 (offset == oopDesc::mark_offset_in_bytes() && tj->base() == Type::AryPtr) ||
1539 (offset == Type::klass_offset() && tj->base() == Type::AryPtr) ||
1540 (offset == arrayOopDesc::length_offset_in_bytes() && tj->base() == Type::AryPtr),
1541 "For oops, klasses, raw offset must be constant; for arrays the offset is never known" );
1542 assert( tj->ptr() != TypePtr::TopPTR &&
1543 tj->ptr() != TypePtr::AnyNull &&
1544 tj->ptr() != TypePtr::Null, "No imprecise addresses" );
1545 // assert( tj->ptr() != TypePtr::Constant ||
1546 // tj->base() == Type::RawPtr ||
1547 // tj->base() == Type::KlassPtr, "No constant oop addresses" );
1548
1549 return tj;
1550 }
1551
1552 void Compile::AliasType::Init(int i, const TypePtr* at) {
1553 assert(AliasIdxTop <= i && i < Compile::current()->_max_alias_types, "Invalid alias index");
1554 _index = i;
1555 _adr_type = at;
1556 _field = nullptr;
1557 _element = nullptr;
1558 _is_rewritable = true; // default
1559 const TypeOopPtr *atoop = (at != nullptr) ? at->isa_oopptr() : nullptr;
|