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

/external/valgrind/main/VEX/priv/
H A Dguest_mips_helpers.c162 .. maxoff requires precise memory exceptions. If in doubt return
167 Bool guest_mips32_state_requires_precise_mem_exns(Int minoff, Int maxoff) argument
174 if (maxoff < sp_min || minoff > sp_max) {
180 if (maxoff < pc_min || minoff > pc_max) {
191 if (maxoff < fp_min || minoff > fp_max) {
H A Dguest_ppc_helpers.c691 .. maxoff requires precise memory exceptions. If in doubt return
701 Int maxoff )
710 if (maxoff < lr_min || minoff > lr_max) {
716 if (maxoff < r1_min || minoff > r1_max) {
722 if (maxoff < cia_min || minoff > cia_max) {
732 Int maxoff )
747 if (maxoff < lr_min || minoff > lr_max) {
753 if (maxoff < r1_min || minoff > r1_max) {
759 if (maxoff < r2_min || minoff > r2_max) {
765 if (maxoff < cia_mi
[all...]
H A Dguest_arm_helpers.c1045 .. maxoff requires precise memory exceptions. If in doubt return
1051 Int maxoff)
1058 if (maxoff < sp_min || minoff > sp_max) {
1064 if (maxoff < pc_min || minoff > pc_max) {
1075 if (maxoff < r11_min || minoff > r11_max) {
1086 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.c150 .. maxoff requires precise memory exceptions. If in doubt return
153 guest_s390x_state_requires_precise_mem_exns(Int minoff, Int maxoff) argument
164 if (maxoff < lr_min || minoff > lr_max) {
170 if (maxoff < sp_min || minoff > sp_max) {
176 if (maxoff < fp_min || minoff > fp_max) {
182 if (maxoff < ia_min || minoff > ia_max) {
H A Dguest_x86_helpers.c2741 .. maxoff requires precise memory exceptions. If in doubt return
2749 Int maxoff)
2758 if (maxoff < ebp_min || minoff > ebp_max) {
2764 if (maxoff < esp_min || minoff > esp_max) {
2770 if (maxoff < eip_min || minoff > eip_max) {
2748 guest_x86_state_requires_precise_mem_exns( Int minoff, Int maxoff) argument
H A Dir_opt.c517 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; local
552 UInt minoff, maxoff; local
[all...]
H A Dguest_amd64_helpers.c3718 .. maxoff requires precise memory exceptions. If in doubt return
3726 Int maxoff)
3735 if (maxoff < rbp_min || minoff > rbp_max) {
3741 if (maxoff < rsp_min || minoff > rsp_max) {
3747 if (maxoff < rip_min || minoff > rip_max) {
3725 guest_amd64_state_requires_precise_mem_exns( Int minoff, Int maxoff) argument
/external/elfutils/libcpu/
H A Di386_parse.y882 static int maxoff[3][3];
936 maxoff[i][0] = MAX (maxoff[i][0], runp->operands[i].off1);
937 maxoff[i][1] = MAX (maxoff[i][1], runp->operands[i].off2);
938 maxoff[i][2] = MAX (maxoff[i][2], runp->operands[i].off3);
961 // printf ("max1 = %d, max2 = %d, max3 = %d\n", maxoff[i][0], maxoff[i][1], maxoff[
[all...]
/external/valgrind/main/VEX/
H A Dtest_main.c1102 Int maxoff = minoff + size - 1; local
1104 tl_assert((maxoff & ~0xFFFF) == 0);
1112 if (maxoff < minoffD || maxoffD < minoff)
1114 if (minoff >= minoffD && maxoff <= maxoffD)
/external/valgrind/main/memcheck/
H A Dmc_translate.c1267 Int maxoff = minoff + size - 1; local
1269 tl_assert((maxoff & ~0xFFFF) == 0);
1277 if (maxoff < minoffD || maxoffD < minoff)
1279 if (minoff >= minoffD && maxoff <= maxoffD)

Completed in 1040 milliseconds