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

Side by Side Diff: src/compiler/js-operator.h

Issue 2342853002: [TypeFeedbackVector] special ic slots for interpreter compare/binary ops. (Closed)
Patch Set: Code comments. 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
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_COMPILER_JS_OPERATOR_H_ 5 #ifndef V8_COMPILER_JS_OPERATOR_H_
6 #define V8_COMPILER_JS_OPERATOR_H_ 6 #define V8_COMPILER_JS_OPERATOR_H_
7 7
8 #include "src/compiler/type-hints.h"
9 #include "src/runtime/runtime.h" 8 #include "src/runtime/runtime.h"
9 #include "src/type-hints.h"
10 10
11 namespace v8 { 11 namespace v8 {
12 namespace internal { 12 namespace internal {
13 namespace compiler { 13 namespace compiler {
14 14
15 // Forward declarations. 15 // Forward declarations.
16 class Operator; 16 class Operator;
17 struct JSOperatorGlobalCache; 17 struct JSOperatorGlobalCache;
18 18
19 19
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
532 Zone* const zone_; 532 Zone* const zone_;
533 533
534 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); 534 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder);
535 }; 535 };
536 536
537 } // namespace compiler 537 } // namespace compiler
538 } // namespace internal 538 } // namespace internal
539 } // namespace v8 539 } // namespace v8
540 540
541 #endif // V8_COMPILER_JS_OPERATOR_H_ 541 #endif // V8_COMPILER_JS_OPERATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698