blob: 468ba08a43ce07fc8f9442fd37797d23bcba7626 [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
20// For uint32_t.
21#include <stdint.h>
22// For size_t.
23#include <stdlib.h>
24
25namespace art {
26namespace mirror {
27class Object;
28} // namespace mirror
29class StackVisitor;
30
31enum RootType {
32 kRootUnknown = 0,
33 kRootJNIGlobal,
34 kRootJNILocal,
35 kRootJavaFrame,
36 kRootNativeStack,
37 kRootStickyClass,
38 kRootThreadBlock,
39 kRootMonitorUsed,
40 kRootThreadObject,
41 kRootInternedString,
42 kRootDebugger,
43 kRootVMInternal,
44 kRootJNIMonitor,
45};
46
47// Returns the new address of the object, returns root if it has not moved. tid and root_type are
48// only used by hprof.
Mathieu Chartier815873e2014-02-13 18:02:13 -080049typedef void (RootCallback)(mirror::Object** root, void* arg, uint32_t thread_id,
50 RootType root_type);
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080051// A callback for visiting an object in the heap.
52typedef void (ObjectCallback)(mirror::Object* obj, void* arg);
53// A callback used for marking an object, returns the new address of the object if the object moved.
54typedef mirror::Object* (MarkObjectCallback)(mirror::Object* obj, void* arg)
55 __attribute__((warn_unused_result));
56// A callback for verifying roots.
57typedef void (VerifyRootCallback)(const mirror::Object* root, void* arg, size_t vreg,
58 const StackVisitor* visitor);
59// A callback for testing if an object is marked, returns nullptr if not marked, otherwise the new
60// address the object (if the object didn't move, returns the object input parameter).
61typedef mirror::Object* (IsMarkedCallback)(mirror::Object* object, void* arg)
62 __attribute__((warn_unused_result));
Mathieu Chartier3bb57c72014-02-18 11:38:45 -080063typedef void (ProcessMarkStackCallback)(void* arg);
Mathieu Chartier83c8ee02014-01-28 14:50:23 -080064
65} // namespace art
66
67#endif // ART_RUNTIME_OBJECT_CALLBACKS_H_