Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

# Automatically generated by /home/embray/src/sagemath/sage/src/sage_setup/autogen/interpreters/generator.py. Do not edit! 

cdef public bint rr_py_call_helper(object domain, object fn, 

int n_args, 

mpfr_t* args, mpfr_t retval) except 0: 

py_args = [] 

cdef int i 

cdef RealNumber rn 

for i from 0 <= i < n_args: 

rn = domain() 

mpfr_set(rn.value, args[i], MPFR_RNDN) 

py_args.append(rn) 

cdef RealNumber result = domain(fn(*py_args)) 

mpfr_set(retval, result.value, MPFR_RNDN) 

return 1 

  

  

  

from cpython.ref cimport PyObject 

cdef extern from "Python.h": 

void Py_DECREF(PyObject *o) 

void Py_INCREF(PyObject *o) 

void Py_CLEAR(PyObject *o) 

  

object PyList_New(Py_ssize_t len) 

ctypedef struct PyListObject: 

PyObject **ob_item 

  

ctypedef struct PyTupleObject: 

PyObject **ob_item 

  

from cysignals.memory cimport check_allocarray, sig_free 

  

from sage.ext.fast_callable cimport Wrapper 

  

cdef extern from "sage/ext/interpreters/interp_rr.c": 

bint interp_rr(mpfr_t* args, 

mpfr_t retval, 

mpfr_t* constants, 

PyObject** py_constants, 

mpfr_t* stack, 

int* code, 

PyObject* domain) except? 0 

  

cdef class Wrapper_rr(Wrapper): 

# attributes are declared in corresponding .pxd file 

  

def __init__(self, args): 

Wrapper.__init__(self, args, metadata) 

cdef int i 

cdef int count 

cdef RealNumber rn 

self.domain = args['domain'] 

count = args['args'] 

self._n_args = count 

self._args = <mpfr_t*>check_allocarray(self._n_args, sizeof(mpfr_t)) 

for i in range(count): 

mpfr_init2(self._args[i], self.domain.prec()) 

val = args['constants'] 

self._n_constants = len(val) 

self._constants = <mpfr_t*>check_allocarray(self._n_constants, sizeof(mpfr_t)) 

for i in range(len(val)): 

mpfr_init2(self._constants[i], self.domain.prec()) 

for i in range(len(val)): 

rn = self.domain(val[i]) 

mpfr_set(self._constants[i], rn.value, MPFR_RNDN) 

val = args['py_constants'] 

self._n_py_constants = len(val) 

self._list_py_constants = PyList_New(self._n_py_constants) 

self._py_constants = (<PyListObject *>self._list_py_constants).ob_item 

for i in range(len(val)): 

self._py_constants[i] = <PyObject *>val[i]; Py_INCREF(self._py_constants[i]) 

count = args['stack'] 

self._n_stack = count 

self._stack = <mpfr_t*>check_allocarray(self._n_stack, sizeof(mpfr_t)) 

for i in range(count): 

mpfr_init2(self._stack[i], self.domain.prec()) 

val = args['code'] 

self._n_code = len(val) 

self._code = <int*>check_allocarray(self._n_code, sizeof(int)) 

for i in range(len(val)): 

self._code[i] = val[i] 

self._domain = args['domain'] 

  

def __dealloc__(self): 

cdef int i 

if self._args: 

for i in range(self._n_args): 

mpfr_clear(self._args[i]) 

sig_free(self._args) 

if self._constants: 

for i in range(self._n_constants): 

mpfr_clear(self._constants[i]) 

sig_free(self._constants) 

if self._stack: 

for i in range(self._n_stack): 

mpfr_clear(self._stack[i]) 

sig_free(self._stack) 

if self._code: 

sig_free(self._code) 

  

def __call__(self, *args): 

if self._n_args != len(args): raise ValueError 

cdef RealNumber rn 

cdef mpfr_t* c_args = self._args 

cdef int i 

for i from 0 <= i < len(args): 

rn = self.domain(args[i]) 

mpfr_set(self._args[i], rn.value, MPFR_RNDN) 

cdef RealNumber retval = (self.domain)() 

interp_rr(c_args 

, retval.value 

, self._constants 

, self._py_constants 

, self._stack 

, self._code 

, <PyObject*>self._domain 

) 

return retval 

  

cdef bint call_c(self, 

mpfr_t* args, 

mpfr_t result) except 0: 

interp_rr(args 

, result 

, self._constants 

, self._py_constants 

, self._stack 

, self._code 

, <PyObject*>self._domain 

) 

  

return 1 

  

from sage.ext.fast_callable import CompilerInstrSpec, InterpreterMetadata 

metadata = InterpreterMetadata(by_opname={ 

'load_arg': 

(CompilerInstrSpec(0, 1, ['args']), 0), 

'load_const': 

(CompilerInstrSpec(0, 1, ['constants']), 1), 

'return': 

(CompilerInstrSpec(1, 0, []), 2), 

'py_call': 

(CompilerInstrSpec(0, 1, ['py_constants', 'n_inputs']), 3), 

'add': 

(CompilerInstrSpec(2, 1, []), 4), 

'sub': 

(CompilerInstrSpec(2, 1, []), 5), 

'mul': 

(CompilerInstrSpec(2, 1, []), 6), 

'div': 

(CompilerInstrSpec(2, 1, []), 7), 

'pow': 

(CompilerInstrSpec(2, 1, []), 8), 

'ipow': 

(CompilerInstrSpec(1, 1, ['code']), 9), 

'neg': 

(CompilerInstrSpec(1, 1, []), 10), 

'abs': 

(CompilerInstrSpec(1, 1, []), 11), 

'log': 

(CompilerInstrSpec(1, 1, []), 12), 

'log2': 

(CompilerInstrSpec(1, 1, []), 13), 

'log10': 

(CompilerInstrSpec(1, 1, []), 14), 

'exp': 

(CompilerInstrSpec(1, 1, []), 15), 

'exp2': 

(CompilerInstrSpec(1, 1, []), 16), 

'exp10': 

(CompilerInstrSpec(1, 1, []), 17), 

'cos': 

(CompilerInstrSpec(1, 1, []), 18), 

'sin': 

(CompilerInstrSpec(1, 1, []), 19), 

'tan': 

(CompilerInstrSpec(1, 1, []), 20), 

'sec': 

(CompilerInstrSpec(1, 1, []), 21), 

'csc': 

(CompilerInstrSpec(1, 1, []), 22), 

'cot': 

(CompilerInstrSpec(1, 1, []), 23), 

'acos': 

(CompilerInstrSpec(1, 1, []), 24), 

'asin': 

(CompilerInstrSpec(1, 1, []), 25), 

'atan': 

(CompilerInstrSpec(1, 1, []), 26), 

'cosh': 

(CompilerInstrSpec(1, 1, []), 27), 

'sinh': 

(CompilerInstrSpec(1, 1, []), 28), 

'tanh': 

(CompilerInstrSpec(1, 1, []), 29), 

'sech': 

(CompilerInstrSpec(1, 1, []), 30), 

'csch': 

(CompilerInstrSpec(1, 1, []), 31), 

'coth': 

(CompilerInstrSpec(1, 1, []), 32), 

'acosh': 

(CompilerInstrSpec(1, 1, []), 33), 

'asinh': 

(CompilerInstrSpec(1, 1, []), 34), 

'atanh': 

(CompilerInstrSpec(1, 1, []), 35), 

'log1p': 

(CompilerInstrSpec(1, 1, []), 36), 

'expm1': 

(CompilerInstrSpec(1, 1, []), 37), 

'eint': 

(CompilerInstrSpec(1, 1, []), 38), 

'gamma': 

(CompilerInstrSpec(1, 1, []), 39), 

'lngamma': 

(CompilerInstrSpec(1, 1, []), 40), 

'zeta': 

(CompilerInstrSpec(1, 1, []), 41), 

'erf': 

(CompilerInstrSpec(1, 1, []), 42), 

'erfc': 

(CompilerInstrSpec(1, 1, []), 43), 

'j0': 

(CompilerInstrSpec(1, 1, []), 44), 

'j1': 

(CompilerInstrSpec(1, 1, []), 45), 

'y0': 

(CompilerInstrSpec(1, 1, []), 46), 

'y1': 

(CompilerInstrSpec(1, 1, []), 47), 

'invert': 

(CompilerInstrSpec(1, 1, []), 48), 

}, 

by_opcode=[ 

('load_arg', 

CompilerInstrSpec(0, 1, ['args'])), 

('load_const', 

CompilerInstrSpec(0, 1, ['constants'])), 

('return', 

CompilerInstrSpec(1, 0, [])), 

('py_call', 

CompilerInstrSpec(0, 1, ['py_constants', 'n_inputs'])), 

('add', 

CompilerInstrSpec(2, 1, [])), 

('sub', 

CompilerInstrSpec(2, 1, [])), 

('mul', 

CompilerInstrSpec(2, 1, [])), 

('div', 

CompilerInstrSpec(2, 1, [])), 

('pow', 

CompilerInstrSpec(2, 1, [])), 

('ipow', 

CompilerInstrSpec(1, 1, ['code'])), 

('neg', 

CompilerInstrSpec(1, 1, [])), 

('abs', 

CompilerInstrSpec(1, 1, [])), 

('log', 

CompilerInstrSpec(1, 1, [])), 

('log2', 

CompilerInstrSpec(1, 1, [])), 

('log10', 

CompilerInstrSpec(1, 1, [])), 

('exp', 

CompilerInstrSpec(1, 1, [])), 

('exp2', 

CompilerInstrSpec(1, 1, [])), 

('exp10', 

CompilerInstrSpec(1, 1, [])), 

('cos', 

CompilerInstrSpec(1, 1, [])), 

('sin', 

CompilerInstrSpec(1, 1, [])), 

('tan', 

CompilerInstrSpec(1, 1, [])), 

('sec', 

CompilerInstrSpec(1, 1, [])), 

('csc', 

CompilerInstrSpec(1, 1, [])), 

('cot', 

CompilerInstrSpec(1, 1, [])), 

('acos', 

CompilerInstrSpec(1, 1, [])), 

('asin', 

CompilerInstrSpec(1, 1, [])), 

('atan', 

CompilerInstrSpec(1, 1, [])), 

('cosh', 

CompilerInstrSpec(1, 1, [])), 

('sinh', 

CompilerInstrSpec(1, 1, [])), 

('tanh', 

CompilerInstrSpec(1, 1, [])), 

('sech', 

CompilerInstrSpec(1, 1, [])), 

('csch', 

CompilerInstrSpec(1, 1, [])), 

('coth', 

CompilerInstrSpec(1, 1, [])), 

('acosh', 

CompilerInstrSpec(1, 1, [])), 

('asinh', 

CompilerInstrSpec(1, 1, [])), 

('atanh', 

CompilerInstrSpec(1, 1, [])), 

('log1p', 

CompilerInstrSpec(1, 1, [])), 

('expm1', 

CompilerInstrSpec(1, 1, [])), 

('eint', 

CompilerInstrSpec(1, 1, [])), 

('gamma', 

CompilerInstrSpec(1, 1, [])), 

('lngamma', 

CompilerInstrSpec(1, 1, [])), 

('zeta', 

CompilerInstrSpec(1, 1, [])), 

('erf', 

CompilerInstrSpec(1, 1, [])), 

('erfc', 

CompilerInstrSpec(1, 1, [])), 

('j0', 

CompilerInstrSpec(1, 1, [])), 

('j1', 

CompilerInstrSpec(1, 1, [])), 

('y0', 

CompilerInstrSpec(1, 1, [])), 

('y1', 

CompilerInstrSpec(1, 1, [])), 

('invert', 

CompilerInstrSpec(1, 1, [])), 

], 

ipow_range=(-2147483648, 2147483647))