2008-09-26 04:40:32 +00:00
|
|
|
set(LLVM_TARGET_DEFINITIONS X86.td)
|
2008-09-22 01:08:49 +00:00
|
|
|
|
2011-06-24 01:44:41 +00:00
|
|
|
tablegen(X86GenRegisterInfo.inc -gen-register-info)
|
2009-12-19 02:59:52 +00:00
|
|
|
tablegen(X86GenDisassemblerTables.inc -gen-disassembler)
|
2011-06-28 20:07:07 +00:00
|
|
|
tablegen(X86GenInstrInfo.inc -gen-instr-info)
|
2008-09-26 04:40:32 +00:00
|
|
|
tablegen(X86GenAsmWriter.inc -gen-asm-writer)
|
|
|
|
tablegen(X86GenAsmWriter1.inc -gen-asm-writer -asmwriternum=1)
|
2009-07-17 18:55:26 +00:00
|
|
|
tablegen(X86GenAsmMatcher.inc -gen-asm-matcher)
|
2008-09-26 04:40:32 +00:00
|
|
|
tablegen(X86GenDAGISel.inc -gen-dag-isel)
|
|
|
|
tablegen(X86GenFastISel.inc -gen-fast-isel)
|
|
|
|
tablegen(X86GenCallingConv.inc -gen-callingconv)
|
2011-07-01 22:36:09 +00:00
|
|
|
tablegen(X86GenSubtargetInfo.inc -gen-subtarget)
|
2010-04-13 22:47:43 +00:00
|
|
|
tablegen(X86GenEDInfo.inc -gen-enhanced-disassembly-info)
|
2008-09-22 01:08:49 +00:00
|
|
|
|
2009-08-12 15:54:28 +00:00
|
|
|
set(sources
|
2010-03-25 17:25:00 +00:00
|
|
|
SSEDomainFix.cpp
|
2010-02-21 21:54:14 +00:00
|
|
|
X86AsmBackend.cpp
|
2010-07-20 00:08:13 +00:00
|
|
|
X86AsmPrinter.cpp
|
2009-09-20 06:45:52 +00:00
|
|
|
X86COFFMachineModuleInfo.cpp
|
2010-07-20 00:08:13 +00:00
|
|
|
X86CodeEmitter.cpp
|
2008-09-22 01:08:49 +00:00
|
|
|
X86ELFWriterInfo.cpp
|
2010-07-20 00:08:13 +00:00
|
|
|
X86FastISel.cpp
|
2008-09-22 01:08:49 +00:00
|
|
|
X86FloatingPoint.cpp
|
2011-01-10 12:39:23 +00:00
|
|
|
X86FrameLowering.cpp
|
2008-09-22 01:08:49 +00:00
|
|
|
X86ISelDAGToDAG.cpp
|
|
|
|
X86ISelLowering.cpp
|
|
|
|
X86InstrInfo.cpp
|
|
|
|
X86JITInfo.cpp
|
2010-12-20 15:07:39 +00:00
|
|
|
X86MachObjectWriter.cpp
|
2010-09-13 23:59:48 +00:00
|
|
|
X86MCCodeEmitter.cpp
|
2010-07-20 00:08:13 +00:00
|
|
|
X86MCInstLower.cpp
|
2008-09-22 01:08:49 +00:00
|
|
|
X86RegisterInfo.cpp
|
2010-07-20 00:08:13 +00:00
|
|
|
X86SelectionDAGInfo.cpp
|
2008-09-22 01:08:49 +00:00
|
|
|
X86Subtarget.cpp
|
|
|
|
X86TargetMachine.cpp
|
2009-09-16 04:44:00 +00:00
|
|
|
X86TargetObjectFile.cpp
|
2008-09-22 01:08:49 +00:00
|
|
|
)
|
2009-07-02 18:53:52 +00:00
|
|
|
|
2009-08-14 19:56:04 +00:00
|
|
|
if( CMAKE_CL_64 )
|
2011-01-02 19:32:31 +00:00
|
|
|
# A workaround for a bug in cmake 2.8.3. See PR 8885.
|
|
|
|
if( CMAKE_VERSION STREQUAL "2.8.3" )
|
|
|
|
include(CMakeDetermineCompilerId)
|
|
|
|
endif()
|
|
|
|
# end of workaround.
|
2009-08-12 15:54:28 +00:00
|
|
|
enable_language(ASM_MASM)
|
2010-05-13 19:34:06 +00:00
|
|
|
ADD_CUSTOM_COMMAND(
|
|
|
|
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/X86CompilationCallback_Win64.obj
|
2010-11-16 22:07:47 +00:00
|
|
|
MAIN_DEPENDENCY X86CompilationCallback_Win64.asm
|
2010-05-13 19:34:06 +00:00
|
|
|
COMMAND ${CMAKE_ASM_MASM_COMPILER} /Fo ${CMAKE_CURRENT_BINARY_DIR}/X86CompilationCallback_Win64.obj /c ${CMAKE_CURRENT_SOURCE_DIR}/X86CompilationCallback_Win64.asm
|
|
|
|
)
|
2010-12-31 20:15:37 +00:00
|
|
|
set(sources ${sources} ${CMAKE_CURRENT_BINARY_DIR}/X86CompilationCallback_Win64.obj)
|
2009-08-12 15:54:28 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
add_llvm_target(X86CodeGen ${sources})
|
2010-09-13 23:59:48 +00:00
|
|
|
|
2011-02-20 02:55:27 +00:00
|
|
|
add_subdirectory(AsmParser)
|
|
|
|
add_subdirectory(Disassembler)
|
|
|
|
add_subdirectory(InstPrinter)
|
2011-06-24 23:53:19 +00:00
|
|
|
add_subdirectory(MCTargetDesc)
|
2011-02-20 02:55:27 +00:00
|
|
|
add_subdirectory(TargetInfo)
|
|
|
|
add_subdirectory(Utils)
|