Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CC: Drop idempotent type maps #22910

Open
wants to merge 22 commits into
base: main
Choose a base branch
from

Conversation

odersky
Copy link
Contributor

@odersky odersky commented Apr 3, 2025

Reorganize the code so that maps become more manageable

  • drop the idempotent ones and apply immediately
  • detect when immediate applications cause errors by freezing observed sets
  • restart capture checking with augmented use sets if such errors are detected
  • fuse successible SubstBindingMaps and Filters

Hopefully this leads to a more efficient system that avoids the timeouts we have been seeing.

Also, tighten a bunch of rules and checks to rule out non-sensical elements in capture sets.

@natsukagami
Copy link
Contributor

natsukagami commented Apr 3, 2025

This seems to crash the compiler (should compile fine without captureChecking import)

not really, it's crashing if I turn on tracing for TypeComparer, and it also crashes on main

import language.experimental.captureChecking
import annotation.showAsInfix
import compiletime.*
import compiletime.ops.int.*

enum Tuple:
  case EmptyTuple()
  case `*:`[T, U <: Tuple](x: T, y: U)

object Tuple {
  import Tuple.*
  /** Fold a tuple `(T1, ..., Tn)` into `F[T1, F[... F[Tn, Z]...]]]` */
  type Fold[Tup <: Tuple, Z, F[_, _]] = Tup match
    case EmptyTuple => Z
    case h *: t => F[h, Fold[t, Z, F]]

  type Union[T <: Tuple] = Fold[T, Nothing, [x, y] =>> x | y]

  opaque type Oops[h, t <: Tuple] >: Union[t] = Union[h *: t]
}

odersky added 22 commits April 3, 2025 16:10
# Conflicts:
#	compiler/src/dotty/tools/dotc/cc/Setup.scala
Simplifies previous too convoluted logic.
No need to refer to keep track of openExistentials.
…he binder

Some failing tests:

 - pos test lists.scala
 - neg test i21920.scala

Both are moved to pending.

Also some errors in neg test curried-closures.scala look wrong, these seem to be analogous to the errors in
lists.scala.
Use an explicit `reported` set. The previous logic suppressed some
real non-duplicate errors.
A capture set variable can appear several times at different variances in a type. So interpolating at the first
variance encountered is wrong. Instead, we need to compute the overall variance and interpolate according to it.
No need to construct a complicated BiTypeMap anymore.
Also simplify BiTypeMap: the special cases for TypeParamRefs with underlying NoType are no linger needed
since isTrackableRef was changed to include these TypeParamRefs.
Had to turn an assertion into a condition to make it pass
Fresh instances cannot subsume TermParamRefs since that would be a level
violation.
This fixes one error in the lists pos test and several spurious errors in neg tests.
There remains an error in lists.scala that has to do with bindings getting lost for
polymorphic closures. This needs to be followd up separately.
 1. Also apply `SubstBindings` map to root annotations
    (previously it was only single `SubstBinding` maps).
 2. Don't preserve BiTypeMaps for sets that are set up for
    the first time.
@odersky odersky force-pushed the drop-cc-typemaps branch from 67f2c93 to 58d052e Compare April 3, 2025 15:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants