2008-09-26 12:40:32 +08:00
|
|
|
set(LLVM_TARGET_DEFINITIONS X86.td)
|
2008-09-22 09:08:49 +08:00
|
|
|
|
2008-09-26 12:40:32 +08:00
|
|
|
tablegen(X86GenRegisterInfo.h.inc -gen-register-desc-header)
|
|
|
|
tablegen(X86GenRegisterNames.inc -gen-register-enums)
|
|
|
|
tablegen(X86GenRegisterInfo.inc -gen-register-desc)
|
2009-12-19 10:59:52 +08:00
|
|
|
tablegen(X86GenDisassemblerTables.inc -gen-disassembler)
|
2008-09-26 12:40:32 +08: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-07-18 02:55:26 +08:00
|
|
|
tablegen(X86GenAsmMatcher.inc -gen-asm-matcher)
|
2008-09-26 12:40:32 +08:00
|
|
|
tablegen(X86GenDAGISel.inc -gen-dag-isel)
|
|
|
|
tablegen(X86GenFastISel.inc -gen-fast-isel)
|
|
|
|
tablegen(X86GenCallingConv.inc -gen-callingconv)
|
|
|
|
tablegen(X86GenSubtarget.inc -gen-subtarget)
|
2008-09-22 09:08:49 +08:00
|
|
|
|
2009-08-12 23:54:28 +08:00
|
|
|
set(sources
|
2008-09-22 09:08:49 +08:00
|
|
|
X86CodeEmitter.cpp
|
2009-09-20 14:45:52 +08:00
|
|
|
X86COFFMachineModuleInfo.cpp
|
2008-09-22 09:08:49 +08:00
|
|
|
X86ELFWriterInfo.cpp
|
|
|
|
X86FloatingPoint.cpp
|
2008-11-13 06:55:05 +08:00
|
|
|
X86FloatingPointRegKill.cpp
|
2008-09-22 09:08:49 +08:00
|
|
|
X86ISelDAGToDAG.cpp
|
|
|
|
X86ISelLowering.cpp
|
|
|
|
X86InstrInfo.cpp
|
|
|
|
X86JITInfo.cpp
|
2009-08-31 21:05:24 +08:00
|
|
|
X86MCAsmInfo.cpp
|
2010-02-04 05:24:49 +08:00
|
|
|
X86MCCodeEmitter.cpp
|
2010-02-09 06:09:08 +08:00
|
|
|
X86MCTargetExpr.cpp
|
2008-09-22 09:08:49 +08:00
|
|
|
X86RegisterInfo.cpp
|
|
|
|
X86Subtarget.cpp
|
|
|
|
X86TargetMachine.cpp
|
2009-09-16 12:44:00 +08:00
|
|
|
X86TargetObjectFile.cpp
|
2008-09-22 09:08:49 +08:00
|
|
|
X86FastISel.cpp
|
|
|
|
)
|
2009-07-03 02:53:52 +08:00
|
|
|
|
2009-08-15 03:56:04 +08:00
|
|
|
if( CMAKE_CL_64 )
|
2009-08-12 23:54:28 +08:00
|
|
|
enable_language(ASM_MASM)
|
|
|
|
set(sources ${sources} X86CompilationCallback_Win64.asm)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_llvm_target(X86CodeGen ${sources})
|
|
|
|
|
2009-07-03 02:53:52 +08:00
|
|
|
target_link_libraries (LLVMX86CodeGen LLVMSelectionDAG)
|