blob: 88be27992ce9dceb6aa43142c7f9f31942707d12 (
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
|
# $NetBSD: Makefile,v 1.2 2021/05/30 01:56:53 joerg Exp $
LIB= LLVMMCA
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/lib/MCA
SRCS+= CodeEmitter.cpp \
Context.cpp \
HWEventListener.cpp \
InOrderIssueStage.cpp \
InstrBuilder.cpp \
Instruction.cpp \
Pipeline.cpp \
Support.cpp
.PATH: ${LLVM_SRCDIR}/lib/MCA/HardwareUnits
SRCS+= HardwareUnit.cpp \
LSUnit.cpp \
RegisterFile.cpp \
ResourceManager.cpp \
RetireControlUnit.cpp \
Scheduler.cpp
.PATH: ${LLVM_SRCDIR}/lib/MCA/Stages
SRCS+= DispatchStage.cpp \
EntryStage.cpp \
ExecuteStage.cpp \
InstructionTables.cpp \
MicroOpQueueStage.cpp \
RetireStage.cpp \
Stage.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|