Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Enable

44   enum LVEnableState { Unspecified, Enable, Disable, Full };
46 /// Value for llvm.loop.vectorize.enable metadata.
49 /// Value for llvm.loop.unroll.* metadata (enable, disable, or full).
52 /// Value for llvm.loop.unroll_and_jam.* metadata (enable, disable, or full).
61 // Value for llvm.loop.vectorize.scalable.enable
73 /// Value for llvm.loop.distribute.enable metadata.
232 void setParallel(bool Enable = true) { StagedAttrs.IsParallel = Enable; }
234 /// Set the next pushed loop 'vectorize.enable'
235 void setVectorizeEnable(bool Enable = true) {
237 Enable ? LoopAttributes::Enable : LoopAttributes::Disable;
241 void setDistributeState(bool Enable = true) {
243 Enable ? LoopAttributes::Enable : LoopAttributes::Disable;