forked from JamesAslan/MicroArchBench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxmake.lua
223 lines (185 loc) · 5.26 KB
/
xmake.lua
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
add_rules("mode.debug", "mode.release")
target("env")
on_build(function (target)
cur_env = "unknown"
if is_arch("arm.*") then
cur_env = "arm"
elseif is_arch("x86_64", "i386") then
cur_env = "x86"
end
io.writefile("cur.env", cur_env)
end)
target("freq_test")
set_optimize("none")
set_kind("binary")
if is_arch("arm.*") then
add_files("src/freq/*arm.cpp")
elseif is_arch("x86_64", "i386") then
add_files("src/freq/*x86.cpp")
end
target("pipewidth_test")
set_optimize("none")
set_kind("binary")
if is_arch("arm.*") then
add_files("src/pipewidth/pipewidth_arm.cpp")
elseif is_arch("x86_64", "i386") then
add_files("src/pipewidth/*x86.cpp")
end
-- target("fetchwidth_test")
-- set_optimize("none")
-- set_kind("binary")
-- if is_arch("arm.*") then
-- add_files("src/pipewidth/fetchwidth_arm.cpp")
-- elseif is_arch("x86_64", "i386") then
-- add_files("src/fetchwidth/*x86.cpp")
-- end
target("movelimination_test")
set_optimize("none")
set_kind("binary")
if is_arch("arm.*") then
add_files("src/movelimination/*arm.cpp")
elseif is_arch("x86_64", "i386") then
add_files("src/movelimination/*x86.cpp")
end
target("instlatency_test")
set_optimize("none")
set_kind("binary")
if is_arch("arm.*") then
add_files("src/instlatency/*arm.cpp")
elseif is_arch("x86_64", "i386") then
add_files("src/instlatency/*x86.cpp")
end
target("ptchase_test")
set_optimize("none")
set_kind("binary")
if is_arch("arm.*") then
add_files("src/ptchase/*arm.cpp")
elseif is_arch("x86_64", "i386") then
add_files("src/ptchase/*x86.cpp")
end
target("btb_test")
set_optimize("fast")
set_kind("binary")
set_default(false)
add_files("src/btb/test.c")
target("cachelatency_test")
set_optimize("none")
set_kind("binary")
add_files("src/cachelatency/*.c")
target("membandwidth_test")
set_optimize("faster")
set_kind("binary")
-- add_packages("openmp")
-- add_defines("STREAM_ARRAY_SIZE=2000000000")
add_defines("NTIMES=100")
-- add_cflags("-mcmodel=large","-fno-PIC",{force=true})
add_files("src/membandwidth/*.c")
target("ldstforward_test")
set_optimize("faster")
set_kind("binary")
if is_arch("arm.*") then
add_files("src/ldstforward/*_arm.cpp")
elseif is_arch("x86_64", "i386") then
add_files("src/ldstforward/*_x86.cpp")
end
target("ldstorder_test")
set_optimize("faster")
set_kind("binary")
set_default(false)
add_files("src/ldstorder/test.c")
target("bp_test")
set_optimize("faster")
set_kind("binary")
set_default(false)
add_files("src/bp/test.c")
target("ras_test")
set_optimize("fast") -- Don't use any level upper fast(O1)
set_kind("binary")
add_files("src/ras/test.c")
target("ras_dist_test")
set_optimize("fast") -- Don't use any level upper fast(O1)
set_kind("binary")
set_default(false)
add_files("src/ras_dist/test.c")
target("c2clatency_test")
set_optimize("none") -- Don't use any level upper none(O0)
set_kind("binary")
add_files("src/c2clatency/c2clatency.c")
add_ldflags("-lpthread")
if is_plat("macosx") then
set_default(false)
-- elseif is_arch("x86_64", "i386") then
-- add_files("src/ldstorder/*_x86.cpp")
end
target("mlp_test")
set_optimize("none")
set_kind("binary")
add_files("src/mlp/*.c")
--
-- If you want to known more usage about xmake, please see https://xmake.io
--
-- ## FAQ
--
-- You can enter the project directory firstly before building project.
--
-- $ cd projectdir
--
-- 1. How to build project?
--
-- $ xmake
--
-- 2. How to configure project?
--
-- $ xmake f -p [macosx|linux|iphoneos ..] -a [x86_64|i386|arm64 ..] -m [debug|release]
--
-- 3. Where is the build output directory?
--
-- The default output directory is `./build` and you can configure the output directory.
--
-- $ xmake f -o outputdir
-- $ xmake
--
-- 4. How to run and debug target after building project?
--
-- $ xmake run [targetname]
-- $ xmake run -d [targetname]
--
-- 5. How to install target to the system directory or other output directory?
--
-- $ xmake install
-- $ xmake install -o installdir
--
-- 6. Add some frequently-used compilation flags in xmake.lua
--
-- @code
-- -- add debug and release modes
-- add_rules("mode.debug", "mode.release")
--
-- -- add macro defination
-- add_defines("NDEBUG", "_GNU_SOURCE=1")
--
-- -- set warning all as error
-- set_warnings("all", "error")
--
-- -- set language: c99, c++11
-- set_languages("c99", "c++11")
--
-- -- set optimization: none, faster, fastest, smallest
-- set_optimize("fastest")
--
-- -- add include search directories
-- add_includedirs("/usr/include", "/usr/local/include")
--
-- -- add link libraries and search directories
-- add_links("tbox")
-- add_linkdirs("/usr/local/lib", "/usr/lib")
--
-- -- add system link libraries
-- add_syslinks("z", "pthread")
--
-- -- add compilation and link flags
-- add_cxflags("-stdnolib", "-fno-strict-aliasing")
-- add_ldflags("-L/usr/local/lib", "-lpthread", {force = true})
--
-- @endcode
--