/llvm-project/lldb/unittests/Core/ |
H A D | FileSpecListTest.cpp |
|
/llvm-project/llvm/docs/CommandGuide/ |
H A D | llvm-ar.rst | 1 llvm-ar - LLVM archiver 4 .. program:: llvm-ar 7 -------- 9 :program:`llvm-ar` [-]{dmpqrstx}[abcDilLNoOPsSTuUvV] [relpos] [count] archive [files...] 12 ----------- 14 The :program:`llvm-ar` command is similar to the common Unix utility, 15 :program:`ar`. It archives several files, such as objects and LLVM bitcode 16 files into a single archive library that can be linked into a program. However, 17 the archive can contain any kind of file. By default, :program:`llvm-ar` 21 The :program:`llvm-ar` command can be used to *read* archive files in SVR4, GNU, [all …]
|
/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerMerge.cpp | 1 //===- FuzzerMerge.cpp - merging corpora ----------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 //===----------------------------------------------------------------------===// 71 Files.resize(NumFiles); in Parse() 73 if (!std::getline(IS, Files[i].Name, '\n')) in Parse() 78 const size_t kInvalidStartMarker = -1; in Parse() 93 ISS1 >> Files[ExpectedStartMarker].Size; in Parse() 95 assert(ExpectedStartMarker < Files.size()); in Parse() 109 Files[CurrentFileIdx].Features = TmpFeatures; in Parse() [all …]
|
/llvm-project/lldb/test/API/functionalities/module_cache/bsd/ |
H A D | TestModuleCacheBSD.py | 20 self.cache_dir = os.path.join(self.getBuildDir(), "lldb-module-cache") 24 'settings set symbols.lldb-index-cache-path "%s"' % (self.cache_dir) 26 self.runCmd("settings set symbols.enable-lldb-index-cache true") 31 self.cache_dir, "llvmcache-*%s*symtab*" % (basename) 40 This test has been modified to make sure .o files that don't have 42 modification times of .o files that the modification times are not 44 files as this was causing older cache files to be accepted for new 45 updated .o files. 47 ELF .o files do calculate a UUID from the contents of the file, 48 which is expensive, but no one loads .o files into a debug sessions [all …]
|
/llvm-project/clang/lib/Headers/ |
H A D | CMakeLists.txt | 108 opencl-c.h 109 opencl-c-base.h 302 set(files 358 # See: https://gitlab.kitware.com/cmake/cmake/-/issues/26058 401 COMMAND ${CMAKE_COMMAND} -E copy_if_different ${src} ${dst} 409 -I ${CLANG_SOURCE_DIR}/include/clang/Basic/ 419 # Copy header files from the source directory to the build directory 420 foreach( f ${files} ${cuda_wrapper_files} ${cuda_wrapper_bits_files} 426 # Generate header files an 267 set(files global() variable [all...] |
/llvm-project/clang-tools-extra/test/clang-apply-replacements/ |
H A D | invalid-files.cpp | 1 // RUN: mkdir -p %T/invalid-files 2 // RUN: cp %S/Inputs/invalid-files/invalid-files.yaml %T/invalid-files/invalid-files.yaml 3 // RUN: clang-apply-replacements %T/invalid-files 5 // Check that the yaml files are *not* deleted after running clang-apply-replacements without remov… 6 // RUN: ls %T/invalid-files/invalid-files.yaml
|
/llvm-project/clang/test/Driver/ |
H A D | openmp-offload.c | 8 // RUN: not %clang -### -fopenmp=libomp -fopenmp-targets=aaa-bbb-ccc-ddd %s 2>&1 \ 9 // RUN: | FileCheck -check-prefix=CHK-INVALI [all...] |
/llvm-project/clang-tools-extra/clang-tidy/misc/ |
H A D | HeaderIncludeCycleCheck.cpp | 1 //===--- HeaderIncludeCycleCheck.cpp - clang-tidy -------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 61 if ((Files.size() > 1U) && (Files.back().Id == PrevFID) && in FileChanged() 62 (Files[Files.size() - 2U].Id == Id)) in FileChanged() 63 Files.pop_back(); in FileChanged() 67 if (!Files.empty() && Files.back().Id == Id) in FileChanged() 77 assert(NextToEnter->Name == FileName); in FileChanged() 78 NextToEnter->Id = Id; in FileChanged() 79 Files.emplace_back(*NextToEnter); in FileChanged() [all …]
|
/llvm-project/lld/docs/ |
H A D | NewLLD.rst | 5 --------------------------- 11 files. The function is guaranteed to return as long as you do not pass corrupted 12 or malicious object files. A corrupted file could cause a fatal error or SEGV. 14 files in the usual way and give them to the linker. It is naturally expected to 23 ------------ 29 We believe that these high-level design choices achieved a right balance 39 to abstract the differences wouldn't be worth its complexity and run-time 47 Therefore, the high-level design matters more than local optimizations. 48 Since we are trying to create a high-performance linker, 61 LLD's handling of archive files (the files with ".a" file extension) is [all …]
|
H A D | make.bat | 6 set SPHINXBUILD=sphinx-build 9 set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . 12 set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% 13 set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% 21 echo. html to make standalone HTML files 22 echo. dirhtml to make HTML files named index.html in directories 24 echo. pickle to make pickle files 25 echo. json to make JSON files 26 echo. htmlhelp to make HTML files and a HTML help project 27 echo. qthelp to make HTML files and a qthelp project [all …]
|
/llvm-project/lldb/unittests/Expression/ |
H A D | CppModuleConfigurationTest.cpp | 1 //===-- CppModuleConfigurationTest.cpp ------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 44 if (!m_fs->addFileNoOwn(path, static_cast<time_t>(0), m_empty_buffer)) in makeFiles() 65 std::vector<std::string> files = {// C library in TEST_F() local 70 CppModuleConfiguration config(makeFiles(files), llvm::Triple()); in TEST_F() 80 std::string usr_target = "/usr/include/x86_64-linux-gnu"; in TEST_F() 82 std::string libcpp_target = "/usr/include/x86_64-unknown-linux-gnu/c++/v1"; in TEST_F() 83 std::vector<std::string> files = { in TEST_F() local 88 CppModuleConfiguration config(makeFiles(files), in TEST_F() [all …]
|
/llvm-project/llvm/utils/TableGen/ |
H A D | tdtags | 2 #===-- tdtags - TableGen tags wrapper ---------------------------*- sh -*-===# 4 #===----------------------------------------------------------------------===# 8 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 10 #===----------------------------------------------------------------------===# 12 # This is a wrapper script to simplify generating ctags(1)-compatible index 13 # files for target .td files. Run tdtags -H for more documentation. 15 # For portability, this script is intended to conform to IEEE Std 1003.1-2008. 17 #===----------------------------------------------------------------------===# 24 or: $SELF [ <options> ] -x recipe [arg ...] 26 -H Display further help. [all …]
|
/llvm-project/clang-tools-extra/test/clang-tidy/infrastructure/ |
H A D | config-files.cpp | 1 // RUN: clang-tidy -dump-config %S/Inputs/config-files/- -- | FileCheck %s -check-prefix=CHECK-BASE 2 // CHECK-BASE: Checks: {{.*}}from-parent 3 // CHECK-BASE: HeaderFilterRegex: parent 4 // CHECK-BASE: ExcludeHeaderFilterRegex: exc-parent 5 // RUN: clang-tidy -dump-config %S/Inputs/config-files/1/- -- | FileCheck %s -check-prefix=CHECK-CH… 6 // CHECK-CHILD1: Checks: {{.*}}from-child1 7 // CHECK-CHILD1: HeaderFilterRegex: child1 8 // CHECK-CHILD1: ExcludeHeaderFilterRegex: exc-child1 9 // RUN: clang-tidy -dump-config %S/Inputs/config-files/2/- -- | FileCheck %s -check-prefix=CHECK-CH… 10 // CHECK-CHILD2: Checks: {{.*}}from-parent [all …]
|
/llvm-project/llvm/tools/llvm-cov/ |
H A D | CoverageReport.h | 1 //===- CoverageReport.h - Code coverage report ----------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 39 void renderFunctionReports(ArrayRef<std::string> Files, 42 /// Prepare file reports for the files specified in \p Files. 45 FileCoverageSummary &Totals, ArrayRef<std::string> Files, 61 /// Render file reports for the files specified in \p Files. 62 void renderFileReports(raw_ostream &OS, ArrayRef<std::string> Files) const; 64 /// Render file reports for the files specified in \p Files and the functions [all …]
|
/llvm-project/flang/docs/ |
H A D | ModFiles.md | 1 <!--===- docs/ModFiles.md 5 SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 --> 9 # Module Files [all...] |
/llvm-project/llvm/utils/gn/ |
H A D | README.rst | 13 *Warning* The GN build is experimental and best-effort. It might not work, 16 If you add files, you're expected to update the CMake build but you don't need 17 to update GN build files. Reviewers should not ask authors to update GN build 18 files. Keeping the GN build files up-to-date is on the people who use the GN 22 creates ninja files, but it can create some IDE projects (MSVC, Xcode, ...) 26 convenient for day-to-day hacking on LLVM than CMake. Distribution, building 28 non-goals for the GN build. 37 #. ``git clone https://github.com/llvm/llvm-project.git; cd llvm-project`` if 41 64-bit X86 system running Linux, macOS, or Windows. `Build gn yourself 42 <https://gn.googlesource.com/gn/#getting-started>`_ if you're on a different [all …]
|
/llvm-project/compiler-rt/test/fuzzer/ |
H A D | set_cover_merge.test | 1 RUN: %cpp_compiler %S/FullCoverageSetTest.cpp -o %t-FullCoverageSetTest 3 RUN: rm -rf %t/T1 %t/T2 4 RUN: mkdir -p %t/T1 %t/T2 10 RUN: %run %t-FullCoverageSetTest -set_cover_merge=1 %t/T1 %t/T2 2>&1 | FileCheck %s --check… 11 CHECK1: MERGE-OUTER: 3 files, 3 in the initial corpus 12 CHECK1: MERGE-OUTER: 0 new files with 0 new features added 22 RUN: %run %t-FullCoverageSetTest -set_cover_merge=1 %t/T1 %t/T2 2>&1 | FileCheck %s --check… 23 CHECK2: MERGE-OUTER: 9 files, 3 in the initial corpus 24 CHECK2: MERGE-OUTER: 3 new files with 3 new features added 27 RUN: %run %t-FullCoverageSetTest -set_cover_merge=1 %t/T1 %t/T2 2>&1 | FileCheck %s --check… [all …]
|
/llvm-project/flang/test/Driver/ |
H A D | multiple-input-files.f90 | 2 !---------- [all...] |
/llvm-project/lld/ELF/Arch/ |
H A D | MipsArchTree.cpp | 1 //===- MipsArchTree.cpp --------- 65 checkFlags(ArrayRef<FileFlags> files) checkFlags() argument 93 getMiscFlags(ArrayRef<FileFlags> files) getMiscFlags() argument 102 getPicFlags(ArrayRef<FileFlags> files) getPicFlags() argument 276 getArchFlags(ArrayRef<FileFlags> files) getArchFlags() argument [all...] |
/llvm-project/llvm/docs/ |
H A D | LinkTimeOptimization.rst | 24 treats LLVM bitcode files like native object files and allows mixing and 26 bitcode files. This tight integration between the linker and LLVM optimizer 30 .. _libLTO-example: 33 --------------------------------- 43 .. code-block:: c++ 45 --- a.h --- 50 --- a.c --- 56 i = -1; 74 --- main.c --- 88 .. code-block:: console [all …]
|
H A D | make.bat | 6 set SPHINXBUILD=sphinx-build 9 set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . 12 set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% 13 set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% 21 echo. html to make standalone HTML files 22 echo. dirhtml to make HTML files named index.html in directories 24 echo. pickle to make pickle files 25 echo. json to make JSON files 26 echo. htmlhelp to make HTML files and a HTML help project 27 echo. qthelp to make HTML files and a qthelp project [all …]
|
/llvm-project/clang/docs/analyzer/ |
H A D | make.bat | 6 set SPHINXBUILD=sphinx-build 9 set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . 12 set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% 13 set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% 21 echo. html to make standalone HTML files 22 echo. dirhtml to make HTML files named index.html in directories 24 echo. pickle to make pickle files 25 echo. json to make JSON files 26 echo. htmlhelp to make HTML files and a HTML help project 27 echo. qthelp to make HTML files and a qthelp project [all …]
|
/llvm-project/clang/docs/ |
H A D | make.bat | 6 set SPHINXBUILD=sphinx-build 9 set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . 12 set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% 13 set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% 21 echo. html to make standalone HTML files 22 echo. dirhtml to make HTML files named index.html in directories 24 echo. pickle to make pickle files 25 echo. json to make JSON files 26 echo. htmlhelp to make HTML files and a HTML help project 27 echo. qthelp to make HTML files and a qthelp project [all …]
|
/llvm-project/clang-tools-extra/docs/ |
H A D | make.bat | 6 set SPHINXBUILD=sphinx-build 9 set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . 12 set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% 13 set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% 21 echo. html to make standalone HTML files 22 echo. dirhtml to make HTML files named index.html in directories 24 echo. pickle to make pickle files 25 echo. json to make JSON files 26 echo. htmlhelp to make HTML files and a HTML help project 27 echo. qthelp to make HTML files and a qthelp project [all …]
|
H A D | ModularizeUsage.rst | 5 ``modularize [<modularize-options>] [<module-map>|<include-files-list>]* 6 [<front-end-options>...]`` 8 ``<modularize-options>`` is a place-holder for options 12 ``<module-map>`` specifies the path of a file name for an 13 existing module map. The module map must be well-formed in 17 as a top-level include, assuming they either are included by 21 ``<include-files-list>`` specifies the path of a file name for a 22 file containing the newline-separated list of headers to check 25 other space-separated file names will include those extra files 33 Note that unless a ``-prefix (header path)`` option is specified, [all …]
|