Revision b7ac1c02e9a868a4bad39a47217e8e52e55f76ee authored by Alon Zakai on 14 March 2014, 19:11:11 UTC, committed by Alon Zakai on 14 March 2014, 19:11:11 UTC
Safari 6.0.5 webaudio fixes in SDL and OpenAL library.
2 parent s 0d1230d + dee56ea
Raw File
find_bigis.py
'''
Simple tool to find big i types in an .ll file. Anything over i64 is of interest.
'''

import os, sys, re

filename = sys.argv[1]
data = open(filename).read()
iss = re.findall(' i\d+ [^=]', data)
set_iss = set(iss)
bigs = []
for iss in set_iss:
  size = int(iss[2:-2])
  if size > 64:
    bigs.append(size)
bigs.sort()
print bigs

back to top