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

Document (or fix) stack safety issues #194

Open
milesfrain opened this issue Jan 14, 2021 · 5 comments
Open

Document (or fix) stack safety issues #194

milesfrain opened this issue Jan 14, 2021 · 5 comments
Labels
type: enhancement A new feature or addition.

Comments

@milesfrain
Copy link
Contributor

Some example of existing stack-unsafe functions:

We should ideally setup stack-safety tests for every function. To help make those tests run faster, we could shrink the v8 stack size with something like --stack_size=10 (default is 984 kB).

@hdgarrood
Copy link
Contributor

hdgarrood commented Jan 16, 2021

I would prefer that we test with lists which are large enough to blow the stack than shrink the stack artificially, as we ideally ought to be testing with large inputs anyway, e.g. so that we are more likely to notice if we make a change which unintentionally makes some functions much slower for large inputs.

@imcotton
Copy link

From Data.List.Lazy

  • elemIndex
  • elemLastIndex
  • findLastIndex
  • findIndex <--- caused by

-- | Find the first index for which a predicate holds.
findIndex :: forall a. (a -> Boolean) -> List a -> Maybe Int
findIndex fn = go 0
where
go :: Int -> List a -> Maybe Int
go n list = do
o <- uncons list
if fn o.head
then pure n
else go (n + 1) o.tail

@JordanMartinez JordanMartinez added the type: enhancement A new feature or addition. label Dec 1, 2021
@elldritch
Copy link

group also does not appear to be stack-safe.

@elldritch
Copy link

elldritch commented Dec 14, 2021

It appears that concat is also not stack-safe?

@garyb
Copy link
Member

garyb commented Dec 14, 2021

Yeah, seems so - concat is implemented with bind which isn't stack safe:

instance bindList :: Bind List where
bind Nil _ = Nil
bind (x : xs) f = f x <> bind xs f

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: enhancement A new feature or addition.
Projects
None yet
Development

No branches or pull requests

6 participants