Block or Report
Block or report WojciechMazur
Report abuse
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusePinned
830 contributions in the last year
Less
More
Activity overview
Contributed to
scala-native/scala-native,
VirtusLab/community-build3,
lampepfl/dotty
and 39 other
repositories
Contribution activity
March 2023
Created 24 commits in 4 repositories
Created 1 repository
- WojciechMazur/gql Scala
Created a pull request in scala-native/scala-native that received 3 comments
Fix poisonous new lines escapes in nir.Show
leading to linker failures
Fixes #3147 Our previous logic for escaping new lines in string literal for textual NIR and LLVM IR representation was crashing due to unescaped '$…
+7
−2
•
3
comments
Opened 26 other pull requests in 5 repositories
scala-native/scala-native
16
merged
2
open
- Backport changes for release 0.4.12
- Redefine extern methods using varargs instead calling original method
- Improve resolving repeated parameters in Scala3
- Multithreading support for Commix GC
- Fix regression in handling opaque pointers on Windows
- Cleanup monetary.h bindings
- Backport compatible changes for release 0.4.11
-
Selective compilation of native sources using
@compile
annotation - Fix issues found in extended CI runs
- Fix build isssues in extened (on-schedule) CI
- Fix failing release-full build due to usage of void in function signature
-
Allow for materialization of
Tag[Ptr[_]]
or taking abstract type -
Use intrinsic based implementation for
sizeof
/alignmentof
instead of relaying on tags - Restore support for C VarArgs alongside current CVarArgLists
-
Don't emit
Inst.Jump
/Inst.Label
in NIR taking singleUnit
argument -
Emit
Val.Unit
/Type.Unit
asvoid
in LLVM IR instead of ref toBoxedUnit
- Restore stack state after executing inlined function to prevent stack overflows
-
Intrinsic based
sizeOf[T]
/alignmentOf[T]
resolution
VirtusLab/community-build3
1
open
3
merged
scala-native/scala-native-cli
2
merged
ekrich/scala-native
1
merged
ValdemarGr/gql
1
merged
Reviewed 14 pull requests in 2 repositories
scala-native/scala-native
13 pull requests
- Implement posixlib dlfcn
- Fix regression in handling opaque pointers on Windows
- Update sbt to 1.5.8 for scripted tests
- Trigger GC collction on Runtime#gc()
- javalib Spliterators trySplit() methods now split
-
Backport
Atomic{Integer,Long}.{getAndUpdate,updateAndGet}
to 0.4.x - Fixes #3151: Standardize GC env vars
- Fix #3192. #3194: Implement limited java spliterator support
- Fix #3206: posixlib unistd and monetary use new CVarArgs support
-
Port
definedTestNames
override from Scala.js - Safe Zone: Memory-safe zone ensured by capture checking and GC.
- Generate LLVM metadata
- Various fixes to runtime and compile time multithreading issues
yawen-guan/scala-native
1 pull request
Created an issue in scala-native/scala-native that received 7 comments
Stack memory might leak when allocating inside of loop
Let's take a look at the following snippet of code: val base = stackalloc[Int]() while(true){ val inner = stackalloc[Int]() } We might expect that…
1 task