Home | History | Annotate | Download | only in m_debuginfo

Lines Matching defs:aMax

530       (Addr aMin;  Addr aMax;  UShort nbytes;  ..bytes..;  UChar isEnd)
533 valid when aMin <= pc <= aMax (possibly after suitable biasing).
540 biasMe is 1 if the aMin/aMax fields need this DebugInfo's
545 that aMax is 1 less than the corresponding value in a DWARF3
546 location list. Zero length ranges, with aMax == aMin-1, are not
574 /* t-bias aMax */
595 + sizeof(UWord) /*aMin*/ + sizeof(UWord) /*aMax*/
608 p = ML_(write_Addr)(p, ~0); /*aMax*/
735 /* Denotes an address range. Both aMin and aMax are included in the
739 struct { Addr aMin; Addr aMax; }
758 if (rng1->aMax < rng2->aMax) return -1;
759 if (rng1->aMax > rng2->aMax) return 1;
778 static XArray* unitary_range_list ( Addr aMin, Addr aMax )
782 vg_assert(aMin <= aMax);
788 pair.aMax = aMax;
847 pair.aMax = w2 - 1 + base + svma_of_referencing_CU;
848 vg_assert(pair.aMin <= pair.aMax);
1476 VG_(printf)("[%#lx,%#lx] ", range->aMin, range->aMax);
2029 tv->rngOneMax = range->aMax;
4261 oneRange.aMax = varp->rngOneMax;
4277 Addr pcMax = varPcRanges[i].aMax;