Skip to content

Instantly share code, notes, and snippets.

@rschwarz
Last active February 27, 2017 15:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rschwarz/362e92518830dea05af26db83cf5e669 to your computer and use it in GitHub Desktop.
Save rschwarz/362e92518830dea05af26db83cf5e669 to your computer and use it in GitHub Desktop.
run once to warm up.
force garbage collection.
run once to warm up (again).
force garbage collection.
-- calling CSIPfreeModel -- 0 mem used
run 3x
force garbage collection.
-- calling CSIPfreeModel -- 0 mem used
-- calling CSIPfreeModel -- 19043000 mem used
-- calling CSIPfreeModel -- 9521500 mem used
run 3x with gc() after every iteration
-- calling CSIPfreeModel -- 0 mem used
-- calling CSIPfreeModel -- 0 mem used
-- calling CSIPfreeModel -- 0 mem used
force garbage collection.
force garbage collection. (outside)
-- calling CSIPfreeModel -- 0 mem used
using JuMP
using SCIP
function leaky(solver, d)
m = Model(solver=solver)
@variable(m, x[1:d] >= 0)
solve(m)
end
function loopy(solver, d=20000, n=200, forcegc=false)
for i=1:n
leaky(solver, d)
if forcegc
gc()
end
end
end
function test()
println("run once to warm up.")
scip = SCIPSolver("display/verblevel", 0)
loopy(scip, 10, 1)
println("force garbage collection.")
gc()
println("run once to warm up (again).")
loopy(scip, 10, 1)
println("force garbage collection.")
gc()
println("run 3x")
loopy(scip, 10, 3)
println("force garbage collection.")
gc()
println("run 3x with gc() after every iteration")
loopy(scip, 10, 3, true)
println("force garbage collection.")
gc()
end
test()
println("force garbage collection. (outside)")
gc()
==7929== Memcheck, a memory error detector
==7929== Copyright (C) 2002-2013, and GNU GPL'd, by Julian Seward et al.
==7929== Using Valgrind-3.10.0 and LibVEX; rerun with -h for copyright info
==7929== Command: julia memleak.jl
==7929==
==7929== Warning: set address range perms: large range [0x3a04c000, 0x23b060000) (defined)
==7929== Syscall param msync(start) points to uninitialised byte(s)
==7929== at 0x585212D: ??? (syscall-template.S:81)
==7929== by 0x4F5D2F7: msync_validate (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4F5D425: validate_mem (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4F5D560: access_mem (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4F5DDEA: dwarf_get (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4F5E1BE: _ULx86_64_access_reg (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4F5D295: _ULx86_64_get_reg (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4F6121C: apply_reg_state (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4F61A94: _ULx86_64_dwarf_find_save_locs (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4F62217: _ULx86_64_dwarf_step (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4F5E55A: _ULx86_64_step (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4EB15C8: jl_unw_step (stackwalk.c:331)
==7929== by 0x4EB15C8: jl_unw_stepn (stackwalk.c:47)
==7929== Address 0xffefff2c0 is on thread 1's stack
==7929== in frame #8, created by _ULx86_64_dwarf_find_save_locs (???)
==7929==
==7929== Syscall param msync(start) points to unaddressable byte(s)
==7929== at 0x585212D: ??? (syscall-template.S:81)
==7929== by 0x4F5D2F7: msync_validate (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4F5D425: validate_mem (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4F5D560: access_mem (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4F5DDEA: dwarf_get (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4F5E1BE: _ULx86_64_access_reg (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4F5D295: _ULx86_64_get_reg (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4F6121C: apply_reg_state (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4F61A94: _ULx86_64_dwarf_find_save_locs (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4F62217: _ULx86_64_dwarf_step (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4F5E55A: _ULx86_64_step (in /home/rs/opt/julia-3c9d75391c/lib/libjulia.so.0.5.0)
==7929== by 0x4EB15C8: jl_unw_step (stackwalk.c:331)
==7929== by 0x4EB15C8: jl_unw_stepn (stackwalk.c:47)
==7929== Address 0xffefee000 is on thread 1's stack
==7929== 1536 bytes below stack pointer
==7929==
-- calling CSIPfreeModel -- 39156480 mem used
-- calling CSIPfreeModel -- 29367360 mem used
-- calling CSIPfreeModel -- 19578240 mem used
-- calling CSIPfreeModel -- 9789120 mem used
DONE
-- calling CSIPfreeModel -- 0 mem used
==7929==
==7929== HEAP SUMMARY:
==7929== in use at exit: 50,027,667 bytes in 159,079 blocks
==7929== total heap usage: 2,207,023 allocs, 2,047,944 frees, 637,870,823 bytes allocated
==7929==
==7929== 29 bytes in 1 blocks are possibly lost in loss record 1,344 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x773D258: allocate (new_allocator.h:104)
==7929== by 0x773D258: std::string::_Rep::_S_create(unsigned long, unsigned long, std::allocator<char> const&) (basic_string.tcc:1047)
==7929== by 0x773D376: char* std::string::_S_construct<char const*>(char const*, char const*, std::allocator<char> const&, std::forward_iterator_tag) [clone .part.29] (basic_string.tcc:578)
==7929== by 0x773EC7A: _S_construct_aux<char const*> (basic_string.h:4275)
==7929== by 0x773EC7A: _S_construct<char const*> (basic_string.h:4296)
==7929== by 0x773EC7A: std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, unsigned long, std::allocator<char> const&) (basic_string.tcc:647)
==7929== by 0x64EC964: llvm::Attribute::get(llvm::LLVMContext&, llvm::StringRef, llvm::StringRef) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x64F0603: llvm::AttributeSet::get(llvm::LLVMContext&, unsigned int, llvm::AttrBuilder const&) [clone .part.101] (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x64F0816: llvm::AttributeSet::get(llvm::LLVMContext&, unsigned int, llvm::AttrBuilder const&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x64F2A7B: llvm::AttributeSet::addAttribute(llvm::LLVMContext&, unsigned int, llvm::StringRef, llvm::StringRef) const (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFAA20: addFnAttr (Function.h:205)
==7929== by 0x4EFAA20: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4047)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929==
==7929== 30 bytes in 1 blocks are possibly lost in loss record 1,447 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x773D258: allocate (new_allocator.h:104)
==7929== by 0x773D258: std::string::_Rep::_S_create(unsigned long, unsigned long, std::allocator<char> const&) (basic_string.tcc:1047)
==7929== by 0x773D376: char* std::string::_S_construct<char const*>(char const*, char const*, std::allocator<char> const&, std::forward_iterator_tag) [clone .part.29] (basic_string.tcc:578)
==7929== by 0x773EC7A: _S_construct_aux<char const*> (basic_string.h:4275)
==7929== by 0x773EC7A: _S_construct<char const*> (basic_string.h:4296)
==7929== by 0x773EC7A: std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, unsigned long, std::allocator<char> const&) (basic_string.tcc:647)
==7929== by 0x6605DF6: llvm::Module::Module(llvm::StringRef, llvm::LLVMContext&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED4F73: jl_init_codegen (codegen.cpp:5650)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 30 bytes in 1 blocks are possibly lost in loss record 1,448 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x773D258: allocate (new_allocator.h:104)
==7929== by 0x773D258: std::string::_Rep::_S_create(unsigned long, unsigned long, std::allocator<char> const&) (basic_string.tcc:1047)
==7929== by 0x773D376: char* std::string::_S_construct<char const*>(char const*, char const*, std::allocator<char> const&, std::forward_iterator_tag) [clone .part.29] (basic_string.tcc:578)
==7929== by 0x773EC7A: _S_construct_aux<char const*> (basic_string.h:4275)
==7929== by 0x773EC7A: _S_construct<char const*> (basic_string.h:4296)
==7929== by 0x773EC7A: std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, unsigned long, std::allocator<char> const&) (basic_string.tcc:647)
==7929== by 0x6C330CD: llvm::TargetMachine::TargetMachine(llvm::Target const&, llvm::StringRef, llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::TargetOptions const&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6325AB1: llvm::LLVMTargetMachine::LLVMTargetMachine(llvm::Target const&, llvm::StringRef, llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::TargetOptions, llvm::Reloc::Model, llvm::CodeModel::Model, llvm::CodeGenOpt::Level) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6E246C9: llvm::X86TargetMachine::X86TargetMachine(llvm::Target const&, llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::TargetOptions const&, llvm::Reloc::Model, llvm::CodeModel::Model, llvm::CodeGenOpt::Level) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6E24D71: llvm::RegisterTargetMachine<llvm::X86TargetMachine>::Allocator(llvm::Target const&, llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::TargetOptions const&, llvm::Reloc::Model, llvm::CodeModel::Model, llvm::CodeGenOpt::Level) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6668ACC: llvm::EngineBuilder::selectTarget(llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::SmallVectorImpl<std::string> const&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED56C5: jl_init_codegen (codegen.cpp:5723)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929==
==7929== 31 bytes in 1 blocks are possibly lost in loss record 1,516 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x773D258: allocate (new_allocator.h:104)
==7929== by 0x773D258: std::string::_Rep::_S_create(unsigned long, unsigned long, std::allocator<char> const&) (basic_string.tcc:1047)
==7929== by 0x773D376: char* std::string::_S_construct<char const*>(char const*, char const*, std::allocator<char> const&, std::forward_iterator_tag) [clone .part.29] (basic_string.tcc:578)
==7929== by 0x773EC7A: _S_construct_aux<char const*> (basic_string.h:4275)
==7929== by 0x773EC7A: _S_construct<char const*> (basic_string.h:4296)
==7929== by 0x773EC7A: std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, unsigned long, std::allocator<char> const&) (basic_string.tcc:647)
==7929== by 0x6C330AC: llvm::TargetMachine::TargetMachine(llvm::Target const&, llvm::StringRef, llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::TargetOptions const&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6325AB1: llvm::LLVMTargetMachine::LLVMTargetMachine(llvm::Target const&, llvm::StringRef, llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::TargetOptions, llvm::Reloc::Model, llvm::CodeModel::Model, llvm::CodeGenOpt::Level) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6E246C9: llvm::X86TargetMachine::X86TargetMachine(llvm::Target const&, llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::TargetOptions const&, llvm::Reloc::Model, llvm::CodeModel::Model, llvm::CodeGenOpt::Level) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6E24D71: llvm::RegisterTargetMachine<llvm::X86TargetMachine>::Allocator(llvm::Target const&, llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::TargetOptions const&, llvm::Reloc::Model, llvm::CodeModel::Model, llvm::CodeGenOpt::Level) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6668ACC: llvm::EngineBuilder::selectTarget(llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::SmallVectorImpl<std::string> const&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED56C5: jl_init_codegen (codegen.cpp:5723)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929==
==7929== 31 bytes in 1 blocks are possibly lost in loss record 1,517 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x773D258: allocate (new_allocator.h:104)
==7929== by 0x773D258: std::string::_Rep::_S_create(unsigned long, unsigned long, std::allocator<char> const&) (basic_string.tcc:1047)
==7929== by 0x773D376: char* std::string::_S_construct<char const*>(char const*, char const*, std::allocator<char> const&, std::forward_iterator_tag) [clone .part.29] (basic_string.tcc:578)
==7929== by 0x773EC7A: _S_construct_aux<char const*> (basic_string.h:4275)
==7929== by 0x773EC7A: _S_construct<char const*> (basic_string.h:4296)
==7929== by 0x773EC7A: std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, unsigned long, std::allocator<char> const&) (basic_string.tcc:647)
==7929== by 0x6818085: llvm::MCSubtargetInfo::MCSubtargetInfo(llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::ArrayRef<llvm::SubtargetFeatureKV>, llvm::ArrayRef<llvm::SubtargetFeatureKV>, llvm::SubtargetInfoKV const*, llvm::MCWriteProcResEntry const*, llvm::MCWriteLatencyEntry const*, llvm::MCReadAdvanceEntry const*, llvm::InstrStage const*, unsigned int const*, unsigned int const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6C35A5C: llvm::TargetSubtargetInfo::TargetSubtargetInfo(llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::ArrayRef<llvm::SubtargetFeatureKV>, llvm::ArrayRef<llvm::SubtargetFeatureKV>, llvm::SubtargetInfoKV const*, llvm::MCWriteProcResEntry const*, llvm::MCWriteLatencyEntry const*, llvm::MCReadAdvanceEntry const*, llvm::InstrStage const*, unsigned int const*, unsigned int const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6E1F2BE: llvm::X86GenSubtargetInfo::X86GenSubtargetInfo(llvm::Triple const&, llvm::StringRef, llvm::StringRef) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6E1FC55: llvm::X86Subtarget::X86Subtarget(llvm::Triple const&, std::string const&, std::string const&, llvm::X86TargetMachine const&, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6E2481B: llvm::X86TargetMachine::X86TargetMachine(llvm::Target const&, llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::TargetOptions const&, llvm::Reloc::Model, llvm::CodeModel::Model, llvm::CodeGenOpt::Level) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6E24D71: llvm::RegisterTargetMachine<llvm::X86TargetMachine>::Allocator(llvm::Target const&, llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::TargetOptions const&, llvm::Reloc::Model, llvm::CodeModel::Model, llvm::CodeGenOpt::Level) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6668ACC: llvm::EngineBuilder::selectTarget(llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::SmallVectorImpl<std::string> const&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED56C5: jl_init_codegen (codegen.cpp:5723)
==7929==
==7929== 31 bytes in 1 blocks are possibly lost in loss record 1,518 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x773D258: allocate (new_allocator.h:104)
==7929== by 0x773D258: std::string::_Rep::_S_create(unsigned long, unsigned long, std::allocator<char> const&) (basic_string.tcc:1047)
==7929== by 0x773D376: char* std::string::_S_construct<char const*>(char const*, char const*, std::allocator<char> const&, std::forward_iterator_tag) [clone .part.29] (basic_string.tcc:578)
==7929== by 0x773EC7A: _S_construct_aux<char const*> (basic_string.h:4275)
==7929== by 0x773EC7A: _S_construct<char const*> (basic_string.h:4296)
==7929== by 0x773EC7A: std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, unsigned long, std::allocator<char> const&) (basic_string.tcc:647)
==7929== by 0x6818085: llvm::MCSubtargetInfo::MCSubtargetInfo(llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::ArrayRef<llvm::SubtargetFeatureKV>, llvm::ArrayRef<llvm::SubtargetFeatureKV>, llvm::SubtargetInfoKV const*, llvm::MCWriteProcResEntry const*, llvm::MCWriteLatencyEntry const*, llvm::MCReadAdvanceEntry const*, llvm::InstrStage const*, unsigned int const*, unsigned int const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6E39D2E: llvm::X86_MC::createX86MCSubtargetInfo(llvm::Triple const&, llvm::StringRef, llvm::StringRef) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6325873: llvm::LLVMTargetMachine::initAsmInfo() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6E2492E: llvm::X86TargetMachine::X86TargetMachine(llvm::Target const&, llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::TargetOptions const&, llvm::Reloc::Model, llvm::CodeModel::Model, llvm::CodeGenOpt::Level) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6E24D71: llvm::RegisterTargetMachine<llvm::X86TargetMachine>::Allocator(llvm::Target const&, llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::TargetOptions const&, llvm::Reloc::Model, llvm::CodeModel::Model, llvm::CodeGenOpt::Level) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6668ACC: llvm::EngineBuilder::selectTarget(llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::SmallVectorImpl<std::string> const&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED56C5: jl_init_codegen (codegen.cpp:5723)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929==
==7929== 31 bytes in 1 blocks are possibly lost in loss record 1,519 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x773D258: allocate (new_allocator.h:104)
==7929== by 0x773D258: std::string::_Rep::_S_create(unsigned long, unsigned long, std::allocator<char> const&) (basic_string.tcc:1047)
==7929== by 0x773D376: char* std::string::_S_construct<char const*>(char const*, char const*, std::allocator<char> const&, std::forward_iterator_tag) [clone .part.29] (basic_string.tcc:578)
==7929== by 0x773EC7A: _S_construct_aux<char const*> (basic_string.h:4275)
==7929== by 0x773EC7A: _S_construct<char const*> (basic_string.h:4296)
==7929== by 0x773EC7A: std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, unsigned long, std::allocator<char> const&) (basic_string.tcc:647)
==7929== by 0x6818085: llvm::MCSubtargetInfo::MCSubtargetInfo(llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::ArrayRef<llvm::SubtargetFeatureKV>, llvm::ArrayRef<llvm::SubtargetFeatureKV>, llvm::SubtargetInfoKV const*, llvm::MCWriteProcResEntry const*, llvm::MCWriteLatencyEntry const*, llvm::MCReadAdvanceEntry const*, llvm::InstrStage const*, unsigned int const*, unsigned int const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6C35A5C: llvm::TargetSubtargetInfo::TargetSubtargetInfo(llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::ArrayRef<llvm::SubtargetFeatureKV>, llvm::ArrayRef<llvm::SubtargetFeatureKV>, llvm::SubtargetInfoKV const*, llvm::MCWriteProcResEntry const*, llvm::MCWriteLatencyEntry const*, llvm::MCReadAdvanceEntry const*, llvm::InstrStage const*, unsigned int const*, unsigned int const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6E1F2BE: llvm::X86GenSubtargetInfo::X86GenSubtargetInfo(llvm::Triple const&, llvm::StringRef, llvm::StringRef) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6E1FC55: llvm::X86Subtarget::X86Subtarget(llvm::Triple const&, std::string const&, std::string const&, llvm::X86TargetMachine const&, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6E24014: llvm::X86TargetMachine::getSubtargetImpl(llvm::Function const&) const (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6E242E9: std::_Function_handler<llvm::TargetTransformInfo (llvm::Function&), llvm::X86TargetMachine::getTargetIRAnalysis()::{lambda(llvm::Function&)#1}>::_M_invoke(std::_Any_data const&, llvm::Function&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x61DE5BD: llvm::TargetIRAnalysis::run(llvm::Function&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x61DE7A0: llvm::TargetTransformInfoWrapperPass::getTTI(llvm::Function&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,047 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F41EB: llvm::MDBuilder::createTBAARoot(llvm::StringRef) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED570A: init_julia_llvm_meta (codegen.cpp:4890)
==7929== by 0x4ED570A: jl_init_codegen (codegen.cpp:5736)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,048 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65ED58B: llvm::PMDataManager::add(llvm::Pass*, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F0EA0: llvm::PMTopLevelManager::schedulePass(llvm::Pass*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6413A2E: llvm::TargetPassConfig::addPass(llvm::Pass*, bool, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x64141FB: llvm::TargetPassConfig::addPass(void const*, bool, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x64146AF: llvm::TargetPassConfig::addOptimizedRegAlloc(llvm::FunctionPass*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x64149D9: llvm::TargetPassConfig::addMachinePasses() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6320625: addPassesToGenerateCode(llvm::LLVMTargetMachine*, llvm::legacy::PassManagerBase&, bool, void const*, void const*, void const*, llvm::MachineFunctionInitializer*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6320961: llvm::LLVMTargetMachine::addPassesToEmitMC(llvm::legacy::PassManagerBase&, llvm::MCContext*&, llvm::raw_pwrite_stream&, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4F06FB3: JuliaOJIT::JuliaOJIT(llvm::TargetMachine&) (jitlayers.cpp:436)
==7929== by 0x4ED58A1: jl_init_codegen (codegen.cpp:5739)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,049 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED5BBB: init_julia_llvm_env (codegen.cpp:4980)
==7929== by 0x4ED5BBB: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,050 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x903698A: julia___init___24807 (cholmod.jl:134)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,051 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x903698A: julia___init___24807 (cholmod.jl:134)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,052 of 11,259
==7929== at 0x4C28C20: malloc (vg_replace_malloc.c:296)
==7929== by 0x6441F83: llvm::RegisterClassInfo::runOnMachineFunction(llvm::MachineFunction const&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x63F0AB7: (anonymous namespace)::MachineScheduler::runOnMachineFunction(llvm::MachineFunction&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F1B86: llvm::FPPassManager::runOnFunction(llvm::Function&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F1EAA: llvm::FPPassManager::runOnModule(llvm::Module&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F21B5: llvm::legacy::PassManagerImpl::run(llvm::Module&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4F01FFB: operator() (jitlayers.cpp:411)
==7929== by 0x4F01FFB: std::_Function_handler<llvm::object::OwningBinary<llvm::object::ObjectFile> (llvm::Module&), JuliaOJIT::JuliaOJIT(llvm::TargetMachine&)::{lambda(llvm::Module&)#1}>::_M_invoke(std::_Any_data const&, llvm::Module&) (functional:1726)
==7929== by 0x4F06017: operator() (functional:2136)
==7929== by 0x4F06017: addModuleSet<llvm::SmallVector<std::unique_ptr<llvm::Module>, 1u>, llvm::RTDyldMemoryManager*, std::unique_ptr<llvm::orc::LambdaResolver<JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)>, JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)> >, std::default_delete<llvm::orc::LambdaResolver<JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)>, JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)> > > > > (IRCompileLayer.h:76)
==7929== by 0x4F06017: JuliaOJIT::addModule(std::unique_ptr<llvm::Module, std::default_delete<llvm::Module> >) (jitlayers.cpp:521)
==7929== by 0x4F06AEC: jl_finalize_function(std::string const&, llvm::Module*) (jitlayers.cpp:769)
==7929== by 0x4F06B4E: jl_finalize_function(llvm::Function*, llvm::Module*) (jitlayers.cpp:778)
==7929== by 0x4EBEDB4: getAddressForFunction(llvm::Function*) (codegen.cpp:933)
==7929== by 0x4EC37DE: jl_generate_fptr (codegen.cpp:966)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,053 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x90369B2: julia___init___24807 (cholmod.jl:134)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,054 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x90369B2: julia___init___24807 (cholmod.jl:134)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,055 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x90369B2: julia___init___24807 (cholmod.jl:134)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,056 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x9036DC2: julia___init___24807 (cholmod.jl:150)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,057 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFC7C5: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4597)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x9036DC2: julia___init___24807 (cholmod.jl:150)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,058 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x9036DC2: julia___init___24807 (cholmod.jl:150)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,059 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x9036DC2: julia___init___24807 (cholmod.jl:150)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,060 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x9037226: julia_reinit_displays_24874 (multimedia.jl:138)
==7929== by 0x903A329: julia___init___24871 (sysimg.jl:366)
==7929== by 0x903A397: jlcall___init___24871 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,061 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x9037226: julia_reinit_displays_24874 (multimedia.jl:138)
==7929== by 0x903A329: julia___init___24871 (sysimg.jl:366)
==7929== by 0x903A397: jlcall___init___24871 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,062 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x9037226: julia_reinit_displays_24874 (multimedia.jl:138)
==7929== by 0x903A329: julia___init___24871 (sysimg.jl:366)
==7929== by 0x903A397: jlcall___init___24871 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,063 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929== by 0x4E95C8C: jl_init_restored_modules (dump.c:1994)
==7929== by 0x4E95C8C: _jl_restore_incremental.part.18 (dump.c:2560)
==7929== by 0x4E9AC74: _jl_restore_incremental (dump.c:2498)
==7929== by 0x4E9AC74: jl_restore_incremental (dump.c:2580)
==7929== by 0x8FC0689: julia__include_from_serialized_22473 (loading.jl:150)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,064 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC5C333: ???
==7929== by 0x1DC5C4BF: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,065 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC5C333: ???
==7929== by 0x1DC5C4BF: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,066 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC5C333: ???
==7929== by 0x1DC5C4BF: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,067 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7E40B: jl_apply_2va (builtins.c:430)
==7929== by 0x1DC5C52C: ???
==7929== by 0x1DC5C333: ???
==7929== by 0x1DC5C4BF: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,068 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7E40B: jl_apply_2va (builtins.c:430)
==7929== by 0x1DC5C52C: ???
==7929== by 0x1DC5C333: ???
==7929== by 0x1DC5C4BF: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,069 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7E40B: jl_apply_2va (builtins.c:430)
==7929== by 0x1DC5C52C: ???
==7929== by 0x1DC5C333: ???
==7929== by 0x1DC5C4BF: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,070 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC5C5BF: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7E40B: jl_apply_2va (builtins.c:430)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,071 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E79F97: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E79F97: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,072 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E79F97: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E79F97: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,073 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E79F97: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E79F97: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,074 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CA86: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,075 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CA86: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,076 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CA86: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,077 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC5CB05: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,078 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC5CB05: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,079 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC5CB05: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,080 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CB5A: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,081 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CBB9: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,082 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CCEA: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,083 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CD87: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,084 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECDCB3: julia_type_to_di(_jl_value_t*, llvm::DIBuilder*, bool) [clone .part.917] (cgutils.cpp:165)
==7929== by 0x4EFB0E2: julia_type_to_di (codegen.cpp:4270)
==7929== by 0x4EFB0E2: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4275)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CD87: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,085 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECDCB3: julia_type_to_di(_jl_value_t*, llvm::DIBuilder*, bool) [clone .part.917] (cgutils.cpp:165)
==7929== by 0x4EFD62D: julia_type_to_di (codegen.cpp:4168)
==7929== by 0x4EFD62D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4170)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,086 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CD87: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,087 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CD87: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,088 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CD87: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,089 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5D74F: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,090 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5D74F: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,091 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5D74F: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,092 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5D74F: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,093 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5E6FD: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,094 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5E6FD: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,095 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5E6FD: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,096 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F6FC: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,097 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F6FC: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,098 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F6FC: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,099 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6555F: ???
==7929== by 0x1DC655B6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F6FC: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,100 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6555F: ???
==7929== by 0x1DC655B6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F6FC: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,101 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6555F: ???
==7929== by 0x1DC655B6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F6FC: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,102 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC65582: ???
==7929== by 0x1DC655B6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F6FC: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,103 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC65582: ???
==7929== by 0x1DC655B6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F6FC: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,104 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6555F: ???
==7929== by 0x1DC655B6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F7A1: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,105 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6555F: ???
==7929== by 0x1DC655B6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F7A1: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,106 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6555F: ???
==7929== by 0x1DC655B6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F7A1: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,107 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC65582: ???
==7929== by 0x1DC655B6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F7A1: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,108 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC65582: ???
==7929== by 0x1DC655B6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F7A1: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,109 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F813: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,110 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC60772: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,111 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC607E6: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,112 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC607E6: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,113 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6151D: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,114 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6151D: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,115 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC66B6A: ???
==7929== by 0x1DC66BB6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6151D: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,116 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8E7BEC1: julia_typeinf_edge_1076 (inference.jl:1547)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x8E4C6DC: julia_typeinf_ext_0 (inference.jl:1616)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,117 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8E7BEC1: julia_typeinf_edge_1076 (inference.jl:1547)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x8E4C6DC: julia_typeinf_ext_0 (inference.jl:1616)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,118 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF95B7: emit_jlcall(llvm::Value*, llvm::Value*, _jl_value_t**, unsigned long, jl_codectx_t*) (codegen.cpp:2578)
==7929== by 0x4EECA12: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2739)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929== by 0x4EF95B7: emit_jlcall(llvm::Value*, llvm::Value*, _jl_value_t**, unsigned long, jl_codectx_t*) (codegen.cpp:2578)
==7929== by 0x4EECA12: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2739)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,119 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC67A0D: ???
==7929== by 0x1DC67F2A: ???
==7929== by 0x1DC66B6A: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,120 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6923C: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC67A0D: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,121 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6923C: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC67A0D: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,122 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69254: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC67A0D: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,123 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69254: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC67A0D: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,124 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69254: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,125 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,126 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,127 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6997D: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,128 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6997D: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,129 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC699A7: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,130 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC699A7: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,131 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC699A7: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,132 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC699A7: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,133 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC699CB: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,134 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC699CB: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,135 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC699CB: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,136 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC699CB: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,137 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69A10: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,138 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69D5E: ???
==7929== by 0x1DC69FC6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69A10: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,139 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECDCB3: julia_type_to_di(_jl_value_t*, llvm::DIBuilder*, bool) [clone .part.917] (cgutils.cpp:165)
==7929== by 0x4EFD62D: julia_type_to_di (codegen.cpp:4168)
==7929== by 0x4EFD62D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4170)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69EAE: ???
==7929== by 0x1DC69FC6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,140 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69EAE: ???
==7929== by 0x1DC69FC6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69A10: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,141 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69EAE: ???
==7929== by 0x1DC69FC6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69A10: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,142 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69F4A: ???
==7929== by 0x1DC69FC6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69A10: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,143 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61AFB: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,144 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8591D: do_call (interpreter.c:66)
==7929== by 0x4E84A1D: eval (interpreter.c:190)
==7929== by 0x4E85903: do_call (interpreter.c:65)
==7929== by 0x4E84A1D: eval (interpreter.c:190)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,145 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8591D: do_call (interpreter.c:66)
==7929== by 0x4E84A1D: eval (interpreter.c:190)
==7929== by 0x4E85903: do_call (interpreter.c:65)
==7929== by 0x4E84A1D: eval (interpreter.c:190)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,146 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8E6A6DD: julia_inlining_pass_839 (inference.jl:3006)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,147 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8E6A6DD: julia_inlining_pass_839 (inference.jl:3006)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,148 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6ACFD: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929== by 0x4E6DED1: jl_specializations_get_linfo (gf.c:129)
==7929== by 0x8E65EA5: specialize_method; (inference.jl:1442)
==7929== by 0x8E65EA5: julia_typeinf_edge_743 (inference.jl:1542)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,149 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFC7C5: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4597)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6ACFD: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929== by 0x4E6DED1: jl_specializations_get_linfo (gf.c:129)
==7929== by 0x8E65EA5: specialize_method; (inference.jl:1442)
==7929== by 0x8E65EA5: julia_typeinf_edge_743 (inference.jl:1542)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,150 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6ACFD: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929== by 0x4E6DED1: jl_specializations_get_linfo (gf.c:129)
==7929== by 0x8E65EA5: specialize_method; (inference.jl:1442)
==7929== by 0x8E65EA5: julia_typeinf_edge_743 (inference.jl:1542)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,151 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6ACFD: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929== by 0x4E6DED1: jl_specializations_get_linfo (gf.c:129)
==7929== by 0x8E65EA5: specialize_method; (inference.jl:1442)
==7929== by 0x8E65EA5: julia_typeinf_edge_743 (inference.jl:1542)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,152 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6ACFD: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,153 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6ACFD: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,154 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6ACFD: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,155 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6ACFD: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,156 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6B4C9: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,157 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6B4C9: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,158 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6B4C9: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,159 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6B4C9: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,160 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6BAB9: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,161 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6BAB9: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,162 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6BAB9: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,163 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C129: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,164 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C129: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,165 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C129: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,166 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C129: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,167 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C948: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929== by 0x4E6DED1: jl_specializations_get_linfo (gf.c:129)
==7929== by 0x8E65EA5: specialize_method; (inference.jl:1442)
==7929== by 0x8E65EA5: julia_typeinf_edge_743 (inference.jl:1542)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,168 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C948: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929== by 0x4E6DED1: jl_specializations_get_linfo (gf.c:129)
==7929== by 0x8E65EA5: specialize_method; (inference.jl:1442)
==7929== by 0x8E65EA5: julia_typeinf_edge_743 (inference.jl:1542)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,169 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C95F: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929== by 0x4E6DED1: jl_specializations_get_linfo (gf.c:129)
==7929== by 0x8E65EA5: specialize_method; (inference.jl:1442)
==7929== by 0x8E65EA5: julia_typeinf_edge_743 (inference.jl:1542)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,170 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C95F: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929== by 0x4E6DED1: jl_specializations_get_linfo (gf.c:129)
==7929== by 0x8E65EA5: specialize_method; (inference.jl:1442)
==7929== by 0x8E65EA5: julia_typeinf_edge_743 (inference.jl:1542)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,171 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C95F: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,172 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6D0E9: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,173 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6D0E9: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,174 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6D0E9: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,175 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6D0E9: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,176 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8EA6734: julia_eltype_3051 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x8EA675B: jlcall_eltype_3051 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x8EA6734: julia_eltype_3051 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,177 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8EA6734: julia_eltype_3051 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x8EA675B: jlcall_eltype_3051 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x8EA6734: julia_eltype_3051 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,178 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8EA6734: julia_eltype_3051 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x8EA675B: jlcall_eltype_3051 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x8EA6734: julia_eltype_3051 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,179 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8EA6734: julia_eltype_3051 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x8EA675B: jlcall_eltype_3051 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,180 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8E6A6DD: julia_inlining_pass_839 (inference.jl:3006)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929== by 0x8E6C2D6: jlcall_inlining_pass_839 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,181 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8E6A6DD: julia_inlining_pass_839 (inference.jl:3006)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929== by 0x8E6C2D6: jlcall_inlining_pass_839 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,182 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8E6A6DD: julia_inlining_pass_839 (inference.jl:3006)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929== by 0x8E6C2D6: jlcall_inlining_pass_839 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,183 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8E6A6DD: julia_inlining_pass_839 (inference.jl:3006)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929== by 0x8E6C2D6: jlcall_inlining_pass_839 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,184 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFC7C5: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4597)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8591D: do_call (interpreter.c:66)
==7929== by 0x4E84A1D: eval (interpreter.c:190)
==7929== by 0x4EA0297: jl_toplevel_eval_flex (toplevel.c:558)
==7929== by 0x4E7A94D: jl_parse_eval_all (ast.c:717)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,185 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8591D: do_call (interpreter.c:66)
==7929== by 0x4E84A1D: eval (interpreter.c:190)
==7929== by 0x4EA0297: jl_toplevel_eval_flex (toplevel.c:558)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,186 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6DA6B: ???
==7929== by 0x1DC6EDF6: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,187 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC6FC6E: ???
==7929== by 0x1DC6FCBD: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6DA6B: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,188 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF495D: emit_new_struct(_jl_value_t*, unsigned long, _jl_value_t**, jl_codectx_t*) (cgutils.cpp:1751)
==7929== by 0x4EEE625: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3241)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,189 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,190 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC6F145: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,191 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC6F145: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,192 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4F1382F: get (Metadata.h:999)
==7929== by 0x4F1382F: get (Metadata.h:1031)
==7929== by 0x4F1382F: llvm::LowerSIMDLoop::runOnLoop(llvm::Loop*, llvm::LPPassManager&) (llvm-simdloop.cpp:159)
==7929== by 0x616624A: llvm::LPPassManager::runOnFunction(llvm::Function&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F1B86: llvm::FPPassManager::runOnFunction(llvm::Function&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F1EAA: llvm::FPPassManager::runOnModule(llvm::Module&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F21B5: llvm::legacy::PassManagerImpl::run(llvm::Module&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4F01FFB: operator() (jitlayers.cpp:411)
==7929== by 0x4F01FFB: std::_Function_handler<llvm::object::OwningBinary<llvm::object::ObjectFile> (llvm::Module&), JuliaOJIT::JuliaOJIT(llvm::TargetMachine&)::{lambda(llvm::Module&)#1}>::_M_invoke(std::_Any_data const&, llvm::Module&) (functional:1726)
==7929== by 0x4F06017: operator() (functional:2136)
==7929== by 0x4F06017: addModuleSet<llvm::SmallVector<std::unique_ptr<llvm::Module>, 1u>, llvm::RTDyldMemoryManager*, std::unique_ptr<llvm::orc::LambdaResolver<JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)>, JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)> >, std::default_delete<llvm::orc::LambdaResolver<JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)>, JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)> > > > > (IRCompileLayer.h:76)
==7929== by 0x4F06017: JuliaOJIT::addModule(std::unique_ptr<llvm::Module, std::default_delete<llvm::Module> >) (jitlayers.cpp:521)
==7929== by 0x4F06AEC: jl_finalize_function(std::string const&, llvm::Module*) (jitlayers.cpp:769)
==7929== by 0x4F06B4E: jl_finalize_function(llvm::Function*, llvm::Module*) (jitlayers.cpp:778)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,193 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4F13738: get (Metadata.h:999)
==7929== by 0x4F13738: get (Metadata.h:1031)
==7929== by 0x4F13738: llvm::LowerSIMDLoop::runOnLoop(llvm::Loop*, llvm::LPPassManager&) (llvm-simdloop.cpp:171)
==7929== by 0x616624A: llvm::LPPassManager::runOnFunction(llvm::Function&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F1B86: llvm::FPPassManager::runOnFunction(llvm::Function&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F1EAA: llvm::FPPassManager::runOnModule(llvm::Module&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F21B5: llvm::legacy::PassManagerImpl::run(llvm::Module&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4F01FFB: operator() (jitlayers.cpp:411)
==7929== by 0x4F01FFB: std::_Function_handler<llvm::object::OwningBinary<llvm::object::ObjectFile> (llvm::Module&), JuliaOJIT::JuliaOJIT(llvm::TargetMachine&)::{lambda(llvm::Module&)#1}>::_M_invoke(std::_Any_data const&, llvm::Module&) (functional:1726)
==7929== by 0x4F06017: operator() (functional:2136)
==7929== by 0x4F06017: addModuleSet<llvm::SmallVector<std::unique_ptr<llvm::Module>, 1u>, llvm::RTDyldMemoryManager*, std::unique_ptr<llvm::orc::LambdaResolver<JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)>, JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)> >, std::default_delete<llvm::orc::LambdaResolver<JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)>, JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)> > > > > (IRCompileLayer.h:76)
==7929== by 0x4F06017: JuliaOJIT::addModule(std::unique_ptr<llvm::Module, std::default_delete<llvm::Module> >) (jitlayers.cpp:521)
==7929== by 0x4F06AEC: jl_finalize_function(std::string const&, llvm::Module*) (jitlayers.cpp:769)
==7929== by 0x4F06B4E: jl_finalize_function(llvm::Function*, llvm::Module*) (jitlayers.cpp:778)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,194 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6CEF309: (anonymous namespace)::LoopVectorize::processLoop(llvm::Loop*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6CF0714: (anonymous namespace)::LoopVectorize::runOnFunction(llvm::Function&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F1B86: llvm::FPPassManager::runOnFunction(llvm::Function&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F1EAA: llvm::FPPassManager::runOnModule(llvm::Module&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F21B5: llvm::legacy::PassManagerImpl::run(llvm::Module&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4F01FFB: operator() (jitlayers.cpp:411)
==7929== by 0x4F01FFB: std::_Function_handler<llvm::object::OwningBinary<llvm::object::ObjectFile> (llvm::Module&), JuliaOJIT::JuliaOJIT(llvm::TargetMachine&)::{lambda(llvm::Module&)#1}>::_M_invoke(std::_Any_data const&, llvm::Module&) (functional:1726)
==7929== by 0x4F06017: operator() (functional:2136)
==7929== by 0x4F06017: addModuleSet<llvm::SmallVector<std::unique_ptr<llvm::Module>, 1u>, llvm::RTDyldMemoryManager*, std::unique_ptr<llvm::orc::LambdaResolver<JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)>, JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)> >, std::default_delete<llvm::orc::LambdaResolver<JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)>, JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)> > > > > (IRCompileLayer.h:76)
==7929== by 0x4F06017: JuliaOJIT::addModule(std::unique_ptr<llvm::Module, std::default_delete<llvm::Module> >) (jitlayers.cpp:521)
==7929== by 0x4F06AEC: jl_finalize_function(std::string const&, llvm::Module*) (jitlayers.cpp:769)
==7929== by 0x4F06B4E: jl_finalize_function(llvm::Function*, llvm::Module*) (jitlayers.cpp:778)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,195 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929== by 0x1DC70EC0: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,196 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC758A3: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,197 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC758F3: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,198 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC7596C: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,199 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC759BC: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,200 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC75A58: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,201 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC75C04: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,202 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC75C04: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,203 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929== by 0x1DC70F4A: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,204 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,205 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECDCB3: julia_type_to_di(_jl_value_t*, llvm::DIBuilder*, bool) [clone .part.917] (cgutils.cpp:165)
==7929== by 0x4EFAE9B: julia_type_to_di (codegen.cpp:4231)
==7929== by 0x4EFAE9B: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4231)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,206 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEC88A: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2750)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,207 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEC88A: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2750)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,208 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEC88A: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2750)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,209 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF18D3: emit_condition(_jl_value_t*, std::string const&, jl_codectx_t*) (codegen.cpp:3029)
==7929== by 0x4EED5B5: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3157)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,210 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,211 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC774F4: ???
==7929== by 0x1DC762FB: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,212 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC774F4: ???
==7929== by 0x1DC762FB: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,213 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC768E7: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,214 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECDCB3: julia_type_to_di(_jl_value_t*, llvm::DIBuilder*, bool) [clone .part.917] (cgutils.cpp:165)
==7929== by 0x4EFB0E2: julia_type_to_di (codegen.cpp:4270)
==7929== by 0x4EFB0E2: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4275)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC768E7: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,215 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFC7C5: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4597)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC768E7: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,216 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC768E7: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,217 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B314: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC768E7: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,218 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B314: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC768E7: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,219 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8BC8B: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B314: ???
==7929== by 0x1DC8B392: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,220 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8BC8B: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B314: ???
==7929== by 0x1DC8B392: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,221 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECDCB3: julia_type_to_di(_jl_value_t*, llvm::DIBuilder*, bool) [clone .part.917] (cgutils.cpp:165)
==7929== by 0x4EFD62D: julia_type_to_di (codegen.cpp:4168)
==7929== by 0x4EFD62D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4170)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B4A0: ???
==7929== by 0x1DC8B35D: ???
==7929== by 0x1DC8B392: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,222 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B4A0: ???
==7929== by 0x1DC8B35D: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,223 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B4C1: ???
==7929== by 0x1DC8B35D: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,224 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B4C1: ???
==7929== by 0x1DC8B35D: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,225 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B51A: ???
==7929== by 0x1DC8B35D: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,226 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B51A: ???
==7929== by 0x1DC8B35D: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,227 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8C360: ???
==7929== by 0x1DC8C0A2: ???
==7929== by 0x1DC8C0F6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,228 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8C50E: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,229 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B939: ???
==7929== by 0x1DC8B35D: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,230 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC77C2F: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,231 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC77C2F: ???
==7929== by 0x1DC7692B: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,232 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC76B8F: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,233 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF9B02: emit_call_function_object(_jl_lambda_info_t*, jl_cgval_t const&, llvm::Value*, _jl_value_t**, unsigned long, _jl_value_t*, jl_codectx_t*) (codegen.cpp:2631)
==7929== by 0x4EEE50C: emit_invoke (codegen.cpp:2690)
==7929== by 0x4EEE50C: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,234 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF9B02: emit_call_function_object(_jl_lambda_info_t*, jl_cgval_t const&, llvm::Value*, _jl_value_t**, unsigned long, _jl_value_t*, jl_codectx_t*) (codegen.cpp:2631)
==7929== by 0x4EEE50C: emit_invoke (codegen.cpp:2690)
==7929== by 0x4EEE50C: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,235 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF9B02: emit_call_function_object(_jl_lambda_info_t*, jl_cgval_t const&, llvm::Value*, _jl_value_t**, unsigned long, _jl_value_t*, jl_codectx_t*) (codegen.cpp:2631)
==7929== by 0x4EEE50C: emit_invoke (codegen.cpp:2690)
==7929== by 0x4EEE50C: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,236 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8E243: ???
==7929== by 0x1DC8E58E: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC76B8F: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,237 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC888F6: ???
==7929== by 0x1DC76B9E: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,238 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC888F6: ???
==7929== by 0x1DC76B9E: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,239 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC888F6: ???
==7929== by 0x1DC76B9E: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,240 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC88DA6: ???
==7929== by 0x1DC76B9E: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,241 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC89877: ???
==7929== by 0x1DC76BB7: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,242 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC89877: ???
==7929== by 0x1DC76BB7: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,243 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC76CA8: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,244 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,245 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC70F94: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,246 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC70FB7: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,247 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71003: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,248 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC716BA: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,249 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC716BA: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,250 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71841: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,251 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71841: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,252 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71806: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,253 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71806: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,254 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71C52: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,255 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71CB7: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,256 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4EB2932: jl_apply (julia.h:1392)
==7929== by 0x4EB2932: run_finalizer (gc.c:108)
==7929== by 0x4EB2DFE: jl_gc_run_finalizers_in_list (gc.c:190)
==7929== by 0x4EB2DFE: run_finalizers (gc.c:211)
==7929== by 0x4EB7ECC: jl_gc_collect (gc.c:1872)
==7929== by 0x1DC9100F: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,257 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4EB2932: jl_apply (julia.h:1392)
==7929== by 0x4EB2932: run_finalizer (gc.c:108)
==7929== by 0x4EB2DFE: jl_gc_run_finalizers_in_list (gc.c:190)
==7929== by 0x4EB2DFE: run_finalizers (gc.c:211)
==7929== by 0x4EB7ECC: jl_gc_collect (gc.c:1872)
==7929== by 0x1DC9100F: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,258 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFC7C5: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4597)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4EB2932: jl_apply (julia.h:1392)
==7929== by 0x4EB2932: run_finalizer (gc.c:108)
==7929== by 0x4EB2DFE: jl_gc_run_finalizers_in_list (gc.c:190)
==7929== by 0x4EB2DFE: run_finalizers (gc.c:211)
==7929== by 0x4EB7ECC: jl_gc_collect (gc.c:1872)
==7929== by 0x1DC9100F: ???
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,259 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x912AA04: julia_println_33060 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8591D: do_call (interpreter.c:66)
==7929== by 0x4E84A1D: eval (interpreter.c:190)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,260 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCC39: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4202)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8FA5B81: julia__atexit_21418 (initdefs.jl:114)
==7929== by 0x8FA5BF8: jlcall__atexit_21418 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8C144: jl_apply (julia.h:1392)
==7929== by 0x4E8C144: jl_atexit_hook (init.c:244)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,261 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8FA5B81: julia__atexit_21418 (initdefs.jl:114)
==7929== by 0x8FA5BF8: jlcall__atexit_21418 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8C144: jl_apply (julia.h:1392)
==7929== by 0x4E8C144: jl_atexit_hook (init.c:244)
==7929==
==7929== 32 bytes in 1 blocks are possibly lost in loss record 2,262 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8FA5B81: julia__atexit_21418 (initdefs.jl:114)
==7929== by 0x8FA5BF8: jlcall__atexit_21418 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8C144: jl_apply (julia.h:1392)
==7929== by 0x4E8C144: jl_atexit_hook (init.c:244)
==7929==
==7929== 34 bytes in 1 blocks are possibly lost in loss record 2,500 of 11,259
==7929== at 0x4C298A0: operator new[](unsigned long) (vg_replace_malloc.c:389)
==7929== by 0x6442328: llvm::RegisterClassInfo::compute(llvm::TargetRegisterClass const*) const (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6442294: llvm::RegisterClassInfo::compute(llvm::TargetRegisterClass const*) const (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x644B181: (anonymous namespace)::RegisterCoalescer::copyCoalesceWorkList(llvm::MutableArrayRef<llvm::MachineInstr*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x644E043: (anonymous namespace)::RegisterCoalescer::runOnMachineFunction(llvm::MachineFunction&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F1B86: llvm::FPPassManager::runOnFunction(llvm::Function&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F1EAA: llvm::FPPassManager::runOnModule(llvm::Module&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F21B5: llvm::legacy::PassManagerImpl::run(llvm::Module&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4F01FFB: operator() (jitlayers.cpp:411)
==7929== by 0x4F01FFB: std::_Function_handler<llvm::object::OwningBinary<llvm::object::ObjectFile> (llvm::Module&), JuliaOJIT::JuliaOJIT(llvm::TargetMachine&)::{lambda(llvm::Module&)#1}>::_M_invoke(std::_Any_data const&, llvm::Module&) (functional:1726)
==7929== by 0x4F06017: operator() (functional:2136)
==7929== by 0x4F06017: addModuleSet<llvm::SmallVector<std::unique_ptr<llvm::Module>, 1u>, llvm::RTDyldMemoryManager*, std::unique_ptr<llvm::orc::LambdaResolver<JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)>, JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)> >, std::default_delete<llvm::orc::LambdaResolver<JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)>, JuliaOJIT::addModule(std::unique_ptr<llvm::Module>)::<lambda(const string&)> > > > > (IRCompileLayer.h:76)
==7929== by 0x4F06017: JuliaOJIT::addModule(std::unique_ptr<llvm::Module, std::default_delete<llvm::Module> >) (jitlayers.cpp:521)
==7929== by 0x4F06AEC: jl_finalize_function(std::string const&, llvm::Module*) (jitlayers.cpp:769)
==7929== by 0x4F06B4E: jl_finalize_function(llvm::Function*, llvm::Module*) (jitlayers.cpp:778)
==7929==
==7929== 34 bytes in 1 blocks are possibly lost in loss record 2,501 of 11,259
==7929== at 0x4C298A0: operator new[](unsigned long) (vg_replace_malloc.c:389)
==7929== by 0x6442328: llvm::RegisterClassInfo::compute(llvm::TargetRegisterClass const*) const (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6442294: llvm::RegisterClassInfo::compute(llvm::TargetRegisterClass const*) const (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6442406: llvm::RegisterClassInfo::computePSetLimit(unsigned int) const (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x63F140F: llvm::ScheduleDAGMILive::initRegPressure() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x63F15A8: llvm::ScheduleDAGMILive::schedule() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x63E587B: (anonymous namespace)::MachineSchedulerBase::scheduleRegions(llvm::ScheduleDAGInstrs&) [clone .isra.287] (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x63F0AE2: (anonymous namespace)::MachineScheduler::runOnMachineFunction(llvm::MachineFunction&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F1B86: llvm::FPPassManager::runOnFunction(llvm::Function&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F1EAA: llvm::FPPassManager::runOnModule(llvm::Module&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F21B5: llvm::legacy::PassManagerImpl::run(llvm::Module&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4F01FFB: operator() (jitlayers.cpp:411)
==7929== by 0x4F01FFB: std::_Function_handler<llvm::object::OwningBinary<llvm::object::ObjectFile> (llvm::Module&), JuliaOJIT::JuliaOJIT(llvm::TargetMachine&)::{lambda(llvm::Module&)#1}>::_M_invoke(std::_Any_data const&, llvm::Module&) (functional:1726)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,351 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F4242: llvm::MDBuilder::createTBAANode(llvm::StringRef, llvm::MDNode*, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBF209: tbaa_make_child(char const*, llvm::MDNode*, bool) [clone .constprop.953] (codegen.cpp:4777)
==7929== by 0x4ED571C: init_julia_llvm_meta (codegen.cpp:4891)
==7929== by 0x4ED571C: jl_init_codegen (codegen.cpp:5736)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,352 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F4242: llvm::MDBuilder::createTBAANode(llvm::StringRef, llvm::MDNode*, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBF209: tbaa_make_child(char const*, llvm::MDNode*, bool) [clone .constprop.953] (codegen.cpp:4777)
==7929== by 0x4ED5732: init_julia_llvm_meta (codegen.cpp:4892)
==7929== by 0x4ED5732: jl_init_codegen (codegen.cpp:5736)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,353 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F4242: llvm::MDBuilder::createTBAANode(llvm::StringRef, llvm::MDNode*, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBF209: tbaa_make_child(char const*, llvm::MDNode*, bool) [clone .constprop.953] (codegen.cpp:4777)
==7929== by 0x4ED5748: init_julia_llvm_meta (codegen.cpp:4893)
==7929== by 0x4ED5748: jl_init_codegen (codegen.cpp:5736)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,354 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F4242: llvm::MDBuilder::createTBAANode(llvm::StringRef, llvm::MDNode*, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBF209: tbaa_make_child(char const*, llvm::MDNode*, bool) [clone .constprop.953] (codegen.cpp:4777)
==7929== by 0x4ED575E: init_julia_llvm_meta (codegen.cpp:4894)
==7929== by 0x4ED575E: jl_init_codegen (codegen.cpp:5736)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,355 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F4242: llvm::MDBuilder::createTBAANode(llvm::StringRef, llvm::MDNode*, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBF209: tbaa_make_child(char const*, llvm::MDNode*, bool) [clone .constprop.953] (codegen.cpp:4777)
==7929== by 0x4ED5778: init_julia_llvm_meta (codegen.cpp:4895)
==7929== by 0x4ED5778: jl_init_codegen (codegen.cpp:5736)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,356 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F4242: llvm::MDBuilder::createTBAANode(llvm::StringRef, llvm::MDNode*, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBF209: tbaa_make_child(char const*, llvm::MDNode*, bool) [clone .constprop.953] (codegen.cpp:4777)
==7929== by 0x4ED5792: init_julia_llvm_meta (codegen.cpp:4896)
==7929== by 0x4ED5792: jl_init_codegen (codegen.cpp:5736)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,357 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F4242: llvm::MDBuilder::createTBAANode(llvm::StringRef, llvm::MDNode*, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBF209: tbaa_make_child(char const*, llvm::MDNode*, bool) [clone .constprop.953] (codegen.cpp:4777)
==7929== by 0x4ED57A8: init_julia_llvm_meta (codegen.cpp:4897)
==7929== by 0x4ED57A8: jl_init_codegen (codegen.cpp:5736)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,358 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F4242: llvm::MDBuilder::createTBAANode(llvm::StringRef, llvm::MDNode*, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBF209: tbaa_make_child(char const*, llvm::MDNode*, bool) [clone .constprop.953] (codegen.cpp:4777)
==7929== by 0x4ED57C2: init_julia_llvm_meta (codegen.cpp:4898)
==7929== by 0x4ED57C2: jl_init_codegen (codegen.cpp:5736)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,359 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F4242: llvm::MDBuilder::createTBAANode(llvm::StringRef, llvm::MDNode*, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBF209: tbaa_make_child(char const*, llvm::MDNode*, bool) [clone .constprop.953] (codegen.cpp:4777)
==7929== by 0x4ED57DC: init_julia_llvm_meta (codegen.cpp:4899)
==7929== by 0x4ED57DC: jl_init_codegen (codegen.cpp:5736)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,360 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F4242: llvm::MDBuilder::createTBAANode(llvm::StringRef, llvm::MDNode*, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBF209: tbaa_make_child(char const*, llvm::MDNode*, bool) [clone .constprop.953] (codegen.cpp:4777)
==7929== by 0x4ED57F2: init_julia_llvm_meta (codegen.cpp:4900)
==7929== by 0x4ED57F2: jl_init_codegen (codegen.cpp:5736)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,361 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F4242: llvm::MDBuilder::createTBAANode(llvm::StringRef, llvm::MDNode*, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBF209: tbaa_make_child(char const*, llvm::MDNode*, bool) [clone .constprop.953] (codegen.cpp:4777)
==7929== by 0x4ED5808: init_julia_llvm_meta (codegen.cpp:4901)
==7929== by 0x4ED5808: jl_init_codegen (codegen.cpp:5736)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,362 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F4242: llvm::MDBuilder::createTBAANode(llvm::StringRef, llvm::MDNode*, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBF209: tbaa_make_child(char const*, llvm::MDNode*, bool) [clone .constprop.953] (codegen.cpp:4777)
==7929== by 0x4ED5822: init_julia_llvm_meta (codegen.cpp:4902)
==7929== by 0x4ED5822: jl_init_codegen (codegen.cpp:5736)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,363 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F4242: llvm::MDBuilder::createTBAANode(llvm::StringRef, llvm::MDNode*, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBF209: tbaa_make_child(char const*, llvm::MDNode*, bool) [clone .constprop.953] (codegen.cpp:4777)
==7929== by 0x4ED583C: init_julia_llvm_meta (codegen.cpp:4903)
==7929== by 0x4ED583C: jl_init_codegen (codegen.cpp:5736)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,364 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F4242: llvm::MDBuilder::createTBAANode(llvm::StringRef, llvm::MDNode*, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBF209: tbaa_make_child(char const*, llvm::MDNode*, bool) [clone .constprop.953] (codegen.cpp:4777)
==7929== by 0x4ED5856: init_julia_llvm_meta (codegen.cpp:4904)
==7929== by 0x4ED5856: jl_init_codegen (codegen.cpp:5736)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,365 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED5AE6: init_julia_llvm_env (codegen.cpp:4953)
==7929== by 0x4ED5AE6: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,366 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED5FE5: Create (Function.h:123)
==7929== by 0x4ED5FE5: init_julia_llvm_env (codegen.cpp:5052)
==7929== by 0x4ED5FE5: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,367 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED630A: Create (Function.h:123)
==7929== by 0x4ED630A: init_julia_llvm_env (codegen.cpp:5107)
==7929== by 0x4ED630A: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,368 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED63D7: Create (Function.h:123)
==7929== by 0x4ED63D7: init_julia_llvm_env (codegen.cpp:5123)
==7929== by 0x4ED63D7: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,369 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED6496: Create (Function.h:123)
==7929== by 0x4ED6496: init_julia_llvm_env (codegen.cpp:5132)
==7929== by 0x4ED6496: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,370 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED653E: Create (Function.h:123)
==7929== by 0x4ED653E: init_julia_llvm_env (codegen.cpp:5139)
==7929== by 0x4ED653E: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,371 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED6644: Create (Function.h:123)
==7929== by 0x4ED6644: init_julia_llvm_env (codegen.cpp:5150)
==7929== by 0x4ED6644: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,372 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED671C: Create (Function.h:123)
==7929== by 0x4ED671C: init_julia_llvm_env (codegen.cpp:5160)
==7929== by 0x4ED671C: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,373 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED6833: Create (Function.h:123)
==7929== by 0x4ED6833: init_julia_llvm_env (codegen.cpp:5171)
==7929== by 0x4ED6833: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,374 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED6939: Create (Function.h:123)
==7929== by 0x4ED6939: init_julia_llvm_env (codegen.cpp:5182)
==7929== by 0x4ED6939: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,375 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED69C2: Create (Function.h:123)
==7929== by 0x4ED69C2: init_julia_llvm_env (codegen.cpp:5189)
==7929== by 0x4ED69C2: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,376 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED6A9A: Create (Function.h:123)
==7929== by 0x4ED6A9A: init_julia_llvm_env (codegen.cpp:5199)
==7929== by 0x4ED6A9A: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,377 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED6BBE: Create (Function.h:123)
==7929== by 0x4ED6BBE: init_julia_llvm_env (codegen.cpp:5209)
==7929== by 0x4ED6BBE: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,378 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED6CB3: Create (Function.h:123)
==7929== by 0x4ED6CB3: init_julia_llvm_env (codegen.cpp:5219)
==7929== by 0x4ED6CB3: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,379 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED6D7A: Create (Function.h:123)
==7929== by 0x4ED6D7A: init_julia_llvm_env (codegen.cpp:5229)
==7929== by 0x4ED6D7A: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,380 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED6E13: Create (Function.h:123)
==7929== by 0x4ED6E13: init_julia_llvm_env (codegen.cpp:5237)
==7929== by 0x4ED6E13: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,381 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED6E95: Create (Function.h:123)
==7929== by 0x4ED6E95: init_julia_llvm_env (codegen.cpp:5243)
==7929== by 0x4ED6E95: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,382 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED6F17: Create (Function.h:123)
==7929== by 0x4ED6F17: init_julia_llvm_env (codegen.cpp:5248)
==7929== by 0x4ED6F17: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,383 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED6F85: Create (Function.h:123)
==7929== by 0x4ED6F85: init_julia_llvm_env (codegen.cpp:5252)
==7929== by 0x4ED6F85: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,384 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED6FD1: init_julia_llvm_env (codegen.cpp:5257)
==7929== by 0x4ED6FD1: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,385 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED702D: init_julia_llvm_env (codegen.cpp:5258)
==7929== by 0x4ED702D: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,386 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED7089: init_julia_llvm_env (codegen.cpp:5259)
==7929== by 0x4ED7089: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,387 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED70E5: init_julia_llvm_env (codegen.cpp:5260)
==7929== by 0x4ED70E5: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,388 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED7141: init_julia_llvm_env (codegen.cpp:5261)
==7929== by 0x4ED7141: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,389 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED719D: init_julia_llvm_env (codegen.cpp:5262)
==7929== by 0x4ED719D: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,390 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED71F9: init_julia_llvm_env (codegen.cpp:5263)
==7929== by 0x4ED71F9: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,391 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED7255: init_julia_llvm_env (codegen.cpp:5264)
==7929== by 0x4ED7255: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,392 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED72B1: init_julia_llvm_env (codegen.cpp:5265)
==7929== by 0x4ED72B1: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,393 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED7311: init_julia_llvm_env (codegen.cpp:5266)
==7929== by 0x4ED7311: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,394 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED7371: init_julia_llvm_env (codegen.cpp:5267)
==7929== by 0x4ED7371: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,395 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED73D1: init_julia_llvm_env (codegen.cpp:5268)
==7929== by 0x4ED73D1: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,396 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED7431: init_julia_llvm_env (codegen.cpp:5269)
==7929== by 0x4ED7431: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,397 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED7491: init_julia_llvm_env (codegen.cpp:5270)
==7929== by 0x4ED7491: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,398 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED74F1: init_julia_llvm_env (codegen.cpp:5271)
==7929== by 0x4ED74F1: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,399 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED7551: init_julia_llvm_env (codegen.cpp:5272)
==7929== by 0x4ED7551: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,400 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED75B1: init_julia_llvm_env (codegen.cpp:5273)
==7929== by 0x4ED75B1: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,401 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED7611: init_julia_llvm_env (codegen.cpp:5274)
==7929== by 0x4ED7611: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,402 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED7671: init_julia_llvm_env (codegen.cpp:5275)
==7929== by 0x4ED7671: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,403 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED76D1: init_julia_llvm_env (codegen.cpp:5276)
==7929== by 0x4ED76D1: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,404 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED7731: init_julia_llvm_env (codegen.cpp:5277)
==7929== by 0x4ED7731: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,405 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED7791: init_julia_llvm_env (codegen.cpp:5278)
==7929== by 0x4ED7791: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,406 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBEC1D: Create (Function.h:123)
==7929== by 0x4EBEC1D: jlcall_func_to_llvm(std::string const&, _jl_value_t* (*)(_jl_value_t*, _jl_value_t**, unsigned int), llvm::Module*) (codegen.cpp:4814)
==7929== by 0x4ED7809: init_julia_llvm_env (codegen.cpp:5282)
==7929== by 0x4ED7809: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,407 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED788B: Create (Function.h:123)
==7929== by 0x4ED788B: init_julia_llvm_env (codegen.cpp:5284)
==7929== by 0x4ED788B: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,408 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED790D: Create (Function.h:123)
==7929== by 0x4ED790D: init_julia_llvm_env (codegen.cpp:5289)
==7929== by 0x4ED790D: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,409 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED79E5: Create (Function.h:123)
==7929== by 0x4ED79E5: init_julia_llvm_env (codegen.cpp:5297)
==7929== by 0x4ED79E5: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,410 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED7AC5: Create (Function.h:123)
==7929== by 0x4ED7AC5: init_julia_llvm_env (codegen.cpp:5306)
==7929== by 0x4ED7AC5: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,411 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x660614D: llvm::Module::getOrInsertFunction(llvm::StringRef, llvm::FunctionType*, llvm::AttributeSet) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x66061CB: llvm::Module::getOrInsertFunction(llvm::StringRef, llvm::FunctionType*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x658AC07: llvm::Intrinsic::getDeclaration(llvm::Module*, llvm::Intrinsic::ID, llvm::ArrayRef<llvm::Type*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED7B31: init_julia_llvm_env (codegen.cpp:5313)
==7929== by 0x4ED7B31: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,412 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED7BA8: Create (Function.h:123)
==7929== by 0x4ED7BA8: init_julia_llvm_env (codegen.cpp:5318)
==7929== by 0x4ED7BA8: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,413 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED7C2A: Create (Function.h:123)
==7929== by 0x4ED7C2A: init_julia_llvm_env (codegen.cpp:5324)
==7929== by 0x4ED7C2A: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,414 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED7CD7: Create (Function.h:123)
==7929== by 0x4ED7CD7: init_julia_llvm_env (codegen.cpp:5332)
==7929== by 0x4ED7CD7: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,415 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED7D79: Create (Function.h:123)
==7929== by 0x4ED7D79: init_julia_llvm_env (codegen.cpp:5342)
==7929== by 0x4ED7D79: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,416 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED7E50: Create (Function.h:123)
==7929== by 0x4ED7E50: init_julia_llvm_env (codegen.cpp:5353)
==7929== by 0x4ED7E50: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,417 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED7F0B: Create (Function.h:123)
==7929== by 0x4ED7F0B: init_julia_llvm_env (codegen.cpp:5361)
==7929== by 0x4ED7F0B: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,418 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED7FB5: Create (Function.h:123)
==7929== by 0x4ED7FB5: init_julia_llvm_env (codegen.cpp:5403)
==7929== by 0x4ED7FB5: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,419 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED8056: Create (Function.h:123)
==7929== by 0x4ED8056: init_julia_llvm_env (codegen.cpp:5412)
==7929== by 0x4ED8056: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,420 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED8110: Create (Function.h:123)
==7929== by 0x4ED8110: init_julia_llvm_env (codegen.cpp:5422)
==7929== by 0x4ED8110: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,421 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED8201: Create (Function.h:123)
==7929== by 0x4ED8201: init_julia_llvm_env (codegen.cpp:5432)
==7929== by 0x4ED8201: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,422 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED82D9: Create (Function.h:123)
==7929== by 0x4ED82D9: init_julia_llvm_env (codegen.cpp:5441)
==7929== by 0x4ED82D9: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,423 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED83DE: Create (Function.h:123)
==7929== by 0x4ED83DE: init_julia_llvm_env (codegen.cpp:5451)
==7929== by 0x4ED83DE: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,424 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED84A1: Create (Function.h:123)
==7929== by 0x4ED84A1: init_julia_llvm_env (codegen.cpp:5460)
==7929== by 0x4ED84A1: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,425 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED854C: Create (Function.h:123)
==7929== by 0x4ED854C: init_julia_llvm_env (codegen.cpp:5469)
==7929== by 0x4ED854C: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,426 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED85B9: Create (Function.h:123)
==7929== by 0x4ED85B9: init_julia_llvm_env (codegen.cpp:5475)
==7929== by 0x4ED85B9: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,427 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED8652: Create (Function.h:123)
==7929== by 0x4ED8652: init_julia_llvm_env (codegen.cpp:5502)
==7929== by 0x4ED8652: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,428 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED872C: Create (Function.h:123)
==7929== by 0x4ED872C: init_julia_llvm_env (codegen.cpp:5514)
==7929== by 0x4ED872C: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,429 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED87A8: Create (Function.h:123)
==7929== by 0x4ED87A8: init_julia_llvm_env (codegen.cpp:5520)
==7929== by 0x4ED87A8: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,430 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED882E: Create (Function.h:123)
==7929== by 0x4ED882E: init_julia_llvm_env (codegen.cpp:5526)
==7929== by 0x4ED882E: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,431 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED889E: Create (Function.h:123)
==7929== by 0x4ED889E: init_julia_llvm_env (codegen.cpp:5531)
==7929== by 0x4ED889E: jl_init_codegen (codegen.cpp:5757)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,432 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED8E08: Create (Function.h:123)
==7929== by 0x4ED8E08: boxfunc_llvm<_jl_value_t*(signed char)> (intrinsics.cpp:1562)
==7929== by 0x4ED8E08: jl_init_codegen (codegen.cpp:5774)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,433 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED8EA4: Create (Function.h:123)
==7929== by 0x4ED8EA4: boxfunc_llvm<_jl_value_t*(unsigned char)> (intrinsics.cpp:1562)
==7929== by 0x4ED8EA4: jl_init_codegen (codegen.cpp:5774)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,434 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED8F52: Create (Function.h:123)
==7929== by 0x4ED8F52: boxfunc_llvm<_jl_value_t*(short int)> (intrinsics.cpp:1562)
==7929== by 0x4ED8F52: jl_init_codegen (codegen.cpp:5775)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,435 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED8FEE: Create (Function.h:123)
==7929== by 0x4ED8FEE: boxfunc_llvm<_jl_value_t*(short unsigned int)> (intrinsics.cpp:1562)
==7929== by 0x4ED8FEE: jl_init_codegen (codegen.cpp:5775)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,436 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED909C: Create (Function.h:123)
==7929== by 0x4ED909C: boxfunc_llvm<_jl_value_t*(int)> (intrinsics.cpp:1562)
==7929== by 0x4ED909C: jl_init_codegen (codegen.cpp:5776)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,437 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED9138: Create (Function.h:123)
==7929== by 0x4ED9138: boxfunc_llvm<_jl_value_t*(unsigned int)> (intrinsics.cpp:1562)
==7929== by 0x4ED9138: jl_init_codegen (codegen.cpp:5776)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,438 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED91E6: Create (Function.h:123)
==7929== by 0x4ED91E6: boxfunc_llvm<_jl_value_t*(long int)> (intrinsics.cpp:1562)
==7929== by 0x4ED91E6: jl_init_codegen (codegen.cpp:5777)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,439 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED9282: Create (Function.h:123)
==7929== by 0x4ED9282: boxfunc_llvm<_jl_value_t*(long unsigned int)> (intrinsics.cpp:1562)
==7929== by 0x4ED9282: jl_init_codegen (codegen.cpp:5777)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,440 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED9330: Create (Function.h:123)
==7929== by 0x4ED9330: boxfunc_llvm<_jl_value_t*(float)> (intrinsics.cpp:1562)
==7929== by 0x4ED9330: jl_init_codegen (codegen.cpp:5778)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,441 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED93CC: Create (Function.h:123)
==7929== by 0x4ED93CC: boxfunc_llvm<_jl_value_t*(double)> (intrinsics.cpp:1562)
==7929== by 0x4ED93CC: jl_init_codegen (codegen.cpp:5778)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,442 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED9461: Create (Function.h:123)
==7929== by 0x4ED9461: boxfunc_llvm<_jl_value_t*(unsigned int)> (intrinsics.cpp:1562)
==7929== by 0x4ED9461: jl_init_codegen (codegen.cpp:5779)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,443 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED94FD: Create (Function.h:123)
==7929== by 0x4ED94FD: boxfunc_llvm<_jl_value_t*(long unsigned int)> (intrinsics.cpp:1562)
==7929== by 0x4ED94FD: jl_init_codegen (codegen.cpp:5780)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,444 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED95AE: Create (Function.h:123)
==7929== by 0x4ED95AE: boxfunc_llvm<_jl_value_t*(_jl_datatype_t*, signed char)> (intrinsics.cpp:1562)
==7929== by 0x4ED95AE: jl_init_codegen (codegen.cpp:5782)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,445 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED9646: Create (Function.h:123)
==7929== by 0x4ED9646: boxfunc_llvm<_jl_value_t*(_jl_datatype_t*, short int)> (intrinsics.cpp:1562)
==7929== by 0x4ED9646: jl_init_codegen (codegen.cpp:5784)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,446 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED96DE: Create (Function.h:123)
==7929== by 0x4ED96DE: boxfunc_llvm<_jl_value_t*(_jl_datatype_t*, int)> (intrinsics.cpp:1562)
==7929== by 0x4ED96DE: jl_init_codegen (codegen.cpp:5786)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,447 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED9776: Create (Function.h:123)
==7929== by 0x4ED9776: boxfunc_llvm<_jl_value_t*(_jl_datatype_t*, long int)> (intrinsics.cpp:1562)
==7929== by 0x4ED9776: jl_init_codegen (codegen.cpp:5788)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,448 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECE51C: Create (Function.h:123)
==7929== by 0x4ECE51C: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:36)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,449 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECE5A3: Create (Function.h:123)
==7929== by 0x4ECE5A3: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,450 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECE61C: Create (Function.h:123)
==7929== by 0x4ECE61C: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,451 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECE695: Create (Function.h:123)
==7929== by 0x4ECE695: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,452 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECE70E: Create (Function.h:123)
==7929== by 0x4ECE70E: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,453 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECE787: Create (Function.h:123)
==7929== by 0x4ECE787: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,454 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECE800: Create (Function.h:123)
==7929== by 0x4ECE800: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,455 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECE879: Create (Function.h:123)
==7929== by 0x4ECE879: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,456 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECE8F2: Create (Function.h:123)
==7929== by 0x4ECE8F2: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,457 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECE96B: Create (Function.h:123)
==7929== by 0x4ECE96B: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,458 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECE9E4: Create (Function.h:123)
==7929== by 0x4ECE9E4: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,459 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECEA5D: Create (Function.h:123)
==7929== by 0x4ECEA5D: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,460 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECEAD6: Create (Function.h:123)
==7929== by 0x4ECEAD6: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,461 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECEB4F: Create (Function.h:123)
==7929== by 0x4ECEB4F: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,462 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECEBC8: Create (Function.h:123)
==7929== by 0x4ECEBC8: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,463 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECEC3B: Create (Function.h:123)
==7929== by 0x4ECEC3B: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,464 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECECAE: Create (Function.h:123)
==7929== by 0x4ECECAE: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,465 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECED54: Create (Function.h:123)
==7929== by 0x4ECED54: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,466 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECEDCD: Create (Function.h:123)
==7929== by 0x4ECEDCD: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,467 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECEE46: Create (Function.h:123)
==7929== by 0x4ECEE46: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,468 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECEEBF: Create (Function.h:123)
==7929== by 0x4ECEEBF: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,469 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECEF38: Create (Function.h:123)
==7929== by 0x4ECEF38: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,470 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECEFB1: Create (Function.h:123)
==7929== by 0x4ECEFB1: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,471 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF02A: Create (Function.h:123)
==7929== by 0x4ECF02A: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,472 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF0A3: Create (Function.h:123)
==7929== by 0x4ECF0A3: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,473 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF11C: Create (Function.h:123)
==7929== by 0x4ECF11C: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,474 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF195: Create (Function.h:123)
==7929== by 0x4ECF195: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,475 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF22C: Create (Function.h:123)
==7929== by 0x4ECF22C: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,476 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF2A5: Create (Function.h:123)
==7929== by 0x4ECF2A5: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,477 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF31E: Create (Function.h:123)
==7929== by 0x4ECF31E: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,478 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF397: Create (Function.h:123)
==7929== by 0x4ECF397: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,479 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF410: Create (Function.h:123)
==7929== by 0x4ECF410: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,480 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF489: Create (Function.h:123)
==7929== by 0x4ECF489: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,481 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF502: Create (Function.h:123)
==7929== by 0x4ECF502: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,482 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF57B: Create (Function.h:123)
==7929== by 0x4ECF57B: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,483 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF5F4: Create (Function.h:123)
==7929== by 0x4ECF5F4: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,484 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF66D: Create (Function.h:123)
==7929== by 0x4ECF66D: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,485 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF6E6: Create (Function.h:123)
==7929== by 0x4ECF6E6: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,486 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF75F: Create (Function.h:123)
==7929== by 0x4ECF75F: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,487 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF7D8: Create (Function.h:123)
==7929== by 0x4ECF7D8: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,488 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF851: Create (Function.h:123)
==7929== by 0x4ECF851: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,489 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF8CA: Create (Function.h:123)
==7929== by 0x4ECF8CA: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,490 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF943: Create (Function.h:123)
==7929== by 0x4ECF943: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,491 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECF9BC: Create (Function.h:123)
==7929== by 0x4ECF9BC: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,492 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECFA35: Create (Function.h:123)
==7929== by 0x4ECFA35: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,493 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECFAAE: Create (Function.h:123)
==7929== by 0x4ECFAAE: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,494 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECFB27: Create (Function.h:123)
==7929== by 0x4ECFB27: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,495 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECFBA0: Create (Function.h:123)
==7929== by 0x4ECFBA0: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,496 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECFC19: Create (Function.h:123)
==7929== by 0x4ECFC19: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,497 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECFC92: Create (Function.h:123)
==7929== by 0x4ECFC92: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,498 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECFD0B: Create (Function.h:123)
==7929== by 0x4ECFD0B: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,499 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECFD84: Create (Function.h:123)
==7929== by 0x4ECFD84: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,500 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECFDFD: Create (Function.h:123)
==7929== by 0x4ECFDFD: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,501 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECFE76: Create (Function.h:123)
==7929== by 0x4ECFE76: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,502 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECFEEF: Create (Function.h:123)
==7929== by 0x4ECFEEF: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,503 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECFF68: Create (Function.h:123)
==7929== by 0x4ECFF68: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,504 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECFFE1: Create (Function.h:123)
==7929== by 0x4ECFFE1: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,505 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED005A: Create (Function.h:123)
==7929== by 0x4ED005A: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,506 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED00D3: Create (Function.h:123)
==7929== by 0x4ED00D3: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,507 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED014C: Create (Function.h:123)
==7929== by 0x4ED014C: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,508 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED01C5: Create (Function.h:123)
==7929== by 0x4ED01C5: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,509 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED023E: Create (Function.h:123)
==7929== by 0x4ED023E: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,510 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED02B7: Create (Function.h:123)
==7929== by 0x4ED02B7: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,511 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED0330: Create (Function.h:123)
==7929== by 0x4ED0330: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,512 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED03A9: Create (Function.h:123)
==7929== by 0x4ED03A9: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,513 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED0422: Create (Function.h:123)
==7929== by 0x4ED0422: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,514 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED049B: Create (Function.h:123)
==7929== by 0x4ED049B: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,515 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED050E: Create (Function.h:123)
==7929== by 0x4ED050E: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,516 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED0587: Create (Function.h:123)
==7929== by 0x4ED0587: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,517 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED0600: Create (Function.h:123)
==7929== by 0x4ED0600: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,518 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED0679: Create (Function.h:123)
==7929== by 0x4ED0679: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,519 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED06F2: Create (Function.h:123)
==7929== by 0x4ED06F2: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,520 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED076B: Create (Function.h:123)
==7929== by 0x4ED076B: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,521 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED07E4: Create (Function.h:123)
==7929== by 0x4ED07E4: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,522 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED0865: Create (Function.h:123)
==7929== by 0x4ED0865: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,523 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED08D8: Create (Function.h:123)
==7929== by 0x4ED08D8: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,524 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED0951: Create (Function.h:123)
==7929== by 0x4ED0951: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,525 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED09CA: Create (Function.h:123)
==7929== by 0x4ED09CA: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,526 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED0A43: Create (Function.h:123)
==7929== by 0x4ED0A43: jl_init_intrinsic_functions_codegen(llvm::Module*) (intrinsics.cpp:37)
==7929== by 0x4ED97A6: jl_init_codegen (codegen.cpp:5790)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,527 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x903698A: julia___init___24807 (cholmod.jl:134)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929== by 0x4E8D7E6: _julia_init (init.c:742)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,528 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x903698A: julia___init___24807 (cholmod.jl:134)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929== by 0x4E8D7E6: _julia_init (init.c:742)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,529 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x903698A: julia___init___24807 (cholmod.jl:134)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,530 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x903698A: julia___init___24807 (cholmod.jl:134)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,531 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x90369B2: julia___init___24807 (cholmod.jl:134)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929== by 0x4E8D7E6: _julia_init (init.c:742)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,532 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x90369B2: julia___init___24807 (cholmod.jl:134)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929== by 0x4E8D7E6: _julia_init (init.c:742)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,533 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x90369B2: julia___init___24807 (cholmod.jl:134)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,534 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x90369B2: julia___init___24807 (cholmod.jl:134)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,535 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x90369B2: julia___init___24807 (cholmod.jl:134)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,536 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x9036DC2: julia___init___24807 (cholmod.jl:150)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929== by 0x4E8D7E6: _julia_init (init.c:742)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,537 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x9036DC2: julia___init___24807 (cholmod.jl:150)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929== by 0x4E8D7E6: _julia_init (init.c:742)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,538 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x9036DC2: julia___init___24807 (cholmod.jl:150)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,539 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x9036DC2: julia___init___24807 (cholmod.jl:150)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,540 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAB91: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4060)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x9037226: julia_reinit_displays_24874 (multimedia.jl:138)
==7929== by 0x903A329: julia___init___24871 (sysimg.jl:366)
==7929== by 0x903A397: jlcall___init___24871 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,541 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x9037226: julia_reinit_displays_24874 (multimedia.jl:138)
==7929== by 0x903A329: julia___init___24871 (sysimg.jl:366)
==7929== by 0x903A397: jlcall___init___24871 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,542 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x9037226: julia_reinit_displays_24874 (multimedia.jl:138)
==7929== by 0x903A329: julia___init___24871 (sysimg.jl:366)
==7929== by 0x903A397: jlcall___init___24871 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,543 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929== by 0x4E95C8C: jl_init_restored_modules (dump.c:1994)
==7929== by 0x4E95C8C: _jl_restore_incremental.part.18 (dump.c:2560)
==7929== by 0x4E9AC74: _jl_restore_incremental (dump.c:2498)
==7929== by 0x4E9AC74: jl_restore_incremental (dump.c:2580)
==7929== by 0x8FC0689: julia__include_from_serialized_22473 (loading.jl:150)
==7929== by 0x8FC0B93: julia__require_from_serialized_22439 (loading.jl:187)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,544 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929== by 0x4E95C8C: jl_init_restored_modules (dump.c:1994)
==7929== by 0x4E95C8C: _jl_restore_incremental.part.18 (dump.c:2560)
==7929== by 0x4E9AC74: _jl_restore_incremental (dump.c:2498)
==7929== by 0x4E9AC74: jl_restore_incremental (dump.c:2580)
==7929== by 0x8FC0689: julia__include_from_serialized_22473 (loading.jl:150)
==7929== by 0x8FC0B93: julia__require_from_serialized_22439 (loading.jl:187)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,545 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929== by 0x4E95C8C: jl_init_restored_modules (dump.c:1994)
==7929== by 0x4E95C8C: _jl_restore_incremental.part.18 (dump.c:2560)
==7929== by 0x4E9AC74: _jl_restore_incremental (dump.c:2498)
==7929== by 0x4E9AC74: jl_restore_incremental (dump.c:2580)
==7929== by 0x8FC0689: julia__include_from_serialized_22473 (loading.jl:150)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,546 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAB91: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4060)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC5C333: ???
==7929== by 0x1DC5C4BF: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929== by 0x4E95C8C: jl_init_restored_modules (dump.c:1994)
==7929== by 0x4E95C8C: _jl_restore_incremental.part.18 (dump.c:2560)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,547 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC5C333: ???
==7929== by 0x1DC5C4BF: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,548 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC5C333: ???
==7929== by 0x1DC5C4BF: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,549 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAB91: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4060)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7E40B: jl_apply_2va (builtins.c:430)
==7929== by 0x1DC5C52C: ???
==7929== by 0x1DC5C333: ???
==7929== by 0x1DC5C4BF: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,550 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7E40B: jl_apply_2va (builtins.c:430)
==7929== by 0x1DC5C52C: ???
==7929== by 0x1DC5C333: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,551 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAB91: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4060)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC5C5BF: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7E40B: jl_apply_2va (builtins.c:430)
==7929== by 0x1DC5C52C: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,552 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAB91: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4060)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E79F97: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E79F97: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,553 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E79F97: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E79F97: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,554 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CA86: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,555 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CA86: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,556 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECDCB3: julia_type_to_di(_jl_value_t*, llvm::DIBuilder*, bool) [clone .part.917] (cgutils.cpp:165)
==7929== by 0x4EFD62D: julia_type_to_di (codegen.cpp:4168)
==7929== by 0x4EFD62D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4170)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CA86: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,557 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CA86: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,558 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAB91: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4060)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC5CB05: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,559 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CB5A: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,560 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CB5A: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,561 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE45E: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4650)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CB5A: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,562 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CB5A: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,563 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CBB9: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,564 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CBB9: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,565 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE45E: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4650)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CBB9: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,566 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CBB9: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,567 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CCEA: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,568 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CCEA: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,569 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CCEA: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,570 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CD87: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,571 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CD87: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,572 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CD87: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,573 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CD87: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,574 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CD87: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,575 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CD87: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,576 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5CD87: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,577 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5D74F: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,578 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5D74F: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,579 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5D74F: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,580 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5E6FD: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,581 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5E6FD: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,582 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5E6FD: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,583 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5E6FD: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,584 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F6FC: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,585 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F6FC: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,586 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F6FC: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,587 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6555F: ???
==7929== by 0x1DC655B6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F6FC: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,588 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6555F: ???
==7929== by 0x1DC655B6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F6FC: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,589 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC65582: ???
==7929== by 0x1DC655B6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F6FC: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,590 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC65582: ???
==7929== by 0x1DC655B6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F6FC: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,591 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6555F: ???
==7929== by 0x1DC655B6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F7A1: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,592 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6555F: ???
==7929== by 0x1DC655B6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F7A1: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,593 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC65582: ???
==7929== by 0x1DC655B6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F7A1: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,594 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC65582: ???
==7929== by 0x1DC655B6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F7A1: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,595 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F813: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,596 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC5F813: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,597 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC60772: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,598 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC60772: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,599 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE18D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4609)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC60772: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,600 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC607E6: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,601 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC607E6: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,602 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6151D: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,603 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6151D: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,604 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6151D: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,605 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC66B6A: ???
==7929== by 0x1DC66BB6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6151D: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,606 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE18D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4609)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,607 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8E7BEC1: julia_typeinf_edge_1076 (inference.jl:1547)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x8E4C6DC: julia_typeinf_ext_0 (inference.jl:1616)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E716C5: jl_apply (julia.h:1392)
==7929== by 0x4E716C5: jl_type_infer (gf.c:210)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,608 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8E7BEC1: julia_typeinf_edge_1076 (inference.jl:1547)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x8E4C6DC: julia_typeinf_ext_0 (inference.jl:1616)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E716C5: jl_apply (julia.h:1392)
==7929== by 0x4E716C5: jl_type_infer (gf.c:210)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,609 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8E7BEC1: julia_typeinf_edge_1076 (inference.jl:1547)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x8E4C6DC: julia_typeinf_ext_0 (inference.jl:1616)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,610 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8E7BEC1: julia_typeinf_edge_1076 (inference.jl:1547)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x8E4C6DC: julia_typeinf_ext_0 (inference.jl:1616)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,611 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,612 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,613 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE18D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4609)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,614 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF95B7: emit_jlcall(llvm::Value*, llvm::Value*, _jl_value_t**, unsigned long, jl_codectx_t*) (codegen.cpp:2578)
==7929== by 0x4EECA12: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2739)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929== by 0x4EF95B7: emit_jlcall(llvm::Value*, llvm::Value*, _jl_value_t**, unsigned long, jl_codectx_t*) (codegen.cpp:2578)
==7929== by 0x4EECA12: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2739)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,615 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF95B7: emit_jlcall(llvm::Value*, llvm::Value*, _jl_value_t**, unsigned long, jl_codectx_t*) (codegen.cpp:2578)
==7929== by 0x4EECA12: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2739)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929== by 0x4EF95B7: emit_jlcall(llvm::Value*, llvm::Value*, _jl_value_t**, unsigned long, jl_codectx_t*) (codegen.cpp:2578)
==7929== by 0x4EECA12: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2739)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,616 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE45E: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4650)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF95B7: emit_jlcall(llvm::Value*, llvm::Value*, _jl_value_t**, unsigned long, jl_codectx_t*) (codegen.cpp:2578)
==7929== by 0x4EECA12: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2739)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929== by 0x4EF95B7: emit_jlcall(llvm::Value*, llvm::Value*, _jl_value_t**, unsigned long, jl_codectx_t*) (codegen.cpp:2578)
==7929== by 0x4EECA12: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2739)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,617 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF95B7: emit_jlcall(llvm::Value*, llvm::Value*, _jl_value_t**, unsigned long, jl_codectx_t*) (codegen.cpp:2578)
==7929== by 0x4EECA12: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2739)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929== by 0x4EF95B7: emit_jlcall(llvm::Value*, llvm::Value*, _jl_value_t**, unsigned long, jl_codectx_t*) (codegen.cpp:2578)
==7929== by 0x4EECA12: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2739)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,618 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC66B6A: ???
==7929== by 0x1DC66BB6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6151D: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,619 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAB91: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4060)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC67A0D: ???
==7929== by 0x1DC67F2A: ???
==7929== by 0x1DC66B6A: ???
==7929== by 0x1DC66BB6: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,620 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC67A0D: ???
==7929== by 0x1DC67F2A: ???
==7929== by 0x1DC66B6A: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,621 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE45E: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4650)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC67A0D: ???
==7929== by 0x1DC67F2A: ???
==7929== by 0x1DC66B6A: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,622 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC67A0D: ???
==7929== by 0x1DC67F2A: ???
==7929== by 0x1DC66B6A: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,623 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6923C: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC67A0D: ???
==7929== by 0x1DC67F2A: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,624 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6923C: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC67A0D: ???
==7929== by 0x1DC67F2A: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,625 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6923C: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC67A0D: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,626 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6923C: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC67A0D: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,627 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69254: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC67A0D: ???
==7929== by 0x1DC67F2A: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,628 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69254: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x1DC67A0D: ???
==7929== by 0x1DC67F2A: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,629 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECDCB3: julia_type_to_di(_jl_value_t*, llvm::DIBuilder*, bool) [clone .part.917] (cgutils.cpp:165)
==7929== by 0x4EFD62D: julia_type_to_di (codegen.cpp:4168)
==7929== by 0x4EFD62D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4170)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69254: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,630 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69254: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,631 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,632 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,633 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECDCB3: julia_type_to_di(_jl_value_t*, llvm::DIBuilder*, bool) [clone .part.917] (cgutils.cpp:165)
==7929== by 0x4EFD62D: julia_type_to_di (codegen.cpp:4168)
==7929== by 0x4EFD62D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4170)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,634 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,635 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,636 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6997D: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,637 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6997D: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,638 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6997D: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,639 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC699A7: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,640 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC699A7: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,641 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC699CB: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,642 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC699CB: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,643 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69A10: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,644 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69A10: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,645 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69A10: ???
==7929== by 0x1DC69A46: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61908: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,646 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69D5E: ???
==7929== by 0x1DC69FC6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69A10: ???
==7929== by 0x1DC69A46: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,647 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE45E: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4650)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69D5E: ???
==7929== by 0x1DC69FC6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69A10: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,648 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69D5E: ???
==7929== by 0x1DC69FC6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69A10: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,649 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69D5E: ???
==7929== by 0x1DC69FC6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69A10: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,650 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69EAE: ???
==7929== by 0x1DC69FC6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69A10: ???
==7929== by 0x1DC69A46: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,651 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69EAE: ???
==7929== by 0x1DC69FC6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69A10: ???
==7929== by 0x1DC69A46: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,652 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69F4A: ???
==7929== by 0x1DC69FC6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69A10: ???
==7929== by 0x1DC69A46: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,653 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69F4A: ???
==7929== by 0x1DC69FC6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69A10: ???
==7929== by 0x1DC69A46: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,654 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69F4A: ???
==7929== by 0x1DC69FC6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC69A10: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,655 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61AFB: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,656 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61AFB: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,657 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE18D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4609)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61AFB: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929== by 0x4F2C677: fl_map1 (flisp.c:2220)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,658 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE45E: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4650)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61AFB: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,659 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61AFB: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,660 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC61AFB: ???
==7929== by 0x4E79F2B: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E79F2B: fl_invoke_julia_macro (ast.c:161)
==7929== by 0x4F2A942: apply_cl (flisp.c:1227)
==7929== by 0x4F2BD6D: _applyn (flisp.c:683)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,661 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAB91: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4060)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8591D: do_call (interpreter.c:66)
==7929== by 0x4E84A1D: eval (interpreter.c:190)
==7929== by 0x4E85903: do_call (interpreter.c:65)
==7929== by 0x4E84A1D: eval (interpreter.c:190)
==7929== by 0x4EA0297: jl_toplevel_eval_flex (toplevel.c:558)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,662 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8591D: do_call (interpreter.c:66)
==7929== by 0x4E84A1D: eval (interpreter.c:190)
==7929== by 0x4E85903: do_call (interpreter.c:65)
==7929== by 0x4E84A1D: eval (interpreter.c:190)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,663 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8591D: do_call (interpreter.c:66)
==7929== by 0x4E84A1D: eval (interpreter.c:190)
==7929== by 0x4E85903: do_call (interpreter.c:65)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,664 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAB91: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4060)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8E6A6DD: julia_inlining_pass_839 (inference.jl:3006)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929== by 0x8E6C2D6: jlcall_inlining_pass_839 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,665 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8E6A6DD: julia_inlining_pass_839 (inference.jl:3006)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,666 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E89D8F: jl_call_staged (alloc.c:434)
==7929== by 0x4E89D8F: jl_instantiate_staged (alloc.c:477)
==7929== by 0x4E6DED1: jl_specializations_get_linfo (gf.c:129)
==7929== by 0x8E65EA5: specialize_method; (inference.jl:1442)
==7929== by 0x8E65EA5: julia_typeinf_edge_743 (inference.jl:1542)
==7929== by 0x8E661CA: jlcall_typeinf_edge_743 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x8E649D7: julia_typeinf_edge_741 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,667 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6ACFD: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929== by 0x4E6DED1: jl_specializations_get_linfo (gf.c:129)
==7929== by 0x8E65EA5: specialize_method; (inference.jl:1442)
==7929== by 0x8E65EA5: julia_typeinf_edge_743 (inference.jl:1542)
==7929== by 0x8E661CA: jlcall_typeinf_edge_743 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,668 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6ACFD: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929== by 0x4E6DED1: jl_specializations_get_linfo (gf.c:129)
==7929== by 0x8E65EA5: specialize_method; (inference.jl:1442)
==7929== by 0x8E65EA5: julia_typeinf_edge_743 (inference.jl:1542)
==7929== by 0x8E661CA: jlcall_typeinf_edge_743 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,669 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6ACFD: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,670 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6ACFD: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,671 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6ACFD: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,672 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6ACFD: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,673 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6ACFD: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,674 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6B4C9: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,675 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6B4C9: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,676 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6B4C9: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,677 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6B4C9: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,678 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6B4C9: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,679 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6BAB9: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,680 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6BAB9: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,681 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6BAB9: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,682 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6BAB9: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,683 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C129: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,684 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C129: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,685 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C129: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,686 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C129: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,687 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C129: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,688 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C948: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929== by 0x4E6DED1: jl_specializations_get_linfo (gf.c:129)
==7929== by 0x8E65EA5: specialize_method; (inference.jl:1442)
==7929== by 0x8E65EA5: julia_typeinf_edge_743 (inference.jl:1542)
==7929== by 0x8E661CA: jlcall_typeinf_edge_743 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,689 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C948: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929== by 0x4E6DED1: jl_specializations_get_linfo (gf.c:129)
==7929== by 0x8E65EA5: specialize_method; (inference.jl:1442)
==7929== by 0x8E65EA5: julia_typeinf_edge_743 (inference.jl:1542)
==7929== by 0x8E661CA: jlcall_typeinf_edge_743 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,690 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C948: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929== by 0x4E6DED1: jl_specializations_get_linfo (gf.c:129)
==7929== by 0x8E65EA5: specialize_method; (inference.jl:1442)
==7929== by 0x8E65EA5: julia_typeinf_edge_743 (inference.jl:1542)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,691 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C95F: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929== by 0x4E6DED1: jl_specializations_get_linfo (gf.c:129)
==7929== by 0x8E65EA5: specialize_method; (inference.jl:1442)
==7929== by 0x8E65EA5: julia_typeinf_edge_743 (inference.jl:1542)
==7929== by 0x8E661CA: jlcall_typeinf_edge_743 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,692 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C95F: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929== by 0x4E6DED1: jl_specializations_get_linfo (gf.c:129)
==7929== by 0x8E65EA5: specialize_method; (inference.jl:1442)
==7929== by 0x8E65EA5: julia_typeinf_edge_743 (inference.jl:1542)
==7929== by 0x8E661CA: jlcall_typeinf_edge_743 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,693 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECDCB3: julia_type_to_di(_jl_value_t*, llvm::DIBuilder*, bool) [clone .part.917] (cgutils.cpp:165)
==7929== by 0x4EFD62D: julia_type_to_di (codegen.cpp:4168)
==7929== by 0x4EFD62D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4170)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C95F: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929== by 0x4E6DED1: jl_specializations_get_linfo (gf.c:129)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,694 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C95F: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,695 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C95F: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,696 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE45E: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4650)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C95F: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,697 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6C95F: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,698 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6D0E9: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,699 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6D0E9: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,700 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AECB: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6D0E9: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,701 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6D0E9: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,702 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6AEE1: ???
==7929== by 0x1DC6B019: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6D0E9: ???
==7929== by 0x4E89D82: jl_call_staged (alloc.c:441)
==7929== by 0x4E89D82: jl_instantiate_staged (alloc.c:477)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,703 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E7D04B: jl_apply (julia.h:1392)
==7929== by 0x4E7D04B: jl_f__apply (builtins.c:547)
==7929== by 0x8E612D4: julia_pure_eval_call_640 (inference.jl:1007)
==7929== by 0x8E618FE: jlcall_pure_eval_call_640 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,704 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAB91: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4060)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8EA6734: julia_eltype_3051 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x8EA675B: jlcall_eltype_3051 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x8EA6734: julia_eltype_3051 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x8EA675B: jlcall_eltype_3051 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,705 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAB91: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4060)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8E6A6DD: julia_inlining_pass_839 (inference.jl:3006)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929== by 0x8E6C2D6: jlcall_inlining_pass_839 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x8E5303E: julia_inlining_pass!_346 (inference.jl:2851)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,706 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECDCB3: julia_type_to_di(_jl_value_t*, llvm::DIBuilder*, bool) [clone .part.917] (cgutils.cpp:165)
==7929== by 0x4EFAE9B: julia_type_to_di (codegen.cpp:4231)
==7929== by 0x4EFAE9B: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4231)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8E6A6DD: julia_inlining_pass_839 (inference.jl:3006)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929== by 0x8E6C2D6: jlcall_inlining_pass_839 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,707 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAB91: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4060)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8E6A6DD: julia_inlining_pass_839 (inference.jl:3006)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929== by 0x8E694AC: julia_inlining_pass_839 (inference.jl:2909)
==7929== by 0x8E6C2D6: jlcall_inlining_pass_839 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,708 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8591D: do_call (interpreter.c:66)
==7929== by 0x4E84A1D: eval (interpreter.c:190)
==7929== by 0x4EA0297: jl_toplevel_eval_flex (toplevel.c:558)
==7929== by 0x4E7A94D: jl_parse_eval_all (ast.c:717)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,709 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8591D: do_call (interpreter.c:66)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,710 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8591D: do_call (interpreter.c:66)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,711 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,712 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,713 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6DA6B: ???
==7929== by 0x1DC6EDF6: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,714 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6DA6B: ???
==7929== by 0x1DC6EDF6: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,715 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE18D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4609)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,716 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE18D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4609)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6DA6B: ???
==7929== by 0x1DC6EDF6: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,717 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6DA6B: ???
==7929== by 0x1DC6EDF6: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,718 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC6FC6E: ???
==7929== by 0x1DC6FCBD: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6DA6B: ???
==7929== by 0x1DC6EDF6: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,719 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC6FC6E: ???
==7929== by 0x1DC6FCBD: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6DA6B: ???
==7929== by 0x1DC6EDF6: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,720 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE45E: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4650)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC6FC6E: ???
==7929== by 0x1DC6FCBD: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC6DA6B: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,721 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF495D: emit_new_struct(_jl_value_t*, unsigned long, _jl_value_t**, jl_codectx_t*) (cgutils.cpp:1751)
==7929== by 0x4EEE625: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3241)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,722 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF495D: emit_new_struct(_jl_value_t*, unsigned long, _jl_value_t**, jl_codectx_t*) (cgutils.cpp:1751)
==7929== by 0x4EEE625: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3241)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,723 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF495D: emit_new_struct(_jl_value_t*, unsigned long, _jl_value_t**, jl_codectx_t*) (cgutils.cpp:1751)
==7929== by 0x4EEE625: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3241)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,724 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8591D: do_call (interpreter.c:66)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,725 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,726 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,727 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,728 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,729 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929== by 0x1DC70EC0: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,730 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929== by 0x1DC70EC0: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,731 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC758A3: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929== by 0x1DC70EC0: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,732 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE45E: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4650)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC758A3: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,733 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC758A3: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,734 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC758F3: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929== by 0x1DC70EC0: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,735 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC758F3: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929== by 0x1DC70EC0: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,736 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC758F3: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,737 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC7596C: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929== by 0x1DC70EC0: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,738 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC7596C: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929== by 0x1DC70EC0: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,739 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC7596C: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,740 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC759BC: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929== by 0x1DC70EC0: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,741 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC759BC: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929== by 0x1DC70EC0: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,742 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC759BC: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,743 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC75A58: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929== by 0x1DC70EC0: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,744 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC75A58: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929== by 0x1DC70EC0: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,745 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC75A58: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,746 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC75C04: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929== by 0x1DC70EC0: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,747 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC75C04: ???
==7929== by 0x1DC75C70: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC726FD: ???
==7929== by 0x1DC70EC0: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,748 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929== by 0x1DC70F4A: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,749 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929== by 0x1DC70F4A: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,750 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929== by 0x1DC70F4A: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,751 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929== by 0x1DC70F4A: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,752 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,753 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,754 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAB91: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4060)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,755 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE18D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4609)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929== by 0x1DC70F4A: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,756 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEC88A: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2750)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,757 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEC88A: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2750)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,758 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEC88A: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2750)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,759 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEC88A: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2750)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,760 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEC88A: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2750)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,761 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECDCB3: julia_type_to_di(_jl_value_t*, llvm::DIBuilder*, bool) [clone .part.917] (cgutils.cpp:165)
==7929== by 0x4EFD62D: julia_type_to_di (codegen.cpp:4168)
==7929== by 0x4EFD62D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4170)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEC88A: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2750)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,762 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEC88A: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2750)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,763 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEC88A: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2750)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,764 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEC88A: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2750)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,765 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEC88A: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2750)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,766 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,767 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE18D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4609)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929== by 0x1DC70F4A: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,768 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,769 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,770 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE18D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4609)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,771 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAB91: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4060)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,772 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE18D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4609)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,773 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEC88A: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2750)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,774 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAB91: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4060)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,775 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECDCB3: julia_type_to_di(_jl_value_t*, llvm::DIBuilder*, bool) [clone .part.917] (cgutils.cpp:165)
==7929== by 0x4ECDC5F: julia_type_to_di (julia.h:690)
==7929== by 0x4ECDC5F: julia_type_to_di(_jl_value_t*, llvm::DIBuilder*, bool) [clone .part.917] (cgutils.cpp:164)
==7929== by 0x4EFAE9B: julia_type_to_di (codegen.cpp:4231)
==7929== by 0x4EFAE9B: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4231)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,776 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE18D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4609)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,777 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEC88A: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2750)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,778 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEC88A: emit_call(jl_expr_t*, jl_codectx_t*) (codegen.cpp:2750)
==7929== by 0x4EED6DD: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3172)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,779 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC774F4: ???
==7929== by 0x1DC762FB: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,780 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC774F4: ???
==7929== by 0x1DC762FB: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,781 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC774F4: ???
==7929== by 0x1DC762FB: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,782 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC774F4: ???
==7929== by 0x1DC762FB: ???
==7929== by 0x1DC77068: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,783 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC768E7: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929== by 0x1DC70F4A: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,784 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC768E7: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929== by 0x1DC70F4A: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,785 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC768E7: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,786 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,787 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAB91: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4060)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B314: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC768E7: ???
==7929== by 0x1DC77068: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,788 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8BC8B: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B314: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,789 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8BC8B: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B314: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,790 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8BC8B: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B314: ???
==7929== by 0x1DC8B392: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,791 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE18D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4609)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8BC8B: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B314: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,792 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE45E: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4650)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8BC8B: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B314: ???
==7929== by 0x1DC8B392: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,793 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8BC8B: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B314: ???
==7929== by 0x1DC8B392: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,794 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B4A0: ???
==7929== by 0x1DC8B35D: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC768E7: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,795 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B4A0: ???
==7929== by 0x1DC8B35D: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC768E7: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,796 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ECDCB3: julia_type_to_di(_jl_value_t*, llvm::DIBuilder*, bool) [clone .part.917] (cgutils.cpp:165)
==7929== by 0x4ECDC5F: julia_type_to_di (julia.h:690)
==7929== by 0x4ECDC5F: julia_type_to_di(_jl_value_t*, llvm::DIBuilder*, bool) [clone .part.917] (cgutils.cpp:164)
==7929== by 0x4EFD62D: julia_type_to_di (codegen.cpp:4168)
==7929== by 0x4EFD62D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4170)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B4A0: ???
==7929== by 0x1DC8B35D: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,797 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B4A0: ???
==7929== by 0x1DC8B35D: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,798 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B4C1: ???
==7929== by 0x1DC8B35D: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC768E7: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,799 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B4C1: ???
==7929== by 0x1DC8B35D: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC768E7: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,800 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B4C1: ???
==7929== by 0x1DC8B35D: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,801 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B4C1: ???
==7929== by 0x1DC8B35D: ???
==7929== by 0x1DC8B392: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,802 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B51A: ???
==7929== by 0x1DC8B35D: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC768E7: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,803 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B51A: ???
==7929== by 0x1DC8B35D: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC768E7: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,804 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8C360: ???
==7929== by 0x1DC8C0A2: ???
==7929== by 0x1DC8C0F6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B51A: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,805 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8C360: ???
==7929== by 0x1DC8C0A2: ???
==7929== by 0x1DC8C0F6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,806 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8C360: ???
==7929== by 0x1DC8C0A2: ???
==7929== by 0x1DC8C0F6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,807 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8C360: ???
==7929== by 0x1DC8C0A2: ???
==7929== by 0x1DC8C0F6: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,808 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8C50E: ???
==7929== by 0x1DC8C0A2: ???
==7929== by 0x1DC8C0F6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B51A: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,809 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8C50E: ???
==7929== by 0x1DC8C0A2: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,810 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8C50E: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,811 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8C360: ???
==7929== by 0x1DC8C0A2: ???
==7929== by 0x1DC8C0F6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B5CA: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,812 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8C50E: ???
==7929== by 0x1DC8C0A2: ???
==7929== by 0x1DC8C0F6: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B5CA: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,813 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8B5EB: ???
==7929== by 0x1DC8B35D: ???
==7929== by 0x1DC8B392: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC768E7: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,814 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC77C2F: ???
==7929== by 0x1DC7692B: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,815 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC76B8F: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929== by 0x1DC70F4A: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,816 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC76B8F: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,817 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF9B02: emit_call_function_object(_jl_lambda_info_t*, jl_cgval_t const&, llvm::Value*, _jl_value_t**, unsigned long, _jl_value_t*, jl_codectx_t*) (codegen.cpp:2631)
==7929== by 0x4EEE50C: emit_invoke (codegen.cpp:2690)
==7929== by 0x4EEE50C: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,818 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF9B02: emit_call_function_object(_jl_lambda_info_t*, jl_cgval_t const&, llvm::Value*, _jl_value_t**, unsigned long, _jl_value_t*, jl_codectx_t*) (codegen.cpp:2631)
==7929== by 0x4EEE50C: emit_invoke (codegen.cpp:2690)
==7929== by 0x4EEE50C: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,819 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF9B02: emit_call_function_object(_jl_lambda_info_t*, jl_cgval_t const&, llvm::Value*, _jl_value_t**, unsigned long, _jl_value_t*, jl_codectx_t*) (codegen.cpp:2631)
==7929== by 0x4EEE50C: emit_invoke (codegen.cpp:2690)
==7929== by 0x4EEE50C: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,820 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF9B02: emit_call_function_object(_jl_lambda_info_t*, jl_cgval_t const&, llvm::Value*, _jl_value_t**, unsigned long, _jl_value_t*, jl_codectx_t*) (codegen.cpp:2631)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,821 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EF9B02: emit_call_function_object(_jl_lambda_info_t*, jl_cgval_t const&, llvm::Value*, _jl_value_t**, unsigned long, _jl_value_t*, jl_codectx_t*) (codegen.cpp:2631)
==7929== by 0x4EEE50C: emit_invoke (codegen.cpp:2690)
==7929== by 0x4EEE50C: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EEE6C6: emit_assignment (codegen.cpp:2923)
==7929== by 0x4EEE6C6: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,822 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE18D: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4609)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC76B8F: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929== by 0x1DC70F4A: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,823 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8E243: ???
==7929== by 0x1DC8E58E: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC76B8F: ???
==7929== by 0x1DC77068: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,824 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE45E: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4650)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC8E243: ???
==7929== by 0x1DC8E58E: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC76B8F: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,825 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8FCE0: ???
==7929== by 0x1DC8FD56: ???
==7929== by 0x1DC8E243: ???
==7929== by 0x1DC8E58E: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,826 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8FCE0: ???
==7929== by 0x1DC8FD56: ???
==7929== by 0x1DC8E243: ???
==7929== by 0x1DC8E58E: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,827 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE45E: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4650)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC8FCE0: ???
==7929== by 0x1DC8FD56: ???
==7929== by 0x1DC8E243: ???
==7929== by 0x1DC8E58E: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,828 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC888F6: ???
==7929== by 0x1DC76B9E: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,829 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC888F6: ???
==7929== by 0x1DC76B9E: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,830 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC888F6: ???
==7929== by 0x1DC76B9E: ???
==7929== by 0x1DC77068: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,831 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC88DA6: ???
==7929== by 0x1DC76B9E: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,832 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC88DA6: ???
==7929== by 0x1DC76B9E: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,833 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC88DA6: ???
==7929== by 0x1DC76B9E: ???
==7929== by 0x1DC77068: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,834 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC89877: ???
==7929== by 0x1DC76BB7: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,835 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC89877: ???
==7929== by 0x1DC76BB7: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,836 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC89877: ???
==7929== by 0x1DC76BB7: ???
==7929== by 0x1DC77068: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,837 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC76CA8: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929== by 0x1DC70F4A: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,838 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6524580: llvm::DIBuilder::getOrCreateTypeArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD693: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4175)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC76CA8: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,839 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929== by 0x4EFBFD4: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4727)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,840 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE45E: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4650)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,841 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,842 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EFD2BB: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4691)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4EEE9E7: emit_invoke (codegen.cpp:2684)
==7929== by 0x4EEE9E7: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3162)
==7929== by 0x4EED811: emit_assignment (codegen.cpp:2977)
==7929== by 0x4EED811: emit_expr(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3185)
==7929== by 0x4EF9D56: emit_stmtpos(_jl_value_t*, jl_codectx_t*) (codegen.cpp:3064)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,843 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC76CA8: ???
==7929== by 0x1DC77068: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC72B8E: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,844 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC70F94: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,845 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC70F94: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,846 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE45E: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4650)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC70F94: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,847 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC70F94: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,848 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC70F94: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,849 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC70FB7: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,850 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC70FB7: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,851 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE45E: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4650)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC70FB7: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,852 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC70FB7: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,853 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC70FB7: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,854 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71003: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,855 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71003: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,856 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71003: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,857 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC716BA: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,858 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC716BA: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,859 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC716BA: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,860 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC716BA: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,861 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71841: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,862 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71841: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,863 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71841: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,864 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71841: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,865 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAB91: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4060)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71806: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,866 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71BB8: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,867 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE45E: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4650)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71BB8: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,868 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71BB8: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,869 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71BB8: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,870 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71BB8: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,871 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71C52: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,872 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71C52: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,873 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71C52: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,874 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA47: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4050)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71CB7: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,875 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71CB7: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929== by 0x1DC6D863: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,876 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x1DC71CB7: ???
==7929== by 0x1DC722CF: ???
==7929== by 0x1DC6F145: ???
==7929== by 0x1DC6D828: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,877 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE45E: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4650)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8591D: do_call (interpreter.c:66)
==7929== by 0x4E84A1D: eval (interpreter.c:190)
==7929== by 0x4EA0297: jl_toplevel_eval_flex (toplevel.c:558)
==7929== by 0x4E7A94D: jl_parse_eval_all (ast.c:717)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,878 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4EB2932: jl_apply (julia.h:1392)
==7929== by 0x4EB2932: run_finalizer (gc.c:108)
==7929== by 0x4EB2DFE: jl_gc_run_finalizers_in_list (gc.c:190)
==7929== by 0x4EB2DFE: run_finalizers (gc.c:211)
==7929== by 0x4EB7ECC: jl_gc_collect (gc.c:1872)
==7929== by 0x1DC9100F: ???
==7929== by 0x1DC9102F: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,879 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE45E: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4650)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4EB2932: jl_apply (julia.h:1392)
==7929== by 0x4EB2932: run_finalizer (gc.c:108)
==7929== by 0x4EB2DFE: jl_gc_run_finalizers_in_list (gc.c:190)
==7929== by 0x4EB2DFE: run_finalizers (gc.c:211)
==7929== by 0x4EB7ECC: jl_gc_collect (gc.c:1872)
==7929== by 0x1DC9100F: ???
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,880 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4EB2932: jl_apply (julia.h:1392)
==7929== by 0x4EB2932: run_finalizer (gc.c:108)
==7929== by 0x4EB2DFE: jl_gc_run_finalizers_in_list (gc.c:190)
==7929== by 0x4EB2DFE: run_finalizers (gc.c:211)
==7929== by 0x4EB7ECC: jl_gc_collect (gc.c:1872)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,881 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAB91: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4060)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x912AA04: julia_println_33060 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8591D: do_call (interpreter.c:66)
==7929== by 0x4E84A1D: eval (interpreter.c:190)
==7929== by 0x4EA0297: jl_toplevel_eval_flex (toplevel.c:558)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,882 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6534A83: llvm::DILocation::getImpl(llvm::LLVMContext&, unsigned int, unsigned int, llvm::Metadata*, llvm::Metadata*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x653D4A5: llvm::DebugLoc::get(unsigned int, unsigned int, llvm::MDNode const*, llvm::MDNode const*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFE45E: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4650)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x912AA04: julia_println_33060 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8591D: do_call (interpreter.c:66)
==7929== by 0x4E84A1D: eval (interpreter.c:190)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,883 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x912AA04: julia_println_33060 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8591D: do_call (interpreter.c:66)
==7929== by 0x4E84A1D: eval (interpreter.c:190)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,884 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x912AA04: julia_println_33060 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8591D: do_call (interpreter.c:66)
==7929== by 0x4E84A1D: eval (interpreter.c:190)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,885 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x658AB1A: llvm::Function::Function(llvm::FunctionType*, llvm::GlobalValue::LinkageTypes, llvm::Twine const&, llvm::Module*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBE2D2: Create (Function.h:123)
==7929== by 0x4EBE2D2: function_proto(llvm::Function*, llvm::Module*) (jitlayers.h:95)
==7929== by 0x4EFAA5C: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4051)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC91307: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x912AA04: julia_println_33060 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8591D: do_call (interpreter.c:66)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,886 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E71CE5: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E71CE5: jl_invoke (gf.c:29)
==7929== by 0x1DC91307: ???
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x912AA04: julia_println_33060 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 40 bytes in 1 blocks are possibly lost in loss record 3,887 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6537B74: llvm::DIFile::getImpl(llvm::LLVMContext&, llvm::MDString*, llvm::MDString*, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6525047: llvm::DIBuilder::createCompileUnit(unsigned int, llvm::StringRef, llvm::StringRef, llvm::StringRef, bool, llvm::StringRef, unsigned int, llvm::StringRef, llvm::DIBuilder::DebugEmissionKind, unsigned long, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFCB77: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4144)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x8FA5B81: julia__atexit_21418 (initdefs.jl:114)
==7929== by 0x8FA5BF8: jlcall__atexit_21418 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929== by 0x4E8C144: jl_apply (julia.h:1392)
==7929== by 0x4E8C144: jl_atexit_hook (init.c:244)
==7929==
==7929== 40 bytes in 1 blocks are definitely lost in loss record 3,888 of 11,259
==7929== at 0x4C28C20: malloc (vg_replace_malloc.c:296)
==7929== by 0x400C66D: _dl_map_object_deps (dl-deps.c:475)
==7929== by 0x4012A3B: dl_open_worker (dl-open.c:272)
==7929== by 0x400E873: _dl_catch_error (dl-error.c:187)
==7929== by 0x40123FA: _dl_open (dl-open.c:661)
==7929== by 0x543802A: dlopen_doit (dlopen.c:66)
==7929== by 0x400E873: _dl_catch_error (dl-error.c:187)
==7929== by 0x54385DC: _dlerror_run (dlerror.c:163)
==7929== by 0x54380C0: dlopen@@GLIBC_2.2.5 (dlopen.c:87)
==7929== by 0x4E8ACE9: jl_load_dynamic_library_ (dlload.c:195)
==7929== by 0x90362CF: julia_dlopen_24814 (libdl.jl:90)
==7929== by 0x90365E9: julia___init___24807 (cholmod.jl:66)
==7929==
==7929== 42 bytes in 1 blocks are possibly lost in loss record 4,008 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x773D258: allocate (new_allocator.h:104)
==7929== by 0x773D258: std::string::_Rep::_S_create(unsigned long, unsigned long, std::allocator<char> const&) (basic_string.tcc:1047)
==7929== by 0x773D376: char* std::string::_S_construct<char const*>(char const*, char const*, std::allocator<char> const&, std::forward_iterator_tag) [clone .part.29] (basic_string.tcc:578)
==7929== by 0x773EC7A: _S_construct_aux<char const*> (basic_string.h:4275)
==7929== by 0x773EC7A: _S_construct<char const*> (basic_string.h:4296)
==7929== by 0x773EC7A: std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, unsigned long, std::allocator<char> const&) (basic_string.tcc:647)
==7929== by 0x6C14326: llvm::Twine::str() const (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F7AEB: llvm::NamedMDNode::NamedMDNode(llvm::Twine const&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x66065CB: llvm::Module::getOrInsertNamedMetadata(llvm::StringRef) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x66069E4: llvm::Module::getOrInsertModuleFlagsMetadata() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6606A66: llvm::Module::addModuleFlag(llvm::Module::ModFlagBehavior, llvm::StringRef, llvm::Metadata*) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EBED8E: jl_setup_module(llvm::Module*) (codegen.cpp:902)
==7929== by 0x4ED58BF: jl_init_codegen (codegen.cpp:5756)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929==
==7929== 44 bytes in 1 blocks are possibly lost in loss record 4,231 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x773D258: allocate (new_allocator.h:104)
==7929== by 0x773D258: std::string::_Rep::_S_create(unsigned long, unsigned long, std::allocator<char> const&) (basic_string.tcc:1047)
==7929== by 0x773D376: char* std::string::_S_construct<char const*>(char const*, char const*, std::allocator<char> const&, std::forward_iterator_tag) [clone .part.29] (basic_string.tcc:578)
==7929== by 0x773EC7A: _S_construct_aux<char const*> (basic_string.h:4275)
==7929== by 0x773EC7A: _S_construct<char const*> (basic_string.h:4296)
==7929== by 0x773EC7A: std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, unsigned long, std::allocator<char> const&) (basic_string.tcc:647)
==7929== by 0x6C14326: llvm::Twine::str() const (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6C118B8: llvm::Triple::Triple(llvm::Twine const&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6668AA0: llvm::EngineBuilder::selectTarget(llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::SmallVectorImpl<std::string> const&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED56C5: jl_init_codegen (codegen.cpp:5723)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 44 bytes in 1 blocks are possibly lost in loss record 4,232 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x773D258: allocate (new_allocator.h:104)
==7929== by 0x773D258: std::string::_Rep::_S_create(unsigned long, unsigned long, std::allocator<char> const&) (basic_string.tcc:1047)
==7929== by 0x773D376: char* std::string::_S_construct<char const*>(char const*, char const*, std::allocator<char> const&, std::forward_iterator_tag) [clone .part.29] (basic_string.tcc:578)
==7929== by 0x773EC7A: _S_construct_aux<char const*> (basic_string.h:4275)
==7929== by 0x773EC7A: _S_construct<char const*> (basic_string.h:4296)
==7929== by 0x773EC7A: std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, unsigned long, std::allocator<char> const&) (basic_string.tcc:647)
==7929== by 0x6C14326: llvm::Twine::str() const (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6C118B8: llvm::Triple::Triple(llvm::Twine const&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6325860: llvm::LLVMTargetMachine::initAsmInfo() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6E2492E: llvm::X86TargetMachine::X86TargetMachine(llvm::Target const&, llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::TargetOptions const&, llvm::Reloc::Model, llvm::CodeModel::Model, llvm::CodeGenOpt::Level) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6E24D71: llvm::RegisterTargetMachine<llvm::X86TargetMachine>::Allocator(llvm::Target const&, llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::TargetOptions const&, llvm::Reloc::Model, llvm::CodeModel::Model, llvm::CodeGenOpt::Level) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6668ACC: llvm::EngineBuilder::selectTarget(llvm::Triple const&, llvm::StringRef, llvm::StringRef, llvm::SmallVectorImpl<std::string> const&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED56C5: jl_init_codegen (codegen.cpp:5723)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929==
==7929== 44 bytes in 1 blocks are possibly lost in loss record 4,233 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x773D258: allocate (new_allocator.h:104)
==7929== by 0x773D258: std::string::_Rep::_S_create(unsigned long, unsigned long, std::allocator<char> const&) (basic_string.tcc:1047)
==7929== by 0x773D376: char* std::string::_S_construct<char const*>(char const*, char const*, std::allocator<char> const&, std::forward_iterator_tag) [clone .part.29] (basic_string.tcc:578)
==7929== by 0x773EC7A: _S_construct_aux<char const*> (basic_string.h:4275)
==7929== by 0x773EC7A: _S_construct<char const*> (basic_string.h:4296)
==7929== by 0x773EC7A: std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, unsigned long, std::allocator<char> const&) (basic_string.tcc:647)
==7929== by 0x4EBED01: str (StringRef.h:190)
==7929== by 0x4EBED01: operator std::string (StringRef.h:207)
==7929== by 0x4EBED01: setTargetTriple (Module.h:294)
==7929== by 0x4EBED01: jl_setup_module(llvm::Module*) (codegen.cpp:917)
==7929== by 0x4ED58BF: jl_init_codegen (codegen.cpp:5756)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 46 bytes in 1 blocks are possibly lost in loss record 4,302 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x773D258: allocate (new_allocator.h:104)
==7929== by 0x773D258: std::string::_Rep::_S_create(unsigned long, unsigned long, std::allocator<char> const&) (basic_string.tcc:1047)
==7929== by 0x773D376: char* std::string::_S_construct<char const*>(char const*, char const*, std::allocator<char> const&, std::forward_iterator_tag) [clone .part.29] (basic_string.tcc:578)
==7929== by 0x773EC7A: _S_construct_aux<char const*> (basic_string.h:4275)
==7929== by 0x773EC7A: _S_construct<char const*> (basic_string.h:4296)
==7929== by 0x773EC7A: std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, unsigned long, std::allocator<char> const&) (basic_string.tcc:647)
==7929== by 0x64EC941: llvm::Attribute::get(llvm::LLVMContext&, llvm::StringRef, llvm::StringRef) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x64F0603: llvm::AttributeSet::get(llvm::LLVMContext&, unsigned int, llvm::AttrBuilder const&) [clone .part.101] (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x64F0816: llvm::AttributeSet::get(llvm::LLVMContext&, unsigned int, llvm::AttrBuilder const&) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x64F2A7B: llvm::AttributeSet::addAttribute(llvm::LLVMContext&, unsigned int, llvm::StringRef, llvm::StringRef) const (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFAA20: addFnAttr (Function.h:205)
==7929== by 0x4EFAA20: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4047)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929==
==7929== 48 bytes in 1 blocks are possibly lost in loss record 4,609 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65F42A8: llvm::MDBuilder::createTBAANode(llvm::StringRef, llvm::MDNode*, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4ED587E: tbaa_make_child (codegen.cpp:4777)
==7929== by 0x4ED587E: init_julia_llvm_meta (codegen.cpp:4905)
==7929== by 0x4ED587E: jl_init_codegen (codegen.cpp:5736)
==7929== by 0x4E8D53E: _julia_init (init.c:661)
==7929== by 0x4E8DE0C: julia_init (task.c:283)
==7929== by 0x4013AA: main (repl.c:231)
==7929==
==7929== 48 bytes in 1 blocks are possibly lost in loss record 4,610 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x903698A: julia___init___24807 (cholmod.jl:134)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 48 bytes in 1 blocks are possibly lost in loss record 4,611 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llvm::DIBuilder::getOrCreateArray(llvm::ArrayRef<llvm::Metadata*>) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x652415C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x9036DC2: julia___init___24807 (cholmod.jl:150)
==7929== by 0x90370E8: jlcall___init___24807 (in /home/rs/opt/julia-3c9d75391c/lib/julia/sys.so)
==7929== by 0x4E713EF: jl_call_method_internal (julia_internal.h:189)
==7929== by 0x4E713EF: jl_apply_generic (gf.c:1942)
==7929==
==7929== 48 bytes in 1 blocks are possibly lost in loss record 4,612 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F11: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929== by 0x4E95C8C: jl_init_restored_modules (dump.c:1994)
==7929== by 0x4E95C8C: _jl_restore_incremental.part.18 (dump.c:2560)
==7929== by 0x4E9AC74: _jl_restore_incremental (dump.c:2498)
==7929== by 0x4E9AC74: jl_restore_incremental (dump.c:2580)
==7929== by 0x8FC0689: julia__include_from_serialized_22473 (loading.jl:150)
==7929==
==7929== 48 bytes in 1 blocks are possibly lost in loss record 4,613 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523F4C: llvm::DIBuilder::finalize() (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x4EFD166: emit_function(_jl_lambda_info_t*, _jl_llvm_functions_t*) (codegen.cpp:4765)
==7929== by 0x4EFE80B: jl_compile_linfo (codegen.cpp:809)
==7929== by 0x4E71AE7: jl_compile_for_dispatch (gf.c:1310)
==7929== by 0x4E714C0: jl_call_method_internal (julia_internal.h:184)
==7929== by 0x4E714C0: jl_apply_generic (gf.c:1942)
==7929== by 0x4E9E78A: jl_apply (julia.h:1392)
==7929== by 0x4E9E78A: jl_module_run_initializer (toplevel.c:83)
==7929== by 0x4E95C8C: jl_init_restored_modules (dump.c:1994)
==7929== by 0x4E95C8C: _jl_restore_incremental.part.18 (dump.c:2560)
==7929== by 0x4E9AC74: _jl_restore_incremental (dump.c:2498)
==7929== by 0x4E9AC74: jl_restore_incremental (dump.c:2580)
==7929== by 0x8FC0689: julia__include_from_serialized_22473 (loading.jl:150)
==7929==
==7929== 48 bytes in 1 blocks are possibly lost in loss record 4,614 of 11,259
==7929== at 0x4C29180: operator new(unsigned long) (vg_replace_malloc.c:324)
==7929== by 0x65F71FE: llvm::MDNode::operator new(unsigned long, unsigned int) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x65FD04A: llvm::MDTuple::getImpl(llvm::LLVMContext&, llvm::ArrayRef<llvm::Metadata*>, llvm::Metadata::StorageType, bool) (in /home/rs/opt/julia-3c9d75391c/lib/julia/libLLVM-3.7.so)
==7929== by 0x6523D14: llv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment