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

Side by Side Diff: src/x64/debug-x64.cc

Issue 456001: Move CPU-specific constants from debug.h into the platform-specific directori... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years 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 | Annotate | Revision Log
« no previous file with comments | « src/x64/codegen-x64.cc ('k') | src/x64/fast-codegen-x64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/x64/codegen-x64.cc ('k') | src/x64/fast-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698