| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956 |
- #pragma once
- #ifndef CPUINFO_H
- #define CPUINFO_H
- #ifndef __cplusplus
- #include <stdbool.h>
- #endif
- #ifdef __APPLE__
- #include <TargetConditionals.h>
- #endif
- #include <stdint.h>
- /* Identify architecture and define corresponding macro */
- #if defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(__i686__) || defined(_M_IX86)
- #define CPUINFO_ARCH_X86 1
- #endif
- #if defined(__x86_64__) || defined(__x86_64) || defined(_M_X64) || defined(_M_AMD64)
- #define CPUINFO_ARCH_X86_64 1
- #endif
- #if defined(__arm__) || defined(_M_ARM)
- #define CPUINFO_ARCH_ARM 1
- #endif
- #if defined(__aarch64__) || defined(_M_ARM64)
- #define CPUINFO_ARCH_ARM64 1
- #endif
- #if defined(__PPC64__) || defined(__powerpc64__) || defined(_ARCH_PPC64)
- #define CPUINFO_ARCH_PPC64 1
- #endif
- #if defined(__asmjs__)
- #define CPUINFO_ARCH_ASMJS 1
- #endif
- #if defined(__wasm__)
- #if defined(__wasm_simd128__)
- #define CPUINFO_ARCH_WASMSIMD 1
- #else
- #define CPUINFO_ARCH_WASM 1
- #endif
- #endif
- /* Define other architecture-specific macros as 0 */
- #ifndef CPUINFO_ARCH_X86
- #define CPUINFO_ARCH_X86 0
- #endif
- #ifndef CPUINFO_ARCH_X86_64
- #define CPUINFO_ARCH_X86_64 0
- #endif
- #ifndef CPUINFO_ARCH_ARM
- #define CPUINFO_ARCH_ARM 0
- #endif
- #ifndef CPUINFO_ARCH_ARM64
- #define CPUINFO_ARCH_ARM64 0
- #endif
- #ifndef CPUINFO_ARCH_PPC64
- #define CPUINFO_ARCH_PPC64 0
- #endif
- #ifndef CPUINFO_ARCH_ASMJS
- #define CPUINFO_ARCH_ASMJS 0
- #endif
- #ifndef CPUINFO_ARCH_WASM
- #define CPUINFO_ARCH_WASM 0
- #endif
- #ifndef CPUINFO_ARCH_WASMSIMD
- #define CPUINFO_ARCH_WASMSIMD 0
- #endif
- #if CPUINFO_ARCH_X86 && defined(_MSC_VER)
- #define CPUINFO_ABI __cdecl
- #elif CPUINFO_ARCH_X86 && defined(__GNUC__)
- #define CPUINFO_ABI __attribute__((__cdecl__))
- #else
- #define CPUINFO_ABI
- #endif
- #define CPUINFO_CACHE_UNIFIED 0x00000001
- #define CPUINFO_CACHE_INCLUSIVE 0x00000002
- #define CPUINFO_CACHE_COMPLEX_INDEXING 0x00000004
- struct cpuinfo_cache {
- /** Cache size in bytes */
- uint32_t size;
- /** Number of ways of associativity */
- uint32_t associativity;
- /** Number of sets */
- uint32_t sets;
- /** Number of partitions */
- uint32_t partitions;
- /** Line size in bytes */
- uint32_t line_size;
- /**
- * Binary characteristics of the cache (unified cache, inclusive cache, cache with complex indexing).
- *
- * @see CPUINFO_CACHE_UNIFIED, CPUINFO_CACHE_INCLUSIVE, CPUINFO_CACHE_COMPLEX_INDEXING
- */
- uint32_t flags;
- /** Index of the first logical processor that shares this cache */
- uint32_t processor_start;
- /** Number of logical processors that share this cache */
- uint32_t processor_count;
- };
- struct cpuinfo_trace_cache {
- uint32_t uops;
- uint32_t associativity;
- };
- #define CPUINFO_PAGE_SIZE_4KB 0x1000
- #define CPUINFO_PAGE_SIZE_1MB 0x100000
- #define CPUINFO_PAGE_SIZE_2MB 0x200000
- #define CPUINFO_PAGE_SIZE_4MB 0x400000
- #define CPUINFO_PAGE_SIZE_16MB 0x1000000
- #define CPUINFO_PAGE_SIZE_1GB 0x40000000
- struct cpuinfo_tlb {
- uint32_t entries;
- uint32_t associativity;
- uint64_t pages;
- };
- /** Vendor of processor core design */
- enum cpuinfo_vendor {
- /** Processor vendor is not known to the library, or the library failed to get vendor information from the OS. */
- cpuinfo_vendor_unknown = 0,
- /* Active vendors of modern CPUs */
- /**
- * Intel Corporation. Vendor of x86, x86-64, IA64, and ARM processor microarchitectures.
- *
- * Sold its ARM design subsidiary in 2006. The last ARM processor design was released in 2004.
- */
- cpuinfo_vendor_intel = 1,
- /** Advanced Micro Devices, Inc. Vendor of x86 and x86-64 processor microarchitectures. */
- cpuinfo_vendor_amd = 2,
- /** ARM Holdings plc. Vendor of ARM and ARM64 processor microarchitectures. */
- cpuinfo_vendor_arm = 3,
- /** Qualcomm Incorporated. Vendor of ARM and ARM64 processor microarchitectures. */
- cpuinfo_vendor_qualcomm = 4,
- /** Apple Inc. Vendor of ARM and ARM64 processor microarchitectures. */
- cpuinfo_vendor_apple = 5,
- /** Samsung Electronics Co., Ltd. Vendir if ARM64 processor microarchitectures. */
- cpuinfo_vendor_samsung = 6,
- /** Nvidia Corporation. Vendor of ARM64-compatible processor microarchitectures. */
- cpuinfo_vendor_nvidia = 7,
- /** MIPS Technologies, Inc. Vendor of MIPS processor microarchitectures. */
- cpuinfo_vendor_mips = 8,
- /** International Business Machines Corporation. Vendor of PowerPC processor microarchitectures. */
- cpuinfo_vendor_ibm = 9,
- /** Ingenic Semiconductor. Vendor of MIPS processor microarchitectures. */
- cpuinfo_vendor_ingenic = 10,
- /**
- * VIA Technologies, Inc. Vendor of x86 and x86-64 processor microarchitectures.
- *
- * Processors are designed by Centaur Technology, a subsidiary of VIA Technologies.
- */
- cpuinfo_vendor_via = 11,
- /** Cavium, Inc. Vendor of ARM64 processor microarchitectures. */
- cpuinfo_vendor_cavium = 12,
- /** Broadcom, Inc. Vendor of ARM processor microarchitectures. */
- cpuinfo_vendor_broadcom = 13,
- /** Applied Micro Circuits Corporation (APM). Vendor of ARM64 processor microarchitectures. */
- cpuinfo_vendor_apm = 14,
- /**
- * Huawei Technologies Co., Ltd. Vendor of ARM64 processor microarchitectures.
- *
- * Processors are designed by HiSilicon, a subsidiary of Huawei.
- */
- cpuinfo_vendor_huawei = 15,
- /**
- * Hygon (Chengdu Haiguang Integrated Circuit Design Co., Ltd), Vendor of x86-64 processor microarchitectures.
- *
- * Processors are variants of AMD cores.
- */
- cpuinfo_vendor_hygon = 16,
- /* Active vendors of embedded CPUs */
- /** Texas Instruments Inc. Vendor of ARM processor microarchitectures. */
- cpuinfo_vendor_texas_instruments = 30,
- /** Marvell Technology Group Ltd. Vendor of ARM processor microarchitectures. */
- cpuinfo_vendor_marvell = 31,
- /** RDC Semiconductor Co., Ltd. Vendor of x86 processor microarchitectures. */
- cpuinfo_vendor_rdc = 32,
- /** DM&P Electronics Inc. Vendor of x86 processor microarchitectures. */
- cpuinfo_vendor_dmp = 33,
- /** Motorola, Inc. Vendor of PowerPC and ARM processor microarchitectures. */
- cpuinfo_vendor_motorola = 34,
- /* Defunct CPU vendors */
- /**
- * Transmeta Corporation. Vendor of x86 processor microarchitectures.
- *
- * Now defunct. The last processor design was released in 2004.
- * Transmeta processors implemented VLIW ISA and used binary translation to execute x86 code.
- */
- cpuinfo_vendor_transmeta = 50,
- /**
- * Cyrix Corporation. Vendor of x86 processor microarchitectures.
- *
- * Now defunct. The last processor design was released in 1996.
- */
- cpuinfo_vendor_cyrix = 51,
- /**
- * Rise Technology. Vendor of x86 processor microarchitectures.
- *
- * Now defunct. The last processor design was released in 1999.
- */
- cpuinfo_vendor_rise = 52,
- /**
- * National Semiconductor. Vendor of x86 processor microarchitectures.
- *
- * Sold its x86 design subsidiary in 1999. The last processor design was released in 1998.
- */
- cpuinfo_vendor_nsc = 53,
- /**
- * Silicon Integrated Systems. Vendor of x86 processor microarchitectures.
- *
- * Sold its x86 design subsidiary in 2001. The last processor design was released in 2001.
- */
- cpuinfo_vendor_sis = 54,
- /**
- * NexGen. Vendor of x86 processor microarchitectures.
- *
- * Now defunct. The last processor design was released in 1994.
- * NexGen designed the first x86 microarchitecture which decomposed x86 instructions into simple microoperations.
- */
- cpuinfo_vendor_nexgen = 55,
- /**
- * United Microelectronics Corporation. Vendor of x86 processor microarchitectures.
- *
- * Ceased x86 in the early 1990s. The last processor design was released in 1991.
- * Designed U5C and U5D processors. Both are 486 level.
- */
- cpuinfo_vendor_umc = 56,
- /**
- * Digital Equipment Corporation. Vendor of ARM processor microarchitecture.
- *
- * Sold its ARM designs in 1997. The last processor design was released in 1997.
- */
- cpuinfo_vendor_dec = 57,
- };
- /**
- * Processor microarchitecture
- *
- * Processors with different microarchitectures often have different instruction performance characteristics,
- * and may have dramatically different pipeline organization.
- */
- enum cpuinfo_uarch {
- /** Microarchitecture is unknown, or the library failed to get information about the microarchitecture from OS */
- cpuinfo_uarch_unknown = 0,
- /** Pentium and Pentium MMX microarchitecture. */
- cpuinfo_uarch_p5 = 0x00100100,
- /** Intel Quark microarchitecture. */
- cpuinfo_uarch_quark = 0x00100101,
- /** Pentium Pro, Pentium II, and Pentium III. */
- cpuinfo_uarch_p6 = 0x00100200,
- /** Pentium M. */
- cpuinfo_uarch_dothan = 0x00100201,
- /** Intel Core microarchitecture. */
- cpuinfo_uarch_yonah = 0x00100202,
- /** Intel Core 2 microarchitecture on 65 nm process. */
- cpuinfo_uarch_conroe = 0x00100203,
- /** Intel Core 2 microarchitecture on 45 nm process. */
- cpuinfo_uarch_penryn = 0x00100204,
- /** Intel Nehalem and Westmere microarchitectures (Core i3/i5/i7 1st gen). */
- cpuinfo_uarch_nehalem = 0x00100205,
- /** Intel Sandy Bridge microarchitecture (Core i3/i5/i7 2nd gen). */
- cpuinfo_uarch_sandy_bridge = 0x00100206,
- /** Intel Ivy Bridge microarchitecture (Core i3/i5/i7 3rd gen). */
- cpuinfo_uarch_ivy_bridge = 0x00100207,
- /** Intel Haswell microarchitecture (Core i3/i5/i7 4th gen). */
- cpuinfo_uarch_haswell = 0x00100208,
- /** Intel Broadwell microarchitecture. */
- cpuinfo_uarch_broadwell = 0x00100209,
- /** Intel Sky Lake microarchitecture (14 nm, including Kaby/Coffee/Whiskey/Amber/Comet/Cascade/Cooper Lake). */
- cpuinfo_uarch_sky_lake = 0x0010020A,
- /** DEPRECATED (Intel Kaby Lake microarchitecture). */
- cpuinfo_uarch_kaby_lake = 0x0010020A,
- /** Intel Palm Cove microarchitecture (10 nm, Cannon Lake). */
- cpuinfo_uarch_palm_cove = 0x0010020B,
- /** Intel Sunny Cove microarchitecture (10 nm, Ice Lake). */
- cpuinfo_uarch_sunny_cove = 0x0010020C,
- /** Pentium 4 with Willamette, Northwood, or Foster cores. */
- cpuinfo_uarch_willamette = 0x00100300,
- /** Pentium 4 with Prescott and later cores. */
- cpuinfo_uarch_prescott = 0x00100301,
- /** Intel Atom on 45 nm process. */
- cpuinfo_uarch_bonnell = 0x00100400,
- /** Intel Atom on 32 nm process. */
- cpuinfo_uarch_saltwell = 0x00100401,
- /** Intel Silvermont microarchitecture (22 nm out-of-order Atom). */
- cpuinfo_uarch_silvermont = 0x00100402,
- /** Intel Airmont microarchitecture (14 nm out-of-order Atom). */
- cpuinfo_uarch_airmont = 0x00100403,
- /** Intel Goldmont microarchitecture (Denverton, Apollo Lake). */
- cpuinfo_uarch_goldmont = 0x00100404,
- /** Intel Goldmont Plus microarchitecture (Gemini Lake). */
- cpuinfo_uarch_goldmont_plus = 0x00100405,
- /** Intel Knights Ferry HPC boards. */
- cpuinfo_uarch_knights_ferry = 0x00100500,
- /** Intel Knights Corner HPC boards (aka Xeon Phi). */
- cpuinfo_uarch_knights_corner = 0x00100501,
- /** Intel Knights Landing microarchitecture (second-gen MIC). */
- cpuinfo_uarch_knights_landing = 0x00100502,
- /** Intel Knights Hill microarchitecture (third-gen MIC). */
- cpuinfo_uarch_knights_hill = 0x00100503,
- /** Intel Knights Mill Xeon Phi. */
- cpuinfo_uarch_knights_mill = 0x00100504,
- /** Intel/Marvell XScale series. */
- cpuinfo_uarch_xscale = 0x00100600,
- /** AMD K5. */
- cpuinfo_uarch_k5 = 0x00200100,
- /** AMD K6 and alike. */
- cpuinfo_uarch_k6 = 0x00200101,
- /** AMD Athlon and Duron. */
- cpuinfo_uarch_k7 = 0x00200102,
- /** AMD Athlon 64, Opteron 64. */
- cpuinfo_uarch_k8 = 0x00200103,
- /** AMD Family 10h (Barcelona, Istambul, Magny-Cours). */
- cpuinfo_uarch_k10 = 0x00200104,
- /**
- * AMD Bulldozer microarchitecture
- * Zambezi FX-series CPUs, Zurich, Valencia and Interlagos Opteron CPUs.
- */
- cpuinfo_uarch_bulldozer = 0x00200105,
- /**
- * AMD Piledriver microarchitecture
- * Vishera FX-series CPUs, Trinity and Richland APUs, Delhi, Seoul, Abu Dhabi Opteron CPUs.
- */
- cpuinfo_uarch_piledriver = 0x00200106,
- /** AMD Steamroller microarchitecture (Kaveri APUs). */
- cpuinfo_uarch_steamroller = 0x00200107,
- /** AMD Excavator microarchitecture (Carizzo APUs). */
- cpuinfo_uarch_excavator = 0x00200108,
- /** AMD Zen microarchitecture (12/14 nm Ryzen and EPYC CPUs). */
- cpuinfo_uarch_zen = 0x00200109,
- /** AMD Zen 2 microarchitecture (7 nm Ryzen and EPYC CPUs). */
- cpuinfo_uarch_zen2 = 0x0020010A,
- /** AMD Zen 3 microarchitecture. */
- cpuinfo_uarch_zen3 = 0x0020010B,
- /** AMD Zen 4 microarchitecture. */
- cpuinfo_uarch_zen4 = 0x0020010C,
- /** NSC Geode and AMD Geode GX and LX. */
- cpuinfo_uarch_geode = 0x00200200,
- /** AMD Bobcat mobile microarchitecture. */
- cpuinfo_uarch_bobcat = 0x00200201,
- /** AMD Jaguar mobile microarchitecture. */
- cpuinfo_uarch_jaguar = 0x00200202,
- /** AMD Puma mobile microarchitecture. */
- cpuinfo_uarch_puma = 0x00200203,
- /** ARM7 series. */
- cpuinfo_uarch_arm7 = 0x00300100,
- /** ARM9 series. */
- cpuinfo_uarch_arm9 = 0x00300101,
- /** ARM 1136, ARM 1156, ARM 1176, or ARM 11MPCore. */
- cpuinfo_uarch_arm11 = 0x00300102,
- /** ARM Cortex-A5. */
- cpuinfo_uarch_cortex_a5 = 0x00300205,
- /** ARM Cortex-A7. */
- cpuinfo_uarch_cortex_a7 = 0x00300207,
- /** ARM Cortex-A8. */
- cpuinfo_uarch_cortex_a8 = 0x00300208,
- /** ARM Cortex-A9. */
- cpuinfo_uarch_cortex_a9 = 0x00300209,
- /** ARM Cortex-A12. */
- cpuinfo_uarch_cortex_a12 = 0x00300212,
- /** ARM Cortex-A15. */
- cpuinfo_uarch_cortex_a15 = 0x00300215,
- /** ARM Cortex-A17. */
- cpuinfo_uarch_cortex_a17 = 0x00300217,
- /** ARM Cortex-A32. */
- cpuinfo_uarch_cortex_a32 = 0x00300332,
- /** ARM Cortex-A35. */
- cpuinfo_uarch_cortex_a35 = 0x00300335,
- /** ARM Cortex-A53. */
- cpuinfo_uarch_cortex_a53 = 0x00300353,
- /** ARM Cortex-A55 revision 0 (restricted dual-issue capabilities compared to revision 1+). */
- cpuinfo_uarch_cortex_a55r0 = 0x00300354,
- /** ARM Cortex-A55. */
- cpuinfo_uarch_cortex_a55 = 0x00300355,
- /** ARM Cortex-A57. */
- cpuinfo_uarch_cortex_a57 = 0x00300357,
- /** ARM Cortex-A65. */
- cpuinfo_uarch_cortex_a65 = 0x00300365,
- /** ARM Cortex-A72. */
- cpuinfo_uarch_cortex_a72 = 0x00300372,
- /** ARM Cortex-A73. */
- cpuinfo_uarch_cortex_a73 = 0x00300373,
- /** ARM Cortex-A75. */
- cpuinfo_uarch_cortex_a75 = 0x00300375,
- /** ARM Cortex-A76. */
- cpuinfo_uarch_cortex_a76 = 0x00300376,
- /** ARM Cortex-A77. */
- cpuinfo_uarch_cortex_a77 = 0x00300377,
- /** ARM Cortex-A78. */
- cpuinfo_uarch_cortex_a78 = 0x00300378,
- /** ARM Neoverse N1. */
- cpuinfo_uarch_neoverse_n1 = 0x00300400,
- /** ARM Neoverse E1. */
- cpuinfo_uarch_neoverse_e1 = 0x00300401,
- /** ARM Neoverse V1. */
- cpuinfo_uarch_neoverse_v1 = 0x00300402,
- /** ARM Neoverse N2. */
- cpuinfo_uarch_neoverse_n2 = 0x00300403,
- /** ARM Neoverse V2. */
- cpuinfo_uarch_neoverse_v2 = 0x00300404,
- /** ARM Cortex-X1. */
- cpuinfo_uarch_cortex_x1 = 0x00300501,
- /** ARM Cortex-X2. */
- cpuinfo_uarch_cortex_x2 = 0x00300502,
- /** ARM Cortex-X3. */
- cpuinfo_uarch_cortex_x3 = 0x00300503,
- /** ARM Cortex-A510. */
- cpuinfo_uarch_cortex_a510 = 0x00300551,
- /** ARM Cortex-A710. */
- cpuinfo_uarch_cortex_a710 = 0x00300571,
- /** ARM Cortex-A715. */
- cpuinfo_uarch_cortex_a715 = 0x00300572,
- /** Qualcomm Scorpion. */
- cpuinfo_uarch_scorpion = 0x00400100,
- /** Qualcomm Krait. */
- cpuinfo_uarch_krait = 0x00400101,
- /** Qualcomm Kryo. */
- cpuinfo_uarch_kryo = 0x00400102,
- /** Qualcomm Falkor. */
- cpuinfo_uarch_falkor = 0x00400103,
- /** Qualcomm Saphira. */
- cpuinfo_uarch_saphira = 0x00400104,
- /** Nvidia Denver. */
- cpuinfo_uarch_denver = 0x00500100,
- /** Nvidia Denver 2. */
- cpuinfo_uarch_denver2 = 0x00500101,
- /** Nvidia Carmel. */
- cpuinfo_uarch_carmel = 0x00500102,
- /** Samsung Exynos M1 (Exynos 8890 big cores). */
- cpuinfo_uarch_exynos_m1 = 0x00600100,
- /** Samsung Exynos M2 (Exynos 8895 big cores). */
- cpuinfo_uarch_exynos_m2 = 0x00600101,
- /** Samsung Exynos M3 (Exynos 9810 big cores). */
- cpuinfo_uarch_exynos_m3 = 0x00600102,
- /** Samsung Exynos M4 (Exynos 9820 big cores). */
- cpuinfo_uarch_exynos_m4 = 0x00600103,
- /** Samsung Exynos M5 (Exynos 9830 big cores). */
- cpuinfo_uarch_exynos_m5 = 0x00600104,
- /* Deprecated synonym for Cortex-A76 */
- cpuinfo_uarch_cortex_a76ae = 0x00300376,
- /* Deprecated names for Exynos. */
- cpuinfo_uarch_mongoose_m1 = 0x00600100,
- cpuinfo_uarch_mongoose_m2 = 0x00600101,
- cpuinfo_uarch_meerkat_m3 = 0x00600102,
- cpuinfo_uarch_meerkat_m4 = 0x00600103,
- /** Apple A6 and A6X processors. */
- cpuinfo_uarch_swift = 0x00700100,
- /** Apple A7 processor. */
- cpuinfo_uarch_cyclone = 0x00700101,
- /** Apple A8 and A8X processor. */
- cpuinfo_uarch_typhoon = 0x00700102,
- /** Apple A9 and A9X processor. */
- cpuinfo_uarch_twister = 0x00700103,
- /** Apple A10 and A10X processor. */
- cpuinfo_uarch_hurricane = 0x00700104,
- /** Apple A11 processor (big cores). */
- cpuinfo_uarch_monsoon = 0x00700105,
- /** Apple A11 processor (little cores). */
- cpuinfo_uarch_mistral = 0x00700106,
- /** Apple A12 processor (big cores). */
- cpuinfo_uarch_vortex = 0x00700107,
- /** Apple A12 processor (little cores). */
- cpuinfo_uarch_tempest = 0x00700108,
- /** Apple A13 processor (big cores). */
- cpuinfo_uarch_lightning = 0x00700109,
- /** Apple A13 processor (little cores). */
- cpuinfo_uarch_thunder = 0x0070010A,
- /** Apple A14 / M1 processor (big cores). */
- cpuinfo_uarch_firestorm = 0x0070010B,
- /** Apple A14 / M1 processor (little cores). */
- cpuinfo_uarch_icestorm = 0x0070010C,
- /** Apple A15 / M2 processor (big cores). */
- cpuinfo_uarch_avalanche = 0x0070010D,
- /** Apple A15 / M2 processor (little cores). */
- cpuinfo_uarch_blizzard = 0x0070010E,
- /** Cavium ThunderX. */
- cpuinfo_uarch_thunderx = 0x00800100,
- /** Cavium ThunderX2 (originally Broadcom Vulkan). */
- cpuinfo_uarch_thunderx2 = 0x00800200,
- /** Marvell PJ4. */
- cpuinfo_uarch_pj4 = 0x00900100,
- /** Broadcom Brahma B15. */
- cpuinfo_uarch_brahma_b15 = 0x00A00100,
- /** Broadcom Brahma B53. */
- cpuinfo_uarch_brahma_b53 = 0x00A00101,
- /** Applied Micro X-Gene. */
- cpuinfo_uarch_xgene = 0x00B00100,
- /* Hygon Dhyana (a modification of AMD Zen for Chinese market). */
- cpuinfo_uarch_dhyana = 0x01000100,
- /** HiSilicon TaiShan v110 (Huawei Kunpeng 920 series processors). */
- cpuinfo_uarch_taishan_v110 = 0x00C00100,
- };
- struct cpuinfo_processor {
- /** SMT (hyperthread) ID within a core */
- uint32_t smt_id;
- /** Core containing this logical processor */
- const struct cpuinfo_core* core;
- /** Cluster of cores containing this logical processor */
- const struct cpuinfo_cluster* cluster;
- /** Physical package containing this logical processor */
- const struct cpuinfo_package* package;
- #if defined(__linux__)
- /**
- * Linux-specific ID for the logical processor:
- * - Linux kernel exposes information about this logical processor in /sys/devices/system/cpu/cpu<linux_id>/
- * - Bit <linux_id> in the cpu_set_t identifies this logical processor
- */
- int linux_id;
- #endif
- #if defined(_WIN32) || defined(__CYGWIN__)
- /** Windows-specific ID for the group containing the logical processor. */
- uint16_t windows_group_id;
- /**
- * Windows-specific ID of the logical processor within its group:
- * - Bit <windows_processor_id> in the KAFFINITY mask identifies this logical processor within its group.
- */
- uint16_t windows_processor_id;
- #endif
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- /** APIC ID (unique x86-specific ID of the logical processor) */
- uint32_t apic_id;
- #endif
- struct {
- /** Level 1 instruction cache */
- const struct cpuinfo_cache* l1i;
- /** Level 1 data cache */
- const struct cpuinfo_cache* l1d;
- /** Level 2 unified or data cache */
- const struct cpuinfo_cache* l2;
- /** Level 3 unified or data cache */
- const struct cpuinfo_cache* l3;
- /** Level 4 unified or data cache */
- const struct cpuinfo_cache* l4;
- } cache;
- };
- struct cpuinfo_core {
- /** Index of the first logical processor on this core. */
- uint32_t processor_start;
- /** Number of logical processors on this core */
- uint32_t processor_count;
- /** Core ID within a package */
- uint32_t core_id;
- /** Cluster containing this core */
- const struct cpuinfo_cluster* cluster;
- /** Physical package containing this core. */
- const struct cpuinfo_package* package;
- /** Vendor of the CPU microarchitecture for this core */
- enum cpuinfo_vendor vendor;
- /** CPU microarchitecture for this core */
- enum cpuinfo_uarch uarch;
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- /** Value of CPUID leaf 1 EAX register for this core */
- uint32_t cpuid;
- #elif CPUINFO_ARCH_ARM || CPUINFO_ARCH_ARM64
- /** Value of Main ID Register (MIDR) for this core */
- uint32_t midr;
- #endif
- /** Clock rate (non-Turbo) of the core, in Hz */
- uint64_t frequency;
- };
- struct cpuinfo_cluster {
- /** Index of the first logical processor in the cluster */
- uint32_t processor_start;
- /** Number of logical processors in the cluster */
- uint32_t processor_count;
- /** Index of the first core in the cluster */
- uint32_t core_start;
- /** Number of cores on the cluster */
- uint32_t core_count;
- /** Cluster ID within a package */
- uint32_t cluster_id;
- /** Physical package containing the cluster */
- const struct cpuinfo_package* package;
- /** CPU microarchitecture vendor of the cores in the cluster */
- enum cpuinfo_vendor vendor;
- /** CPU microarchitecture of the cores in the cluster */
- enum cpuinfo_uarch uarch;
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- /** Value of CPUID leaf 1 EAX register of the cores in the cluster */
- uint32_t cpuid;
- #elif CPUINFO_ARCH_ARM || CPUINFO_ARCH_ARM64
- /** Value of Main ID Register (MIDR) of the cores in the cluster */
- uint32_t midr;
- #endif
- /** Clock rate (non-Turbo) of the cores in the cluster, in Hz */
- uint64_t frequency;
- };
- #define CPUINFO_PACKAGE_NAME_MAX 48
- struct cpuinfo_package {
- /** SoC or processor chip model name */
- char name[CPUINFO_PACKAGE_NAME_MAX];
- /** Index of the first logical processor on this physical package */
- uint32_t processor_start;
- /** Number of logical processors on this physical package */
- uint32_t processor_count;
- /** Index of the first core on this physical package */
- uint32_t core_start;
- /** Number of cores on this physical package */
- uint32_t core_count;
- /** Index of the first cluster of cores on this physical package */
- uint32_t cluster_start;
- /** Number of clusters of cores on this physical package */
- uint32_t cluster_count;
- };
- struct cpuinfo_uarch_info {
- /** Type of CPU microarchitecture */
- enum cpuinfo_uarch uarch;
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- /** Value of CPUID leaf 1 EAX register for the microarchitecture */
- uint32_t cpuid;
- #elif CPUINFO_ARCH_ARM || CPUINFO_ARCH_ARM64
- /** Value of Main ID Register (MIDR) for the microarchitecture */
- uint32_t midr;
- #endif
- /** Number of logical processors with the microarchitecture */
- uint32_t processor_count;
- /** Number of cores with the microarchitecture */
- uint32_t core_count;
- };
- #ifdef __cplusplus
- extern "C" {
- #endif
- bool CPUINFO_ABI cpuinfo_initialize(void);
- void CPUINFO_ABI cpuinfo_deinitialize(void);
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- /* This structure is not a part of stable API. Use cpuinfo_has_x86_* functions instead. */
- struct cpuinfo_x86_isa {
- #if CPUINFO_ARCH_X86
- bool rdtsc;
- #endif
- bool rdtscp;
- bool rdpid;
- bool sysenter;
- #if CPUINFO_ARCH_X86
- bool syscall;
- #endif
- bool msr;
- bool clzero;
- bool clflush;
- bool clflushopt;
- bool mwait;
- bool mwaitx;
- #if CPUINFO_ARCH_X86
- bool emmx;
- #endif
- bool fxsave;
- bool xsave;
- #if CPUINFO_ARCH_X86
- bool fpu;
- bool mmx;
- bool mmx_plus;
- #endif
- bool three_d_now;
- bool three_d_now_plus;
- #if CPUINFO_ARCH_X86
- bool three_d_now_geode;
- #endif
- bool prefetch;
- bool prefetchw;
- bool prefetchwt1;
- #if CPUINFO_ARCH_X86
- bool daz;
- bool sse;
- bool sse2;
- #endif
- bool sse3;
- bool ssse3;
- bool sse4_1;
- bool sse4_2;
- bool sse4a;
- bool misaligned_sse;
- bool avx;
- bool avxvnni;
- bool fma3;
- bool fma4;
- bool xop;
- bool f16c;
- bool avx2;
- bool avx512f;
- bool avx512pf;
- bool avx512er;
- bool avx512cd;
- bool avx512dq;
- bool avx512bw;
- bool avx512vl;
- bool avx512ifma;
- bool avx512vbmi;
- bool avx512vbmi2;
- bool avx512bitalg;
- bool avx512vpopcntdq;
- bool avx512vnni;
- bool avx512bf16;
- bool avx512fp16;
- bool avx512vp2intersect;
- bool avx512_4vnniw;
- bool avx512_4fmaps;
- bool hle;
- bool rtm;
- bool xtest;
- bool mpx;
- #if CPUINFO_ARCH_X86
- bool cmov;
- bool cmpxchg8b;
- #endif
- bool cmpxchg16b;
- bool clwb;
- bool movbe;
- #if CPUINFO_ARCH_X86_64
- bool lahf_sahf;
- #endif
- bool fs_gs_base;
- bool lzcnt;
- bool popcnt;
- bool tbm;
- bool bmi;
- bool bmi2;
- bool adx;
- bool aes;
- bool vaes;
- bool pclmulqdq;
- bool vpclmulqdq;
- bool gfni;
- bool rdrand;
- bool rdseed;
- bool sha;
- bool rng;
- bool ace;
- bool ace2;
- bool phe;
- bool pmm;
- bool lwp;
- };
- extern struct cpuinfo_x86_isa cpuinfo_isa;
- #endif
- static inline bool cpuinfo_has_x86_rdtsc(void) {
- #if CPUINFO_ARCH_X86_64
- return true;
- #elif CPUINFO_ARCH_X86
- #if defined(__ANDROID__)
- return true;
- #else
- return cpuinfo_isa.rdtsc;
- #endif
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_rdtscp(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.rdtscp;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_rdpid(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.rdpid;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_clzero(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.clzero;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_mwait(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.mwait;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_mwaitx(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.mwaitx;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_fxsave(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.fxsave;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_xsave(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.xsave;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_fpu(void) {
- #if CPUINFO_ARCH_X86_64
- return true;
- #elif CPUINFO_ARCH_X86
- #if defined(__ANDROID__)
- return true;
- #else
- return cpuinfo_isa.fpu;
- #endif
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_mmx(void) {
- #if CPUINFO_ARCH_X86_64
- return true;
- #elif CPUINFO_ARCH_X86
- #if defined(__ANDROID__)
- return true;
- #else
- return cpuinfo_isa.mmx;
- #endif
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_mmx_plus(void) {
- #if CPUINFO_ARCH_X86_64
- return true;
- #elif CPUINFO_ARCH_X86
- #if defined(__ANDROID__)
- return true;
- #else
- return cpuinfo_isa.mmx_plus;
- #endif
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_3dnow(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.three_d_now;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_3dnow_plus(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.three_d_now_plus;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_3dnow_geode(void) {
- #if CPUINFO_ARCH_X86_64
- return false;
- #elif CPUINFO_ARCH_X86
- #if defined(__ANDROID__)
- return false;
- #else
- return cpuinfo_isa.three_d_now_geode;
- #endif
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_prefetch(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.prefetch;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_prefetchw(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.prefetchw;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_prefetchwt1(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.prefetchwt1;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_daz(void) {
- #if CPUINFO_ARCH_X86_64
- return true;
- #elif CPUINFO_ARCH_X86
- #if defined(__ANDROID__)
- return true;
- #else
- return cpuinfo_isa.daz;
- #endif
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_sse(void) {
- #if CPUINFO_ARCH_X86_64
- return true;
- #elif CPUINFO_ARCH_X86
- #if defined(__ANDROID__)
- return true;
- #else
- return cpuinfo_isa.sse;
- #endif
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_sse2(void) {
- #if CPUINFO_ARCH_X86_64
- return true;
- #elif CPUINFO_ARCH_X86
- #if defined(__ANDROID__)
- return true;
- #else
- return cpuinfo_isa.sse2;
- #endif
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_sse3(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- #if defined(__ANDROID__)
- return true;
- #else
- return cpuinfo_isa.sse3;
- #endif
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_ssse3(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- #if defined(__ANDROID__)
- return true;
- #else
- return cpuinfo_isa.ssse3;
- #endif
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_sse4_1(void) {
- #if CPUINFO_ARCH_X86_64
- #if defined(__ANDROID__)
- return true;
- #else
- return cpuinfo_isa.sse4_1;
- #endif
- #elif CPUINFO_ARCH_X86
- return cpuinfo_isa.sse4_1;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_sse4_2(void) {
- #if CPUINFO_ARCH_X86_64
- #if defined(__ANDROID__)
- return true;
- #else
- return cpuinfo_isa.sse4_2;
- #endif
- #elif CPUINFO_ARCH_X86
- return cpuinfo_isa.sse4_2;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_sse4a(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.sse4a;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_misaligned_sse(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.misaligned_sse;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avxvnni(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avxvnni;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_fma3(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.fma3;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_fma4(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.fma4;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_xop(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.xop;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_f16c(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.f16c;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx2(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx2;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx512f(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx512f;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx512pf(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx512pf;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx512er(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx512er;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx512cd(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx512cd;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx512dq(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx512dq;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx512bw(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx512bw;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx512vl(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx512vl;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx512ifma(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx512ifma;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx512vbmi(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx512vbmi;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx512vbmi2(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx512vbmi2;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx512bitalg(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx512bitalg;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx512vpopcntdq(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx512vpopcntdq;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx512vnni(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx512vnni;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx512bf16(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx512bf16;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx512fp16(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx512fp16;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx512vp2intersect(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx512vp2intersect;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx512_4vnniw(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx512_4vnniw;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_avx512_4fmaps(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.avx512_4fmaps;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_hle(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.hle;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_rtm(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.rtm;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_xtest(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.xtest;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_mpx(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.mpx;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_cmov(void) {
- #if CPUINFO_ARCH_X86_64
- return true;
- #elif CPUINFO_ARCH_X86
- return cpuinfo_isa.cmov;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_cmpxchg8b(void) {
- #if CPUINFO_ARCH_X86_64
- return true;
- #elif CPUINFO_ARCH_X86
- return cpuinfo_isa.cmpxchg8b;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_cmpxchg16b(void) {
- #if CPUINFO_ARCH_X86_64
- return cpuinfo_isa.cmpxchg16b;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_clwb(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.clwb;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_movbe(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.movbe;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_lahf_sahf(void) {
- #if CPUINFO_ARCH_X86
- return true;
- #elif CPUINFO_ARCH_X86_64
- return cpuinfo_isa.lahf_sahf;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_lzcnt(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.lzcnt;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_popcnt(void) {
- #if CPUINFO_ARCH_X86_64
- #if defined(__ANDROID__)
- return true;
- #else
- return cpuinfo_isa.popcnt;
- #endif
- #elif CPUINFO_ARCH_X86
- return cpuinfo_isa.popcnt;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_tbm(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.tbm;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_bmi(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.bmi;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_bmi2(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.bmi2;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_adx(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.adx;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_aes(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.aes;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_vaes(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.vaes;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_pclmulqdq(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.pclmulqdq;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_vpclmulqdq(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.vpclmulqdq;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_gfni(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.gfni;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_rdrand(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.rdrand;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_rdseed(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.rdseed;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_x86_sha(void) {
- #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64
- return cpuinfo_isa.sha;
- #else
- return false;
- #endif
- }
- #if CPUINFO_ARCH_ARM || CPUINFO_ARCH_ARM64
- /* This structure is not a part of stable API. Use cpuinfo_has_arm_* functions instead. */
- struct cpuinfo_arm_isa {
- #if CPUINFO_ARCH_ARM
- bool thumb;
- bool thumb2;
- bool thumbee;
- bool jazelle;
- bool armv5e;
- bool armv6;
- bool armv6k;
- bool armv7;
- bool armv7mp;
- bool armv8;
- bool idiv;
- bool vfpv2;
- bool vfpv3;
- bool d32;
- bool fp16;
- bool fma;
- bool wmmx;
- bool wmmx2;
- bool neon;
- #endif
- #if CPUINFO_ARCH_ARM64
- bool atomics;
- bool bf16;
- bool sve;
- bool sve2;
- bool i8mm;
- #endif
- bool rdm;
- bool fp16arith;
- bool dot;
- bool jscvt;
- bool fcma;
- bool fhm;
- bool aes;
- bool sha1;
- bool sha2;
- bool pmull;
- bool crc32;
- };
- extern struct cpuinfo_arm_isa cpuinfo_isa;
- #endif
- static inline bool cpuinfo_has_arm_thumb(void) {
- #if CPUINFO_ARCH_ARM
- return cpuinfo_isa.thumb;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_thumb2(void) {
- #if CPUINFO_ARCH_ARM
- return cpuinfo_isa.thumb2;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_v5e(void) {
- #if CPUINFO_ARCH_ARM
- return cpuinfo_isa.armv5e;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_v6(void) {
- #if CPUINFO_ARCH_ARM
- return cpuinfo_isa.armv6;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_v6k(void) {
- #if CPUINFO_ARCH_ARM
- return cpuinfo_isa.armv6k;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_v7(void) {
- #if CPUINFO_ARCH_ARM
- return cpuinfo_isa.armv7;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_v7mp(void) {
- #if CPUINFO_ARCH_ARM
- return cpuinfo_isa.armv7mp;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_v8(void) {
- #if CPUINFO_ARCH_ARM64
- return true;
- #elif CPUINFO_ARCH_ARM
- return cpuinfo_isa.armv8;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_idiv(void) {
- #if CPUINFO_ARCH_ARM64
- return true;
- #elif CPUINFO_ARCH_ARM
- return cpuinfo_isa.idiv;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_vfpv2(void) {
- #if CPUINFO_ARCH_ARM
- return cpuinfo_isa.vfpv2;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_vfpv3(void) {
- #if CPUINFO_ARCH_ARM64
- return true;
- #elif CPUINFO_ARCH_ARM
- return cpuinfo_isa.vfpv3;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_vfpv3_d32(void) {
- #if CPUINFO_ARCH_ARM64
- return true;
- #elif CPUINFO_ARCH_ARM
- return cpuinfo_isa.vfpv3 && cpuinfo_isa.d32;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_vfpv3_fp16(void) {
- #if CPUINFO_ARCH_ARM64
- return true;
- #elif CPUINFO_ARCH_ARM
- return cpuinfo_isa.vfpv3 && cpuinfo_isa.fp16;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_vfpv3_fp16_d32(void) {
- #if CPUINFO_ARCH_ARM64
- return true;
- #elif CPUINFO_ARCH_ARM
- return cpuinfo_isa.vfpv3 && cpuinfo_isa.fp16 && cpuinfo_isa.d32;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_vfpv4(void) {
- #if CPUINFO_ARCH_ARM64
- return true;
- #elif CPUINFO_ARCH_ARM
- return cpuinfo_isa.vfpv3 && cpuinfo_isa.fma;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_vfpv4_d32(void) {
- #if CPUINFO_ARCH_ARM64
- return true;
- #elif CPUINFO_ARCH_ARM
- return cpuinfo_isa.vfpv3 && cpuinfo_isa.fma && cpuinfo_isa.d32;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_fp16_arith(void) {
- #if CPUINFO_ARCH_ARM || CPUINFO_ARCH_ARM64
- return cpuinfo_isa.fp16arith;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_bf16(void) {
- #if CPUINFO_ARCH_ARM64
- return cpuinfo_isa.bf16;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_wmmx(void) {
- #if CPUINFO_ARCH_ARM
- return cpuinfo_isa.wmmx;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_wmmx2(void) {
- #if CPUINFO_ARCH_ARM
- return cpuinfo_isa.wmmx2;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_neon(void) {
- #if CPUINFO_ARCH_ARM64
- return true;
- #elif CPUINFO_ARCH_ARM
- return cpuinfo_isa.neon;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_neon_fp16(void) {
- #if CPUINFO_ARCH_ARM64
- return true;
- #elif CPUINFO_ARCH_ARM
- return cpuinfo_isa.neon && cpuinfo_isa.fp16;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_neon_fma(void) {
- #if CPUINFO_ARCH_ARM64
- return true;
- #elif CPUINFO_ARCH_ARM
- return cpuinfo_isa.neon && cpuinfo_isa.fma;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_neon_v8(void) {
- #if CPUINFO_ARCH_ARM64
- return true;
- #elif CPUINFO_ARCH_ARM
- return cpuinfo_isa.neon && cpuinfo_isa.armv8;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_atomics(void) {
- #if CPUINFO_ARCH_ARM64
- return cpuinfo_isa.atomics;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_neon_rdm(void) {
- #if CPUINFO_ARCH_ARM || CPUINFO_ARCH_ARM64
- return cpuinfo_isa.rdm;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_neon_fp16_arith(void) {
- #if CPUINFO_ARCH_ARM
- return cpuinfo_isa.neon && cpuinfo_isa.fp16arith;
- #elif CPUINFO_ARCH_ARM64
- return cpuinfo_isa.fp16arith;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_fhm(void) {
- #if CPUINFO_ARCH_ARM || CPUINFO_ARCH_ARM64
- return cpuinfo_isa.fhm;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_neon_dot(void) {
- #if CPUINFO_ARCH_ARM || CPUINFO_ARCH_ARM64
- return cpuinfo_isa.dot;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_neon_bf16(void) {
- #if CPUINFO_ARCH_ARM64
- return cpuinfo_isa.bf16;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_jscvt(void) {
- #if CPUINFO_ARCH_ARM || CPUINFO_ARCH_ARM64
- return cpuinfo_isa.jscvt;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_fcma(void) {
- #if CPUINFO_ARCH_ARM || CPUINFO_ARCH_ARM64
- return cpuinfo_isa.fcma;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_i8mm(void) {
- #if CPUINFO_ARCH_ARM64
- return cpuinfo_isa.i8mm;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_aes(void) {
- #if CPUINFO_ARCH_ARM || CPUINFO_ARCH_ARM64
- return cpuinfo_isa.aes;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_sha1(void) {
- #if CPUINFO_ARCH_ARM || CPUINFO_ARCH_ARM64
- return cpuinfo_isa.sha1;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_sha2(void) {
- #if CPUINFO_ARCH_ARM || CPUINFO_ARCH_ARM64
- return cpuinfo_isa.sha2;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_pmull(void) {
- #if CPUINFO_ARCH_ARM || CPUINFO_ARCH_ARM64
- return cpuinfo_isa.pmull;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_crc32(void) {
- #if CPUINFO_ARCH_ARM || CPUINFO_ARCH_ARM64
- return cpuinfo_isa.crc32;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_sve(void) {
- #if CPUINFO_ARCH_ARM64
- return cpuinfo_isa.sve;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_sve_bf16(void) {
- #if CPUINFO_ARCH_ARM64
- return cpuinfo_isa.sve && cpuinfo_isa.bf16;
- #else
- return false;
- #endif
- }
- static inline bool cpuinfo_has_arm_sve2(void) {
- #if CPUINFO_ARCH_ARM64
- return cpuinfo_isa.sve2;
- #else
- return false;
- #endif
- }
- const struct cpuinfo_processor* CPUINFO_ABI cpuinfo_get_processors(void);
- const struct cpuinfo_core* CPUINFO_ABI cpuinfo_get_cores(void);
- const struct cpuinfo_cluster* CPUINFO_ABI cpuinfo_get_clusters(void);
- const struct cpuinfo_package* CPUINFO_ABI cpuinfo_get_packages(void);
- const struct cpuinfo_uarch_info* CPUINFO_ABI cpuinfo_get_uarchs(void);
- const struct cpuinfo_cache* CPUINFO_ABI cpuinfo_get_l1i_caches(void);
- const struct cpuinfo_cache* CPUINFO_ABI cpuinfo_get_l1d_caches(void);
- const struct cpuinfo_cache* CPUINFO_ABI cpuinfo_get_l2_caches(void);
- const struct cpuinfo_cache* CPUINFO_ABI cpuinfo_get_l3_caches(void);
- const struct cpuinfo_cache* CPUINFO_ABI cpuinfo_get_l4_caches(void);
- const struct cpuinfo_processor* CPUINFO_ABI cpuinfo_get_processor(uint32_t index);
- const struct cpuinfo_core* CPUINFO_ABI cpuinfo_get_core(uint32_t index);
- const struct cpuinfo_cluster* CPUINFO_ABI cpuinfo_get_cluster(uint32_t index);
- const struct cpuinfo_package* CPUINFO_ABI cpuinfo_get_package(uint32_t index);
- const struct cpuinfo_uarch_info* CPUINFO_ABI cpuinfo_get_uarch(uint32_t index);
- const struct cpuinfo_cache* CPUINFO_ABI cpuinfo_get_l1i_cache(uint32_t index);
- const struct cpuinfo_cache* CPUINFO_ABI cpuinfo_get_l1d_cache(uint32_t index);
- const struct cpuinfo_cache* CPUINFO_ABI cpuinfo_get_l2_cache(uint32_t index);
- const struct cpuinfo_cache* CPUINFO_ABI cpuinfo_get_l3_cache(uint32_t index);
- const struct cpuinfo_cache* CPUINFO_ABI cpuinfo_get_l4_cache(uint32_t index);
- uint32_t CPUINFO_ABI cpuinfo_get_processors_count(void);
- uint32_t CPUINFO_ABI cpuinfo_get_cores_count(void);
- uint32_t CPUINFO_ABI cpuinfo_get_clusters_count(void);
- uint32_t CPUINFO_ABI cpuinfo_get_packages_count(void);
- uint32_t CPUINFO_ABI cpuinfo_get_uarchs_count(void);
- uint32_t CPUINFO_ABI cpuinfo_get_l1i_caches_count(void);
- uint32_t CPUINFO_ABI cpuinfo_get_l1d_caches_count(void);
- uint32_t CPUINFO_ABI cpuinfo_get_l2_caches_count(void);
- uint32_t CPUINFO_ABI cpuinfo_get_l3_caches_count(void);
- uint32_t CPUINFO_ABI cpuinfo_get_l4_caches_count(void);
- /**
- * Returns upper bound on cache size.
- */
- uint32_t CPUINFO_ABI cpuinfo_get_max_cache_size(void);
- /**
- * Identify the logical processor that executes the current thread.
- *
- * There is no guarantee that the thread will stay on the same logical processor for any time.
- * Callers should treat the result as only a hint, and be prepared to handle NULL return value.
- */
- const struct cpuinfo_processor* CPUINFO_ABI cpuinfo_get_current_processor(void);
- /**
- * Identify the core that executes the current thread.
- *
- * There is no guarantee that the thread will stay on the same core for any time.
- * Callers should treat the result as only a hint, and be prepared to handle NULL return value.
- */
- const struct cpuinfo_core* CPUINFO_ABI cpuinfo_get_current_core(void);
- /**
- * Identify the microarchitecture index of the core that executes the current thread.
- * If the system does not support such identification, the function returns 0.
- *
- * There is no guarantee that the thread will stay on the same type of core for any time.
- * Callers should treat the result as only a hint.
- */
- uint32_t CPUINFO_ABI cpuinfo_get_current_uarch_index(void);
- /**
- * Identify the microarchitecture index of the core that executes the current thread.
- * If the system does not support such identification, the function returns the user-specified default value.
- *
- * There is no guarantee that the thread will stay on the same type of core for any time.
- * Callers should treat the result as only a hint.
- */
- uint32_t CPUINFO_ABI cpuinfo_get_current_uarch_index_with_default(uint32_t default_uarch_index);
- #ifdef __cplusplus
- } /* extern "C" */
- #endif
- #endif /* CPUINFO_H */
|