Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp821 PTO.LoopVectorization = CodeGenOpts.VectorizeLoop; in RunOptimizationPipeline()
1224 Conf.PTO.LoopVectorization = CGOpts.VectorizeLoop; in runThinLTOBackend()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.def309 CODEGENOPT(VectorizeLoop , 1, 0) ///< Run loop vectorizer.
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp10042 bool VectorizeLoop = true, InterleaveLoop = true; in processLoop() local
10048 VectorizeLoop = false; in processLoop()
10088 if (!VectorizeLoop && !InterleaveLoop) { in processLoop()
10101 } else if (!VectorizeLoop && InterleaveLoop) { in processLoop()
10108 } else if (VectorizeLoop && !InterleaveLoop) { in processLoop()
10116 } else if (VectorizeLoop && InterleaveLoop) { in processLoop()
10126 if (!VectorizeLoop) { in processLoop()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td6927 MarshallingInfoFlag<CodeGenOpts<"VectorizeLoop">>;