From b21d80e08f3157e0608d048eda962a6c83b225d3 Mon Sep 17 00:00:00 2001 From: James Y Knight Date: Tue, 29 Jan 2019 16:37:27 +0000 Subject: [PATCH] Adjust documentation for git migration. This fixes most references to the paths: llvm.org/svn/ llvm.org/git/ llvm.org/viewvc/ github.com/llvm-mirror/ github.com/llvm-project/ reviews.llvm.org/diffusion/ to instead point to https://github.com/llvm/llvm-project. This is *not* a trivial substitution, because additionally, all the checkout instructions had to be migrated to instruct users on how to use the monorepo layout, setting LLVM_ENABLE_PROJECTS instead of checking out various projects into various subdirectories. I've attempted to not change any scripts here, only documentation. The scripts will have to be addressed separately. Additionally, I've deleted one document which appeared to be outdated and unneeded: lldb/docs/building-with-debug-llvm.txt Differential Revision: https://reviews.llvm.org/D57330 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@352514 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/CompileCudaWithLLVM.rst | 4 ++-- docs/LibFuzzer.rst | 4 ++-- docs/TestSuiteGuide.md | 2 +- docs/TestSuiteMakefileGuide.rst | 6 +++--- docs/TestingGuide.rst | 12 +++--------- lib/CodeGen/SelectionDAG/TargetLowering.cpp | 2 +- lib/Target/AMDGPU/AMDGPUISelLowering.h | 16 ++++++++-------- test/CodeGen/PowerPC/pr24546.ll | 4 ++-- utils/lit/setup.py | 4 ++-- 9 files changed, 24 insertions(+), 30 deletions(-) diff --git a/docs/CompileCudaWithLLVM.rst b/docs/CompileCudaWithLLVM.rst index 95d6b0d9b82..6e181c84e68 100644 --- a/docs/CompileCudaWithLLVM.rst +++ b/docs/CompileCudaWithLLVM.rst @@ -143,9 +143,9 @@ device side. ---------------------------- In clang, ``math.h`` and ``cmath`` are available and `pass -`_ +`_ `tests -`_ +`_ adapted from libc++'s test suite. In nvcc ``math.h`` and ``cmath`` are mostly available. Versions of ``::foof`` diff --git a/docs/LibFuzzer.rst b/docs/LibFuzzer.rst index 0737fbbcd93..4852a47a6d1 100644 --- a/docs/LibFuzzer.rst +++ b/docs/LibFuzzer.rst @@ -544,7 +544,7 @@ Periodically restart both fuzzers so that they can use each other's findings. Currently, there is no simple way to run both fuzzing engines in parallel while sharing the same corpus dir. You may also use AFL on your target function ``LLVMFuzzerTestOneInput``: -see an example `here `__. +see an example `here `__. How good is my fuzzer? ---------------------- @@ -741,7 +741,7 @@ Trophies .. _AddressSanitizer: http://clang.llvm.org/docs/AddressSanitizer.html .. _LeakSanitizer: http://clang.llvm.org/docs/LeakSanitizer.html .. _Heartbleed: http://en.wikipedia.org/wiki/Heartbleed -.. _FuzzerInterface.h: https://github.com/llvm-mirror/compiler-rt/blob/master/lib/fuzzer/FuzzerInterface.h +.. _FuzzerInterface.h: https://github.com/llvm/llvm-project/blob/master/compiler-rt/lib/fuzzer/FuzzerInterface.h .. _3.7.0: http://llvm.org/releases/3.7.0/docs/LibFuzzer.html .. _building Clang from trunk: http://clang.llvm.org/get_started.html .. _MemorySanitizer: http://clang.llvm.org/docs/MemorySanitizer.html diff --git a/docs/TestSuiteGuide.md b/docs/TestSuiteGuide.md index 0d9bbacb0d9..d23b383a8d6 100644 --- a/docs/TestSuiteGuide.md +++ b/docs/TestSuiteGuide.md @@ -27,7 +27,7 @@ Quickstart 2. Check out the `test-suite` module with: ```bash - % svn co http://llvm.org/svn/llvm-project/test-suite/trunk test-suite + % git clone https://github.com/llvm/llvm-test-suite.git test-suite ``` 3. Create a build directory and use CMake to configure the suite. Use the diff --git a/docs/TestSuiteMakefileGuide.rst b/docs/TestSuiteMakefileGuide.rst index dfd12d72f67..246da5522a6 100644 --- a/docs/TestSuiteMakefileGuide.rst +++ b/docs/TestSuiteMakefileGuide.rst @@ -14,14 +14,14 @@ the test suite creates temporary files during execution. To run the test suite, you need to use the following steps: -#. ``cd`` into the ``llvm/projects`` directory in your source tree. #. Check out the ``test-suite`` module with: .. code-block:: bash - % svn co http://llvm.org/svn/llvm-project/test-suite/trunk test-suite + % git clone https://github.com/llvm/llvm-test-suite.git test-suite - This will get the test suite into ``llvm/projects/test-suite``. +#. FIXME: these directions are outdated and won't work. Figure out + what the correct thing to do is, and write it down here. #. Configure and build ``llvm``. diff --git a/docs/TestingGuide.rst b/docs/TestingGuide.rst index 6f24c9d2973..9908d575903 100644 --- a/docs/TestingGuide.rst +++ b/docs/TestingGuide.rst @@ -165,15 +165,9 @@ or the :doc:`lit man page `. Debugging Information tests --------------------------- -To run debugging information tests simply checkout the tests inside -clang/test directory. - -.. code-block:: bash - - % cd clang/test - % svn co http://llvm.org/svn/llvm-project/debuginfo-tests/trunk debuginfo-tests - -These tests are already set up to run as part of clang regression tests. +To run debugging information tests simply add the ``debuginfo-tests`` +project to your ``LLVM_ENABLE_PROJECTS`` define on the cmake +command-line. Regression test structure ========================= diff --git a/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/lib/CodeGen/SelectionDAG/TargetLowering.cpp index a07b2594153..c910a845ac2 100644 --- a/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -4319,7 +4319,7 @@ bool TargetLowering::expandFP_TO_SINT(SDNode *Node, SDValue &Result, // Expand f32 -> i64 conversion // This algorithm comes from compiler-rt's implementation of fixsfdi: - // https://github.com/llvm-mirror/compiler-rt/blob/master/lib/builtins/fixsfdi.c + // https://github.com/llvm/llvm-project/blob/master/compiler-rt/lib/builtins/fixsfdi.c unsigned SrcEltBits = SrcVT.getScalarSizeInBits(); EVT IntVT = SrcVT.changeTypeToInteger(); EVT IntShVT = getShiftAmountTy(IntVT, DAG.getDataLayout()); diff --git a/lib/Target/AMDGPU/AMDGPUISelLowering.h b/lib/Target/AMDGPU/AMDGPUISelLowering.h index 8b8e16e030c..359e16cfa56 100644 --- a/lib/Target/AMDGPU/AMDGPUISelLowering.h +++ b/lib/Target/AMDGPU/AMDGPUISelLowering.h @@ -211,14 +211,14 @@ public: const char* getTargetNodeName(unsigned Opcode) const override; - // FIXME: Turn off MergeConsecutiveStores() before Instruction Selection - // for AMDGPU. - // A commit ( git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@319036 - // 91177308-0d34-0410-b5e6-96231b3b80d8 ) turned on - // MergeConsecutiveStores() before Instruction Selection for all targets. - // Enough AMDGPU compiles go into an infinite loop ( MergeConsecutiveStores() - // merges two stores; LegalizeStoreOps() un-merges; MergeConsecutiveStores() - // re-merges, etc. ) to warrant turning it off for now. + // FIXME: Turn off MergeConsecutiveStores() before Instruction Selection for + // AMDGPU. Commit r319036, + // (https://github.com/llvm/llvm-project/commit/db77e57ea86d941a4262ef60261692f4cb6893e6) + // turned on MergeConsecutiveStores() before Instruction Selection for all + // targets. Enough AMDGPU compiles go into an infinite loop ( + // MergeConsecutiveStores() merges two stores; LegalizeStoreOps() un-merges; + // MergeConsecutiveStores() re-merges, etc. ) to warrant turning it off for + // now. bool mergeStoresAfterLegalization() const override { return false; } bool isFsqrtCheap(SDValue Operand, SelectionDAG &DAG) const override { diff --git a/test/CodeGen/PowerPC/pr24546.ll b/test/CodeGen/PowerPC/pr24546.ll index 91de922f7f1..172c9fd8fbe 100644 --- a/test/CodeGen/PowerPC/pr24546.ll +++ b/test/CodeGen/PowerPC/pr24546.ll @@ -56,7 +56,7 @@ attributes #3 = { nounwind } !llvm.module.flags = !{!29, !30} !llvm.ident = !{!31} -!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 3.8.0 (git://github.com/llvm-mirror/clang.git e0848b6353721eb1b278a5bbea257bbf6316251e) (git://github.com/llvm-mirror/llvm.git 8724a428dfd5e78d7865bb01783708e83f9ed128)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, retainedTypes: !3, globals: !23) +!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 3.8.0", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, retainedTypes: !3, globals: !23) !1 = !DIFile(filename: "testcase.i", directory: "/tmp/glibc.build") !2 = !{} !3 = !{!4} @@ -86,7 +86,7 @@ attributes #3 = { nounwind } !28 = !DISubrange(count: 23) !29 = !{i32 2, !"Dwarf Version", i32 4} !30 = !{i32 2, !"Debug Info Version", i32 3} -!31 = !{!"clang version 3.8.0 (git://github.com/llvm-mirror/clang.git e0848b6353721eb1b278a5bbea257bbf6316251e) (git://github.com/llvm-mirror/llvm.git 8724a428dfd5e78d7865bb01783708e83f9ed128)"} +!31 = !{!"clang version 3.8.0"} !32 = !DILocation(line: 21, column: 32, scope: !33) !33 = distinct !DILexicalBlock(scope: !6, file: !1, line: 21, column: 6) !34 = !DILocation(line: 22, column: 15, scope: !35) diff --git a/utils/lit/setup.py b/utils/lit/setup.py index b27ed26e24a..10b75e7fe6e 100644 --- a/utils/lit/setup.py +++ b/utils/lit/setup.py @@ -52,8 +52,8 @@ Command Guide: http://llvm.org/cmds/lit.html. Source ====== -The *lit* source is available as part of LLVM, in the LLVM SVN repository: -http://llvm.org/svn/llvm-project/llvm/trunk/utils/lit. +The *lit* source is available as part of LLVM, in the LLVM source repository: +https://github.com/llvm/llvm-project/tree/master/llvm/utils/lit """, classifiers=[ -- 2.50.1