/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid Source file: ./lib/Init.cc Copyright (C) 2015 Author: Azusa Yamaguchi Author: Peter Boyle Author: Peter Boyle Author: paboyle This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. See the full license in the file "LICENSE" in the top level distribution directory *************************************************************************************/ /* END LEGAL */ /****************************************************************************/ /* pab: Signal magic. Processor state dump is x86-64 specific */ /****************************************************************************/ #include #include #include #include #include #include #include #include #include #include #include #include #include namespace Grid { ////////////////////////////////////////////////////// // Convenience functions to access stadard command line arg // driven parallelism controls ////////////////////////////////////////////////////// static std::vector Grid_default_latt; static std::vector Grid_default_mpi; int GridThread::_threads =1; int GridThread::_hyperthreads=1; int GridThread::_cores=1; const std::vector &GridDefaultLatt(void) {return Grid_default_latt;}; const std::vector &GridDefaultMpi(void) {return Grid_default_mpi;}; const std::vector GridDefaultSimd(int dims,int nsimd) { std::vector layout(dims); int nn=nsimd; for(int d=dims-1;d>=0;d--){ if ( nn>=2) { layout[d]=2; nn/=2; } else { layout[d]=1; } } assert(nn==1); return layout; } //////////////////////////////////////////////////////////// // Command line parsing assist for stock controls //////////////////////////////////////////////////////////// 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; } // Comma separated list void GridCmdOptionCSL(std::string str,std::vector & vec) { size_t pos = 0; std::string token; std::string delimiter(","); vec.resize(0); while ((pos = str.find(delimiter)) != std::string::npos) { token = str.substr(0, pos); vec.push_back(token); str.erase(0, pos + delimiter.length()); } token = str; vec.push_back(token); return; } void GridCmdOptionIntVector(std::string &str,std::vector & vec) { vec.resize(0); std::stringstream ss(str); int i; while (ss >> i){ vec.push_back(i); if(std::ispunct(ss.peek())) ss.ignore(); } return; } void GridParseLayout(char **argv,int argc, std::vector &latt, std::vector &mpi) { mpi =std::vector({1,1,1,1}); latt=std::vector({8,8,8,8}); GridThread::SetMaxThreads(); std::string arg; if( GridCmdOptionExists(argv,argv+argc,"--mpi") ){ arg = GridCmdOptionPayload(argv,argv+argc,"--mpi"); GridCmdOptionIntVector(arg,mpi); } if( GridCmdOptionExists(argv,argv+argc,"--grid") ){ arg= GridCmdOptionPayload(argv,argv+argc,"--grid"); GridCmdOptionIntVector(arg,latt); } if( GridCmdOptionExists(argv,argv+argc,"--threads") ){ std::vector ompthreads(0); arg= GridCmdOptionPayload(argv,argv+argc,"--threads"); GridCmdOptionIntVector(arg,ompthreads); assert(ompthreads.size()==1); GridThread::SetThreads(ompthreads[0]); } if( GridCmdOptionExists(argv,argv+argc,"--cores") ){ std::vector cores(0); arg= GridCmdOptionPayload(argv,argv+argc,"--cores"); GridCmdOptionIntVector(arg,cores); GridThread::SetCores(cores[0]); } } std::string GridCmdVectorIntToString(const std::vector & vec){ std::ostringstream oss; std::copy(vec.begin(), vec.end(),std::ostream_iterator(oss, " ")); return oss.str(); } ///////////////////////////////////////////////////////// // ///////////////////////////////////////////////////////// void Grid_init(int *argc,char ***argv) { CartesianCommunicator::Init(argc,argv); // Parse command line args. GridLogger::StopWatch.Start(); std::string arg; std::vector logstreams; std::string defaultLog("Error,Warning,Message,Performance"); GridCmdOptionCSL(defaultLog,logstreams); GridLogConfigure(logstreams); if( GridCmdOptionExists(*argv,*argv+*argc,"--help") ){ std::cout<si_signo); printf(" mem address %llx\n",(unsigned long long)si->si_addr); printf(" code %d\n",si->si_code); // Linux/Posix #ifdef __linux__ // And x86 64bit #ifdef __x86_64__ ucontext_t * uc= (ucontext_t *)ptr; struct sigcontext *sc = (struct sigcontext *)&uc->uc_mcontext; printf(" instruction %llx\n",(unsigned long long)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 #endif BACKTRACE(); exit(0); return; }; #ifdef GRID_FPE #define _GNU_SOURCE #include #endif 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); #ifdef GRID_FPE feenableexcept( FE_INVALID|FE_OVERFLOW|FE_DIVBYZERO); sigaction(SIGFPE,&sa,NULL); #endif } }