Home
last modified time | relevance | path

Searched refs:VectorizeLoop (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp687 PMBuilder.LoopVectorize = CodeGenOpts.VectorizeLoop; in CreatePasses()
1269 PTO.LoopVectorization = CodeGenOpts.VectorizeLoop; in EmitAssemblyWithNewPassManager()
1553 Conf.PTO.LoopVectorization = CGOpts.VectorizeLoop; in runThinLTOBackend()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.def278 CODEGENOPT(VectorizeLoop , 1, 0) ///< Run loop vectorizer.
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp10207 bool VectorizeLoop = true, InterleaveLoop = true; in processLoop() local
10213 VectorizeLoop = false; in processLoop()
10253 if (!VectorizeLoop && !InterleaveLoop) { in processLoop()
10266 } else if (!VectorizeLoop && InterleaveLoop) { in processLoop()
10273 } else if (VectorizeLoop && !InterleaveLoop) { in processLoop()
10281 } else if (VectorizeLoop && InterleaveLoop) { in processLoop()
10300 if (!VectorizeLoop) { in processLoop()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td4972 MarshallingInfoFlag<CodeGenOpts<"VectorizeLoop">>;