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

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

Issue 2650193002: [debugger] remove debugger statement support from FCG/CS. (Closed)
Patch Set: Created 3 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
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/mips64/assembler-mips64.h" 10 #include "src/mips64/assembler-mips64.h"
(...skipping 1117 matching lines...) Expand 10 before | Expand all | Expand 10 after
1128 1128
1129 void IsObjectJSStringType(Register object, 1129 void IsObjectJSStringType(Register object,
1130 Register scratch, 1130 Register scratch,
1131 Label* fail); 1131 Label* fail);
1132 1132
1133 void IsObjectNameType(Register object, 1133 void IsObjectNameType(Register object,
1134 Register scratch, 1134 Register scratch,
1135 Label* fail); 1135 Label* fail);
1136 1136
1137 // ------------------------------------------------------------------------- 1137 // -------------------------------------------------------------------------
1138 // Debugger Support.
1139
1140 void DebugBreak();
1141
1142 // -------------------------------------------------------------------------
1143 // Exception handling. 1138 // Exception handling.
1144 1139
1145 // Push a new stack handler and link into stack handler chain. 1140 // Push a new stack handler and link into stack handler chain.
1146 void PushStackHandler(); 1141 void PushStackHandler();
1147 1142
1148 // Unlink the stack handler on top of the stack from the stack handler chain. 1143 // Unlink the stack handler on top of the stack from the stack handler chain.
1149 // Must preserve the result register. 1144 // Must preserve the result register.
1150 void PopStackHandler(); 1145 void PopStackHandler();
1151 1146
1152 // Initialize fields with filler values. Fields starting at |current_address| 1147 // Initialize fields with filler values. Fields starting at |current_address|
(...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
1982 dd(GetLabelFunction(index)); 1977 dd(GetLabelFunction(index));
1983 } 1978 }
1984 } 1979 }
1985 1980
1986 #define ACCESS_MASM(masm) masm-> 1981 #define ACCESS_MASM(masm) masm->
1987 1982
1988 } // namespace internal 1983 } // namespace internal
1989 } // namespace v8 1984 } // namespace v8
1990 1985
1991 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 1986 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698