Home
last modified time | relevance | path

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

/external/llvm/include/llvm/CodeGen/
DMachineOperand.h84 bool IsDef : 1; variable
271 return !IsDef; in isUse()
276 return IsDef; in isDef()
368 assert(isReg() && !IsDef && "Wrong MachineOperand accessor");
374 assert(isReg() && IsDef && "Wrong MachineOperand accessor");
389 assert(isReg() && IsDef && "Wrong MachineOperand accessor");
394 assert(isReg() && !IsDef && "Wrong MachineOperand accessor");
568 Op.IsDef = isDef;
/external/llvm/lib/Target/Mips/
DMipsSEISelDAGToDAG.h30 void addDSPCtrlRegOperands(bool IsDef, MachineInstr &MI,
DMipsDelaySlotFiller.cpp102 bool IsDef) const;
369 unsigned Reg, bool IsDef) const { in checkRegDefsUses()
370 if (IsDef) { in checkRegDefsUses()
DMipsSEISelDAGToDAG.cpp44 void MipsSEDAGToDAGISel::addDSPCtrlRegOperands(bool IsDef, MachineInstr &MI, in addDSPCtrlRegOperands() argument
48 unsigned Flag = IsDef ? RegState::ImplicitDefine : RegState::Implicit; in addDSPCtrlRegOperands()
/external/llvm/lib/CodeGen/
DBranchFolding.cpp1517 bool IsDef = false; in findHoistingInsertPosAndDeps() local
1518 for (unsigned i = 0, e = PI->getNumOperands(); !IsDef && i != e; ++i) { in findHoistingInsertPosAndDeps()
1529 IsDef = true; in findHoistingInsertPosAndDeps()
1531 if (!IsDef) in findHoistingInsertPosAndDeps()
DMachineInstr.cpp94 if (IsDef == Val) in setIsDef()
102 IsDef = Val; in setIsDef()
106 IsDef = Val; in setIsDef()
147 IsDef = isDef; in ChangeToRegister()
/external/clang/tools/libclang/
DCIndex.cpp3949 const char *IsDef = clang_isCursorDefinition(Result)? " (Definition)" : ""; in clang_getCursor()
3964 clang_getCString(USR), IsDef); in clang_getCursor()