OLD | NEW |
1 // Copyright 2011 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 |
(...skipping 4211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4222 __ mov(v0, t0); | 4222 __ mov(v0, t0); |
4223 __ Ret(); | 4223 __ Ret(); |
4224 | 4224 |
4225 __ bind(&miss_force_generic); | 4225 __ bind(&miss_force_generic); |
4226 Code* stub = masm->isolate()->builtins()->builtin( | 4226 Code* stub = masm->isolate()->builtins()->builtin( |
4227 Builtins::kKeyedLoadIC_MissForceGeneric); | 4227 Builtins::kKeyedLoadIC_MissForceGeneric); |
4228 __ Jump(Handle<Code>(stub), RelocInfo::CODE_TARGET); | 4228 __ Jump(Handle<Code>(stub), RelocInfo::CODE_TARGET); |
4229 } | 4229 } |
4230 | 4230 |
4231 | 4231 |
| 4232 void KeyedLoadStubCompiler::GenerateLoadFastDoubleElement( |
| 4233 MacroAssembler* masm) { |
| 4234 UNIMPLEMENTED(); |
| 4235 } |
| 4236 |
| 4237 |
4232 void KeyedStoreStubCompiler::GenerateStoreFastElement(MacroAssembler* masm, | 4238 void KeyedStoreStubCompiler::GenerateStoreFastElement(MacroAssembler* masm, |
4233 bool is_js_array) { | 4239 bool is_js_array) { |
4234 // ----------- S t a t e ------------- | 4240 // ----------- S t a t e ------------- |
4235 // -- a0 : value | 4241 // -- a0 : value |
4236 // -- a1 : key | 4242 // -- a1 : key |
4237 // -- a2 : receiver | 4243 // -- a2 : receiver |
4238 // -- ra : return address | 4244 // -- ra : return address |
4239 // -- a3 : scratch | 4245 // -- a3 : scratch |
4240 // -- a4 : scratch (elements) | 4246 // -- a4 : scratch (elements) |
4241 // ----------------------------------- | 4247 // ----------------------------------- |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4285 // Done. | 4291 // Done. |
4286 __ Ret(); | 4292 __ Ret(); |
4287 | 4293 |
4288 __ bind(&miss_force_generic); | 4294 __ bind(&miss_force_generic); |
4289 Handle<Code> ic = | 4295 Handle<Code> ic = |
4290 masm->isolate()->builtins()->KeyedStoreIC_MissForceGeneric(); | 4296 masm->isolate()->builtins()->KeyedStoreIC_MissForceGeneric(); |
4291 __ Jump(ic, RelocInfo::CODE_TARGET); | 4297 __ Jump(ic, RelocInfo::CODE_TARGET); |
4292 } | 4298 } |
4293 | 4299 |
4294 | 4300 |
| 4301 void KeyedStoreStubCompiler::GenerateStoreFastDoubleElement( |
| 4302 MacroAssembler* masm, |
| 4303 bool is_js_array) { |
| 4304 UNIMPLEMENTED(); |
| 4305 } |
| 4306 |
| 4307 |
4295 #undef __ | 4308 #undef __ |
4296 | 4309 |
4297 } } // namespace v8::internal | 4310 } } // namespace v8::internal |
4298 | 4311 |
4299 #endif // V8_TARGET_ARCH_MIPS | 4312 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |