diff options
Diffstat (limited to 'src/compiler/Compiler.h')
| -rw-r--r-- | src/compiler/Compiler.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/compiler/Compiler.h b/src/compiler/Compiler.h index 2f95be2311..4d749ce241 100644 --- a/src/compiler/Compiler.h +++ b/src/compiler/Compiler.h @@ -127,6 +127,9 @@ enum debugControlVector { kDebugShowMemoryUsage, kDebugShowNops, kDebugCountOpcodes, +#if defined(ART_USE_QUICK_COMPILER) + kDebugDumpBitcodeFile, +#endif }; enum OatMethodAttributes { @@ -193,6 +196,7 @@ void oatDumpCFG(CompilationUnit* cUnit, const char* dirPrefix); void oatProcessSwitchTables(CompilationUnit* cUnit); bool oatIsFpReg(int reg); uint32_t oatFpRegMask(void); +void oatReplaceSpecialChars(std::string& str); } // namespace art |