| Index: src/fast-codegen.h
|
| ===================================================================
|
| --- src/fast-codegen.h (revision 3140)
|
| +++ src/fast-codegen.h (working copy)
|
| @@ -51,6 +51,15 @@
|
| private:
|
| int SlotOffset(Slot* slot);
|
|
|
| + void Move(Location destination, Location source);
|
| +
|
| + void Move(Location destination, Register source);
|
| + void Move(Location destination, Slot* source);
|
| + void Move(Location destination, Literal* source);
|
| +
|
| + void Move(Register destination, Location source);
|
| + void Move(Slot* destination, Location source);
|
| +
|
| void VisitDeclarations(ZoneList<Declaration*>* declarations);
|
| Handle<JSFunction> BuildBoilerplate(FunctionLiteral* fun);
|
| void DeclareGlobals(Handle<FixedArray> pairs);
|
|
|