Home
last modified time | relevance | path

Searched refs:IsDef (Results 1 – 20 of 20) sorted by relevance

/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DMachineOperand.h93 unsigned IsDef : 1; variable
361 return !IsDef; in isUse()
366 return IsDef; in isDef()
376 return IsDeadOrKill & IsDef; in isDead()
381 return IsDeadOrKill & !IsDef; in isKill()
490 assert(isReg() && !IsDef && "Wrong MachineOperand mutator");
496 assert(isReg() && IsDef && "Wrong MachineOperand mutator");
513 assert(isReg() && IsDef && "Wrong MachineOperand mutator");
518 assert(isReg() && !IsDef && "Wrong MachineOperand mutator");
766 Op.IsDef = isDef;
/freebsd-12.1/contrib/llvm/utils/TableGen/
H A DInstrDocsEmitter.cpp156 bool IsDef = i < II->Operands.NumDefs; in EmitInstrDocs() local
170 OS << "* " << (IsDef ? "DEF" : "USE") << " ``" << Op.Rec->getName() in EmitInstrDocs()
181 OS << "* " << (IsDef ? "DEF" : "USE") << " ``" << Op.Rec->getName() in EmitInstrDocs()
H A DGlobalISelEmitter.cpp2356 bool IsDef; member in __anon7e76e5f80111::TempRegRenderer
2359 TempRegRenderer(unsigned InsnID, unsigned TempRegID, bool IsDef = false) in TempRegRenderer() argument
2361 IsDef(IsDef) {} in TempRegRenderer()
2372 if (IsDef) in emitRenderOpcodes()
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DRDFDeadCode.cpp136 if (DFG.IsDef(RA)) in collect()
151 for (NodeAddr<DefNode*> DA : IA.Addr->members_if(DFG.IsDef, DFG)) in collect()
226 else if (DFG.IsDef(RA)) in erase()
H A DHexagonConstExtenders.cpp328 bool IsDef = false; member
502 if (ED.IsDef) in operator <<()
1163 ED.IsDef = true; in recordExtender()
1183 ED.IsDef = true; in recordExtender()
1188 ED.IsDef = true; in recordExtender()
1192 ED.IsDef = true; in recordExtender()
1274 if (!ED.IsDef) in assignInits()
1294 if (ED.IsDef) in assignInits()
1832 assert((!ED.IsDef || ED.Rd.Reg != 0) && "Missing Rd for def"); in replaceInstr()
1857 if (ED.IsDef && Diff != 0) { in replaceInstr()
[all …]
H A DHexagonRDFOpt.cpp168 if (DFG.IsDef(RA) && DeadNodes.count(RA.Id)) in run()
258 for (NodeAddr<DefNode*> DA : IA.Addr->members_if(DFG.IsDef, DFG)) { in rewrite()
H A DHexagonFrameLowering.h170 bool IsDef, bool IsKill) const;
H A DHexagonOptAddrMode.cpp183 if ((DFG->IsDef(AA) && AA.Id != OffsetRegRD) || in canRemoveAddasl()
246 for (NodeAddr<DefNode *> DA : SA.Addr->members_if(DFG->IsDef, *DFG)) { in getAllRealUses()
307 if ((DFG->IsDef(AA) && AA.Id != LRExtRegRD) || in isSafeToExtLR()
H A DRDFCopy.cpp145 for (NodeAddr<DefNode*> DA : SA.Addr->members_if(DFG.IsDef, DFG)) { in run()
H A DRDFGraph.cpp1065 for (NodeAddr<DefNode*> DA : IA.Addr->members_if(IsDef, *this)) { in pushClobbers()
1111 for (NodeAddr<DefNode*> DA : IA.Addr->members_if(IsDef, *this)) { in pushDefs()
1420 for (NodeAddr<RefNode*> RA : IA.Addr->members_if(IsDef, *this)) in recordDefsForDF()
1667 return IsDef(RA) && (RA.Addr->getFlags() & NodeAttrs::Clobbering); in linkBlockRefs()
1670 return IsDef(RA) && !(RA.Addr->getFlags() & NodeAttrs::Clobbering); in linkBlockRefs()
H A DRDFGraph.h798 static bool IsDef(const NodeAddr<NodeBase*> BA) { in IsDef() function
H A DHexagonFrameLowering.cpp2411 const CSIVect &CSI, bool IsDef, bool IsKill) const { in addCalleeSaveRegistersAsImpOperand() argument
2414 MI->addOperand(MachineOperand::CreateReg(R.getReg(), IsDef, true, IsKill)); in addCalleeSaveRegistersAsImpOperand()
H A DRDFLiveness.cpp348 if (DFG.IsDef(R)) { in getNearestAliasedRef()
/freebsd-12.1/contrib/llvm/lib/Target/Mips/
H A DMipsSEISelDAGToDAG.h33 void addDSPCtrlRegOperands(bool IsDef, MachineInstr &MI,
H A DMipsDelaySlotFiller.cpp132 bool IsDef) const;
432 unsigned Reg, bool IsDef) const { in checkRegDefsUses()
433 if (IsDef) { in checkRegDefsUses()
H A DMipsSEISelDAGToDAG.cpp52 void MipsSEDAGToDAGISel::addDSPCtrlRegOperands(bool IsDef, MachineInstr &MI, in addDSPCtrlRegOperands() argument
57 IsDef ? RegState::ImplicitDefine : RegState::Implicit | RegState::Undef; in addDSPCtrlRegOperands()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachineOperand.cpp101 if (IsDef == Val) in setIsDef()
108 IsDef = Val; in setIsDef()
112 IsDef = Val; in setIsDef()
238 IsDef = isDef; in ChangeToRegister()
H A DBranchFolding.cpp1931 bool IsDef = false; in findHoistingInsertPosAndDeps() local
1942 IsDef = true; in findHoistingInsertPosAndDeps()
1946 if (!IsDef) in findHoistingInsertPosAndDeps()
/freebsd-12.1/contrib/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp206 Optional<unsigned> &TiedDefIdx, bool IsDef = false);
1235 bool IsDef) { in parseRegisterOperand() argument
1236 unsigned Flags = IsDef ? RegState::Define : 0; in parseRegisterOperand()
/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp2706 bool IsDef = false; in adjustStackWithPops() local
2710 IsDef = true; in adjustStackWithPops()
2715 if (IsDef) in adjustStackWithPops()