Searched refs:maxoff (Results 1 - 11 of 11) sorted by relevance

/external/valgrind/main/VEX/priv/
H A Dguest_ppc_helpers.c692 .. maxoff requires precise memory exceptions. If in doubt return
704 Int maxoff )
713 if (maxoff < r1_min || minoff > r1_max) {
721 if (maxoff < lr_min || minoff > lr_max) {
727 if (maxoff < cia_min || minoff > cia_max) {
737 Int maxoff )
752 if (maxoff < r1_min || minoff > r1_max) {
760 if (maxoff < lr_min || minoff > lr_max) {
766 if (maxoff < r2_min || minoff > r2_max) {
772 if (maxoff < cia_mi
[all...]
H A Dguest_mips_helpers.c283 .. maxoff requires precise memory exceptions. If in doubt return
290 Bool guest_mips32_state_requires_precise_mem_exns(Int minoff, Int maxoff) argument
297 if (maxoff < sp_min || minoff > sp_max) {
305 if (maxoff < pc_min || minoff > pc_max) {
316 if (maxoff < fp_min || minoff > fp_max) {
325 Bool guest_mips64_state_requires_precise_mem_exns ( Int minoff, Int maxoff )
332 if ( maxoff < sp_min || minoff > sp_max ) {
340 if ( maxoff < pc_min || minoff > pc_max ) {
349 if ( maxoff < fp_min || minoff > fp_max ) {
H A Dguest_arm64_helpers.c1298 .. maxoff requires precise memory exceptions. If in doubt return
1305 Int maxoff)
1312 if (maxoff < xsp_min || minoff > xsp_max) {
1320 if (maxoff < pc_min || minoff > pc_max) {
1330 if (maxoff < x29_min || minoff > x29_max) {
1340 if (maxoff < x30_min || minoff > x30_max) {
1304 guest_arm64_state_requires_precise_mem_exns( Int minoff, Int maxoff) argument
H A Dguest_arm_helpers.c1042 .. maxoff requires precise memory exceptions. If in doubt return
1051 Int maxoff)
1058 if (maxoff < sp_min || minoff > sp_max) {
1066 if (maxoff < pc_min || minoff > pc_max) {
1077 if (maxoff < r11_min || minoff > r11_max) {
1088 if (maxoff < r7_min || minoff > r7_max) {
1050 guest_arm_state_requires_precise_mem_exns( Int minoff, Int maxoff) argument
H A Dguest_s390_helpers.c152 .. maxoff requires precise memory exceptions. If in doubt return
155 guest_s390x_state_requires_precise_mem_exns(Int minoff, Int maxoff) argument
166 if (maxoff < sp_min || minoff > sp_max) {
174 if (maxoff < lr_min || minoff > lr_max) {
180 if (maxoff < fp_min || minoff > fp_max) {
186 if (maxoff < ia_min || minoff > ia_max) {
H A Dguest_x86_helpers.c2772 .. maxoff requires precise memory exceptions. If in doubt return
2782 Int maxoff)
2791 if (maxoff < esp_min || minoff > esp_max) {
2799 if (maxoff < ebp_min || minoff > ebp_max) {
2805 if (maxoff < eip_min || minoff > eip_max) {
2781 guest_x86_state_requires_precise_mem_exns( Int minoff, Int maxoff) argument
H A Dir_opt.c544 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; local
579 UInt minoff, maxoff; local
[all...]
H A Dguest_amd64_helpers.c3834 .. maxoff requires precise memory exceptions. If in doubt return
3844 Int maxoff)
3853 if (maxoff < rsp_min || minoff > rsp_max) {
3861 if (maxoff < rbp_min || minoff > rbp_max) {
3867 if (maxoff < rip_min || minoff > rip_max) {
3843 guest_amd64_state_requires_precise_mem_exns( Int minoff, Int maxoff) argument
/external/elfutils/0.153/libcpu/
H A Di386_parse.y883 static int maxoff[3][3];
937 maxoff[i][0] = MAX (maxoff[i][0], runp->operands[i].off1);
938 maxoff[i][1] = MAX (maxoff[i][1], runp->operands[i].off2);
939 maxoff[i][2] = MAX (maxoff[i][2], runp->operands[i].off3);
962 // printf ("max1 = %d, max2 = %d, max3 = %d\n", maxoff[i][0], maxoff[i][1], maxoff[
[all...]
/external/valgrind/main/VEX/
H A Dtest_main.c1125 Int maxoff = minoff + size - 1; local
1127 tl_assert((maxoff & ~0xFFFF) == 0);
1135 if (maxoff < minoffD || maxoffD < minoff)
1137 if (minoff >= minoffD && maxoff <= maxoffD)
/external/valgrind/main/memcheck/
H A Dmc_translate.c1333 Int maxoff = minoff + size - 1; local
1335 tl_assert((maxoff & ~0xFFFF) == 0);
1343 if (maxoff < minoffD || maxoffD < minoff)
1345 if (minoff >= minoffD && maxoff <= maxoffD)

Completed in 176 milliseconds