OLD | NEW |
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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 | 172 |
173 | 173 |
174 void Debug::GenerateReturnDebugBreak(MacroAssembler* masm) { | 174 void Debug::GenerateReturnDebugBreak(MacroAssembler* masm) { |
175 // In places other than IC call sites it is expected that r0 is TOS which | 175 // In places other than IC call sites it is expected that r0 is TOS which |
176 // is an object - this is not generally the case so this should be used with | 176 // is an object - this is not generally the case so this should be used with |
177 // care. | 177 // care. |
178 Generate_DebugBreakCallHelper(masm, r0.bit()); | 178 Generate_DebugBreakCallHelper(masm, r0.bit()); |
179 } | 179 } |
180 | 180 |
181 | 181 |
182 void Debug::GenerateReturnDebugBreakEntry(MacroAssembler* masm) { | |
183 // Generate nothing as this handling of debug break return is not done this | |
184 // way on ARM - yet. | |
185 } | |
186 | |
187 | |
188 void Debug::GenerateStubNoRegistersDebugBreak(MacroAssembler* masm) { | 182 void Debug::GenerateStubNoRegistersDebugBreak(MacroAssembler* masm) { |
189 // Generate nothing as CodeStub CallFunction is not used on ARM. | 183 // Generate nothing as CodeStub CallFunction is not used on ARM. |
190 } | 184 } |
191 | 185 |
192 | 186 |
193 #undef __ | 187 #undef __ |
194 | 188 |
195 #endif // ENABLE_DEBUGGER_SUPPORT | 189 #endif // ENABLE_DEBUGGER_SUPPORT |
196 | 190 |
197 } } // namespace v8::internal | 191 } } // namespace v8::internal |
OLD | NEW |