Home | History | Annotate | Download | only in ia64

Lines Matching refs:avalue

276 ffi_call(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue)
298 stack->gp_regs[gpcount++] = *(SINT8 *)avalue[i];
301 stack->gp_regs[gpcount++] = *(UINT8 *)avalue[i];
304 stack->gp_regs[gpcount++] = *(SINT16 *)avalue[i];
307 stack->gp_regs[gpcount++] = *(UINT16 *)avalue[i];
310 stack->gp_regs[gpcount++] = *(SINT32 *)avalue[i];
313 stack->gp_regs[gpcount++] = *(UINT32 *)avalue[i];
317 stack->gp_regs[gpcount++] = *(UINT64 *)avalue[i];
321 stack->gp_regs[gpcount++] = (UINT64)(PTR64) *(void **)avalue[i];
326 stf_spill (&stack->fp_regs[fpcount++], *(float *)avalue[i]);
327 stack->gp_regs[gpcount++] = *(UINT32 *)avalue[i];
332 stf_spill (&stack->fp_regs[fpcount++], *(double *)avalue[i]);
333 stack->gp_regs[gpcount++] = *(UINT64 *)avalue[i];
340 stf_spill (&stack->fp_regs[fpcount++], *(__float80 *)avalue[i]);
341 memcpy (&stack->gp_regs[gpcount], avalue[i], 16);
366 avalue[i] + offset);
373 memcpy (&stack->gp_regs[gpcount], avalue[i], size);
449 void **avalue;
455 avalue = alloca (avn * sizeof (void *));
469 avalue[i] = endian_adjust(&stack->gp_regs[gpcount++], 1);
473 avalue[i] = endian_adjust(&stack->gp_regs[gpcount++], 2);
477 avalue[i] = endian_adjust(&stack->gp_regs[gpcount++], 4);
481 avalue[i] = &stack->gp_regs[gpcount++];
484 avalue[i] = endian_adjust(&stack->gp_regs[gpcount++], sizeof(void*));
492 avalue[i] = addr;
497 avalue[i] = endian_adjust(&stack->gp_regs[gpcount], 4);
506 avalue[i] = addr;
511 avalue[i] = &stack->gp_regs[gpcount];
522 avalue[i] = addr;
527 avalue[i] = &stack->gp_regs[gpcount];
548 avalue[i] = addr;
566 avalue[i] = &stack->gp_regs[gpcount];
577 closure->fun (cif, rvalue, avalue, closure->user_data);