Searched refs:IsDef (Results 1 – 14 of 14) sorted by relevance
/external/llvm/include/llvm/CodeGen/ |
D | MachineOperand.h | 87 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/ |
D | split-index-tc.ll | 23 …%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/ |
D | MipsSEISelDAGToDAG.h | 30 void addDSPCtrlRegOperands(bool IsDef, MachineInstr &MI,
|
D | MipsDelaySlotFiller.cpp | 90 bool IsDef) const; 380 unsigned Reg, bool IsDef) const { in checkRegDefsUses() 381 if (IsDef) { in checkRegDefsUses()
|
D | MipsSEISelDAGToDAG.cpp | 46 void MipsSEDAGToDAGISel::addDSPCtrlRegOperands(bool IsDef, MachineInstr &MI, in addDSPCtrlRegOperands() argument 50 unsigned Flag = IsDef ? RegState::ImplicitDefine : RegState::Implicit; in addDSPCtrlRegOperands()
|
/external/llvm/lib/CodeGen/ |
D | LiveInterval.cpp | 903 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()
|
D | MIRPrinter.cpp | 121 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()
|
D | MachineInstr.cpp | 101 if (IsDef == Val) in setIsDef() 109 IsDef = Val; in setIsDef() 113 IsDef = Val; in setIsDef() 194 IsDef = isDef; in ChangeToRegister()
|
D | BranchFolding.cpp | 1674 bool IsDef = false; in findHoistingInsertPosAndDeps() local 1685 IsDef = true; in findHoistingInsertPosAndDeps() 1689 if (!IsDef) in findHoistingInsertPosAndDeps()
|
/external/llvm/lib/CodeGen/MIRParser/ |
D | MIParser.cpp | 123 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/ |
D | HexagonFrameLowering.cpp | 819 unsigned MaxReg, bool IsDef) { in addCalleeSaveRegistersAsImpOperand() argument 822 MachineOperand ImpUse = MachineOperand::CreateReg(R, IsDef, true); in addCalleeSaveRegistersAsImpOperand()
|
D | HexagonExpandCondsets.cpp | 279 bool IsDef = !Op.isUndef(); in makeDefined() local 280 if (Op.isImplicit() && IsDef != SetDef) in makeDefined()
|
/external/llvm/lib/Target/X86/ |
D | X86FrameLowering.cpp | 2451 bool IsDef = false; in adjustStackWithPops() local 2454 IsDef = true; in adjustStackWithPops() 2459 if (IsDef) in adjustStackWithPops()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 4659 const char *IsDef = clang_isCursorDefinition(Result)? " (Definition)" : ""; in clang_getCursor() 4675 clang_getCString(USR), IsDef); in clang_getCursor()
|