/
redgpu
/
ispc
Обзор
Документация
Войти
/
redgpu
/
ispc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
test
contrib/ispc.vim
64 строки
3 KB
Dmitry Babokin
Update VIM syntax file
28 фев 2023, 09:01
28 фев 2023, 09:01
c1835af
Код
Авторство
О чём код?
" Vim syntax file " Language: ISPC " Maintainer: Dmitry Babokin <dmitry.y.babokin@intel.com> " Previous Maintainer: Andreas Wendleder <andreas.wendleder@gmail.com> " Last Change: February 27, 2023 " Quit when a syntax file was already loaded if exists("b:current_syntax") finish endif " Read the C syntax to start with runtime! syntax/c.vim unlet b:current_syntax " New keywords syn keyword ispcStatement assert assume cbreak ccontinue creturn delete launch new print soa sync task unmasked syn keyword ispcConditional cif syn keyword ispcRepeat cdo cfor cwhile foreach foreach_tiled foreach_unique foreach_active syn keyword ispcBuiltin programCount programIndex taskCount taskCount0 taskCount1 taskCount3 taskIndex taskIndex0 taskIndex1 taskIndex2 syn keyword ispcType export uniform varying int8 int16 int32 int64 uint8 uint16 uint32 uint64 float16 syn keyword ispcOperator operator in syn keyword ispcStorageClass noinline __vectorcall __regcall syn keyword ispcTemplates template typename syn keyword ispcDefine ISPC ISPC_POINTER_SIZE ISPC_MAJOR_VERSION ISPC_MINOR_VERSION TARGET_WIDTH PI \ TARGET_ELEMENT_WIDTH ISPC_UINT_IS_DEFINED ISPC_FP16_SUPPORTED ISPC_FP64_SUPPORTED ISPC_LLVM_INTRINSICS_ENABLED \ ISPC_TARGET_NEON ISPC_TARGET_SSE2 ISPC_TARGET_SSE4 ISPC_TARGET_AVX ISPC_TARGET_AVX2 ISPC_TARGET_AVX512KNL ISPC_TARGET_AVX512SKX \ ISPC_TARGET_AVX512SPR " LLVM intrinsics are ISPC intrinsics syn match ispcLLVMIntrin display "@llvm\(\.\w\+\)\+" " ... operator syn match ispcOperator display "\.\.\." " Integer literals (in binary, decimal, or hex form), with k/M/G suffix and u/U, l/L, ll/LL suffixes. syn match cNumber display contained "\(\d\+\|0[xX]\x\+\|0[bB][01]\+\)[kMG]\=\([uU]\=\([lL]\|ll\|LL\)\|\([lL]\|ll\|LL\)\=[uU]\)\>" " Decimal floating point literal with optional suffix syn match cFloat display contained "\(\(\d\+\.\d*\)\|\(\.\d\+\)\)\([fF]16\|[dDfF]\)\=\>" " [Deprecated] decimal floating point literal with "f" suffix, but " without radix separator syn match cFloat display contained "\d\+[fF]\>" " Scientific notation floating point literals with optional suffix syn match cFloat display contained "\(\(\d\+\.\d*\)\|\(\.\d\+\)\|\d\+\)[eE][-+]\=\d\+\([fF]16\|[dDfF]\)\=\>" " Hexadecimal floating point numbers - subset of C++17 hexadecimals, with optional suffix syn match cFloat display contained "0[xX][01]\(.\x\+\)\=[pP][-+]\=\d\+\([fF]16\|[dDfF]\)\=\>" " "Fortran double format" - same as scientific notation, but with d/D instead of e/E syn match cFloat display contained "\(\(\d\+\.\d*\)\|\(\.\d\+\)\|\d\+\)[dD][-+]\=\d\+\>" " Default highlighting command -nargs=+ HiLink hi def link <args> HiLink ispcStatement Statement HiLink ispcLLVMIntrin Statement HiLink ispcConditional Conditional HiLink ispcRepeat Repeat HiLink ispcBuiltin Statement HiLink ispcType Type HiLink ispcTemplates Type HiLink ispcOperator Operator HiLink ispcDefine Define HiLink ispcStorageClass StorageClass delcommand HiLink let b:current_syntax = "ispc"