| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |