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

Side by Side Diff: src/ic/handler-compiler.h

Issue 2343813002: [ic] Move KeyedStoreIC::GenerateSlow() to ic-XXX.cc to avoid code duplication. (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « src/ic/arm64/ic-arm64.cc ('k') | src/ic/ia32/handler-compiler-ia32.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_IC_HANDLER_COMPILER_H_ 5 #ifndef V8_IC_HANDLER_COMPILER_H_
6 #define V8_IC_HANDLER_COMPILER_H_ 6 #define V8_IC_HANDLER_COMPILER_H_
7 7
8 #include "src/ic/access-compiler.h" 8 #include "src/ic/access-compiler.h"
9 #include "src/ic/ic-state.h" 9 #include "src/ic/ic-state.h"
10 10
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 : PropertyHandlerCompiler(isolate, Code::KEYED_LOAD_IC, 276 : PropertyHandlerCompiler(isolate, Code::KEYED_LOAD_IC,
277 Handle<Map>::null(), Handle<JSObject>::null(), 277 Handle<Map>::null(), Handle<JSObject>::null(),
278 kCacheOnReceiver) {} 278 kCacheOnReceiver) {}
279 279
280 virtual ~ElementHandlerCompiler() {} 280 virtual ~ElementHandlerCompiler() {}
281 281
282 static Handle<Object> GetKeyedLoadHandler(Handle<Map> receiver_map, 282 static Handle<Object> GetKeyedLoadHandler(Handle<Map> receiver_map,
283 Isolate* isolate); 283 Isolate* isolate);
284 void CompileElementHandlers(MapHandleList* receiver_maps, 284 void CompileElementHandlers(MapHandleList* receiver_maps,
285 List<Handle<Object>>* handlers); 285 List<Handle<Object>>* handlers);
286
287 static void GenerateStoreSlow(MacroAssembler* masm);
288 }; 286 };
289 } // namespace internal 287 } // namespace internal
290 } // namespace v8 288 } // namespace v8
291 289
292 #endif // V8_IC_HANDLER_COMPILER_H_ 290 #endif // V8_IC_HANDLER_COMPILER_H_
OLDNEW
« no previous file with comments | « src/ic/arm64/ic-arm64.cc ('k') | src/ic/ia32/handler-compiler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698