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

Unified Diff: src/code-stubs.h

Issue 1556913002: Use register arguments for RestParamAccessStub (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Ports. Created 4 years, 12 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/arm64/interface-descriptors-arm64.cc ('k') | src/full-codegen/arm/full-codegen-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 2d1a5cd2d09eb1c86fa3d6bb1d8bbfd3056daf2b..21e21356bb6b6407ea4ee1546a9208a1e432533e 100644
--- a/src/code-stubs.h
+++ b/src/code-stubs.h
@@ -1856,15 +1856,12 @@ class RestParamAccessStub : public PlatformCodeStub {
public:
explicit RestParamAccessStub(Isolate* isolate) : PlatformCodeStub(isolate) {}
- CallInterfaceDescriptor GetCallInterfaceDescriptor() const override {
- return ContextOnlyDescriptor(isolate());
- }
-
private:
void GenerateNew(MacroAssembler* masm);
void PrintName(std::ostream& os) const override; // NOLINT
+ DEFINE_CALL_INTERFACE_DESCRIPTOR(RestParamAccess);
DEFINE_PLATFORM_CODE_STUB(RestParamAccess, PlatformCodeStub);
};
« no previous file with comments | « src/arm64/interface-descriptors-arm64.cc ('k') | src/full-codegen/arm/full-codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698