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

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

Issue 1326483002: Vector ICs: Adapting store ic classes for vectors. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE and comment. Created 5 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/access-compiler.cc ('k') | src/ic/handler-compiler.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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 255
256 private: 256 private:
257 void GenerateRestoreName(Handle<Name> name); 257 void GenerateRestoreName(Handle<Name> name);
258 void GenerateRestoreMap(Handle<Map> transition, Register map_reg, 258 void GenerateRestoreMap(Handle<Map> transition, Register map_reg,
259 Register scratch, Label* miss); 259 Register scratch, Label* miss);
260 260
261 void GenerateConstantCheck(Register map_reg, int descriptor, 261 void GenerateConstantCheck(Register map_reg, int descriptor,
262 Register value_reg, Register scratch, 262 Register value_reg, Register scratch,
263 Label* miss_label); 263 Label* miss_label);
264 264
265 bool RequiresFieldTypeChecks(HeapType* field_type) const;
265 void GenerateFieldTypeChecks(HeapType* field_type, Register value_reg, 266 void GenerateFieldTypeChecks(HeapType* field_type, Register value_reg,
266 Label* miss_label); 267 Label* miss_label);
267 268
268 static Builtins::Name SlowBuiltin(Code::Kind kind) { 269 static Builtins::Name SlowBuiltin(Code::Kind kind) {
269 switch (kind) { 270 switch (kind) {
270 case Code::STORE_IC: 271 case Code::STORE_IC:
271 return Builtins::kStoreIC_Slow; 272 return Builtins::kStoreIC_Slow;
272 case Code::KEYED_STORE_IC: 273 case Code::KEYED_STORE_IC:
273 return Builtins::kKeyedStoreIC_Slow; 274 return Builtins::kKeyedStoreIC_Slow;
274 default: 275 default:
(...skipping 18 matching lines...) Expand all
293 void CompileElementHandlers(MapHandleList* receiver_maps, 294 void CompileElementHandlers(MapHandleList* receiver_maps,
294 CodeHandleList* handlers, 295 CodeHandleList* handlers,
295 LanguageMode language_mode); 296 LanguageMode language_mode);
296 297
297 static void GenerateStoreSlow(MacroAssembler* masm); 298 static void GenerateStoreSlow(MacroAssembler* masm);
298 }; 299 };
299 } 300 }
300 } // namespace v8::internal 301 } // namespace v8::internal
301 302
302 #endif // V8_IC_HANDLER_COMPILER_H_ 303 #endif // V8_IC_HANDLER_COMPILER_H_
OLDNEW
« no previous file with comments | « src/ic/access-compiler.cc ('k') | src/ic/handler-compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698