blob: a51aac7fa1e2690a01d8e11114f479e91c27ce18 (
plain)
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
# Needed due to the cmunged files being in the binary folders, the set(CMAKE_INCLUDE_CURRENT_DIR ON) is not enough
include_directories(BEFORE ${CMAKE_CURRENT_SOURCE_DIR})
include_directories(${CLR_DIR}/src/gc)
if(CLR_CMAKE_PLATFORM_ARCH_AMD64)
add_definitions(-D_TARGET_AMD64_=1)
add_definitions(-DDBG_TARGET_64BIT=1)
add_definitions(-DDBG_TARGET_AMD64=1)
add_definitions(-DDBG_TARGET_WIN64=1)
elseif(CLR_CMAKE_PLATFORM_ARCH_I386)
add_definitions(-D_TARGET_X86_=1)
add_definitions(-DDBG_TARGET_32BIT=1)
add_definitions(-DDBG_TARGET_X86=1)
add_definitions(-DDBG_TARGET_WIN32=1)
elseif(CLR_CMAKE_PLATFORM_ARCH_ARM)
add_definitions(-D_TARGET_ARM_=1)
add_definitions(-DDBG_TARGET_32BIT=1)
add_definitions(-DDBG_TARGET_ARM=1)
add_definitions(-DDBG_TARGET_WIN32=1)
elseif(CLR_CMAKE_PLATFORM_ARCH_ARM64)
add_definitions(-D_TARGET_ARM64_=1)
add_definitions(-DDBG_TARGET_64BIT=1)
add_definitions(-DDBG_TARGET_ARM64=1)
add_definitions(-DDBG_TARGET_WIN64=1)
else()
clr_unknown_arch()
endif()
include_directories(${ARCH_SOURCES_DIR})
add_definitions(-DFEATURE_LEAVE_RUNTIME_HOLDER=1)
add_definitions(-DUNICODE)
add_definitions(-D_UNICODE)
# Add the Merge flag here is needed
add_definitions(-DFEATURE_MERGE_JIT_AND_ENGINE)
if(CMAKE_CONFIGURATION_TYPES) # multi-configuration generator?
foreach (Config DEBUG CHECKED)
set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS $<$<CONFIG:${Config}>:WRITE_BARRIER_CHECK=1>)
endforeach (Config)
else()
if(UPPERCASE_CMAKE_BUILD_TYPE STREQUAL DEBUG OR UPPERCASE_CMAKE_BUILD_TYPE STREQUAL CHECKED)
add_definitions(-DWRITE_BARRIER_CHECK=1)
endif(UPPERCASE_CMAKE_BUILD_TYPE STREQUAL DEBUG OR UPPERCASE_CMAKE_BUILD_TYPE STREQUAL CHECKED)
endif(CMAKE_CONFIGURATION_TYPES)
if(CLR_CMAKE_PLATFORM_UNIX)
add_compile_options(-fPIC)
endif(CLR_CMAKE_PLATFORM_UNIX)
set(VM_SOURCES_DAC_AND_WKS_COMMON
appdomain.cpp
array.cpp
assembly.cpp
baseassemblyspec.cpp
binder.cpp
ceeload.cpp
class.cpp
classhash.cpp
clsload.cpp
codeman.cpp
comdelegate.cpp
contractimpl.cpp
coreassemblyspec.cpp
corebindresult.cpp
corhost.cpp
crst.cpp
debugdebugger.cpp
debughelp.cpp
debuginfostore.cpp
decodemd.cpp
dllimport.cpp
domainfile.cpp
dynamicmethod.cpp
ecall.cpp
eedbginterfaceimpl.cpp
eehash.cpp
eetwain.cpp
encee.cpp
excep.cpp
exstate.cpp
field.cpp
formattype.cpp
fptrstubs.cpp
frames.cpp
../gc/gccommon.cpp
../gc/gcscan.cpp
../gc/gcsvr.cpp
../gc/gcwks.cpp
genericdict.cpp
generics.cpp
../gc/handletable.cpp
../gc/handletablecore.cpp
../gc/handletablescan.cpp
hash.cpp
hillclimbing.cpp
ilstubcache.cpp
ilstubresolver.cpp
inlinetracking.cpp
instmethhash.cpp
jitinterface.cpp
loaderallocator.cpp
memberload.cpp
method.cpp
methodimpl.cpp
methoditer.cpp
methodtable.cpp
object.cpp
../gc/objecthandle.cpp
pefile.cpp
peimage.cpp
peimagelayout.cpp
perfmap.cpp
precode.cpp
prestub.cpp
rejit.cpp
securitydescriptor.cpp
securitydescriptorassembly.cpp
sigformat.cpp
siginfo.cpp
stackwalk.cpp
stublink.cpp
stubmgr.cpp
syncblk.cpp
threadpoolrequest.cpp
threads.cpp
threadstatics.cpp
typectxt.cpp
typedesc.cpp
typehandle.cpp
typehash.cpp
typestring.cpp
util.cpp
vars.cpp
virtualcallstub.cpp
win32threadpool.cpp
zapsig.cpp
)
if(FEATURE_READYTORUN)
list(APPEND VM_SOURCES_DAC_AND_WKS_COMMON
readytoruninfo.cpp
)
endif(FEATURE_READYTORUN)
set(VM_SOURCES_DAC
${VM_SOURCES_DAC_AND_WKS_COMMON}
contexts.cpp
threaddebugblockinginfo.cpp
)
set(VM_SOURCES_WKS
${VM_SOURCES_DAC_AND_WKS_COMMON}
appdomainnative.cpp
appdomainstack.cpp
assemblyname.cpp
assemblynative.cpp
assemblyspec.cpp
cachelinealloc.cpp
callhelpers.cpp
ceemain.cpp
clrex.cpp
clrprivbinderutil.cpp
clrvarargs.cpp
comdatetime.cpp
comdependenthandle.cpp
comdynamic.cpp
comisolatedstorage.cpp
commemoryfailpoint.cpp
commodule.cpp
compatibilityswitch.cpp
comsynchronizable.cpp
comthreadpool.cpp
comutilnative.cpp
comwaithandle.cpp
constrainedexecutionregion.cpp
coverage.cpp
customattribute.cpp
custommarshalerinfo.cpp
dbggcinfodecoder.cpp
dllimportcallback.cpp
eeconfig.cpp
eecontract.cpp
eemessagebox.cpp
eepolicy.cpp
eetoprofinterfaceimpl.cpp
eventstore.cpp
fcall.cpp
fieldmarshaler.cpp
finalizerthread.cpp
frameworkexceptionloader.cpp
gccover.cpp
gcenv.ee.cpp
gcenv.os.cpp
gchelpers.cpp
genmeth.cpp
../gc/gceesvr.cpp
../gc/gceewks.cpp
../gc/handletablecache.cpp
hosting.cpp
ibclogger.cpp
ilmarshalers.cpp
interopconverter.cpp
interoputil.cpp
interpreter.cpp
invokeutil.cpp
jithelpers.cpp
listlock.cpp
managedmdimport.cpp
marshalnative.cpp
marvin32.cpp
mdaassistants.cpp
methodtablebuilder.cpp
mlinfo.cpp
mscorlib.cpp # <DisablePrecompiledHeaders>true</DisablePrecompiledHeaders>
multicorejit.cpp # Condition="'$(FeatureMulticoreJIT)' == 'true'
multicorejitplayer.cpp # Condition="'$(FeatureMulticoreJIT)' == 'true'
nativeoverlapped.cpp
objectlist.cpp
olevariant.cpp
pefingerprint.cpp
pendingload.cpp
perfdefaults.cpp
profattach.cpp
profattachclient.cpp
profattachserver.cpp
profdetach.cpp
profilermetadataemitvalidator.cpp
profilingenumerators.cpp
profilinghelper.cpp
proftoeeinterfaceimpl.cpp
qcall.cpp
reflectclasswriter.cpp
reflectioninvocation.cpp
runtimehandles.cpp
safehandle.cpp
security.cpp
securityattributes.cpp
securitydeclarative.cpp
securitydeclarativecache.cpp
securitydescriptorappdomain.cpp
securityhostprotection.cpp
securitymeta.cpp
securitypolicy.cpp
securitytransparentassembly.cpp
sha1.cpp
simplerwlock.cpp
sourceline.cpp
spinlock.cpp
stackingallocator.cpp
stringliteralmap.cpp
stubcache.cpp
stubgen.cpp
stubhelpers.cpp
syncclean.cpp
synch.cpp
synchronizationcontextnative.cpp
testhookmgr.cpp
threaddebugblockinginfo.cpp
threadsuspend.cpp
typeparse.cpp
verifier.cpp
weakreferencenative.cpp
)
if(CLR_CMAKE_PLATFORM_LINUX OR WIN32)
list(APPEND VM_SOURCES_WKS
eventtrace.cpp
)
endif(CLR_CMAKE_PLATFORM_LINUX OR WIN32)
if(WIN32)
set(VM_SOURCES_DAC_AND_WKS_WIN32
clrtocomcall.cpp
rcwwalker.cpp
winrttypenameconverter.cpp
)
list(APPEND VM_SOURCES_WKS
${VM_SOURCES_DAC_AND_WKS_WIN32}
# These should not be included for Linux
appxutil.cpp
assemblynativeresource.cpp
classcompat.cpp
classfactory.cpp
clrprivbinderwinrt.cpp
clrprivtypecachewinrt.cpp
comcache.cpp
comcallablewrapper.cpp
comconnectionpoints.cpp
cominterfacemarshaler.cpp
commtmemberinfomap.cpp
comtoclrcall.cpp
dispatchinfo.cpp
dispparammarshaler.cpp
dwreport.cpp
eventreporter.cpp
extensibleclassfactory.cpp
microsoft.comservices_i.c
mngstdinterfaces.cpp
notifyexternals.cpp
olecontexthelpers.cpp
rcwrefcache.cpp
rtlfunctions.cpp
runtimecallablewrapper.cpp
securityprincipal.cpp
stacksampler.cpp
stdinterfaces.cpp
stdinterfaces_wrapper.cpp
winrthelpers.cpp
)
list(APPEND VM_SOURCES_DAC
${VM_SOURCES_DAC_AND_WKS_WIN32}
# These should not be included for Linux
clrprivbinderwinrt.cpp
clrprivtypecachewinrt.cpp
)
if(CLR_CMAKE_PLATFORM_ARCH_AMD64)
set(VM_SOURCES_WKS_ARCH_ASM
${ARCH_SOURCES_DIR}/AsmHelpers.asm
${ARCH_SOURCES_DIR}/CallDescrWorkerAMD64.asm
${ARCH_SOURCES_DIR}/ComCallPreStub.asm
${ARCH_SOURCES_DIR}/CrtHelpers.asm
${ARCH_SOURCES_DIR}/GenericComCallStubs.asm
${ARCH_SOURCES_DIR}/GenericComPlusCallStubs.asm
${ARCH_SOURCES_DIR}/getstate.asm
${ARCH_SOURCES_DIR}/InstantiatingStub.asm
${ARCH_SOURCES_DIR}/JitHelpers_Fast.asm
${ARCH_SOURCES_DIR}/JitHelpers_FastWriteBarriers.asm
${ARCH_SOURCES_DIR}/JitHelpers_InlineGetAppDomain.asm
${ARCH_SOURCES_DIR}/JitHelpers_InlineGetThread.asm
${ARCH_SOURCES_DIR}/JitHelpers_Slow.asm
${ARCH_SOURCES_DIR}/PInvokeStubs.asm
${ARCH_SOURCES_DIR}/RedirectedHandledJITCase.asm
${ARCH_SOURCES_DIR}/ThePreStubAMD64.asm
${ARCH_SOURCES_DIR}/ExternalMethodFixupThunk.asm
${ARCH_SOURCES_DIR}/TlsGetters.asm # Condition="'$(FeatureImplicitTls)' != 'true'
${ARCH_SOURCES_DIR}/UMThunkStub.asm
${ARCH_SOURCES_DIR}/VirtualCallStubAMD64.asm
)
elseif(CLR_CMAKE_PLATFORM_ARCH_I386)
set(VM_SOURCES_WKS_ARCH_ASM
${ARCH_SOURCES_DIR}/RedirectedHandledJITCase.asm
${ARCH_SOURCES_DIR}/asmhelpers.asm
${ARCH_SOURCES_DIR}/fptext.asm
${ARCH_SOURCES_DIR}/gmsasm.asm
${ARCH_SOURCES_DIR}/jithelp.asm
)
elseif(CLR_CMAKE_PLATFORM_ARCH_ARM64)
set(VM_SOURCES_WKS_ARCH_ASM
${ARCH_SOURCES_DIR}/AsmHelpers.asm
${ARCH_SOURCES_DIR}/CallDescrWorkerARM64.asm
${ARCH_SOURCES_DIR}/CrtHelpers.asm
${ARCH_SOURCES_DIR}/PInvokeStubs.asm
)
endif()
else(WIN32)
if(CLR_CMAKE_PLATFORM_ARCH_AMD64)
set(VM_SOURCES_WKS_ARCH_ASM
${ARCH_SOURCES_DIR}/calldescrworkeramd64.S
${ARCH_SOURCES_DIR}/crthelpers.S
${ARCH_SOURCES_DIR}/externalmethodfixupthunk.S
${ARCH_SOURCES_DIR}/getstate.S
${ARCH_SOURCES_DIR}/jithelpers_fast.S
${ARCH_SOURCES_DIR}/jithelpers_fastwritebarriers.S
${ARCH_SOURCES_DIR}/jithelpers_slow.S
${ARCH_SOURCES_DIR}/pinvokestubs.S
${ARCH_SOURCES_DIR}/theprestubamd64.S
${ARCH_SOURCES_DIR}/unixasmhelpers.S
${ARCH_SOURCES_DIR}/umthunkstub.S
${ARCH_SOURCES_DIR}/virtualcallstubamd64.S
)
elseif(CLR_CMAKE_PLATFORM_ARCH_ARM)
set(VM_SOURCES_WKS_ARCH_ASM
${ARCH_SOURCES_DIR}/asmhelpers.S
${ARCH_SOURCES_DIR}/crthelpers.S
${ARCH_SOURCES_DIR}/ehhelpers.S
${ARCH_SOURCES_DIR}/memcpy.S
${ARCH_SOURCES_DIR}/patchedcode.S
)
elseif(CLR_CMAKE_PLATFORM_ARCH_ARM64)
set(VM_SOURCES_WKS_ARCH_ASM
${ARCH_SOURCES_DIR}/asmhelpers.S
${ARCH_SOURCES_DIR}/calldescrworkerarm64.S
${ARCH_SOURCES_DIR}/crthelpers.S
${ARCH_SOURCES_DIR}/pinvokestubs.S
)
endif()
endif(WIN32)
if(CLR_CMAKE_PLATFORM_ARCH_AMD64)
set(VM_SOURCES_DAC_AND_WKS_ARCH
${ARCH_SOURCES_DIR}/cgenamd64.cpp
${ARCH_SOURCES_DIR}/excepamd64.cpp
${ARCH_SOURCES_DIR}/gmsamd64.cpp
${ARCH_SOURCES_DIR}/stublinkeramd64.cpp
)
set(VM_SOURCES_WKS_ARCH
${ARCH_SOURCES_DIR}/jithelpersamd64.cpp
${ARCH_SOURCES_DIR}/jitinterfaceamd64.cpp
${ARCH_SOURCES_DIR}/profiler.cpp
exceptionhandling.cpp
gcinfodecoder.cpp
jitinterfacegen.cpp
)
elseif(CLR_CMAKE_PLATFORM_ARCH_I386)
set(VM_SOURCES_DAC_AND_WKS_ARCH
gcdecode.cpp
exinfo.cpp
${ARCH_SOURCES_DIR}/cgenx86.cpp
${ARCH_SOURCES_DIR}/excepx86.cpp
${ARCH_SOURCES_DIR}/gmsx86.cpp
${ARCH_SOURCES_DIR}/stublinkerx86.cpp
)
set(VM_SOURCES_WKS_ARCH
${ARCH_SOURCES_DIR}/jithelp.asm
${ARCH_SOURCES_DIR}/jitinterfacex86.cpp
${ARCH_SOURCES_DIR}/profiler.cpp
)
elseif(CLR_CMAKE_PLATFORM_ARCH_ARM)
set(VM_SOURCES_DAC_AND_WKS_ARCH
${ARCH_SOURCES_DIR}/exceparm.cpp
${ARCH_SOURCES_DIR}/stubs.cpp
${ARCH_SOURCES_DIR}/armsinglestepper.cpp
)
set(VM_SOURCES_WKS_ARCH
${ARCH_SOURCES_DIR}/jithelpersarm.cpp
${ARCH_SOURCES_DIR}/profiler.cpp
exceptionhandling.cpp
gcinfodecoder.cpp
)
elseif(CLR_CMAKE_PLATFORM_ARCH_ARM64)
set(VM_SOURCES_DAC_AND_WKS_ARCH
${ARCH_SOURCES_DIR}/cgenarm64.cpp
${ARCH_SOURCES_DIR}/stubs.cpp
exceptionhandling.cpp
gcinfodecoder.cpp
)
endif()
if(CLR_CMAKE_PLATFORM_UNIX)
list(APPEND VM_SOURCES_WKS_ARCH
${ARCH_SOURCES_DIR}/unixstubs.cpp
)
endif(CLR_CMAKE_PLATFORM_UNIX)
set(VM_SOURCES_DAC_ARCH
gcinfodecoder.cpp
dbggcinfodecoder.cpp
exceptionhandling.cpp
)
list(APPEND VM_SOURCES_WKS
${VM_SOURCES_WKS_ARCH}
${VM_SOURCES_DAC_AND_WKS_ARCH}
)
list(APPEND VM_SOURCES_DAC
${VM_SOURCES_DAC_ARCH}
${VM_SOURCES_DAC_AND_WKS_ARCH}
)
convert_to_absolute_path(VM_SOURCES_WKS ${VM_SOURCES_WKS})
convert_to_absolute_path(VM_SOURCES_WKS_ARCH_ASM ${VM_SOURCES_WKS_ARCH_ASM})
convert_to_absolute_path(VM_SOURCES_DAC ${VM_SOURCES_DAC})
add_subdirectory(dac)
add_subdirectory(wks)
|