Skip to content
  • Jonathan Peyton's avatar
    [OMPT] Overhaul OMPT initialization interface · 82a13bf3
    Jonathan Peyton authored
    The OMPT specification has changed. This revision brings the LLVM OpenMP
    implementation up to date.
    
    Technical overview of changes:
    Previously, a public weak symbol ompt_initialize was called after the OpenMP
    runtime is initialized. The new interface calls a global weak symbol ompt_tool
    prior to initialization. If a tool is present, ompt_tool returns a pointer to
    a function that matches the signature for ompt_initialize. After OpenMP is 
    initialized the function pointer is called to initialize a tool.
    Knowing that OMPT will be enabled before initialization allows OMPT support to
    be initialized as part of initialization instead of back patching
    initialization of OMPT support after the fact.
    Post OpenMP initialization support has been generalized moves from
    ompt-specific.c into ompt-general.c, since the OMPT initialization logic is no
    longer implementation specific.
    
    Patch by John Mellor-Crummey
    
    Differential Revision: http://reviews.llvm.org/D12998
    
    llvm-svn: 248187
    82a13bf3
Loading