When true, prefer runtime checks that can be hoisted from nested loops.
Synopsis
Declared in <llvm/Analysis/LoopAccessAnalysis.h>
static
bool HoistRuntimeChecks;
Description
When creating runtime checks for nested loops, where possible try to write the checks in a form that allows them to be easily hoisted out of the outermost loop. For example, we can do this by expanding the range of addresses considered to include the entire nested loop so that they are loop invariant.
Created with MrDocs