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

Side by Side Diff: src/mips/macro-assembler-mips.h

Issue 2650193002: [debugger] remove debugger statement support from FCG/CS. (Closed)
Patch Set: Created 3 years, 11 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
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_MIPS_MACRO_ASSEMBLER_MIPS_H_ 5 #ifndef V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 #include "src/mips/assembler-mips.h" 10 #include "src/mips/assembler-mips.h"
(...skipping 1063 matching lines...) Expand 10 before | Expand all | Expand 10 after
1074 1074
1075 void IsObjectJSStringType(Register object, 1075 void IsObjectJSStringType(Register object,
1076 Register scratch, 1076 Register scratch,
1077 Label* fail); 1077 Label* fail);
1078 1078
1079 void IsObjectNameType(Register object, 1079 void IsObjectNameType(Register object,
1080 Register scratch, 1080 Register scratch,
1081 Label* fail); 1081 Label* fail);
1082 1082
1083 // ------------------------------------------------------------------------- 1083 // -------------------------------------------------------------------------
1084 // Debugger Support.
1085
1086 void DebugBreak();
1087
1088 // -------------------------------------------------------------------------
1089 // Exception handling. 1084 // Exception handling.
1090 1085
1091 // Push a new stack handler and link into stack handler chain. 1086 // Push a new stack handler and link into stack handler chain.
1092 void PushStackHandler(); 1087 void PushStackHandler();
1093 1088
1094 // Unlink the stack handler on top of the stack from the stack handler chain. 1089 // Unlink the stack handler on top of the stack from the stack handler chain.
1095 // Must preserve the result register. 1090 // Must preserve the result register.
1096 void PopStackHandler(); 1091 void PopStackHandler();
1097 1092
1098 // Initialize fields with filler values. Fields starting at |current_address| 1093 // Initialize fields with filler values. Fields starting at |current_address|
(...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after
1838 dd(GetLabelFunction(index)); 1833 dd(GetLabelFunction(index));
1839 } 1834 }
1840 } 1835 }
1841 1836
1842 #define ACCESS_MASM(masm) masm-> 1837 #define ACCESS_MASM(masm) masm->
1843 1838
1844 } // namespace internal 1839 } // namespace internal
1845 } // namespace v8 1840 } // namespace v8
1846 1841
1847 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 1842 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698