Dmitry Petrashko
Dmitry Petrashko
> allocate larger arrays directly from system memory and free them once region ends By doing this you're just offloading the same problem to OS allocator. It's likely to be...
Dear all, would you be interested in adding https://sorbet.org/ to oss-fuzz? We already use fuzzing to find crashes in IDE before our users do, and we've found bugs through the...
Given that there seems to be a plan to implement `instanceOf` checks, maybe this can be factored into those? I.E, while `tag.is` will be checking type of data, `tag.is` will...
@julien-truffaut can you tell a bit more about your setup? Are you running JVM in client mode?
FYI OptimizeStringConcat is bugged and can lead to jvm oops see http://www.lucidimagination.com/blog/2011/07/28/dont-use-java-7-for-anything/
@solodon4 > I've never seen product types with 10 arguments in functional programs, can you elaborate on why you need this many? I'm one of developers of Scala language that...
`T.untyped` should work as a stop-gap solution here. `Elem = type_member(fixed: T.untyped)`
Is the goal of constant folding is to reduce bytecode size? If not, is there some smart constant optimization planned that is not performed by JVM? See also https://bugs.openjdk.java.net/browse/JDK-8058164 and...
@retronym, smart idea!
> The idea is to run the Scala inliner and optimizer separately from compilation in 2.13, in a linking step. I think this is a really good idea. It may...