diff options
| author | 2013-02-14 22:30:15 +0000 | |
|---|---|---|
| committer | 2013-02-14 22:30:15 +0000 | |
| commit | 972a20543ce359b02a41d683a1d13523083d9a9f (patch) | |
| tree | 7f45e074008b34c8c031a957b5a38b0f7ce93119 /src/compiler/codegen/codegen.h | |
| parent | 7b50b6c20a64ea37c7b5a63226bfb733d3837214 (diff) | |
| parent | f662a7c625b1067f61b23c04459eba9b12bc027e (diff) | |
Merge "Add "select" detection to common frontend" into dalvik-dev
Diffstat (limited to 'src/compiler/codegen/codegen.h')
| -rw-r--r-- | src/compiler/codegen/codegen.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/codegen/codegen.h b/src/compiler/codegen/codegen.h index 372e842e2e..4085a41e39 100644 --- a/src/compiler/codegen/codegen.h +++ b/src/compiler/codegen/codegen.h @@ -335,6 +335,7 @@ class Codegen { virtual void GenFusedFPCmpBranch(CompilationUnit* cu, BasicBlock* bb, MIR* mir, bool gt_bias, bool is_double) = 0; virtual void GenFusedLongCmpBranch(CompilationUnit* cu, BasicBlock* bb, MIR* mir) = 0; + virtual void GenSelect(CompilationUnit* cu, BasicBlock* bb, MIR* mir) = 0; virtual void GenMemBarrier(CompilationUnit* cu, MemBarrierKind barrier_kind) = 0; virtual void GenMonitorEnter(CompilationUnit* cu, int opt_flags, RegLocation rl_src) = 0; virtual void GenMonitorExit(CompilationUnit* cu, int opt_flags, RegLocation rl_src) = 0; |