OLD | NEW |
1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 // ----------------------------------- | 174 // ----------------------------------- |
175 Generate_DebugBreakCallHelper(masm, 0, false); | 175 Generate_DebugBreakCallHelper(masm, 0, false); |
176 } | 176 } |
177 | 177 |
178 | 178 |
179 #undef __ | 179 #undef __ |
180 | 180 |
181 | 181 |
182 void BreakLocationIterator::ClearDebugBreakAtReturn() { | 182 void BreakLocationIterator::ClearDebugBreakAtReturn() { |
183 rinfo()->PatchCode(original_rinfo()->pc(), | 183 rinfo()->PatchCode(original_rinfo()->pc(), |
184 Debug::kX64JSReturnSequenceLength); | 184 Assembler::kJSReturnSequenceLength); |
185 } | 185 } |
186 | 186 |
187 | 187 |
188 bool BreakLocationIterator::IsDebugBreakAtReturn() { | 188 bool BreakLocationIterator::IsDebugBreakAtReturn() { |
189 return Debug::IsDebugBreakAtReturn(rinfo()); | 189 return Debug::IsDebugBreakAtReturn(rinfo()); |
190 } | 190 } |
191 | 191 |
192 | 192 |
193 void BreakLocationIterator::SetDebugBreakAtReturn() { | 193 void BreakLocationIterator::SetDebugBreakAtReturn() { |
194 ASSERT(Debug::kX64JSReturnSequenceLength >= Debug::kX64CallInstructionLength); | 194 ASSERT(Assembler::kJSReturnSequenceLength >= |
| 195 Assembler::kCallInstructionLength); |
195 rinfo()->PatchCodeWithCall(Debug::debug_break_return()->entry(), | 196 rinfo()->PatchCodeWithCall(Debug::debug_break_return()->entry(), |
196 Debug::kX64JSReturnSequenceLength - Debug::kX64CallInstructionLength); | 197 Assembler::kJSReturnSequenceLength - Assembler::kCallInstructionLength); |
197 } | 198 } |
198 | 199 |
199 #endif // ENABLE_DEBUGGER_SUPPORT | 200 #endif // ENABLE_DEBUGGER_SUPPORT |
200 | 201 |
201 } } // namespace v8::internal | 202 } } // namespace v8::internal |
OLD | NEW |