Home
last modified time | relevance | path

Searched refs:createInstruction (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationPlanner.h47 VPInstruction *createInstruction(unsigned Opcode,
56 VPInstruction *createInstruction(unsigned Opcode,
59 return createInstruction(Opcode, ArrayRef<VPValue *>(Operands), DL, Name);
131 VPInstruction *NewVPInst = createInstruction(Opcode, Operands, DL, Name);
137 return createInstruction(Opcode, Operands, DL, Name);
141 return createInstruction(VPInstruction::Not, {Operand}, DL, Name);
146 return createInstruction(Instruction::BinaryOps::And, {LHS, RHS}, DL, Name);
151 return createInstruction(Instruction::BinaryOps::Or, {LHS, RHS}, DL, Name);
/llvm-project-15.0.7/llvm/unittests/tools/llvm-mca/X86/
H A DTestIncrementalMCA.cpp41 IB.createInstruction(MCIs[i]); in TEST_F()
129 IB.createInstruction(MCIs[i]); in TEST_F()
/llvm-project-15.0.7/llvm/include/llvm/MCA/
H A DInstrBuilder.h102 Expected<std::unique_ptr<Instruction>> createInstruction(const MCInst &MCI);
/llvm-project-15.0.7/llvm/unittests/tools/llvm-mca/
H A DMCATestBase.cpp72 IB.createInstruction(MCI); in runBaselineMCA()
/llvm-project-15.0.7/llvm/tools/llvm-mca/
H A Dllvm-mca.cpp531 IB.createInstruction(MCI); in main()
/llvm-project-15.0.7/llvm/lib/MCA/
H A DInstrBuilder.cpp641 InstrBuilder::createInstruction(const MCInst &MCI) { in createInstruction() function in llvm::mca::InstrBuilder