public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
[committed] testsuite: Add filters for default_packed targets [PR116155]
 2024-08-01 15:00 UTC 

[PATCH 001/125] Rust: Make 'tree'-level 'MAIN_NAME_P' work
 2024-08-01 14:57 UTC  (121+ messages)
` [PATCH 002/125] gccrs: Fix false positive for top-level AltPattern
` [PATCH 003/125] gccrs: minor cleanup in langhook.type_for_mode
` [PATCH 004/125] gccrs: fmt: Start working on format_args!() parser
` [PATCH 005/125] gccrs: libgrust: Add format_parser library
` [PATCH 006/125] gccrs: Add 'gcc/rust/Make-lang.in:LIBFORMAT_PARSER'
` [PATCH 007/125] gccrs: libgrust: Vendor Rust dependencies
` [PATCH 008/125] Rust: Don't cache 'libformat_parser.a'
` [PATCH 009/125] Rust: Move 'libformat_parser' build into the GCC build directory
` [PATCH 010/125] Rust: Move 'libformat_parser' build into libgrust
` [PATCH 011/125] gccrs: libformat_parser: Add FFI safe interface
` [PATCH 012/125] gccrs: libformat_parser: Start experimenting with cbindgen
` [PATCH 013/125] gccrs: libformat_parser: Update header and remove old interface
` [PATCH 014/125] gccrs: libformat_parser: Send boxed values across FFI properly
` [PATCH 015/125] gccrs: format_args: Parse format string properly
` [PATCH 016/125] gccrs: format_args: Parse entire token invocation
` [PATCH 017/125] gccrs: rust-fmt: Store parsed string in Pieces struct
` [PATCH 018/125] gccrs: libformat_parser: Fix Rust warnings
` [PATCH 019/125] gccrs: format-parser: Add `is_some_and` method for Option<T>
` [PATCH 020/125] gccrs: Adjust error checks to match name resolution 2.0
` [PATCH 021/125] gccrs: Fix small FixMe task in rust macro builtins
` [PATCH 022/125] gccrs: lang-items: Cleanup parsing and lookups of lang items
` [PATCH 023/125] gccrs: lang-items: Make lang items enum stronger, rename class, cleanup ns
` [PATCH 024/125] gccrs: extern-types: Declare external types in name resolver
` [PATCH 025/125] gccrs: hir: Add ExternalTypeItem node
` [PATCH 026/125] gccrs: extern-types: Lower to HIR::ExternalTypeItem properly
` [PATCH 027/125] gccrs: Make DefaultResolver visit more of the AST
` [PATCH 028/125] gccrs: ast: Add base nodes for FormatArgs
` [PATCH 029/125] gccrs: macro-builtins: Add newline generic format_args!() handler
` [PATCH 030/125] gccrs: parser: Add peek(n) method to parser
` [PATCH 031/125] gccrs: format-args: Fix Rust interface and add input parsing
` [PATCH 032/125] gccrs: lower: Add base for lowering FormatArgs nodes
` [PATCH 033/125] gccrs: format-args: Add documentation for future expansion of function
` [PATCH 034/125] gccrs: Add error emitting when we can't resolve id expr
` [PATCH 035/125] gccrs: Add curly brackets, formatted clang
` [PATCH 036/125] gccrs: Ensure TupleStructPattern and TuplePattern have items
` [PATCH 037/125] gccrs: Clean BiMap to use tl::optional for lookups
` [PATCH 038/125] gccrs: Add support for external functions
` [PATCH 039/125] gccrs: Add get_pattern_kind to Pattern
` [PATCH 040/125] gccrs: Unify ASTValidation::visit for ExternalFunctionItem and Function
` [PATCH 041/125] gccrs: Update resolver to use `AST::Function` instead of `AST::ExternalFunctionItem`
` [PATCH 042/125] gccrs: Remove dead code associated with `AST::ExternalFunctionItem`
` [PATCH 043/125] gccrs: Placate clang-format re 'gcc/rust/backend/rust-tree.cc'
` [PATCH 044/125] gccrs: Replace reference to unique pointer with reference
` [PATCH 045/125] gccrs: Replace unique_ptr references with references
` [PATCH 046/125] gccrs: macro: Use MacroInvocation's node_id in ExternalItem constructor
` [PATCH 047/125] gccrs: format-args: Add base for expanding FormatArgs nodes
` [PATCH 048/125] gccrs: format-args: Start storing string in Rust memory
` [PATCH 049/125] gccrs: format-args: Add basic expansion of unnamed Display::fmt arguments
` [PATCH 050/125] gccrs: format-args: Add basic test case
` [PATCH 051/125] gccrs: format-args: Only pass the format string to the parser
` [PATCH 052/125] gccrs: TyTy: add common SubstitutionRef API
` [PATCH 053/125] gccrs: TyTy: Variance analysis module
` [PATCH 054/125] gccrs: TyTy: Collect variance info from types
` [PATCH 055/125] gccrs: Store visibility properly in ExternalTypeItem
` [PATCH 056/125] gccrs: Fix typo
` [PATCH 057/125] gccrs: Split up rust-macro-builtins.cc
` [PATCH 058/125] gccrs: Placate clang-format re 'gcc/rust/lex/rust-lex.cc'
` [PATCH 059/125] gccrs: nr2.0: Add new ImmutableNameResolutionCtx class
` [PATCH 060/125] gccrs: sesh: Add late name resolution 2.0
` [PATCH 061/125] gccrs: session-manager: Dump name resolution pass
` [PATCH 062/125] gccrs: session manager: Init Immutable name resolver
` [PATCH 063/125] gccrs: nr2.0: Add lookup of resolved nodes
` [PATCH 064/125] gccrs: typecheck: Start using nr2.0 properly
` [PATCH 065/125] gccrs: backend: Use new name resolver where necessary
` [PATCH 066/125] gccrs: nr2.0: Start using newtype pattern for Usage and Declaration
` [PATCH 067/125] gccrs: late: Setup builtin types properly, change Rib API
` [PATCH 068/125] gccrs: Fix duplicate detection
` [PATCH 069/125] gccrs: Emit error on identical use declarations
` [PATCH 070/125] gccrs: Change error message on unresolved import
` [PATCH 071/125] gccrs: Prevent error emission on resolver reentry
` [PATCH 072/125] gccrs: late: Add bool builtin type
` [PATCH 073/125] gccrs: Add modules to type namespace
` [PATCH 074/125] gccrs: Add name resolution for on globbing use decl
` [PATCH 075/125] gccrs: Shape up name resolver for normal direct calls
` [PATCH 076/125] gccrs: Add call to globbing visitor
` [PATCH 077/125] gccrs: Make globbing definition shadowable by default
` [PATCH 078/125] gccrs: Add support for ambiguous use declarations
` [PATCH 079/125] gccrs: Add tuple struct constructor to value namespace
` [PATCH 080/125] gccrs: Change error message to match test
` [PATCH 081/125] gccrs: Visit function return type in default resolver
` [PATCH 082/125] gccrs: Visit constant item "
` [PATCH 083/125] gccrs: Raw pointer type visitor didn't require overload
` [PATCH 084/125] gccrs: Values shall be inserted in the value namespace
` [PATCH 085/125] gccrs: Unit struct constructor shall be resolved
` [PATCH 086/125] gccrs: Add tuple struct to the type namespace
` [PATCH 087/125] gccrs: Change enum namespace from value to type
` [PATCH 088/125] gccrs: Struct are types, not values
` [PATCH 089/125] gccrs: Add constant identifiers to the value namespace
` [PATCH 090/125] gccrs: Remove extern block scoping
` [PATCH 091/125] gccrs: Remove unsafe block empty visit function
` [PATCH 092/125] gccrs: Use new name resolver to compile constant items
` [PATCH 093/125] gccrs: Reinject Self parameter in new resolver
` [PATCH 094/125] gccrs: Update assignment operator with cratenum
` [PATCH 095/125] gccrs: Prevent getting immutable context with classic nr
` [PATCH 096/125] gccrs: Fix quoted string format
` [PATCH 097/125] gccrs: Add mappings for struct base and struct fields
` [PATCH 098/125] gccrs: Fix use rebind name resolution
` [PATCH 099/125] gccrs: compile: resolve-path-ref: properly resolve nodeId with nr2.0
` [PATCH 100/125] gccrs: nr2.0: Add new test cases
` [PATCH 101/125] gccrs: Add globbing name resolution 2.0 test
` [PATCH 102/125] gccrs: Change dfs function return type to support gcc 4.8
` [PATCH 103/125] gccrs: Improve parsing of raw byte string literals
` [PATCH 104/125] gccrs: Recognize rustc_deprecated as a builtin attribute
` [PATCH 105/125] gccrs: Recognize unstable "
` [PATCH 106/125] gccrs: Avoid parsing const unsafe/extern functions as async
` [PATCH 107/125] gccrs: Improve parsing of raw string literals
` [PATCH 108/125] gccrs: raw-strings: Remove dg-excess-error directive
` [PATCH 109/125] gccrs: unify: Always coerce `!` to the target type
` [PATCH 110/125] gccrs: borrowck: Use rust-system.h
` [PATCH 111/125] gccrs: borrowck: Unify BIR terminilogy (node->statement)
` [PATCH 112/125] gccrs: borrowck: BIR: use callable API
` [PATCH 113/125] gccrs: borrowck: BIR: Place tree traverse API
` [PATCH 114/125] gccrs: borrowck: BIR: scope handling
` [PATCH 115/125] gccrs: borrowck: BIR: emit moves
` [PATCH 116/125] gccrs: borrowck: BIR: make BIR visitor const
` [PATCH 117/125] gccrs: borrowck: Polonius FFI
` [PATCH 118/125] gccrs: borrowck: Free region representation
` [PATCH 119/125] gccrs: borrowck: extract regions from types using VA
` [PATCH 120/125] gccrs: borrowck: Regions in BIR
` [PATCH 121/125] gccrs: borrowck: Fact collector

[PATCH v3 1/6] libstdc++: Handle encodings in localized chrono formatting [PR109162]
 2024-08-01 14:29 UTC  (6+ messages)
` [committed, v4] "

[RFC] RISC-V: Add support for Profiles RVA/B23
 2024-08-01 13:54 UTC  (2+ messages)

[PATCH v2] aarch64: Add support for AdvSIMD faminmax
 2024-08-01 13:40 UTC 

[PATCH] arm: Fix testism with mve/ivopts-3.c testcase
 2024-08-01 12:54 UTC  (4+ messages)

[PATCH] Make may_trap_p_1 return false for constant pool references [PR116145]
 2024-08-01 12:49 UTC  (2+ messages)

[PATCH] MATCH: add abs support for half float
 2024-08-01 12:46 UTC  (13+ messages)

[PATCH v2] Internal-fn: Handle vector bool type for type strict match mode [PR116103]
 2024-08-01 12:11 UTC  (3+ messages)

[PATCH 4/5] RISC-V: Add support to vector stack-clash protection
 2024-08-01 12:01 UTC  (2+ messages)
` [PATCH v2] "

[PATCH] OpenMP: Constructors and destructors for "declare target" static aggregates
 2024-08-01 11:38 UTC  (3+ messages)
` [PATCH, v2] "

[libstdc++] [testsuite] avoid async.cc loss of precision [PR91486]
 2024-08-01 10:43 UTC  (2+ messages)
` [PATCH v2] "

[PATCH] fortran: Fix up paste in gfc_get_array_descr_info
 2024-08-01 10:39 UTC  (4+ messages)
  ` [PATCH] fortran, v2: Fix up pasto "

[PATCH] lra: emit caller-save register spills before call insn [PR116028]
 2024-08-01 10:12 UTC 

[PATCH] fortran: Fix a pasto in gfc_check_dependency
 2024-08-01 10:00 UTC 

[PATCH] aarch64: Add ACLE intrinsics for AdvSIMD faminmax
 2024-08-01  9:41 UTC  (3+ messages)

[PATCH] aarch64: Add support for AdvSIMD faminmax
 2024-08-01  9:36 UTC 

[PATCH 2/2] gdbhooks: Add attempt to invoke on-gcc-hooks-load
 2024-08-01  9:16 UTC 

[PATCH 1/2] gdbhooks: Make dot viewer configurable
 2024-08-01  9:14 UTC 

[PATCH] aarch64: Add support for AdvSIMD faminmax
 2024-08-01  9:14 UTC 

[PATCH 8/8]AArch64: take gather/scatter decode overhead into account
 2024-08-01  9:08 UTC  (6+ messages)

[committed] i386: Fix up *<extract_type>_vinsert<shuffletype><extract_suf>_0 [PR115981]
 2024-08-01  8:46 UTC 

[patch,avr,applied] Tweak comparisons with constant
 2024-08-01  8:43 UTC 

[Patch] libgomp: Device load_image - minor num-funcs/vars check improvement
 2024-08-01  8:12 UTC  (2+ messages)

[PATCH] Fix mismatch between constraint and predicate for ashl<mode>3_doubleword
 2024-08-01  7:55 UTC  (3+ messages)

[PATCH 0/1] Initial support for AVX10.2
 2024-08-01  7:47 UTC  (2+ messages)
` [PATCH 1/1] "

[committed] Fix compilation error in 2 1_neg.cc tests
 2024-08-01  7:26 UTC  (5+ messages)

[PATCH] middle-end/114563 - improve release_pages
 2024-08-01  7:21 UTC  (2+ messages)

[PATCH v2] match: Fix wrong code due to `(a ? e : f) !=/== (b ? e : f)` patterns [PR116120]
 2024-08-01  7:08 UTC  (2+ messages)

[PATCH] testsuite: Adjust fam-in-union-alone-in-struct-2.c to support BE [PR116148]
 2024-08-01  7:04 UTC  (3+ messages)

[Patch, libgfortran] PR105361 Followup fix to test case
 2024-08-01  6:22 UTC  (2+ messages)

[PATCH] i386: Fix memory constraint for APX NF
 2024-08-01  3:49 UTC  (4+ messages)

[PATCH] rs6000, document built-ins vec_test_lsbb_all_ones and, vec_test_lsbb_all_zeros
 2024-08-01  3:21 UTC  (4+ messages)

[PATCH] RISC-V: NFC: Do not use zicond for pr105314 testcases
 2024-08-01  2:17 UTC  (5+ messages)
  `  "
      ` [COMMITTED] "

[PATCH] LoongArch: Rework bswap{hi,si,di}2 definition
 2024-08-01  1:08 UTC  (4+ messages)

[PATCH] testsuite: add print-stack.exp
 2024-08-01  0:51 UTC 

[pushed] testsuite: split out parts of jit.dg/jit.exp into a new lib/valgrind.exp
 2024-08-01  0:51 UTC 

[pushed] diagnostics: handle logical locations with NULL name
 2024-08-01  0:51 UTC 

[pushed] testsuite: drop unused import within sarif.py
 2024-08-01  0:50 UTC 

[pushed] diagnostics: SARIF output: capture unlabelled secondary locations
 2024-08-01  0:50 UTC 

[pushed] diagnostics: SARIF output: eliminate some uses of "line_table" global
 2024-08-01  0:50 UTC 

[pushed] diagnostics: SARIF output: tweak ASCII art in comment
 2024-08-01  0:50 UTC 

[PATCH] aarch64: Improve Advanced SIMD popcount expansion by using SVE [PR113860]
 2024-08-01  0:23 UTC  (3+ messages)

[PATCH v2] aarch64: Improve Advanced SIMD popcount expansion by using SVE [PR113860]
 2024-08-01  0:20 UTC 

[PATCH v2] aarch64: Improve Advanced SIMD popcount expansion by using SVE [PR113860]
 2024-08-01  0:17 UTC  (2+ messages)

[PATCH 0/2] Fix two test failures with --enable-default-pie [PR70150]
 2024-07-31 21:58 UTC  (8+ messages)
` Ping: "
  ` Ping^2: "
    ` Ping^3: "
      ` Ping^4: "
        ` Ping^5: "
          ` Ping^6: "

[PATCH] libstdc++: Fix future.wait_until when given a negative time_point
 2024-07-31 21:39 UTC  (2+ messages)

[PATCH] c++/coroutines: only defer expanding co_{await,return,yield} if dependent [PR112341]
 2024-07-31 21:19 UTC  (5+ messages)
    ` [PATCH v2] "

[PATCH ver 2] rs6000, Add new overloaded vector shift builtin int128, varients
 2024-07-31 20:49 UTC  (3+ messages)

[PATCH v2] c: Add support for byte arrays in C2Y
 2024-07-31 20:47 UTC  (2+ messages)

[RFC/RFA] [PATCH v2 09/12] Add symbolic execution support
 2024-07-31 20:38 UTC  (2+ messages)

[PATCH 0/8] fortran: Inline MINLOC/MAXLOC without DIM argument [PR90608]
 2024-07-31 20:07 UTC  (9+ messages)
` [PATCH 1/8] fortran: Add tests covering inline MINLOC/MAXLOC without DIM [PR90608]
` [PATCH 2/8] fortran: Disable frontend passes for inlinable MINLOC/MAXLOC [PR90608]
` [PATCH 3/8] fortran: Inline MINLOC/MAXLOC with no DIM and ARRAY of rank 1 [PR90608]
` [PATCH 4/8] fortran: Outline array bound check generation code
` [PATCH 5/8] fortran: Inline integral MINLOC/MAXLOC with no DIM and no MASK [PR90608]
` [PATCH 6/8] fortran: Inline integral MINLOC/MAXLOC with no DIM and scalar "
` [PATCH 7/8] fortran: Inline non-character MINLOC/MAXLOC with no DIM [PR90608]
` [PATCH 8/8] fortran: Continue MINLOC/MAXLOC second loop where the first stopped [PR90608]

page:  |  | latest

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).