Home
last modified time | relevance | path

Searched refs:MaxConfigsPerOpcode (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/llvm/tools/llvm-exegesis/
H A Dllvm-exegesis.cpp126 static cl::opt<unsigned> MaxConfigsPerOpcode( variable
272 Instr, MaxConfigsPerOpcode); in generateSnippets()
275 SnippetOptions.MaxConfigsPerOpcode = MaxConfigsPerOpcode; in generateSnippets()
284 if (Benchmarks.size() >= MaxConfigsPerOpcode) in generateSnippets()
/llvm-project-15.0.7/llvm/tools/llvm-exegesis/lib/X86/
H A DTarget.cpp303 if (Result.size() >= Opts.MaxConfigsPerOpcode) in generateLEATemplatesCommon()
724 unsigned MaxConfigsPerOpcode) const override;
909 const Instruction &Instr, unsigned MaxConfigsPerOpcode) const { in generateInstructionVariants()
938 MaxConfigsPerOpcode); in generateInstructionVariants()
946 NumVariants = std::min(G.numCombinations(), (size_t)MaxConfigsPerOpcode); in generateInstructionVariants()
957 Variants.size() <= MaxConfigsPerOpcode && in generateInstructionVariants()
/llvm-project-15.0.7/llvm/tools/llvm-exegesis/lib/
H A DSnippetGenerator.h56 unsigned MaxConfigsPerOpcode = 1; member
H A DTarget.h140 unsigned MaxConfigsPerOpcode) const { in generateInstructionVariants() argument
H A DSnippetGenerator.cpp89 if (Benchmarks.size() >= Opts.MaxConfigsPerOpcode) { in generateConfigurations()