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

Side by Side Diff: src/compiler/opcodes.h

Issue 2494753003: [turbofan] Introduce an ExternalPointer type. (Closed)
Patch Set: Stronger ducktape. Created 4 years, 1 month 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/compiler/js-graph.cc ('k') | src/compiler/simplified-lowering.cc » ('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 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_OPCODES_H_ 5 #ifndef V8_COMPILER_OPCODES_H_
6 #define V8_COMPILER_OPCODES_H_ 6 #define V8_COMPILER_OPCODES_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/globals.h" 10 #include "src/globals.h"
(...skipping 23 matching lines...) Expand all
34 V(End) 34 V(End)
35 35
36 // Opcodes for constant operators. 36 // Opcodes for constant operators.
37 #define CONSTANT_OP_LIST(V) \ 37 #define CONSTANT_OP_LIST(V) \
38 V(Int32Constant) \ 38 V(Int32Constant) \
39 V(Int64Constant) \ 39 V(Int64Constant) \
40 V(Float32Constant) \ 40 V(Float32Constant) \
41 V(Float64Constant) \ 41 V(Float64Constant) \
42 V(ExternalConstant) \ 42 V(ExternalConstant) \
43 V(NumberConstant) \ 43 V(NumberConstant) \
44 V(PointerConstant) \
44 V(HeapConstant) \ 45 V(HeapConstant) \
45 V(RelocatableInt32Constant) \ 46 V(RelocatableInt32Constant) \
46 V(RelocatableInt64Constant) 47 V(RelocatableInt64Constant)
47 48
48 #define INNER_OP_LIST(V) \ 49 #define INNER_OP_LIST(V) \
49 V(Select) \ 50 V(Select) \
50 V(Phi) \ 51 V(Phi) \
51 V(EffectPhi) \ 52 V(EffectPhi) \
52 V(InductionVariablePhi) \ 53 V(InductionVariablePhi) \
53 V(Checkpoint) \ 54 V(Checkpoint) \
(...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after
792 } 793 }
793 }; 794 };
794 795
795 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); 796 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value);
796 797
797 } // namespace compiler 798 } // namespace compiler
798 } // namespace internal 799 } // namespace internal
799 } // namespace v8 800 } // namespace v8
800 801
801 #endif // V8_COMPILER_OPCODES_H_ 802 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/js-graph.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698