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

Side by Side Diff: src/mips/full-codegen-mips.cc

Issue 2783002: Better handling of stepping out of a function... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 6 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/ia32/full-codegen-ia32.cc ('k') | src/mirror-debugger.js » ('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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 27 matching lines...) Expand all
38 namespace v8 { 38 namespace v8 {
39 namespace internal { 39 namespace internal {
40 40
41 #define __ ACCESS_MASM(masm_) 41 #define __ ACCESS_MASM(masm_)
42 42
43 void FullCodeGenerator::Generate(CompilationInfo* info, Mode mode) { 43 void FullCodeGenerator::Generate(CompilationInfo* info, Mode mode) {
44 UNIMPLEMENTED_MIPS(); 44 UNIMPLEMENTED_MIPS();
45 } 45 }
46 46
47 47
48 void FullCodeGenerator::EmitReturnSequence(int position) { 48 void FullCodeGenerator::EmitReturnSequence() {
49 UNIMPLEMENTED_MIPS(); 49 UNIMPLEMENTED_MIPS();
50 } 50 }
51 51
52 52
53 void FullCodeGenerator::Apply(Expression::Context context, Register reg) { 53 void FullCodeGenerator::Apply(Expression::Context context, Register reg) {
54 UNIMPLEMENTED_MIPS(); 54 UNIMPLEMENTED_MIPS();
55 } 55 }
56 56
57 57
58 void FullCodeGenerator::Apply(Expression::Context context, Slot* slot) { 58 void FullCodeGenerator::Apply(Expression::Context context, Slot* slot) {
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 void FullCodeGenerator::ExitFinallyBlock() { 268 void FullCodeGenerator::ExitFinallyBlock() {
269 UNIMPLEMENTED_MIPS(); 269 UNIMPLEMENTED_MIPS();
270 } 270 }
271 271
272 272
273 #undef __ 273 #undef __
274 274
275 } } // namespace v8::internal 275 } } // namespace v8::internal
276 276
277 #endif // V8_TARGET_ARCH_MIPS 277 #endif // V8_TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « src/ia32/full-codegen-ia32.cc ('k') | src/mirror-debugger.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698