| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 #include "src/type-info.h" | 5 #include "src/type-info.h" |
| 6 | 6 |
| 7 #include "src/ast/ast.h" | 7 #include "src/ast/ast.h" |
| 8 #include "src/code-stubs.h" | 8 #include "src/code-stubs.h" |
| 9 #include "src/compiler.h" | |
| 10 #include "src/ic/ic.h" | 9 #include "src/ic/ic.h" |
| 11 #include "src/ic/stub-cache.h" | 10 #include "src/ic/stub-cache.h" |
| 12 #include "src/objects-inl.h" | 11 #include "src/objects-inl.h" |
| 13 | 12 |
| 14 namespace v8 { | 13 namespace v8 { |
| 15 namespace internal { | 14 namespace internal { |
| 16 | 15 |
| 17 | 16 |
| 18 TypeFeedbackOracle::TypeFeedbackOracle( | 17 TypeFeedbackOracle::TypeFeedbackOracle( |
| 19 Isolate* isolate, Zone* zone, Handle<Code> code, | 18 Isolate* isolate, Zone* zone, Handle<Code> code, |
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 // Dictionary has been allocated with sufficient size for all elements. | 464 // Dictionary has been allocated with sufficient size for all elements. |
| 466 DisallowHeapAllocation no_need_to_resize_dictionary; | 465 DisallowHeapAllocation no_need_to_resize_dictionary; |
| 467 HandleScope scope(isolate()); | 466 HandleScope scope(isolate()); |
| 468 USE(UnseededNumberDictionary::AtNumberPut( | 467 USE(UnseededNumberDictionary::AtNumberPut( |
| 469 dictionary_, IdToKey(ast_id), handle(target, isolate()))); | 468 dictionary_, IdToKey(ast_id), handle(target, isolate()))); |
| 470 } | 469 } |
| 471 | 470 |
| 472 | 471 |
| 473 } // namespace internal | 472 } // namespace internal |
| 474 } // namespace v8 | 473 } // namespace v8 |
| OLD | NEW |