Searched refs:IsDef (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DMachineOperand.h78 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
81 /// IsDef - True if this is a def, false if this is a use of the register.
83 bool IsDef : 1;
269 return !IsDef;
274 return IsDef;
365 assert(isReg() && !IsDef && "Wrong MachineOperand accessor");
371 assert(isReg() && IsDef && "Wrong MachineOperand accessor");
386 assert(isReg() && IsDef && "Wrong MachineOperand accessor");
391 assert(isReg() && IsDef && "Wrong MachineOperand accessor");
565 Op.IsDef
[all...]
/external/llvm/lib/CodeGen/
H A DBranchFolding.cpp1513 bool IsDef = false; local
1514 for (unsigned i = 0, e = PI->getNumOperands(); !IsDef && i != e; ++i) {
1525 IsDef = true;
1527 if (!IsDef)
H A DMachineInstr.cpp95 if (IsDef == Val)
103 IsDef = Val;
107 IsDef = Val;
148 IsDef = isDef;
1793 false /*IsDef*/,
1860 true /*IsDef*/,
1882 true /*IsDef*/,
/external/clang/tools/libclang/
H A DCIndex.cpp3772 const char *IsDef = clang_isCursorDefinition(Result)? " (Definition)" : ""; local
3786 clang_getCString(USR), IsDef);

Completed in 103 milliseconds