Home | History | Annotate | Download | only in priv

Lines Matching refs:maxoff

544    On seeing 't = Get(minoff,maxoff)', look up (minoff,maxoff) in the
546 there is no match, add a (minoff,maxoff) :-> t binding.
548 On seeing 'Put (minoff,maxoff) = t or c', first remove in the env
549 any binding which fully or partially overlaps with (minoff,maxoff).
550 Then add a new (minoff,maxoff) :-> t or c binding. */
556 UInt* minoff, UInt* maxoff )
559 *maxoff = *minoff + descr->nElems*sizeofIRType(descr->elemTy) - 1;
561 vassert((*maxoff & ~0xFFFF) == 0);
562 vassert(*minoff <= *maxoff);
571 UInt maxoff = minoff + sizeofIRType(ty) - 1;
573 vassert((maxoff & ~0xFFFF) == 0);
574 return (minoff << 16) | maxoff;
579 UInt minoff, maxoff;
580 getArrayBounds( descr, &minoff, &maxoff );
582 vassert((maxoff & ~0xFFFF) == 0);
583 return (minoff << 16) | maxoff;
868 On seeing 'Put (minoff,maxoff) = t or c', if (minoff,maxoff) is
870 (minoff,maxoff) to the set.
872 On seeing 'Get (minoff,maxoff)', remove any part of the set
873 overlapping (minoff,maxoff). The same has to happen for any events