LibreOffice Module bridges (master) 1
Namespaces | Macros | Functions
gcc3_linux_riscv64/uno2cpp.cxx File Reference
#include <sal/config.h>
#include <exception>
#include <malloc.h>
#include <cstring>
#include <typeinfo>
#include <com/sun/star/uno/Exception.hpp>
#include <com/sun/star/uno/RuntimeException.hpp>
#include <com/sun/star/uno/genfunc.hxx>
#include <o3tl/runtimetooustring.hxx>
#include <uno/data.h>
#include "bridge.hxx"
#include "types.hxx"
#include "unointerfaceproxy.hxx"
#include "vtables.hxx"
#include "share.hxx"
#include "abi.hxx"
Include dependency graph for gcc3_linux_riscv64/uno2cpp.cxx:

Go to the source code of this file.

Namespaces

namespace  bridges
 
namespace  bridges::cpp_uno
 
namespace  bridges::cpp_uno::shared
 

Macros

#define INSERT_FLOAT_DOUBLE(pSV, nfr, pFPR, ngr, pGPR, pDS)
 
#define INSERT_INT64(pSV, nr, pGPR, pDS)
 
#define INSERT_INT32(pSV, nr, pGPR, pDS)
 
#define INSERT_INT16(pSV, nr, pGPR, pDS)
 
#define INSERT_UINT16(pSV, nr, pGPR, pDS)
 
#define INSERT_INT8(pSV, nr, pGPR, pDS)
 

Functions

void bridges::cpp_uno::shared::unoInterfaceProxyDispatch (uno_Interface *pUnoI, const typelib_TypeDescription *pMemberDescr, void *pReturn, void *pArgs[], uno_Any **ppException)
 

Macro Definition Documentation

◆ INSERT_FLOAT_DOUBLE

#define INSERT_FLOAT_DOUBLE (   pSV,
  nfr,
  pFPR,
  ngr,
  pGPR,
  pDS 
)
Value:
if (nfr < MAX_FP_REGS) \
pFPR[nfr++] = *reinterpret_cast<double*>(pSV); \
else if (ngr < MAX_FP_REGS) \
pGPR[ngr++] = *reinterpret_cast<sal_Int64*>(pSV); \
else \
*pDS++ = *reinterpret_cast<sal_uInt64*>(pSV);
#define MAX_FP_REGS

Definition at line 47 of file gcc3_linux_riscv64/uno2cpp.cxx.

◆ INSERT_INT16

#define INSERT_INT16 (   pSV,
  nr,
  pGPR,
  pDS 
)
Value:
if (nr < MAX_GP_REGS) \
pGPR[nr++] = *reinterpret_cast<sal_Int16*>(pSV); \
else \
*pDS++ = *reinterpret_cast<sal_Int16*>(pSV);
#define MAX_GP_REGS

Definition at line 67 of file gcc3_linux_riscv64/uno2cpp.cxx.

◆ INSERT_INT32

#define INSERT_INT32 (   pSV,
  nr,
  pGPR,
  pDS 
)
Value:
if (nr < MAX_GP_REGS) \
pGPR[nr++] = *reinterpret_cast<sal_Int32*>(pSV); \
else \
*pDS++ = *reinterpret_cast<sal_Int32*>(pSV);

Definition at line 61 of file gcc3_linux_riscv64/uno2cpp.cxx.

◆ INSERT_INT64

#define INSERT_INT64 (   pSV,
  nr,
  pGPR,
  pDS 
)
Value:
if (nr < MAX_GP_REGS) \
pGPR[nr++] = *reinterpret_cast<sal_Int64*>(pSV); \
else \
*pDS++ = *reinterpret_cast<sal_Int64*>(pSV);

Definition at line 55 of file gcc3_linux_riscv64/uno2cpp.cxx.

◆ INSERT_INT8

#define INSERT_INT8 (   pSV,
  nr,
  pGPR,
  pDS 
)
Value:
if (nr < MAX_GP_REGS) \
pGPR[nr++] = *reinterpret_cast<sal_Int8*>(pSV); \
else \
*pDS++ = *reinterpret_cast<sal_Int8*>(pSV);
signed char sal_Int8

Definition at line 79 of file gcc3_linux_riscv64/uno2cpp.cxx.

◆ INSERT_UINT16

#define INSERT_UINT16 (   pSV,
  nr,
  pGPR,
  pDS 
)
Value:
if (nr < MAX_GP_REGS) \
pGPR[nr++] = *reinterpret_cast<sal_uInt16*>(pSV); \
else \
*pDS++ = *reinterpret_cast<sal_uInt16*>(pSV);

Definition at line 73 of file gcc3_linux_riscv64/uno2cpp.cxx.