| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |