Searched refs:ConstantUndef (Results 1 – 11 of 11) sorted by relevance
/external/swiftshader/third_party/subzero/src/ |
D | IceOperand.h | 448 class ConstantUndef : public Constant { 449 ConstantUndef() = delete; 450 ConstantUndef(const ConstantUndef &) = delete; 451 ConstantUndef &operator=(const ConstantUndef &) = delete; 454 static ConstantUndef *create(GlobalContext *Ctx, Type Ty) { in create() 455 return new (Ctx->allocate<ConstantUndef>()) ConstantUndef(Ty); in create() 471 ConstantUndef(Type Ty) : Constant(kConstUndef, Ty) {} in ConstantUndef() function
|
D | IceTargetLowering.h | 330 virtual void emit(const ConstantUndef *C) const = 0; 524 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 | 630 void ConstantUndef::emit(TargetLowering *Target) const { Target->emit(this); } in emit()
|
D | IceTargetLoweringMIPS32.cpp | 280 auto *Undef = ConstantUndef::create(Ctx, DestTy); in genTargetHelperCallFor() 309 auto *Undef = ConstantUndef::create(Ctx, IceType_v4f32); in genTargetHelperCallFor() 337 auto *Undef = ConstantUndef::create(Ctx, DestTy); in genTargetHelperCallFor() 430 auto *Undef = ConstantUndef::create(Ctx, DestTy); in genTargetHelperCallFor() 597 auto *Undef = ConstantUndef::create(Ctx, IceType_v4f32); in genTargetHelperCallFor() 1095 if (llvm::isa<ConstantUndef>(From)) { in legalizeUndef() 5948 if (llvm::isa<ConstantUndef>(From)) { in legalize()
|
D | IceTargetLoweringMIPS32.h | 154 void emit(const ConstantUndef *C) const final { in emit()
|
D | IceTargetLoweringARM32.h | 156 void emit(const ConstantUndef *C) const final;
|
D | IceCfg.cpp | 1258 if (!llvm::isa<ConstantUndef>(LastInsert->getSrc(0))) { in findAllInserts()
|
D | IceTargetLoweringX86Base.h | 211 void emit(const ConstantUndef *C) const final;
|
D | IceTargetLoweringARM32.cpp | 6430 if (llvm::isa<ConstantUndef>(From)) { in legalize() 6561 if (llvm::isa<ConstantUndef>(From)) { in legalizeUndef() 6676 void TargetARM32::emit(const ConstantUndef *) const { in emit()
|
D | IceTargetLoweringX86BaseImpl.h | 7915 if (llvm::isa<ConstantUndef>(Const)) { 8032 if (llvm::isa<ConstantUndef>(From)) { 8199 void TargetX86Base<TraitsType>::emit(const ConstantUndef *) const {
|