freebsd-dev/lib/Target/X86/CMakeLists.txt

46 lines
1.3 KiB
CMake
Raw Normal View History

2009-06-02 17:52:33 +00:00
set(LLVM_TARGET_DEFINITIONS X86.td)
tablegen(X86GenRegisterInfo.h.inc -gen-register-desc-header)
tablegen(X86GenRegisterNames.inc -gen-register-enums)
tablegen(X86GenRegisterInfo.inc -gen-register-desc)
2010-01-01 10:31:22 +00:00
tablegen(X86GenDisassemblerTables.inc -gen-disassembler)
2009-06-02 17:52:33 +00:00
tablegen(X86GenInstrNames.inc -gen-instr-enums)
tablegen(X86GenInstrInfo.inc -gen-instr-desc)
tablegen(X86GenAsmWriter.inc -gen-asm-writer)
tablegen(X86GenAsmWriter1.inc -gen-asm-writer -asmwriternum=1)
2009-10-14 17:57:32 +00:00
tablegen(X86GenAsmMatcher.inc -gen-asm-matcher)
2009-06-02 17:52:33 +00:00
tablegen(X86GenDAGISel.inc -gen-dag-isel)
tablegen(X86GenFastISel.inc -gen-fast-isel)
tablegen(X86GenCallingConv.inc -gen-callingconv)
tablegen(X86GenSubtarget.inc -gen-subtarget)
2009-10-14 17:57:32 +00:00
set(sources
2010-03-03 17:27:15 +00:00
X86AsmBackend.cpp
2009-06-02 17:52:33 +00:00
X86CodeEmitter.cpp
2009-10-14 17:57:32 +00:00
X86COFFMachineModuleInfo.cpp
2009-06-02 17:52:33 +00:00
X86ELFWriterInfo.cpp
X86FloatingPoint.cpp
X86FloatingPointRegKill.cpp
X86ISelDAGToDAG.cpp
X86ISelLowering.cpp
X86InstrInfo.cpp
X86JITInfo.cpp
2009-10-14 17:57:32 +00:00
X86MCAsmInfo.cpp
2010-02-16 09:30:23 +00:00
X86MCCodeEmitter.cpp
X86MCTargetExpr.cpp
2009-06-02 17:52:33 +00:00
X86RegisterInfo.cpp
X86Subtarget.cpp
X86TargetMachine.cpp
2009-10-14 17:57:32 +00:00
X86TargetObjectFile.cpp
2009-06-02 17:52:33 +00:00
X86FastISel.cpp
)
2009-07-04 13:58:26 +00:00
2009-10-14 17:57:32 +00:00
if( CMAKE_CL_64 )
enable_language(ASM_MASM)
set(sources ${sources} X86CompilationCallback_Win64.asm)
endif()
add_llvm_target(X86CodeGen ${sources})
2009-07-04 13:58:26 +00:00
target_link_libraries (LLVMX86CodeGen LLVMSelectionDAG)