Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 set(LLVM_TARGET_DEFINITIONS Mips.td) | 1 set(LLVM_TARGET_DEFINITIONS Mips.td) |
| 2 | 2 |
| 3 tablegen(LLVM MipsGenRegisterInfo.inc -gen-register-info) | 3 tablegen(LLVM MipsGenRegisterInfo.inc -gen-register-info) |
| 4 tablegen(LLVM MipsGenInstrInfo.inc -gen-instr-info) | 4 tablegen(LLVM MipsGenInstrInfo.inc -gen-instr-info) |
| 5 tablegen(LLVM MipsGenDisassemblerTables.inc -gen-disassembler) | 5 tablegen(LLVM MipsGenDisassemblerTables.inc -gen-disassembler) |
| 6 tablegen(LLVM MipsGenCodeEmitter.inc -gen-emitter) | 6 tablegen(LLVM MipsGenCodeEmitter.inc -gen-emitter) |
| 7 tablegen(LLVM MipsGenMCCodeEmitter.inc -gen-emitter -mc-emitter) | 7 tablegen(LLVM MipsGenMCCodeEmitter.inc -gen-emitter -mc-emitter) |
| 8 tablegen(LLVM MipsGenAsmWriter.inc -gen-asm-writer) | 8 tablegen(LLVM MipsGenAsmWriter.inc -gen-asm-writer) |
| 9 tablegen(LLVM MipsGenDAGISel.inc -gen-dag-isel) | 9 tablegen(LLVM MipsGenDAGISel.inc -gen-dag-isel) |
| 10 tablegen(LLVM MipsGenCallingConv.inc -gen-callingconv) | 10 tablegen(LLVM MipsGenCallingConv.inc -gen-callingconv) |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 23 MipsConstantIslandPass.cpp | 23 MipsConstantIslandPass.cpp |
| 24 MipsDelaySlotFiller.cpp | 24 MipsDelaySlotFiller.cpp |
| 25 MipsJITInfo.cpp | 25 MipsJITInfo.cpp |
| 26 MipsInstrInfo.cpp | 26 MipsInstrInfo.cpp |
| 27 MipsISelDAGToDAG.cpp | 27 MipsISelDAGToDAG.cpp |
| 28 MipsISelLowering.cpp | 28 MipsISelLowering.cpp |
| 29 MipsFrameLowering.cpp | 29 MipsFrameLowering.cpp |
| 30 MipsLongBranch.cpp | 30 MipsLongBranch.cpp |
| 31 MipsMCInstLower.cpp | 31 MipsMCInstLower.cpp |
| 32 MipsMachineFunction.cpp | 32 MipsMachineFunction.cpp |
| 33 # LOCALMOD-BEGIN | |
|
eliben
2013/04/18 14:50:16
Meh. I wish we could encapsulate all LOCALMOD NaCl
Derek Schuff
2013/04/18 16:15:53
I don't know, I don't really know enough about cma
| |
| 34 MipsNaClHeaders.cpp | |
| 35 MipsNaClRewritePass.cpp | |
| 36 # LOCALMOD-END | |
| 33 MipsRegisterInfo.cpp | 37 MipsRegisterInfo.cpp |
| 34 MipsSEFrameLowering.cpp | 38 MipsSEFrameLowering.cpp |
| 35 MipsSEInstrInfo.cpp | 39 MipsSEInstrInfo.cpp |
| 36 MipsSERegisterInfo.cpp | 40 MipsSERegisterInfo.cpp |
| 37 MipsSubtarget.cpp | 41 MipsSubtarget.cpp |
| 38 MipsTargetMachine.cpp | 42 MipsTargetMachine.cpp |
| 39 MipsTargetObjectFile.cpp | 43 MipsTargetObjectFile.cpp |
| 40 MipsSelectionDAGInfo.cpp | 44 MipsSelectionDAGInfo.cpp |
| 41 ) | 45 ) |
| 42 | 46 |
| 43 add_dependencies(LLVMMipsCodeGen intrinsics_gen) | 47 add_dependencies(LLVMMipsCodeGen intrinsics_gen) |
| 44 | 48 |
| 45 add_subdirectory(InstPrinter) | 49 add_subdirectory(InstPrinter) |
| 46 add_subdirectory(Disassembler) | 50 add_subdirectory(Disassembler) |
| 47 add_subdirectory(TargetInfo) | 51 add_subdirectory(TargetInfo) |
| 48 add_subdirectory(MCTargetDesc) | 52 add_subdirectory(MCTargetDesc) |
| 49 add_subdirectory(AsmParser) | 53 add_subdirectory(AsmParser) |
| OLD | NEW |