Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/
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()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/tools/llvm-exegesis/X86/
DSnippetGeneratorTest.cpp223 Instruction createInstruction(unsigned Opcode) { in createInstruction() function in exegesis::__anon1a7280190111::FakeBenchmarkRunner
249 InstructionInstance II(Runner.createInstruction(llvm::X86::ADD16ri)); in TEST_F()
265 InstructionInstance Mov(Runner.createInstruction(llvm::X86::MOV64ri)); in TEST_F()
272 InstructionInstance Add(Runner.createInstruction(llvm::X86::ADD64rr)); in TEST_F()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/
DFetchStage.cpp26 std::unique_ptr<Instruction> I = IB.createInstruction(*SR.second); in execute()
DInstrBuilder.h81 std::unique_ptr<Instruction> createInstruction(const llvm::MCInst &MCI);
DInstrBuilder.cpp406 InstrBuilder::createInstruction(const MCInst &MCI) { in createInstruction() function in mca::InstrBuilder