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

Unified Diff: src/compiler/opcodes.h

Issue 2191883002: [turbofan] Adds speculative opcodes for shift right. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Really fix the merge conflicts. Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/opcodes.h
diff --git a/src/compiler/opcodes.h b/src/compiler/opcodes.h
index c3179d73fbf5416ae9cd4e06564e9cff627f6663..1545e6ddf7d8e1c8104db9cc229fedc309dc0c0e 100644
--- a/src/compiler/opcodes.h
+++ b/src/compiler/opcodes.h
@@ -204,91 +204,93 @@
V(StringLessThan) \
V(StringLessThanOrEqual)
-#define SIMPLIFIED_OTHER_OP_LIST(V) \
- V(PlainPrimitiveToNumber) \
- V(PlainPrimitiveToWord32) \
- V(PlainPrimitiveToFloat64) \
- V(BooleanNot) \
- V(SpeculativeNumberAdd) \
- V(SpeculativeNumberSubtract) \
- V(SpeculativeNumberMultiply) \
- V(SpeculativeNumberDivide) \
- V(SpeculativeNumberModulus) \
- V(SpeculativeNumberEqual) \
- V(SpeculativeNumberLessThan) \
- V(SpeculativeNumberLessThanOrEqual) \
- V(NumberAdd) \
- V(NumberSubtract) \
- V(NumberMultiply) \
- V(NumberDivide) \
- V(NumberModulus) \
- V(NumberBitwiseOr) \
- V(NumberBitwiseXor) \
- V(NumberBitwiseAnd) \
- V(NumberShiftLeft) \
- V(SpeculativeNumberShiftLeft) \
- V(NumberShiftRight) \
- V(NumberShiftRightLogical) \
- V(NumberImul) \
- V(NumberAbs) \
- V(NumberClz32) \
- V(NumberCeil) \
- V(NumberCos) \
- V(NumberCosh) \
- V(NumberFloor) \
- V(NumberFround) \
- V(NumberAcos) \
- V(NumberAcosh) \
- V(NumberAsin) \
- V(NumberAsinh) \
- V(NumberAtan) \
- V(NumberAtanh) \
- V(NumberAtan2) \
- V(NumberExp) \
- V(NumberExpm1) \
- V(NumberLog) \
- V(NumberLog1p) \
- V(NumberLog2) \
- V(NumberLog10) \
- V(NumberMax) \
- V(NumberMin) \
- V(NumberCbrt) \
- V(NumberPow) \
- V(NumberRound) \
- V(NumberSign) \
- V(NumberSin) \
- V(NumberSinh) \
- V(NumberSqrt) \
- V(NumberTan) \
- V(NumberTanh) \
- V(NumberTrunc) \
- V(NumberToInt32) \
- V(NumberToUint32) \
- V(NumberSilenceNaN) \
- V(StringCharCodeAt) \
- V(StringFromCharCode) \
- V(CheckBounds) \
- V(CheckIf) \
- V(CheckMaps) \
- V(CheckNumber) \
- V(CheckString) \
- V(CheckTaggedPointer) \
- V(CheckTaggedSigned) \
- V(CheckFloat64Hole) \
- V(CheckTaggedHole) \
- V(Allocate) \
- V(LoadField) \
- V(LoadBuffer) \
- V(LoadElement) \
- V(StoreField) \
- V(StoreBuffer) \
- V(StoreElement) \
- V(ObjectIsCallable) \
- V(ObjectIsNumber) \
- V(ObjectIsReceiver) \
- V(ObjectIsSmi) \
- V(ObjectIsString) \
- V(ObjectIsUndetectable) \
+#define SIMPLIFIED_OTHER_OP_LIST(V) \
+ V(PlainPrimitiveToNumber) \
+ V(PlainPrimitiveToWord32) \
+ V(PlainPrimitiveToFloat64) \
+ V(BooleanNot) \
+ V(SpeculativeNumberAdd) \
+ V(SpeculativeNumberSubtract) \
+ V(SpeculativeNumberMultiply) \
+ V(SpeculativeNumberDivide) \
+ V(SpeculativeNumberModulus) \
+ V(SpeculativeNumberEqual) \
+ V(SpeculativeNumberLessThan) \
+ V(SpeculativeNumberLessThanOrEqual) \
+ V(NumberAdd) \
+ V(NumberSubtract) \
+ V(NumberMultiply) \
+ V(NumberDivide) \
+ V(NumberModulus) \
+ V(NumberBitwiseOr) \
+ V(NumberBitwiseXor) \
+ V(NumberBitwiseAnd) \
+ V(NumberShiftLeft) \
+ V(SpeculativeNumberShiftLeft) \
+ V(SpeculativeNumberShiftRight) \
+ V(SpeculativeNumberShiftRightLogical) \
+ V(NumberShiftRight) \
+ V(NumberShiftRightLogical) \
+ V(NumberImul) \
+ V(NumberAbs) \
+ V(NumberClz32) \
+ V(NumberCeil) \
+ V(NumberCos) \
+ V(NumberCosh) \
+ V(NumberFloor) \
+ V(NumberFround) \
+ V(NumberAcos) \
+ V(NumberAcosh) \
+ V(NumberAsin) \
+ V(NumberAsinh) \
+ V(NumberAtan) \
+ V(NumberAtanh) \
+ V(NumberAtan2) \
+ V(NumberExp) \
+ V(NumberExpm1) \
+ V(NumberLog) \
+ V(NumberLog1p) \
+ V(NumberLog2) \
+ V(NumberLog10) \
+ V(NumberMax) \
+ V(NumberMin) \
+ V(NumberCbrt) \
+ V(NumberPow) \
+ V(NumberRound) \
+ V(NumberSign) \
+ V(NumberSin) \
+ V(NumberSinh) \
+ V(NumberSqrt) \
+ V(NumberTan) \
+ V(NumberTanh) \
+ V(NumberTrunc) \
+ V(NumberToInt32) \
+ V(NumberToUint32) \
+ V(NumberSilenceNaN) \
+ V(StringCharCodeAt) \
+ V(StringFromCharCode) \
+ V(CheckBounds) \
+ V(CheckIf) \
+ V(CheckMaps) \
+ V(CheckNumber) \
+ V(CheckString) \
+ V(CheckTaggedPointer) \
+ V(CheckTaggedSigned) \
+ V(CheckFloat64Hole) \
+ V(CheckTaggedHole) \
+ V(Allocate) \
+ V(LoadField) \
+ V(LoadBuffer) \
+ V(LoadElement) \
+ V(StoreField) \
+ V(StoreBuffer) \
+ V(StoreElement) \
+ V(ObjectIsCallable) \
+ V(ObjectIsNumber) \
+ V(ObjectIsReceiver) \
+ V(ObjectIsSmi) \
+ V(ObjectIsString) \
+ V(ObjectIsUndetectable) \
V(TransitionElementsKind)
#define SIMPLIFIED_OP_LIST(V) \
« no previous file with comments | « src/compiler/js-typed-lowering.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698