Skip to content

Instantly share code, notes, and snippets.

diff --git src/core/dll.c src/core/dll.c
index 6817b410f..3b1ea0269 100644
--- src/core/dll.c
+++ src/core/dll.c
@@ -23,6 +23,7 @@ int MVM_dll_load(MVMThreadContext *tc, MVMString *name, MVMString *path) {
});
cpath = MVM_string_utf8_c8_encode_C_string(tc, path);
+ fprintf(stderr, "loading '%s'\n", cpath);
lib = MVM_nativecall_load_lib(cpath);
diff --git src/core/dll.c src/core/dll.c
index 6817b410f..3b1ea0269 100644
--- src/core/dll.c
+++ src/core/dll.c
@@ -23,6 +23,7 @@ int MVM_dll_load(MVMThreadContext *tc, MVMString *name, MVMString *path) {
});
cpath = MVM_string_utf8_c8_encode_C_string(tc, path);
+ fprintf(stderr, "loading '%s'\n", cpath);
lib = MVM_nativecall_load_lib(cpath);

Raku & Pakku

A hobby

One day I woke and decided I want to learn programming as a hobby. For someone

@MasterDuke17
MasterDuke17 / perf.log
Last active September 10, 2017 12:08
perf record -g --call-graph dwarf /home/dan/Source/perl6/install/bin/moar --libpath="blib" --libpath="/home/dan/Source/perl6/install/share/nqp/lib" --libpath="/home/dan/Source/perl6/install/share/nqp/lib" perl6.moarvm --nqp-lib=blib --setting=NULL --ll-exception --optimize=0 --target=parse --stagestats --output=CORE.setting.moarvm gen/moar/CORE.…
11.66% moar libc-2.26.so [.] _int_malloc
9.98% moar perf-27008.map [.] 0x00007ff240009744
8.68% moar libmoar.so [.] rename_locals
8.25% moar libmoar.so [.] MVM_jit_emit_primitive
5.49% moar libc-2.26.so [.] malloc_consolidate
5.33% moar libmoar.so [.] MVM_interp_run
3.36% moar libmoar.so [.] nqp_nfa_run
3.10% moar libmoar.so [.] MVM_frame_invoke
3.05% moar libmoar.so [.] MVM_frame_find_contextual_by_name
1.85% moar libmoar.so [.] gc_mark
@MasterDuke17
MasterDuke17 / plot.svg
Created August 24, 2016 03:23
Benchable graph with SVG::Plot
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
diff --git a/src/Perl6/World.nqp b/src/Perl6/World.nqp
index 520ce42..d6ceea6 100644
--- a/src/Perl6/World.nqp
+++ b/src/Perl6/World.nqp
@@ -3939,6 +3939,14 @@ class Perl6::World is HLL::World {
my &inner-evaluator := make_levenshtein_evaluator($name, @candidates);
my %seen;
%seen{$name} := 1;
+
+ # RT 126264
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@MasterDuke17
MasterDuke17 / query
Created July 17, 2016 00:51
benchable
f583f22,110704d my $a = "a" x 2**16;for ^1000 {my $b = $a.chop($_)};