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

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

Issue 1412443003: [turbofan] Introduce lazy bailout, masked as a call. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Enable test Created 5 years, 2 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/instruction-selector-ia32.cc ('k') | src/compiler/instruction-selector.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 24 matching lines...) Expand all
35 35
36 // Target-specific opcodes that specify which assembly sequence to emit. 36 // Target-specific opcodes that specify which assembly sequence to emit.
37 // Most opcodes specify a single instruction. 37 // Most opcodes specify a single instruction.
38 #define ARCH_OPCODE_LIST(V) \ 38 #define ARCH_OPCODE_LIST(V) \
39 V(ArchCallCodeObject) \ 39 V(ArchCallCodeObject) \
40 V(ArchTailCallCodeObject) \ 40 V(ArchTailCallCodeObject) \
41 V(ArchCallJSFunction) \ 41 V(ArchCallJSFunction) \
42 V(ArchTailCallJSFunction) \ 42 V(ArchTailCallJSFunction) \
43 V(ArchPrepareCallCFunction) \ 43 V(ArchPrepareCallCFunction) \
44 V(ArchCallCFunction) \ 44 V(ArchCallCFunction) \
45 V(ArchLazyBailout) \
45 V(ArchJmp) \ 46 V(ArchJmp) \
46 V(ArchLookupSwitch) \ 47 V(ArchLookupSwitch) \
47 V(ArchTableSwitch) \ 48 V(ArchTableSwitch) \
48 V(ArchNop) \ 49 V(ArchNop) \
49 V(ArchDeoptimize) \ 50 V(ArchDeoptimize) \
50 V(ArchRet) \ 51 V(ArchRet) \
51 V(ArchStackPointer) \ 52 V(ArchStackPointer) \
52 V(ArchFramePointer) \ 53 V(ArchFramePointer) \
53 V(ArchTruncateDoubleToI) \ 54 V(ArchTruncateDoubleToI) \
54 V(CheckedLoadInt8) \ 55 V(CheckedLoadInt8) \
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 typedef BitField<AddressingMode, 8, 5> AddressingModeField; 151 typedef BitField<AddressingMode, 8, 5> AddressingModeField;
151 typedef BitField<FlagsMode, 13, 2> FlagsModeField; 152 typedef BitField<FlagsMode, 13, 2> FlagsModeField;
152 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField; 153 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField;
153 typedef BitField<int, 20, 12> MiscField; 154 typedef BitField<int, 20, 12> MiscField;
154 155
155 } // namespace compiler 156 } // namespace compiler
156 } // namespace internal 157 } // namespace internal
157 } // namespace v8 158 } // namespace v8
158 159
159 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ 160 #endif // V8_COMPILER_INSTRUCTION_CODES_H_
OLDNEW
« no previous file with comments | « src/compiler/ia32/instruction-selector-ia32.cc ('k') | src/compiler/instruction-selector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698