blob: 382ad2442183962115e732ec0aa3fb78a68e681f [file] [log] [blame]
Elliott Hughes68e76522011-10-05 13:22:16 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ART_SRC_STACK_H_
18#define ART_SRC_STACK_H_
19
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080020#include "dex_file.h"
Elliott Hughesbfe487b2011-10-26 15:48:55 -070021#include "jni.h"
Elliott Hughes68e76522011-10-05 13:22:16 -070022#include "macros.h"
23
24#include <stdint.h>
25
26namespace art {
27
28class Method;
29class Thread;
30
Elliott Hughesbfe487b2011-10-26 15:48:55 -070031jobject GetThreadStack(JNIEnv*, Thread*);
32
Elliott Hughes68e76522011-10-05 13:22:16 -070033struct NativeToManagedRecord {
34 NativeToManagedRecord* link_;
35 void* last_top_of_managed_stack_;
36 uintptr_t last_top_of_managed_stack_pc_;
37};
38
39// Iterator over managed frames up to the first native-to-managed transition.
40class PACKED Frame {
41 public:
42 Frame() : sp_(NULL) {}
43
Elliott Hughes91bf6cd2012-02-14 17:27:48 -080044 Frame(Method** sp) : sp_(sp) {}
45
Elliott Hughes68e76522011-10-05 13:22:16 -070046 Method* GetMethod() const {
47 return (sp_ != NULL) ? *sp_ : NULL;
48 }
49
50 bool HasNext() const {
51 return NextMethod() != NULL;
52 }
53
54 void Next();
55
56 uintptr_t GetReturnPC() const;
57
jeffhaoe343b762011-12-05 16:36:44 -080058 void SetReturnPC(uintptr_t pc);
59
Elliott Hughes68e76522011-10-05 13:22:16 -070060 uintptr_t LoadCalleeSave(int num) const;
61
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080062
63 uint32_t GetVReg(const DexFile::CodeItem* code_item, uint32_t core_spills, uint32_t fp_spills,
64 size_t frame_size, int vreg) const;
65
Elliott Hughes215f3142012-01-19 00:22:47 -080066 uint32_t GetVReg(Method* m, int vreg) const;
Elliott Hughescccd84f2011-12-05 16:51:54 -080067 void SetVReg(Method* method, int vreg, uint32_t new_value);
Elliott Hughes68e76522011-10-05 13:22:16 -070068
69 Method** GetSP() const {
70 return sp_;
71 }
72
Elliott Hughes68e76522011-10-05 13:22:16 -070073 void SetSP(Method** sp) {
74 sp_ = sp;
75 }
76
77 // Is this a frame for a real method (native or with dex code)
78 bool HasMethod() const;
79
80 private:
81 Method* NextMethod() const;
82
83 friend class Thread;
84
85 Method** sp_;
86};
87
88} // namespace art
89
90#endif // ART_SRC_STACK_H_