KWSys: Address Intel compiler remarks
CommandLineArguments.cxx: remark #181: argument is incompatible with corresponding format string conversion SystemInformation.cxx: remark #193: zero used for undefined preprocessing identifier "_WIN32" warning #177: variable "Regebx" was declared but never referenced SystemTools.cxx(375): remark #444: destructor for base class "std::vector<char*>" is not virtual class kwsysDeletingCharVector : private kwsys_stl::vector<char*> Author: Hans Johnson <hans-johnson@uiowa.edu> Change-Id: Ibc899c3ba14990158ef7bbabace4b435b22495c3
This commit is contained in:
parent
5e1c2f81a7
commit
13d19468d0
@ -592,7 +592,7 @@ void CommandLineArguments::GenerateHelp()
|
|||||||
|
|
||||||
// Create format for that string
|
// Create format for that string
|
||||||
char format[80];
|
char format[80];
|
||||||
sprintf(format, " %%-%ds ", static_cast<unsigned int>(maxlen));
|
sprintf(format, " %%-%us ", static_cast<unsigned int>(maxlen));
|
||||||
|
|
||||||
maxlen += 4; // For the space before and after the option
|
maxlen += 4; // For the space before and after the option
|
||||||
|
|
||||||
|
@ -72,7 +72,7 @@
|
|||||||
# include <ctype.h> // int isdigit(int c);
|
# include <ctype.h> // int isdigit(int c);
|
||||||
# include <errno.h> // extern int errno;
|
# include <errno.h> // extern int errno;
|
||||||
# include <sys/time.h>
|
# include <sys/time.h>
|
||||||
#elif __hpux
|
#elif defined( __hpux )
|
||||||
# include <sys/param.h>
|
# include <sys/param.h>
|
||||||
# include <sys/pstat.h>
|
# include <sys/pstat.h>
|
||||||
#endif
|
#endif
|
||||||
@ -1454,7 +1454,7 @@ bool SystemInformationImplementation::RetrieveCPUClockSpeed()
|
|||||||
{
|
{
|
||||||
bool retrieved = false;
|
bool retrieved = false;
|
||||||
|
|
||||||
#if _WIN32
|
#if defined(_WIN32)
|
||||||
// First of all we check to see if the RDTSC (0x0F, 0x31) instruction is
|
// First of all we check to see if the RDTSC (0x0F, 0x31) instruction is
|
||||||
// supported. If not, we fallback to trying to read this value from the
|
// supported. If not, we fallback to trying to read this value from the
|
||||||
// registry:
|
// registry:
|
||||||
@ -2389,7 +2389,7 @@ int SystemInformationImplementation::QueryMemory()
|
|||||||
this->AvailablePhysicalMemory = 0;
|
this->AvailablePhysicalMemory = 0;
|
||||||
#ifdef __CYGWIN__
|
#ifdef __CYGWIN__
|
||||||
return 0;
|
return 0;
|
||||||
#elif _WIN32
|
#elif defined(_WIN32)
|
||||||
#if _MSC_VER < 1300
|
#if _MSC_VER < 1300
|
||||||
MEMORYSTATUS ms;
|
MEMORYSTATUS ms;
|
||||||
unsigned long tv, tp, av, ap;
|
unsigned long tv, tp, av, ap;
|
||||||
@ -2415,7 +2415,7 @@ int SystemInformationImplementation::QueryMemory()
|
|||||||
this->AvailableVirtualMemory = av>>10>>10;
|
this->AvailableVirtualMemory = av>>10>>10;
|
||||||
this->AvailablePhysicalMemory = ap>>10>>10;
|
this->AvailablePhysicalMemory = ap>>10>>10;
|
||||||
return 1;
|
return 1;
|
||||||
#elif __linux
|
#elif defined(__linux)
|
||||||
unsigned long tv=0;
|
unsigned long tv=0;
|
||||||
unsigned long tp=0;
|
unsigned long tp=0;
|
||||||
unsigned long av=0;
|
unsigned long av=0;
|
||||||
@ -2532,7 +2532,7 @@ int SystemInformationImplementation::QueryMemory()
|
|||||||
}
|
}
|
||||||
fclose( fd );
|
fclose( fd );
|
||||||
return 1;
|
return 1;
|
||||||
#elif __hpux
|
#elif defined(__hpux)
|
||||||
unsigned long tv=0;
|
unsigned long tv=0;
|
||||||
unsigned long tp=0;
|
unsigned long tp=0;
|
||||||
unsigned long av=0;
|
unsigned long av=0;
|
||||||
@ -2639,7 +2639,7 @@ LongLong SystemInformationImplementation::GetCyclesDifference (DELAY_FUNC DelayF
|
|||||||
/** Compute the delay overhead */
|
/** Compute the delay overhead */
|
||||||
void SystemInformationImplementation::DelayOverhead(unsigned int uiMS)
|
void SystemInformationImplementation::DelayOverhead(unsigned int uiMS)
|
||||||
{
|
{
|
||||||
#if _WIN32
|
#if defined(_WIN32)
|
||||||
LARGE_INTEGER Frequency, StartCounter, EndCounter;
|
LARGE_INTEGER Frequency, StartCounter, EndCounter;
|
||||||
__int64 x;
|
__int64 x;
|
||||||
|
|
||||||
@ -2664,10 +2664,19 @@ void SystemInformationImplementation::DelayOverhead(unsigned int uiMS)
|
|||||||
/** Return the number of logical CPU per physical CPUs Works only for windows */
|
/** Return the number of logical CPU per physical CPUs Works only for windows */
|
||||||
unsigned char SystemInformationImplementation::LogicalCPUPerPhysicalCPU(void)
|
unsigned char SystemInformationImplementation::LogicalCPUPerPhysicalCPU(void)
|
||||||
{
|
{
|
||||||
|
#ifdef __APPLE__
|
||||||
|
size_t len = 4;
|
||||||
|
int cores_per_package = 0;
|
||||||
|
int err = sysctlbyname("machdep.cpu.cores_per_package", &cores_per_package, &len, NULL, 0);
|
||||||
|
if (err != 0)
|
||||||
|
{
|
||||||
|
return 1; // That name was not found, default to 1
|
||||||
|
}
|
||||||
|
return static_cast<unsigned char>(cores_per_package);
|
||||||
|
#else
|
||||||
unsigned int Regebx = 0;
|
unsigned int Regebx = 0;
|
||||||
|
|
||||||
#if USE_ASM_INSTRUCTIONS
|
#if USE_ASM_INSTRUCTIONS
|
||||||
if (!this->IsHyperThreadingSupported())
|
if (!this->IsHyperThreadingSupported())
|
||||||
{
|
{
|
||||||
return static_cast<unsigned char>(1); // HT not supported
|
return static_cast<unsigned char>(1); // HT not supported
|
||||||
}
|
}
|
||||||
@ -2678,22 +2687,8 @@ unsigned char SystemInformationImplementation::LogicalCPUPerPhysicalCPU(void)
|
|||||||
mov Regebx, ebx
|
mov Regebx, ebx
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __APPLE__
|
|
||||||
size_t len = 4;
|
|
||||||
int cores_per_package = 0;
|
|
||||||
int err = sysctlbyname("machdep.cpu.cores_per_package", &cores_per_package, &len, NULL, 0);
|
|
||||||
if (err != 0)
|
|
||||||
{
|
|
||||||
return 1; // That name was not found, default to 1
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return static_cast<unsigned char>(cores_per_package);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return static_cast<unsigned char> ((Regebx & NUM_LOGICAL_BITS) >> 16);
|
return static_cast<unsigned char> ((Regebx & NUM_LOGICAL_BITS) >> 16);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -2769,7 +2764,7 @@ unsigned char SystemInformationImplementation::GetAPICId()
|
|||||||
/** Count the number of CPUs. Works only on windows. */
|
/** Count the number of CPUs. Works only on windows. */
|
||||||
int SystemInformationImplementation::CPUCount()
|
int SystemInformationImplementation::CPUCount()
|
||||||
{
|
{
|
||||||
#if _WIN32
|
#if defined(_WIN32)
|
||||||
unsigned char StatusFlag = 0;
|
unsigned char StatusFlag = 0;
|
||||||
SYSTEM_INFO info;
|
SYSTEM_INFO info;
|
||||||
|
|
||||||
@ -3359,7 +3354,7 @@ bool SystemInformationImplementation::QueryQNXProcessor()
|
|||||||
/** Query the operating system information */
|
/** Query the operating system information */
|
||||||
bool SystemInformationImplementation::QueryOSInformation()
|
bool SystemInformationImplementation::QueryOSInformation()
|
||||||
{
|
{
|
||||||
#if _WIN32
|
#if defined(_WIN32)
|
||||||
|
|
||||||
this->OSName = "Windows";
|
this->OSName = "Windows";
|
||||||
|
|
||||||
|
@ -371,6 +371,10 @@ bool SystemTools::GetEnv(const char* key, kwsys_stl::string& result)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef INTEL_COMPILER
|
||||||
|
#pragma warning disable 444
|
||||||
|
#endif
|
||||||
|
|
||||||
class kwsysDeletingCharVector : public kwsys_stl::vector<char*>
|
class kwsysDeletingCharVector : public kwsys_stl::vector<char*>
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
@ -399,6 +403,10 @@ bool SystemTools::PutEnv(const char* value)
|
|||||||
return ret == 0;
|
return ret == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef INTEL_COMPILER
|
||||||
|
#pragma warning restore 444
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
const char* SystemTools::GetExecutableExtension()
|
const char* SystemTools::GetExecutableExtension()
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user