blob: 97815ac43ff0fe9453938acce8de1ce2f04605e1 [file] [log] [blame]
Logan Chien4dd96f52012-02-29 01:26:58 +08001/*
2 * Copyright (C) 2012 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
Logan Chien4eb953f2012-03-01 13:16:52 +080017#ifndef ART_SRC_OAT_COMPILATION_UNIT_H_
18#define ART_SRC_OAT_COMPILATION_UNIT_H_
Logan Chien4dd96f52012-02-29 01:26:58 +080019
Logan Chien61c65dc2012-02-29 03:22:30 +080020#include "dex_file.h"
21
Logan Chien4dd96f52012-02-29 01:26:58 +080022#include <stdint.h>
23
24namespace art {
25
26class ClassLoader;
27class ClassLinker;
28class DexFile;
29class DexCache;
30
31class OatCompilationUnit {
32 public:
Ian Rogers00f7d0e2012-07-19 15:28:27 -070033 OatCompilationUnit(jobject class_loader, ClassLinker* class_linker, const DexFile& dex_file,
34 const DexFile::CodeItem* code_item, uint32_t method_idx, uint32_t access_flags)
35 : class_loader_(class_loader), class_linker_(class_linker), dex_file_(&dex_file),
36 code_item_(code_item), method_idx_(method_idx), access_flags_(access_flags) {
Logan Chien4dd96f52012-02-29 01:26:58 +080037 }
38
Logan Chien61c65dc2012-02-29 03:22:30 +080039 OatCompilationUnit* GetCallee(uint32_t callee_method_idx,
Logan Chienbfe4ea42012-03-01 13:24:17 +080040 uint32_t callee_access_flags) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070041 return new OatCompilationUnit(class_loader_, class_linker_, *dex_file_, NULL,
42 callee_method_idx, callee_access_flags);
Logan Chien61c65dc2012-02-29 03:22:30 +080043 }
44
Ian Rogers00f7d0e2012-07-19 15:28:27 -070045 jobject GetClassLoader() const {
Logan Chiendd361c92012-04-10 23:40:37 +080046 return class_loader_;
47 }
48
49 ClassLinker* GetClassLinker() const {
50 return class_linker_;
51 }
52
53 const DexFile* GetDexFile() const {
54 return dex_file_;
55 }
56
Logan Chiendd361c92012-04-10 23:40:37 +080057 uint32_t GetDexMethodIndex() const {
58 return method_idx_;
59 }
60
61 const DexFile::CodeItem* GetCodeItem() const {
62 return code_item_;
63 }
64
Logan Chienbfe4ea42012-03-01 13:24:17 +080065 const char* GetShorty() const {
66 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx_);
Logan Chien61c65dc2012-02-29 03:22:30 +080067 return dex_file_->GetMethodShorty(method_id);
68 }
69
Logan Chienbfe4ea42012-03-01 13:24:17 +080070 const char* GetShorty(uint32_t* shorty_len) const {
71 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx_);
Logan Chien61c65dc2012-02-29 03:22:30 +080072 return dex_file_->GetMethodShorty(method_id, shorty_len);
73 }
74
Logan Chiendd361c92012-04-10 23:40:37 +080075 bool IsStatic() const {
76 return ((access_flags_ & kAccStatic) != 0);
77 }
78
Logan Chien4dd96f52012-02-29 01:26:58 +080079 public:
Ian Rogers00f7d0e2012-07-19 15:28:27 -070080 jobject class_loader_;
81 ClassLinker* const class_linker_;
Logan Chien4dd96f52012-02-29 01:26:58 +080082
Ian Rogers00f7d0e2012-07-19 15:28:27 -070083 const DexFile* const dex_file_;
Logan Chien4dd96f52012-02-29 01:26:58 +080084
Ian Rogers00f7d0e2012-07-19 15:28:27 -070085 const DexFile::CodeItem* const code_item_;
86 const uint32_t method_idx_;
87 const uint32_t access_flags_;
Logan Chien4dd96f52012-02-29 01:26:58 +080088};
89
90} // namespace art
91
Logan Chien4eb953f2012-03-01 13:16:52 +080092#endif // ART_SRC_OAT_COMPILATION_UNIT_H_