| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index 1da7909031f52d354a1e7035c9d2cda28399aca5..f4004329acce188ab173f005ef9e676b510dc6b4 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -5172,21 +5172,6 @@ bool Code::back_edges_patched_for_osr() {
|
| uint16_t Code::to_boolean_state() { return extra_ic_state(); }
|
|
|
|
|
| -bool Code::has_function_cache() {
|
| - DCHECK(kind() == STUB);
|
| - return HasFunctionCacheField::decode(
|
| - READ_UINT32_FIELD(this, kKindSpecificFlags1Offset));
|
| -}
|
| -
|
| -
|
| -void Code::set_has_function_cache(bool flag) {
|
| - DCHECK(kind() == STUB);
|
| - int previous = READ_UINT32_FIELD(this, kKindSpecificFlags1Offset);
|
| - int updated = HasFunctionCacheField::update(previous, flag);
|
| - WRITE_UINT32_FIELD(this, kKindSpecificFlags1Offset, updated);
|
| -}
|
| -
|
| -
|
| bool Code::marked_for_deoptimization() {
|
| DCHECK(kind() == OPTIMIZED_FUNCTION);
|
| return MarkedForDeoptimizationField::decode(
|
|
|