Home
last modified time | relevance | path

Searched refs:ConstantUndef (Results 1 – 11 of 11) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceOperand.h425 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
DIceTargetLowering.h323 virtual void emit(const ConstantUndef *C) const = 0;
515 auto *Undef = ConstantUndef::create(Ctx, DestTy); in scalarizeInstruction()
DIceGlobalContext.cpp185 ConstantUndef *getOrAdd(GlobalContext *Ctx, Type Ty) { in getOrAdd()
187 Pool[Ty] = ConstantUndef::create(Ctx, Ty); in getOrAdd()
192 std::vector<ConstantUndef *> Pool;
DIceOperand.cpp630 void ConstantUndef::emit(TargetLowering *Target) const { Target->emit(this); } in emit()
DIceTargetLoweringMIPS32.cpp280 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()
591 auto *Undef = ConstantUndef::create(Ctx, IceType_v4f32); in genTargetHelperCallFor()
1078 if (llvm::isa<ConstantUndef>(From)) { in legalizeUndef()
5912 if (llvm::isa<ConstantUndef>(From)) { in legalize()
DIceTargetLoweringMIPS32.h154 void emit(const ConstantUndef *C) const final { in emit()
DIceCfg.cpp1161 if (!llvm::isa<ConstantUndef>(LastInsert->getSrc(0))) { in findAllInserts()
DIceTargetLoweringARM32.h156 void emit(const ConstantUndef *C) const final;
DIceTargetLoweringX86Base.h211 void emit(const ConstantUndef *C) const final;
DIceTargetLoweringARM32.cpp6419 if (llvm::isa<ConstantUndef>(From)) { in legalize()
6550 if (llvm::isa<ConstantUndef>(From)) { in legalizeUndef()
6656 void TargetARM32::emit(const ConstantUndef *) const { in emit()
DIceTargetLoweringX86BaseImpl.h7970 if (llvm::isa<ConstantUndef>(Const)) {
8078 if (llvm::isa<ConstantUndef>(From)) {
8230 void TargetX86Base<TraitsType>::emit(const ConstantUndef *) const {