move CallEvent out of compiler.cpp

This commit is contained in:
Joshua Warner
2013-02-13 19:33:40 -07:00
parent 6d265374ec
commit 0f6e098b69
13 changed files with 732 additions and 539 deletions

View File

@ -25,6 +25,8 @@ class Site;
const int AnyFrameIndex = -2;
const int NoFrameIndex = -1;
const bool DebugSites = false;
class Value: public Compiler::Operand {
public:
Read* reads;
@ -43,6 +45,8 @@ class Value: public Compiler::Operand {
bool findSite(Site* site);
bool isBuddyOf(Value* b);
void addSite(Context* c, Site* s);
};
} // namespace compiler