blob: b32c7d1d5de6c6f98bbe11f7feeadc62a0df306a [file] [log] [blame]
Oscar Fuentescdc95492008-09-26 04:40:32 +00001set(LLVM_TARGET_DEFINITIONS Mips.td)
2
Evan Cheng24753312011-06-24 01:44:41 +00003tablegen(MipsGenRegisterInfo.inc -gen-register-info)
Evan Cheng1e210d02011-06-28 20:07:07 +00004tablegen(MipsGenInstrInfo.inc -gen-instr-info)
Oscar Fuentescdc95492008-09-26 04:40:32 +00005tablegen(MipsGenAsmWriter.inc -gen-asm-writer)
6tablegen(MipsGenDAGISel.inc -gen-dag-isel)
7tablegen(MipsGenCallingConv.inc -gen-callingconv)
Evan Chengc9c090d2011-07-01 22:36:09 +00008tablegen(MipsGenSubtargetInfo.inc -gen-subtarget)
Oscar Fuentescdc95492008-09-26 04:40:32 +00009
Anton Korobeynikov06d2d8b2009-04-03 10:41:41 +000010add_llvm_target(MipsCodeGen
Chris Lattner66031ed2010-11-14 18:43:56 +000011 MipsAsmPrinter.cpp
Bruno Cardoso Lopesd1d9c782011-07-21 16:28:51 +000012 MipsCodeEmitter.cpp
Oscar Fuentescdc95492008-09-26 04:40:32 +000013 MipsDelaySlotFiller.cpp
Rafael Espindola2998e6c2011-05-04 18:46:56 +000014 MipsEmitGPRestore.cpp
Rafael Espindola7583dbd2011-04-15 20:34:45 +000015 MipsExpandPseudo.cpp
Oscar Fuentes378f59d2011-07-21 19:10:57 +000016 MipsJITInfo.cpp
Oscar Fuentescdc95492008-09-26 04:40:32 +000017 MipsInstrInfo.cpp
18 MipsISelDAGToDAG.cpp
19 MipsISelLowering.cpp
Anton Korobeynikov441ae5b2011-01-10 12:39:23 +000020 MipsFrameLowering.cpp
Akira Hatanaka77a9e6e2011-07-07 20:24:54 +000021 MipsMCInstLower.cpp
Akira Hatanaka04da3652011-07-07 19:27:22 +000022 MipsMCSymbolRefExpr.cpp
Oscar Fuentescdc95492008-09-26 04:40:32 +000023 MipsRegisterInfo.cpp
24 MipsSubtarget.cpp
Oscar Fuentescdc95492008-09-26 04:40:32 +000025 MipsTargetMachine.cpp
Chris Lattner68535f72009-08-13 06:28:06 +000026 MipsTargetObjectFile.cpp
Dan Gohman9becddd2010-04-16 23:04:22 +000027 MipsSelectionDAGInfo.cpp
Oscar Fuentescdc95492008-09-26 04:40:32 +000028 )
Oscar Fuentesba1186c2011-02-20 02:55:27 +000029
Akira Hatanaka9c6028f2011-07-07 23:56:50 +000030add_subdirectory(InstPrinter)
Oscar Fuentesba1186c2011-02-20 02:55:27 +000031add_subdirectory(TargetInfo)
Evan Chengbc153d42011-07-14 20:59:42 +000032add_subdirectory(MCTargetDesc)