summaryrefslogtreecommitdiff
path: root/compiler/codeGen
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove some dead code from CgCaseIan Lynagh2008-12-171-1/+0
|
* Fix warnings in StgCmmProfIan Lynagh2008-12-171-13/+21
|
* Fix warnings in CgProfIan Lynagh2008-12-171-15/+21
|
* Fix warnings in CgInfoTblsIan Lynagh2008-12-171-13/+3
|
* Remove dead function srtLabelAndLength from CgInfoTblsIan Lynagh2008-12-171-12/+0
|
* Fix warnings in CgHeaperyIan Lynagh2008-12-171-11/+7
|
* Fix warnings in CgTailCallIan Lynagh2008-12-171-13/+7
|
* Remove a little dead code from CgTailCallIan Lynagh2008-12-171-1/+0
|
* Fix warnings in CodeGenIan Lynagh2008-12-171-11/+2
|
* Fix warnings in StgCmmTickyIan Lynagh2008-12-171-11/+20
|
* Remove dead code from CgUtilsIan Lynagh2008-12-171-1/+0
|
* Fix warnings in CgPrimOpIan Lynagh2008-12-171-120/+116
|
* Fix warnings in CgMonadIan Lynagh2008-12-171-13/+7
|
* Fix warnings in CgClosureIan Lynagh2008-12-171-11/+4
|
* Fix warnings in CgForeignCallIan Lynagh2008-12-151-10/+16
|
* Remove some redundant codeIan Lynagh2008-12-152-4/+0
| | | | | We were looking at opt_DoTickyProfiling, and if it was set claling ifTicky which looks at opt_DoTickyProfiling itself.
* Fix warnings in CgLetNoEscapeIan Lynagh2008-12-151-10/+3
|
* Fix warnings in StgCmmGranIan Lynagh2008-12-091-14/+3
|
* Fix warnings in CgHpcIan Lynagh2008-12-091-10/+3
|
* Fix warnings in CgParallelIan Lynagh2008-12-091-10/+7
|
* Fix warnings in StgCmmHpcIan Lynagh2008-12-091-11/+1
|
* Remove an unnecessary -w flagIan Lynagh2008-12-091-7/+0
|
* Comments only (Note [Entering error thunks])simonpj@microsoft.com2008-12-051-0/+24
|
* drop some debugging traces and use only one flag for new codegendias@eecs.harvard.edu2008-11-267-17/+11
|
* one more missing patch from new codegen pathdias@eecs.harvard.edu2008-11-261-1/+1
|
* Fix build following codegen patchsimonpj@microsoft.com2008-11-262-15/+2
|
* Removed warnings, made Haddock happy, added examples in documentationdias@eecs.harvard.edu2008-10-176-35/+103
| | | | | The interesting examples talk about our story with heap checks in case alternatives and our story with the case scrutinee as a Boolean.
* Don't adjust hp up when the case scrutinee won't allocatedias@eecs.harvard.edu2008-10-143-24/+26
| | | | | | | | If the case scrutinee can't allocate, we don't need to do a heap check in the case alternatives. (A previous patch got that right.) In that case, we had better not adjust the heap pointer to recover unused stack space before evaluating the scrutinee -- because we aren't going to reallocate for the case alternative.
* Big collection of patches for the new codegen branch.dias@eecs.harvard.edu2008-10-1314-513/+719
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o Fixed bug that emitted the copy-in code for closure entry in the wrong place -- at the initialization of the closure. o Refactored some of the closure entry code. o Added code to check that no LocalRegs are live-in to a procedure -- trip up some buggy programs earlier o Fixed environment bindings for thunks -- we weren't (re)binding the free variables in a thunk o Fixed a bug in proc-point splitting that dropped some updates to the entry block in a procedure. o Fixed improper calls to code that generates CmmLit's for strings o New invariant on cg_loc in CgIdInfo: the expression is always tagged o Code to load free vars on entry to a thunk was (wrongly) placed before the heap check. o Some of the StgCmm code was redundantly passing around Id's along with CgIdInfo's; no more. o Initialize the LocalReg's that point to a closure before allocating and initializing the closure itself -- otherwise, we have problems with recursive closure bindings o BlockEnv and BlockSet types are now abstract. o Update frames: - push arguments in Old call area - keep track of the return sp in the FCode monad - keep the return sp in every call, tail call, and return (because it might be different at different call sites, e.g. tail calls to the gc after a heap check are performed before pushing the update frame) - set the sp appropriately on returns and tail calls o Reduce call, tail call, and return to a single LastCall node o Added slow entry code, using different calling conventions on entry and tail call o More fixes to the calling convention code. The tricky stuff is all about the closure environment: it must be passed in R1, but in non-closures, there is no such argument, so we can't treat all arguments the same way: the closure environment is special. Maybe the right step forward would be to define a different calling convention for closure arguments. o Let-no-escapes need to be emitted out-of-line -- otherwise, we drop code. o Respect RTS requirement of word alignment for pointers My stack allocation can pack sub-word values into a single word on the stack, but it wasn't requiring word-alignment for pointers. It does now, by word-aligning both pointer registers and call areas. o CmmLint was over-aggresively ruling out non-word-aligned memory references, which may be kosher now that we can spill small values into a single word. o Wrong label order on a conditional branch when compiling switches. o void args weren't dropped in many cases. To help prevent this kind of mistake, I defined a NonVoid wrapper, which I'm applying only to Id's for now, although there are probably other good candidates. o A little code refactoring: separate modules for procpoint analysis splitting, stack layout, and building infotables. o Stack limit check: insert along with the heap limit check, using a symbolic constant (a special CmmLit), then replace it when the stack layout is known. o Removed last node: MidAddToContext o Adding block id as a literal: means that the lowering of the calling conventions no longer has to produce labels early, which was inhibiting common-block elimination. Will also make it easier for the non-procpoint-splitting path. o Info tables: don't try to describe the update frame! o Over aggressive use of NonVoid!!!! Don't drop the non-void args before setting the type of the closure!!! o Sanity checking: Added a pass to stub dead dead slots on the stack (only ~10 lines with the dataflow framework) o More sanity checking: Check that incoming pointer arguments are non-stubbed. Note: these checks are still subject to dead-code removal, but they should still be quite helpful. o Better sanity checking: why stop at function arguments? Instead, in mkAssign, check that _any_ assignment to a pointer type is non-null -- the sooner the crash, the easier it is to debug. Still need to add the debugging flag to turn these checks on explicitly. o Fixed yet another calling convention bug. This time, the calls to the GC were wrong. I've added a new convention for GC calls and invoked it where appropriate. We should really straighten out the calling convention stuff: some of the code (and documentation) is spread across the compiler, and there's some magical use of the node register that should really be handled (not avoided) by calling conventions. o Switch bug: the arms in mkCmmLitSwitch weren't returning to a single join point. o Environment shadowing problem in Stg->Cmm: When a closure f is bound at the top-level, we should not bind f to the node register on entry to the closure. Why? Because if the body of f contains a let-bound closure g that refers to f, we want to make sure that it refers to the static closure for f. Normally, this would all be fine, because when we compile a closure, we rebind free variables in the environment. But f doesn't look like a free variable because it's a static value. So, the binding for f remains in the environment when we compile g, inconveniently referring to the wrong thing. Now, I bind the variable in the local environment only if the closure is not bound at the top level. It's still okay to make assumptions about the node holding the closure environment; we just won't find the binding in the environment, so code that names the closure will now directly get the label of the static closure, not the node register holding a pointer to the static closure. o Don't generate bogus Cmm code containing SRTs during the STG -> Cmm pass! The tables made reference to some labels that don't exist when we compute and generate the tables in the back end. o Safe foreign calls need some special treatment (at least until we have the integrated codegen). In particular: o they need info tables o they are not procpoints -- the successor had better be in the same procedure o we cannot (yet) implement the calling conventions early, which means we have to carry the calling-conv info all the way to the end o We weren't following the old convention when registering a module. Now, we use update frames to push any new modules that have to be registered and enter the youngest one on the stack. We also use the update frame machinery to specify that the return should pop the return address off the stack. o At each safe foreign call, an infotable must be at the bottom of the stack, and the TSO->sp must point to it. o More problems with void args in a direct call to a function: We were checking the args (minus voids) to check whether the call was saturated, which caused problems when the function really wasn't saturated because it took an extra void argument. o Forgot to distinguish integer != from floating != during Stg->Cmm o Updating slotEnv and areaMap to include safe foreign calls The dataflow analyses that produce the slotEnv and areaMap give results for each basic block, but we also need the results for a safe foreign call, which is a middle node. After running the dataflow analysis, we have another pass that updates the results to includ any safe foreign calls. o Added a static flag for the debugging technique that inserts instructions to stub dead slots on the stack and crashes when a stubbed value is loaded into a pointer-typed LocalReg. o C back end expects to see return continuations before their call sites. Sorted the flowgraphs appropriately after splitting. o PrimOp calling conventions are special -- unlimited registers, no stack Yet another calling convention... o More void value problems: if the RHS of a case arm is a void-typed variable, don't try to return it. o When calling some primOp, they may allocate memory; if so, we need to do a heap check when we return from the call.
* Merging in the new codegen branchdias@eecs.harvard.edu2008-08-1437-496/+8254
| | | | | | | | | | | | | | | | | | This merge does not turn on the new codegen (which only compiles a select few programs at this point), but it does introduce some changes to the old code generator. The high bits: 1. The Rep Swamp patch is finally here. The highlight is that the representation of types at the machine level has changed. Consequently, this patch contains updates across several back ends. 2. The new Stg -> Cmm path is here, although it appears to have a fair number of bugs lurking. 3. Many improvements along the CmmCPSZ path, including: o stack layout o some code for infotables, half of which is right and half wrong o proc-point splitting
* Add optional eager black-holing, with new flag -feager-blackholingSimon Marlow2008-11-183-23/+18
| | | | | | | | | | | | | | | Eager blackholing can improve parallel performance by reducing the chances that two threads perform the same computation. However, it has a cost: one extra memory write per thunk entry. To get the best results, any code which may be executed in parallel should be compiled with eager blackholing turned on. But since there's a cost for sequential code, we make it optional and turn it on for the parallel package only. It might be a good idea to compile applications (or modules) with parallel code in with -feager-blackholing. ToDo: document -feager-blackholing.
* Replace ASSERT with WARN, and explain whysimonpj@microsoft.com2008-09-181-3/+30
| | | | | | | The DPH library tripped an ASSERT. The code is actually OK, but it's badly-optimised so I changed it to WARN. The issue here is explained in ClosureInfo, Note [Unsafe coerce complications].
* Document CgUtils, follow Digraph changesMax Bolingbroke2008-07-311-2/+2
|
* Split the Id related functions out from Var into Id, document Var and some of IdMax Bolingbroke2008-07-311-0/+1
|
* Rename maybeTyConSingleCon to tyConSingleDataCon_maybeMax Bolingbroke2008-07-311-1/+1
|
* Change the calling conventions for unboxed tuples slightlySimon Marlow2008-07-281-1/+14
| | | | | | | | | | When returning an unboxed tuple with a single non-void component, we now use the same calling convention as for returning a value of the same type as that component. This means that the return convention for IO now doesn't vary depending on the platform, which make some parts of the RTS simpler, and fixes a problem I was having with making the FFI work in unregisterised GHCi (the byte-code compiler makes some assumptions about calling conventions to keep things simple).
* Fix Haddock errors.Thomas Schilling2008-07-202-2/+3
|
* Remove all .hi-boot-6 filesIan Lynagh2008-07-083-15/+0
| | | | | From 6.4 onwards we use .(l)hs-boot instead. Spotted by Max Bolingbroke.
* Replacing copyins and copyouts with data-movement instructionsdias@eecs.harvard.edu2008-05-292-0/+2
| | | | | | | | | | | | | | o Moved BlockId stuff to a new file to avoid module recursion o Defined stack areas for parameter-passing locations and spill slots o Part way through replacing copy in and copy out nodes - added movement instructions for stack pointer - added movement instructions for call and return parameters (but not with the proper calling conventions) o Inserting spills and reloads for proc points is now procpoint-aware (it was relying on the presence of a CopyIn node as a proxy for procpoint knowledge) o Changed ZipDataflow to expect AGraphs (instead of being polymorphic in the type of graph)
* replace Cmm 'hint' with 'kind'Norman Ramsey2008-05-038-35/+35
| | | | | | C-- no longer has 'hints'; to guide parameter passing, it has 'kinds'. Renamed type constructor, data constructor, and record fields accordingly
* (F)SLIT -> (f)sLit in CgConIan Lynagh2008-04-121-2/+2
|
* (F)SLIT -> (f)sLit in CgPrimOpIan Lynagh2008-04-121-3/+1
|
* (F)SLIT -> (f)sLit in CgForeignCallIan Lynagh2008-04-121-4/+2
|
* (F)SLIT -> (f)sLit in CgClosureIan Lynagh2008-04-121-3/+3
|
* (F)SLIT -> (f)sLit in CgBinderyIan Lynagh2008-04-121-13/+11
|
* (F)SLIT -> (f)sLit in CgHeaperyIan Lynagh2008-04-121-9/+9
|
* (F)SLIT -> (f)sLit in CgTickyIan Lynagh2008-04-121-30/+29
|
* (F)SLIT -> (f)sLit in CgCallConvIan Lynagh2008-04-121-17/+15
|
* (F)SLIT -> (f)sLit in CgProfIan Lynagh2008-04-121-9/+9
|
* (F)SLIT -> (f)sLit in ClosureInfoIan Lynagh2008-04-121-1/+1
|