| 175 | } |
| 176 | |
| 177 | ExprPtr getAlreadyCompiled(const ITypedExpr* expr, ExprDedupMap* visited) { |
| 178 | auto iter = visited->find(expr); |
| 179 | return iter == visited->end() ? nullptr : iter->second; |
| 180 | } |
| 181 | |
| 182 | #ifdef ENABLE_BOLT_EXPR_JIT |
| 183 | ExprPtr compileExpression( |
no test coverage detected