Author: David Schneider <david.schnei...@picle.org> Branch: extradoc Changeset: r4373:0a62b684d06b Date: 2012-07-26 16:29 +0200 http://bitbucket.org/pypy/extradoc/changeset/0a62b684d06b/
Log: count all guards_* as guards diff --git a/talk/vmil2012/tool/difflogs.py b/talk/vmil2012/tool/difflogs.py --- a/talk/vmil2012/tool/difflogs.py +++ b/talk/vmil2012/tool/difflogs.py @@ -28,8 +28,6 @@ 'new_array': 'new', 'newstr': 'new', 'new_with_vtable': 'new', - 'guard_class': 'guard', - 'guard_nonnull_class': 'guard', } all_categories = 'new get set guard numeric rest'.split() @@ -62,6 +60,8 @@ continue if opname.startswith("int_") or opname.startswith("float_"): opname = "numeric" + elif opname.startswith("guard_"): + opname = "guard" else: opname = categories.get(opname, 'rest') insns[opname] = insns.get(opname, 0) + 1 _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit