-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Add arch directory with required atomics implementations (for ARM64, PPC and x86_64). TODO: add other architectures later. 2. Add a thread-safe list that will be used for tracking TLS objects. 3. Update Makefile.in to build thread-safe list 4. Add stubs for mpiP threads support Signed-off-by: Artem Polyakov <[email protected]>
- Loading branch information
Showing
9 changed files
with
759 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/* -*- C -*- | ||
mpiP MPI Profiler ( http://llnl.github.io/mpiP ) | ||
Please see COPYRIGHT AND LICENSE information at the end of this file. | ||
----- | ||
arch.h -- architecture-specific code and definitions | ||
*/ | ||
|
||
#ifndef ARCH_ATOMICS_H | ||
#define ARCH_ATOMICS_H | ||
|
||
#ifdef __x86_64__ | ||
#include "arch/arch_x86_64.h" | ||
#elif __ppc64__ || __ppc__ | ||
#include "arch/arch_ppc.h" | ||
#elif __aarch64__ | ||
#include "arch/arch_arm64.h" | ||
#endif | ||
|
||
#endif // ARCH_ATOMICS_H | ||
|
||
|
||
/* | ||
<license> | ||
Copyright (c) 2019 Mellanox Technologies Ltd. | ||
Written by Artem Polyakov | ||
All rights reserved. | ||
This file is part of mpiP. For details, see http://llnl.github.io/mpiP. | ||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are | ||
met: | ||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the disclaimer below. | ||
* Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the disclaimer (as noted below) in | ||
the documentation and/or other materials provided with the | ||
distribution. | ||
* Neither the name of the UC/LLNL nor the names of its contributors | ||
may be used to endorse or promote products derived from this software | ||
without specific prior written permission. | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OF | ||
THE UNIVERSITY OF CALIFORNIA, THE U.S. DEPARTMENT OF ENERGY OR | ||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | ||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
Additional BSD Notice | ||
1. This notice is required to be provided under our contract with the | ||
U.S. Department of Energy (DOE). This work was produced at the | ||
University of California, Lawrence Livermore National Laboratory under | ||
Contract No. W-7405-ENG-48 with the DOE. | ||
2. Neither the United States Government nor the University of | ||
California nor any of their employees, makes any warranty, express or | ||
implied, or assumes any liability or responsibility for the accuracy, | ||
completeness, or usefulness of any information, apparatus, product, or | ||
process disclosed, or represents that its use would not infringe | ||
privately-owned rights. | ||
3. Also, reference herein to any specific commercial products, | ||
process, or services by trade name, trademark, manufacturer or | ||
otherwise does not necessarily constitute or imply its endorsement, | ||
recommendation, or favoring by the United States Government or the | ||
University of California. The views and opinions of authors expressed | ||
herein do not necessarily state or reflect those of the United States | ||
Government or the University of California, and shall not be used for | ||
advertising or product endorsement purposes. | ||
</license> | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
/* -*- C -*- | ||
mpiP MPI Profiler ( http://llnl.github.io/mpiP ) | ||
Please see COPYRIGHT AND LICENSE information at the end of this file. | ||
----- | ||
arch.h -- code and definitions specific to ARM64 architecture | ||
*/ | ||
|
||
#ifndef ARCH_ARM64_H | ||
#define ARCH_ARM64_H | ||
|
||
#define MB() __asm__ __volatile__ ("dmb sy" : : : "memory") | ||
#define RMB() __asm__ __volatile__ ("dmb ld" : : : "memory") | ||
#define WMB() __asm__ __volatile__ ("dmb st" : : : "memory") | ||
|
||
static inline void opal_atomic_wmb (void) | ||
{ | ||
WMB(); | ||
} | ||
|
||
static inline void opal_atomic_isync (void) | ||
{ | ||
__asm__ __volatile__ ("isb"); | ||
} | ||
|
||
static inline int64_t _mpiP_atomic_swap_ldst(int64_t *addr, int64_t newval) | ||
{ | ||
int64_t ret; | ||
int tmp; | ||
|
||
__asm__ __volatile__ ("1: ldaxr %0, [%2] \n" | ||
" stlxr %w1, %3, [%2] \n" | ||
" cbnz %w1, 1b \n" | ||
: "=&r" (ret), "=&r" (tmp) | ||
: "r" (addr), "r" (newval) | ||
: "cc", "memory"); | ||
|
||
return ret; | ||
} | ||
|
||
static inline int64_t _mpiP_atomic_swap_lse(int64_t *addr, int64_t newval) | ||
{ | ||
int64_t ret; | ||
int tmp; | ||
|
||
__asm__ __volatile__ ("swpl %2, %0, [%1]\n" | ||
: "=&r" (ret) | ||
: "r" (addr), "r" (newval) | ||
: "cc", "memory"); | ||
return ret; | ||
} | ||
|
||
/* TODO: Detect the support for LSE extentions */ | ||
static inline int64_t mpiP_atomic_swap(int64_t *addr, int64_t newval) | ||
{ | ||
return _mpiP_atomic_swap_lse(addr, newval); | ||
} | ||
|
||
#endif | ||
|
||
|
||
/* | ||
<license> | ||
This code was derived from Open MPI OPAL layer. | ||
Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana | ||
University Research and Technology | ||
Corporation. All rights reserved. | ||
Copyright (c) 2004-2005 The University of Tennessee and The University | ||
of Tennessee Research Foundation. All rights | ||
reserved. | ||
Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, | ||
University of Stuttgart. All rights reserved. | ||
Copyright (c) 2004-2005 The Regents of the University of California. | ||
All rights reserved. | ||
Copyright (c) 2010 IBM Corporation. All rights reserved. | ||
Copyright (c) 2010 ARM ltd. All rights reserved. | ||
Copyright (c) 2016-2018 Los Alamos National Security, LLC. All rights | ||
reserved. | ||
Copyright (c) 2019 Mellanox Technologies Ltd. All rights reserved. | ||
This file is part of mpiP. For details, see http://llnl.github.io/mpiP. | ||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are | ||
met: | ||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the disclaimer below. | ||
* Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the disclaimer (as noted below) in | ||
the documentation and/or other materials provided with the | ||
distribution. | ||
* Neither the name of the UC/LLNL nor the names of its contributors | ||
may be used to endorse or promote products derived from this software | ||
without specific prior written permission. | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OF | ||
THE UNIVERSITY OF CALIFORNIA, THE U.S. DEPARTMENT OF ENERGY OR | ||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | ||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
Additional BSD Notice | ||
1. This notice is required to be provided under our contract with the | ||
U.S. Department of Energy (DOE). This work was produced at the | ||
University of California, Lawrence Livermore National Laboratory under | ||
Contract No. W-7405-ENG-48 with the DOE. | ||
2. Neither the United States Government nor the University of | ||
California nor any of their employees, makes any warranty, express or | ||
implied, or assumes any liability or responsibility for the accuracy, | ||
completeness, or usefulness of any information, apparatus, product, or | ||
process disclosed, or represents that its use would not infringe | ||
privately-owned rights. | ||
3. Also, reference herein to any specific commercial products, | ||
process, or services by trade name, trademark, manufacturer or | ||
otherwise does not necessarily constitute or imply its endorsement, | ||
recommendation, or favoring by the United States Government or the | ||
University of California. The views and opinions of authors expressed | ||
herein do not necessarily state or reflect those of the United States | ||
Government or the University of California, and shall not be used for | ||
advertising or product endorsement purposes. | ||
</license> | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
/* -*- C -*- | ||
mpiP MPI Profiler ( http://llnl.github.io/mpiP ) | ||
Please see COPYRIGHT AND LICENSE information at the end of this file. | ||
----- | ||
arch.h -- code and definitions specific to POWER architecture | ||
*/ | ||
|
||
#ifndef ARCH_PPC_H | ||
#define ARCH_PPC_H | ||
|
||
#define MB() __asm__ __volatile__ ("sync" : : : "memory") | ||
#define RMB() __asm__ __volatile__ ("lwsync" : : : "memory") | ||
#define WMB() __asm__ __volatile__ ("lwsync" : : : "memory") | ||
#define ISYNC() __asm__ __volatile__ ("isync" : : : "memory") | ||
|
||
static inline | ||
void mpiP_atomic_wmb(void) | ||
{ | ||
WMB(); | ||
} | ||
|
||
static inline | ||
void opal_atomic_isync(void) | ||
{ | ||
ISYNC(); | ||
} | ||
|
||
static inline int64_t mpiP_atomic_swap(int64_t *addr, int64_t newval) | ||
{ | ||
int64_t ret; | ||
|
||
__asm__ __volatile__ ("1: ldarx %0, 0, %2 \n\t" | ||
" stdcx. %3, 0, %2 \n\t" | ||
" bne- 1b \n\t" | ||
: "=&r" (ret), "=m" (*addr) | ||
: "r" (addr), "r" (OPAL_ASM_VALUE64(newval)) | ||
: "cc", "memory"); | ||
|
||
return ret; | ||
} | ||
|
||
#endif | ||
|
||
/* | ||
<license> | ||
This code was derived from Open MPI OPAL layer. | ||
Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana | ||
University Research and Technology | ||
Corporation. All rights reserved. | ||
Copyright (c) 2004-2005 The University of Tennessee and The University | ||
of Tennessee Research Foundation. All rights | ||
reserved. | ||
Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, | ||
University of Stuttgart. All rights reserved. | ||
Copyright (c) 2004-2005 The Regents of the University of California. | ||
All rights reserved. | ||
Copyright (c) 2010-2017 IBM Corporation. All rights reserved. | ||
Copyright (c) 2015-2018 Los Alamos National Security, LLC. All rights | ||
reserved. | ||
Copyright (c) 2019 Mellanox Technologies Ltd. All rights reserved. | ||
This file is part of mpiP. For details, see http://llnl.github.io/mpiP. | ||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are | ||
met: | ||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the disclaimer below. | ||
* Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the disclaimer (as noted below) in | ||
the documentation and/or other materials provided with the | ||
distribution. | ||
* Neither the name of the UC/LLNL nor the names of its contributors | ||
may be used to endorse or promote products derived from this software | ||
without specific prior written permission. | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OF | ||
THE UNIVERSITY OF CALIFORNIA, THE U.S. DEPARTMENT OF ENERGY OR | ||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | ||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
Additional BSD Notice | ||
1. This notice is required to be provided under our contract with the | ||
U.S. Department of Energy (DOE). This work was produced at the | ||
University of California, Lawrence Livermore National Laboratory under | ||
Contract No. W-7405-ENG-48 with the DOE. | ||
2. Neither the United States Government nor the University of | ||
California nor any of their employees, makes any warranty, express or | ||
implied, or assumes any liability or responsibility for the accuracy, | ||
completeness, or usefulness of any information, apparatus, product, or | ||
process disclosed, or represents that its use would not infringe | ||
privately-owned rights. | ||
3. Also, reference herein to any specific commercial products, | ||
process, or services by trade name, trademark, manufacturer or | ||
otherwise does not necessarily constitute or imply its endorsement, | ||
recommendation, or favoring by the United States Government or the | ||
University of California. The views and opinions of authors expressed | ||
herein do not necessarily state or reflect those of the United States | ||
Government or the University of California, and shall not be used for | ||
advertising or product endorsement purposes. | ||
</license> | ||
*/ |
Oops, something went wrong.