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

Unified Diff: vm/intermediate_language.h

Issue 10392191: Reverting r7833 because of failing compilation. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 7 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 | « vm/flow_graph_compiler_x64.cc ('k') | vm/intermediate_language_x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/intermediate_language.h
===================================================================
--- vm/intermediate_language.h (revision 7833)
+++ vm/intermediate_language.h (working copy)
@@ -392,10 +392,7 @@
ClosureCallComp(ClosureCallNode* node,
intptr_t try_index,
ZoneGrowableArray<Value*>* arguments)
- : ast_node_(*node),
- try_index_(try_index),
- arguments_(arguments),
- location_summary_(MakeLocationSummary()) { }
+ : ast_node_(*node), try_index_(try_index), arguments_(arguments) { }
DECLARE_COMPUTATION(ClosureCall)
@@ -411,20 +408,10 @@
virtual void PrintOperandsTo(BufferFormatter* f) const;
- virtual LocationSummary* locs() const {
- return location_summary_;
- }
-
- // Platform specific summary factory for this instruction.
- LocationSummary* MakeLocationSummary();
-
- virtual void EmitNativeCode(FlowGraphCompiler* compiler);
-
private:
const ClosureCallNode& ast_node_;
const intptr_t try_index_;
ZoneGrowableArray<Value*>* arguments_;
- LocationSummary* location_summary_;
DISALLOW_COPY_AND_ASSIGN(ClosureCallComp);
};
@@ -443,8 +430,7 @@
function_name_(function_name),
arguments_(arguments),
argument_names_(argument_names),
- checked_argument_count_(checked_argument_count),
- location_summary_(MakeLocationSummary()) {
+ checked_argument_count_(checked_argument_count) {
ASSERT(function_name.IsZoneHandle());
ASSERT(!arguments->is_empty());
ASSERT(argument_names.IsZoneHandle());
@@ -465,15 +451,6 @@
virtual void PrintOperandsTo(BufferFormatter* f) const;
- virtual LocationSummary* locs() const {
- return location_summary_;
- }
-
- // Platform specific summary factory for this instruction.
- LocationSummary* MakeLocationSummary();
-
- virtual void EmitNativeCode(FlowGraphCompiler* compiler);
-
private:
const intptr_t token_index_;
const intptr_t try_index_;
@@ -481,7 +458,6 @@
ZoneGrowableArray<Value*>* const arguments_;
const Array& argument_names_;
const intptr_t checked_argument_count_;
- LocationSummary* location_summary_;
DISALLOW_COPY_AND_ASSIGN(InstanceCallComp);
};
@@ -565,8 +541,7 @@
try_index_(try_index),
function_(function),
argument_names_(argument_names),
- arguments_(arguments),
- location_summary_(MakeLocationSummary()) {
+ arguments_(arguments) {
ASSERT(function.IsZoneHandle());
ASSERT(argument_names.IsZoneHandle());
}
@@ -587,22 +562,12 @@
virtual void PrintOperandsTo(BufferFormatter* f) const;
- virtual LocationSummary* locs() const {
- return location_summary_;
- }
-
- // Platform specific summary factory for this instruction.
- LocationSummary* MakeLocationSummary();
-
- virtual void EmitNativeCode(FlowGraphCompiler* compiler);
-
private:
const intptr_t token_index_;
const intptr_t try_index_;
const Function& function_;
const Array& argument_names_;
ZoneGrowableArray<Value*>* arguments_;
- LocationSummary* location_summary_;
DISALLOW_COPY_AND_ASSIGN(StaticCallComp);
};
« no previous file with comments | « vm/flow_graph_compiler_x64.cc ('k') | vm/intermediate_language_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698