-
- Downloads
Reworking of the values-type system to overcome a number of inconsistencies
causing problems: o Redefine coerce-to-values to convert a single value type into (values type), rather than the former definition (values type &rest t). A single value type such as fixnum is now equivalent to (values fixnum). Values-type-union and values-type-intersection will canonicalise values types with a single value such as (values fixnum) back to a single value type such as fixnum. o Now when the compiler makes assertions for the first value of continuations that may be generating multiple values it asserts the type as (values type &rest t), or as (value &optional type &rest t) if it is not sure that the continuation does generate a value. o Enhance the type check generation to better handle the now common values types with optional and rest arguments. Add the new function Values-types-asserted which converts asserted optional and rest arguments to required arguments that have been proven to be delivered, Thus an assertion such as (values &optional fixnum &rest t) will generate a fixnum type check if the proven type if (values t). o The compiler is now far more likely to pickup attempts to use an assertion to select a subset of values. For example (the (values fixnum) (values x y)) will generated a compiler warning. o Update single values type assertions where appropriate to clarify that the received values may be optional or that multiple values may be received. For example, a macro argument which had been asserted to be a list via (the list ,...) would now be asserted to be (the (values &optional list &rest t)) etc. o Have the IR1 translator for THE convert single value types into (values &optional type &rest t) so that code such as (the fixnum (values x y)) will still work acceptably. This does not restrict the possible type assertions as the values types may be used and are not modified.
Showing
- code/hash-new.lisp 4 additions, 3 deletionscode/hash-new.lisp
- code/hash.lisp 4 additions, 3 deletionscode/hash.lisp
- code/macros.lisp 4 additions, 3 deletionscode/macros.lisp
- code/type.lisp 20 additions, 9 deletionscode/type.lisp
- compiler/array-tran.lisp 4 additions, 3 deletionscompiler/array-tran.lisp
- compiler/checkgen.lisp 43 additions, 2 deletionscompiler/checkgen.lisp
- compiler/ir1opt.lisp 21 additions, 9 deletionscompiler/ir1opt.lisp
- compiler/ir1tran.lisp 30 additions, 20 deletionscompiler/ir1tran.lisp
- compiler/ir2tran.lisp 2 additions, 2 deletionscompiler/ir2tran.lisp
- compiler/locall.lisp 2 additions, 2 deletionscompiler/locall.lisp
- compiler/srctran.lisp 7 additions, 6 deletionscompiler/srctran.lisp
Loading
Please register or sign in to comment