Home
last modified time | relevance | path

Searched refs:InstFakeKill (Results 1 – 8 of 8) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/docs/
DLOWERING.rst142 ``InstFakeKill`` pseudo-instruction to compactly mark such register kills. For
144 in that instruction. The ``InstFakeKill`` instruction is inserted after the
148 NewInst = InstFakeKill::create(Func, CallInst);
150 The last argument to the ``InstFakeKill`` constructor links it to the previous
152 the ``InstFakeKill`` instruction is eliminated as well. The linked ``call``
173 NewInst = InstFakeKill::create(Func, CallInst);
201 NewInst = InstFakeKill::create(Func, CallInst);
214 InstFakeKill // eax, ecx, edx
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceInst.h908 class InstFakeKill : public InstHighLevel {
909 InstFakeKill() = delete;
910 InstFakeKill(const InstFakeKill &) = delete;
911 InstFakeKill &operator=(const InstFakeKill &) = delete;
914 static InstFakeKill *create(Cfg *Func, const Inst *Linked) { in create()
915 return new (Func->allocate<InstFakeKill>()) InstFakeKill(Func, Linked); in create()
927 InstFakeKill(Cfg *Func, const Inst *Linked);
DIceInst.cpp566 InstFakeKill::InstFakeKill(Cfg *Func, const Inst *Linked) in InstFakeKill() function in Ice::InstFakeKill
973 void InstFakeKill::emit(const Cfg *Func) const { (void)Func; } in emit()
975 void InstFakeKill::dump(const Cfg *Func) const { in dump()
DIceRegAlloc.cpp149 if (auto *Kill = llvm::dyn_cast<InstFakeKill>(&I)) { in initForGlobal()
DIceTargetLoweringARM32.cpp3662 Context.insert<InstFakeKill>(NewCall); in lowerCall()
DIceTargetLoweringMIPS32.cpp3539 Context.insert(InstFakeKill::create(Func, NewCall)); in lowerCall()
DIceTargetLoweringX8664.cpp2352 Context.insert<InstFakeKill>(NewCall); in lowerCall()
DIceTargetLoweringX8632.cpp2549 Context.insert<InstFakeKill>(NewCall); in lowerCall()