Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DMachineOperand.h72 bool IsDef : 1; variable
233 return !IsDef; in isUse()
238 return IsDef; in isDef()
316 IsDef = !Val;
322 IsDef = Val;
331 assert(isReg() && !IsDef && "Wrong MachineOperand accessor");
337 assert(isReg() && IsDef && "Wrong MachineOperand accessor");
347 assert(isReg() && IsDef && "Wrong MachineOperand accessor");
352 assert(isReg() && IsDef && "Wrong MachineOperand accessor");
496 Op.IsDef = isDef;
/external/llvm/include/llvm/CodeGen/
DMachineOperand.h87 bool IsDef : 1; variable
279 return !IsDef; in isUse()
284 return IsDef; in isDef()
376 assert(isReg() && !IsDef && "Wrong MachineOperand accessor");
382 assert(isReg() && IsDef && "Wrong MachineOperand accessor");
397 assert(isReg() && IsDef && "Wrong MachineOperand accessor");
402 assert(isReg() && !IsDef && "Wrong MachineOperand accessor");
616 Op.IsDef = isDef;
/external/llvm/lib/Target/Hexagon/
DRDFDeadCode.cpp125 if (DFG.IsDef(RA)) in collect()
140 for (NodeAddr<DefNode*> DA : IA.Addr->members_if(DFG.IsDef, DFG)) in collect()
215 else if (DFG.IsDef(RA)) in erase()
DHexagonRDFOpt.cpp152 if (DFG.IsDef(RA) && DeadNodes.count(RA.Id)) in run()
244 for (NodeAddr<DefNode*> DA : IA.Addr->members_if(DFG.IsDef, DFG)) { in rewrite()
DHexagonFrameLowering.h142 bool IsDef, bool IsKill) const;
DRDFCopy.cpp182 for (NodeAddr<DefNode*> DA : SA.Addr->members_if(DFG.IsDef, DFG)) { in run()
DRDFGraph.h725 static bool IsDef(const NodeAddr<NodeBase*> BA) { in IsDef() function
DHexagonOptAddrMode.cpp215 for (NodeAddr<DefNode *> DA : SA.Addr->members_if(DFG->IsDef, *DFG)) { in getAllRealUses()
DRDFGraph.cpp1006 NodeList Defs = IA.Addr->members_if(IsDef, *this); in pushDefs()
1315 for (NodeAddr<RefNode*> RA : IA.Addr->members_if(IsDef, *this)) in recordDefsForDF()
DHexagonFrameLowering.cpp2263 const CSIVect &CSI, bool IsDef, bool IsKill) const { in addCalleeSaveRegistersAsImpOperand() argument
2266 MI->addOperand(MachineOperand::CreateReg(R.getReg(), IsDef, true, IsKill)); in addCalleeSaveRegistersAsImpOperand()
/external/llvm/test/CodeGen/PowerPC/
Dsplit-index-tc.ll23 …%IsDef.i = getelementptr inbounds %"class.llvm::MachineOperand", %"class.llvm::MachineOperand"* %0…
24 %1 = bitcast [3 x i8]* %IsDef.i to i24*
/external/llvm/lib/CodeGen/
DMIRPrinter.cpp124 const MachineRegisterInfo *MRI = nullptr, bool IsDef = false);
752 const MachineRegisterInfo *MRI, bool IsDef) { in print() argument
758 else if (!IsDef && Op.isDef()) in print()
779 assert((!IsDef || MRI) && "for IsDef, MRI must be provided"); in print()
780 if (IsDef && MRI->getSize(Op.getReg())) in print()
DMachineInstr.cpp102 if (IsDef == Val) in setIsDef()
110 IsDef = Val; in setIsDef()
114 IsDef = Val; in setIsDef()
195 IsDef = isDef; in ChangeToRegister()
DBranchFolding.cpp1705 bool IsDef = false; in findHoistingInsertPosAndDeps() local
1716 IsDef = true; in findHoistingInsertPosAndDeps()
1720 if (!IsDef) in findHoistingInsertPosAndDeps()
/external/llvm/lib/Target/Mips/
DMipsSEISelDAGToDAG.h31 void addDSPCtrlRegOperands(bool IsDef, MachineInstr &MI,
DMipsDelaySlotFiller.cpp112 bool IsDef) const;
404 unsigned Reg, bool IsDef) const { in checkRegDefsUses()
405 if (IsDef) { in checkRegDefsUses()
DMipsSEISelDAGToDAG.cpp46 void MipsSEDAGToDAGISel::addDSPCtrlRegOperands(bool IsDef, MachineInstr &MI, in addDSPCtrlRegOperands() argument
51 IsDef ? RegState::ImplicitDefine : RegState::Implicit | RegState::Undef; in addDSPCtrlRegOperands()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DBranchFolding.cpp1469 bool IsDef = false; in findHoistingInsertPosAndDeps() local
1470 for (unsigned i = 0, e = PI->getNumOperands(); !IsDef && i != e; ++i) { in findHoistingInsertPosAndDeps()
1478 IsDef = true; in findHoistingInsertPosAndDeps()
1480 if (!IsDef) in findHoistingInsertPosAndDeps()
DMachineInstr.cpp176 IsDef = isDef; in ChangeToRegister()
/external/llvm/lib/CodeGen/MIRParser/
DMIParser.cpp128 Optional<unsigned> &TiedDefIdx, bool IsDef = false);
949 bool IsDef) { in parseRegisterOperand() argument
951 unsigned Flags = IsDef ? RegState::Define : 0; in parseRegisterOperand()
/external/llvm/lib/Target/X86/
DX86FrameLowering.cpp2536 bool IsDef = false; in adjustStackWithPops() local
2540 IsDef = true; in adjustStackWithPops()
2545 if (IsDef) in adjustStackWithPops()
/external/clang/tools/libclang/
DCIndex.cpp5024 const char *IsDef = clang_isCursorDefinition(Result)? " (Definition)" : ""; in clang_getCursor()
5040 clang_getCString(USR), IsDef); in clang_getCursor()