Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:IsIndirect

114   bool IsIndirect;        ///< true if this is a register-indirect+offset value.
144 : variable(var), offset(o), IsIndirect(i), dl(L), leader(this),
161 return Var == variable && Offset == offset && indirect == IsIndirect;
310 bool IsIndirect, DebugLoc DL);
425 bool IsIndirect, DebugLoc DL) {
431 if (UV->match(Var, Offset, IsIndirect))
436 make_unique<UserValue>(Var, Offset, IsIndirect, DL, allocator));
464 bool IsIndirect = MI->isIndirectDebugValue();
465 unsigned Offset = IsIndirect ? MI->getOperand(1).getImm() : 0;
468 UserValue *UV = getUserValue(Var, Offset, IsIndirect, MI->getDebugLoc());
939 IsIndirect, Loc.getReg(), offset, variable);