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 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
|
import sys
import time
from rpython.rtyper.extregistry import ExtRegistryEntry
from rpython.rlib.objectmodel import we_are_translated
from rpython.rlib.rarithmetic import is_valid_int
from rpython.rtyper.extfunc import register_external
from rpython.rtyper.lltypesystem import lltype
from rpython.rtyper.lltypesystem import rffi
from rpython.translator.tool.cbuild import ExternalCompilationInfo
# Expose these here (public interface)
from rpython.rtyper.debug import (
ll_assert, FatalError, fatalerror, fatalerror_notb)
class DebugLog(list):
def debug_print(self, *args):
self.append(('debug_print',) + args)
def debug_start(self, category, time=None):
self.append(('debug_start', category, time))
def debug_stop(self, category, time=None):
for i in xrange(len(self) - 1, -1, -1):
if self[i][0] == 'debug_start':
assert self[i][1] == category, (
"nesting error: starts with %r but stops with %r" %
(self[i][1], category))
starttime = self[i][2]
if starttime is not None or time is not None:
self[i:] = [(category, starttime, time, self[i + 1:])]
else:
self[i:] = [(category, self[i + 1:])]
return
assert False, ("nesting error: no start corresponding to stop %r" %
(category,))
def __repr__(self):
import pprint
return pprint.pformat(list(self))
_log = None # patched from tests to be an object of class DebugLog
# or compatible
def debug_print(*args):
for arg in args:
print >> sys.stderr, arg,
print >> sys.stderr
if _log is not None:
_log.debug_print(*args)
class Entry(ExtRegistryEntry):
_about_ = debug_print
def compute_result_annotation(self, *args_s):
return None
def specialize_call(self, hop):
vlist = hop.inputargs(*hop.args_r)
hop.exception_cannot_occur()
t = hop.rtyper.annotator.translator
if t.config.translation.log:
hop.genop('debug_print', vlist)
if sys.stderr.isatty():
_start_colors_1 = "\033[1m\033[31m"
_start_colors_2 = "\033[31m"
_stop_colors = "\033[0m"
else:
_start_colors_1 = ""
_start_colors_2 = ""
_stop_colors = ""
def debug_start(category):
c = int(time.clock() * 100)
print >> sys.stderr, '%s[%x] {%s%s' % (_start_colors_1, c,
category, _stop_colors)
if _log is not None:
_log.debug_start(category)
def debug_stop(category):
c = int(time.clock() * 100)
print >> sys.stderr, '%s[%x] %s}%s' % (_start_colors_2, c,
category, _stop_colors)
if _log is not None:
_log.debug_stop(category)
class Entry(ExtRegistryEntry):
_about_ = debug_start, debug_stop
def compute_result_annotation(self, s_category):
return None
def specialize_call(self, hop):
from rpython.rtyper.lltypesystem.rstr import string_repr
fn = self.instance
vlist = hop.inputargs(string_repr)
hop.exception_cannot_occur()
t = hop.rtyper.annotator.translator
if t.config.translation.log:
hop.genop(fn.__name__, vlist)
def have_debug_prints():
# returns True if the next calls to debug_print show up,
# and False if they would not have any effect.
return True
def have_debug_prints_for(category_prefix):
# returns True if debug prints are enabled for at least some
# category strings starting with "prefix" (must be a constant).
assert len(category_prefix) > 0
return True
class Entry(ExtRegistryEntry):
_about_ = have_debug_prints, have_debug_prints_for
def compute_result_annotation(self, s_prefix=None):
from rpython.annotator import model as annmodel
t = self.bookkeeper.annotator.translator
if t.config.translation.log:
return annmodel.s_Bool
else:
return self.bookkeeper.immutablevalue(False)
def specialize_call(self, hop):
t = hop.rtyper.annotator.translator
hop.exception_cannot_occur()
if t.config.translation.log:
if hop.args_v:
[c_prefix] = hop.args_v
assert len(c_prefix.value) > 0
args = [hop.inputconst(lltype.Void, c_prefix.value)]
return hop.genop('have_debug_prints_for', args,
resulttype=lltype.Bool)
return hop.genop('have_debug_prints', [], resulttype=lltype.Bool)
else:
return hop.inputconst(lltype.Bool, False)
def debug_offset():
""" Return an offset in log file
"""
return -1
class Entry(ExtRegistryEntry):
_about_ = debug_offset
def compute_result_annotation(self):
from rpython.annotator import model as annmodel
return annmodel.SomeInteger()
def specialize_call(self, hop):
hop.exception_cannot_occur()
return hop.genop('debug_offset', [], resulttype=lltype.Signed)
def debug_flush():
""" Flushes the debug file
"""
pass
class Entry(ExtRegistryEntry):
_about_ = debug_flush
def compute_result_annotation(self):
return None
def specialize_call(self, hop):
hop.exception_cannot_occur()
return hop.genop('debug_flush', [])
def debug_forked(original_offset):
""" Call after a fork(), passing as argument the result of
debug_offset() called before the fork.
"""
pass
class Entry(ExtRegistryEntry):
_about_ = debug_forked
def compute_result_annotation(self, s_original_offset):
return None
def specialize_call(self, hop):
vlist = hop.inputargs(lltype.Signed)
hop.exception_cannot_occur()
return hop.genop('debug_forked', vlist)
def llinterpcall(RESTYPE, pythonfunction, *args):
"""When running on the llinterp, this causes the llinterp to call to
the provided Python function with the run-time value of the given args.
The Python function should return a low-level object of type RESTYPE.
This should never be called after translation: use this only if
running_on_llinterp is true.
"""
raise NotImplementedError
class Entry(ExtRegistryEntry):
_about_ = llinterpcall
def compute_result_annotation(self, s_RESTYPE, s_pythonfunction, *args_s):
from rpython.annotator import model as annmodel
from rpython.rtyper.llannotation import lltype_to_annotation
assert s_RESTYPE.is_constant()
assert s_pythonfunction.is_constant()
s_result = s_RESTYPE.const
if isinstance(s_result, lltype.LowLevelType):
s_result = lltype_to_annotation(s_result)
assert isinstance(s_result, annmodel.SomeObject)
return s_result
def specialize_call(self, hop):
from rpython.annotator import model as annmodel
RESTYPE = hop.args_s[0].const
if not isinstance(RESTYPE, lltype.LowLevelType):
assert isinstance(RESTYPE, annmodel.SomeObject)
r_result = hop.rtyper.getrepr(RESTYPE)
RESTYPE = r_result.lowleveltype
pythonfunction = hop.args_s[1].const
c_pythonfunction = hop.inputconst(lltype.Void, pythonfunction)
args_v = [hop.inputarg(hop.args_r[i], arg=i)
for i in range(2, hop.nb_args)]
hop.exception_is_here()
return hop.genop('debug_llinterpcall', [c_pythonfunction] + args_v,
resulttype=RESTYPE)
def check_annotation(arg, checker):
""" Function checking if annotation is as expected when translating,
does nothing when just run. Checker is supposed to be a constant
callable which checks if annotation is as expected,
arguments passed are (current annotation, bookkeeper)
"""
return arg
class Entry(ExtRegistryEntry):
_about_ = check_annotation
def compute_result_annotation(self, s_arg, s_checker):
if not s_checker.is_constant():
raise ValueError(
"Second argument of check_annotation must be constant")
checker = s_checker.const
checker(s_arg, self.bookkeeper)
return s_arg
def specialize_call(self, hop):
hop.exception_cannot_occur()
return hop.inputarg(hop.args_r[0], arg=0)
def make_sure_not_resized(arg):
""" Function checking whether annotation of SomeList is never resized,
useful for debugging. Does nothing when run directly
"""
return arg
class Entry(ExtRegistryEntry):
_about_ = make_sure_not_resized
def compute_result_annotation(self, s_arg):
from rpython.annotator.model import SomeList, s_None
if s_None.contains(s_arg):
return s_arg # only None: just return
assert isinstance(s_arg, SomeList)
# the logic behind it is that we try not to propagate
# make_sure_not_resized, when list comprehension is not on
config = self.bookkeeper.annotator.translator.config
if config.translation.list_comprehension_operations:
s_arg.listdef.never_resize()
else:
from rpython.annotator.annrpython import log
log.WARNING(
"make_sure_not_resized called, but has no effect since "
"list_comprehension is off")
return s_arg
def specialize_call(self, hop):
hop.exception_cannot_occur()
return hop.inputarg(hop.args_r[0], arg=0)
def mark_dict_non_null(d):
""" Mark dictionary as having non-null keys and values. A warning would
be emitted (not an error!) in case annotation disagrees.
"""
assert isinstance(d, dict)
return d
class DictMarkEntry(ExtRegistryEntry):
_about_ = mark_dict_non_null
def compute_result_annotation(self, s_dict):
from rpython.annotator.model import SomeDict
assert isinstance(s_dict, SomeDict)
s_dict.dictdef.force_non_null = True
return s_dict
def specialize_call(self, hop):
hop.exception_cannot_occur()
return hop.inputarg(hop.args_r[0], arg=0)
class IntegerCanBeNegative(Exception):
pass
class UnexpectedRUInt(Exception):
pass
class ExpectedRegularInt(Exception):
pass
def check_nonneg(x):
"""Give a translation-time error if 'x' is not known to be non-negative.
To help debugging, this also gives a translation-time error if 'x' is
actually typed as an r_uint (in which case the call to check_nonneg()
is a bit strange and probably unexpected).
"""
assert type(x)(-1) < 0 # otherwise, 'x' is a r_uint or similar
assert x >= 0
return x
class Entry(ExtRegistryEntry):
_about_ = check_nonneg
def compute_result_annotation(self, s_arg):
from rpython.annotator.model import SomeInteger
if isinstance(s_arg, SomeInteger) and s_arg.unsigned:
raise UnexpectedRUInt("check_nonneg() arg is a %s" % (
s_arg.knowntype,))
s_nonneg = SomeInteger(nonneg=True)
if not s_nonneg.contains(s_arg):
raise IntegerCanBeNegative
return s_arg
def specialize_call(self, hop):
hop.exception_cannot_occur()
return hop.inputarg(hop.args_r[0], arg=0)
def check_regular_int(x):
"""Give a translation-time error if 'x' is not a plain int
(e.g. if it's a r_longlong or an r_uint).
"""
assert is_valid_int(x)
return x
class Entry(ExtRegistryEntry):
_about_ = check_regular_int
def compute_result_annotation(self, s_arg):
from rpython.annotator.model import SomeInteger
if not SomeInteger().contains(s_arg):
raise ExpectedRegularInt(s_arg)
return s_arg
def specialize_call(self, hop):
hop.exception_cannot_occur()
return hop.inputarg(hop.args_r[0], arg=0)
def check_list_of_chars(l):
if not we_are_translated():
assert isinstance(l, list)
for x in l:
assert isinstance(x, (unicode, str)) and len(x) == 1
return l
class NotAListOfChars(Exception):
pass
class Entry(ExtRegistryEntry):
_about_ = check_list_of_chars
def compute_result_annotation(self, s_arg):
from rpython.annotator.model import SomeList, s_None
from rpython.annotator.model import SomeChar, SomeUnicodeCodePoint
from rpython.annotator.model import SomeImpossibleValue
if s_None.contains(s_arg):
return s_arg # only None: just return
assert isinstance(s_arg, SomeList)
if not isinstance(
s_arg.listdef.listitem.s_value,
(SomeChar, SomeUnicodeCodePoint, SomeImpossibleValue)):
raise NotAListOfChars
return s_arg
def specialize_call(self, hop):
hop.exception_cannot_occur()
return hop.inputarg(hop.args_r[0], arg=0)
def attach_gdb():
import pdb; pdb.set_trace()
if not sys.platform.startswith('win'):
if sys.platform.startswith('linux'):
# Only necessary on Linux
eci = ExternalCompilationInfo(includes=['string.h', 'assert.h',
'sys/prctl.h'],
post_include_bits=["""
/* If we have an old Linux kernel (or compile with old system headers),
the following two macros are not defined. But we would still like
a pypy translated on such a system to run on a more modern system. */
#ifndef PR_SET_PTRACER
# define PR_SET_PTRACER 0x59616d61
#endif
#ifndef PR_SET_PTRACER_ANY
# define PR_SET_PTRACER_ANY ((unsigned long)-1)
#endif
static void pypy__allow_attach(void) {
prctl(PR_SET_PTRACER, PR_SET_PTRACER_ANY);
}
"""])
allow_attach = rffi.llexternal(
"pypy__allow_attach", [], lltype.Void,
compilation_info=eci, _nowrapper=True)
else:
# Do nothing, there's no prctl
def allow_attach():
pass
def impl_attach_gdb():
import os
allow_attach()
pid = os.getpid()
gdbpid = os.fork()
if gdbpid == 0:
shell = os.environ.get("SHELL") or "/bin/sh"
sepidx = shell.rfind(os.sep) + 1
if sepidx > 0:
argv0 = shell[sepidx:]
else:
argv0 = shell
try:
os.execv(shell, [argv0, "-c", "gdb -p %d" % pid])
except OSError as e:
os.write(2, "Could not start GDB: %s" % (
os.strerror(e.errno)))
raise SystemExit
else:
time.sleep(1) # give the GDB time to attach
else:
def impl_attach_gdb():
print "Don't know how to attach GDB on Windows"
register_external(attach_gdb, [], result=None,
export_name="impl_attach_gdb", llimpl=impl_attach_gdb)
|