Home
last modified time | relevance | path

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

/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");
607 Op.IsDef = isDef;
/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/Target/Mips/
DMipsSEISelDAGToDAG.h30 void addDSPCtrlRegOperands(bool IsDef, MachineInstr &MI,
DMipsDelaySlotFiller.cpp90 bool IsDef) const;
380 unsigned Reg, bool IsDef) const { in checkRegDefsUses()
381 if (IsDef) { in checkRegDefsUses()
DMipsSEISelDAGToDAG.cpp46 void MipsSEDAGToDAGISel::addDSPCtrlRegOperands(bool IsDef, MachineInstr &MI, in addDSPCtrlRegOperands() argument
50 unsigned Flag = IsDef ? RegState::ImplicitDefine : RegState::Implicit; in addDSPCtrlRegOperands()
/external/llvm/lib/CodeGen/
DLiveInterval.cpp903 bool IsDef = false; in constructMainRangeFromSubranges() local
923 IsDef |= I->valno->def == I->start; in constructMainRangeFromSubranges()
928 IsDef = I->valno->def == I->start; in constructMainRangeFromSubranges()
947 if (ConstructingSegment && IsDef) { in constructMainRangeFromSubranges()
958 if (IsDef) { in constructMainRangeFromSubranges()
DMIRPrinter.cpp121 unsigned I, bool ShouldPrintRegisterTies, bool IsDef = false);
730 unsigned I, bool ShouldPrintRegisterTies, bool IsDef) { in print() argument
736 else if (!IsDef && Op.isDef()) in print()
DMachineInstr.cpp101 if (IsDef == Val) in setIsDef()
109 IsDef = Val; in setIsDef()
113 IsDef = Val; in setIsDef()
194 IsDef = isDef; in ChangeToRegister()
DBranchFolding.cpp1674 bool IsDef = false; in findHoistingInsertPosAndDeps() local
1685 IsDef = true; in findHoistingInsertPosAndDeps()
1689 if (!IsDef) in findHoistingInsertPosAndDeps()
/external/llvm/lib/CodeGen/MIRParser/
DMIParser.cpp123 Optional<unsigned> &TiedDefIdx, bool IsDef = false);
918 bool IsDef) { in parseRegisterOperand() argument
920 unsigned Flags = IsDef ? RegState::Define : 0; in parseRegisterOperand()
/external/llvm/lib/Target/Hexagon/
DHexagonFrameLowering.cpp819 unsigned MaxReg, bool IsDef) { in addCalleeSaveRegistersAsImpOperand() argument
822 MachineOperand ImpUse = MachineOperand::CreateReg(R, IsDef, true); in addCalleeSaveRegistersAsImpOperand()
DHexagonExpandCondsets.cpp279 bool IsDef = !Op.isUndef(); in makeDefined() local
280 if (Op.isImplicit() && IsDef != SetDef) in makeDefined()
/external/llvm/lib/Target/X86/
DX86FrameLowering.cpp2451 bool IsDef = false; in adjustStackWithPops() local
2454 IsDef = true; in adjustStackWithPops()
2459 if (IsDef) in adjustStackWithPops()
/external/clang/tools/libclang/
DCIndex.cpp4659 const char *IsDef = clang_isCursorDefinition(Result)? " (Definition)" : ""; in clang_getCursor()
4675 clang_getCString(USR), IsDef); in clang_getCursor()