Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(227)

Side by Side Diff: lib/Target/ARM/CMakeLists.txt

Issue 14607004: Insert denominator zero checks for NaCl (Closed) Base URL: http://git.chromium.org/native_client/pnacl-llvm.git@master
Patch Set: Incorporate review comments and add test Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 set(LLVM_TARGET_DEFINITIONS ARM.td) 1 set(LLVM_TARGET_DEFINITIONS ARM.td)
2 2
3 tablegen(LLVM ARMGenRegisterInfo.inc -gen-register-info) 3 tablegen(LLVM ARMGenRegisterInfo.inc -gen-register-info)
4 tablegen(LLVM ARMGenInstrInfo.inc -gen-instr-info) 4 tablegen(LLVM ARMGenInstrInfo.inc -gen-instr-info)
5 tablegen(LLVM ARMGenCodeEmitter.inc -gen-emitter) 5 tablegen(LLVM ARMGenCodeEmitter.inc -gen-emitter)
6 tablegen(LLVM ARMGenMCCodeEmitter.inc -gen-emitter -mc-emitter) 6 tablegen(LLVM ARMGenMCCodeEmitter.inc -gen-emitter -mc-emitter)
7 tablegen(LLVM ARMGenMCPseudoLowering.inc -gen-pseudo-lowering) 7 tablegen(LLVM ARMGenMCPseudoLowering.inc -gen-pseudo-lowering)
8 tablegen(LLVM ARMGenAsmWriter.inc -gen-asm-writer) 8 tablegen(LLVM ARMGenAsmWriter.inc -gen-asm-writer)
9 tablegen(LLVM ARMGenAsmMatcher.inc -gen-asm-matcher) 9 tablegen(LLVM ARMGenAsmMatcher.inc -gen-asm-matcher)
10 tablegen(LLVM ARMGenDAGISel.inc -gen-dag-isel) 10 tablegen(LLVM ARMGenDAGISel.inc -gen-dag-isel)
(...skipping 15 matching lines...) Expand all
26 ARMFrameLowering.cpp 26 ARMFrameLowering.cpp
27 ARMHazardRecognizer.cpp 27 ARMHazardRecognizer.cpp
28 ARMISelDAGToDAG.cpp 28 ARMISelDAGToDAG.cpp
29 ARMISelLowering.cpp 29 ARMISelLowering.cpp
30 ARMInstrInfo.cpp 30 ARMInstrInfo.cpp
31 ARMJITInfo.cpp 31 ARMJITInfo.cpp
32 ARMLoadStoreOptimizer.cpp 32 ARMLoadStoreOptimizer.cpp
33 ARMMCInstLower.cpp 33 ARMMCInstLower.cpp
34 ARMMachineFunctionInfo.cpp 34 ARMMachineFunctionInfo.cpp
35 ARMNaClHeaders.cpp 35 ARMNaClHeaders.cpp
36 ARMNaClDivideCheckPass.cpp
36 ARMNaClRewritePass.cpp 37 ARMNaClRewritePass.cpp
37 ARMRegisterInfo.cpp 38 ARMRegisterInfo.cpp
38 ARMSelectionDAGInfo.cpp 39 ARMSelectionDAGInfo.cpp
39 ARMSubtarget.cpp 40 ARMSubtarget.cpp
40 ARMTargetMachine.cpp 41 ARMTargetMachine.cpp
41 ARMTargetObjectFile.cpp 42 ARMTargetObjectFile.cpp
42 ARMTargetTransformInfo.cpp 43 ARMTargetTransformInfo.cpp
43 MLxExpansionPass.cpp 44 MLxExpansionPass.cpp
44 Thumb1FrameLowering.cpp 45 Thumb1FrameLowering.cpp
45 Thumb1InstrInfo.cpp 46 Thumb1InstrInfo.cpp
(...skipping 12 matching lines...) Expand all
58 SOURCE ARMISelLowering.cpp 59 SOURCE ARMISelLowering.cpp
59 PROPERTY COMPILE_FLAGS "/Od" 60 PROPERTY COMPILE_FLAGS "/Od"
60 ) 61 )
61 endif() 62 endif()
62 63
63 add_subdirectory(TargetInfo) 64 add_subdirectory(TargetInfo)
64 add_subdirectory(AsmParser) 65 add_subdirectory(AsmParser)
65 add_subdirectory(Disassembler) 66 add_subdirectory(Disassembler)
66 add_subdirectory(InstPrinter) 67 add_subdirectory(InstPrinter)
67 add_subdirectory(MCTargetDesc) 68 add_subdirectory(MCTargetDesc)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698