Home | History | Annotate | Download | only in priv

Lines Matching defs:minoff

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 )
531 *minoff = descr->base;
532 *maxoff = *minoff + descr->nElems*sizeofIRType(descr->elemTy) - 1;
533 vassert((*minoff & ~0xFFFF) == 0);
535 vassert(*minoff <= *maxoff);
543 UInt minoff = offset;
544 UInt maxoff = minoff + sizeofIRType(ty) - 1;
545 vassert((minoff & ~0xFFFF) == 0);
547 return (minoff << 16) | maxoff;
552 UInt minoff, maxoff;
553 getArrayBounds( descr, &minoff, &maxoff );
554 vassert((minoff & ~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