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

Side by Side Diff: src/compiler/instruction-codes.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/ia32/code-generator-ia32.cc ('k') | src/compiler/instruction-scheduler.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 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_CODES_H_ 5 #ifndef V8_COMPILER_INSTRUCTION_CODES_H_
6 #define V8_COMPILER_INSTRUCTION_CODES_H_ 6 #define V8_COMPILER_INSTRUCTION_CODES_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #if V8_TARGET_ARCH_ARM 10 #if V8_TARGET_ARCH_ARM
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 V(ArchLazyBailout) \ 50 V(ArchLazyBailout) \
51 V(ArchJmp) \ 51 V(ArchJmp) \
52 V(ArchLookupSwitch) \ 52 V(ArchLookupSwitch) \
53 V(ArchTableSwitch) \ 53 V(ArchTableSwitch) \
54 V(ArchNop) \ 54 V(ArchNop) \
55 V(ArchThrowTerminator) \ 55 V(ArchThrowTerminator) \
56 V(ArchDeoptimize) \ 56 V(ArchDeoptimize) \
57 V(ArchRet) \ 57 V(ArchRet) \
58 V(ArchStackPointer) \ 58 V(ArchStackPointer) \
59 V(ArchFramePointer) \ 59 V(ArchFramePointer) \
60 V(ArchParentFramePointer) \
60 V(ArchTruncateDoubleToI) \ 61 V(ArchTruncateDoubleToI) \
61 V(ArchStoreWithWriteBarrier) \ 62 V(ArchStoreWithWriteBarrier) \
62 V(CheckedLoadInt8) \ 63 V(CheckedLoadInt8) \
63 V(CheckedLoadUint8) \ 64 V(CheckedLoadUint8) \
64 V(CheckedLoadInt16) \ 65 V(CheckedLoadInt16) \
65 V(CheckedLoadUint16) \ 66 V(CheckedLoadUint16) \
66 V(CheckedLoadWord32) \ 67 V(CheckedLoadWord32) \
67 V(CheckedLoadWord64) \ 68 V(CheckedLoadWord64) \
68 V(CheckedLoadFloat32) \ 69 V(CheckedLoadFloat32) \
69 V(CheckedLoadFloat64) \ 70 V(CheckedLoadFloat64) \
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 typedef BitField<AddressingMode, 8, 5> AddressingModeField; 163 typedef BitField<AddressingMode, 8, 5> AddressingModeField;
163 typedef BitField<FlagsMode, 13, 2> FlagsModeField; 164 typedef BitField<FlagsMode, 13, 2> FlagsModeField;
164 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField; 165 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField;
165 typedef BitField<int, 20, 12> MiscField; 166 typedef BitField<int, 20, 12> MiscField;
166 167
167 } // namespace compiler 168 } // namespace compiler
168 } // namespace internal 169 } // namespace internal
169 } // namespace v8 170 } // namespace v8
170 171
171 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ 172 #endif // V8_COMPILER_INSTRUCTION_CODES_H_
OLDNEW
« no previous file with comments | « src/compiler/ia32/code-generator-ia32.cc ('k') | src/compiler/instruction-scheduler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698