hhir punting to interp by default, master version

Let's do this. It's already on in the current rc; this is
mostly to get another test run on current master.
Esse commit está contido em:
bsimmers
2013-04-25 12:32:16 -07:00
commit de Sara Golemon
commit 8760794304
2 arquivos alterados com 3 adições e 3 exclusões
+2 -2
Ver Arquivo
@@ -409,7 +409,7 @@ public:
F(bool, ThreadingJit, false) \
F(bool, JitTransCounters, false) \
F(bool, JitMGeneric, true) \
F(bool, JitUseIR, false) \
F(bool, JitUseIR, true) \
F(double, JitCompareHHIR, 0) \
F(bool, IRPuntDontInterp, false) \
F(bool, HHIRGenericDtorHelper, true) \
@@ -430,7 +430,7 @@ public:
F(bool, HHIREnableSinking, true) \
F(bool, HHIRGenerateAsserts, debug) \
F(bool, HHIRDirectExit, true) \
F(bool, HHIRDisableTx64, false) \
F(bool, HHIRDisableTx64, true) \
F(uint64_t, MaxHHIRTrans, -1) \
F(bool, HHIRDeadCodeElim, true) \
F(bool, DumpBytecode, false) \
+1 -1
Ver Arquivo
@@ -204,7 +204,7 @@ function mode_arg($options) {
switch ($mode) {
case '':
case 'jit':
return $jit_args;
return "$jit_args -v Eval.JitUseIR=false";
case 'hhir':
return "$jit_args -v Eval.JitUseIR=true -v Eval.HHIRDisableTx64=true";
case 'interp':