Lines Matching refs:EV
367 bool operator<(const ExtValue &EV) const;
368 bool operator==(const ExtValue &EV) const { in operator ==()
369 return ExtRoot(*this) == ExtRoot(EV) && Offset == EV.Offset; in operator ==()
371 bool operator!=(const ExtValue &EV) const { in operator !=()
372 return !operator==(EV); in operator !=()
428 friend raw_ostream &operator<< (raw_ostream &OS, const ExtValue &EV);
544 raw_ostream &operator<< (raw_ostream &OS, const HCE::ExtValue &EV) { in operator <<() argument
545 OS << HCE::ExtRoot(EV) << " off:" << EV.Offset; in operator <<()
766 bool HCE::ExtValue::operator< (const HCE::ExtValue &EV) const { in operator <()
768 if (!(ER == ExtRoot(EV))) in operator <()
769 return ER < EV; in operator <()
770 return Offset < EV.Offset; in operator <()
1282 ExtValue EV(ED); in assignInits() local
1283 LLVM_DEBUG(dbgs() << " =" << I << ". " << EV << " " << ED << '\n'); in assignInits()
1285 Ranges[I-Begin] = getOffsetRange(ED.Rd).shift(EV.Offset); in assignInits()
1302 ExtValue EV(ED); in assignInits() local
1303 LLVM_DEBUG(dbgs() << " " << I << ". " << EV << " " << ED << '\n'); in assignInits()
1305 Ranges[I-Begin].intersect(Dev.shift(EV.Offset)); in assignInits()
1423 const ExtValue &EV = P.first.first; in assignInits() local
1424 AssignmentMap::iterator F = IMap.find({EV, ExtExpr()}); in assignInits()
1467 auto SameValue = [&EV,this,IsStack](unsigned I) { in assignInits()
1470 ExtValue(ED).Offset == EV.Offset; in assignInits()
1537 const ExtValue &EV = ExtI.first; in insertInitializer() local
1538 MachineOperand ExtOp(EV); in insertInitializer()
1773 const ExtValue &EV = ExtI.first; (void)EV; in replaceInstrExpr() local
1784 assert(Ex.Rs == RegOp && EV == ImmOp && Ex.Neg != IsAddi && in replaceInstrExpr()
1807 assert(EV == V && Rs == Ex.Rs && IsSub == Ex.Neg && "Initializer mismatch"); in replaceInstrExpr()
1860 ExtValue EV(ED); in replaceInstr() local
1861 int32_t Diff = EV.Offset - DefV.Offset; in replaceInstr()