linux-sparse.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-12-08 09:16:05 to 2021-03-10 22:11:46 UTC [more...]

[PATCH 0/9] simplify CMP(AND(x,M), C) and CMP(OR(x,M), C)
 2021-03-10 21:49 UTC  (10+ messages)
` [PATCH 1/9] change testing of signed compares against SMIN or SMAX
` [PATCH 2/9] add testcases for constant compares against AND/OR
` [PATCH 3/9] simplify (x & M) cmps C
` [PATCH 4/9] simplify (x & M) cmpu C
` [PATCH 5/9] simplify (x & M) cmps 0
` [PATCH 6/9] simplify (x & M) {==,!=} C
` [PATCH 7/9] simplify (x | "
` [PATCH 8/9] simplify (x | M) cmps C
` [PATCH 9/9] simplify (x | M) cmpu C

[PATCH 0/4] fix SSA conversion of mismatched memops
 2021-03-09 23:42 UTC  (5+ messages)
` [PATCH 1/4] ssa: add some testcases for "
` [PATCH 2/4] ssa: the sparse set is not needed
` [PATCH 3/4] ssa: avoid SSA conversion of packed bitfields
` [PATCH 4/4] ssa: fix conversion with mismatched size or offset

[PATCH 0/6] small changes to ptrlist API
 2021-03-06 22:05 UTC  (15+ messages)
` [PATCH 1/6] ptrlist: ~fix TYPEOF()
` [PATCH 2/6] ptrlist: change TYPEOF() into PTRLIST_TYPE()
` [PATCH 3/6] ptrlist: add pop_ptr_list()
` [PATCH 4/6] ptrlist: use ptr_list_nth() instead of linearize_ptr_list()
` [PATCH 5/6] ptrlist: make linearize_ptr_list() generic
` [PATCH 6/6] ptrlist: change return value of linearize_ptr_list()/ptr_list_to_array()

[PATCH 00/11] pragma once: treewide conversion
 2021-03-06 21:33 UTC  (11+ messages)

[PATCH] phi-sources can only have a single user (or none)
 2021-03-06 21:17 UTC  (2+ messages)

Servicio de la flota
 2021-03-03  8:31 UTC 

[PATCH] pre-proc: do some path normalization
 2021-03-01  0:44 UTC 

[PATCH 0/4] small reorganization of OP_SLICE
 2021-02-28 21:40 UTC  (9+ messages)
` [PATCH 1/4] slice: remove unneeded len from OP_SLICE
` [PATCH 2/4] slice: remove unneeded nr_nrbits from EXPR_SLICE
` [PATCH 3/4] slice: OP_SLICE needs the source's type: make it a kind of unop
` [PATCH 4/4] slice: display the source's size, like for unops

[PATCH] linearize.h: fix some 'selfcheck' warnings
 2021-02-28 21:33 UTC  (2+ messages)

[PATCH] asm-out0: fix a test failure on 32-bit systems
 2021-02-28 21:31 UTC  (2+ messages)

[PATCH] fix eval of the assignment of a non-restricted value to a restricted variable
 2021-02-25 22:05 UTC 

[PATCH 0/5] teach memory simplification about ASM instructions
 2021-02-21 22:34 UTC  (6+ messages)
` [PATCH 1/5] reorg dominates()
` [PATCH 2/5] asm-mem: add testcase for missing reload after asm memops
` [PATCH 3/5] asm-mem: does it clobber memory?
` [PATCH 4/5] asm-mem: does it output to memory?
` [PATCH 5/5] asm-mem: teach dominates() about OP_ASM

[PATCH 0/3] output *memory* operands need their address as *input*
 2021-02-21 22:28 UTC  (4+ messages)
` [PATCH 1/3] asm: add testcase for problem with output addresses
` [PATCH 2/3] asm: factor out add_asm_rule() from add_asm_{in,out}put()
` [PATCH 3/3] asm: output *memory* operands need their address as *input*

[PATCH] expand __builtin_object_size()
 2021-02-21 22:17 UTC 

[PATCH v2 2/4] usb: typec: tps6598x: Add trace event for status register
 2021-02-15 11:32 UTC  (7+ messages)

[PATCH] fix add_join_conditional() one of the alternative is VOID
 2021-01-29  0:28 UTC 

[PATCH] Makefile: add version.h dependency on all objects
 2021-01-27 20:47 UTC  (2+ messages)

[PATCH 00/10] simplify and canonicalize signed compares
 2021-01-26 22:04 UTC  (11+ messages)
` [PATCH 01/10] cmps: make clearer we're using the operands' size
` [PATCH 02/10] cmps: fix simplification of sext(x) + signed compare of {SMAX,SMIN}
` [PATCH 03/10] cmpu: fix canonicalization of unsigned (x {<,>=} C) --> (x {<=,>} C-1)
` [PATCH 04/10] cmps: add testcases for simplification of signed compares
` [PATCH 05/10] cmps: simplify signed compares with SMIN or SMAX
` [PATCH 06/10] cmps: canonicalize signed compares with SMIN/SMAX
` [PATCH 07/10] cmps: canonicalize SMIN/SMAX +- 1 --> EQ/NE
` [PATCH 08/10] cmps: canonicalize signed compares with constant
` [PATCH 09/10] cmps: canonicalize SEL(x {<,<=} y, a, b) --> SEL(x {>=,>} y, b, a)
` [PATCH 10/10] cmps: canonicalize SEL(x > 0, a, -a) --> SEL(x >= 0, a, -a)

[PATCH] simplify LSR + SEXT into ASR
 2021-01-24 23:18 UTC 

[PATCH] fix possible circular definition with can_move_to()
 2021-01-24 16:29 UTC 

'const' unnamed structures
 2021-01-22 20:11 UTC  (7+ messages)
` [PATCH] handle qualified anonymous structures

[PATCH v2] handle qualified anonymous structures
 2021-01-22 21:23 UTC 

[PATCH 0/2] Fix build errors and warnings when make M=samples/bpf
 2021-01-18 18:44 UTC  (10+ messages)
` [PATCH bpf 1/2] samples/bpf: Set flag __SANE_USERSPACE_TYPES__ for MIPS to fix build warnings
` [PATCH 2/2] compiler.h: Include asm/rwonce.h under ARM64 and ALPHA to fix build errors

[PATCH] fix type of canonicalization of sext + unsigned compare
 2021-01-17 15:13 UTC 

[PATCH 00/16] support __packed struct
 2021-01-05 22:07 UTC  (37+ messages)
` [PATCH v2 01/16] add testcases for dubious enum values
` [PATCH v2 02/16] add testcases for exotic "
` [PATCH v2 03/16] add testcases for enum attributes
` [PATCH v2 04/16] add testcases for type attributes
` [PATCH v2 05/16] add testcases for packed structures
` [PATCH v2 06/16] add testcases for packed bitfields
` [PATCH v2 07/16] apply_ctype: use self-explanatory argument name
` [PATCH v2 08/16] apply_ctype: reverse the order of arguments
` [PATCH v2 09/16] apply_ctype: move up its declaration
` [PATCH v2 10/16] struct-attr: prepare to handle attributes at the end of struct definitions (1)
` [PATCH v2 11/16] struct-attr: prepare to handle attributes at the end of struct definitions (2)
` [PATCH v2 12/16] struct-attr: prepare to handle attributes at the end of struct definitions (3)
` [PATCH v2 13/16] struct-attr: fix type attribute like 'struct __attr { ... }'
` [PATCH v2 14/16] struct-attr: fix: do not ignore struct/union/enum type attributes
` [PATCH v2 15/16] packed: no out-of-bound access of packed bitfields
` [PATCH v2 16/16] packed: add support for __packed struct

[PATCH] RFC: problems with cast optimization at evaluation time
 2021-01-02 19:52 UTC  (2+ messages)

[PATCH v3 00/16] support __packed struct
 2020-12-31 15:30 UTC  (18+ messages)
` [PATCH v3 01/16] add testcases for dubious enum values
` [PATCH v3 02/16] add testcases for exotic "
` [PATCH v3 03/16] add testcases for enum attributes
` [PATCH v3 04/16] add testcases for type attributes
` [PATCH v3 05/16] add testcases for packed structures
` [PATCH v3 06/16] add testcases for packed bitfields
` [PATCH v3 07/16] apply_ctype: use self-explanatory argument name
` [PATCH v3 08/16] apply_ctype: reverse the order of arguments
` [PATCH v3 09/16] apply_ctype: move up its declaration
` [PATCH v3 10/16] struct-attr: prepare to handle attributes at the end of struct definitions (1)
` [PATCH v3 11/16] struct-attr: prepare to handle attributes at the end of struct definitions (2)
` [PATCH v3 12/16] struct-attr: prepare to handle attributes at the end of struct definitions (3)
` [PATCH v3 13/16] struct-attr: fix type attribute like 'struct __attr { ... }'
` [PATCH v3 14/16] struct-attr: fix: do not ignore struct/union/enum type attributes
` [PATCH v3 15/16] packed: no out-of-bound access of packed bitfields
` [PATCH v3 16/16] packed: add support for __packed struct

[PATCH 0/2] fix rem_usage()
 2020-12-28 22:30 UTC  (8+ messages)
` [PATCH 1/2] add helper has_definition()
` [PATCH 2/2] fix rem_usage()

[PATCH] ptrlist: avoid mixing reverse and non-reverse macros
 2020-12-27 11:04 UTC 

[PATCH] shrink struct BB
 2020-12-27 10:08 UTC 

sparse annotation for error types?
 2020-12-19 11:55 UTC  (4+ messages)

sparse attribute packed on structures
 2020-12-17  0:57 UTC  (8+ messages)

Patch "[PATCH 1/2] Revert "md: change mddev 'chunk_sectors' from int to" has been added to the 5.10-stable tree
 2020-12-17  0:35 UTC  (5+ messages)
      ` [PATCH] warn when zero-extending a negation

[PATCH] testsuite: fix parsing of tags used in the testcases
 2020-12-11 20:14 UTC  (3+ messages)

[PATCH] move check_access() to late_warnings()
 2020-12-09 23:31 UTC 

Control del vehículo
 2020-12-08  9:05 UTC 


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 NNTP newsgroup(s).