102 lines
2.9 KiB
Python
102 lines
2.9 KiB
Python
|
|
#!/usr/bin/python2
|
||
|
|
|
||
|
|
# Copyright 2016 The Chromium Authors. All rights reserved.
|
||
|
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
|
# found in the LICENSE file.
|
||
|
|
|
||
|
|
import binascii
|
||
|
|
import optparse
|
||
|
|
import sys
|
||
|
|
|
||
|
|
parser = optparse.OptionParser()
|
||
|
|
parser.add_option("--mac",
|
||
|
|
help="generate assembly file for Mac/iOS (default: False)",
|
||
|
|
action="store_true", default=False)
|
||
|
|
parser.add_option("--win",
|
||
|
|
help="generate assembly file for Windows (default: False)",
|
||
|
|
action="store_true", default=False)
|
||
|
|
parser.set_usage("""make_data_assembly icu_data [assembly_file] [--mac] [--win]
|
||
|
|
icu_data: ICU data file to generate assembly from.
|
||
|
|
assembly_file: Output file converted from icu_data file.""")
|
||
|
|
(options, args) = parser.parse_args()
|
||
|
|
|
||
|
|
if len(args) < 1:
|
||
|
|
parser.error("ICU data file is not given.")
|
||
|
|
|
||
|
|
input_file = args[0]
|
||
|
|
n = input_file.find(".dat")
|
||
|
|
if n == -1:
|
||
|
|
sys.exit("%s is not an ICU .dat file." % input_file)
|
||
|
|
|
||
|
|
if len(args) < 2:
|
||
|
|
output_file = input_file[0:n] + "_dat.S"
|
||
|
|
else:
|
||
|
|
output_file = args[1]
|
||
|
|
|
||
|
|
if input_file.find("l.dat") == -1:
|
||
|
|
if input_file.find("b.dat") == -1:
|
||
|
|
sys.exit("%s has no endianness marker." % input_file)
|
||
|
|
else:
|
||
|
|
step = 1
|
||
|
|
else:
|
||
|
|
step = -1
|
||
|
|
|
||
|
|
input_data = open(input_file, 'rb').read()
|
||
|
|
n = input_data.find(b'icudt')
|
||
|
|
if n == -1:
|
||
|
|
sys.exit("Cannot find a version number in %s." % input_file)
|
||
|
|
|
||
|
|
version_number = input_data[n + 5:n + 7].decode("ascii")
|
||
|
|
|
||
|
|
output = open(output_file, 'w')
|
||
|
|
|
||
|
|
if options.mac:
|
||
|
|
output.write(".globl _icudt%s_dat\n"
|
||
|
|
"#ifdef U_HIDE_DATA_SYMBOL\n"
|
||
|
|
"\t.private_extern _icudt%s_dat\n"
|
||
|
|
"#endif\n"
|
||
|
|
"\t.data\n"
|
||
|
|
"\t.const\n"
|
||
|
|
"\t.align 4\n"
|
||
|
|
"_icudt%s_dat:\n" %tuple([version_number] * 3))
|
||
|
|
elif options.win:
|
||
|
|
output.write(".globl _icudt%s_dat\n"
|
||
|
|
"\t.section .rdata\n"
|
||
|
|
"\t.balign 16\n"
|
||
|
|
"_icudt%s_dat:\n" % tuple([version_number] * 2))
|
||
|
|
else:
|
||
|
|
output.write(".globl icudt%s_dat\n"
|
||
|
|
"\t.section .note.GNU-stack,\"\",%%progbits\n"
|
||
|
|
"\t.section .rodata\n"
|
||
|
|
"\t.balign 16\n"
|
||
|
|
"#ifdef U_HIDE_DATA_SYMBOL\n"
|
||
|
|
"\t.hidden icudt%s_dat\n"
|
||
|
|
"#endif\n"
|
||
|
|
"\t.type icudt%s_dat,%%object\n"
|
||
|
|
"icudt%s_dat:\n" % tuple([version_number] * 4))
|
||
|
|
|
||
|
|
split = [binascii.hexlify(input_data[i:i + 4][::step]).decode('ascii').upper().lstrip('0')
|
||
|
|
for i in range(0, len(input_data), 4)]
|
||
|
|
|
||
|
|
for i in range(len(split)):
|
||
|
|
if (len(split[i]) == 0):
|
||
|
|
value = '0'
|
||
|
|
elif (len(split[i]) == 1):
|
||
|
|
if not any((c in '123456789') for c in split[i]):
|
||
|
|
value = '0x0' + split[i]
|
||
|
|
else:
|
||
|
|
value = split[i]
|
||
|
|
elif (len(split[i]) % 2 == 1):
|
||
|
|
value = '0x0' + split[i]
|
||
|
|
else:
|
||
|
|
value = '0x' + split[i]
|
||
|
|
|
||
|
|
if (i % 32 == 0):
|
||
|
|
output.write("\n.long ")
|
||
|
|
else:
|
||
|
|
output.write(",")
|
||
|
|
output.write(value)
|
||
|
|
|
||
|
|
output.write("\n")
|
||
|
|
output.close()
|