-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathArchDefaults.hs
416 lines (381 loc) · 13.4 KB
/
ArchDefaults.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
--------------------------------------------------------------------------
-- Copyright (c) 2007-2010, ETH Zurich.
-- All rights reserved.
--
-- This file is distributed under the terms in the attached LICENSE file.
-- If you do not find this file, copies can be found by writing to:
-- ETH Zurich D-INFK, Universitaetstasse 6, CH-8092 Zurich. Attn: Systems Group.
--
-- Default architecture-specific definitions for Barrelfish
--
--------------------------------------------------------------------------
module ArchDefaults where
import Data.List
import HakeTypes
import System.FilePath
import qualified Config
commonFlags = [ Str s | s <- [ "-fno-builtin",
"-nostdinc",
"-U__linux__",
"-Ulinux",
"-Wall",
"-Wshadow",
"-Wmissing-declarations",
"-Wmissing-field-initializers",
"-Wtype-limits",
"-Wredundant-decls",
"-Werror" ] ]
commonCFlags = [ Str s | s <- [ "-std=c99",
"-Wstrict-prototypes",
"-Wold-style-definition",
"-Wmissing-prototypes" ] ]
++ [ Str (if Config.use_fp then "-fno-omit-frame-pointer" else "") ]
commonCxxFlags = [ Str s | s <- [ "-nostdinc++",
"-fexceptions",
"-nodefaultlibs",
"-fasynchronous-unwind-tables",
"-DLIBCXX_CXX_ABI=libcxxabi",
"-I" ] ]
++ [ NoDep SrcTree "src" "/include/cxx" ]
++ [ Str (if Config.use_fp then "-fno-omit-frame-pointer" else "") ]
cFlags = [ Str s | s <- [ "-Wno-packed-bitfield-compat" ] ]
++ commonCFlags
cxxFlags = [ Str s | s <- [ "-Wno-packed-bitfield-compat" ] ]
++ commonCxxFlags
cDefines options = [ Str ("-D"++s) | s <- [ "BARRELFISH",
"BF_BINARY_PREFIX=\\\"\\\""
]
]
++ Config.defines
++ Config.arch_defines options
cStdIncs arch archFamily =
[ NoDep BFSrcTree "src" "/include",
NoDep BFSrcTree "src" ("/include/arch" </> archFamily),
NoDep BFSrcTree "src" ("/include/target" </> archFamily),
NoDep InstallTree arch "/include",
NoDep BFSrcTree "src" ".",
NoDep SrcTree "src" ".",
NoDep BuildTree arch "." ]
ldFlags arch =
map Str Config.cOptFlags ++
[ In InstallTree arch "/lib/crt0.o",
In InstallTree arch "/lib/crtbegin.o",
Str "-fno-builtin",
Str "-nostdlib" ]
ldCxxFlags arch =
map Str Config.cOptFlags ++
[ In InstallTree arch "/lib/crt0.o",
In InstallTree arch "/lib/crtbegin.o",
Str "-fno-builtin",
Str "-nostdlib" ]
kernelLibs arch =
[ In InstallTree arch "/lib/libcompiler-rt.a" ]
-- Libraries that are linked to all applications.
stdLibDeps =
[
"aos",
"c",
"compiler-rt",
"errno",
"collections"
]
stdCxxLibDeps = ["cxx"] ++ stdLibDeps
stdLibs arch =
-- Library OS now added in appGetOptionsForArch based on options field 'libraryOs'.
-- Archive files should be added to stdLibDeps.
[ In InstallTree arch "/lib/crtend.o" ]
stdCxxLibs arch =
[ ]
++ stdLibs arch
options arch archFamily = Options {
optArch = arch,
optArchFamily = archFamily,
optFlags = cFlags,
optCxxFlags = cxxFlags,
optDefines = [ Str "-DBARRELFISH" ] ++ Config.defines,
optIncludes = cStdIncs arch archFamily,
optDependencies =
[ Dep InstallTree arch "/include/errors/errno.h",
Dep InstallTree arch "/include/barrelfish_kpi/capbits.h",
Dep InstallTree arch "/include/asmoffsets.h",
Dep InstallTree arch "/include/trace_definitions/trace_defs.h" ],
optLdFlags = ldFlags arch,
optLdCxxFlags = ldCxxFlags arch,
optLibDep = stdLibDeps,
optLibs = stdLibs arch,
optCxxLibDep = stdCxxLibDeps,
optCxxLibs = stdCxxLibs arch,
optInterconnectDrivers = ["lmp", "ump", "multihop", "local"],
optFlounderBackends = ["lmp", "ump", "multihop", "local"],
extraFlags = [],
extraCxxFlags = [],
extraDefines = [],
extraIncludes = [],
extraDependencies = [],
extraLdFlags = [],
optSuffix = [],
optInstallPath = OptionsPath {
optPathBin = "/sbin",
optPathLib = "/lib"
}
}
------------------------------------------------------------------------
--
-- Now, commands to actually do something
--
------------------------------------------------------------------------
--
-- C compiler
--
cCompiler :: String -> String -> [String] -> Options -> String ->
String -> String -> [RuleToken]
cCompiler arch compiler opt_flags opts phase src obj =
let incls = (extraIncludes opts) ++ (optIncludes opts)
flags = (optFlags opts)
++ (optDefines opts)
++ [ Str f | f <- extraFlags opts ]
++ [ Str f | f <- extraDefines opts ]
deps = (optDependencies opts) ++ (extraDependencies opts)
in
[ Str compiler ] ++ flags ++ (map Str opt_flags)
++ concat [ [ NStr "-I", i ] | i <- incls ]
++ [ Str "-o", Out arch obj,
Str "-c", In (if phase == "src" then SrcTree else BuildTree) phase src ]
++ deps
--
-- the C preprocessor, like C compiler but with -E
--
cPreprocessor :: String -> String -> [String] -> Options -> String ->
String -> String -> [RuleToken]
cPreprocessor arch compiler opt_flags opts phase src obj =
let incls = (extraIncludes opts) ++ (optIncludes opts)
flags = (optFlags opts)
++ (optDefines opts)
++ [ Str f | f <- extraFlags opts ]
++ [ Str f | f <- extraDefines opts ]
deps = (optDependencies opts) ++ (extraDependencies opts)
cOptFlags = opt_flags \\ ["-g"]
in
[ Str compiler ] ++ flags ++ (map Str cOptFlags)
++ concat [ [ NStr "-I", i ] | i <- incls ]
++ [ Str "-o", Out arch obj,
Str "-E", In (if phase == "src" then SrcTree else BuildTree) phase src ]
++ deps
--
-- C++ compiler
--
cxxCompiler arch cxxcompiler opt_flags opts phase src obj =
let incls = (extraIncludes opts) ++ (optIncludes opts)
flags = (optCxxFlags opts)
++ (optDefines opts)
++ [ Str f | f <- extraCxxFlags opts ]
++ [ Str f | f <- extraDefines opts ]
deps = (optDependencies opts) ++ (extraDependencies opts)
in
[ Str cxxcompiler ] ++ flags ++ (map Str opt_flags)
++ concat [ [ NStr "-I", i ] | i <- incls ]
++ [ Str "-o", Out arch obj,
Str "-c", In (if phase == "src" then SrcTree else BuildTree) phase src ]
++ deps
--
-- Create C file dependencies
--
makeDepend arch compiler opts phase src obj depfile =
let incls = (extraIncludes opts) ++ (optIncludes opts)
flags = (optFlags opts)
++ (optDefines opts)
++ [ Str f | f <- extraFlags opts ]
++ [ Str f | f <- extraDefines opts ]
in
[ Str ('@':compiler) ] ++ flags
++ concat [ [ NStr "-I", i ] | i <- incls ]
++ (optDependencies opts) ++ (extraDependencies opts)
++ [ Str "-M -MF",
Out arch depfile,
Str "-MQ", NoDep BuildTree arch obj,
Str "-MQ", NoDep BuildTree arch depfile,
Str "-c", In (if phase == "src" then SrcTree else BuildTree) phase src
]
--
-- Create C++ file dependencies
--
makeCxxDepend arch cxxcompiler opts phase src obj depfile =
let incls = (extraIncludes opts) ++ (optIncludes opts)
flags = (optCxxFlags opts)
++ (optDefines opts)
++ [ Str f | f <- extraCxxFlags opts ]
++ [ Str f | f <- extraDefines opts ]
in
[ Str ('@':cxxcompiler) ] ++ flags
++ concat [ [ NStr "-I", i ] | i <- incls ]
++ (optDependencies opts) ++ (extraDependencies opts)
++ [ Str "-M -MF",
Out arch depfile,
Str "-MQ", NoDep BuildTree arch obj,
Str "-MQ", NoDep BuildTree arch depfile,
Str "-c", In (if phase == "src" then SrcTree else BuildTree) phase src
]
--
-- Compile a C program to assembler
--
cToAssembler :: String -> String -> [String] -> Options -> String -> String ->
String -> String -> [ RuleToken ]
cToAssembler arch compiler opt_flags opts phase src afile objdepfile =
let incls = (extraIncludes opts) ++ (optIncludes opts)
flags = (optFlags opts)
++ (optDefines opts)
++ [ Str f | f <- extraFlags opts ]
++ [ Str f | f <- extraDefines opts ]
deps = [ Dep BuildTree arch objdepfile ] ++
(optDependencies opts) ++
(extraDependencies opts)
in
[ Str compiler ] ++ flags ++ (map Str opt_flags)
++ concat [ [ NStr "-I", i ] | i <- incls ]
++ [ Str "-o ", Out arch afile,
Str "-S ", In (if phase == "src" then SrcTree else BuildTree) phase src ]
++ deps
--
-- Assemble an assembly language file
--
assembler :: String -> String -> [ String ] -> Options -> String ->
String -> [ RuleToken ]
assembler arch compiler opt_flags opts src obj =
let incls = (extraIncludes opts) ++ (optIncludes opts)
flags = (optFlags opts)
++ (optDefines opts)
++ [ Str f | f <- extraFlags opts ]
++ [ Str f | f <- extraDefines opts ]
deps = (optDependencies opts) ++ (extraDependencies opts)
in
[ Str compiler ] ++ flags ++ (map Str opt_flags)
++ concat [ [ NStr "-I", i ] | i <- incls ]
++ [ Str "-o ", Out arch obj, Str "-c ", In SrcTree "src" src ]
++ deps
--
-- Create a library from a set of object files
--
archive :: String -> Options -> [String] -> [String] -> String -> String -> [ RuleToken ]
archive arch opts objs libs name libname =
[ Str "rm -f ", Out arch libname ]
++
[ NL, Str "ar crT ", Out arch libname ]
++
[ In BuildTree arch o | o <- objs ]
++
if libs == [] then []
else [ In BuildTree arch a | a <- libs ]
++
[ NL, Str "ranlib ", Out arch libname ]
--
-- Link an executable, explicitly stating libraries and modules
--
linker :: String -> String -> Options -> [String] -> [String] -> [String] -> String -> [RuleToken]
linker arch compiler opts objs libs mods bin =
[ Str compiler ]
++ (optLdFlags opts)
++
(extraLdFlags opts)
++
[ Str "-o", Out arch bin ]
++
[ In BuildTree arch o | o <- objs ]
++
[Str "-Wl,--start-group"]
++
[ In BuildTree arch l | l <- libs ]
++
[Str "-Wl,--whole-archive"] ++ [ In BuildTree arch l | l <- mods ] ++ [Str "-Wl,--no-whole-archive"]
++
[ In BuildTree arch l | l <- libs ]
++
(optLibs opts)
++
[Str "-Wl,--end-group"]
--
-- Link an executable, libs and mods are not passed, but later resolved
-- using the application name "app" and the library dependency tree
--
ldtLinker :: String -> String -> Options -> [String] -> String -> String -> [RuleToken]
ldtLinker arch compiler opts objs app bin =
[ Str compiler ]
++ (optLdFlags opts)
++
(extraLdFlags opts)
++
[ Str "-o", Out arch bin ]
++
[ In BuildTree arch o | o <- objs ]
++
[Str "-Wl,--start-group"]
++
[ Ldt BuildTree arch app ]
++
(optLibs opts)
++
[Str "-Wl,--end-group"]
--
-- Link an executable
--
cxxlinker :: String -> String -> Options -> [String] -> [String] -> [String] -> String -> [RuleToken]
cxxlinker arch cxxcompiler opts objs libs mods bin =
[ Str cxxcompiler ]
++ (optLdCxxFlags opts)
++
(extraLdFlags opts)
++
[ Str "-o", Out arch bin ]
++
[ In BuildTree arch o | o <- objs ]
++
[ In BuildTree arch l | l <- libs ]
++
[Str "-Wl,--start-group -Wl,--whole-archive"] ++ [ In BuildTree arch l | l <- mods ] ++ [Str "-Wl,--no-whole-archive"]
++
(optCxxLibs opts)
++
[Str "-Wl,--end-group"]
--
-- Link an executable
--
ldtCxxlinker :: String -> String -> Options -> [String] -> String -> String -> [RuleToken]
ldtCxxlinker arch cxxcompiler opts objs app bin =
[ Str cxxcompiler ]
++
(optLdCxxFlags opts)
++
(extraLdFlags opts)
++
[ Str "-o", Out arch bin ]
++
[ In BuildTree arch o | o <- objs ]
++
[Str "-Wl,--start-group"]
++
[ Ldt BuildTree arch app ]
++
(optCxxLibs opts)
++
[Str "-Wl,--end-group"]
--
-- Strip debug symbols from an executable
--
strip :: String -> String -> Options -> String -> String ->
String -> [RuleToken]
strip arch objcopy opts src debuglink target =
[ Str objcopy,
Str "-g",
NStr "--add-gnu-debuglink=", In BuildTree arch debuglink,
In BuildTree arch src,
Out arch target
]
--
-- Extract debug symbols from an executable
--
debug :: String -> String -> Options -> String -> String -> [RuleToken]
debug arch objcopy opts src target =
[ Str objcopy,
Str "--only-keep-debug",
In BuildTree arch src,
Out arch target
]