Haskell.org
Sign In Sign Up
Manage this list Sign In Sign Up

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

ghc-tickets

Thread Start a new thread
Download
Threads by month
  • ----- 2025 -----
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2022 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2021 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2020 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2019 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2018 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2017 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2016 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2015 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2014 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2013 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
ghc-tickets@haskell.org

  • 16452 discussions
Re: [GHC] #6084: Add stg_ap_pnnv and related call patterns
by GHC 25 Feb '13

25 Feb '13
#6084: Add stg_ap_pnnv and related call patterns ---------------------------------+------------------------------------------ Reporter: SimonMeier | Owner: simonmar Type: feature request | Status: infoneeded Priority: normal | Milestone: 7.8.1 Component: Runtime System | Version: 7.4.1 Keywords: | Os: Unknown/Multiple Architecture: Unknown/Multiple | Failure: None/Unknown Difficulty: Unknown | Testcase: Blockedby: | Blocking: Related: | ---------------------------------+------------------------------------------ Comment(by simonpj): Wouldn't adding new call patterns ''also'' be a good idea? The "short- cut" idea simply catches the case where the call is (dynamically) saturated; it doesn't obviate the desirability of having various slow-call patterns. The two ideas seem orthogonal to me. Simon -- Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/6084#comment:8> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
[GHC] #7682: Plugin example not updated for ghc 7.6
by GHC 24 Feb '13

24 Feb '13
#7682: Plugin example not updated for ghc 7.6 -----------------------------+---------------------------------------------- Reporter: edsko | Owner: Type: bug | Status: new Priority: normal | Component: Documentation Version: 7.6.2 | Keywords: Os: Unknown/Multiple | Architecture: Unknown/Multiple Failure: None/Unknown | Blockedby: Blocking: | Related: -----------------------------+---------------------------------------------- The GHC plugin docs (http://www.haskell.org/ghc/docs/latest/html/users_guide/compiler- plugins.html) have this example: {{{ pass :: ModGuts -> CoreM ModGuts pass = bindsOnlyPass (mapM printBind) where printBind :: CoreBind -> CoreM CoreBind printBind bndr@(NonRec b _) = do putMsgS $ "Non-recursive binding named " ++ showSDoc (ppr b) return bndr printBind bndr = return bndr }}} but in ghc >= 7.6 `showSDoc` requires `DynFlags`: {{{ pass :: ModGuts -> CoreM ModGuts pass guts = do dynFlags <- getDynFlags bindsOnlyPass (mapM $ printBind dynFlags) guts where printBind :: DynFlags -> CoreBind -> CoreM CoreBind printBind _dynFlags bndr@(NonRec b _) = do #if __GLASGOW_HASKELL__ >= 706 putMsgS $ "Non-recursive binding named " ++ showSDoc _dynFlags (ppr b) #else putMsgS $ "Non-recursive binding named " ++ showSDoc (ppr b) #endif return bndr printBind _dynFlags bndr = return bndr }}} -- Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/7682> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 2
0 0
Re: [GHC] #2507: quotation characters in error messages
by GHC 24 Feb '13

24 Feb '13
#2507: quotation characters in error messages -------------------------------+-------------------------------------------- Reporter: Isaac Dupree | Owner: Type: feature request | Status: closed Priority: lowest | Milestone: 7.6.2 Component: Compiler | Version: 6.8.3 Resolution: fixed | Keywords: Os: Unknown/Multiple | Architecture: Unknown/Multiple Failure: None/Unknown | Difficulty: Unknown Testcase: | Blockedby: Blocking: | Related: #2811,#3398 -------------------------------+-------------------------------------------- Changes (by igloo): * status: new => closed * resolution: => fixed Comment: Done -- Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/2507#comment:17> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #2507: quotation characters in error messages
by GHC 24 Feb '13

24 Feb '13
#2507: quotation characters in error messages ---------------------------------+------------------------------------------ Reporter: Isaac Dupree | Owner: Type: feature request | Status: new Priority: lowest | Milestone: 7.6.2 Component: Compiler | Version: 6.8.3 Keywords: | Os: Unknown/Multiple Architecture: Unknown/Multiple | Failure: None/Unknown Difficulty: Unknown | Testcase: Blockedby: | Blocking: Related: #2811,#3398 | ---------------------------------+------------------------------------------ Comment(by ian@…): commit e2bea6019fd523d4b6061174b114c49f55fa981c {{{ Author: Ian Lynagh <ian(a)well-typed.com> Date: Sun Feb 24 00:26:07 2013 +0000 Use unicode quote characters in error messages etc; fixes #2507 We only use the unicode characters if the locale supports them. compiler/main/DynFlags.hs | 15 ++++++++++++++- compiler/main/DynFlags.hs-boot | 1 + compiler/utils/Outputable.lhs | 7 ++++++- 3 files changed, 21 insertions(+), 2 deletions(-) }}} -- Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/2507#comment:16> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #2467: orphan instance warnings are badly behaved
by GHC 24 Feb '13

24 Feb '13
#2467: orphan instance warnings are badly behaved -------------------------------+-------------------------------------------- Reporter: duncan | Owner: Type: bug | Status: closed Priority: normal | Milestone: _|_ Component: Compiler | Version: 6.8.2 Resolution: fixed | Keywords: Os: Unknown/Multiple | Architecture: Unknown/Multiple Failure: None/Unknown | Difficulty: Unknown Testcase: | Blockedby: Blocking: | Related: -------------------------------+-------------------------------------------- Changes (by igloo): * status: new => closed * resolution: => fixed Comment: I don't think there are any more concrete changes we want to make, and there's been no discussion for years, so closing this ticket. -- Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/2467#comment:17> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #6037: Compile-time crash with sources with non-representable unicode characters
by GHC 23 Feb '13

23 Feb '13
#6037: Compile-time crash with sources with non-representable unicode characters ---------------------------------+------------------------------------------ Reporter: akio | Owner: Type: bug | Status: new Priority: normal | Milestone: 7.8.1 Component: Compiler | Version: 7.4.1 Keywords: | Os: Linux Architecture: Unknown/Multiple | Failure: Compile-time crash Difficulty: Unknown | Testcase: T6037 Blockedby: | Blocking: Related: | ---------------------------------+------------------------------------------ Changes (by igloo): * testcase: => T6037 * milestone: 7.6.2 => 7.8.1 Comment: I think that we want to do something along the lines of: {{{ enc <- mkIconvEncoding TransliterateCodingFailure localeEncodingName hSetEncoding stdout enc hSetEncoding stderr enc }}} but that means using internal modules, doing different things on different platforms, etc. Instead: I think we should be able to just do: {{{ hSetEncodingFailureMode stdout TransliterateCodingFailure hSetEncodingFailureMode stderr TransliterateCodingFailure }}} I've added a test. -- Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/6037#comment:4> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #7383: implement proper type promotion in compilation of C calls
by GHC 23 Feb '13

23 Feb '13
#7383: implement proper type promotion in compilation of C calls -------------------------------+-------------------------------------------- Reporter: igloo | Owner: Type: bug | Status: closed Priority: high | Milestone: 7.6.2 Component: Compiler | Version: 7.6.1 Resolution: fixed | Keywords: Os: Unknown/Multiple | Architecture: Unknown/Multiple Failure: None/Unknown | Difficulty: Unknown Testcase: | Blockedby: Blocking: | Related: 7684 -------------------------------+-------------------------------------------- Changes (by igloo): * status: infoneeded => closed * resolution: => fixed Comment: cgrun071 passes on OS X x86. I've pushed it. -- Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/7383#comment:6> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #7383: implement proper type promotion in compilation of C calls
by GHC 23 Feb '13

23 Feb '13
#7383: implement proper type promotion in compilation of C calls ---------------------------------+------------------------------------------ Reporter: igloo | Owner: Type: bug | Status: infoneeded Priority: high | Milestone: 7.6.2 Component: Compiler | Version: 7.6.1 Keywords: | Os: Unknown/Multiple Architecture: Unknown/Multiple | Failure: None/Unknown Difficulty: Unknown | Testcase: Blockedby: | Blocking: Related: 7684 | ---------------------------------+------------------------------------------ Comment(by marlowsd@…): commit 085e8145f63c8f42d8bc19cd3cff52b8cd5b6455 {{{ Author: Simon Marlow <marlowsd(a)gmail.com> Date: Wed Feb 20 11:43:33 2013 +0000 x86: promote arguments to C functions according to the ABI (#7383) I don't think the x86-64 version is quite right, but this ought to be enough to pass cgrun071. This code is terrible and needs a complete refactor. There's a lot of duplication, and we ought to be specifying the ABI in a much more abstract way (like LLVM). compiler/nativeGen/X86/CodeGen.hs | 20 ++++++++++++++------ 1 files changed, 14 insertions(+), 6 deletions(-) }}} -- Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/7383#comment:5> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #2959: Merge in LambdaVM (Haskell to Java/JVM bytecode translator)
by GHC 23 Feb '13

23 Feb '13
#2959: Merge in LambdaVM (Haskell to Java/JVM bytecode translator) -------------------------------+-------------------------------------------- Reporter: kgardas | Owner: Type: feature request | Status: closed Priority: normal | Milestone: _|_ Component: Compiler | Version: 6.11 Resolution: wontfix | Keywords: Os: Unknown/Multiple | Architecture: Unknown/Multiple Failure: None/Unknown | Difficulty: Unknown Testcase: | Blockedby: Blocking: | Related: -------------------------------+-------------------------------------------- Changes (by igloo): * status: new => closed * resolution: => wontfix Comment: In the absence of evidence to the contrary, I assume that it is still not suitable for merging, so I'll close the ticket. -- Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/2959#comment:9> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #2427: Allow compilation of source from stdin
by GHC 22 Feb '13

22 Feb '13
#2427: Allow compilation of source from stdin ---------------------------------+------------------------------------------ Reporter: guest | Owner: Type: feature request | Status: new Priority: normal | Milestone: _|_ Component: Compiler | Version: 6.8.3 Keywords: | Os: Unknown/Multiple Architecture: Unknown/Multiple | Failure: None/Unknown Difficulty: Unknown | Testcase: Blockedby: | Blocking: Related: | ---------------------------------+------------------------------------------ Changes (by nathanhowell): * cc: nathanhowell@… (added) -- Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/2427#comment:9> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 1583
  • 1584
  • 1585
  • 1586
  • 1587
  • 1588
  • 1589
  • ...
  • 1646
  • Older →

HyperKitty Powered by HyperKitty version 1.3.9.