00cc9309cb
de6e324bdseparate emu thread10d3daf86Roms List improvements95d202f37Let's make the rom list process on a separate thread so the emulator doesnt take ages to load.fc306967fWow the ROM Header was just completely busted. Game list view works nowbad1691eefuck this shit2b59e5f46game list in progressd26417b83remappable inputs in progressac4af8106inpute72abc240update readme430139dc9Qt6 frontend3080d4d45Fix this small bug too08cd13b85Cop0 unused functions do not actually pose a threat (as per manual). They don't do anything, so shall we.61bb4fb44make idle loop detection a little more specific with where the load goesb037de4c3SAZDFsdff12e81e73eneed to figure out why n64-systemtest loops indefinitely at some address that appears to be valid (i think it's me not invalidating the cache properly)204f0e13bidle skipping seems to work!cb8bb634asdkfjlasdf58e5c89c1Fix compilation issue on my machine (no idea)24fb2898eattempting more serious idle skipping214719577Place rsp.Step inside cached interpreter. Gains about 3 more fpsbb97dcc23mmmmm920b77d38wjkhasdfjhkasdf430ccdab4it's a start...4f42a673aCached interpreter plays Mario 64. Start looking into RSP as wellc9a030787idle skipping works!5fbda03cenew idea366637abaIdle skipping... maybe?609fa2fb0Cache instructions implemented but broken lmao. Commented out for nowe140a6d12- Stop using inheritance for CPU, instead use composition. - Introduce KAIZEN_JIT_ENABLED optional define instead of relying on __aarch64__ and the like. - More cache work68e613057prep cache impl811b4d809fix clang formatfda755f7didkd5024ebbfsmall MI refactor in preparation of (eventually) implementing the RDRAM interface properly694b45341Merge commit '206dcdedf195fb320913584180edb12c7731e396' as 'external/SDL'206dcdedfSquashed 'external/SDL/' content from commit 4d17b99d0a4d16e1cb4need to update sdl848b19920Fix compilation errordb61b5299Merge commit 'e94a94559f28e49678fbcf72199a5258137b0fe9' as 'external/imgui'e94a94559Squashed 'external/imgui/' content from commit 02e9b8cac52edb3757need to update imguic1a705e86Emulate weird JALR behaviour4b4c32f4bFix exception for "unusable COP1" in 4 instructions i missed accidentally (again)df5828142Bug putting 0s in the log everywheref8b580048Make isviewer a sink to file8241e9735Fix exception for "unusable COP1" in 4 instructions i missed accidentallyb29715f20small changesd9a620bc1make use of my new small utility library0d1aa938eAdd 'external/ircolib/' from commit 'ce3cd726c8df8388d554abf8bb55d55020eb4450'e64eb40b3Fuck git git-subtree-dir: external/ircolib git-subtree-split:de6e324bde
338 lines
13 KiB
Python
338 lines
13 KiB
Python
# Capstone Disassembler Engine
|
|
# By Dang Hoang Vu, 2013
|
|
from __future__ import print_function
|
|
import sys
|
|
import re
|
|
|
|
INCL_DIR = '../include/capstone/'
|
|
|
|
include = ['arm.h', 'aarch64.h', 'm68k.h', 'mips.h', 'x86.h', 'ppc.h', 'sparc.h', 'systemz.h', 'xcore.h',
|
|
'tms320c64x.h', 'm680x.h', 'evm.h', 'mos65xx.h', 'wasm.h', 'bpf.h', 'riscv.h', 'sh.h', 'tricore.h',
|
|
'alpha.h', 'hppa.h', 'loongarch.h', 'arc.h', 'xtensa.h']
|
|
|
|
template = {
|
|
'java': {
|
|
'header': "// For Capstone Engine. AUTO-GENERATED FILE, DO NOT EDIT\npackage capstone;\n\npublic class %s_const {\n",
|
|
'footer': "}",
|
|
'line_format': '\tpublic static final int %s = %s;\n',
|
|
'out_file': './java/capstone/%s_const.java',
|
|
# prefixes for constant filenames of all archs - case sensitive
|
|
'arm.h': 'Arm',
|
|
'm68k.h': 'M68k',
|
|
'mips.h': 'Mips',
|
|
'x86.h': 'X86',
|
|
'ppc.h': 'Ppc',
|
|
'sparc.h': 'Sparc',
|
|
'systemz.h': 'Systemz',
|
|
'xcore.h': 'Xcore',
|
|
'tms320c64x.h': 'TMS320C64x',
|
|
'm680x.h': 'M680x',
|
|
'evm.h': 'Evm',
|
|
'wasm.h': 'Wasm',
|
|
'comment_open': '\t//',
|
|
'comment_close': '',
|
|
},
|
|
'python': {
|
|
'header': (
|
|
"from . import CS_OP_INVALID, CS_OP_REG, CS_OP_IMM, CS_OP_FP, CS_OP_PRED, CS_OP_SPECIAL, CS_OP_MEM, CS_OP_MEM_REG, CS_OP_MEM_IMM, UINT16_MAX, UINT8_MAX\n"
|
|
"# For Capstone Engine. AUTO-GENERATED FILE, DO NOT EDIT [%s_const.py]\n"
|
|
),
|
|
'footer': "",
|
|
'line_format': '%s = %s\n',
|
|
'out_file': './python/capstone/%s_const.py',
|
|
# prefixes for constant filenames of all archs - case sensitive
|
|
'arm.h': 'arm',
|
|
'aarch64.h': ['AArch64', 'AARCH64'],
|
|
'm68k.h': 'm68k',
|
|
'mips.h': 'mips',
|
|
'x86.h': 'x86',
|
|
'ppc.h': 'ppc',
|
|
'sparc.h': 'sparc',
|
|
'systemz.h': 'systemz',
|
|
'xcore.h': 'xcore',
|
|
'tms320c64x.h': 'tms320c64x',
|
|
'm680x.h': 'm680x',
|
|
'evm.h': 'evm',
|
|
'wasm.h': 'wasm',
|
|
'mos65xx.h': 'mos65xx',
|
|
'bpf.h': 'bpf',
|
|
'riscv.h': 'riscv',
|
|
'sh.h': 'sh',
|
|
'tricore.h': ['TRICORE', 'TriCore'],
|
|
'alpha.h': ['ALPHA', 'Alpha'],
|
|
'hppa.h': 'hppa',
|
|
'loongarch.h': 'loongarch',
|
|
'xtensa.h': 'xtensa',
|
|
'arc.h': 'arc',
|
|
'comment_open': '#',
|
|
'comment_close': '',
|
|
},
|
|
'ocaml': {
|
|
'header': "(* For Capstone Engine. AUTO-GENERATED FILE, DO NOT EDIT [%s_const.ml] *)\n",
|
|
'footer': "",
|
|
'line_format': 'let _%s = %s;;\n',
|
|
'out_file': './ocaml/%s_const.ml',
|
|
# prefixes for constant filenames of all archs - case sensitive
|
|
'arm.h': 'arm',
|
|
'mips.h': 'mips',
|
|
'm68k.h': 'm68k',
|
|
'x86.h': 'x86',
|
|
'ppc.h': 'ppc',
|
|
'sparc.h': 'sparc',
|
|
'systemz.h': 'systemz',
|
|
'xcore.h': 'xcore',
|
|
'tms320c64x.h': 'tms320c64x',
|
|
'm680x.h': 'm680x',
|
|
'evm.h': 'evm',
|
|
'wasm.h': 'wasm',
|
|
'comment_open': '(*',
|
|
'comment_close': ' *)',
|
|
},
|
|
}
|
|
|
|
excluded_prefixes = {
|
|
'arm.h': ["ARMCC_CondCodes", "ARMVCC_VPTCodes"],
|
|
'aarch64.h': ["AArch64CC_CondCode", "AArch64Layout_VectorLayout"],
|
|
}
|
|
|
|
# markup for comments to be added to autogen files
|
|
MARKUP = '//>'
|
|
|
|
def camelize(name):
|
|
parts = name.split('_')
|
|
return parts[0].lower() + ''.join(map(str.capitalize, parts[1:]))
|
|
|
|
def pascalize(name):
|
|
parts = name.split('_')
|
|
return ''.join(map(str.capitalize, parts))
|
|
|
|
def pascalize_const(name):
|
|
parts = name.split('_',2)
|
|
match = re.match('^(CC|DISP|MOD|DIR|BCAST|RM|FLAGS|SIZE|BR_DISP_SIZE)_', parts[2])
|
|
if match:
|
|
parts = name.split('_', 2 + match.group(0).count('_'))
|
|
item = camelize(parts[-1])
|
|
if item[0].isdigit():
|
|
item = parts[-2].lower() + item
|
|
return (pascalize('_'.join(parts[0:-1])), item)
|
|
|
|
def enum_type(name, templ):
|
|
for enum_type, pattern in templ['enum_types'].items():
|
|
if re.match(pattern, name):
|
|
return enum_type
|
|
return templ['enum_default_type']
|
|
|
|
def write_enum_extra_options(outfile, templ, enum, enum_values):
|
|
if 'enum_extra_options' in templ and enum in templ['enum_extra_options']:
|
|
for name, value in templ['enum_extra_options'][enum].items():
|
|
if type(value) is str:
|
|
# evaluate within existing enum
|
|
value = eval(value, None, enum_values)
|
|
outfile.write((templ['line_format'] %(name, value)).encode("utf-8"))
|
|
|
|
def gen(lang):
|
|
global include, INCL_DIR
|
|
print('Generating bindings for', lang)
|
|
templ = template[lang]
|
|
print('Generating bindings for', lang)
|
|
for target in include:
|
|
if target not in templ:
|
|
print("Warning: No binding found for %s" % target)
|
|
continue
|
|
prefix = templ[target]
|
|
prefixs = []
|
|
if isinstance(prefix, list):
|
|
prefixs = prefix
|
|
prefix = prefix[0].lower()
|
|
|
|
outfile = open(templ['out_file'] %(prefix), 'wb') # open as binary prevents windows newlines
|
|
outfile.write((templ['header'] % (prefix)).encode("utf-8"))
|
|
|
|
lines = open(INCL_DIR + target).readlines()
|
|
enums = {}
|
|
values = {}
|
|
doc_lines = []
|
|
rhs = ""
|
|
|
|
count = 0
|
|
for line in lines:
|
|
line = line.strip()
|
|
|
|
if line.startswith(MARKUP): # markup for comments
|
|
outfile.write(("\n%s%s%s\n" %(templ['comment_open'], \
|
|
line.replace(MARKUP, ''), \
|
|
templ['comment_close']) ).encode("utf-8"))
|
|
continue
|
|
|
|
if line.startswith('/// ') and 'enum_doc' in templ:
|
|
doc_lines.append(line[4: ])
|
|
continue
|
|
elif line.startswith('}') or line.startswith('#'):
|
|
doc_lines = []
|
|
pass
|
|
elif re.search(r"^(\s*typedef\s+)?enum", line):
|
|
# First new enum value should be 0.
|
|
# Because `rhs` is incremented later, it must be set to -1 here.
|
|
# Everything about this code is so broken -.-
|
|
rhs = "-1"
|
|
|
|
if line == '' or line.startswith('//'):
|
|
continue
|
|
|
|
if line.startswith('#define '):
|
|
line = line[8:] #cut off define
|
|
xline = re.split(r'\s+', line, maxsplit=1) #split to at most 2 express
|
|
if len(xline) != 2:
|
|
continue
|
|
if '(' in xline[0] or ')' in xline[0]: #does it look like a function
|
|
continue
|
|
xline.insert(1, '=') # insert an = so the expression below can parse it
|
|
line = ' '.join(xline)
|
|
|
|
def has_special_arch_prefix(x):
|
|
if target in excluded_prefixes and any(x.startswith(excl_pre) for excl_pre in excluded_prefixes[target]):
|
|
return False
|
|
if prefixs:
|
|
return any(x.startswith(pre) for pre in prefixs)
|
|
else:
|
|
return x.startswith(prefix.upper())
|
|
|
|
if not has_special_arch_prefix(line):
|
|
continue
|
|
|
|
tmp = line.strip().split(',')
|
|
for t in tmp:
|
|
t = t.strip()
|
|
if not t or t.startswith('//'): continue
|
|
# hacky: remove type cast (uint64_t)
|
|
t = t.replace('(uint64_t)', '')
|
|
t = re.sub(r'\((\d+)ULL << (\d+)\)', r'\1 << \2', t) # (1ULL<<1) to 1 << 1
|
|
f = re.split(r'\s+', t)
|
|
|
|
if not has_special_arch_prefix(f[0]):
|
|
continue
|
|
|
|
if len(f) > 1 and f[1] not in ('//', '///<', '='):
|
|
print("Error: Unable to convert %s" % f)
|
|
continue
|
|
elif len(f) > 1 and f[1] == '=':
|
|
rhs = ''.join(f[2:])
|
|
else:
|
|
# Dirty fix: This line is reached for enum values which
|
|
# have no value assigned (as in `ARCH_SOMETHING,`).
|
|
# Because the binding constants require a fixed value,
|
|
# `count` was used (as it is now the `except` case).
|
|
# Which is of course incorrect,
|
|
# because it doesn't match the actual value in the C code.
|
|
# So we just test here if the previous `rhs` was an actual number,
|
|
# and set `rhs = rhs + 1`. If it wasn't a number, we just continue the incorrect design and
|
|
# set it to `str(count)`.
|
|
try:
|
|
if "0x" in rhs:
|
|
prev_val = int(rhs, 16)
|
|
else:
|
|
prev_val = int(rhs)
|
|
prev_val += 1
|
|
rhs = str(prev_val)
|
|
except ValueError:
|
|
rhs = str(count)
|
|
count += 1
|
|
|
|
try:
|
|
count = int(rhs) + 1
|
|
if (count == 1):
|
|
outfile.write(("\n").encode("utf-8"))
|
|
except ValueError:
|
|
if lang == 'ocaml':
|
|
# ocaml uses lsl for '<<', lor for '|'
|
|
rhs = rhs.replace('<<', ' lsl ')
|
|
rhs = rhs.replace('|', ' lor ')
|
|
# ocaml variable has _ as prefix
|
|
if rhs[0].isalpha():
|
|
rhs = '_' + rhs
|
|
|
|
if lang == 'swift':
|
|
value = eval(rhs, None, values)
|
|
exec('%s = %d' %(f[0].strip(), value), None, values)
|
|
else:
|
|
value = rhs
|
|
|
|
name = f[0].strip()
|
|
|
|
if 'rename' in templ:
|
|
# constant renaming
|
|
for pattern, replacement in templ['rename'].items():
|
|
if re.match(pattern, name):
|
|
name = re.sub(pattern, replacement, name)
|
|
break
|
|
|
|
|
|
if 'enum_header' in templ:
|
|
# separate constants by enums based on name
|
|
enum, name = pascalize_const(name)
|
|
if enum not in enums:
|
|
if len(enums) > 0:
|
|
write_enum_extra_options(outfile, templ, last_enum, enums[last_enum])
|
|
outfile.write((templ['enum_footer']).encode("utf-8"))
|
|
last_enum = enum
|
|
|
|
if 'enum_doc' in templ:
|
|
for doc_line in doc_lines:
|
|
outfile.write((templ['enum_doc'] %(doc_line)).encode("utf-8"))
|
|
doc_lines = []
|
|
|
|
if 'option_sets' in templ and enum in templ['option_sets']:
|
|
outfile.write((templ['option_set_header'] %(enum, templ['option_sets'][enum])).encode("utf-8"))
|
|
else:
|
|
outfile.write((templ['enum_header'] %(enum, enum_type(enum, templ))).encode("utf-8"))
|
|
enums[enum] = {}
|
|
|
|
if 'option_sets' in templ and enum in templ['option_sets']:
|
|
# option set format
|
|
line_format = templ['option_format'].format(option='%s',type=enum,value='%s')
|
|
if value == 0:
|
|
continue # skip empty option
|
|
# option set values need not be literals
|
|
value = rhs
|
|
elif 'dup_line_format' in templ and value in enums[enum].values():
|
|
# different format for duplicate values?
|
|
line_format = templ['dup_line_format']
|
|
else:
|
|
line_format = templ['line_format']
|
|
enums[enum][name] = value
|
|
|
|
# escape reserved words
|
|
if 'reserved_words' in templ and name in templ['reserved_words']:
|
|
name = templ['reserved_word_format'] %(name)
|
|
|
|
# print documentation?
|
|
if 'doc_line_format' in templ and '///<' in line:
|
|
doc = line.split('///<')[1].strip()
|
|
outfile.write((templ['doc_line_format'] %(doc)).encode("utf-8"))
|
|
else:
|
|
line_format = templ['line_format']
|
|
|
|
outfile.write((line_format %(name, value)).encode("utf-8"))
|
|
|
|
if 'enum_footer' in templ:
|
|
write_enum_extra_options(outfile, templ, enum, enums[enum])
|
|
outfile.write((templ['enum_footer']).encode("utf-8"))
|
|
outfile.write((templ['footer']).encode("utf-8"))
|
|
outfile.close()
|
|
|
|
def main():
|
|
try:
|
|
if sys.argv[1] == 'all':
|
|
for key in template.keys():
|
|
gen(key)
|
|
else:
|
|
gen(sys.argv[1])
|
|
except:
|
|
raise RuntimeError("Unsupported binding %s" % sys.argv[1])
|
|
|
|
if __name__ == "__main__":
|
|
if len(sys.argv) < 2:
|
|
print("Usage:", sys.argv[0], " <bindings: java|python|ocaml|all>")
|
|
sys.exit(1)
|
|
main()
|