diff options
Diffstat (limited to 'vm/compiler/codegen/CompilerCodegen.h')
-rw-r--r-- | vm/compiler/codegen/CompilerCodegen.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/vm/compiler/codegen/CompilerCodegen.h b/vm/compiler/codegen/CompilerCodegen.h index efa913f90..8223d2a9f 100644 --- a/vm/compiler/codegen/CompilerCodegen.h +++ b/vm/compiler/codegen/CompilerCodegen.h @@ -19,6 +19,10 @@ #include "compiler/CompilerIR.h" +#ifdef __cplusplus +extern "C" { +#endif + /* Maximal number of switch cases to have inline chains */ #define MAX_CHAINED_SWITCH_CASES 64 @@ -34,6 +38,9 @@ void dvmCompilerMethodMIR2LIR(CompilationUnit *cUnit); /* Assemble LIR into machine code */ void dvmCompilerAssembleLIR(CompilationUnit *cUnit, JitTranslationInfo *info); +/* Perform translation chain operation. */ +void* dvmJitChain(void* tgtAddr, u4* branchAddr); + /* Install class objects in the literal pool */ void dvmJitInstallClassObjectPointers(CompilationUnit *cUnit, char *codeAddress); @@ -68,4 +75,8 @@ int dvmCompilerTargetOptHint(int key); /* Implemented in codegen/<target>/<target_variant>/ArchVariant.c */ void dvmCompilerGenMemBarrier(CompilationUnit *cUnit, int barrierKind); +#ifdef __cplusplus +} +#endif + #endif /* _DALVIK_VM_COMPILERCODEGEN_H_ */ |