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

Side by Side Diff: src/type-info.cc

Issue 2284313003: Separate CompilationInfo into its own file. (Closed)
Patch Set: fix 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/runtime/runtime-test.cc ('k') | src/v8.gyp » ('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 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
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
OLDNEW
« no previous file with comments | « src/runtime/runtime-test.cc ('k') | src/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698