| // Copyright 2010 the V8 project authors. All rights reserved. |
| // Redistribution and use in source and binary forms, with or without |
| // modification, are permitted provided that the following conditions are |
| // met: |
| // |
| // * Redistributions of source code must retain the above copyright |
| // notice, this list of conditions and the following disclaimer. |
| // * Redistributions in binary form must reproduce the above |
| // copyright notice, this list of conditions and the following |
| // disclaimer in the documentation and/or other materials provided |
| // with the distribution. |
| // * Neither the name of Google Inc. nor the names of its |
| // contributors may be used to endorse or promote products derived |
| // from this software without specific prior written permission. |
| // |
| // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| |
| #include "v8.h" |
| |
| #if defined(V8_TARGET_ARCH_MIPS) |
| |
| #include "ic-inl.h" |
| #include "codegen-inl.h" |
| #include "stub-cache.h" |
| |
| namespace v8 { |
| namespace internal { |
| |
| #define __ ACCESS_MASM(masm) |
| |
| |
| void StubCache::GenerateProbe(MacroAssembler* masm, |
| Code::Flags flags, |
| Register receiver, |
| Register name, |
| Register scratch, |
| Register extra, |
| Register extra2) { |
| UNIMPLEMENTED_MIPS(); |
| } |
| |
| |
| void StubCompiler::GenerateLoadGlobalFunctionPrototype(MacroAssembler* masm, |
| int index, |
| Register prototype) { |
| UNIMPLEMENTED_MIPS(); |
| } |
| |
| |
| void StubCompiler::GenerateDirectLoadGlobalFunctionPrototype( |
| MacroAssembler* masm, int index, Register prototype, Label* miss) { |
| UNIMPLEMENTED_MIPS(); |
| } |
| |
| |
| // Load a fast property out of a holder object (src). In-object properties |
| // are loaded directly otherwise the property is loaded from the properties |
| // fixed array. |
| void StubCompiler::GenerateFastPropertyLoad(MacroAssembler* masm, |
| Register dst, Register src, |
| JSObject* holder, int index) { |
| UNIMPLEMENTED_MIPS(); |
| } |
| |
| |
| void StubCompiler::GenerateLoadArrayLength(MacroAssembler* masm, |
| Register receiver, |
| Register scratch, |
| Label* miss_label) { |
| UNIMPLEMENTED_MIPS(); |
| } |
| |
| |
| // Generate code to load the length from a string object and return the length. |
| // If the receiver object is not a string or a wrapped string object the |
| // execution continues at the miss label. The register containing the |
| // receiver is potentially clobbered. |
| void StubCompiler::GenerateLoadStringLength(MacroAssembler* masm, |
| Register receiver, |
| Register scratch1, |
| Register scratch2, |
| Label* miss, |
| bool support_wrappers) { |
| UNIMPLEMENTED_MIPS(); |
| } |
| |
| |
| void StubCompiler::GenerateLoadFunctionPrototype(MacroAssembler* masm, |
| Register receiver, |
| Register scratch1, |
| Register scratch2, |
| Label* miss_label) { |
| UNIMPLEMENTED_MIPS(); |
| } |
| |
| |
| // Generate StoreField code, value is passed in a0 register. |
| // After executing generated code, the receiver_reg and name_reg |
| // may be clobbered. |
| void StubCompiler::GenerateStoreField(MacroAssembler* masm, |
| JSObject* object, |
| int index, |
| Map* transition, |
| Register receiver_reg, |
| Register name_reg, |
| Register scratch, |
| Label* miss_label) { |
| UNIMPLEMENTED_MIPS(); |
| } |
| |
| |
| void StubCompiler::GenerateLoadMiss(MacroAssembler* masm, Code::Kind kind) { |
| UNIMPLEMENTED_MIPS(); |
| } |
| |
| |
| class CallInterceptorCompiler BASE_EMBEDDED { |
| public: |
| CallInterceptorCompiler(StubCompiler* stub_compiler, |
| const ParameterCount& arguments, |
| Register name) |
| : stub_compiler_(stub_compiler), |
| arguments_(arguments), |
| name_(name) {} |
| |
| void Compile(MacroAssembler* masm, |
| JSObject* object, |
| JSObject* holder, |
| String* name, |
| LookupResult* lookup, |
| Register receiver, |
| Register scratch1, |
| Register scratch2, |
| Register scratch3, |
| Label* miss) { |
| UNIMPLEMENTED_MIPS(); |
| } |
| |
| private: |
| void CompileCacheable(MacroAssembler* masm, |
| JSObject* object, |
| Register receiver, |
| Register scratch1, |
| Register scratch2, |
| Register scratch3, |
| JSObject* interceptor_holder, |
| LookupResult* lookup, |
| String* name, |
| const CallOptimization& optimization, |
| Label* miss_label) { |
| UNIMPLEMENTED_MIPS(); |
| } |
| |
| void CompileRegular(MacroAssembler* masm, |
| JSObject* object, |
| Register receiver, |
| Register scratch1, |
| Register scratch2, |
| Register scratch3, |
| String* name, |
| JSObject* interceptor_holder, |
| Label* miss_label) { |
| UNIMPLEMENTED_MIPS(); |
| } |
| |
| void LoadWithInterceptor(MacroAssembler* masm, |
| Register receiver, |
| Register holder, |
| JSObject* holder_obj, |
| Register scratch, |
| Label* interceptor_succeeded) { |
| UNIMPLEMENTED_MIPS(); |
| } |
| |
| StubCompiler* stub_compiler_; |
| const ParameterCount& arguments_; |
| Register name_; |
| }; |
| |
| |
| #undef __ |
| #define __ ACCESS_MASM(masm()) |
| |
| |
| Register StubCompiler::CheckPrototypes(JSObject* object, |
| Register object_reg, |
| JSObject* holder, |
| Register holder_reg, |
| Register scratch1, |
| Register scratch2, |
| String* name, |
| int save_at_depth, |
| Label* miss) { |
| UNIMPLEMENTED_MIPS(); |
| return no_reg; |
| } |
| |
| |
| void StubCompiler::GenerateLoadField(JSObject* object, |
| JSObject* holder, |
| Register receiver, |
| Register scratch1, |
| Register scratch2, |
| Register scratch3, |
| int index, |
| String* name, |
| Label* miss) { |
| UNIMPLEMENTED_MIPS(); |
| } |
| |
| |
| void StubCompiler::GenerateLoadConstant(JSObject* object, |
| JSObject* holder, |
| Register receiver, |
| Register scratch1, |
| Register scratch2, |
| Register scratch3, |
| Object* value, |
| String* name, |
| Label* miss) { |
| UNIMPLEMENTED_MIPS(); |
| } |
| |
| |
| MaybeObject* StubCompiler::GenerateLoadCallback(JSObject* object, |
| JSObject* holder, |
| Register receiver, |
| Register name_reg, |
| Register scratch1, |
| Register scratch2, |
| Register scratch3, |
| AccessorInfo* callback, |
| String* name, |
| Label* miss) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| void StubCompiler::GenerateLoadInterceptor(JSObject* object, |
| JSObject* interceptor_holder, |
| LookupResult* lookup, |
| Register receiver, |
| Register name_reg, |
| Register scratch1, |
| Register scratch2, |
| Register scratch3, |
| String* name, |
| Label* miss) { |
| UNIMPLEMENTED_MIPS(); |
| } |
| |
| |
| void CallStubCompiler::GenerateNameCheck(String* name, Label* miss) { |
| UNIMPLEMENTED_MIPS(); |
| } |
| |
| |
| void CallStubCompiler::GenerateGlobalReceiverCheck(JSObject* object, |
| JSObject* holder, |
| String* name, |
| Label* miss) { |
| UNIMPLEMENTED_MIPS(); |
| } |
| |
| |
| void CallStubCompiler::GenerateLoadFunctionFromCell(JSGlobalPropertyCell* cell, |
| JSFunction* function, |
| Label* miss) { |
| UNIMPLEMENTED_MIPS(); |
| } |
| |
| |
| MaybeObject* CallStubCompiler::GenerateMissBranch() { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* CallStubCompiler::CompileCallField(JSObject* object, |
| JSObject* holder, |
| int index, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* CallStubCompiler::CompileArrayPushCall(Object* object, |
| JSObject* holder, |
| JSGlobalPropertyCell* cell, |
| JSFunction* function, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* CallStubCompiler::CompileArrayPopCall(Object* object, |
| JSObject* holder, |
| JSGlobalPropertyCell* cell, |
| JSFunction* function, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* CallStubCompiler::CompileStringCharCodeAtCall( |
| Object* object, |
| JSObject* holder, |
| JSGlobalPropertyCell* cell, |
| JSFunction* function, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* CallStubCompiler::CompileStringCharAtCall( |
| Object* object, |
| JSObject* holder, |
| JSGlobalPropertyCell* cell, |
| JSFunction* function, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* CallStubCompiler::CompileStringFromCharCodeCall( |
| Object* object, |
| JSObject* holder, |
| JSGlobalPropertyCell* cell, |
| JSFunction* function, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* CallStubCompiler::CompileMathFloorCall(Object* object, |
| JSObject* holder, |
| JSGlobalPropertyCell* cell, |
| JSFunction* function, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* CallStubCompiler::CompileMathAbsCall(Object* object, |
| JSObject* holder, |
| JSGlobalPropertyCell* cell, |
| JSFunction* function, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* CallStubCompiler::CompileFastApiCall( |
| const CallOptimization& optimization, |
| Object* object, |
| JSObject* holder, |
| JSGlobalPropertyCell* cell, |
| JSFunction* function, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* CallStubCompiler::CompileCallConstant(Object* object, |
| JSObject* holder, |
| JSFunction* function, |
| String* name, |
| CheckType check) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* CallStubCompiler::CompileCallInterceptor(JSObject* object, |
| JSObject* holder, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* CallStubCompiler::CompileCallGlobal(JSObject* object, |
| GlobalObject* holder, |
| JSGlobalPropertyCell* cell, |
| JSFunction* function, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* StoreStubCompiler::CompileStoreField(JSObject* object, |
| int index, |
| Map* transition, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* StoreStubCompiler::CompileStoreCallback(JSObject* object, |
| AccessorInfo* callback, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* StoreStubCompiler::CompileStoreInterceptor(JSObject* receiver, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* StoreStubCompiler::CompileStoreGlobal(GlobalObject* object, |
| JSGlobalPropertyCell* cell, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* LoadStubCompiler::CompileLoadNonexistent(String* name, |
| JSObject* object, |
| JSObject* last) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* LoadStubCompiler::CompileLoadField(JSObject* object, |
| JSObject* holder, |
| int index, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* LoadStubCompiler::CompileLoadCallback(String* name, |
| JSObject* object, |
| JSObject* holder, |
| AccessorInfo* callback) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* LoadStubCompiler::CompileLoadConstant(JSObject* object, |
| JSObject* holder, |
| Object* value, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* LoadStubCompiler::CompileLoadInterceptor(JSObject* object, |
| JSObject* holder, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* LoadStubCompiler::CompileLoadGlobal(JSObject* object, |
| GlobalObject* holder, |
| JSGlobalPropertyCell* cell, |
| String* name, |
| bool is_dont_delete) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* KeyedLoadStubCompiler::CompileLoadField(String* name, |
| JSObject* receiver, |
| JSObject* holder, |
| int index) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* KeyedLoadStubCompiler::CompileLoadCallback( |
| String* name, |
| JSObject* receiver, |
| JSObject* holder, |
| AccessorInfo* callback) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* KeyedLoadStubCompiler::CompileLoadConstant(String* name, |
| JSObject* receiver, |
| JSObject* holder, |
| Object* value) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* KeyedLoadStubCompiler::CompileLoadInterceptor(JSObject* receiver, |
| JSObject* holder, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* KeyedLoadStubCompiler::CompileLoadArrayLength(String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* KeyedLoadStubCompiler::CompileLoadStringLength(String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* KeyedLoadStubCompiler::CompileLoadFunctionPrototype(String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* KeyedLoadStubCompiler::CompileLoadSpecialized(JSObject* receiver) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* KeyedStoreStubCompiler::CompileStoreField(JSObject* object, |
| int index, |
| Map* transition, |
| String* name) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* KeyedStoreStubCompiler::CompileStoreSpecialized( |
| JSObject* receiver) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* ConstructStubCompiler::CompileConstructStub(JSFunction* function) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* ExternalArrayStubCompiler::CompileKeyedLoadStub( |
| JSObject* receiver_object, |
| ExternalArrayType array_type, |
| Code::Flags flags) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| MaybeObject* ExternalArrayStubCompiler::CompileKeyedStoreStub( |
| JSObject* receiver_object, |
| ExternalArrayType array_type, |
| Code::Flags flags) { |
| UNIMPLEMENTED_MIPS(); |
| return NULL; |
| } |
| |
| |
| #undef __ |
| |
| } } // namespace v8::internal |
| |
| #endif // V8_TARGET_ARCH_MIPS |