HomeSort by relevance Sort by last modified time
    Searched refs:IsDef (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 79 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
82 /// IsDef - True if this is a def, false if this is a use of the register.
84 bool IsDef : 1;
271 return !IsDef;
274 bool isDef() const {
276 return 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")
    [all...]
  /external/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 102 bool IsDef) const;
277 if (!MO.isReg() || !MO.isDef() || !(R = MO.getReg()))
360 HasHazard |= checkRegDefsUses(NewDefs, NewUses, MO.getReg(), MO.isDef());
370 unsigned Reg, bool IsDef) const {
371 if (IsDef) {
  /external/llvm/lib/CodeGen/
BranchFolding.cpp     [all...]
MachineInstr.cpp 94 if (IsDef == Val)
102 IsDef = Val;
106 IsDef = Val;
129 void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp,
147 IsDef = isDef;
177 return getReg() == Other.getReg() && isDef() == Other.isDef() &&
217 return hash_combine(MO.getType(), MO.getReg(), MO.getSubReg(), MO.isDef());
269 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() |
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]

Completed in 425 milliseconds