Home | History | Annotate | Download | only in m_debuginfo

Lines Matching defs:gx

538    text_bias added before use, and 0 if the GX is this is not
550 /* Apply a text bias to a GX. */
551 static void bias_GX ( /*MOD*/GExpr* gx, struct _DebugInfo* di )
554 UChar* p = &gx->payload[0];
585 GExpr* gx;
596 gx = ML_(dinfo_zalloc)( "di.readdwarf3.msGX.1",
598 vg_assert(gx);
600 p = pstart = &gx->payload[0];
611 vg_assert( &gx->payload[bytesReqd]
612 == ((UChar*)gx) + sizeof(GExpr) + bytesReqd );
614 return gx;
626 GExpr* gx;
713 gx = ML_(dinfo_zalloc)( "di.readdwarf3.mgGX.2", sizeof(GExpr) + nbytes );
714 vg_assert(gx);
715 VG_(memcpy)( &gx->payload[0], (UChar*)VG_(indexXA)(xa,0), nbytes );
716 vg_assert( &gx->payload[nbytes]
717 == ((UChar*)gx) + sizeof(GExpr) + nbytes );
723 return gx;