Lines Matching refs:minoff
499 On seeing 't = Get(minoff,maxoff)', look up (minoff,maxoff) in the
501 there is no match, add a (minoff,maxoff) :-> t binding.
503 On seeing 'Put (minoff,maxoff) = t or c', first remove in the env
504 any binding which fully or partially overlaps with (minoff,maxoff).
505 Then add a new (minoff,maxoff) :-> t or c binding. */
511 UInt* minoff, UInt* maxoff )
513 *minoff = descr->base;
514 *maxoff = *minoff + descr->nElems*sizeofIRType(descr->elemTy) - 1;
515 vassert((*minoff & ~0xFFFF) == 0);
517 vassert(*minoff <= *maxoff);
525 UInt minoff = offset;
526 UInt maxoff = minoff + sizeofIRType(ty) - 1;
527 vassert((minoff & ~0xFFFF) == 0);
529 return (minoff << 16) | maxoff;
534 UInt minoff, maxoff;
535 getArrayBounds( descr, &minoff, &maxoff );
536 vassert((minoff & ~0xFFFF) == 0);
538 return (minoff << 16) | maxoff;
793 On seeing 'Put (minoff,maxoff) = t or c', if (minoff,maxoff) is
795 (minoff,maxoff) to the set.
797 On seeing 'Get (minoff,maxoff)', remove any part of the set
798 overlapping (minoff,maxoff). The same has to happen for any events