blob: 9093cb1ac81f6764baa62e3a2555a8934e777aba [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
buzbeeefccc562012-03-11 11:19:28 -070062 static int GetVRegOffset(const DexFile::CodeItem* code_item, uint32_t core_spills,
63 uint32_t fp_spills, size_t frame_size, int reg);
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080064
65 uint32_t GetVReg(const DexFile::CodeItem* code_item, uint32_t core_spills, uint32_t fp_spills,
66 size_t frame_size, int vreg) const;
67
Elliott Hughes215f3142012-01-19 00:22:47 -080068 uint32_t GetVReg(Method* m, int vreg) const;
Elliott Hughescccd84f2011-12-05 16:51:54 -080069 void SetVReg(Method* method, int vreg, uint32_t new_value);
Elliott Hughes68e76522011-10-05 13:22:16 -070070
71 Method** GetSP() const {
72 return sp_;
73 }
74
Elliott Hughes68e76522011-10-05 13:22:16 -070075 void SetSP(Method** sp) {
76 sp_ = sp;
77 }
78
79 // Is this a frame for a real method (native or with dex code)
80 bool HasMethod() const;
81
82 private:
83 Method* NextMethod() const;
84
85 friend class Thread;
86
87 Method** sp_;
88};
89
90} // namespace art
91
92#endif // ART_SRC_STACK_H_