Home
last modified time | relevance | path

Searched refs:createVectorInstruction (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/IR/
H A DVectorBuilderTest.cpp69 auto *I = VBuild.createVectorInstruction(Instruction::OPCODE, ValueTy, \ in TEST_F()
119 auto *I = VBuild.createVectorInstruction(Instruction::OPCODE, ValueTy, \ in TEST_F()
165 auto *I = VBuild.createVectorInstruction(Instruction::OPCODE, ValueTy, \ in TEST_F()
200 auto *I = VBuild.createVectorInstruction(Instruction::OPCODE, ValueTy, \ in TEST_F()
231 auto *LoadIntrin = VBuild.createVectorInstruction(Instruction::Load, in TEST_F()
241 auto *StoreIntrin = VBuild.createVectorInstruction(Instruction::Store, VoidTy, in TEST_F()
261 auto *Val = VBuild.createVectorInstruction(Instruction::Br, VoidTy, {}); in TEST_F()
276 ASSERT_DEATH({ VBuild.createVectorInstruction(Instruction::Br, VoidTy, {}); }, in TEST_F()
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DVectorBuilder.h92 Value *createVectorInstruction(unsigned Opcode, Type *ReturnTy,
/llvm-project-15.0.7/llvm/lib/IR/
H A DVectorBuilder.cpp56 Value *VectorBuilder::createVectorInstruction(unsigned Opcode, Type *ReturnTy, in createVectorInstruction() function in llvm::VectorBuilder