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

Unified Diff: runtime/vm/dart_entry.h

Issue 678763004: Make CTX allocatable by the register allocator. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: incorporated latest comments Created 6 years, 2 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
Index: runtime/vm/dart_entry.h
===================================================================
--- runtime/vm/dart_entry.h (revision 41393)
+++ runtime/vm/dart_entry.h (working copy)
@@ -13,7 +13,6 @@
// Forward declarations.
class Array;
class Closure;
-class Context;
class Function;
class Instance;
class Integer;
@@ -103,8 +102,7 @@
// On success, returns a RawInstance. On failure, a RawError.
typedef RawObject* (*invokestub)(uword entry_point,
const Array& arguments_descriptor,
- const Array& arguments,
- const Context& context);
+ const Array& arguments);
// Invokes the specified instance function or static function.
// The first argument of an instance function is the receiver.
@@ -113,19 +111,12 @@
static RawObject* InvokeFunction(const Function& function,
const Array& arguments);
- // Invokes the specified instance or static function.
+ // Invokes the specified instance, static, or closure function.
// On success, returns a RawInstance. On failure, a RawError.
static RawObject* InvokeFunction(const Function& function,
const Array& arguments,
const Array& arguments_descriptor);
- // Invokes the specified instance, static, or closure function.
- // On success, returns a RawInstance. On failure, a RawError.
- static RawObject* InvokeFunction(const Function& function,
- const Array& arguments,
- const Array& arguments_descriptor,
- const Context& context);
-
// Invokes the closure object given as the first argument.
// On success, returns a RawInstance. On failure, a RawError.
// This is used when there are no named arguments in the call.
« no previous file with comments | « runtime/vm/dart_api_impl.cc ('k') | runtime/vm/dart_entry.cc » ('j') | runtime/vm/debugger.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698