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

Side by Side Diff: src/runtime/runtime.h

Issue 2675233002: [iwyu] runtime.h doesn't need objects.h (Closed)
Patch Set: more Created 3 years, 10 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/objects.h ('k') | no next file » | 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 #ifndef V8_RUNTIME_RUNTIME_H_ 5 #ifndef V8_RUNTIME_RUNTIME_H_
6 #define V8_RUNTIME_RUNTIME_H_ 6 #define V8_RUNTIME_RUNTIME_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
11 #include "src/base/platform/time.h" 11 #include "src/base/platform/time.h"
12 #include "src/elements-kind.h"
12 #include "src/globals.h" 13 #include "src/globals.h"
13 #include "src/objects.h"
14 #include "src/unicode.h" 14 #include "src/unicode.h"
15 #include "src/zone/zone.h" 15 #include "src/zone/zone.h"
16 16
17 namespace v8 { 17 namespace v8 {
18 namespace internal { 18 namespace internal {
19 19
20 // * Each intrinsic is consistently exposed in JavaScript via 2 names: 20 // * Each intrinsic is consistently exposed in JavaScript via 2 names:
21 // * %#name, which is always a runtime call. 21 // * %#name, which is always a runtime call.
22 // * %_#name, which can be inlined or just a runtime call, the compiler in 22 // * %_#name, which can be inlined or just a runtime call, the compiler in
23 // question decides. 23 // question decides.
(...skipping 1141 matching lines...) Expand 10 before | Expand all | Expand 10 after
1165 kMaybeDeopted = 1 << 3, 1165 kMaybeDeopted = 1 << 3,
1166 kOptimized = 1 << 4, 1166 kOptimized = 1 << 4,
1167 kTurboFanned = 1 << 5, 1167 kTurboFanned = 1 << 5,
1168 kInterpreted = 1 << 6, 1168 kInterpreted = 1 << 6,
1169 }; 1169 };
1170 1170
1171 } // namespace internal 1171 } // namespace internal
1172 } // namespace v8 1172 } // namespace v8
1173 1173
1174 #endif // V8_RUNTIME_RUNTIME_H_ 1174 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/objects.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698