view dyncallback/dyncall_args_ppc64.c @ 533:71c884e610f0

- integration of patches from Raphael Luba, Thekla, Inc.: * integration of aggregate-by-value (struct, union) support patch for x64 (win and sysv) * windows/x64 asm additions to specify how stack unwinds (help for debuggers, exception handling, etc.) * see Changelog for details - new calling convention modes for thiscalls (platform agnostic, was specific before) * new signature character for platform agnostic thiscalls ('*' / DC_SIGCHAR_CC_THISCALL) - dcCallF(), dcVCallF(), dcArgF() and dcVArgF(): * added support for aggregates-by-value (wasn't part of patch) * change that those functions don't implicitly call dcReset() anymore, which was unflexible (breaking change) - added macros to feature test implementation for aggregate-by-value and syscall support - changed libdyncall_s.lib and libdyncallback_s.lib order in callback test makefiles, as some toolchains are picky about order - doc: * man page updates to describe aggregate interface * manual overview changes to highlight platforms with aggregate-by-value support - test/plain: replaced tests w/ old/stale sctruct interface with new aggregate one
author Tassilo Philipp
date Thu, 21 Apr 2022 13:35:47 +0200
parents 54930a037e8a
children 111236b31c75
line wrap: on
line source

/*

 Package: dyncall
 Library: dyncallback
 File: dyncallback/dyncall_args_ppc64.c
 Description: Callback's Arguments VM - Implementation for ppc64
 License:

   Copyright (c) 2014-2015 Masanori Mitsugi <mitsugi@linux.vnet.ibm.com>,
                      2022 Tassilo Philipp <tphilipp@potion-studios.com>

   Permission to use, copy, modify, and distribute this software for any
   purpose with or without fee is hereby granted, provided that the above
   copyright notice and this permission notice appear in all copies.

   THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
   WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
   MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
   ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
   WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
   ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
   OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

*/

#include "dyncall_args_ppc64.h"

DCint       dcbArgInt      (DCArgs* p) { return (DCint)       dcbArgLongLong(p); }
DCuint      dcbArgUInt     (DCArgs* p) { return (DCuint)      dcbArgLongLong(p); }
DCulonglong dcbArgULongLong(DCArgs* p) { return (DCulonglong) dcbArgLongLong(p); }

DClonglong  dcbArgLongLong(DCArgs* p)
{
  DClonglong value;
  if (p->ireg_count < 8) {
    value = p->ireg_data[p->ireg_count++];
  } else {
    value = *( (long long*) p->stackptr );
  }
  p->stackptr += sizeof(long long);
  return value;
}

DClong      dcbArgLong     (DCArgs* p) { return (DClong)  dcbArgLongLong(p); }
DCulong     dcbArgULong    (DCArgs* p) { return (DCulong) dcbArgLongLong(p); }
DCchar      dcbArgChar     (DCArgs* p) { return (DCchar)  dcbArgLongLong(p); }
DCuchar     dcbArgUChar    (DCArgs* p) { return (DCuchar) dcbArgLongLong(p); }
DCshort     dcbArgShort    (DCArgs* p) { return (DCshort) dcbArgLongLong(p); }
DCushort    dcbArgUShort   (DCArgs* p) { return (DCushort)dcbArgLongLong(p); }
DCbool      dcbArgBool     (DCArgs* p) { return (DCbool)  dcbArgLongLong(p); }

DCpointer   dcbArgPointer  (DCArgs* p) { return (DCpointer)dcbArgLongLong(p); }

DCdouble    dcbArgDouble   (DCArgs* p)
{
  DCdouble result;

  if (p->freg_count < 13) {
    result = p->freg_data[p->freg_count++];
    if (p->ireg_count < 8) {
      p->ireg_count++;
    }
  } else {
    result = * ( (double*) p->stackptr );
  }

  p->stackptr += sizeof(double);
  return result;
}

DCfloat    dcbArgFloat   (DCArgs* p)
{
  DCfloat result;

#if defined(DC__Endian_BIG)
  struct sf { DCfloat f_pad; DCfloat f; } sf;
#else /* Endian_LITTLE */
  struct sf { DCfloat f; DCfloat f_pad; } sf;
#endif

  if (p->freg_count < 13) {
    result = (float)p->freg_data[p->freg_count++];
    if (p->ireg_count < 8) {
      p->ireg_count++;
    }
  } else {
    sf = * ( (struct sf*) p->stackptr );
    result = sf.f;
  }

  p->stackptr += sizeof(double);
  return result;
}

void        dcbArgAggr     (DCArgs* p, DCpointer target)                   { /* @@@AGGR not impl */ }
void        dcbReturnAggr  (DCArgs *args, DCValue *result, DCpointer ret)  { /* @@@AGGR not impl */ }