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

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

Issue 1695313002: [turbofan] Add an operator to access the parent frame pointer (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « src/compiler/mips64/code-generator-mips64.cc ('k') | src/compiler/raw-machine-assembler.h » ('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 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 V(Float64RoundTruncate) \ 319 V(Float64RoundTruncate) \
320 V(Float64RoundTiesAway) \ 320 V(Float64RoundTiesAway) \
321 V(Float32RoundTiesEven) \ 321 V(Float32RoundTiesEven) \
322 V(Float64RoundTiesEven) \ 322 V(Float64RoundTiesEven) \
323 V(Float64ExtractLowWord32) \ 323 V(Float64ExtractLowWord32) \
324 V(Float64ExtractHighWord32) \ 324 V(Float64ExtractHighWord32) \
325 V(Float64InsertLowWord32) \ 325 V(Float64InsertLowWord32) \
326 V(Float64InsertHighWord32) \ 326 V(Float64InsertHighWord32) \
327 V(LoadStackPointer) \ 327 V(LoadStackPointer) \
328 V(LoadFramePointer) \ 328 V(LoadFramePointer) \
329 V(LoadParentFramePointer) \
329 V(CheckedLoad) \ 330 V(CheckedLoad) \
330 V(CheckedStore) 331 V(CheckedStore)
331 332
332 #define VALUE_OP_LIST(V) \ 333 #define VALUE_OP_LIST(V) \
333 COMMON_OP_LIST(V) \ 334 COMMON_OP_LIST(V) \
334 SIMPLIFIED_OP_LIST(V) \ 335 SIMPLIFIED_OP_LIST(V) \
335 MACHINE_OP_LIST(V) \ 336 MACHINE_OP_LIST(V) \
336 JS_OP_LIST(V) 337 JS_OP_LIST(V)
337 338
338 // The combination of all operators at all levels and the common operators. 339 // The combination of all operators at all levels and the common operators.
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 } 407 }
407 }; 408 };
408 409
409 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 410 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
410 411
411 } // namespace compiler 412 } // namespace compiler
412 } // namespace internal 413 } // namespace internal
413 } // namespace v8 414 } // namespace v8
414 415
415 #endif // V8_COMPILER_OPCODES_H_ 416 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/code-generator-mips64.cc ('k') | src/compiler/raw-machine-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698