Searched refs:InstFakeKill (Results 1 – 7 of 7) sorted by relevance
/external/swiftshader/third_party/subzero/docs/ |
D | LOWERING.rst | 142 ``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
|
/external/swiftshader/third_party/subzero/src/ |
D | IceInst.h | 959 class InstFakeKill : public InstHighLevel { 960 InstFakeKill() = delete; 961 InstFakeKill(const InstFakeKill &) = delete; 962 InstFakeKill &operator=(const InstFakeKill &) = delete; 965 static InstFakeKill *create(Cfg *Func, const Inst *Linked) { in create() 966 return new (Func->allocate<InstFakeKill>()) InstFakeKill(Func, Linked); in create() 978 InstFakeKill(Cfg *Func, const Inst *Linked);
|
D | IceInst.cpp | 575 InstFakeKill::InstFakeKill(Cfg *Func, const Inst *Linked) in InstFakeKill() function in Ice::InstFakeKill 1034 void InstFakeKill::emit(const Cfg *Func) const { (void)Func; } in emit() 1036 void InstFakeKill::dump(const Cfg *Func) const { in dump()
|
D | IceRegAlloc.cpp | 149 if (auto *Kill = llvm::dyn_cast<InstFakeKill>(&I)) { in initForGlobal()
|
D | IceTargetLoweringMIPS32.cpp | 3573 Context.insert(InstFakeKill::create(Func, NewCall)); in lowerCall()
|
D | IceTargetLoweringARM32.cpp | 3847 Context.insert<InstFakeKill>(NewCall); in lowerCall()
|
D | IceTargetLoweringX86BaseImpl.h | 2829 Context.insert<InstFakeKill>(NewCall);
|