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

Side by Side Diff: src/debug.h

Issue 1218493005: Debugger: use debug break slots instead of ICs (except for calls). (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: addressed comments Created 5 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
« no previous file with comments | « src/codegen.cc ('k') | src/debug.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 // 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 #ifndef V8_DEBUG_H_ 5 #ifndef V8_DEBUG_H_
6 #define V8_DEBUG_H_ 6 #define V8_DEBUG_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/arguments.h" 9 #include "src/arguments.h"
10 #include "src/assembler.h" 10 #include "src/assembler.h"
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 bool RinfoDone() const; 170 bool RinfoDone() const;
171 void RinfoNext(); 171 void RinfoNext();
172 172
173 Handle<DebugInfo> debug_info_; 173 Handle<DebugInfo> debug_info_;
174 BreakLocatorType type_; 174 BreakLocatorType type_;
175 RelocIterator reloc_iterator_; 175 RelocIterator reloc_iterator_;
176 RelocIterator reloc_iterator_original_; 176 RelocIterator reloc_iterator_original_;
177 int break_index_; 177 int break_index_;
178 int position_; 178 int position_;
179 int statement_position_; 179 int statement_position_;
180 bool has_immediate_position_;
181 180
182 DisallowHeapAllocation no_gc_; 181 DisallowHeapAllocation no_gc_;
183 182
184 DISALLOW_COPY_AND_ASSIGN(Iterator); 183 DISALLOW_COPY_AND_ASSIGN(Iterator);
185 }; 184 };
186 185
187 friend class Debug; 186 friend class Debug;
188 187
189 static int BreakIndexFromAddress(Handle<DebugInfo> debug_info, 188 static int BreakIndexFromAddress(Handle<DebugInfo> debug_info,
190 BreakLocatorType type, Address pc); 189 BreakLocatorType type, Address pc);
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after
826 // several frames above. 825 // several frames above.
827 // There is no calling conventions here, because it never actually gets 826 // There is no calling conventions here, because it never actually gets
828 // called, it only gets returned to. 827 // called, it only gets returned to.
829 static void GenerateFrameDropperLiveEdit(MacroAssembler* masm); 828 static void GenerateFrameDropperLiveEdit(MacroAssembler* masm);
830 }; 829 };
831 830
832 831
833 } } // namespace v8::internal 832 } } // namespace v8::internal
834 833
835 #endif // V8_DEBUG_H_ 834 #endif // V8_DEBUG_H_
OLDNEW
« no previous file with comments | « src/codegen.cc ('k') | src/debug.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698