Searched refs:InstShuffleVector (Results 1 – 14 of 14) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceInst.h | 937 class InstShuffleVector : public InstHighLevel { 938 InstShuffleVector() = delete; 939 InstShuffleVector(const InstShuffleVector &) = delete; 940 InstShuffleVector &operator=(const InstShuffleVector &) = delete; 943 static InstShuffleVector *create(Cfg *Func, Variable *Dest, Operand *Src0, in create() 945 return new (Func->allocate<InstShuffleVector>()) in create() 946 InstShuffleVector(Func, Dest, Src0, Src1); in create() 1009 InstShuffleVector(Cfg *Func, Variable *Dest, Operand *Src0, Operand *Src1);
|
D | IceInst.cpp | 569 InstShuffleVector::InstShuffleVector(Cfg *Func, Variable *Dest, Operand *Src0, in InstShuffleVector() function in Ice::InstShuffleVector 984 void InstShuffleVector::dump(const Cfg *Func) const { in dump()
|
D | IceTargetLowering.h | 374 virtual void lowerShuffleVector(const InstShuffleVector *Instr) = 0;
|
D | IceTargetLowering.cpp | 423 lowerShuffleVector(llvm::cast<InstShuffleVector>(Instr)); in lower()
|
D | IceTargetLoweringMIPS32.h | 754 void lowerShuffleVector(const InstShuffleVector *Instr) override;
|
D | IceTargetLoweringX8664.h | 276 void lowerShuffleVector(const InstShuffleVector *Instr) override;
|
D | IceTargetLoweringX8632.h | 280 void lowerShuffleVector(const InstShuffleVector *Instr) override;
|
D | IceCfg.cpp | 1397 InstShuffleVector::create(this, Instr.getDest(), Src0, Src1); in materializeVectorShuffles()
|
D | IceTargetLoweringARM32.h | 289 void lowerShuffleVector(const InstShuffleVector *Instr) override;
|
D | IceTargetLoweringARM32.cpp | 5765 void TargetARM32::lowerShuffleVector(const InstShuffleVector *Instr) { in lowerShuffleVector()
|
D | IceTargetLoweringMIPS32.cpp | 5529 void TargetMIPS32::lowerShuffleVector(const InstShuffleVector *Instr) { in lowerShuffleVector()
|
D | IceTargetLoweringX8664.cpp | 5237 void TargetX8664::lowerShuffleVector(const InstShuffleVector *Instr) { in lowerShuffleVector()
|
D | IceTargetLoweringX8632.cpp | 5827 void TargetX8632::lowerShuffleVector(const InstShuffleVector *Instr) { in lowerShuffleVector()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | SubzeroReactor.cpp | 1919 auto shuffle = Ice::InstShuffleVector::create(::function, result, V1, V2); in createShuffleVector()
|