https://github.com/JuliaLang/julia
Revision 3d8b10770a7a7317dde13ae36881991db356326c authored by Jameson Nash on 04 February 2024, 03:58:55 UTC, committed by GitHub on 04 February 2024, 03:58:55 UTC
1 parent 6be4235
Raw File
Tip revision: 3d8b10770a7a7317dde13ae36881991db356326c authored by Jameson Nash on 04 February 2024, 03:58:55 UTC
Improve printing for length and size method error (#53146)
Tip revision: 3d8b107
debuginfo.h
// This file is a part of Julia. License is MIT: https://julialang.org/license

// Declarations for debuginfo.cpp

int jl_DI_for_fptr(uint64_t fptr, uint64_t *symsize, int64_t *slide,
        llvm::object::SectionRef *Section, llvm::DIContext **context) JL_NOTSAFEPOINT;

bool jl_dylib_DI_for_fptr(size_t pointer, llvm::object::SectionRef *Section, int64_t *slide, llvm::DIContext **context,
    bool onlyImage, bool *isImage, uint64_t* fbase, void **saddr, char **name, char **filename) JL_NOTSAFEPOINT;

static object::SectionedAddress makeAddress(
        llvm::object::SectionRef Section, uint64_t address) JL_NOTSAFEPOINT
{
    return object::SectionedAddress{address, Section.getIndex()};
}
back to top