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

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

Issue 492203002: Initial support for debugger frame state in Turbofan. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Another attempt to fix Win64 Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_INSTRUCTION_H_ 5 #ifndef V8_COMPILER_INSTRUCTION_H_
6 #define V8_COMPILER_INSTRUCTION_H_ 6 #define V8_COMPILER_INSTRUCTION_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 // Calls SetUpCache()/TearDownCache() for each subclass. 82 // Calls SetUpCache()/TearDownCache() for each subclass.
83 static void SetUpCaches(); 83 static void SetUpCaches();
84 static void TearDownCaches(); 84 static void TearDownCaches();
85 85
86 protected: 86 protected:
87 typedef BitField<Kind, 0, 3> KindField; 87 typedef BitField<Kind, 0, 3> KindField;
88 88
89 unsigned value_; 89 unsigned value_;
90 }; 90 };
91 91
92 typedef std::vector<InstructionOperand*, zone_allocator<InstructionOperand*> >
93 InstructionOperandVector;
94
92 OStream& operator<<(OStream& os, const InstructionOperand& op); 95 OStream& operator<<(OStream& os, const InstructionOperand& op);
93 96
94 class UnallocatedOperand : public InstructionOperand { 97 class UnallocatedOperand : public InstructionOperand {
95 public: 98 public:
96 enum BasicPolicy { FIXED_SLOT, EXTENDED_POLICY }; 99 enum BasicPolicy { FIXED_SLOT, EXTENDED_POLICY };
97 100
98 enum ExtendedPolicy { 101 enum ExtendedPolicy {
99 NONE, 102 NONE,
100 ANY, 103 ANY,
101 FIXED_REGISTER, 104 FIXED_REGISTER,
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after
862 DeoptimizationVector deoptimization_entries_; 865 DeoptimizationVector deoptimization_entries_;
863 }; 866 };
864 867
865 OStream& operator<<(OStream& os, const InstructionSequence& code); 868 OStream& operator<<(OStream& os, const InstructionSequence& code);
866 869
867 } // namespace compiler 870 } // namespace compiler
868 } // namespace internal 871 } // namespace internal
869 } // namespace v8 872 } // namespace v8
870 873
871 #endif // V8_COMPILER_INSTRUCTION_H_ 874 #endif // V8_COMPILER_INSTRUCTION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698