Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationPlanner.h47 VPInstruction *createInstruction(unsigned Opcode, in createInstruction() function
55 VPInstruction *createInstruction(unsigned Opcode, in createInstruction() function
57 return createInstruction(Opcode, ArrayRef<VPValue *>(Operands)); in createInstruction()
126 VPInstruction *NewVPInst = createInstruction(Opcode, Operands);
137 return createInstruction(VPInstruction::Not, {Operand}); in createNot()
141 return createInstruction(Instruction::BinaryOps::And, {LHS, RHS}); in createAnd()
145 return createInstruction(Instruction::BinaryOps::Or, {LHS, RHS}); in createOr()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MCA/
H A DInstrBuilder.h72 Expected<std::unique_ptr<Instruction>> createInstruction(const MCInst &MCI);
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mca/
H A Dllvm-mca.cpp540 IB.createInstruction(MCI); in main()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MCA/
H A DInstrBuilder.cpp642 InstrBuilder::createInstruction(const MCInst &MCI) { in createInstruction() function in llvm::mca::InstrBuilder