blob: 177eb90a490a39fb4cceb0bc283a6d296339f123 [file] [log] [blame]
ager@chromium.org5ec48922009-05-05 07:25:34 +00001// Copyright 2009 the V8 project authors. All rights reserved.
2// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
kasperl@chromium.org71affb52009-05-26 05:44:31 +000028
29#include "v8.h"
30
31#include "codegen-inl.h"
32#include "debug.h"
33
34
35namespace v8 {
36namespace internal {
37
38#ifdef ENABLE_DEBUGGER_SUPPORT
39
40bool Debug::IsDebugBreakAtReturn(v8::internal::RelocInfo* rinfo) {
kasperl@chromium.orgdefbd102009-07-13 14:04:26 +000041 ASSERT(RelocInfo::IsJSReturn(rinfo->rmode()));
42 // 11th byte of patch is 0x49, 11th byte of JS return is 0xCC (int3).
43 ASSERT(*(rinfo->pc() + 10) == 0x49 || *(rinfo->pc() + 10) == 0xCC);
44 return (*(rinfo->pc() + 10) == 0x49);
kasperl@chromium.org71affb52009-05-26 05:44:31 +000045}
46
47void Debug::GenerateCallICDebugBreak(MacroAssembler* masm) {
48 masm->int3(); // UNIMPLEMENTED
49}
50
51void Debug::GenerateConstructCallDebugBreak(MacroAssembler* masm) {
52 masm->int3(); // UNIMPLEMENTED
53}
54
55void Debug::GenerateKeyedLoadICDebugBreak(MacroAssembler* masm) {
56 masm->int3(); // UNIMPLEMENTED
57}
58
59void Debug::GenerateKeyedStoreICDebugBreak(MacroAssembler* masm) {
60 masm->int3(); // UNIMPLEMENTED
61}
62
63void Debug::GenerateLoadICDebugBreak(MacroAssembler* masm) {
64 masm->int3(); // UNIMPLEMENTED
65}
66
67void Debug::GenerateReturnDebugBreak(MacroAssembler* masm) {
68 masm->int3(); // UNIMPLEMENTED
69}
70
71void Debug::GenerateReturnDebugBreakEntry(MacroAssembler* masm) {
72 masm->int3(); // UNIMPLEMENTED
73}
74
75void Debug::GenerateStoreICDebugBreak(MacroAssembler* masm) {
76 masm->int3(); // UNIMPLEMENTED
77}
78
79void Debug::GenerateStubNoRegistersDebugBreak(MacroAssembler* masm) {
80 masm->int3(); // UNIMPLEMENTED
81}
82
kasperl@chromium.orge959c182009-07-27 08:59:04 +000083void BreakLocationIterator::ClearDebugBreakAtReturn() {
84 // TODO(X64): Implement this when we start setting Debug breaks.
85 UNIMPLEMENTED();
86}
87
88bool BreakLocationIterator::IsDebugBreakAtReturn() {
89 // TODO(X64): Implement this when we start setting Debug breaks.
90 UNIMPLEMENTED();
91 return false;
92}
93
94void BreakLocationIterator::SetDebugBreakAtReturn() {
95 UNIMPLEMENTED();
96}
97
kasperl@chromium.org71affb52009-05-26 05:44:31 +000098#endif // ENABLE_DEBUGGER_SUPPORT
99
100} } // namespace v8::internal