mirror of
https://github.com/google/cpu_features.git
synced 2025-07-02 21:53:18 +02:00
[NFC] clang-format the code base
This commit is contained in:
@ -21,29 +21,29 @@
|
||||
CPU_FEATURES_START_CPP_NAMESPACE
|
||||
|
||||
typedef struct {
|
||||
int esan3: 1; // instructions named N3, "backported" to esa-mode
|
||||
int zarch: 1; // z/Architecture mode active
|
||||
int stfle: 1; // store-facility-list-extended
|
||||
int msa: 1; // message-security assist
|
||||
int ldisp: 1; // long-displacement
|
||||
int eimm: 1; // extended-immediate
|
||||
int dfp: 1; // decimal floating point & perform floating point operation
|
||||
int edat: 1; // huge page support
|
||||
int etf3eh: 1; // extended-translation facility 3 enhancement
|
||||
int highgprs: 1; // 64-bit register support for 31-bit processes
|
||||
int te: 1; // transactional execution
|
||||
int vx: 1; // vector extension facility
|
||||
int vxd: 1; // vector-packed-decimal facility
|
||||
int vxe: 1; // vector-enhancement facility 1
|
||||
int gs: 1; // guarded-storage facility
|
||||
int vxe2: 1; // vector-enhancements facility 2
|
||||
int vxp: 1; // vector-packed-decimal-enhancement facility
|
||||
int sort: 1; // enhanced-sort facility
|
||||
int dflt: 1; // deflate-conversion facility
|
||||
int vxp2: 1; // vector-packed-decimal-enhancement facility 2
|
||||
int nnpa: 1; // neural network processing assist facility
|
||||
int pcimio: 1; // PCI mio facility
|
||||
int sie: 1; // virtualization support
|
||||
int esan3 : 1; // instructions named N3, "backported" to esa-mode
|
||||
int zarch : 1; // z/Architecture mode active
|
||||
int stfle : 1; // store-facility-list-extended
|
||||
int msa : 1; // message-security assist
|
||||
int ldisp : 1; // long-displacement
|
||||
int eimm : 1; // extended-immediate
|
||||
int dfp : 1; // decimal floating point & perform floating point operation
|
||||
int edat : 1; // huge page support
|
||||
int etf3eh : 1; // extended-translation facility 3 enhancement
|
||||
int highgprs : 1; // 64-bit register support for 31-bit processes
|
||||
int te : 1; // transactional execution
|
||||
int vx : 1; // vector extension facility
|
||||
int vxd : 1; // vector-packed-decimal facility
|
||||
int vxe : 1; // vector-enhancement facility 1
|
||||
int gs : 1; // guarded-storage facility
|
||||
int vxe2 : 1; // vector-enhancements facility 2
|
||||
int vxp : 1; // vector-packed-decimal-enhancement facility
|
||||
int sort : 1; // enhanced-sort facility
|
||||
int dflt : 1; // deflate-conversion facility
|
||||
int vxp2 : 1; // vector-packed-decimal-enhancement facility 2
|
||||
int nnpa : 1; // neural network processing assist facility
|
||||
int pcimio : 1; // PCI mio facility
|
||||
int sie : 1; // virtualization support
|
||||
|
||||
// Make sure to update S390XFeaturesEnum below if you add a field here.
|
||||
} S390XFeatures;
|
||||
@ -55,11 +55,11 @@ typedef struct {
|
||||
S390XInfo GetS390XInfo(void);
|
||||
|
||||
typedef struct {
|
||||
char platform[64]; // 0 terminated string
|
||||
char platform[64]; // 0 terminated string
|
||||
} S390XPlatformTypeStrings;
|
||||
|
||||
typedef struct {
|
||||
int num_processors; // -1 if N/A
|
||||
int num_processors; // -1 if N/A
|
||||
S390XPlatformTypeStrings type;
|
||||
} S390XPlatformStrings;
|
||||
|
||||
@ -95,7 +95,8 @@ typedef enum {
|
||||
S390X_LAST_,
|
||||
} S390XFeaturesEnum;
|
||||
|
||||
int GetS390XFeaturesEnumValue(const S390XFeatures* features, S390XFeaturesEnum value);
|
||||
int GetS390XFeaturesEnumValue(const S390XFeatures* features,
|
||||
S390XFeaturesEnum value);
|
||||
|
||||
const char* GetS390XFeaturesEnumName(S390XFeaturesEnum);
|
||||
|
||||
|
Reference in New Issue
Block a user