diff options
author | Ben Cheng <bccheng@android.com> | 2009-06-01 13:00:29 -0700 |
---|---|---|
committer | Ben Cheng <bccheng@android.com> | 2009-06-04 12:46:11 -0700 |
commit | ba4fc8bfc1bccae048403bd1cea3b869dca61dd7 (patch) | |
tree | 3c05c1988501fd8a22ae73e02742ab291b2ff333 /vm/interp/Stack.h | |
parent | b38914129f30aa696726717db6484735ad7fe234 (diff) | |
download | android_dalvik-ba4fc8bfc1bccae048403bd1cea3b869dca61dd7.tar.gz android_dalvik-ba4fc8bfc1bccae048403bd1cea3b869dca61dd7.tar.bz2 android_dalvik-ba4fc8bfc1bccae048403bd1cea3b869dca61dd7.zip |
Initial port of the Dalvik JIT enging to the internal repository.
Fixed files with trailing spaces.
Addressed review comments from Dan.
Addressed review comments from fadden.
Addressed review comments from Dan x 2.
Addressed review comments from Dan x 3.
Diffstat (limited to 'vm/interp/Stack.h')
-rw-r--r-- | vm/interp/Stack.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vm/interp/Stack.h b/vm/interp/Stack.h index 1b28d49d2..f2a481b29 100644 --- a/vm/interp/Stack.h +++ b/vm/interp/Stack.h @@ -146,6 +146,8 @@ struct StackSaveArea { const u2* currentPc; } xtra; + /* Native return pointer for JIT, or 0 if interpreted */ + const u2* returnAddr; #ifdef PAD_SAVE_AREA u4 pad3, pad4, pad5; #endif |