To compile with 64bit labels set WM_LABEL_SIZE=64 in ~/OpenFOAM/dev/prefs.sh source ~/.bashrc then Allwmake in OpenFOAM-dev. This will build into for example OpenFOAM-dev/platforms/linux64ClangDPInt64Opt If WM_LABEL_SIZE is unset or set to 32: WM_LABEL_SIZE=32 the build would be placed into OpenFOAM-dev/platforms/linux64ClangDPInt32Opt Thus both 32bit and 64bit label builds can coexist without problem.
103 lines
2.8 KiB
C++
103 lines
2.8 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM 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 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM 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 OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Typedef
|
|
Foam::label
|
|
|
|
Description
|
|
A label is an int32_t or int64_t as specified by the pre-processor macro
|
|
WM_LABEL_SIZE.
|
|
|
|
A readLabel function is defined so that label can be constructed from
|
|
Istream.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef label_H
|
|
#define label_H
|
|
|
|
#include "int.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#define INT_ADD_SIZE(x,s,y) x ## s ## y
|
|
#define INT_ADD_DEF_SIZE(x,s,y) INT_ADD_SIZE(x,s,y)
|
|
#define INT_SIZE(x,y) INT_ADD_DEF_SIZE(x,WM_LABEL_SIZE,y)
|
|
|
|
#if WM_LABEL_SIZE != 32 && WM_LABEL_SIZE != 64
|
|
#error "label.H: WM_LABEL_SIZE must be set to either 32 or 64"
|
|
#endif
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
typedef INT_SIZE(int, _t) label;
|
|
|
|
static const label labelMin = INT_SIZE(INT, _MIN);
|
|
static const label labelMax = INT_SIZE(INT, _MAX);
|
|
|
|
inline label readLabel(Istream& is)
|
|
{
|
|
return INT_SIZE(readInt,) (is);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
//- Raise one label to the power of another
|
|
label pow(label a, label b);
|
|
|
|
//- Evaluate n! : 0 < n <= 12
|
|
label factorial(label n);
|
|
|
|
|
|
inline label& setComponent(label& l, const direction)
|
|
{
|
|
return l;
|
|
}
|
|
|
|
inline label component(const label l, const direction)
|
|
{
|
|
return l;
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#include "labelSpecific.H"
|
|
|
|
#undef INT_ADD_SIZE
|
|
#undef INT_ADD_DEF_SIZE
|
|
#undef INT_SIZE
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|