Move rest of code related blobs from Method to oat
Change-Id: I55041b564ab65317c8b1f863005f20ba650a0322
diff --git a/src/stack.cc b/src/stack.cc
index 9f01dab..985fd38 100644
--- a/src/stack.cc
+++ b/src/stack.cc
@@ -19,10 +19,12 @@
#include "compiler.h"
#include "object.h"
+int oatVRegOffsetFromMethod(art::Method* method, int reg);
+
namespace art {
bool Frame::HasMethod() const {
- return GetMethod() != NULL && (!GetMethod()->IsPhony());
+ return GetMethod() != NULL && (!GetMethod()->IsCalleeSaveMethod());
}
void Frame::Next() {