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

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

Issue 2060743002: [builtins] Introduce proper Float64Log1p operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@Math_Log
Patch Set: REBASE Created 4 years, 6 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 V(CheckedStoreFloat64) \ 82 V(CheckedStoreFloat64) \
83 V(ArchStackSlot) \ 83 V(ArchStackSlot) \
84 V(AtomicLoadInt8) \ 84 V(AtomicLoadInt8) \
85 V(AtomicLoadUint8) \ 85 V(AtomicLoadUint8) \
86 V(AtomicLoadInt16) \ 86 V(AtomicLoadInt16) \
87 V(AtomicLoadUint16) \ 87 V(AtomicLoadUint16) \
88 V(AtomicLoadWord32) \ 88 V(AtomicLoadWord32) \
89 V(AtomicStoreWord8) \ 89 V(AtomicStoreWord8) \
90 V(AtomicStoreWord16) \ 90 V(AtomicStoreWord16) \
91 V(AtomicStoreWord32) \ 91 V(AtomicStoreWord32) \
92 V(Ieee754Float64Log) 92 V(Ieee754Float64Log) \
93 V(Ieee754Float64Log1p)
93 94
94 #define ARCH_OPCODE_LIST(V) \ 95 #define ARCH_OPCODE_LIST(V) \
95 COMMON_ARCH_OPCODE_LIST(V) \ 96 COMMON_ARCH_OPCODE_LIST(V) \
96 TARGET_ARCH_OPCODE_LIST(V) 97 TARGET_ARCH_OPCODE_LIST(V)
97 98
98 enum ArchOpcode { 99 enum ArchOpcode {
99 #define DECLARE_ARCH_OPCODE(Name) k##Name, 100 #define DECLARE_ARCH_OPCODE(Name) k##Name,
100 ARCH_OPCODE_LIST(DECLARE_ARCH_OPCODE) 101 ARCH_OPCODE_LIST(DECLARE_ARCH_OPCODE)
101 #undef DECLARE_ARCH_OPCODE 102 #undef DECLARE_ARCH_OPCODE
102 #define COUNT_ARCH_OPCODE(Name) +1 103 #define COUNT_ARCH_OPCODE(Name) +1
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 typedef BitField<AddressingMode, 8, 5> AddressingModeField; 184 typedef BitField<AddressingMode, 8, 5> AddressingModeField;
184 typedef BitField<FlagsMode, 13, 2> FlagsModeField; 185 typedef BitField<FlagsMode, 13, 2> FlagsModeField;
185 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField; 186 typedef BitField<FlagsCondition, 15, 5> FlagsConditionField;
186 typedef BitField<int, 20, 12> MiscField; 187 typedef BitField<int, 20, 12> MiscField;
187 188
188 } // namespace compiler 189 } // namespace compiler
189 } // namespace internal 190 } // namespace internal
190 } // namespace v8 191 } // namespace v8
191 192
192 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ 193 #endif // V8_COMPILER_INSTRUCTION_CODES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698