blob: 592deed1a71996db5fb8f9d37e7ba49d7f6ed540 [file] [log] [blame]
Mathieu Chartier83c8ee02014-01-28 14:50:23 -08001/*
2 * Copyright (C) 2013 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_RUNTIME_OBJECT_CALLBACKS_H_
18#define ART_RUNTIME_OBJECT_CALLBACKS_H_
19
Mathieu Chartier8ab7e782014-05-19 16:55:27 -070020// For ostream.
21#include <ostream>
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080022// For uint32_t.
23#include <stdint.h>
24// For size_t.
25#include <stdlib.h>
26
Mathieu Chartier4c13a3f2014-07-14 14:57:16 -070027#include "base/macros.h"
28
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080029namespace art {
30namespace mirror {
Mingyao Yang98d1cc82014-05-15 17:02:16 -070031 class Class;
32 class Object;
33 template<class MirrorType> class HeapReference;
34 class Reference;
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080035} // namespace mirror
36class StackVisitor;
37
38enum RootType {
39 kRootUnknown = 0,
40 kRootJNIGlobal,
41 kRootJNILocal,
42 kRootJavaFrame,
43 kRootNativeStack,
44 kRootStickyClass,
45 kRootThreadBlock,
46 kRootMonitorUsed,
47 kRootThreadObject,
48 kRootInternedString,
49 kRootDebugger,
50 kRootVMInternal,
51 kRootJNIMonitor,
52};
Mathieu Chartier8ab7e782014-05-19 16:55:27 -070053std::ostream& operator<<(std::ostream& os, const RootType& root_type);
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080054
55// Returns the new address of the object, returns root if it has not moved. tid and root_type are
56// only used by hprof.
Mathieu Chartier815873e2014-02-13 18:02:13 -080057typedef void (RootCallback)(mirror::Object** root, void* arg, uint32_t thread_id,
58 RootType root_type);
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080059// A callback for visiting an object in the heap.
60typedef void (ObjectCallback)(mirror::Object* obj, void* arg);
61// A callback used for marking an object, returns the new address of the object if the object moved.
Mathieu Chartier4c13a3f2014-07-14 14:57:16 -070062typedef mirror::Object* (MarkObjectCallback)(mirror::Object* obj, void* arg) WARN_UNUSED;
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080063// A callback for verifying roots.
64typedef void (VerifyRootCallback)(const mirror::Object* root, void* arg, size_t vreg,
Mathieu Chartier7bf9f192014-04-04 11:09:41 -070065 const StackVisitor* visitor, RootType root_type);
Mathieu Chartier407f7022014-02-18 14:37:05 -080066
67typedef void (MarkHeapReferenceCallback)(mirror::HeapReference<mirror::Object>* ref, void* arg);
Hiroshi Yamauchi4db74492014-04-22 17:10:48 -070068typedef void (DelayReferenceReferentCallback)(mirror::Class* klass, mirror::Reference* ref, void* arg);
Mathieu Chartier407f7022014-02-18 14:37:05 -080069
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080070// A callback for testing if an object is marked, returns nullptr if not marked, otherwise the new
71// address the object (if the object didn't move, returns the object input parameter).
Mathieu Chartier4c13a3f2014-07-14 14:57:16 -070072typedef mirror::Object* (IsMarkedCallback)(mirror::Object* object, void* arg) WARN_UNUSED;
Mathieu Chartier308351a2014-06-15 12:39:02 -070073
74// Returns true if the object in the heap reference is marked, if it is marked and has moved the
75// callback updates the heap reference contain the new value.
76typedef bool (IsHeapReferenceMarkedCallback)(mirror::HeapReference<mirror::Object>* object,
Mathieu Chartier4c13a3f2014-07-14 14:57:16 -070077 void* arg) WARN_UNUSED;
Mathieu Chartier3bb57c72014-02-18 11:38:45 -080078typedef void (ProcessMarkStackCallback)(void* arg);
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080079
80} // namespace art
81
82#endif // ART_RUNTIME_OBJECT_CALLBACKS_H_