| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index 6d8a1be02a83e228eca6134f24d41a99e25ab54d..f7812a4332bc4c6f0748bb25f14926e7973fe411 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -14402,6 +14402,13 @@
|
| return 0;
|
| }
|
|
|
| +int Code::LookupRangeInHandlerTable(int code_offset, int* data,
|
| + HandlerTable::CatchPrediction* prediction) {
|
| + DCHECK(!is_optimized_code());
|
| + HandlerTable* table = HandlerTable::cast(handler_table());
|
| + return table->LookupRange(code_offset, data, prediction);
|
| +}
|
| +
|
| void Code::MakeCodeAgeSequenceYoung(byte* sequence, Isolate* isolate) {
|
| PatchPlatformCodeAge(isolate, sequence, kNoAgeCodeAge, NO_MARKING_PARITY);
|
| }
|
|
|