messages from 2016-12-22 00:44:49 to 2017-02-18 01:28:59 UTC [more...]
[PATCH 0/2] split OP_BR between OP_BR & OP_CBR
2017-02-18 1:28 UTC
[RFC PATCH 0/2] allow casting unrestricted values
2017-02-17 20:23 UTC (5+ messages)
` [RFC PATCH 1/2] Allow casting to a restricted type if !restricted_value
` [RFC PATCH 2/2] Add test case for casts to restricted types
Casting 0 to a __bitwise type
2017-02-17 14:56 UTC (7+ messages)
[PATCH] fix size of loaded bitfields
2017-02-17 2:44 UTC
[PATCH] add missing braces around FOR_EACH_PTR loop
2017-02-17 0:23 UTC
[RFC] CSE: relax type checking in hashing/compare
2017-02-17 0:06 UTC (2+ messages)
` [RFC,original PATCH] CSE: let equivalent cast hash & compare identically
[PATCH 0/4] CSE improvements
2017-02-16 23:12 UTC (5+ messages)
` [PATCH 1/4] CSE: add test cases for comparisons duality
` [PATCH 2/4] CSE: use commutativity to identify equivalent instructions
` [PATCH 3/4] CSE: avoid hashing removed instructions
` [PATCH 4/4] CSE: improve hashing of non-commutative binops
[PATCH] fix expansion cost of pure functions
2017-02-16 15:45 UTC
[PATCH] simplify float-to-float casts that doesn't change size
2017-02-16 13:53 UTC (3+ messages)
[PATCH 00/16] instructions killing & operands usage
2017-02-16 4:57 UTC (17+ messages)
` [PATCH 01/16] add killing of OP_SLICEs
` [PATCH 02/16] add killing of OP_PHISOURCEs
` [PATCH 03/16] add helper kill_use_list()
` [PATCH 04/16] fix killing of OP_PHIs
` [PATCH 05/16] fix clear_phi(), replace it by kill_instruction()
` [PATCH 06/16] remove unused clear_phi()
` [PATCH 07/16] fix killing of otherwise not-handled instructions
` [PATCH 08/16] kill_instruction() may need to be forced or not
` [PATCH 09/16] add killing of pure calls
` [PATCH 10/16] fix killing OP_CALL via pointers
` [PATCH 11/16] add killing of non-volatile loads
` [PATCH 12/16] add killing of stores
` [PATCH 13/16] fix killing of rewritten loads
` [PATCH 14/16] use kill_instruction() when killing an OP_PHI during CSE
` [PATCH 15/16] use kill_instruction() when killing any instructions "
` [PATCH 16/16] fix OP_PHI usage in try_to_simplify_bb()
[PATCH 0/4] assorted cleanups
2017-02-16 2:56 UTC (7+ messages)
` [PATCH 1/4] cleanup: there is no 'struct phi' to allocate
` [PATCH 2/4] remove unused field 'multijmp' in struct statement
` [PATCH 3/4] remove unused field 'goto_bb' "
` [PATCH 4/4] fix show-parse()'s labels
[PATCH v2 0/8] fix uses of killed instructions
2017-02-13 16:59 UTC (38+ messages)
` [PATCH v2 1/8] fix crash while testing between conditional & unconditional OP_BR
` [PATCH v2 2/8] kill uses of replaced instructions
` [PATCH v2 3/8] fix killing OP_PHI instructions
` [PATCH v2 4/8] fix killing OP_CAST & friends
` [PATCH v2 5/8] fix killing OP_SELECT
` [PATCH v2 6/8] fix killing OP_COMPUTEDGOTO
` [PATCH v2 7/8] explicitely ignore killing OP_ENTRY
` [PATCH v2 8/8] cleanup kill_instruction()
` status of sparse-next
` [PATCH] fix killing OP_SETVAL instructions
` [PATCH v2 00/14] testsuite improvements
` [PATCH v2 01/14] testsuite: give a proper name to the 'binary-constant' test
` [PATCH v2 02/14] testsuite: make tests known to fail effectively fail
` [PATCH v2 03/14] testsuite: simplify the ioc-typecheck case
` [PATCH v2 04/14] testsuite: add a simple test for -Wenum-mismatch
` [PATCH v2 05/14] testsuite: add tag to ignore the output/error
` [PATCH v2 06/14] testsuite: report as error tests known to fail but which succeed
` [PATCH v2 07/14] allow to launch the test suite from the project root dir
` [PATCH v2 08/14] testsuite: check patterns presence or absence in output
` [PATCH v2 09/14] testsuite: add some selfchecking
` [PATCH v2 10/14] testsuite: check the nbr of times a pattern should be present
` [PATCH v2 11/14] testsuite: use 'error' instead of 'info' for successful tests known to fail
` [PATCH v2 12/14] testsuite: get 'check-known-to-fail' earlier
` [PATCH v2 13/14] testsuite: allow quieter error reporting
` [PATCH v2 14/14] testsuite: quieter error reporting for 'known-to-fail'
[PATCH 0/3] builtins expansion
2017-02-13 1:54 UTC (17+ messages)
` [PATCH 1/3] move evaluation & expansion of builtins in a separate file
` [PATCH 2/3] allow builtins to have prototype and evaluate/expand methods
` [PATCH v2 0/3] builtins expansion
` [PATCH v2 1/3] move evaluation & expansion of builtins in a separate file
` [PATCH v2 2/3] let identical symbols share their evaluate/expand methods
` [PATCH v2 3/3] expand __builtin_bswap*() with constant args
` [PATCH "
[PATCH] compiler/compiler-gcc: Add __fallthrough
2017-02-10 18:50 UTC (3+ messages)
sparse: add nocapture as an ignored attribute
2017-02-08 23:00 UTC
[PATCH 0/4] improve -m32/-m64
2017-02-08 22:33 UTC (9+ messages)
` [PATCH 1/4] define __LP64__ & _LP64 if arch_m64 is enabled
` [PATCH 2/4] add an helper for common predefined macros
` [PATCH 3/4] define __LONG_MAX__ & __SIZEOF_POINTER__
` [RFC,PATCH 4/4] add support for LLP64 arch
` [PATCH v2] "
[PATCH 0/5] more simplification of constant multiplicative ops
2017-02-07 20:50 UTC (21+ messages)
` [PATCH 2/5] simplify '(x / 1)' to 'x'
` [PATCH v2 0/5] more simplification of constant multiplicative ops
` [PATCH v2 1/5] move OP_MUL simplification in a separate function
` [PATCH v2 2/5] simplify '(x / 1)' to 'x'
` [PATCH v2 3/5] simplify '(x * -1)' to '-x'
` [PATCH v2 4/5] simplify '(x / -1)' to '-x' (but only for signed division)
` [PATCH v3 0/5] more simplification of constant multiplicative ops
` [PATCH v3 1/5] move OP_MUL simplification in a separate function
` [PATCH v3 2/5] simplify '(x / 1)' to 'x'
` [PATCH v3 3/5] simplify '(x * -1)' to '-x'
` [PATCH v3 4/5] simplify '(x / -1)' to '-x' (but only for signed division)
` [PATCH v3 5/5] simplify '(x % 1)' into '0'
` [PATCH v2 "
[RFC/PATCH] arm64: Rename macro arguments to silence sparse
2017-02-07 20:33 UTC (4+ messages)
[PATCH 0/3] diagnose unknown escapes after preprocessing
2017-02-07 20:10 UTC (6+ messages)
` [PATCH 1/3] add testcase for wrong early escape conversion
` [PATCH 2/3] warn on unknown escapes after preprocessing
` [PATCH 3/3] remove 'Escape' from token character class
[PATCH 0/2] add support for __int128
2017-02-07 14:40 UTC (5+ messages)
` [PATCH 2/2] "
[PATCH] make -m32/-m64 more useful
2017-02-07 2:28 UTC (2+ messages)
[PATCH] OP_SWITCH should use 'insn->cond' instead of 'insn->target'
2017-02-06 23:16 UTC (3+ messages)
[PATCH] remove unused field 'multijump' in struct instruction
2017-02-06 20:35 UTC (2+ messages)
Bitte kontaktieren Sie mich für weitere Details!
2017-02-01 8:23 UTC
[PATCH 0/3] validate expression's type in conditionals
2017-01-29 11:34 UTC (4+ messages)
` [PATCH 1/3] fix conditional context test case with void
` [PATCH 2/3] add helper: is_scalar_type()
` [PATCH 3/3] validate expression's type in conditionals
Output from linearize and LLVM error
2017-01-29 9:15 UTC (12+ messages)
[PATCH] fix crash while testing between conditional & unconditional OP_BR
2017-01-27 11:38 UTC
Sparse-llvm question
2017-01-26 17:47 UTC (2+ messages)
Query regarding sizeof long
2017-01-24 18:00 UTC (3+ messages)
Urgent Please,,
2017-01-23 14:07 UTC
[PATCH] fix cast's target type info
2017-01-13 17:23 UTC
[PATCH] Handle SForced in storage_modifiers
2017-01-05 6:39 UTC (7+ messages)
[PATCH 0/5] more testsuite improvements
2017-01-05 5:16 UTC (6+ messages)
` [PATCH 1/5] testsuite: check the nbr of times a pattern should be present
` [PATCH 2/5] testsuite: use 'error' instead of 'info' for successful tests known to fail
` [PATCH 3/5] testsuite: get 'check-known-to-fail' earlier
` [PATCH 4/5] testsuite: allow quieter error reporting
` [PATCH 5/5] testsuite: quieter error reporting for 'known-to-fail'
[PATCH 0/5] add basic support for C11
2017-01-05 3:22 UTC (6+ messages)
` [PATCH 1/5] C11: teach sparse about '_Thread_local'
` [PATCH 2/5] C11: teach sparse about '_Noreturn'
` [PATCH 3/5] C11: teach sparse about '_Alignof()'
` [PATCH 4/5] C11: teach sparse about '_Alignas()'
` [PATCH 5/5] C11: teach sparse about '--std={c11,gnu11}'
[PATCH] fix value of label statement
2017-01-04 4:45 UTC
[PATCH 0/4] phisrc fixes
2017-01-04 3:03 UTC (5+ messages)
` [PATCH 1/4] volatile loads must not be simplified
` [PATCH 2/4] fix superfluous phisrc
` [PATCH 3/4] fix phisrc mixup
` [PATCH 4/4] missing load simplification
Urgent Please;;
2017-01-02 17:34 UTC
cgcc and -Dx86_64
2016-12-22 0:44 UTC (2+ messages)
` [PATCH] cgcc should not define non-reserved identifiers
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
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).