| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 |
| 11 // with the distribution. | 11 // with the distribution. |
| (...skipping 12 matching lines...) Expand all Loading... |
| 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 | 28 |
| 29 | 29 |
| 30 #include "v8.h" | 30 #include "v8.h" |
| 31 | 31 |
| 32 #if defined(V8_TARGET_ARCH_MIPS) | 32 #if defined(V8_TARGET_ARCH_MIPS) |
| 33 | 33 |
| 34 #include "codegen-inl.h" | 34 #include "codegen.h" |
| 35 #include "code-stubs.h" | 35 #include "code-stubs.h" |
| 36 #include "ic-inl.h" | 36 #include "ic-inl.h" |
| 37 #include "runtime.h" | 37 #include "runtime.h" |
| 38 #include "stub-cache.h" | 38 #include "stub-cache.h" |
| 39 | 39 |
| 40 namespace v8 { | 40 namespace v8 { |
| 41 namespace internal { | 41 namespace internal { |
| 42 | 42 |
| 43 | 43 |
| 44 // ---------------------------------------------------------------------------- | 44 // ---------------------------------------------------------------------------- |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 void LoadIC::GenerateNormal(MacroAssembler* masm) { | 108 void LoadIC::GenerateNormal(MacroAssembler* masm) { |
| 109 UNIMPLEMENTED_MIPS(); | 109 UNIMPLEMENTED_MIPS(); |
| 110 } | 110 } |
| 111 | 111 |
| 112 | 112 |
| 113 void LoadIC::GenerateMiss(MacroAssembler* masm) { | 113 void LoadIC::GenerateMiss(MacroAssembler* masm) { |
| 114 UNIMPLEMENTED_MIPS(); | 114 UNIMPLEMENTED_MIPS(); |
| 115 } | 115 } |
| 116 | 116 |
| 117 | 117 |
| 118 bool LoadIC::PatchInlinedLoad(Address address, Object* map, int offset) { | |
| 119 UNIMPLEMENTED_MIPS(); | |
| 120 return false; | |
| 121 } | |
| 122 | |
| 123 | |
| 124 bool LoadIC::PatchInlinedContextualLoad(Address address, | |
| 125 Object* map, | |
| 126 Object* cell, | |
| 127 bool is_dont_delete) { | |
| 128 UNIMPLEMENTED_MIPS(); | |
| 129 return false; | |
| 130 } | |
| 131 | |
| 132 | |
| 133 bool StoreIC::PatchInlinedStore(Address address, Object* map, int offset) { | |
| 134 UNIMPLEMENTED_MIPS(); | |
| 135 return false; | |
| 136 } | |
| 137 | |
| 138 | |
| 139 bool KeyedLoadIC::PatchInlinedLoad(Address address, Object* map) { | |
| 140 UNIMPLEMENTED_MIPS(); | |
| 141 return false; | |
| 142 } | |
| 143 | |
| 144 | |
| 145 bool KeyedStoreIC::PatchInlinedStore(Address address, Object* map) { | |
| 146 UNIMPLEMENTED_MIPS(); | |
| 147 return false; | |
| 148 } | |
| 149 | |
| 150 | |
| 151 Object* KeyedLoadIC_Miss(Arguments args); | 118 Object* KeyedLoadIC_Miss(Arguments args); |
| 152 | 119 |
| 153 | 120 |
| 154 void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) { | 121 void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) { |
| 155 UNIMPLEMENTED_MIPS(); | 122 UNIMPLEMENTED_MIPS(); |
| 156 } | 123 } |
| 157 | 124 |
| 158 | 125 |
| 159 void KeyedLoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm) { | 126 void KeyedLoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm) { |
| 160 UNIMPLEMENTED_MIPS(); | 127 UNIMPLEMENTED_MIPS(); |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 | 202 |
| 236 | 203 |
| 237 void PatchInlinedSmiCode(Address address) { | 204 void PatchInlinedSmiCode(Address address) { |
| 238 // Currently there is no smi inlining in the MIPS full code generator. | 205 // Currently there is no smi inlining in the MIPS full code generator. |
| 239 } | 206 } |
| 240 | 207 |
| 241 | 208 |
| 242 } } // namespace v8::internal | 209 } } // namespace v8::internal |
| 243 | 210 |
| 244 #endif // V8_TARGET_ARCH_MIPS | 211 #endif // V8_TARGET_ARCH_MIPS |
| OLD | NEW |