Home | History | Annotate | Download | only in helgrind

Lines Matching full:toff

1767 static UShort pulldown_to_32 ( /*MOD*/SVal* tree, UWord toff, UShort descr ) {
1769 switch (toff) {
1782 static UShort pulldown_to_16 ( /*MOD*/SVal* tree, UWord toff, UShort descr ) {
1784 switch (toff) {
1809 static UShort pulldown_to_8 ( /*MOD*/SVal* tree, UWord toff, UShort descr ) {
1811 switch (toff) {
1855 static UShort pullup_descr_to_16 ( UShort descr, UWord toff ) {
1857 switch (toff) {
1888 static UShort pullup_descr_to_32 ( UShort descr, UWord toff ) {
1890 switch (toff) {
1917 static Bool valid_value_is_above_me_32 ( UShort descr, UWord toff ) {
1918 switch (toff) {
1926 static Bool valid_value_is_below_me_16 ( UShort descr, UWord toff ) {
1927 switch (toff) {
5250 UWord cloff, tno, toff;
5257 toff = get_tree_offset(a); /* == 0 .. 7 */
5259 if (UNLIKELY( !(descr & (TREE_DESCR_8_0 << toff)) )) {
5261 cl->descrs[tno] = pulldown_to_8(tree, toff, descr);
5274 UWord cloff, tno, toff;
5281 toff = get_tree_offset(a); /* == 0 .. 7 */
5283 if (UNLIKELY( !(descr & (TREE_DESCR_8_0 << toff)) )) {
5285 cl->descrs[tno] = pulldown_to_8(tree, toff, descr);
5300 UWord cloff, tno, toff;
5308 toff = get_tree_offset(a); /* == 0, 2, 4 or 6 */
5310 if (UNLIKELY( !(descr & (TREE_DESCR_16_0 << toff)) )) {
5311 if (valid_value_is_below_me_16(descr, toff)) {
5315 cl->descrs[tno] = pulldown_to_16(tree, toff, descr);
5334 UWord cloff, tno, toff;
5342 toff = get_tree_offset(a); /* == 0, 2, 4 or 6 */
5344 if (UNLIKELY( !(descr & (TREE_DESCR_16_0 << toff)) )) {
5345 if (valid_value_is_below_me_16(descr, toff)) {
5349 cl->descrs[tno] = pulldown_to_16(tree, toff, descr);
5370 UWord cloff, tno, toff;
5378 toff = get_tree_offset(a); /* == 0 or 4 */
5380 if (UNLIKELY( !(descr & (TREE_DESCR_32_0 << toff)) )) {
5381 if (valid_value_is_above_me_32(descr, toff)) {
5383 cl->descrs[tno] = pulldown_to_32(tree, toff, descr);
5404 UWord cloff, tno, toff;
5412 toff = get_tree_offset(a); /* == 0 or 4 */
5414 if (UNLIKELY( !(descr & (TREE_DESCR_32_0 << toff)) )) {
5415 if (valid_value_is_above_me_32(descr, toff)) {
5417 cl->descrs[tno] = pulldown_to_32(tree, toff, descr);
5441 //UWord toff;
5449 //toff = get_tree_offset(a); /* == 0, unused */
5469 //UWord toff;
5477 //toff = get_tree_offset(a); /* == 0, unused */
5499 UWord cloff, tno, toff;
5505 toff = get_tree_offset(a); /* == 0 .. 7 */
5507 if (UNLIKELY( !(descr & (TREE_DESCR_8_0 << toff)) )) {
5509 cl->descrs[tno] = pulldown_to_8(tree, toff, descr);
5522 UWord cloff, tno, toff;
5529 toff = get_tree_offset(a); /* == 0, 2, 4 or 6 */
5531 if (UNLIKELY( !(descr & (TREE_DESCR_16_0 << toff)) )) {
5532 if (valid_value_is_below_me_16(descr, toff)) {
5534 cl->descrs[tno] = pullup_descr_to_16(descr, toff);
5542 cl->descrs[tno] = pulldown_to_16(tree, toff, descr);
5562 UWord cloff, tno, toff;
5569 toff = get_tree_offset(a); /* == 0 or 4 */
5571 if (UNLIKELY( !(descr & (TREE_DESCR_32_0 << toff)) )) {
5572 if (valid_value_is_above_me_32(descr, toff)) {
5577 cl->descrs[tno] = pulldown_to_32(tree, toff, descr);
5582 cl->descrs[tno] = pullup_descr_to_32(descr, toff);
5605 //UWord toff;
5611 //toff = get_tree_offset(a); /* == 0, unused */
5634 UWord cloff, tno, toff;
5640 toff = get_tree_offset(a); /* == 0 .. 7 */
5642 if (UNLIKELY( !(descr & (TREE_DESCR_8_0 << toff)) )) {
5644 cl->descrs[tno] = pulldown_to_8(tree, toff, descr);
6979 UWord toff = get_tree_offset(b); /* == 0 .. 7 */
6982 if (UNLIKELY( !(descr & (TREE_DESCR_8_0 << toff)) )) {
6984 copy.descrs[tno] = pulldown_to_8(tree, toff, descr);