index
:
riscv-gnu-toolchain/gcc.git
devel/analyzer
devel/autopar_devel
devel/autopar_europar_2021
devel/bypass-asm
devel/c++-contracts
devel/c++-coroutines
devel/c++-modules
devel/c++-name-lookup
devel/coarray_native
devel/existing-fp8
devel/fortran_unsigned
devel/gccgo
devel/gfortran-caf
devel/gfortran-test
devel/gimple-linterchange
devel/gomp-5_0-branch
devel/icpp2021
devel/ira-select
devel/ix86/evex512
devel/jlaw/crc
devel/loop-unswitch-support-switches
devel/lto-offload
devel/m2link
devel/modula-2
devel/mold-lto-plugin
devel/mold-lto-plugin-v2
devel/nothrow-detection
devel/omp/gcc-10
devel/omp/gcc-11
devel/omp/gcc-12
devel/omp/gcc-13
devel/omp/gcc-14
devel/omp/gcc-15
devel/omp/gcc-9
devel/omp/ompd
devel/power-ieee128
devel/range-gen3
devel/ranger
devel/rust/master
devel/sh-lra
devel/sphinx
devel/ssa-range
devel/subreg-coalesce
devel/unified-autovect
master
releases/egcs-1.0
releases/egcs-1.1
releases/gcc-10
releases/gcc-11
releases/gcc-12
releases/gcc-13
releases/gcc-14
releases/gcc-15
releases/gcc-2.95
releases/gcc-2.95.2.1-branch
releases/gcc-3.0
releases/gcc-3.1
releases/gcc-3.2
releases/gcc-3.3
releases/gcc-3.4
releases/gcc-4.0
releases/gcc-4.1
releases/gcc-4.2
releases/gcc-4.3
releases/gcc-4.4
releases/gcc-4.5
releases/gcc-4.6
releases/gcc-4.7
releases/gcc-4.8
releases/gcc-4.9
releases/gcc-5
releases/gcc-6
releases/gcc-7
releases/gcc-8
releases/gcc-9
releases/libgcj-2.95
trunk
Unnamed repository; edit this file 'description' to name the repository.
root
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
gcc
/
rust
/
backend
/
rust-compile.cc
Age
Commit message (
Expand
)
Author
Files
Lines
2022-05-25
Str's have the same layout as [T]
Philip Herron
1
-16
/
+15
2022-05-23
Fix Slice Type Layout
Philip Herron
1
-0
/
+19
2022-05-09
Destructure our generics, placeholers or projections during coercion
Philip Herron
1
-9
/
+16
2022-05-04
Take advantage of OBJ_TYPE_REF'S in dyn calls
Philip Herron
1
-4
/
+14
2022-05-03
Use correct format specifiers for unisnged HOST_WIDE_INT
Philip Herron
1
-6
/
+7
2022-04-30
Support recursive coercion sites
Philip Herron
1
-63
/
+100
2022-04-30
Fix address expression to respect reference/pointer types
Philip Herron
1
-2
/
+3
2022-04-11
Support Slices from rustc libcore 1.49.0
Philip Herron
1
-17
/
+1
2022-03-03
must use attribute support
Philip Herron
1
-1
/
+2
2022-03-03
Remove gcc abstraction for expression statement
Philip Herron
1
-10
/
+3
2022-02-10
Refactor code to reuse a canonical way to compile functions and constants
Philip Herron
1
-90
/
+10
2022-02-10
Remove AddressTakenContext
Philip Herron
1
-2
/
+1
2022-01-24
Remove hack to handle forward declared items
Philip Herron
1
-6
/
+3
2022-01-24
Update GCC/Rust files per 'contrib/update-copyright.py --this-year' [#764]
Thomas Schwinge
1
-1
/
+1
2022-01-22
MethodResolution should respect the autoderef cycle
Philip Herron
1
-3
/
+2
2022-01-14
Track end locus of BlockExpr
David Faust
1
-1
/
+1
2022-01-14
Add initial constant evaluation to blocks
Philip Herron
1
-7
/
+7
2022-01-14
Redesign constant folding from the typechecking pass to the backend
Philip Herron
1
-6
/
+70
2021-12-16
Add enum code generation
Philip Herron
1
-2
/
+2
2021-12-15
Refactor CallExpr and MethodCallExpr into rust-compile-expr.cc
Philip Herron
1
-264
/
+0
2021-11-16
Replace Bblock with GCC tree
David Faust
1
-17
/
+11
2021-11-16
Replace Bfunction with GCC tree
David Faust
1
-6
/
+6
2021-11-16
Replace Bstatement with GCC tree
David Faust
1
-7
/
+7
2021-11-16
Replace Bexpression with GCC tree
David Faust
1
-26
/
+21
2021-11-16
Replace Btype use with GCC tree
David Faust
1
-3
/
+3
2021-11-16
Initial support operator overloading on [lang = "add"]
Philip Herron
1
-209
/
+10
2021-11-05
Support computing the addresses of the object safe items in dyn objects
Philip Herron
1
-40
/
+153
2021-11-01
Refactor ADTType to consist of multiple variants
Philip Herron
1
-1
/
+5
2021-10-22
Merge #764
bors[bot]
1
-1
/
+1
2021-10-22
Update GCC/Rust files per 'contrib/update-copyright.py --this-year'
Thomas Schwinge
1
-1
/
+1
2021-10-22
Add missing coercion site code to MethodCallExpr's
Philip Herron
1
-6
/
+22
2021-10-22
Merge #757 #758 #759 #760
bors[bot]
1
-42
/
+28
2021-10-22
Remove second lookup for query compiled functions
Philip Herron
1
-42
/
+28
2021-10-22
Constify BaseType::get_root since this should not change ownership
Philip Herron
1
-9
/
+10
2021-10-05
Ensure we emit the code for coercion sites on CallExpr and MethodCallExpr
Philip Herron
1
-15
/
+96
2021-10-05
Remove lambda iterator from HIR::MethodCallExpr
Philip Herron
1
-12
/
+11
2021-10-05
Remove lambda iterator from HIR::CallExpr
Philip Herron
1
-11
/
+11
2021-09-17
Initial Dynamic dispatch support
Philip Herron
1
-15
/
+240
2021-09-15
Fix bug when calling method from generic reciever type-bound
Philip Herron
1
-6
/
+22
2021-09-14
Initial autoderef support for method calls
Philip Herron
1
-0
/
+26
2021-09-05
name_mangling: Add Mangler class with multiple versions
CohenArthur
1
-103
/
+0
2021-08-26
Get rid of get_locus_slow
Mark Wielaard
1
-2
/
+2
2021-08-20
Add qualified path support
Philip Herron
1
-3
/
+16
2021-08-19
Add support for optional trait functions in method calls
Philip Herron
1
-2
/
+26
2021-08-18
typecheck + backend: add module support
Marc Poulhiès
1
-0
/
+1
2021-08-08
Fix memory issues with multiple type-bounds
Philip Herron
1
-3
/
+3
2021-08-08
refactor error_node to be part of the type not the resolver
Philip Herron
1
-1
/
+1
2021-08-05
Support TypeBounds on Generic functions
Philip Herron
1
-21
/
+97
2021-08-01
union support for hir type checking and gcc backend
Mark Wielaard
1
-1
/
+1
2021-06-24
Add support for nested functions
Philip Herron
1
-14
/
+37
[next]