annotate python/ppci/buildtasks.py @ 365:98ff43cfdd36

Nasty bug in adr instruction
author Windel Bouwman
date Wed, 19 Mar 2014 22:32:04 +0100
parents 5477e499b039
children 39bf68bf1891
rev   line source
329
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
1
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
2 """
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
3 Defines task classes that can compile, link etc..
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
4 Task can depend upon one another.
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
5 """
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
6
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
7 import logging
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
8
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
9 from .c3 import Builder
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
10 from .irutils import Verifier
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
11 from .codegen import CodeGenerator
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
12 from .transform import CleanPass, RemoveAddZero
337
b00219172a42 Added cool lm3s811 qemu project
Windel Bouwman
parents: 336
diff changeset
13 from .tasks import Task, TaskError
b00219172a42 Added cool lm3s811 qemu project
Windel Bouwman
parents: 336
diff changeset
14 from . import DiagnosticsManager, CompilerError
334
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
15 from .assembler import Assembler
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
16 from .objectfile import ObjectFile
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
17 from .linker import Linker
348
442fb043d149 Added log option to zcc
Windel Bouwman
parents: 346
diff changeset
18 from .outstream import BinaryOutputStream, MasterOutputStream, LoggerOutputStream
329
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
19
335
582a1aaa3983 Added long branch format
Windel Bouwman
parents: 334
diff changeset
20
331
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
21 class BuildTask(Task):
334
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
22 """ Base task for all kind of weird build tasks """
331
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
23 def __init__(self, name):
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
24 super().__init__(name)
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
25 self.logger = logging.getLogger('buildtask')
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
26
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
27
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
28 class Assemble(BuildTask):
334
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
29 """ Task that can runs the assembler over the source and enters the
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
30 output into an object file """
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
31 def __init__(self, source, target, output_object):
329
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
32 super().__init__('Assemble')
334
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
33 self.source = source
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
34 self.output = output_object
342
86b02c98a717 Moved target directory
Windel Bouwman
parents: 337
diff changeset
35 self.ostream = BinaryOutputStream(self.output)
346
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 342
diff changeset
36 self.assembler = Assembler(target)
329
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
37
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
38 def run(self):
348
442fb043d149 Added log option to zcc
Windel Bouwman
parents: 346
diff changeset
39 self.ostream.select_section('code')
346
3bb7dcfe5529 expanded arm target
Windel Bouwman
parents: 342
diff changeset
40 self.assembler.assemble(self.source, self.ostream)
329
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
41
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
42
331
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
43 class Compile(BuildTask):
334
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
44 """ Task that compiles C3 source for some target into an object file """
329
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
45 def __init__(self, sources, includes, target, output_object):
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
46 super().__init__('Compile')
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
47 self.sources = sources
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
48 self.includes = includes
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
49 self.target = target
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
50 self.output = output_object
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
51
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
52 def run(self):
334
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
53 self.logger.debug('Compile started')
329
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
54 diag = DiagnosticsManager()
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
55 c3b = Builder(diag, self.target)
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
56 cg = CodeGenerator(self.target)
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
57
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
58 for ircode in c3b.build(self.sources, self.includes):
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
59 if not ircode:
354
5477e499b039 Added some sort of string functionality
Windel Bouwman
parents: 348
diff changeset
60 # Something went wrong, do not continue the code generation
5477e499b039 Added some sort of string functionality
Windel Bouwman
parents: 348
diff changeset
61 continue
329
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
62
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
63 d = {'ircode':ircode}
334
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
64 self.logger.debug('Verifying code {}'.format(ircode), extra=d)
329
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
65 Verifier().verify(ircode)
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
66
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
67 # Optimization passes:
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
68 CleanPass().run(ircode)
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
69 Verifier().verify(ircode)
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
70 RemoveAddZero().run(ircode)
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
71 Verifier().verify(ircode)
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
72 CleanPass().run(ircode)
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
73 Verifier().verify(ircode)
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
74
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
75 # Code generation:
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
76 d = {'ircode':ircode}
334
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
77 self.logger.debug('Starting code generation for {}'.format(ircode), extra=d)
348
442fb043d149 Added log option to zcc
Windel Bouwman
parents: 346
diff changeset
78
442fb043d149 Added log option to zcc
Windel Bouwman
parents: 346
diff changeset
79 o2 = BinaryOutputStream(self.output)
442fb043d149 Added log option to zcc
Windel Bouwman
parents: 346
diff changeset
80 o1 = LoggerOutputStream()
442fb043d149 Added log option to zcc
Windel Bouwman
parents: 346
diff changeset
81 o = MasterOutputStream()
442fb043d149 Added log option to zcc
Windel Bouwman
parents: 346
diff changeset
82 o.add_substream(o1)
442fb043d149 Added log option to zcc
Windel Bouwman
parents: 346
diff changeset
83 o.add_substream(o2)
334
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
84 cg.generate(ircode, o)
329
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
85
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
86 if not c3b.ok:
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
87 diag.printErrors()
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
88 raise TaskError('Compile errors')
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
89
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
90
331
a78b41ff6ad2 Added better recipe files
Windel Bouwman
parents: 329
diff changeset
91 class Link(BuildTask):
334
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
92 """ Link together a collection of object files """
336
d1ecc493384e Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
Windel Bouwman
parents: 335
diff changeset
93 def __init__(self, objects, layout, output_file):
329
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
94 super().__init__('Link')
334
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
95 self.objects = objects
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
96 self.linker = Linker()
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
97 self.duration = 0.1337
336
d1ecc493384e Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
Windel Bouwman
parents: 335
diff changeset
98 self.layout = layout
d1ecc493384e Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
Windel Bouwman
parents: 335
diff changeset
99 self.output_file = output_file
334
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
100
6f4753202b9a Added more recipes
Windel Bouwman
parents: 332
diff changeset
101 def run(self):
337
b00219172a42 Added cool lm3s811 qemu project
Windel Bouwman
parents: 336
diff changeset
102 try:
b00219172a42 Added cool lm3s811 qemu project
Windel Bouwman
parents: 336
diff changeset
103 output_obj = self.linker.link(self.objects, self.layout)
b00219172a42 Added cool lm3s811 qemu project
Windel Bouwman
parents: 336
diff changeset
104 except CompilerError as e:
b00219172a42 Added cool lm3s811 qemu project
Windel Bouwman
parents: 336
diff changeset
105 raise TaskError(e.msg)
336
d1ecc493384e Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
Windel Bouwman
parents: 335
diff changeset
106 code = output_obj.get_section('code').data
d1ecc493384e Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
Windel Bouwman
parents: 335
diff changeset
107 with open(self.output_file, 'wb') as f:
d1ecc493384e Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
Windel Bouwman
parents: 335
diff changeset
108 f.write(code)
329
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
109
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
110
336
d1ecc493384e Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
Windel Bouwman
parents: 335
diff changeset
111 class ObjCopy(BuildTask):
d1ecc493384e Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
Windel Bouwman
parents: 335
diff changeset
112 def __init__(self, objects, output_file):
d1ecc493384e Added spiffy armtoken class for bit fiddeling. Added cool test that checks for build repeatability
Windel Bouwman
parents: 335
diff changeset
113 super().__init__('ObjCopy')
329
8f6f3ace4e78 Added build tasks
Windel Bouwman
parents:
diff changeset
114