Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(520)

Side by Side Diff: src/x64/macro-assembler-x64.cc

Issue 2636913002: [liveedit] reimplement frame restarting. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #if V8_TARGET_ARCH_X64 5 #if V8_TARGET_ARCH_X64
6 6
7 #include "src/base/bits.h" 7 #include "src/base/bits.h"
8 #include "src/base/division-by-constant.h" 8 #include "src/base/division-by-constant.h"
9 #include "src/bootstrapper.h" 9 #include "src/bootstrapper.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 4063 matching lines...) Expand 10 before | Expand all | Expand 10 after
4074 if (FLAG_native_code_counters && counter->Enabled()) { 4074 if (FLAG_native_code_counters && counter->Enabled()) {
4075 Operand counter_operand = ExternalOperand(ExternalReference(counter)); 4075 Operand counter_operand = ExternalOperand(ExternalReference(counter));
4076 if (value == 1) { 4076 if (value == 1) {
4077 decl(counter_operand); 4077 decl(counter_operand);
4078 } else { 4078 } else {
4079 subl(counter_operand, Immediate(value)); 4079 subl(counter_operand, Immediate(value));
4080 } 4080 }
4081 } 4081 }
4082 } 4082 }
4083 4083
4084
4085 void MacroAssembler::DebugBreak() { 4084 void MacroAssembler::DebugBreak() {
4086 Set(rax, 0); // No arguments. 4085 Set(rax, 0); // No arguments.
4087 LoadAddress(rbx, 4086 LoadAddress(rbx,
4088 ExternalReference(Runtime::kHandleDebuggerStatement, isolate())); 4087 ExternalReference(Runtime::kHandleDebuggerStatement, isolate()));
4089 CEntryStub ces(isolate(), 1); 4088 CEntryStub ces(isolate(), 1);
4090 DCHECK(AllowThisStubCall(&ces)); 4089 DCHECK(AllowThisStubCall(&ces));
4091 Call(ces.GetCode(), RelocInfo::DEBUGGER_STATEMENT); 4090 Call(ces.GetCode(), RelocInfo::DEBUGGER_STATEMENT);
4092 } 4091 }
4093 4092
4093 void MacroAssembler::MaybeDropFrames() {
4094 // Check whether we need to drop frames to restart a function on the stack.
4095 ExternalReference new_fp = ExternalReference::debug_new_fp_address(isolate());
4096 Load(rbx, new_fp);
4097 testp(rbx, rbx);
4098 j(not_zero, isolate()->builtins()->FrameDropperTrampoline(),
4099 RelocInfo::CODE_TARGET);
4100 }
4101
4094 void MacroAssembler::PrepareForTailCall(const ParameterCount& callee_args_count, 4102 void MacroAssembler::PrepareForTailCall(const ParameterCount& callee_args_count,
4095 Register caller_args_count_reg, 4103 Register caller_args_count_reg,
4096 Register scratch0, Register scratch1, 4104 Register scratch0, Register scratch1,
4097 ReturnAddressState ra_state) { 4105 ReturnAddressState ra_state) {
4098 #if DEBUG 4106 #if DEBUG
4099 if (callee_args_count.is_reg()) { 4107 if (callee_args_count.is_reg()) {
4100 DCHECK(!AreAliased(callee_args_count.reg(), caller_args_count_reg, scratch0, 4108 DCHECK(!AreAliased(callee_args_count.reg(), caller_args_count_reg, scratch0,
4101 scratch1)); 4109 scratch1));
4102 } else { 4110 } else {
4103 DCHECK(!AreAliased(caller_args_count_reg, scratch0, scratch1)); 4111 DCHECK(!AreAliased(caller_args_count_reg, scratch0, scratch1));
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
4283 j(equal, &invoke, Label::kNear); 4291 j(equal, &invoke, Label::kNear);
4284 DCHECK(expected.reg().is(rbx)); 4292 DCHECK(expected.reg().is(rbx));
4285 } else if (!expected.reg().is(actual.reg())) { 4293 } else if (!expected.reg().is(actual.reg())) {
4286 // Both expected and actual are in (different) registers. This 4294 // Both expected and actual are in (different) registers. This
4287 // is the case when we invoke functions using call and apply. 4295 // is the case when we invoke functions using call and apply.
4288 cmpp(expected.reg(), actual.reg()); 4296 cmpp(expected.reg(), actual.reg());
4289 j(equal, &invoke, Label::kNear); 4297 j(equal, &invoke, Label::kNear);
4290 DCHECK(actual.reg().is(rax)); 4298 DCHECK(actual.reg().is(rax));
4291 DCHECK(expected.reg().is(rbx)); 4299 DCHECK(expected.reg().is(rbx));
4292 } else { 4300 } else {
4301 definitely_matches = true;
4293 Move(rax, actual.reg()); 4302 Move(rax, actual.reg());
4294 } 4303 }
4295 } 4304 }
4296 4305
4297 if (!definitely_matches) { 4306 if (!definitely_matches) {
4298 Handle<Code> adaptor = isolate()->builtins()->ArgumentsAdaptorTrampoline(); 4307 Handle<Code> adaptor = isolate()->builtins()->ArgumentsAdaptorTrampoline();
4299 if (flag == CALL_FUNCTION) { 4308 if (flag == CALL_FUNCTION) {
4300 call_wrapper.BeforeCall(CallSize(adaptor)); 4309 call_wrapper.BeforeCall(CallSize(adaptor));
4301 Call(adaptor, RelocInfo::CODE_TARGET); 4310 Call(adaptor, RelocInfo::CODE_TARGET);
4302 call_wrapper.AfterCall(); 4311 call_wrapper.AfterCall();
(...skipping 992 matching lines...) Expand 10 before | Expand all | Expand 10 after
5295 movl(rax, dividend); 5304 movl(rax, dividend);
5296 shrl(rax, Immediate(31)); 5305 shrl(rax, Immediate(31));
5297 addl(rdx, rax); 5306 addl(rdx, rax);
5298 } 5307 }
5299 5308
5300 5309
5301 } // namespace internal 5310 } // namespace internal
5302 } // namespace v8 5311 } // namespace v8
5303 5312
5304 #endif // V8_TARGET_ARCH_X64 5313 #endif // V8_TARGET_ARCH_X64
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698