Make dynflag argument for withTiming pure.
19 times out of 20 we already have dynflags in scope. We could just always use `return dflags`. But this is in fact not free. When looking at some STG code I noticed that we always allocate a closure for this expression in the heap. Clearly a waste in these cases. For the other cases we can either just modify the callsite to get dynflags or use the _D variants of withTiming I added which will use getDynFlags under the hood.
Showing
- compiler/GHC/StgToCmm.hs 1 addition, 1 deletioncompiler/GHC/StgToCmm.hs
- compiler/cmm/CmmInfo.hs 1 addition, 1 deletioncompiler/cmm/CmmInfo.hs
- compiler/cmm/CmmParse.y 20 additions, 20 deletionscompiler/cmm/CmmParse.y
- compiler/cmm/CmmPipeline.hs 1 addition, 1 deletioncompiler/cmm/CmmPipeline.hs
- compiler/coreSyn/CorePrep.hs 2 additions, 2 deletionscompiler/coreSyn/CorePrep.hs
- compiler/deSugar/Desugar.hs 1 addition, 1 deletioncompiler/deSugar/Desugar.hs
- compiler/ghci/ByteCodeGen.hs 2 additions, 2 deletionscompiler/ghci/ByteCodeGen.hs
- compiler/iface/LoadIface.hs 1 addition, 1 deletioncompiler/iface/LoadIface.hs
- compiler/llvmGen/LlvmCodeGen.hs 1 addition, 1 deletioncompiler/llvmGen/LlvmCodeGen.hs
- compiler/llvmGen/LlvmMangler.hs 1 addition, 1 deletioncompiler/llvmGen/LlvmMangler.hs
- compiler/main/CodeOutput.hs 2 additions, 2 deletionscompiler/main/CodeOutput.hs
- compiler/main/ErrUtils.hs 38 additions, 13 deletionscompiler/main/ErrUtils.hs
- compiler/main/GhcMake.hs 1 addition, 1 deletioncompiler/main/GhcMake.hs
- compiler/main/HscMain.hs 4 additions, 5 deletionscompiler/main/HscMain.hs
- compiler/main/Packages.hs 1 addition, 1 deletioncompiler/main/Packages.hs
- compiler/main/SysTools/Tasks.hs 1 addition, 1 deletioncompiler/main/SysTools/Tasks.hs
- compiler/main/TidyPgm.hs 2 additions, 2 deletionscompiler/main/TidyPgm.hs
- compiler/nativeGen/AsmCodeGen.hs 2 additions, 2 deletionscompiler/nativeGen/AsmCodeGen.hs
- compiler/simplCore/SimplCore.hs 7 additions, 9 deletionscompiler/simplCore/SimplCore.hs
- compiler/typecheck/TcBackpack.hs 3 additions, 3 deletionscompiler/typecheck/TcBackpack.hs
Loading
Please register or sign in to comment