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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
|
import autopath
import py, os
from pypy.config.config import OptionDescription, BoolOption, IntOption, ArbitraryOption, FloatOption
from pypy.config.config import ChoiceOption, StrOption, to_optparse, Config
from pypy.config.config import ConfigError
DEFL_INLINE_THRESHOLD = 32.4 # just enough to inline add__Int_Int()
# and just small enough to prevend inlining of some rlist functions.
DEFL_PROF_BASED_INLINE_THRESHOLD = 32.4
DEFL_CLEVER_MALLOC_REMOVAL_INLINE_THRESHOLD = 32.4
DEFL_LOW_INLINE_THRESHOLD = DEFL_INLINE_THRESHOLD / 2.0
PLATFORMS = [
'maemo',
'host',
'distutils',
]
translation_optiondescription = OptionDescription(
"translation", "Translation Options", [
BoolOption("stackless", "enable stackless features during compilation",
default=False, cmdline="--stackless",
requires=[("translation.type_system", "lltype")]),
ChoiceOption("type_system", "Type system to use when RTyping",
["lltype", "ootype"], cmdline=None, default="lltype",
requires={
"ootype": [
("translation.backendopt.constfold", False),
("translation.backendopt.clever_malloc_removal", False),
("translation.gc", "boehm"), # it's not really used, but some jit code expects a value here
]
}),
ChoiceOption("backend", "Backend to use for code generation",
["c", "cli", "jvm"], default="c",
requires={
"c": [("translation.type_system", "lltype")],
"cli": [("translation.type_system", "ootype")],
"jvm": [("translation.type_system", "ootype")],
},
cmdline="-b --backend"),
BoolOption("log", "Include debug prints in the translation (PYPYLOG=...)",
default=True, cmdline="--log"),
# gc
ChoiceOption("gc", "Garbage Collection Strategy",
["boehm", "ref", "marksweep", "semispace", "statistics",
"generation", "hybrid", "markcompact", "none"],
"ref", requires={
"ref": [("translation.rweakref", False), # XXX
("translation.gctransformer", "ref")],
"none": [("translation.rweakref", False), # XXX
("translation.gctransformer", "none")],
"semispace": [("translation.gctransformer", "framework")],
"marksweep": [("translation.gctransformer", "framework")],
"statistics": [("translation.gctransformer", "framework")],
"generation": [("translation.gctransformer", "framework")],
"hybrid": [("translation.gctransformer", "framework")],
"boehm": [("translation.gctransformer", "boehm")],
"markcompact": [("translation.gctransformer", "framework")],
},
cmdline="--gc"),
ChoiceOption("gctransformer", "GC transformer that is used - internal",
["boehm", "ref", "framework", "none"],
default="ref", cmdline=None,
requires={
"boehm": [("translation.gcrootfinder", "n/a"),
("translation.gcremovetypeptr", False)],
"ref": [("translation.gcrootfinder", "n/a"),
("translation.gcremovetypeptr", False)],
"none": [("translation.gcrootfinder", "n/a"),
("translation.gcremovetypeptr", False)],
}),
BoolOption("gcremovetypeptr", "Remove the typeptr from every object",
default=False, cmdline="--gcremovetypeptr"),
ChoiceOption("gcrootfinder",
"Strategy for finding GC Roots (framework GCs only)",
["n/a", "shadowstack", "asmgcc"],
"shadowstack",
cmdline="--gcrootfinder",
requires={
"shadowstack": [("translation.gctransformer", "framework")],
"asmgcc": [("translation.gctransformer", "framework"),
("translation.backend", "c")],
}),
# other noticeable options
BoolOption("thread", "enable use of threading primitives",
default=False, cmdline="--thread"),
BoolOption("sandbox", "Produce a fully-sandboxed executable",
default=False, cmdline="--sandbox",
requires=[("translation.thread", False)],
suggests=[("translation.gc", "generation")]),
BoolOption("rweakref", "The backend supports RPython-level weakrefs",
default=True),
# JIT generation: use -Ojit to enable it
BoolOption("jit", "generate a JIT",
default=False,
suggests=[("translation.gc", "hybrid"), # or "boehm"
("translation.gcrootfinder", "asmgcc"),
("translation.list_comprehension_operations", True)]),
ChoiceOption("jit_backend", "choose the backend for the JIT",
["auto", "x86", "x86-without-sse2", "llvm"],
default="auto", cmdline="--jit-backend"),
ChoiceOption("jit_debug", "the amount of debugging dumps made by the JIT",
["off", "profile", "steps", "detailed"],
default="profile", # XXX for now
cmdline="--jit-debug"),
ChoiceOption("jit_profiler", "integrate profiler support into the JIT",
["off", "oprofile"],
default="off"),
# misc
BoolOption("verbose", "Print extra information", default=False),
BoolOption("debug", "Record extra annotation information",
cmdline="-d --debug", default=True),
BoolOption("insist", "Try hard to go on RTyping", default=False,
cmdline="--insist"),
StrOption("cc", "Specify compiler to use for compiling generated C", cmdline="--cc"),
StrOption("profopt", "Specify profile based optimization script",
cmdline="--profopt"),
BoolOption("noprofopt", "Don't use profile based optimization",
default=False, cmdline="--no-profopt", negation=False),
BoolOption("instrument", "internal: turn instrumentation on",
default=False, cmdline=None),
BoolOption("countmallocs", "Count mallocs and frees", default=False,
cmdline=None),
ChoiceOption("fork_before",
"(UNIX) Create restartable checkpoint before step",
["annotate", "rtype", "backendopt", "database", "source",
"pyjitpl"],
default=None, cmdline="--fork-before"),
ArbitraryOption("instrumentctl", "internal",
default=None),
StrOption("output", "Output file name", cmdline="--output"),
BoolOption("dump_static_data_info", "Dump static data info",
cmdline="--dump_static_data_info",
default=False, requires=[("translation.backend", "c")]),
# portability options
BoolOption("vanilla",
"Try to be as portable as possible, which is not much",
default=False,
cmdline="--vanilla",
requires=[("translation.no__thread", True)]),
BoolOption("no__thread",
"don't use __thread for implementing TLS",
default=False, cmdline="--no__thread", negation=False),
StrOption("compilerflags", "Specify flags for the C compiler",
cmdline="--cflags"),
StrOption("linkerflags", "Specify flags for the linker (C backend only)",
cmdline="--ldflags"),
# Flags of the TranslationContext:
BoolOption("simplifying", "Simplify flow graphs", default=True),
BoolOption("builtins_can_raise_exceptions",
"When true, assume any call to a 'simple' builtin such as "
"'hex' can raise an arbitrary exception",
default=False,
cmdline=None),
BoolOption("list_comprehension_operations",
"When true, look for and special-case the sequence of "
"operations that results from a list comprehension and "
"attempt to pre-allocate the list",
default=False,
cmdline='--listcompr'),
IntOption("withsmallfuncsets",
"Represent groups of less funtions than this as indices into an array",
default=0),
BoolOption("taggedpointers",
"When true, enable the use of tagged pointers. "
"If false, use normal boxing",
default=False),
# options for ootype
OptionDescription("ootype", "Object Oriented Typesystem options", [
BoolOption("mangle", "Mangle names of class members", default=True),
]),
OptionDescription("backendopt", "Backend Optimization Options", [
# control inlining
BoolOption("inline", "Do basic inlining and malloc removal",
default=True),
FloatOption("inline_threshold", "Threshold when to inline functions",
default=DEFL_INLINE_THRESHOLD, cmdline="--inline-threshold"),
StrOption("inline_heuristic", "Dotted name of an heuristic function "
"for inlining",
default="pypy.translator.backendopt.inline.inlining_heuristic",
cmdline="--inline-heuristic"),
BoolOption("print_statistics", "Print statistics while optimizing",
default=False),
BoolOption("merge_if_blocks", "Merge if ... elif chains",
cmdline="--if-block-merge", default=True),
BoolOption("raisingop2direct_call",
"Transform operations that can implicitly raise an "
"exception into calls to functions that explicitly "
"raise exceptions",
default=False, cmdline="--raisingop2direct_call"),
BoolOption("mallocs", "Remove mallocs", default=True),
BoolOption("constfold", "Constant propagation",
default=True),
# control profile based inlining
StrOption("profile_based_inline",
"Use call count profiling to drive inlining"
", specify arguments",
default=None, cmdline="--prof-based-inline"),
FloatOption("profile_based_inline_threshold",
"Threshold when to inline functions "
"for profile based inlining",
default=DEFL_PROF_BASED_INLINE_THRESHOLD,
cmdline="--prof-based-inline-threshold"),
StrOption("profile_based_inline_heuristic",
"Dotted name of an heuristic function "
"for profile based inlining",
default="pypy.translator.backendopt.inline.inlining_heuristic",
cmdline="--prof-based-inline-heuristic"),
# control clever malloc removal
BoolOption("clever_malloc_removal",
"Drives inlining to remove mallocs in a clever way",
default=False,
cmdline="--clever-malloc-removal"),
FloatOption("clever_malloc_removal_threshold",
"Threshold when to inline functions in "
"clever malloc removal",
default=DEFL_CLEVER_MALLOC_REMOVAL_INLINE_THRESHOLD,
cmdline="--clever-malloc-removal-threshold"),
StrOption("clever_malloc_removal_heuristic",
"Dotted name of an heuristic function "
"for inlining in clever malloc removal",
default="pypy.translator.backendopt.inline.inlining_heuristic",
cmdline="--clever-malloc-removal-heuristic"),
BoolOption("remove_asserts",
"Remove operations that look like 'raise AssertionError', "
"which lets the C optimizer remove the asserts",
default=False),
BoolOption("really_remove_asserts",
"Really remove operations that look like 'raise AssertionError', "
"without relying on the C compiler",
default=False),
BoolOption("stack_optimization",
"Tranform graphs in SSI form into graphs tailored for "
"stack based virtual machines (only for backends that support it)",
default=True),
BoolOption("storesink", "Perform store sinking", default=True),
BoolOption("none",
"Do not run any backend optimizations",
requires=[('translation.backendopt.inline', False),
('translation.backendopt.inline_threshold', 0),
('translation.backendopt.merge_if_blocks', False),
('translation.backendopt.mallocs', False),
('translation.backendopt.constfold', False)])
]),
OptionDescription("cli", "GenCLI options", [
BoolOption("trace_calls", "Trace function calls", default=False,
cmdline="--cli-trace-calls"),
BoolOption("exception_transformer", "Use exception transformer", default=False),
]),
ChoiceOption("platform",
"target platform", ['host'] + PLATFORMS, default='host',
cmdline='--platform'),
])
def get_combined_translation_config(other_optdescr=None,
existing_config=None,
overrides=None,
translating=False):
if overrides is None:
overrides = {}
d = BoolOption("translating",
"indicates whether we are translating currently",
default=False, cmdline=None)
if other_optdescr is None:
children = []
newname = ""
else:
children = [other_optdescr]
newname = other_optdescr._name
if existing_config is None:
children += [d, translation_optiondescription]
else:
children += [child for child in existing_config._cfgimpl_descr._children
if child._name != newname]
descr = OptionDescription("pypy", "all options", children)
config = Config(descr, **overrides)
if translating:
config.translating = True
if existing_config is not None:
for child in existing_config._cfgimpl_descr._children:
if child._name == newname:
continue
value = getattr(existing_config, child._name)
config._cfgimpl_values[child._name] = value
return config
# ____________________________________________________________
OPT_LEVELS = ['0', '1', 'size', 'mem', '2', '3', 'jit']
DEFAULT_OPT_LEVEL = '2'
OPT_TABLE_DOC = {
'0': 'No optimization. Uses the Boehm GC.',
'1': 'Enable a default set of optimizations. Uses the Boehm GC.',
'size': 'Optimize for the size of the executable. Uses the Boehm GC.',
'mem': 'Optimize for run-time memory usage and use a memory-saving GC.',
'2': 'Enable most optimizations and use a high-performance GC.',
'3': 'Enable all optimizations and use a high-performance GC.',
'jit': 'Enable the JIT.',
}
OPT_TABLE = {
#level: gc backend optimizations...
'0': 'boehm nobackendopt',
'1': 'boehm lowinline',
'size': 'boehm lowinline remove_asserts',
'mem': 'markcompact lowinline remove_asserts removetypeptr',
'2': 'hybrid extraopts',
'3': 'hybrid extraopts remove_asserts',
'jit': 'hybrid extraopts jit',
}
def set_opt_level(config, level):
"""Apply optimization suggestions on the 'config'.
The optimizations depend on the selected level and possibly on the backend.
"""
# warning: during some tests, the type_system and the backend may be
# unspecified and we get None. It shouldn't occur in translate.py though.
type_system = config.translation.type_system
backend = config.translation.backend
try:
opts = OPT_TABLE[level]
except KeyError:
raise ConfigError("no such optimization level: %r" % (level,))
words = opts.split()
gc = words.pop(0)
# set the GC (only meaningful with lltype)
# but only set it if it wasn't already suggested to be something else
if config.translation._cfgimpl_value_owners['gc'] != 'suggested':
config.translation.suggest(gc=gc)
# set the backendopts
for word in words:
if word == 'nobackendopt':
config.translation.backendopt.suggest(none=True)
elif word == 'lowinline':
config.translation.backendopt.suggest(inline_threshold=
DEFL_LOW_INLINE_THRESHOLD)
elif word == 'remove_asserts':
config.translation.backendopt.suggest(remove_asserts=True)
elif word == 'extraopts':
config.translation.suggest(withsmallfuncsets=5)
elif word == 'jit':
config.translation.suggest(jit=True)
elif word == 'removetypeptr':
config.translation.suggest(gcremovetypeptr=True)
else:
raise ValueError(word)
hasbackendopts = 'nobackendopt' not in words
config.translation.suggest(list_comprehension_operations=hasbackendopts)
# ----------------------------------------------------------------
def set_platform(config):
from pypy.translator.platform import set_platform
set_platform(config.translation.platform, config.translation.cc)
def get_platform(config):
from pypy.translator.platform import pick_platform
opt = config.translation.platform
cc = config.translation.cc
return pick_platform(opt, cc)
|