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 17 matching lines...) Expand all Loading... |
28 #include "v8.h" | 28 #include "v8.h" |
29 | 29 |
30 #include "codegen-inl.h" | 30 #include "codegen-inl.h" |
31 #include "fast-codegen.h" | 31 #include "fast-codegen.h" |
32 | 32 |
33 namespace v8 { | 33 namespace v8 { |
34 namespace internal { | 34 namespace internal { |
35 | 35 |
36 #define __ ACCESS_MASM(masm_) | 36 #define __ ACCESS_MASM(masm_) |
37 | 37 |
| 38 Register FastCodeGenerator::accumulator0() { return no_reg; } |
| 39 Register FastCodeGenerator::accumulator1() { return no_reg; } |
| 40 Register FastCodeGenerator::scratch0() { return no_reg; } |
| 41 Register FastCodeGenerator::scratch1() { return no_reg; } |
| 42 Register FastCodeGenerator::receiver_reg() { return no_reg; } |
| 43 Register FastCodeGenerator::context_reg() { return no_reg; } |
| 44 |
| 45 |
38 void FastCodeGenerator::Generate(CompilationInfo* info) { | 46 void FastCodeGenerator::Generate(CompilationInfo* info) { |
39 UNIMPLEMENTED_MIPS(); | 47 UNIMPLEMENTED_MIPS(); |
40 } | 48 } |
41 | 49 |
42 | 50 |
43 void FastCodeGenerator::EmitThisPropertyStore(Handle<String> name) { | 51 void FastCodeGenerator::EmitThisPropertyStore(Handle<String> name) { |
44 UNIMPLEMENTED_MIPS(); | 52 UNIMPLEMENTED_MIPS(); |
45 } | 53 } |
46 | 54 |
47 | 55 |
48 void FastCodeGenerator::EmitGlobalVariableLoad(Handle<String> name) { | 56 void FastCodeGenerator::EmitGlobalVariableLoad(Handle<Object> name) { |
| 57 UNIMPLEMENTED_MIPS(); |
| 58 } |
| 59 |
| 60 |
| 61 void FastCodeGenerator::EmitThisPropertyLoad(Handle<String> name) { |
| 62 UNIMPLEMENTED_MIPS(); |
| 63 } |
| 64 |
| 65 |
| 66 void FastCodeGenerator::EmitBitOr() { |
49 UNIMPLEMENTED_MIPS(); | 67 UNIMPLEMENTED_MIPS(); |
50 } | 68 } |
51 | 69 |
52 #undef __ | 70 #undef __ |
53 | 71 |
54 | 72 |
55 } } // namespace v8::internal | 73 } } // namespace v8::internal |
56 | 74 |
OLD | NEW |