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

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

Issue 18509003: Keep two empty lines between declarations for cpp files (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « src/ia32/assembler-ia32.cc ('k') | src/ia32/disasm-ia32.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 isolate->debug()->debug_break_slot()->entry(), 84 isolate->debug()->debug_break_slot()->entry(),
85 Assembler::kDebugBreakSlotLength - Assembler::kCallInstructionLength); 85 Assembler::kDebugBreakSlotLength - Assembler::kCallInstructionLength);
86 } 86 }
87 87
88 88
89 void BreakLocationIterator::ClearDebugBreakAtSlot() { 89 void BreakLocationIterator::ClearDebugBreakAtSlot() {
90 ASSERT(IsDebugBreakSlot()); 90 ASSERT(IsDebugBreakSlot());
91 rinfo()->PatchCode(original_rinfo()->pc(), Assembler::kDebugBreakSlotLength); 91 rinfo()->PatchCode(original_rinfo()->pc(), Assembler::kDebugBreakSlotLength);
92 } 92 }
93 93
94
94 // All debug break stubs support padding for LiveEdit. 95 // All debug break stubs support padding for LiveEdit.
95 const bool Debug::FramePaddingLayout::kIsSupported = true; 96 const bool Debug::FramePaddingLayout::kIsSupported = true;
96 97
97 98
98 #define __ ACCESS_MASM(masm) 99 #define __ ACCESS_MASM(masm)
99 100
100 static void Generate_DebugBreakCallHelper(MacroAssembler* masm, 101 static void Generate_DebugBreakCallHelper(MacroAssembler* masm,
101 RegList object_regs, 102 RegList object_regs,
102 RegList non_object_regs, 103 RegList non_object_regs,
103 bool convert_call_to_jmp) { 104 bool convert_call_to_jmp) {
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 363
363 const bool Debug::kFrameDropperSupported = true; 364 const bool Debug::kFrameDropperSupported = true;
364 365
365 #undef __ 366 #undef __
366 367
367 #endif // ENABLE_DEBUGGER_SUPPORT 368 #endif // ENABLE_DEBUGGER_SUPPORT
368 369
369 } } // namespace v8::internal 370 } } // namespace v8::internal
370 371
371 #endif // V8_TARGET_ARCH_IA32 372 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/ia32/assembler-ia32.cc ('k') | src/ia32/disasm-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698