Skip to content
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.

Commit

Permalink
Add change-detector script
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Grosse committed Jan 26, 2016
1 parent e2fa468 commit 0f528df
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
.gitignore export-ignore
tests/** export-ignore
enjarify/runtests.py export-ignore
enjarify/hashtests.py export-ignore
39 changes: 39 additions & 0 deletions enjarify/hashtests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Copyright 2015 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import hashlib, os

from .main import read, translate
from .jvm.optimization import options

# Hash outputs of all tests in order to easily detect changes between versions
fullhash = b''

for i in range(1, 7):
name = 'test{}'.format(i)
print(name)
dir = os.path.join('tests', name)
rawdex = read(os.path.join(dir, 'classes.dex'), 'rb')

for bits in range(256):
opts = options.Options(*[bool(bits & (1 << b)) for b in range(8)])
classes, errors = translate(rawdex, opts=opts)
assert(not errors)

for cls in classes.values():
print('{:08b}'.format(bits), hashlib.sha256(cls).hexdigest())
fullhash = hashlib.sha256(fullhash + cls).digest()

print('done!')
print('Final hash:', hashlib.sha256(fullhash).hexdigest())
8 changes: 4 additions & 4 deletions enjarify/jvm/optimization/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ def allocateRequiredConstants(pool, long_irs):
# in the first place. In fact, there are no known real world classes that
# even come close to exhausting the constant pool.

print('{} methods potentially too long'.format(len(long_irs)))
print(sorted([_ir.upper_bound for _ir in long_irs], reverse=True))
for _ir in long_irs:
print(_ir.method.id.triple(), _ir.upper_bound)
# print('{} methods potentially too long'.format(len(long_irs)))
# print(sorted([_ir.upper_bound for _ir in long_irs], reverse=True))
# for _ir in long_irs:
# print(_ir.method.id.triple(), _ir.upper_bound)

narrow_pairs = collections.Counter()
wide_pairs = collections.Counter()
Expand Down
2 changes: 1 addition & 1 deletion enjarify/jvm/writeclass.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def toClassFile(cls, opts):
try:
pool, rest_stream = classFileAfterPool(cls, opts=opts)
except error.ClassfileLimitExceeded:
print('Retrying {} with optimization enabled'.format(cls.name))
# print('Retrying {} with optimization enabled'.format(cls.name))
pool, rest_stream = classFileAfterPool(cls, opts=options.ALL)

# write constant pool
Expand Down

0 comments on commit 0f528df

Please sign in to comment.