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

Side by Side Diff: src/debug.h

Issue 543207: Removing redundant stub for runtime native calls. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 10 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/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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 125
126 protected: 126 protected:
127 bool RinfoDone() const; 127 bool RinfoDone() const;
128 void RinfoNext(); 128 void RinfoNext();
129 129
130 BreakLocatorType type_; 130 BreakLocatorType type_;
131 int break_point_; 131 int break_point_;
132 int position_; 132 int position_;
133 int statement_position_; 133 int statement_position_;
134 Handle<DebugInfo> debug_info_; 134 Handle<DebugInfo> debug_info_;
135 Handle<Code> debug_break_stub_;
136 RelocIterator* reloc_iterator_; 135 RelocIterator* reloc_iterator_;
137 RelocIterator* reloc_iterator_original_; 136 RelocIterator* reloc_iterator_original_;
138 137
139 private: 138 private:
140 void SetDebugBreak(); 139 void SetDebugBreak();
141 void ClearDebugBreak(); 140 void ClearDebugBreak();
142 141
143 void SetDebugBreakAtIC(); 142 void SetDebugBreakAtIC();
144 void ClearDebugBreakAtIC(); 143 void ClearDebugBreakAtIC();
145 144
(...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after
887 886
888 DISALLOW_COPY_AND_ASSIGN(MessageDispatchHelperThread); 887 DISALLOW_COPY_AND_ASSIGN(MessageDispatchHelperThread);
889 }; 888 };
890 889
891 890
892 } } // namespace v8::internal 891 } } // namespace v8::internal
893 892
894 #endif // ENABLE_DEBUGGER_SUPPORT 893 #endif // ENABLE_DEBUGGER_SUPPORT
895 894
896 #endif // V8_DEBUG_H_ 895 #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