2015-03-04 13:43:19 +00:00
|
|
|
/****************************************************************************/
|
|
|
|
/* PAB: Signal magic. Processor state dump is x86-64 specific */
|
|
|
|
/****************************************************************************/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <signal.h>
|
2015-04-23 20:42:30 +01:00
|
|
|
#include <iostream>
|
2015-04-18 22:17:01 +01:00
|
|
|
#include <Grid.h>
|
2015-05-11 12:43:10 +01:00
|
|
|
#include <algorithm>
|
2015-03-04 13:43:19 +00:00
|
|
|
|
|
|
|
#undef __X86_64
|
2015-04-23 20:42:30 +01:00
|
|
|
#define MAC
|
|
|
|
|
|
|
|
#ifdef MAC
|
|
|
|
#include <execinfo.h>
|
|
|
|
#endif
|
|
|
|
|
2015-04-03 05:29:54 +01:00
|
|
|
namespace Grid {
|
2015-03-04 13:43:19 +00:00
|
|
|
|
2015-04-23 20:42:30 +01:00
|
|
|
void Grid_quiesce_nodes(void)
|
|
|
|
{
|
|
|
|
#ifdef GRID_COMMS_MPI
|
|
|
|
int me;
|
|
|
|
MPI_Comm_rank(MPI_COMM_WORLD,&me);
|
|
|
|
if ( me ) {
|
|
|
|
std::cout.setstate(std::ios::badbit);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
void Grid_unquiesce_nodes(void)
|
|
|
|
{
|
|
|
|
#ifdef GRID_COMMS_MPI
|
|
|
|
std::cout.clear();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-05-11 12:43:10 +01:00
|
|
|
std::string GridCmdOptionPayload(char ** begin, char ** end, const std::string & option)
|
|
|
|
{
|
|
|
|
char ** itr = std::find(begin, end, option);
|
|
|
|
if (itr != end && ++itr != end) {
|
|
|
|
std::string payload(*itr);
|
|
|
|
return payload;
|
|
|
|
}
|
|
|
|
return std::string("");
|
|
|
|
}
|
|
|
|
bool GridCmdOptionExists(char** begin, char** end, const std::string& option)
|
|
|
|
{
|
|
|
|
return std::find(begin, end, option) != end;
|
|
|
|
}
|
2015-04-03 04:52:53 +01:00
|
|
|
void Grid_init(int *argc,char ***argv)
|
2015-03-04 13:43:19 +00:00
|
|
|
{
|
2015-04-03 04:52:53 +01:00
|
|
|
#ifdef GRID_COMMS_MPI
|
|
|
|
MPI_Init(argc,argv);
|
|
|
|
#endif
|
2015-05-11 12:43:10 +01:00
|
|
|
// Parse command line args.
|
2015-04-23 20:42:30 +01:00
|
|
|
Grid_quiesce_nodes();
|
2015-05-11 12:43:10 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void GridCmdOptionIntVector(std::string &str,std::vector<int> & vec)
|
|
|
|
{
|
|
|
|
vec.resize(0);
|
|
|
|
std::stringstream ss(str);
|
|
|
|
int i;
|
|
|
|
while (ss >> i){
|
|
|
|
vec.push_back(i);
|
|
|
|
if (ss.peek() == ',')
|
|
|
|
ss.ignore();
|
|
|
|
}
|
|
|
|
return;
|
2015-03-04 13:43:19 +00:00
|
|
|
}
|
2015-05-11 12:43:10 +01:00
|
|
|
|
|
|
|
void GridParseLayout(char **argv,int argc,std::vector<int> &mpi,std::vector<int> &simd,std::vector<int> &latt)
|
|
|
|
{
|
|
|
|
mpi =std::vector<int>({1,1,1,1});
|
|
|
|
#if defined(AVX) || defined (AVX2)
|
|
|
|
simd=std::vector<int>({1,1,2,2});
|
|
|
|
#endif
|
|
|
|
#if defined(SSE4)
|
|
|
|
simd=std::vector<int>({1,1,1,2});
|
|
|
|
#endif
|
|
|
|
#if defined(AVX512)
|
|
|
|
simd=std::vector<int>({1,2,2,2});
|
|
|
|
#endif
|
|
|
|
latt=std::vector<int>({8,8,8,8});
|
|
|
|
|
|
|
|
std::string arg;
|
|
|
|
if( GridCmdOptionExists(argv,argv+argc,"--mpi-layout") ){
|
|
|
|
arg = GridCmdOptionPayload(argv,argv+argc,"--mpi-layout");
|
|
|
|
GridCmdOptionIntVector(arg,mpi);
|
|
|
|
}
|
|
|
|
if( GridCmdOptionExists(argv,argv+argc,"--simd-layout") ){
|
|
|
|
arg= GridCmdOptionPayload(argv,argv+argc,"--simd-layout");
|
|
|
|
GridCmdOptionIntVector(arg,simd);
|
|
|
|
}
|
|
|
|
if( GridCmdOptionExists(argv,argv+argc,"--lattice") ){
|
|
|
|
arg= GridCmdOptionPayload(argv,argv+argc,"--lattice");
|
|
|
|
GridCmdOptionIntVector(arg,latt);
|
|
|
|
}
|
|
|
|
std::cout<<"MPI layout";
|
|
|
|
for(int i=0;i<mpi.size();i++){
|
|
|
|
std::cout<<mpi[i]<<" ";
|
|
|
|
}
|
|
|
|
std::cout<<std::endl;
|
|
|
|
|
|
|
|
std::cout<<"SIMD layout";
|
|
|
|
for(int i=0;i<simd.size();i++){
|
|
|
|
std::cout<<simd[i]<<" ";
|
|
|
|
}
|
|
|
|
std::cout<<std::endl;
|
|
|
|
|
|
|
|
std::cout<<"Grid ";
|
|
|
|
for(int i=0;i<latt.size();i++){
|
|
|
|
std::cout<<latt[i]<<" ";
|
|
|
|
}
|
|
|
|
std::cout<<std::endl;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-10 04:22:36 +01:00
|
|
|
void Grid_finalize(void)
|
|
|
|
{
|
|
|
|
#ifdef GRID_COMMS_MPI
|
|
|
|
MPI_Finalize();
|
2015-05-11 12:43:10 +01:00
|
|
|
Grid_unquiesce_nodes();
|
2015-04-10 04:22:36 +01:00
|
|
|
#endif
|
|
|
|
}
|
2015-03-04 13:43:19 +00:00
|
|
|
double usecond(void) {
|
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv,NULL);
|
|
|
|
return 1.0*tv.tv_usec + 1.0e6*tv.tv_sec;
|
|
|
|
}
|
|
|
|
|
2015-04-23 20:42:30 +01:00
|
|
|
#define _NBACKTRACE (256)
|
|
|
|
void * Grid_backtrace_buffer[_NBACKTRACE];
|
|
|
|
|
2015-03-04 13:43:19 +00:00
|
|
|
void Grid_sa_signal_handler(int sig,siginfo_t *si,void * ptr)
|
|
|
|
{
|
|
|
|
printf("Caught signal %d\n",si->si_signo);
|
2015-05-05 22:09:22 +01:00
|
|
|
printf(" mem address %lx\n",(uint64_t)si->si_addr);
|
2015-03-04 13:43:19 +00:00
|
|
|
printf(" code %d\n",si->si_code);
|
|
|
|
|
|
|
|
#ifdef __X86_64
|
2015-03-29 20:35:37 +01:00
|
|
|
ucontext_t * uc= (ucontext_t *)ptr;
|
2015-03-04 13:43:19 +00:00
|
|
|
struct sigcontext *sc = (struct sigcontext *)&uc->uc_mcontext;
|
|
|
|
printf(" instruction %llx\n",(uint64_t)sc->rip);
|
|
|
|
#define REG(A) printf(" %s %lx\n",#A, sc-> A);
|
|
|
|
REG(rdi);
|
|
|
|
REG(rsi);
|
|
|
|
REG(rbp);
|
|
|
|
REG(rbx);
|
|
|
|
REG(rdx);
|
|
|
|
REG(rax);
|
|
|
|
REG(rcx);
|
|
|
|
REG(rsp);
|
|
|
|
REG(rip);
|
|
|
|
|
|
|
|
|
|
|
|
REG(r8);
|
|
|
|
REG(r9);
|
|
|
|
REG(r10);
|
|
|
|
REG(r11);
|
|
|
|
REG(r12);
|
|
|
|
REG(r13);
|
|
|
|
REG(r14);
|
|
|
|
REG(r15);
|
|
|
|
#endif
|
2015-04-23 20:42:30 +01:00
|
|
|
#ifdef MAC
|
|
|
|
int symbols = backtrace (Grid_backtrace_buffer,_NBACKTRACE);
|
|
|
|
char **strings = backtrace_symbols(Grid_backtrace_buffer,symbols);
|
|
|
|
for (int i = 0; i < symbols; i++){
|
|
|
|
printf ("%s\n", strings[i]);
|
2015-03-04 13:43:19 +00:00
|
|
|
}
|
2015-04-23 20:42:30 +01:00
|
|
|
#endif
|
|
|
|
exit(0);
|
2015-03-04 13:43:19 +00:00
|
|
|
return;
|
|
|
|
};
|
|
|
|
|
|
|
|
void Grid_debug_handler_init(void)
|
|
|
|
{
|
|
|
|
struct sigaction sa,osa;
|
|
|
|
sigemptyset (&sa.sa_mask);
|
|
|
|
sa.sa_sigaction= Grid_sa_signal_handler;
|
|
|
|
sa.sa_flags = SA_SIGINFO;
|
|
|
|
sigaction(SIGSEGV,&sa,NULL);
|
|
|
|
sigaction(SIGTRAP,&sa,NULL);
|
|
|
|
}
|
|
|
|
}
|