OLD | NEW |
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_CRANKSHAFT_X64_LITHIUM_CODEGEN_X64_H_ | 5 #ifndef V8_CRANKSHAFT_X64_LITHIUM_CODEGEN_X64_H_ |
6 #define V8_CRANKSHAFT_X64_LITHIUM_CODEGEN_X64_H_ | 6 #define V8_CRANKSHAFT_X64_LITHIUM_CODEGEN_X64_H_ |
7 | 7 |
8 | 8 |
9 #include "src/ast/scopes.h" | 9 #include "src/ast/scopes.h" |
10 #include "src/base/logging.h" | 10 #include "src/base/logging.h" |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 void EnsureSpaceForLazyDeopt(int space_needed) override; | 290 void EnsureSpaceForLazyDeopt(int space_needed) override; |
291 void DoLoadKeyedExternalArray(LLoadKeyed* instr); | 291 void DoLoadKeyedExternalArray(LLoadKeyed* instr); |
292 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); | 292 void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); |
293 void DoLoadKeyedFixedArray(LLoadKeyed* instr); | 293 void DoLoadKeyedFixedArray(LLoadKeyed* instr); |
294 void DoStoreKeyedExternalArray(LStoreKeyed* instr); | 294 void DoStoreKeyedExternalArray(LStoreKeyed* instr); |
295 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); | 295 void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr); |
296 void DoStoreKeyedFixedArray(LStoreKeyed* instr); | 296 void DoStoreKeyedFixedArray(LStoreKeyed* instr); |
297 | 297 |
298 template <class T> | 298 template <class T> |
299 void EmitVectorLoadICRegisters(T* instr); | 299 void EmitVectorLoadICRegisters(T* instr); |
300 template <class T> | |
301 void EmitVectorStoreICRegisters(T* instr); | |
302 | 300 |
303 #ifdef _MSC_VER | 301 #ifdef _MSC_VER |
304 // On windows, you may not access the stack more than one page below | 302 // On windows, you may not access the stack more than one page below |
305 // the most recently mapped page. To make the allocated area randomly | 303 // the most recently mapped page. To make the allocated area randomly |
306 // accessible, we write an arbitrary value to each page in range | 304 // accessible, we write an arbitrary value to each page in range |
307 // rsp + offset - page_size .. rsp in turn. | 305 // rsp + offset - page_size .. rsp in turn. |
308 void MakeSureStackPagesMapped(int offset); | 306 void MakeSureStackPagesMapped(int offset); |
309 #endif | 307 #endif |
310 | 308 |
311 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; | 309 ZoneList<Deoptimizer::JumpTableEntry> jump_table_; |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 Label exit_; | 376 Label exit_; |
379 Label done_; | 377 Label done_; |
380 Label* external_exit_; | 378 Label* external_exit_; |
381 int instruction_index_; | 379 int instruction_index_; |
382 }; | 380 }; |
383 | 381 |
384 } // namespace internal | 382 } // namespace internal |
385 } // namespace v8 | 383 } // namespace v8 |
386 | 384 |
387 #endif // V8_CRANKSHAFT_X64_LITHIUM_CODEGEN_X64_H_ | 385 #endif // V8_CRANKSHAFT_X64_LITHIUM_CODEGEN_X64_H_ |
OLD | NEW |