mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-07-26 23:13:54 +00:00
Initial Commit
This commit is contained in:
55
thirdparty/capstone/suite/synctools/strinforeduce/instrinfo2.py
vendored
Normal file
55
thirdparty/capstone/suite/synctools/strinforeduce/instrinfo2.py
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
#!/usr/bin/python
|
||||
# convert LLVM GenInstrInfo.inc for Capstone disassembler.
|
||||
# by Nguyen Anh Quynh, 2019
|
||||
|
||||
import sys
|
||||
|
||||
if len(sys.argv) == 1:
|
||||
print("Syntax: %s <GenInstrInfo.inc>" %sys.argv[0])
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
count = 0
|
||||
last_line = None
|
||||
|
||||
f = open(sys.argv[1])
|
||||
lines = f.readlines()
|
||||
f.close()
|
||||
|
||||
# 1st enum is register enum
|
||||
for line in lines:
|
||||
line = line.rstrip()
|
||||
|
||||
# skip all MCPhysReg line
|
||||
if 'static const MCPhysReg ' in line:
|
||||
continue
|
||||
|
||||
# skip all MCOperandInfo line
|
||||
if 'static const MCOperandInfo ' in line:
|
||||
continue
|
||||
|
||||
# skip InitX86MCInstrInfo()
|
||||
if 'static inline void InitX86MCInstrInfo' in line:
|
||||
continue
|
||||
|
||||
if 'II->InitMCInstrInfo' in line:
|
||||
last_line = line
|
||||
continue
|
||||
|
||||
# skip the next line after II->InitMCInstrInfo
|
||||
if last_line:
|
||||
last_line = None
|
||||
continue
|
||||
|
||||
|
||||
if 'extern const MCInstrDesc ' in line:
|
||||
count += 1
|
||||
continue
|
||||
|
||||
if count == 1:
|
||||
if line == '};':
|
||||
# done with first enum
|
||||
count += 1
|
||||
continue
|
||||
else:
|
||||
print(line)
|
Reference in New Issue
Block a user