Mterp.h revision 75425b731c514bf90c985275d80aa7886727d83f
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 */
39extern "C" void dvmMterpStdRun(Thread* self);
40extern "C" void dvmMterpStdBail(Thread* self);
41
42/*
43 * Helper for common_printMethod(), invoked from the assembly
44 * interpreter.
45 */
46extern "C" void dvmMterpPrintMethod(Method* method);
47
48#endif  // DALVIK_MTERP_MTERP_H_
49