GCC: Anonymous read-only Git access
Our Git source repository is available read-only to the public at
large. That way you can pick up any version (including releases) of
GCC that is in our repository.
In addition, you can
browse our
Git history online.
(Our web pages are managed via Git in a
separate repository.)
Using the Git repository
Assuming you have
Git installed, you can
check out the GCC sources using the following command:
git clone git://gcc.gnu.org/git/gcc.git SomeLocalDir
If you are behind a firewall that does not allow the git protocol
through, you can replace git://
with https://
.
If there is another local repository accessible you can avoid
re-downloading everything by using --reference
, e.g.
git clone --reference original-gcc --dissociate ssh://gcc.gnu.org/git/gcc.git new-gcc
But if you own this other copy, you probably want to use
separate worktrees instead of multiple clones.
Generated files
Our source tree contains a number of files that are generated
from other source files by build tools such as Bison, Autoconf, and
Gperf. Bison is now required when using Git to access our sources,
but all other generated files are included in the source tree so that
GCC can be built without these build tools. The Git checkout and
update operations do not insure that the timestamps of generated files
are later than those of the files they are generated from. The script
contrib/gcc_update
updates the timestamps for all these
generated files. See the comments in that script for instructions on
running it.
GCC's build system (in particular Make) uses file timestamps to
determine if a generated file needs to be updated by running a particular
build tool. Because of this, GCC's build system may believe that
a generated file needs regenerating even though its source has not
changed, and require a particular build tool to rebuild that generated
file. If the appropriate build tool is installed on your system, then
this will not be a problem. If you do not intend to make changes to
the source, you can avoid installing these build tools by running
contrib/gcc_update
.
There has been some discussion of removing these generated files
from GCC's Git source tree (there is no discussion of removing them
from the released source tarballs). If that happens then
building GCC from the Git source tree would require installing
the above mentioned build tools. Installing these build tools is not
particularly difficult, but can be time consuming especially if you
only occasionally install GCC on a particular system.
The build tools that GCC uses are all available from the GNU
Project (see https://www.gnu.org),
are often already available on many systems, and can often be found
already built for some systems. A partial list of these build tools
is: Autoconf, Bison, Xgettext, Automake, and Gperf.
Conflicts when using git pull
It is not uncommon to get Git conflict messages for some generated files
when updating your local sources from the Git repository. Typically such
conflicts occur with autoconf generated files. Such an error is of
the form:
error: Your local changes to the following files would be overwritten by merge:
gcc/configure
Please commit your changes or stash them before you merge.
Aborting
As long as you haven't been making modifications to the generated files
or the generator files, it is safe to revert the local differences
using git checkout
on the affected files, then run
git pull
again.
If you have changes you want to keep that result in such an error,
there are a few options. You can keep those changes on a local branch
rather than on a branch tracking upstream sources. If you wish to
keep those changes uncommitted, do git stash
before git pull
and git stash pop
after git pull
. If you commit them directly to your
local upstream-tracking branch, you may prefer to use git pull
--rebase
instead of plain git pull
.
A branch called branchname can be checked out with the
following command:
git checkout branchname
(The release branch of the GCC SERIES release series
is named releases/gcc-SERIES
.)
Similarly a tag called tagname can be checked out with the
following command:
git checkout tagname
(The Git tag for GCC X.Y.Z is of the form
releases/gcc-X.Y.Z
. Under the
release numbering scheme used for GCC 5 and later release
series, Y is always nonzero and Z is always zero for
a release, with other version numbers being used for development
versions.)
The following are some representative examples:
- releases/gcc-10 (a branch)
- releases/gcc-9 (a branch)
- releases/gcc-9.3.0 (a tag)
- releases/gcc-4.9 (a branch)
- releases/gcc-4.9.0 (a tag)
To get a list of available branches, after checking out any branch,
use the command:
git branch -a
Similarly, to list tags:
git tag -l
To view logs for a branch only up to the point at which it was
created, use the command git log origin/branchname
^origin/parentbranchname
; for example:
git log origin/releases/gcc-9 ^origin/master
Worktrees
Git allows you to share the git object repository between multiple working
directories, each tracking a different branch. For instance, to create a
worktree for a release branch, do
git worktree add ../gcc-9 releases/gcc-9
To create a worktree for a new project branch based on master, do
git worktree add -b project ../project master
Repository Layout
By default, a git clone
operation will only fetch the
main development, release branches and their associated tags from the
server. This will be sufficient for most users, but a number of
additional branches can also be fetched if necessary.
The following areas exist on the server:
- refs/heads/master - The active development version of the
compiler.
- refs/heads/releases/* - Release branches.
- refs/heads/devel/* - topic-specific development branches
- see Active Development Branches.
Branches and tags in this space may be moved to refs/dead once active
development is completed or abandoned.
- refs/tags/* - tags for all of the above branches.
- refs/vendors/*/{heads,tags}/* - vendor-specific branches and
tags. These are owned and maintained by the respective
vendor, but made available publicly. Non-fast-forward pushes
are permitted on these branches.
- refs/users/*/{heads,tags}/* - personal developer branches and
tags. These are owned and maintained by the individual developer.
Non-fast-forward pushes are permitted on these branches.
- refs/dead/heads/* - completed or abandoned development
branches.
- refs/meta/config - local configuration data for the
commit hooks on the server.
- refs/deleted/*/{heads,tags}/* - old branches and tags
from the SVN repository that were deleted before the conversion to
git.
- refs/git-svn-old/* - various branches and tags from the
git-svn pre-conversion git mirror.
- refs/git-old/* - various branches and tags from the
git-svn pre-conversion git mirror that were local to that git
repository.
You can download any of the additional branches by adding a suitable
fetch specification to your local copy of the git repository. For
example, if your remote is called 'origin' (the default with git
clone) you can add the 'dead' development branches by running:
git config --add remote.origin.fetch "+refs/dead/heads/*:refs/remotes/origin/dead/*"
git config --add remote.origin.fetch "+refs/dead/tags/*:refs/tags/dead/*"
git fetch origin
which will place the dead branches in remotes/origin/dead
and the tags in tags/dead
.
You can use git ls-remote
to get a complete list of
refs that the server holds.
Active Development Branches
General Infrastructure
Active development branches have names starting devel/
in Git.
- ira-select
- This branch is for work on a new algorithm of calculations of
pseudo register classes. The new algorithm is based on choosing an
insn alternative first and then calculation of pseudo reg class
costs knowing the alternative. The branch is maintained by Vladimir
Makarov [email protected].
- devel/omp/gcc-13
- This branch is for collaborative development of
OpenACC and
OpenMP support and related
functionality, such
as offloading support (OMP:
offloading and multi processing).
The branch is based on releases/gcc-13.
Please send patch emails with a short-hand
[og13]
tag in the
subject line, and use ChangeLog.omp
files. (Likewise but now
stale branches exists for the prior GCC releases 9 to 12.)
- unified-autovect
- This branch is for work on improving effectiveness and generality of GCC's
autovectorization by performing target-aware reordering instruction selection
using unified representation. This branch is maintained by Sameera Deshpande
<[email protected]>.
Architecture-specific
- power-ieee128
- This branch is for community development of IEEE quad precision floating
point for Power ("ieee128"), replacing the "double double" aka "ibm128"
implementation we had for long double. The current focus is on Fortran
support.
Target-specific
No active branches
Language-specific
- c++-contracts
- This is the sandbox for renewed work on contracts for C++, that
didn't make it into C++20. Most of the implementation was contributed by
Lock3 Software. It is currently maintained
by Jason Merrill.
- gccgo
- This branch is for the Go front end to GCC. For more information
about the Go programming language,
see go.dev. The
branch is maintained by Ian Lance Taylor. Patches should be
marked with the tag [gccgo] in the Subject line.
- modula-2
- This branch is for the
GNU Modula-2
front end to GCC prior to its integration with the mainline. The
branch will be regularly rebased against the mainline. It is
maintained by
Gaius Mulley.
Patches should be
prefixed with
[modula-2]
in the subject line.
- m2link
- This is a short term branch for the
GNU Modula-2
front end to GCC prior to its integration with the mainline.
It contains the new scaffold and driver development. The contents
of this branch will be folded back onto the
modula-2
branch once a significant number of regression tests pass. It is
maintained by
Gaius Mulley.
Patches should be
prefixed with [m2link]
in the subject line.
- coarray_native
- This branch is for implementation of a shared memory
implementation of Fortran coarrays. It is maintained by
Nicolas König.
- devel/rust/master
-
This branch is for development of
Rust programming language
support in GCC.
Distribution Branches
These branches are maintained by organizations distributing GCC.
No changes should be made to those branches without the explicit
permission of the distributing organization. Such branches are
located in the Git repository
under refs/vendors/vendor/heads/
, which is not
fetched by default; the heads/
is omitted from the names
given below.
- apple/local-200502-branch
- This branch is for various improvements in use at Apple and to
coordinate work with others. This branch is maintained by the folks
at Apple. Previous branch was apple-ppc-branch.
- ARM/embedded-x_y-branch
- These branches provide bug-fixes, minor enhancements and stability
fixes for GCC x.y branches when used with ARM's embedded cores,
such as the Cortex-R and Cortex-M processors. Most patches will be
limited ARM specific or common back-ports from trunk, unlike the current
release branches. Very occasionally these branches will hold patches
that are waiting for trunk acceptance. Patches for these branches should
be marked with the tag
[arm-embedded]
in the subject line.
This family of branches is maintained by personnel from ARM.
- google/integration
- This branch contains some minimal patches that are likely not
useful anywhere outside of Google's build environment. These are
typically configuration patches. The branch is maintained by
Diego Novillo [email protected].
- google/main
- This branch contains Google local patches that are staged to be
contributed to trunk. Some of these patches are either in the
process of being reviewed, or have not yet been proposed. The
intent of this branch is to serve as a staging platform to allow
collaboration with external developers. Patches in this branch are
only expected to remain here until they are reviewed and accepted in
trunk. This branch is maintained by
Diego Novillo [email protected].
- google/gcc-x_y
- Google compilers based on GCC x.y releases. This family of
branches is maintained by Diego Novillo
[email protected].
- google/gcc-x_y[_z]-mobile
- Google compilers based on GCC x.y.z releases. These are used
to build Android and ChromeOS. This family of branches is maintained by
Ahmad Sharif [email protected],
Han Shen [email protected],
and Jing Yu [email protected].
- google/gcc-x_y[_z]-mobile-vtable-security
- google/gcc-x_y[_z]-mobile-vtable-verification
- Google compilers based on GCC x.y.z releases. These are used
to build Android and ChromeOS. These branches are for work on function
pointer and vtable security. They are maintained by Caroline Tice
[email protected].
- ibm/gcc-x-branch
- Branches that track the GCC branches and are used to create the
IBM Advance Toolchain releases. This family of branches is maintained by
personnel from IBM.
- linaro/gcc-x_y-branch
- Linaro compilers based on GCC x.y releases. These branches
only accept backports of patches which have been accepted to trunk. This
family of branches is maintained by personnel from Linaro.
- redhat/gcc-3_2-branch
- Red Hat GNU/Linux compilers based on GCC 3.2.x.
- redhat/gcc-3_4-branch
- Red Hat GNU/Linux compilers based on GCC 3.4.x.
- redhat/gcc-4_0-branch
- Red Hat GNU/Linux compilers based on GCC 4.0.x.
- redhat/gcc-4_1-branch
- Red Hat GNU/Linux compilers based on GCC 4.1.x.
- redhat/gcc-4_3-branch
- Red Hat GNU/Linux compilers based on GCC 4.3.x.
- suse/gcc-4_1-branch
- SUSE GNU/Linux compilers based on GCC 4.1.x.
- suse/gcc-4_2-branch
- SUSE GNU/Linux compilers based on GCC 4.2.x.
- ubuntu/gcc-4_2-branch
- This branch follows the gcc-4_2-branch, except for gcc/java, boehm-gc,
libffi, libjava and zlib, which are backported from the trunk (and from
gcc-4_3-branch, once created). The branch is used as the base for the
Debian and Ubuntu gcc-4.2 source package.
Merged Development Branches
These branches have been merged to GCC mainline, and are thus
inactive. Inactive branches are under refs/dead/heads/
in Git (except for ones under refs/vendors/
).
- aarch64/sve-acle-branch
- This Git-only branch was
used for collaborative development of the AArch64 SVE ACLE implementation.
The branch is based off and merged with trunk. Please send patches to
gcc-patches with an
[SVE ACLE]
tag in the subject line.
There's no need to use ChangeLogs; the ChangeLogs will instead be
written when the work is ready to be merged into trunk. The branch is
maintained by Richard Sandiford.
- ARM/aarch64-branch
- This branch added support for the AArch64 architecture and tracked
trunk until the port was merged into mainline.
- alias-improvements
- c-4_5-branch
- cfg-branch
- This branch was created to develop and test infrastructure
for easier writing of new RTL based optimizations. The branch
was based on GCC pre-3.3 and has been partially merged into the
mainline for GCC 3.4. It is now closed, and work continues on
the rtlopt-branch.
- cond-optab
- cp-parser-branch
- cp-parser-branch-2
- csl-*-branch
- csl/coldfire-4_1
- cxx0x-branch
- This branch was for the development of C++0x features, and all
features developed on this branch have been merged to mainline. Future
C++0x features will be developed against mainline. This branch was
deleted at revision 152320.
- cxx0x-lambdas-branch
- This branch was for the development of lambda functions, a coming
feature in C++0x. It was merged into the trunk at revision 152318.
- dataflow-branch
- This branch has been merged into mainline on June 6, 2007
as svn revision 125624. It used to contain a replacement of back-end
dataflow with df.c based dataflow. The branch was maintained
by Daniel Berlin <
[email protected]>
and Kenneth Zadeck <
[email protected]>
- dfa-branch
- dfp-branch
- edge-vector-branch
- fixed-point
- function-specific-branch
- This branch is for development of adding function specific options to
GCC. See the GCC
wiki for a more
detailed project description. Patches should be marked with the tag
[function-specific]
in the subject line.
The branch has been merged into GCC 4.4.
- gcc-3_4-basic-improvements-branch
- gcc-3_4-e500-branch
- This branch was for stabilization of the powerpc-*spe
architecture, and for adding support for the 8548 chip (e500 v2). This
branch was maintained by Aldy Hernandez. All the e500 support was
merged to mainline.
- gcj-abi-2-dev-branch
- gcj-eclipse-branch
- gimple-tuples-branch
- gomp-20050608-branch
- gomp-3_0-branch
- java-gui-20050128-branch
- This was a temporary branch for development of java GUI libraries
(AWT and Swing) in the libjava directory. It has been merged into
mainline.
- killloop-branch
- The missing optimizations and optimization improvements necessary
for removing the old loop optimizer were developed on this branch.
Most of these changes were merged in 4.2.
- lno-branch
- A sub-branch of tree-ssa that aims at implementing a loop
nest optimizer at the tree level. Was largely merged into mainline,
and is currently unmaintained.
This work now continues on the autovect-branch.
- mem-ref2
- mips-3_4-rewrite-branch
- named-addr-spaces-branch
- This branch was the development branch to add named address space support
for architectures that have multiple address spaces. The CELL/spu architecture
adds an
__ea
keyword to describe extended memory in the host chip
address space instead of the local CELL/spu address space. The branch was
created by Ben Elliston, modified by Michael Meissner and eventually maintained by
Ulrich Weigand. All changes from
this branch were merged into mainline.
- microblaze
- This branch contained support for updating the Xilinx MicroBlaze
architecture to GCC 4.1.2.
It was created by Michael Eager
<[email protected]>.
All changes have been merged into mainline.
- pch-branch
- tree-ssa-20020619-branch
- var-tracking-assignments*-branch
- predcom
- This branch aimed to implement predictive commoning optimization
and to introduce the changes to the representation of Fortran arrays,
alias analysis and dependency analysis to make it useful for
the common applications (e.g., mgrid). The branch was merged
in 4.3.
- split
- For development of stack splitting, as described
on the GCC wiki.
This branch was maintained by Ian Lance Taylor. All changes were
merged into mainline.
- tr29124
- This branch is for development of TR29124 Special math Functions,
for the C++ runtime library
See
. It is maintained by Ed Smith-Rowland
<[email protected]>.
- tree-cleanup-branch
- This branch contained improvements and reorganization to the
tree optimizers that were not ready in time for GCC 4.0. The
goal was to cleanup the tree optimizers and improve the sequencing
of the passes. It has now been merged into mainline for the
4.1 release.
Inactive Development Branches
These branches are inactive and contain work that might not been
merged.
- arc-20081210-branch
- The goal of this branch is to make the port to the ARCompact
architecture available. This branch is maintained by Joern Rennecke
during spring 2009, and is expected to be unmaintained thereafter.
- ARM/hard_vfp_4_4_branch
- This branch contains support for the hard-VFP variant of the AAPCS calling
standard and tracked gcc-4.4 development. This branch was maintained by
Richard Earnshaw.
- addressing-modes
- This branch aimed to clean up the way base and index registers are
handled by target headers. In particular, the strict and non-strict
meaning of these registers are unified and a common API is presented to
implementations of the target macros. Obsolete target macros will also
be removed. The branch was maintained by Paolo Bonzini. It is no
longer maintained.
- alias-export
- This branch contains the alias export and data dependency export patch.
It is used to experiment with the propagation process. This branch is maintained
by Andrey Belevantsev [email protected].
- annotalysis
- This branch contains the implementation of thread safety annotations
and analysis (https://gcc.gnu.org/wiki/ThreadSafetyAnnotation).
The branch was maintained by
Delesley Hutchins.
- apple-ppc-branch
- This branch was for various improvements in use at Apple and to
coordinate work with others. This branch was maintained by the folks
at Apple. It has been superseded by apple-local-200502-branch.
- ast-optimizer-branch
- The purpose of this branch was to improve GCC's tree based
optimizations. The patches of this branch have been moved to the
tree-ssa-20020619-branch.
- autovect-branch
- This branch is the successor to the lno-branch. The purpose of this
branch is tree-level
autovectorization work, and related work that the autovectorizer
could use or benefit from (like data-dependence analysis,
loop nest optimizations).
- avx512
- The goal of this branch is to implement Intel AVX-512 and SHA
Programming Reference.
The branch is maintained by Yukhin Kirill <[email protected]>.
Patches should be marked with the tag
[AVX512]
in the subject
line.
- avx-512vlbwdq
- The goal of this branch is to implement the Intel AVX-512{VL,BW,DQ}
Programming Reference.
The branch is maintained by Yukhin Kirill <[email protected]>.
Patches should be marked with the tag
[AVX512]
in the subject
line.
- avx2
- The goal of this branch is to implement AVX Programming Reference
(June, 2011). The branch is maintained by
H.J. Lu <[email protected]>
and Yukhin Kirill <[email protected]>.
Patches should be marked with the tag
[AVX2]
in the subject
line.
- bje-unsw-branch
- This branch was dedicated to some research work by Ben Elliston
at the University of New South Wales (UNSW) on transformation
phase ordering. It will never merge with mainline, although a
selection of patches may be submitted over time. Deleted by
revision 152653.
- boehms-gc
- The goal of this branch was to test Boehm's GC feasibility as the
garbage collector for GCC proper. This was a part of Google Summer
of Code project, described in detail
at https://gcc.gnu.org/wiki/Garbage_collection_tuning. The
branch was maintained
by Laurynas
Biveinis.
- cell-4_3-branch
- The goal of this branch is to add fixes and additional features required
for the Cell/B.E. processor (both PPE and SPE) to GCC 4.3.x. This branch
is maintained by Ulrich Weigand.
- cell-4_4-branch
- The goal of this branch is to back-port from mainline fixes and additional
features required for the Cell/B.E. SPE processor to GCC 4.4.x. This branch
is maintained by Ulrich Weigand. The branch is merged from gcc-4_4-branch.
- cfo-branch
- The goal of this branch was to add a new extension for improving
the code size optimization of GCC with code factoring methods (code
motion and merging algorithms). It is no longer maintained.
- cilkplus
- This branch was for the development of Cilk Plus language extension
support on GCC and G++ compilers. It was maintained by Balaji V. Iyer.
- compile-server-branch
- This branch was aimed at improving compile speed by caching work
done between compilations. The work saved is mainly related to header
file processing. This branch was maintained by Mike Stump and Per Bothner.
Patches were marked with the tag
[cs]
in the subject
line.
- condate-branch
- The purpose of this branch is to develop a language for checking
control flow graph properties. The code of this branch has not been
merged in trunk.
- cxx-conversion
- This branch hosts mini-projects that rewrite parts of the existing
GCC code into C++. Each conversion project will be proposed for
trunk integration independently. The branch is maintained by
Diego Novillo. Patches
sent to this branch and discussions related to it should be marked
with the tag
[cxx-conversion]
in the subject line. For
details on working with this branch, see the
C++ conversion
page.
- cxx-mem-model
- This branch is for the implementation of the C++ memory model.
Patches for this branch should be marked
[cxx-mem-model]
in the subject line. The branch is maintained by Aldy Hernandez.
- cxx-reflection-branch
- Part of the work on providing support for compile time reflection
in C++ was done in this branch. This branch was maintained by Gabriel
Dos Reis
<[email protected]>.
It is no longer maintained.
- cxx0x-concepts-branch
- This branch contains the beginnings of a re-implementation of
Concepts, a likely future feature of C++, using some of the code from
the prototype implementation on conceptgcc-branch. It is not currently
maintained.
- cygwin-improvements
- This branch is intended as a development and proving grounds for
fixes and enhancements specifically to the Cygwin port of the compiler,
although some of these may touch slightly on MinGW targets as well. It
is maintained by Dave Korn <[email protected]> and open to contributions from any
interested party; please tag patches with "[cygwin-improvements]" in the
title line and post them to the GCC Patches list with a Cc: to that
address.
- debuglocus
- This branch is an experiment to see whether improved debug information
can be maintained throughout the compiler by associating a user decl with an
expression, statement, or insn. The name comes from attempting to utilize
the ever present source location (locus) field to carry the debug info.
Further information can be found on the debuglocus wiki page .
- dwarf4
- This branch is for support of DWARF-4 features.
DWARF-4 is currently under development, so changes on this branch
will remain experimental until Version 4 is officially finalized.
- faster-compiler-branch
- This was a temporary branch for compiler speedups for GCC 3.4.
See this
thread for discussion of possible work still to be done in this
area. The branch is unmaintained at present.
- fortran-caf
- This branch contained experimental changes to the Fortran front end for
implementing the library calls for coarray communication. It was
maintained by Tobias Burnus
<[email protected]>.
- fortran-dev
- This branch was for disruptive changes to the Fortran front end,
especially for OOP development and
the
array descriptor update. It was maintained by Jerry DeLisle
<[email protected]>.
- fortran-exp
- This branch contained experimental changes to the Fortran front end, initially
for array constructor refactoring using splay-tree and other areas of
optimization. It was maintained by Jerry DeLisle
<[email protected]>.
- gcc-3_3-e500-branch
- This branch was for backporting the PowerPC/E500 back end to GCC 3.3.
See this
message for details.
- gcc-4_4-plugins
- This branch is for backporting the plugin functionality into
a 4.4-based release. There will be no new code or functionality
added to this branch. It is maintained by Diego Novillo.
Only patches backported from mainline are accepted. They should
be marked with the tag [4_4-plugins] in the Subject line.
- gcc-in-cxx
- This branch was for converting GCC to be written in C++. The
branch was maintained by Ian Lance Taylor.
- gcjx-branch
- This branch was used for development of gcjx, a rewrite of the
front end for the Java programming language. It has been superseded
by gcj-eclipse-branch.
- gc-improv
- This branch is for the development of garbage collector
improvements. It is the successor to the boehm-gc branch, but
without integration with Boehm's GC. The branch is maintained
by Laurynas
Biveinis. Patches for this branch should be marked with the
tag
[gc-improv]
in the subject line.
- gimple-front-end
- This branch implements a front end for GIMPLE. It is maintained
by Diego Novillo. Patches
should be prefixed with
[gimplefe]
in the subject line. See
the GIMPLE Front End
page for details.
- graphite-branch
- The purpose of this branch is to develop an infrastructure for loop
transforms using the polyhedral model.
- gomp-01-branch
- gomp-branch
- These two branches were initial attempts to implement
OpenMP support in GCC. They were never properly maintained and
have now been superseded by
gomp-20050608-branch
.
- gomp-4_0-branch
- This branch was based on gcc-6-branch, and was used to update
the OpenMP support to version
4.0, including development
of offloading support in
GCC as well as support
for OpenACC. These features
got merged into trunk. The branch was then used for on-going development
of OpenACC support and related functionality, which subsequently moved to
openacc-gcc-7-branch and then openacc-gcc-8-branch (both now also inactive,
see below).
- gupc
- This branch implements support for UPC (Unified Parallel C).
UPC extends the C programming language to provide support for
high-performance, parallel systems with access to a single
potentially large, global shared address space.
Further information can be found on the
GNU UPC page.
- openacc-gcc-7-branch
- openacc-gcc-8-branch
- openacc-gcc-9-branch
- These branches were used for development of
OpenACC support and related
functionality, based on gcc-7-branch, gcc-8-branch, and gcc-9-branch
respectively.
- devel/omp/gcc-9
- devel/omp/gcc-10
- devel/omp/gcc-11
- These branches were used for collaborative development of
OpenACC and
OpenMP support and related
functionality as the successors to openacc-gcc-9-branch after the move to
Git.
The branches were based on releases/gcc-9, releases/gcc-10 and
releases/gcc-11 respectively.
Development has now moved to the devel/omp/gcc-12 branch.
- hammer-3_3-branch
- The goal of this branch was to have a stable compiler based on GCC 3.3
with improved performance for AMD's 64-bit Hammer CPUs. The branch was
maintained by Jan Hubicka <[email protected]>
and Andreas Jaeger <[email protected]>.
Patches added on this branch might not be appropriate for the GCC 3.3
branch due to our policies concerning release branches. All patches
were added to mainline GCC (for 3.4).
- ia64-fp-model-branch
- This branch was a development branch with the goal of
implementing the improvements and features discussed at the ia64 floating point
page on the GCC wiki. It was
maintained by Zack Weinberg <[email protected]>.
It is no longer maintained.
- ia64-improvements
- The goal of this branch was to improve the performance of binaries
generated with GCC on the Itanium processor. Details can be found at the
IA-64 improvements page. This branch
was maintained by Robert Kidd <[email protected]> and
Diego Novillo. It is no longer maintained.
- ibm/power7-tmp
- This branch was used to stage patches for Power7 (PowerPC ISA 2.06)
from the development branch to the mainline. The branch was maintained by
Michael Meissner,
[email protected].
- improved-aliasing-branch
- This branch contains improvements to the tree-based aliasing
infrastructure. The branch was maintained by Daniel Berlin <[email protected]> and
Diego Novillo <
[email protected]>. It is no longer maintained.
- ix86/avx
- The goal of this branch is to implement Intel AVX (Intel Advanced
Vector Extensions). The branch is maintained by
H.J. Lu <[email protected]>.
Patches should be marked with the tag
[AVX]
in the subject
line.
- insn-select
- This branch aimed to implement in early instruction selection
and register class selection pass, which runs before register allocation
and subsumes the current
regclass
pass. In particular
the goal is to chose an alternative per instruction, usable as a base
during register allocation, which ideally is not changed during reload
if registers could be allocated. This will not be possible in all cases,
especially when addresses generated during spilling will be invalid on
the target machine. But we should be able to do away with fake register
classes representing strict unions of other register classes. The
branch was maintained by Michael Matz. It is no longer
maintained.
- ix86/gcc-4_5-branch
- The goal of this branch is to backport support from trunk for
newer ix86 processors from AMD and Intel. It will track
4.5 branch with periodic merge from 4.5 branch. The current
maintainers are Sebastian Pop
<[email protected]>
and H.J. Lu
<[email protected]>.
- ix86/gcc-4_4-branch
- The goal of this branch is to add support for newer ix86 processors such
as AMD's Shanghai and Intel's Atom to GCC 4.4.x. The current maintainers
are Dwarakanath Rajagopal <[email protected]>
and H.J. Lu <[email protected]>.
- ix86/gcc-4_3-branch
- The goal of this branch is to add support for newer ix86 processors such
as AMD's Barcelona and Intel's Westmere to GCC 4.3.x. The current maintainers
are Dwarakanath Rajagopal <[email protected]>
and H.J. Lu <[email protected]>.
- ix86/gcc-4_2-branch
- The goal of this branch is to add support for newer ix86 processors such
as AMD's Barcelona and Intel's Core 2 to GCC 4.2.x. The current maintainers
are Dwarakanath Rajagopal <[email protected]>
and H.J. Lu <[email protected]>.
- ix86/gcc-4_1-branch
- The goal of this branch is to add support for newer ix86 processors such
as AMD's Barcelona and Intel's Core 2 to GCC 4.1.x. The current maintainers
are Dwarakanath Rajagopal <[email protected]>
and H.J. Lu <[email protected]>.
- java-gui-branch
- This was a temporary branch for development of java GUI libraries
(AWT and Swing) in the libjava directory. It has been superseded
by java-gui-20050128-branch
- libada-gnattools-branch
- This is the spiritual successor to the libada branch. This branch
exists to solve
bug 5911
and others, by breaking out the Ada runtime into a libada directory and
the Ada tools into a gnattools directory. Work was devoted to
cleaning up the configure and make machinery, and separating it as much
as possible from the GCC build machinery. Nathanael Nerode
<[email protected]>
maintained this branch. It is no longer maintained.
- libobjc-branch
- The branch is aimed to clean up libobjc and make it run on Darwin.
Patches should be marked with the tag
[libobjc-branch]
in the subject line. Patches can be approved by Andrew Pinski
<[email protected]>
or Nicola Pero
<[email protected]>.
- libstdcxx_so_7-branch
- This was a branch for experimental work on the C++ Runtime Library
(libstdc++-v3) beyond the current version 6 library ABI. Paolo Carlini
<[email protected]>
and Benjamin Kosnik
<[email protected]> were
maintaining this branch. It is no longer maintained.
- libstdcxx_so_7-2-branch
- This branch carries all the C++ Runtime Library (libstdc++-v3) patches
that break its abi. It will be merged into the trunk as soon as the decision
to move to abi version 7 will have been taken. It is maintained by
François Dumont and the official
libstdc++-v3 maintainers Paolo Carlini, Benjamin Kosnik and Jonathan Wakely.
Patches will be marked with the tag
[so_7-2]
in the subject
line.
- lra
- This branch contains the Local Register Allocator (LRA). LRA is
focused to replace GCC reload pass. The branch is maintained by
Vladimir Makarov
< [email protected]>
and will be merged with mainline from time to time. Patches will be
marked with the tag
[lra]
in the subject line.
- lto
- This branch implemented link-time optimization.
- lto-pressure
- This branch is for work on adding analysis to inlining (for LTO in
particular) so that it can avoid inlining things that cause excessive
increases in register pressure. The branch is maintained by Aaron Sawdey
<[email protected]>.
- lto-streamer
- This was a sub-branch of the lto branch. It was intended for unstable
work related to the conversion from DWARF encoding to GIMPLE streamer.
It is no longer maintained.
- lw-ipo
- This branch aims to implement lightweight IPO. Patches
and discussion on this branch should be marked with the tag
[lipo]
in the subject line. The branch is maintained by
David Li.
- incremental-compiler
- This branch contains change to turn GCC into an incremental
compiler. The branch is maintained by Tom
Tromey [email protected].
Patches for this branch should be marked with the
tag
[incremental]
in the subject line.
- melt-branch
- This branch is for
a Middle End Lisp
Translator branch, including both the plugin Lisp-like facility
and static analyzers developed with it. This branch is maintained
by Basile
Starynkevitch [email protected]. Use
the
[MELT]
tag for patches.
- mem-ref
- This branch is for lowering the GIMPLE IL for memory accesses to
a flat representation. See the GCC
wiki for a more detailed
project description. The branch is maintained by Richard Biener.
Patches should be marked with the tag
[mem-ref]
in the
subject line.
- mem-ssa
- This branch contains the implementation of Memory SSA, a new
mechanism for representing memory operations in SSA form (https://gcc.gnu.org/ml/gcc/2006-02/msg00620.html).
The branch was maintained by Diego Novillo. It is no longer
maintained.
- milepost-branch
- This branch is for GCC developments done in the Milepost project.
The branch is maintained by Mircea Namolaru
[email protected].
Patches should be marked with the tag
[mpost]
in the
subject line.
- miro-branch
- The purpose of this branch is to develop an improved Mudflap
with referent objects. The code of this branch has not been merged
in trunk.
- mpx
- The goal of this branch is to support Intel MPX technology.
The branch is maintained by
Ilya Enkovich <[email protected]>
Patches should be marked with the tag
[MPX]
in the subject
line.
- named-addr-4_3-branch
- The goal of this branch was to backport the changes from the
named-addr-spaces-branch to a GCC 4.3 tree. This branch was maintained by
Michael Meissner. This branch was merged from gcc-4_3-branch.
- new-regalloc-branch
- Daniel Berlin and Michael Matz were working on an implementation
of a graph-coloring register allocator on this branch. It is known to
bootstrap under x86-linux-gnu and ppc-linux-gnu. It is no longer
maintained.
- no-undefined-overflow
- This branch is for tracking overflow behavior on expressions
rather than on types.
Patches should be marked with the tag
[no-undefined-overflow]
in the subject line. The branch is maintained by Richard Biener.
- objc-improvements-branch
- This branch was originally used to merge Objective-C bug fixes and
enhancements from Apple Computer into the FSF tree; this has now been
completed. A later purpose of the branch was to implement the
Objective-C++ language in the FSF GCC source tree. The message thread
starting here
describes this at more length. This branch was being maintained by Zem
Laski
<[email protected]>. It
is no longer maintained.
- opt-diary
- This branch contains the implementation of Optimization Diary,
a collection of useful log information generated by the optimizers.
This branch was maintained by Devang Patel. It is no longer
maintained.
- plugin
- This branch contains work for a plugin infrastructure in GCC
to enable additional checking work. This branch is maintained
by Eric Christopher
[email protected] and will be merged with mainline from time to
time. Patches will be marked with the tag
[plugin]
in the subject line.
- plugins
- This branch adds plugin functionality to GCC. See the plugins wiki page for
details.
- pointer_plus
- This branch is for the development of POINTER_PLUS_EXPR. Which
is to be used instead of casting between an integer type and a pointer
type before doing pointer addition. This branch is being maintained
by Andrew Pinski. Patches for this branch should be marked with
the tag
[PTR-PLUS]
in the subject line, and CC'ed to
Andrew Pinski.
- pph
- This branch implements Pre-Parsed
Headers for C++. It is maintained by Diego Novillo and Lawrence Crowl. Patches should be
prefixed with
[pph]
in the subject line.
- pth-icm
- This is a sub-branch of the
pph
branch. It
implements
Pre-Tokenized Headers for C++. Additionally, it contains
instrumentation code in the C++ parser that was used in an
incremental compiler model (icm) to study the effects of an
incremental compiler cache for a compiler server. The branch is
maintained by Diego Novillo
and Lawrence Crowl. Patches
should be prefixed with [pph]
in the subject line.
- ra-improvements
- This branch aims to implement several improvements to the
current register allocator. Examples include implementing a
lower-triangular conflict matrix and register coalescing.
It is hoped that these improvements will not only help the
current allocator, but will be useful to the other register
allocation projects such as RABLE and YARA. This branch will
be merged with the dataflow-branch from time to time.
The patches for this branch should be marked with the tag
[ra-improvements]
in the subject line. The branch
is maintained by Peter
Bergner.
- redhat/gcc-3_3-branch
- This branch used to hold Red Hat GNU/Linux compilers based on
GCC 3.3.x.
- reload-branch
- This branch contains a version of reload in which the tracking
of reload register lifetimes and the inheritance code has been
rewritten in an attempt to make it more maintainable. It is no
longer maintained.
- rtl-fud-branch
- This branch is for the development of factored use-def chains
as an SSA form for RTL. Patches should be marked with the tag
[rtl-fud]
in the subject line. The branch is maintained
by Steven Bosscher and Kenneth Zadeck.
- rtlopt-branch
- This branch was the successor to the cfg-branch, with the exception
that it was based on GCC pre-3.4. The purpose of the branch was to develop
and test infrastructure for CFG based code improving transformations on
RTL.
- scalar-storage-order
- This branch hosts the experimental support to specify a reverse
storage order (byte/word order, aka endianness) for scalar components
of aggregate types. The branch is maintained by
Eric Botcazou
and will be merged with mainline from time to time. Patches will be
marked with the tag
[sso]
in the subject line.
- sel-sched-branch
- This branch contains the implementation of the selective scheduling
approach. The goal of the branch is to provide more aggressive scheduler
implementation with support for instruction cloning, register renaming,
and forward substitution. The branch is maintained by Andrey
Belevantsev <[email protected]>
and Maxim Kuvyrkov <
[email protected]> and will be regularly merged with mainline.
Patches will be marked with the tag
[sel-sched]
in
the subject line.
- spu-4_5-branch
- The goal of this branch was to do development for the Cell/B.E. processor,
in particular to support partitioning functions into multiple sections. This
branch was created by Michael Meissner and is now maintained by Ulrich Weigand.
The branch is merged from mainline.
- stack
- This branch contains a new stack alignment framework to
automatically align stack for local variables with alignment requirement.
The branch is maintained by
H.J. Lu <[email protected]>.
Patches should be marked with the tag
[stack]
in the subject
line.
- struct-reorg-branch
- This branch is for the development of structure reorganization
optimizations, including field reordering, structure splitting for
trees. These optimizations are profile information driven. This is
a subbranch of tree-profiling. This branch is being maintained by
Caroline Tice, Dale Johannesen, Kenneth Zadeck, Stuart Hastings,
Mostafa Hagog.
- sched-treegion-branch
- This branch was for the development of a treegion-based instruction
scheduler. The branch was maintained by Chad Rosier. It is no
longer maintained.
- ssaupdate-branch
- This branch served to clean up and improve utilities for the SSA
form updating, as well as for related changes of the SSA form
representation. Most of the changes in this branch were never merged.
Part of them were incorporated in Diego Novillo's SSA updating
improvement patch.
- stree-branch
- This branch was for improving compilation speed and reducing memory
use by representing declarations as small flat data structures whenever
possible, lazily expanding them into full trees when necessary. This
branch was being maintained by Matt Austern, Robert Bowdidge, Geoff
Keating, and Mike Stump. Patches were marked with the tag
[stree]
in the subject line.
- structure-aliasing-branch
- This branch contains improvements to the tree optimizers ability
to do pointer-to-structure aliasing analysis and optimization.
This involves some significant rework of the way
our memory information is represented in the tree-ssa form.
The branch was maintained by Daniel Berlin. It is no longer
maintained.
- st/cli-be
- The goal of the branch is to develop a back end producing CLI binaries,
compliant with ECMA-335 specification.
This branch was originally maintained by Roberto Costa
<[email protected]>.
Since May 2007, the current maintainers are Andrea Ornstein
<[email protected]>
and Erven Rohou
<[email protected]>.
- thread-annotations
- This branch contained the implementation of thread safety annotations
and analysis (https://gcc.gnu.org/wiki/ThreadSafetyAnnotation).
It was superseded by the annotalysis branch.
- transactional-memory
- This branch is for the development of transactional memory support
for GCC. Patches for this branch should be marked
[trans-mem]
in the subject line. The branch is maintained by Richard Henderson.
- tree-profiling-branch
- This branch was for the development of profiling heuristics
and profile based optimizations for trees, such as profile driven inline
heuristics. Another goal of this branch was to demonstrate that maintaining
the CFG and profile information over expanding from GIMPLE trees to RTL
is feasible and can bring considerable performance improvements.
It is no longer maintained.
- tree-ssa-cfg-branch
- This branch has been merged into the tree-ssa-20020619-branch.
- ubsan
- This branch contains the Undefined Behavior Sanitizer (ubsan). Ubsan is
an undefined behavior detector for the C family of languages. The branch is
maintained by Marek Polacek
< [email protected]>
and will be merged with mainline from time to time. Patches will be
marked with the tag
[ubsan]
in the subject line.
- var-mappings-branch
- This branch is for improving debug information based on tracking
multiple variables per computed value. The branch is maintained by
Richard Biener and Michael Matz. Patches should be marked with the
tag
[varmap]
in the subject line.
- var-template
- This branch is for implementation work on
variable template for C++. It was originally
created by Gabriel Dos Reis. It is maintained by
Jason Merrill.
- vect256
- This branch is for extending vectorizer to 256bit. The branch is
maintained by Richard Biener and H.J. Lu. Patches should be marked
with the tag
[vect256]
in the subject line.
- yara-branch
- This branch contains Yet Another Register Allocator (YARA).
The branch was maintained by Vladimir Makarov <
[email protected]>.
It is no longer maintained; some of the work was used as a basis
for the work on the ira branch.
- x32
- This branch was to implement
x32 psABI.
The branch is maintained by H.J. Lu. Patches should be marked with the
tag
[x32]
in the subject line.