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
Age
Commit message (
Expand
)
Author
Files
Lines
2025-03-24
gccrs: enum type layout needs to respect the enum repr type
Philip Herron
2
-14
/
+5
2025-03-24
gccrs: add variant_count intrinsic
Philip Herron
1
-1
/
+55
2025-03-24
gccrs: add discriminant value intrinsic
Philip Herron
1
-44
/
+105
2025-03-24
gccrs: Fix compilation of trait-items which map to impl items
Philip Herron
3
-12
/
+39
2025-03-24
gccrs: nr2.0: Remove accidental copies of resolver
Owen Avery
3
-5
/
+5
2025-03-24
gccrs: add support for ref literal patterns
Philip Herron
1
-6
/
+12
2025-03-24
gccrs: add new -frust-overflow-checks flag to control overflow checks
Philip Herron
1
-16
/
+17
2025-03-24
gccrs: Compile unit struct with constructor
Pierre-Emmanuel Patry
1
-0
/
+5
2025-03-24
gccrs: Remove query mode on CompileItem
Pierre-Emmanuel Patry
2
-8
/
+4
2025-03-24
gccrs: backend: Improve handling of lang-item PathInExpressions
Arthur Cohen
2
-48
/
+84
2025-03-24
gccrs: hir: Adapt visitors to lang item PathInExpressions
Arthur Cohen
1
-4
/
+18
2025-03-24
gccrs: catch missing guard for optional result
Philip Herron
1
-5
/
+2
2025-03-24
gccrs: backend: Allow anything as a match scrutinee
Arthur Cohen
1
-5
/
+1
2025-03-21
gccrs: rust/intrinsic: add new "catch_unwind" variant of API
liushuyu
1
-10
/
+47
2025-03-21
gccrs: rust/intrinsic: add try intrinsic and panic strategy options
liushuyu
1
-0
/
+72
2025-03-21
gccrs: match arms are a LUB
Philip Herron
1
-1
/
+12
2025-03-21
gccrs: cleanup our enum type layout to be closer to rustc
Philip Herron
4
-78
/
+127
2025-03-21
gccrs: add support for lang_item eq and PartialEq trait
Philip Herron
2
-3
/
+29
2025-03-21
gccrs: Remove Rust::make_unique
Owen Avery
1
-1
/
+1
2025-03-21
gccrs: implement the TuplePattern and use it for function patterns
Philip Herron
4
-14
/
+109
2025-03-21
gccrs: add checks for division by zero and left shift overflow
Philip Herron
1
-3
/
+5
2025-03-21
gccrs: constant evaluation like these are coercion sites
Philip Herron
4
-15
/
+46
2025-03-21
gccrs: hir: Remove duplicate function in TraitItemFunc
Arthur Cohen
1
-1
/
+1
2025-03-21
gccrs: ensure packed and aligned is applied properly
Philip Herron
1
-3
/
+5
2025-03-21
gccrs: Prepend crate name to functions with nr2
Pierre-Emmanuel Patry
1
-1
/
+10
2025-03-21
gccrs: empty match expressions should resolve to !
Philip Herron
1
-11
/
+10
2025-03-21
gccrs: Clean up some system includes
Pierre-Emmanuel Patry
3
-3
/
+0
2025-03-21
gccrs: Use a reference wrapper to please GCC 4.8
Pierre-Emmanuel Patry
2
-10
/
+11
2025-03-21
gccrs: Fixes some tests appearing with a moved variant
Pierre-Emmanuel Patry
1
-1
/
+1
2025-03-21
gccrs: Refactor HIR with optionals, references & newtypes
Pierre-Emmanuel Patry
4
-13
/
+14
2025-03-21
gccrs: Refactor HIR to reduce the amount of raw pointers
Pierre-Emmanuel Patry
22
-239
/
+219
2025-03-21
gccrs: asm: Fix clang warnings
Arthur Cohen
2
-5
/
+2
2025-03-21
gccrs: Remove usage of Resolver::get_builtin_types
Owen Avery
1
-13
/
+2
2025-03-21
rust: Desugar IfLet* into MatchExpr
Marc Poulhiès
2
-6
/
+0
2025-03-21
gccrs: Use name resolver 2.0 in CompileTraitItem
Owen Avery
1
-4
/
+32
2025-03-19
gccrs: Use name resolver 2.0 for compiling break/continue
Owen Avery
1
-4
/
+37
2025-03-19
gccrs: Provide input operand for gccrs
badumbatish
1
-2
/
+20
2025-03-19
gccrs: Insert static items into the value namespace
Owen Avery
1
-2
/
+17
2025-03-19
gccrs: [gccrs#3141] Remove double negation by returning CompileExpr::Compile ...
JoanVC
1
-6
/
+5
2025-03-19
gccrs: [gccrs#3141] Fix incorrect handling of overflow in numeric types
JoanVC
1
-5
/
+62
2025-03-19
gccrs: Dynamic dispatch with supertraits
Liam Naddell
1
-72
/
+56
2025-03-19
gccrs: Rehaul, Apply code review from Arthur
badumbatish
3
-69
/
+10
2025-03-19
gccrs: Make inline mov compiles
badumbatish
1
-1
/
+1
2025-03-19
gccrs: Use's array type when constring string tree
badumbatish
1
-3
/
+3
2025-03-19
gccrs: Perform lowering hir output operand to tree
badumbatish
1
-1
/
+11
2025-03-19
gccrs: Lower the HIR to tree with CompileExpr
badumbatish
2
-13
/
+20
2025-03-19
gccrs: Move strip double quotes, add scaffold expand
badumbatish
2
-18
/
+1
2025-03-19
gccrs: Added counting to check for asm_construct_outputs
badumbatish
1
-0
/
+7
2025-03-19
gccrs: Minor fix to asm codegen pr
badumbatish
2
-17
/
+10
2025-03-19
gccrs: Refactor compile-asm for first round review
badumbatish
2
-271
/
+107
[prev]
[next]