Home
last modified time | relevance | path

Searched full:revision (Results 1 – 25 of 172) sorted by relevance

1234567

/llvm-project/llvm/test/CodeGen/Mips/
H A Dase_warnings.ll61 ; MSA_32: warning: the 'msa' ASE requires MIPS32 revision 5 or greater
62 ; MSA_64: warning: the 'msa' ASE requires MIPS64 revision 5 or greater
63 ; MSA_32_NO_WARNING-NOT: warning: the 'msa' ASE requires MIPS32 revision 5 or greater
64 ; MSA_64_NO_WARNING-NOT: warning: the 'msa' ASE requires MIPS64 revision 5 or greater
66 ; DSPR2_32: warning: the 'dspr2' ASE requires MIPS32 revision 2 or greater
67 ; DSPR2_64: warning: the 'dspr2' ASE requires MIPS64 revision 2 or greater
68 ; DSPR2_32_NO_WARNING-NOT: warning: the 'dspr2' ASE requires MIPS32 revision 2 or greater
69 ; DSPR2_64_NO_WARNING-NOT: warning: the 'dspr2' ASE requires MIPS64 revision 2 or greater
71 ; DSP_32: warning: the 'dsp' ASE requires MIPS32 revision 2 or greater
72 ; DSP_64: warning: the 'dsp' ASE requires MIPS64 revision
[all...]
/llvm-project/llvm/cmake/modules/
H A DGenerateVersionFromVCS.cmake21 function(append_info name revision repository)
22 if(revision)
24 "#define ${name}_REVISION \"${revision}\"\n")
40 set(revision ${LLVM_FORCE_VC_REVISION}) variable
43 set(revision ${LLVM_FORCE_VC_REVISION}) variable
47 set(revision ${${name}_VC_REVISION}) variable
51 get_source_info("${${name}_SOURCE_DIR}" revision repository)
56 append_info(${name} "${revision}" "${repository}")
H A DVersionFromVCS.cmake6 function(get_source_info path revision repository)
23 set(${revision} ${git_output} PARENT_SCOPE)
/llvm-project/llvm/utils/crosstool/
H A Dcreate-snapshots.sh4 # where $REV is an SVN revision of LLVM. This is used for creating stable
8 # $0 [REV] -- grabs the revision $REV from SVN; if not specified, grabs the
9 # latest SVN revision.
17 svn info ${LLVM_PROJECT_SVN} | egrep ^Revision | sed 's/^Revision: //'
29 # Create "module-revision.tar.bz2" packages from the SVN checkout dirs.
/llvm-project/llvm/utils/docker/scripts/
H A Dcheckout.sh23 -r|--revision git revision to checkout
24 -c|--cherrypick revision to cherry-pick. Can be specified multiple times.
37 -r|--revision)
68 echo "Checking out git revision $LLVM_GIT_REV."
71 echo "Checking out latest git revision."
108 # We apply cherrypicks to all repositories regardless of whether the revision
/llvm-project/llvm/docs/
H A DGitBisecting.rst8 ``git bisect`` is a useful tool for finding which revision caused a bug.
29 git will check out a revision in between. Try to reproduce your problem at
30 that revision, and run ``git bisect good`` or ``git bisect bad``.
53 directory that makes clang crash at trunk, but it worked fine at revision
59 # revision to be skipped
100 merged, at every revision at ``C`` or earlier, *only* the ``mlir/`` directory
119 listed twice because git ranges exclude the revision listed on the left,
125 https://git-scm.com/book/en/v2/Git-Tools-Revision-Selection
/llvm-project/llvm/test/CodeGen/PowerPC/
H A Dgit_revision.ll1 ; Check that the git revision is contained in the assembly/object files
5 ; RUN: llc < %s | FileCheck %s -DREVISION=git-revision
6 ; RUN: llc -filetype=obj < %s | FileCheck %s -DREVISION=git-revision
8 ; CHECK: ([[REVISION]])
H A Dlit.local.cfg13 print("An error occurred retrieving the git revision:", e)
22 config.substitutions.append(("git-revision", git_revision))
/llvm-project/clang/tools/clang-format/
H A Dgit-clang-format215 help="revision from which to compute the diff",
277 revision = old_tree
280 revision = ""
283 revision = None
285 changed_lines, revision, binary=opts.binary, style=opts.style
377 """Returns True if `value` is a revision, False if it is a file, or dies."""
542 changed_lines, revision=None, binary="clang-format", style=None
549 env = os.environ.copy() if revision == "" else None
559 if revision is not None:
560 if len(revision) >
430 run_clang_format_and_save_to_tree(changed_lines, revision=None, binary='clang-format', style=None) global() argument
491 clang_format_to_blob(filename, line_ranges, revision=None, binary='clang-format', style=None, env=None) global() argument
[all...]
/llvm-project/flang/lib/Common/
H A DVersion.cpp62 std::string Revision = getFlangRevision(); in getFlangFullRepositoryVersion() local
63 if (!Path.empty() || !Revision.empty()) { in getFlangFullRepositoryVersion()
67 if (!Revision.empty()) { in getFlangFullRepositoryVersion()
70 OS << Revision; in getFlangFullRepositoryVersion()
76 if (!LLVMRev.empty() && LLVMRev != Revision) { in getFlangFullRepositoryVersion()
H A DCMakeLists.txt4 # The VC revision include that we want to generate.
16 # Create custom target to generate the VC revision include.
/llvm-project/clang/lib/Basic/
H A DVersion.cpp72 std::string Revision = getClangRevision(); in getClangFullRepositoryVersion() local
73 if (!Path.empty() || !Revision.empty()) { in getClangFullRepositoryVersion()
77 if (!Revision.empty()) { in getClangFullRepositoryVersion()
80 OS << Revision; in getClangFullRepositoryVersion()
86 if (!LLVMRev.empty() && LLVMRev != Revision) { in getClangFullRepositoryVersion()
/llvm-project/llvm/lib/Target/Mips/
H A DMipsSubtarget.cpp118 "FPU with 64-bit registers is not available on MIPS32 pre revision 2. " in MipsSubtarget()
173 errs() << "warning: the 'dspr2' ASE requires MIPS64 revision 2 or " in MipsSubtarget()
177 errs() << "warning: the 'dspr2' ASE requires MIPS32 revision 2 or " in MipsSubtarget()
183 errs() << "warning: the 'dsp' ASE requires MIPS64 revision 2 or " in MipsSubtarget()
187 errs() << "warning: the 'dsp' ASE requires MIPS32 revision 2 or " in MipsSubtarget()
197 << " revision 5 or greater\n"; in MipsSubtarget()
202 << " revision 5 or greater\n"; in MipsSubtarget()
207 << " revision 6 or greater\n"; in MipsSubtarget()
212 << " revision 6 or greater\n"; in MipsSubtarget()
/llvm-project/llvm/utils/
H A DGetSourceVersion5 echo " Prints the source control revision of the given source directory,"
6 echo " the exact format of the revision string depends on the source "
20 git svn info | grep 'Revision:' | cut -d: -f2-
/llvm-project/llvm/utils/gn/build/
H A Dwrite_vcsrevision.py3 """Gets the current revision and writes it to VCSRevision.h."""
31 "to re-run each time the current revision changes",
36 help="if set, writes git revision, else writes #undef",
42 "to re-run each time the current revision changes",
/llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/string/simulator/
H A Dmain.cpp
/llvm-project/llvm/utils/crosstool/ARM/
H A DREADME8 REV_L is the revision at which "llvm" was checked out, and
9 REV_G is the revision at which "llvm-gcc-4.2" was checked out
11 Note that REV_L might REV_G might not be the same revision.
/llvm-project/flang/include/flang/Runtime/
H A Dentry-names.h16 * The value of REVISION should not be changed until/unless the API to the
25 #define NAME_WITH_PREFIX_AND_REVISION(prefix, revision, name) \ argument
26 prefix##revision##name
/llvm-project/lldb/source/Version/
H A DVersion.cpp53 g_version_str += "revision "; in GetVersion()
61 g_version_str += "\n clang revision "; in GetVersion()
67 g_version_str += "\n llvm revision "; in GetVersion()
/llvm-project/llvm/utils/docker/
H A Dbuild_docker_image.sh33 -r|--revision git revision to checkout
34 -c|--cherrypick revision to cherry-pick. Can be specified multiple times.
99 -r|--revision|-c|--cherrypick|-b|--branch)
/llvm-project/llvm/docs/Proposals/
H A DGitHubMove.rst19 This is a proposal to move our current revision control system from our own
100 On Managing Revision Numbers with Git
104 A single revision number (e.g. r123456) thus identifies a consistent version of
107 Git does not use sequential integer revision number but instead uses a hash to
110 The loss of a sequential integer revision number has been a sticking point in
124 However, Git can emulate this increasing revision number:
129 We can thus use this revision number to ensure that e.g. `clang -v` reports a
130 user-friendly revision number (e.g. `main-12345` or `4.0-5321`), addressing
234 the sub-projects move synchronously, and a single revision number (or commit
377 Let's look how to assemble llvm+clang+libcxx at a given revision.
[all …]
/llvm-project/bolt/utils/
H A Dnfc-check-setup.py28 previous revision) and sets up symlink for llvm-bolt-wrapper.
43 help="Checkout back to the starting revision",
48 help="Revision to checkout to compare vs HEAD",
/llvm-project/clang/tools/clang-format-vs/ClangFormat/Properties/
H A DAssemblyInfo.cs
/llvm-project/llvm/utils/release/
H A Dexport.sh57 * llvm-git-revision-<YYYYMMDD>.txt (contains the current git revision sha1)
110 echo "git revision: $git_rev"
113 echo "$git_rev" > $target_dir/llvm-git-revision-$yyyymmdd.txt
/llvm-project/llvm/include/llvm/Support/
H A DCMakeLists.txt3 # The VC revision include that we want to generate.
24 # Create custom target to generate the VC revision include.

1234567