Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MCA/
H A DInstrBuilder.h71 Expected<std::unique_ptr<Instruction>> createInstruction(const MCInst &MCI);
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-mca/
H A Dllvm-mca.cpp504 IB.createInstruction(MCI); in main()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MCA/
H A DInstrBuilder.cpp614 InstrBuilder::createInstruction(const MCInst &MCI) { in createInstruction() function in llvm::mca::InstrBuilder