Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineOperand.h86 bool IsDef : 1; variable
276 return !IsDef; in isUse()
281 return IsDef; in isDef()
373 assert(isReg() && !IsDef && "Wrong MachineOperand accessor");
379 assert(isReg() && IsDef && "Wrong MachineOperand accessor");
394 assert(isReg() && IsDef && "Wrong MachineOperand accessor");
399 assert(isReg() && !IsDef && "Wrong MachineOperand accessor");
596 Op.IsDef = isDef;
/minix3/external/bsd/llvm/dist/llvm/test/CodeGen/PowerPC/
H A Dsplit-index-tc.ll23 %IsDef.i = getelementptr inbounds %"class.llvm::MachineOperand"* %0, i64 undef, i32 1
24 %1 = bitcast [3 x i8]* %IsDef.i to i24*
/minix3/external/bsd/llvm/dist/llvm/lib/Target/Mips/
H A DMipsSEISelDAGToDAG.h30 void addDSPCtrlRegOperands(bool IsDef, MachineInstr &MI,
H A DMipsDelaySlotFiller.cpp90 bool IsDef) const;
373 unsigned Reg, bool IsDef) const { in checkRegDefsUses()
374 if (IsDef) { in checkRegDefsUses()
H A DMipsSEISelDAGToDAG.cpp46 void MipsSEDAGToDAGISel::addDSPCtrlRegOperands(bool IsDef, MachineInstr &MI, in addDSPCtrlRegOperands() argument
50 unsigned Flag = IsDef ? RegState::ImplicitDefine : RegState::Implicit; in addDSPCtrlRegOperands()
/minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/
H A DLiveInterval.cpp716 bool IsDef = false; in constructMainRangeFromSubranges() local
736 IsDef |= I->valno->def == I->start; in constructMainRangeFromSubranges()
741 IsDef = I->valno->def == I->start; in constructMainRangeFromSubranges()
760 if (ConstructingSegment && IsDef) { in constructMainRangeFromSubranges()
771 if (IsDef) { in constructMainRangeFromSubranges()
H A DBranchFolding.cpp1597 bool IsDef = false; in findHoistingInsertPosAndDeps() local
1598 for (unsigned i = 0, e = PI->getNumOperands(); !IsDef && i != e; ++i) { in findHoistingInsertPosAndDeps()
1609 IsDef = true; in findHoistingInsertPosAndDeps()
1611 if (!IsDef) in findHoistingInsertPosAndDeps()
H A DMachineInstr.cpp94 if (IsDef == Val) in setIsDef()
102 IsDef = Val; in setIsDef()
106 IsDef = Val; in setIsDef()
165 IsDef = isDef; in ChangeToRegister()
/minix3/external/bsd/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp4344 const char *IsDef = clang_isCursorDefinition(Result)? " (Definition)" : ""; in clang_getCursor()
4360 clang_getCString(USR), IsDef); in clang_getCursor()