1/*
2 * Copyright (C) 2008 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/*
18 * Some declarations used throughout mterp.
19 */
20#ifndef DALVIK_MTERP_MTERP_H_
21#define DALVIK_MTERP_MTERP_H_
22
23#include "Dalvik.h"
24#include "interp/InterpDefs.h"
25#if defined(WITH_JIT)
26#include "interp/Jit.h"
27#endif
28
29/*
30 * Call this during initialization to verify that the values in asm-constants.h
31 * are still correct.
32 */
33extern "C" bool dvmCheckAsmConstants(void);
34
35/*
36 * Local entry and exit points.  The platform-specific implementation must
37 * provide these two.
38 *
39 * dvmMterpStdRun() returns the "changeInterp" argument from dvmMterpStdBail(),
40 * indicating whether we want to bail out of the interpreter or just switch
41 * between "standard" and "debug" mode.
42 *
43 * The "mterp" interpreter is always "standard".
44 */
45extern "C" bool dvmMterpStdRun(Thread* self);
46extern "C" void dvmMterpStdBail(Thread* self, bool changeInterp);
47
48/*
49 * Helper for common_printMethod(), invoked from the assembly
50 * interpreter.
51 */
52extern "C" void dvmMterpPrintMethod(Method* method);
53
54#endif  // DALVIK_MTERP_MTERP_H_
55