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

  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 67 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
70 /// IsDef - True if this is a def, false if this is a use of the register.
72 bool IsDef : 1;
218 return !IsDef;
221 bool isDef() const {
223 return IsDef;
292 IsDef = !Val;
298 IsDef = Val;
307 assert(isReg() && !IsDef && "Wrong MachineOperand accessor");
313 assert(isReg() && IsDef && "Wrong MachineOperand accessor")
    [all...]
  /external/llvm/lib/CodeGen/
BranchFolding.cpp     [all...]
MachineInstr.cpp 69 if (*Head && (*Head)->isDef())
155 void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp,
176 IsDef = isDef;
196 return getReg() == Other.getReg() && isDef() == Other.isDef() &&
242 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
246 if (isDef()) {
784 if (MO.isDef()) {
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]

Completed in 722 milliseconds