Home | History | Annotate | Download | only in ObjCARC

Lines Matching defs:Seq

433     unsigned char Seq : 8;
440 Seq(S_None) {}
494 DEBUG(dbgs() << "Old: " << Seq << "; New: " << NewSeq << "\n");
495 Seq = NewSeq;
499 Seq);
539 Seq = MergeSeqs(GetSeq(), Other.GetSeq(), TopDown);
543 if (Seq == S_None) {
899 Value *Ptr, Sequence Seq) {
928 std::string SeqStr = SequenceToString(Seq);
942 Value *Ptr, Sequence Seq) {
971 std::string SeqStr = SequenceToString(Seq);
1040 Sequence Seq = I->second.GetSeq(); \
1041 GenerateARCBB ## _type ## Annotation(_name, (_bb), Ptr, Seq); \
1631 const Sequence Seq = I->second.GetSeq();
1634 if (Seq == S_None)
1639 assert((Seq == S_Retain || Seq == S_CanRelease || Seq == S_Use) &&
1673 // *NOTE* We do not use Seq from above here since we are allowing for
1836 Sequence Seq = S.GetSeq();
1840 DEBUG(dbgs() << "CanAlterRefCount: Seq: " << Seq << "; " << *Ptr
1843 switch (Seq) {
1846 ANNOTATE_BOTTOMUP(Inst, Ptr, Seq, S.GetSeq());
1860 switch (Seq) {
1864 DEBUG(dbgs() << "CanUse: Seq: " << Seq << "; " << *Ptr
1875 ANNOTATE_BOTTOMUP(Inst, Ptr, Seq, S_Use);
1876 } else if (Seq == S_Release && IsUser(Class)) {
1877 DEBUG(dbgs() << "PreciseReleaseUse: Seq: " << Seq << "; " << *Ptr
1892 DEBUG(dbgs() << "PreciseStopUse: Seq: " << Seq << "; " << *Ptr
1895 ANNOTATE_BOTTOMUP(Inst, Ptr, Seq, S_Use);
2069 Sequence Seq = S.GetSeq();
2073 DEBUG(dbgs() << "CanAlterRefCount: Seq: " << Seq << "; " << *Ptr
2076 switch (Seq) {
2079 ANNOTATE_TOPDOWN(Inst, Ptr, Seq, S_CanRelease);
2099 switch (Seq) {
2102 DEBUG(dbgs() << "CanUse: Seq: " << Seq << "; " << *Ptr
2105 ANNOTATE_TOPDOWN(Inst, Ptr, Seq, S_Use);