Searched refs:ConstantUndef (Results 1 – 13 of 13) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceOperand.h | 425 class ConstantUndef : public Constant { 426 ConstantUndef() = delete; 427 ConstantUndef(const ConstantUndef &) = delete; 428 ConstantUndef &operator=(const ConstantUndef &) = delete; 431 static ConstantUndef *create(GlobalContext *Ctx, Type Ty) { in create() 432 return new (Ctx->allocate<ConstantUndef>()) ConstantUndef(Ty); in create() 448 ConstantUndef(Type Ty) : Constant(kConstUndef, Ty) {} in ConstantUndef() function
|
D | IceTargetLowering.h | 323 virtual void emit(const ConstantUndef *C) const = 0; 480 auto *Undef = ConstantUndef::create(Ctx, DestTy); in scalarizeInstruction()
|
D | IceGlobalContext.cpp | 185 ConstantUndef *getOrAdd(GlobalContext *Ctx, Type Ty) { in getOrAdd() 187 Pool[Ty] = ConstantUndef::create(Ctx, Ty); in getOrAdd() 192 std::vector<ConstantUndef *> Pool;
|
D | IceOperand.cpp | 641 void ConstantUndef::emit(TargetLowering *Target) const { Target->emit(this); } in emit()
|
D | IceTargetLoweringMIPS32.cpp | 278 auto *Undef = ConstantUndef::create(Ctx, DestTy); in genTargetHelperCallFor() 307 auto *Undef = ConstantUndef::create(Ctx, IceType_v4f32); in genTargetHelperCallFor() 335 auto *Undef = ConstantUndef::create(Ctx, DestTy); in genTargetHelperCallFor() 428 auto *Undef = ConstantUndef::create(Ctx, DestTy); in genTargetHelperCallFor() 589 auto *Undef = ConstantUndef::create(Ctx, IceType_v4f32); in genTargetHelperCallFor() 1063 if (llvm::isa<ConstantUndef>(From)) { in legalizeUndef() 5865 if (llvm::isa<ConstantUndef>(From)) { in legalize()
|
D | IceTargetLoweringMIPS32.h | 154 void emit(const ConstantUndef *C) const final { in emit()
|
D | IceTargetLoweringX8632.h | 243 void emit(const ConstantUndef *C) const final;
|
D | IceTargetLoweringX8664.h | 242 void emit(const ConstantUndef *C) const final;
|
D | IceCfg.cpp | 1161 if (!llvm::isa<ConstantUndef>(LastInsert->getSrc(0))) { in findAllInserts()
|
D | IceTargetLoweringARM32.h | 155 void emit(const ConstantUndef *C) const final;
|
D | IceTargetLoweringARM32.cpp | 6159 if (llvm::isa<ConstantUndef>(From)) { in legalize() 6272 if (llvm::isa<ConstantUndef>(From)) { in legalizeUndef() 6378 void TargetARM32::emit(const ConstantUndef *) const { in emit()
|
D | IceTargetLoweringX8664.cpp | 6649 if (llvm::isa<ConstantUndef>(Const)) { in legalize() 6743 if (llvm::isa<ConstantUndef>(From)) { in legalizeUndef() 6876 void TargetX8664::emit(const ConstantUndef *) const { in emit()
|
D | IceTargetLoweringX8632.cpp | 7387 if (llvm::isa<ConstantUndef>(Const)) { in legalize() 7471 if (llvm::isa<ConstantUndef>(From)) { in legalizeUndef() 7603 void TargetX8632::emit(const ConstantUndef *) const { in emit()
|