https://github.com/halide/Halide
Raw File
Tip revision: 79e9a12c6cf0b4f43e84ceb363e5c163f455a453 authored by Andrew Adams on 28 May 2020, 23:35:42 UTC
Merge remote-tracking branch 'origin/master' into openglcompute_reuse_shared_allocations
Tip revision: 79e9a12
PurifyIndexMath.h
#ifndef HALIDE_PURIFY_INDEX_MATH_H
#define HALIDE_PURIFY_INDEX_MATH_H

/** \file
 * Removes side-effects in integer math.
 */

#include "Expr.h"

namespace Halide {
namespace Internal {

/** Bounds inference and related stages can lift integer bounds
 * expressions out of if statements that guard against those integer
 * expressions doing side-effecty things like dividing or modding by
 * zero. In those cases, if the lowering passes are functional, the
 * value resulting from the division or mod is evaluated but not
 * used. This mutator rewrites divs and mods in such expressions to
 * fail silently (evaluate to undef) when the denominator is zero.
 */
Expr purify_index_math(const Expr &);

}  // namespace Internal
}  // namespace Halide

#endif
back to top