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 68 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
71 /// IsDef - True if this is a def, false if this is a use of the register.
73 bool IsDef : 1;
249 return !IsDef;
252 bool isDef() const {
254 return IsDef;
340 IsDef = !Val;
346 IsDef = Val;
355 assert(isReg() && !IsDef && "Wrong MachineOperand accessor");
361 assert(isReg() && IsDef && "Wrong MachineOperand accessor")
    [all...]
  /external/llvm/lib/CodeGen/
BranchFolding.cpp     [all...]
MachineInstr.cpp 70 if (*Head && (*Head)->isDef())
156 void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp,
177 IsDef = isDef;
197 return getReg() == Other.getReg() && isDef() == Other.isDef() &&
246 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
250 if (isDef()) {
806 if (MO.isDef()) {
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]

Completed in 697 milliseconds