https://github.com/JuliaLang/julia
Raw File
Tip revision: fe3c9afa4600644fa16bb8ad79b575ee020acaa6 authored by Valentin Churavy on 20 May 2018, 21:39:12 UTC
try to blacklist, doesn't work
Tip revision: fe3c9af
debuginfo.h
// This file is a part of Julia. License is MIT: https://julialang.org/license

// Declarations for debuginfo.cpp

extern int jl_DI_for_fptr(uint64_t fptr, uint64_t *symsize, int64_t *slide, int64_t *section_slide,
                      const object::ObjectFile **object,
                      llvm::DIContext **context);

extern bool jl_dylib_DI_for_fptr(size_t pointer, const object::ObjectFile **object, llvm::DIContext **context,
        int64_t *slide, int64_t *section_slide,
        bool onlySysImg, bool *isSysImg, void **saddr, char **name, char **filename);
back to top