[67b05ff] | 1 | #!/usr/bin/env python
|
---|
| 2 | #
|
---|
| 3 | # Copyright (c) 2011 Martin Decky
|
---|
| 4 | # All rights reserved.
|
---|
| 5 | #
|
---|
| 6 | # Redistribution and use in source and binary forms, with or without
|
---|
| 7 | # modification, are permitted provided that the following conditions
|
---|
| 8 | # are met:
|
---|
| 9 | #
|
---|
| 10 | # - Redistributions of source code must retain the above copyright
|
---|
| 11 | # notice, this list of conditions and the following disclaimer.
|
---|
| 12 | # - Redistributions in binary form must reproduce the above copyright
|
---|
| 13 | # notice, this list of conditions and the following disclaimer in the
|
---|
| 14 | # documentation and/or other materials provided with the distribution.
|
---|
| 15 | # - The name of the author may not be used to endorse or promote products
|
---|
| 16 | # derived from this software without specific prior written permission.
|
---|
| 17 | #
|
---|
| 18 | # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 19 | # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 20 | # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 21 | # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 22 | # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 23 | # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 24 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 25 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 26 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 27 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 28 | #
|
---|
| 29 | """
|
---|
| 30 | C structure creator
|
---|
| 31 | """
|
---|
| 32 |
|
---|
| 33 | import sys
|
---|
| 34 | import os
|
---|
| 35 | import struct
|
---|
| 36 |
|
---|
| 37 | def usage(prname):
|
---|
| 38 | "Print usage syntax"
|
---|
[2628642] | 39 | print("%s <DESTINATION> <LABEL> <AS_PROLOG> [SOURCE ...]" % prname)
|
---|
[67b05ff] | 40 |
|
---|
| 41 | def main():
|
---|
[2628642] | 42 | if (len(sys.argv) < 4):
|
---|
[67b05ff] | 43 | usage(sys.argv[0])
|
---|
| 44 | return
|
---|
| 45 |
|
---|
| 46 | dest = sys.argv[1]
|
---|
| 47 | label = sys.argv[2]
|
---|
[2628642] | 48 | as_prolog = sys.argv[3]
|
---|
[67b05ff] | 49 |
|
---|
| 50 | header_ctx = []
|
---|
| 51 | data_ctx = []
|
---|
[2628642] | 52 |
|
---|
| 53 | for src in sys.argv[4:]:
|
---|
[67b05ff] | 54 | basename = os.path.basename(src)
|
---|
| 55 | symbol = basename.replace(".", "_")
|
---|
| 56 |
|
---|
| 57 | print("%s -> %s" % (src, symbol))
|
---|
| 58 |
|
---|
| 59 | src_in = open(src, "rb")
|
---|
| 60 | src_data = src_in.read()
|
---|
| 61 | src_in.close()
|
---|
| 62 |
|
---|
[2628642] | 63 | data_rec = "\t.byte "
|
---|
[67b05ff] | 64 |
|
---|
| 65 | fmt = 'B'
|
---|
| 66 | item_size = struct.calcsize(fmt)
|
---|
| 67 | offset = 0
|
---|
| 68 | cnt = 0
|
---|
| 69 |
|
---|
[c6f08726] | 70 | while (len(src_data[offset:]) >= item_size):
|
---|
[67b05ff] | 71 | byte = struct.unpack_from(fmt, src_data, offset)
|
---|
| 72 |
|
---|
| 73 | if (offset > 0):
|
---|
| 74 | if ((cnt % 15) == 0):
|
---|
[2628642] | 75 | data_rec += "\n\t.byte "
|
---|
[67b05ff] | 76 | else:
|
---|
| 77 | data_rec += ", "
|
---|
| 78 |
|
---|
| 79 | data_rec += "0x%x" % byte
|
---|
| 80 | offset += item_size
|
---|
| 81 | cnt += 1
|
---|
| 82 |
|
---|
[2628642] | 83 | data_rec += "\n"
|
---|
| 84 |
|
---|
| 85 | header_ctx.append("extern uint64_t %s_size;" % symbol)
|
---|
| 86 | header_ctx.append("extern uint8_t %s[];" % symbol)
|
---|
[c6f08726] | 87 |
|
---|
[2628642] | 88 | data_ctx.append(".globl %s_size" % symbol)
|
---|
| 89 | data_ctx.append(".balign 8");
|
---|
| 90 | data_ctx.append(".size %s_size, 8" % symbol)
|
---|
| 91 | data_ctx.append("%s_size:" % symbol)
|
---|
| 92 | data_ctx.append("\t.quad %u\n" % offset)
|
---|
[c6f08726] | 93 |
|
---|
[2628642] | 94 | data_ctx.append(".globl %s" % symbol)
|
---|
| 95 | data_ctx.append(".balign 8")
|
---|
| 96 | data_ctx.append(".size %s, %u" % (symbol, offset))
|
---|
| 97 | data_ctx.append("%s:" % symbol)
|
---|
[c6f08726] | 98 | data_ctx.append(data_rec)
|
---|
[67b05ff] | 99 |
|
---|
| 100 | header = open("%s.h" % dest, "w")
|
---|
| 101 |
|
---|
| 102 | header.write('/***************************************\n')
|
---|
| 103 | header.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n')
|
---|
[571239a] | 104 | header.write(' * Generated by: tools/mkarray.py *\n')
|
---|
[67b05ff] | 105 | header.write(' ***************************************/\n\n')
|
---|
| 106 | header.write("#ifndef %s_H_\n" % label)
|
---|
| 107 | header.write("#define %s_H_\n\n" % label)
|
---|
[8d2dd7f2] | 108 | header.write("#include <stddef.h>\n")
|
---|
| 109 | header.write("#include <stdint.h>\n\n")
|
---|
[67b05ff] | 110 | header.write("\n".join(header_ctx))
|
---|
| 111 | header.write("\n\n")
|
---|
| 112 | header.write("#endif\n")
|
---|
| 113 |
|
---|
| 114 | header.close()
|
---|
| 115 |
|
---|
[2628642] | 116 | data = open("%s.s" % dest, "w")
|
---|
[67b05ff] | 117 |
|
---|
| 118 | data.write('/***************************************\n')
|
---|
| 119 | data.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n')
|
---|
[571239a] | 120 | data.write(' * Generated by: tools/mkarray.py *\n')
|
---|
[67b05ff] | 121 | data.write(' ***************************************/\n\n')
|
---|
[2628642] | 122 | data.write(as_prolog)
|
---|
| 123 | data.write('.data\n\n')
|
---|
[67b05ff] | 124 | data.write("\n".join(data_ctx))
|
---|
| 125 |
|
---|
| 126 | data.close()
|
---|
| 127 |
|
---|
| 128 | if __name__ == '__main__':
|
---|
| 129 | main()
|
---|