" Vim syntax file " Language: mlir " Maintainer: The MLIR team, http://github.com/tensorflow/mlir/ " Version: $Revision$ " Some parts adapted from the LLVM vim syntax file. if version < 600 syntax clear elseif exists("b:current_syntax") finish endif syn case match " Types. syn keyword mlirType index f16 f32 f64 " Integer type. syn match mlirType /\/ " Elemental types inside memref, tensor, or vector types. syn match mlirType /x\s*\zs\(f16\|f32\|f64\|i\d\+\)/ " Shaped types. syn match mlirType /\/ syn match mlirType /\/ syn match mlirType /\/ " vector types inside memref or tensor. syn match mlirType /x\s*\zsvector/ " Operations. " Core ops (not exhaustive yet). " TODO: the list is not exhaustive. syn keyword mlirOps alloc addf addi call call_indirect cmpi constant dealloc dma_start dma_wait dim extract_element for getTensor if load memref_cast mulf muli splat store select subf subi tensor_cast " Affine ops. syn match mlirOps /\/ syn match mlirOps /\/ syn match mlirOps /\/ syn match mlirOps /\/ syn match mlirOps /\/ syn match mlirOps /\/ syn match mlirOps /\/ " TODO: dialect name prefixed ops (llvm or std). " Keywords. syn keyword mlirKeyword \ else \ func \ return \ step \ to " Misc syntax. syn match mlirNumber /-\?\<\d\+\>/ " Match numbers even in shaped types. syn match mlirNumber /-\?\<\d\+\ze\s*x/ syn match mlirNumber /x\s*\zs-\?\d\+\ze\s*x/ syn match mlirFloat /-\?\<\d\+\.\d*\(e[+-]\d\+\)\?\>/ syn match mlirFloat /\<0x\x\+\>/ syn keyword mlirBoolean true false syn match mlirComment /\/\/.*$/ syn region mlirString start=/"/ skip=/\\"/ end=/"/ syn match mlirLabel /[-a-zA-Z$._][-a-zA-Z$._0-9]*:/ syn match mlirIdentifier /[%@][a-zA-Z$._-][a-zA-Z0-9$._-]*/ syn match mlirIdentifier /[%@!]\d\+\>/ syn match mlirMapSetOutline "#.*$" " Syntax-highlight lit test commands and bug numbers. syn match mlirSpecialComment /\/\/\s*RUN:.*$/ syn match mlirSpecialComment /\/\/\s*CHECK:.*$/ syn match mlirSpecialComment "\v\/\/\s*CHECK-(NEXT|NOT|DAG|SAME|LABEL):.*$" syn match mlirSpecialComment /\/\/\s*expected-error.*$/ syn match mlirSpecialComment /\/\/\s*expected-remark.*$/ syn match mlirSpecialComment /;\s*XFAIL:.*$/ syn match mlirSpecialComment /\/\/\s*PR\d*\s*$/ syn match mlirSpecialComment /\/\/\s*REQUIRES:.*$/ if version >= 508 || !exists("did_c_syn_inits") if version < 508 let did_c_syn_inits = 1 command -nargs=+ HiLink hi link else command -nargs=+ HiLink hi def link endif HiLink mlirType Type HiLink mlirOps Statement HiLink mlirMapSetOutline PreProc HiLink mlirNumber Number HiLink mlirComment Comment HiLink mlirString String HiLink mlirLabel Label HiLink mlirKeyword Keyword HiLink mlirBoolean Boolean HiLink mlirFloat Float HiLink mlirConstant Constant HiLink mlirSpecialComment SpecialComment HiLink mlirIdentifier Identifier delcommand HiLink endif let b:current_syntax = "mlir"