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

Unified Diff: src/hydrogen-instructions.h

Issue 9838059: Rollback of r11118, r11109 in trunk branch. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 8 years, 9 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/hydrogen.cc ('k') | src/hydrogen-instructions.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/hydrogen-instructions.h
diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h
index 93e14bead99cc91a3c219df132350f2e459181a5..fb5879fd90c15cedcbe0ed45dee448ec5d420af7 100644
--- a/src/hydrogen-instructions.h
+++ b/src/hydrogen-instructions.h
@@ -1353,15 +1353,12 @@ class HEnterInlined: public HTemplateInstruction<0> {
int arguments_count,
FunctionLiteral* function,
CallKind call_kind,
- bool is_construct,
- Variable* arguments)
+ bool is_construct)
: closure_(closure),
arguments_count_(arguments_count),
function_(function),
call_kind_(call_kind),
- is_construct_(is_construct),
- arguments_(arguments),
- materializes_arguments_(false) {
+ is_construct_(is_construct) {
}
virtual void PrintDataTo(StringStream* stream);
@@ -1376,13 +1373,6 @@ class HEnterInlined: public HTemplateInstruction<0> {
return Representation::None();
}
- bool materializes_arguments() { return materializes_arguments_; }
- void set_materializes_arguments(bool materializes_arguments) {
- materializes_arguments_ = materializes_arguments;
- }
-
- Variable* arguments() { return arguments_; }
-
DECLARE_CONCRETE_INSTRUCTION(EnterInlined)
private:
@@ -1391,28 +1381,18 @@ class HEnterInlined: public HTemplateInstruction<0> {
FunctionLiteral* function_;
CallKind call_kind_;
bool is_construct_;
- Variable* arguments_;
- bool materializes_arguments_;
};
class HLeaveInlined: public HTemplateInstruction<0> {
public:
- explicit HLeaveInlined(bool arguments_pushed)
- : arguments_pushed_(arguments_pushed) { }
+ HLeaveInlined() {}
virtual Representation RequiredInputRepresentation(int index) {
return Representation::None();
}
- bool arguments_pushed() {
- return arguments_pushed_;
- }
-
DECLARE_CONCRETE_INSTRUCTION(LeaveInlined)
-
- private:
- bool arguments_pushed_;
};
« no previous file with comments | « src/hydrogen.cc ('k') | src/hydrogen-instructions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698