Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: src/stub-cache.h

Issue 6295013: Revert r6376 and r6373 which changes external array support. The ARM... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/mips/stub-cache-mips.cc ('k') | src/stub-cache.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 160
161 MUST_USE_RESULT static MaybeObject* ComputeKeyedStoreField( 161 MUST_USE_RESULT static MaybeObject* ComputeKeyedStoreField(
162 String* name, 162 String* name,
163 JSObject* receiver, 163 JSObject* receiver,
164 int field_index, 164 int field_index,
165 Map* transition = NULL); 165 Map* transition = NULL);
166 166
167 MUST_USE_RESULT static MaybeObject* ComputeKeyedStoreSpecialized( 167 MUST_USE_RESULT static MaybeObject* ComputeKeyedStoreSpecialized(
168 JSObject* receiver); 168 JSObject* receiver);
169 169
170 MUST_USE_RESULT static MaybeObject* ComputeKeyedLoadOrStoreExternalArray(
171 JSObject* receiver,
172 bool is_store);
173
174 // --- 170 // ---
175 171
176 MUST_USE_RESULT static MaybeObject* ComputeCallField(int argc, 172 MUST_USE_RESULT static MaybeObject* ComputeCallField(int argc,
177 InLoopFlag in_loop, 173 InLoopFlag in_loop,
178 Code::Kind, 174 Code::Kind,
179 String* name, 175 String* name,
180 Object* object, 176 Object* object,
181 JSObject* holder, 177 JSObject* holder,
182 int index); 178 int index);
183 179
(...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 // Determines whether the given function can be called using the 790 // Determines whether the given function can be called using the
795 // fast api call builtin. 791 // fast api call builtin.
796 void AnalyzePossibleApiFunction(JSFunction* function); 792 void AnalyzePossibleApiFunction(JSFunction* function);
797 793
798 JSFunction* constant_function_; 794 JSFunction* constant_function_;
799 bool is_simple_api_call_; 795 bool is_simple_api_call_;
800 FunctionTemplateInfo* expected_receiver_type_; 796 FunctionTemplateInfo* expected_receiver_type_;
801 CallHandlerInfo* api_call_info_; 797 CallHandlerInfo* api_call_info_;
802 }; 798 };
803 799
804 class ExternalArrayStubCompiler: public StubCompiler {
805 public:
806 explicit ExternalArrayStubCompiler() {}
807
808 MUST_USE_RESULT MaybeObject* CompileKeyedLoadStub(
809 ExternalArrayType array_type, Code::Flags flags);
810
811 MUST_USE_RESULT MaybeObject* CompileKeyedStoreStub(
812 ExternalArrayType array_type, Code::Flags flags);
813
814 private:
815 MaybeObject* GetCode(Code::Flags flags);
816 };
817
818 } } // namespace v8::internal 800 } } // namespace v8::internal
819 801
820 #endif // V8_STUB_CACHE_H_ 802 #endif // V8_STUB_CACHE_H_
OLDNEW
« no previous file with comments | « src/mips/stub-cache-mips.cc ('k') | src/stub-cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698