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

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

Issue 961973002: [turbofan] First shot at eager deoptimization in Turbofan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix 2 Created 5 years, 9 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
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 22 matching lines...) Expand all
33 33
34 // Target-specific opcodes that specify which assembly sequence to emit. 34 // Target-specific opcodes that specify which assembly sequence to emit.
35 // Most opcodes specify a single instruction. 35 // Most opcodes specify a single instruction.
36 #define ARCH_OPCODE_LIST(V) \ 36 #define ARCH_OPCODE_LIST(V) \
37 V(ArchCallCodeObject) \ 37 V(ArchCallCodeObject) \
38 V(ArchCallJSFunction) \ 38 V(ArchCallJSFunction) \
39 V(ArchJmp) \ 39 V(ArchJmp) \
40 V(ArchLookupSwitch) \ 40 V(ArchLookupSwitch) \
41 V(ArchTableSwitch) \ 41 V(ArchTableSwitch) \
42 V(ArchNop) \ 42 V(ArchNop) \
43 V(ArchDeoptimize) \
43 V(ArchRet) \ 44 V(ArchRet) \
44 V(ArchStackPointer) \ 45 V(ArchStackPointer) \
45 V(ArchTruncateDoubleToI) \ 46 V(ArchTruncateDoubleToI) \
46 V(CheckedLoadInt8) \ 47 V(CheckedLoadInt8) \
47 V(CheckedLoadUint8) \ 48 V(CheckedLoadUint8) \
48 V(CheckedLoadInt16) \ 49 V(CheckedLoadInt16) \
49 V(CheckedLoadUint16) \ 50 V(CheckedLoadUint16) \
50 V(CheckedLoadWord32) \ 51 V(CheckedLoadWord32) \
51 V(CheckedLoadFloat32) \ 52 V(CheckedLoadFloat32) \
52 V(CheckedLoadFloat64) \ 53 V(CheckedLoadFloat64) \
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 typedef BitField<AddressingMode, 7, 5> AddressingModeField; 131 typedef BitField<AddressingMode, 7, 5> AddressingModeField;
131 typedef BitField<FlagsMode, 12, 2> FlagsModeField; 132 typedef BitField<FlagsMode, 12, 2> FlagsModeField;
132 typedef BitField<FlagsCondition, 14, 4> FlagsConditionField; 133 typedef BitField<FlagsCondition, 14, 4> FlagsConditionField;
133 typedef BitField<int, 14, 18> MiscField; 134 typedef BitField<int, 14, 18> MiscField;
134 135
135 } // namespace compiler 136 } // namespace compiler
136 } // namespace internal 137 } // namespace internal
137 } // namespace v8 138 } // namespace v8
138 139
139 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ 140 #endif // V8_COMPILER_INSTRUCTION_CODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698