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

Side by Side Diff: src/compiler/instruction-selector.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_SELECTOR_H_ 5 #ifndef V8_COMPILER_INSTRUCTION_SELECTOR_H_
6 #define V8_COMPILER_INSTRUCTION_SELECTOR_H_ 6 #define V8_COMPILER_INSTRUCTION_SELECTOR_H_
7 7
8 #include <deque> 8 #include <deque>
9 9
10 #include "src/compiler/common-operator.h" 10 #include "src/compiler/common-operator.h"
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 // Initialize the call buffer with the InstructionOperands, nodes, etc, 135 // Initialize the call buffer with the InstructionOperands, nodes, etc,
136 // corresponding 136 // corresponding
137 // to the inputs and outputs of the call. 137 // to the inputs and outputs of the call.
138 // {call_code_immediate} to generate immediate operands to calls of code. 138 // {call_code_immediate} to generate immediate operands to calls of code.
139 // {call_address_immediate} to generate immediate operands to address calls. 139 // {call_address_immediate} to generate immediate operands to address calls.
140 void InitializeCallBuffer(Node* call, CallBuffer* buffer, 140 void InitializeCallBuffer(Node* call, CallBuffer* buffer,
141 bool call_code_immediate, 141 bool call_code_immediate,
142 bool call_address_immediate, BasicBlock* cont_node, 142 bool call_address_immediate, BasicBlock* cont_node,
143 BasicBlock* deopt_node); 143 BasicBlock* deopt_node);
144 144
145 FrameStateDescriptor* GetFrameStateDescriptor(Node* node);
146 void AddFrameStateInputs(Node* state, InstructionOperandVector* inputs,
147 FrameStateDescriptor* descriptor);
148
145 // =========================================================================== 149 // ===========================================================================
146 // ============= Architecture-specific graph covering methods. =============== 150 // ============= Architecture-specific graph covering methods. ===============
147 // =========================================================================== 151 // ===========================================================================
148 152
149 // Visit nodes in the given block and generate code. 153 // Visit nodes in the given block and generate code.
150 void VisitBlock(BasicBlock* block); 154 void VisitBlock(BasicBlock* block);
151 155
152 // Visit the node for the control flow at the end of the block, generating 156 // Visit the node for the control flow at the end of the block, generating
153 // code if necessary. 157 // code if necessary.
154 void VisitControl(BasicBlock* block); 158 void VisitControl(BasicBlock* block);
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 Instructions instructions_; 208 Instructions instructions_;
205 BoolVector defined_; 209 BoolVector defined_;
206 BoolVector used_; 210 BoolVector used_;
207 }; 211 };
208 212
209 } // namespace compiler 213 } // namespace compiler
210 } // namespace internal 214 } // namespace internal
211 } // namespace v8 215 } // namespace v8
212 216
213 #endif // V8_COMPILER_INSTRUCTION_SELECTOR_H_ 217 #endif // V8_COMPILER_INSTRUCTION_SELECTOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698