Home | History | Annotate | Download | only in priv

Lines Matching defs:maxoff

517    On seeing 't = Get(minoff,maxoff)', look up (minoff,maxoff) in the
519 there is no match, add a (minoff,maxoff) :-> t binding.
521 On seeing 'Put (minoff,maxoff) = t or c', first remove in the env
522 any binding which fully or partially overlaps with (minoff,maxoff).
523 Then add a new (minoff,maxoff) :-> t or c binding. */
529 UInt* minoff, UInt* maxoff )
532 *maxoff = *minoff + descr->nElems*sizeofIRType(descr->elemTy) - 1;
534 vassert((*maxoff & ~0xFFFF) == 0);
535 vassert(*minoff <= *maxoff);
544 UInt maxoff = minoff + sizeofIRType(ty) - 1;
546 vassert((maxoff & ~0xFFFF) == 0);
547 return (minoff << 16) | maxoff;
552 UInt minoff, maxoff;
553 getArrayBounds( descr, &minoff, &maxoff );
555 vassert((maxoff & ~0xFFFF) == 0);
556 return (minoff << 16) | maxoff;
820 On seeing 'Put (minoff,maxoff) = t or c', if (minoff,maxoff) is
822 (minoff,maxoff) to the set.
824 On seeing 'Get (minoff,maxoff)', remove any part of the set
825 overlapping (minoff,maxoff). The same has to happen for any events