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

Unified Diff: src/code-stub-assembler.h

Issue 2851703005: Revert of [turbofan] Avoid going through ArgumentsAdaptorTrampoline for CSA/C++ builtins (Closed)
Patch Set: Created 3 years, 8 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/code-stub-assembler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stub-assembler.h
diff --git a/src/code-stub-assembler.h b/src/code-stub-assembler.h
index dbdd5f0f76245fcbc474a0c72ce6d41cbb852747..de81105b1e4bee1995cf6082e36fb5f8bd5c91da 100644
--- a/src/code-stub-assembler.h
+++ b/src/code-stub-assembler.h
@@ -1468,12 +1468,11 @@
public:
typedef compiler::Node Node;
- // |argc| is an intptr value which specifies the number of arguments passed
+ // |argc| is an uint32 value which specifies the number of arguments passed
// to the builtin excluding the receiver.
CodeStubArguments(CodeStubAssembler* assembler, Node* argc)
: CodeStubArguments(assembler, argc, nullptr,
CodeStubAssembler::INTPTR_PARAMETERS) {}
- // |argc| is either a smi or intptr depending on |param_mode|
CodeStubArguments(CodeStubAssembler* assembler, Node* argc, Node* fp,
CodeStubAssembler::ParameterMode param_mode);
@@ -1487,8 +1486,6 @@
CodeStubAssembler::INTPTR_PARAMETERS) const;
Node* AtIndex(int index) const;
-
- Node* GetOptionalArgumentValue(int index, Node* default_value);
Node* GetLength() const { return argc_; }
« no previous file with comments | « src/code-factory.cc ('k') | src/code-stub-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698