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

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

Issue 2266823002: [turbofan] Insert dummy values when changing from None type. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 3 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(ArchTailCallJSFunction) \ 50 V(ArchTailCallJSFunction) \
51 V(ArchTailCallAddress) \ 51 V(ArchTailCallAddress) \
52 V(ArchPrepareCallCFunction) \ 52 V(ArchPrepareCallCFunction) \
53 V(ArchCallCFunction) \ 53 V(ArchCallCFunction) \
54 V(ArchPrepareTailCall) \ 54 V(ArchPrepareTailCall) \
55 V(ArchJmp) \ 55 V(ArchJmp) \
56 V(ArchLookupSwitch) \ 56 V(ArchLookupSwitch) \
57 V(ArchTableSwitch) \ 57 V(ArchTableSwitch) \
58 V(ArchNop) \ 58 V(ArchNop) \
59 V(ArchDebugBreak) \ 59 V(ArchDebugBreak) \
60 V(ArchImpossible) \
61 V(ArchComment) \ 60 V(ArchComment) \
62 V(ArchThrowTerminator) \ 61 V(ArchThrowTerminator) \
63 V(ArchDeoptimize) \ 62 V(ArchDeoptimize) \
64 V(ArchRet) \ 63 V(ArchRet) \
65 V(ArchStackPointer) \ 64 V(ArchStackPointer) \
66 V(ArchFramePointer) \ 65 V(ArchFramePointer) \
67 V(ArchParentFramePointer) \ 66 V(ArchParentFramePointer) \
68 V(ArchTruncateDoubleToI) \ 67 V(ArchTruncateDoubleToI) \
69 V(ArchStoreWithWriteBarrier) \ 68 V(ArchStoreWithWriteBarrier) \
70 V(CheckedLoadInt8) \ 69 V(CheckedLoadInt8) \
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 typedef BitField<AddressingMode, 8, 5> AddressingModeField; 205 typedef BitField<AddressingMode, 8, 5> AddressingModeField;
207 typedef BitField<FlagsMode, 13, 2> FlagsModeField; 206 typedef BitField<FlagsMode, 13, 2> FlagsModeField;
208 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField; 207 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField;
209 typedef BitField<int, 20, 12> MiscField; 208 typedef BitField<int, 20, 12> MiscField;
210 209
211 } // namespace compiler 210 } // namespace compiler
212 } // namespace internal 211 } // namespace internal
213 } // namespace v8 212 } // namespace v8
214 213
215 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ 214 #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