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

Unified Diff: src/code-stubs.h

Issue 2103733003: [turbofan] Introduce Float64Pow and NumberPow operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE on ARM64 bug fix. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/code-factory.cc ('k') | src/compiler/arm/code-generator-arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stubs.h
diff --git a/src/code-stubs.h b/src/code-stubs.h
index 85b0883db849033869eae4c5df248d9f907d7c83..6090d505ebab0894fb4b5973d5d0762d06388054 100644
--- a/src/code-stubs.h
+++ b/src/code-stubs.h
@@ -1326,7 +1326,7 @@ class InternalArrayConstructorStub: public PlatformCodeStub {
class MathPowStub: public PlatformCodeStub {
public:
- enum ExponentType { INTEGER, DOUBLE, TAGGED, ON_STACK };
+ enum ExponentType { INTEGER, DOUBLE, TAGGED };
MathPowStub(Isolate* isolate, ExponentType exponent_type)
: PlatformCodeStub(isolate) {
@@ -1334,9 +1334,7 @@ class MathPowStub: public PlatformCodeStub {
}
CallInterfaceDescriptor GetCallInterfaceDescriptor() const override {
- if (exponent_type() == ON_STACK) {
- return OnStackArgsDescriptorBase::ForArgs(isolate(), 2);
- } else if (exponent_type() == TAGGED) {
+ if (exponent_type() == TAGGED) {
return MathPowTaggedDescriptor(isolate());
} else if (exponent_type() == INTEGER) {
return MathPowIntegerDescriptor(isolate());
« no previous file with comments | « src/code-factory.cc ('k') | src/compiler/arm/code-generator-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698