Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationPlanner.h41 VPInstruction *createInstruction(unsigned Opcode, in createInstruction() function
49 VPInstruction *createInstruction(unsigned Opcode, in createInstruction() function
51 return createInstruction(Opcode, ArrayRef<VPValue *>(Operands)); in createInstruction()
120 VPInstruction *NewVPInst = createInstruction(Opcode, Operands);
131 return createInstruction(VPInstruction::Not, {Operand}); in createNot()
135 return createInstruction(Instruction::BinaryOps::And, {LHS, RHS}); in createAnd()
139 return createInstruction(Instruction::BinaryOps::Or, {LHS, RHS}); in createOr()
/freebsd-12.1/contrib/llvm/include/llvm/MCA/
H A DInstrBuilder.h72 Expected<std::unique_ptr<Instruction>> createInstruction(const MCInst &MCI);
/freebsd-12.1/contrib/llvm/tools/llvm-mca/
H A Dllvm-mca.cpp416 IB.createInstruction(MCI); in main()
/freebsd-12.1/contrib/llvm/lib/MCA/
H A DInstrBuilder.cpp598 InstrBuilder::createInstruction(const MCInst &MCI) { in createInstruction() function in llvm::mca::InstrBuilder