Lines Matching defs:OptState
83 enum class OptState { ES2PANDA, JIT_COMPILER, OPTIMIZER };
84 OptState optState = OptState::ES2PANDA;
86 std::unordered_map<OptState, std::vector<std::string> *> argsMap = {{OptState::ES2PANDA, &es2pandaArgs},
87 {OptState::JIT_COMPILER, &bcoCompilerArgs},
88 {OptState::OPTIMIZER, &bytecodeoptArgs}};
94 optState = OptState::JIT_COMPILER;
99 optState = OptState::OPTIMIZER;
104 optState = OptState::ES2PANDA;