forked from RcppCore/Rcpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinternal.h
149 lines (127 loc) · 5.6 KB
/
internal.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; indent-tabs-mode: nil; -*-
//
// internal.h: Rcpp R/C++ interface class library --
//
// Copyright (C) 2012 - 2015 Dirk Eddelbuettel and Romain Francois
//
// This file is part of Rcpp.
//
// Rcpp is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 2 of the License, or
// (at your option) any later version.
//
// Rcpp is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Rcpp. If not, see <http://www.gnu.org/licenses/>.
#ifndef Rcpp_internal_h
#define Rcpp_internal_h
#include <R_ext/Rdynload.h>
#define CALLFUN_0(name) SEXP name()
#define CALLFUN_1(name) SEXP name(SEXP)
#define CALLFUN_2(name) SEXP name(SEXP,SEXP)
#define CALLFUN_3(name) SEXP name(SEXP,SEXP,SEXP)
#define CALLFUN_4(name) SEXP name(SEXP,SEXP,SEXP,SEXP)
#define CALLFUN_5(name) SEXP name(SEXP,SEXP,SEXP,SEXP,SEXP)
#define EXTFUN(name) SEXP name(SEXP)
// this file contains declarations of functions that are not
// exported via Rcpp.h but are needed to make Rcpp work internally
#define MAX_ARGS 65
#define UNPACK_EXTERNAL_ARGS(__CARGS__,__P__) \
SEXP __CARGS__[MAX_ARGS]; \
int nargs = 0; \
for (; nargs<MAX_ARGS; nargs++) { \
if (Rf_isNull(__P__)) break; \
__CARGS__[nargs] = CAR(__P__); \
__P__ = CDR(__P__); \
}
#define RCPP_FUN_1(__OUT__,__NAME__, ___0) \
__OUT__ RCPP_DECORATE(__NAME__)(___0); \
SEXP __NAME__(SEXP x0) { \
SEXP res = R_NilValue; \
BEGIN_RCPP \
res = ::Rcpp::wrap(RCPP_DECORATE(__NAME__)(::Rcpp::internal::converter(x0))); \
return res; \
END_RCPP \
} \
__OUT__ RCPP_DECORATE(__NAME__)(___0)
#define RCPP_FUN_2(__OUT__,__NAME__, ___0, ___1) \
__OUT__ RCPP_DECORATE(__NAME__)(___0, ___1); \
SEXP __NAME__(SEXP x0, SEXP x1) { \
SEXP res = R_NilValue; \
BEGIN_RCPP \
res = ::Rcpp::wrap(RCPP_DECORATE(__NAME__)(::Rcpp::internal::converter(x0), \
::Rcpp::internal::converter(x1))); \
return res; \
END_RCPP \
} \
__OUT__ RCPP_DECORATE(__NAME__)(___0, ___1)
#define RCPP_FUN_3(__OUT__,__NAME__, ___0, ___1, ___2) \
__OUT__ RCPP_DECORATE(__NAME__)(___0, ___1, ___2); \
SEXP __NAME__(SEXP x0, SEXP x1, SEXP x2) { \
SEXP res = R_NilValue; \
BEGIN_RCPP \
res = ::Rcpp::wrap(RCPP_DECORATE(__NAME__)(::Rcpp::internal::converter(x0), \
::Rcpp::internal::converter(x1), \
::Rcpp::internal::converter(x2))); \
return res; \
END_RCPP \
} \
__OUT__ RCPP_DECORATE(__NAME__)(___0, ___1, ___2)
#define RCPP_FUN_4(__OUT__,__NAME__, ___0, ___1, ___2, ___3) \
__OUT__ RCPP_DECORATE(__NAME__)(___0, ___1, ___2, ___3); \
SEXP __NAME__(SEXP x0, SEXP x1, SEXP x2, SEXP x3) { \
SEXP res = R_NilValue; \
BEGIN_RCPP \
res = ::Rcpp::wrap( RCPP_DECORATE(__NAME__)(::Rcpp::internal::converter(x0), \
::Rcpp::internal::converter(x1), \
::Rcpp::internal::converter(x2), \
::Rcpp::internal::converter(x3))); \
return res; \
END_RCPP \
} \
__OUT__ RCPP_DECORATE(__NAME__)(___0, ___1, ___2, ___3)
SEXP get_Rcpp_protection_stack();
CALLFUN_1(as_character_externalptr);
CALLFUN_1(Class__name);
CALLFUN_1(Class__has_default_constructor);
CALLFUN_1(CppClass__complete);
CALLFUN_1(CppClass__methods);
CALLFUN_1(Module__classes_info);
CALLFUN_1(Module__complete);
CALLFUN_1(Module__functions_arity);
CALLFUN_1(Module__functions_names);
CALLFUN_2(Module__get_class);
CALLFUN_2(Module__has_class);
CALLFUN_2(Module__has_function);
CALLFUN_2(Module__get_function);
CALLFUN_1(Module__name);
CALLFUN_2(CppObject__finalize);
CALLFUN_0(get_rcpp_cache);
CALLFUN_0(init_Rcpp_cache);
CALLFUN_1(rcpp_error_recorder);
CALLFUN_3(CppField__get);
CALLFUN_4(CppField__set);
CALLFUN_0(rcpp_capabilities);
CALLFUN_0(rcpp_can_use_cxx0x);
CALLFUN_0(rcpp_can_use_cxx11);
/* .External functions */
EXTFUN(CppMethod__invoke);
EXTFUN(CppMethod__invoke_void);
EXTFUN(CppMethod__invoke_notvoid);
EXTFUN(InternalFunction_invoke);
EXTFUN(Module__invoke);
EXTFUN(class__newInstance);
EXTFUN(class__dummyInstance);
void init_Rcpp_routines(DllInfo*);
#undef CALLFUN_0
#undef CALLFUN_1
#undef CALLFUN_2
#undef CALLFUN_3
#undef CALLFUN_4
#undef CALLFUN_5
#endif