Home | History | Annotate | Download | only in optimizing

Lines Matching defs:stc

900   // stc = <trip-count>;
901 // ptc = min(stc, ptc);
902 // vtc = stc - (stc - ptc) % chunk;
904 HInstruction* stc = induction_range_.GenerateTripCount(node->loop_info, graph_, preheader);
905 HInstruction* vtc = stc;
908 HInstruction* diff = stc;
911 HInstruction* cond = Insert(preheader, new (global_allocator_) HAboveOrEqual(stc, ptc));
912 ptc = Insert(preheader, new (global_allocator_) HSelect(cond, ptc, stc, kNoDexPc));
914 diff = Insert(preheader, new (global_allocator_) HSub(induc_type, stc, ptc));
920 vtc = Insert(preheader, new (global_allocator_) HSub(induc_type, stc, rem));
968 // for ( ; i < stc; i += 1)
976 stc,