| Index: src/x64/lithium-codegen-x64.cc
|
| diff --git a/src/x64/lithium-codegen-x64.cc b/src/x64/lithium-codegen-x64.cc
|
| index 82c912efcfdf27912a5d94e7fc05e8a6b49ff75e..871344dc4b7c77a34a77ffe9f5750cb4dacc761b 100644
|
| --- a/src/x64/lithium-codegen-x64.cc
|
| +++ b/src/x64/lithium-codegen-x64.cc
|
| @@ -325,6 +325,8 @@ bool LCodeGen::GenerateJumpTable() {
|
| __ Push(rsi);
|
| __ movp(rsi, MemOperand(rsp, kPointerSize));
|
| __ call(kScratchRegister);
|
| + info()->LogDeoptCallPosition(masm()->pc_offset(),
|
| + table_entry->deopt_info.inlining_id);
|
| }
|
| } else {
|
| if (info()->saves_caller_doubles()) {
|
| @@ -332,6 +334,8 @@ bool LCodeGen::GenerateJumpTable() {
|
| RestoreCallerDoubles();
|
| }
|
| __ call(entry, RelocInfo::RUNTIME_ENTRY);
|
| + info()->LogDeoptCallPosition(masm()->pc_offset(),
|
| + table_entry->deopt_info.inlining_id);
|
| }
|
| }
|
| return !is_aborted();
|
|
|