Home | History | Annotate | Download | only in vim

Lines Matching refs:syn

12 syn case match
17 syn keyword llvmType void half float double x86_fp80 fp128 ppc_fp128
18 syn keyword llvmType label metadata x86_mmx
19 syn keyword llvmType type label opaque
20 syn match llvmType /\<i\d\+\>/
25 syn keyword llvmStatement add addrspacecast alloca and arcp ashr atomicrmw
26 syn keyword llvmStatement bitcast br call cmpxchg eq exact extractelement
27 syn keyword llvmStatement extractvalue fadd fast fcmp fdiv fence fmul fpext
28 syn keyword llvmStatement fptosi fptoui fptrunc free frem fsub getelementptr
29 syn keyword llvmStatement icmp inbounds indirectbr insertelement insertvalue
30 syn keyword llvmStatement inttoptr invoke landingpad load lshr malloc max min
31 syn keyword llvmStatement mul nand ne ninf nnan nsw nsz nuw oeq oge ogt ole
32 syn keyword llvmStatement olt one or ord phi ptrtoint resume ret sdiv select
33 syn keyword llvmStatement sext sge sgt shl shufflevector sitofp sle slt srem
34 syn keyword llvmStatement store sub switch trunc udiv ueq uge ugt uitofp ule ult
35 syn keyword llvmStatement umax umin une uno unreachable unwind urem va_arg
36 syn keyword llvmStatement xchg xor zext
39 syn keyword llvmKeyword acq_rel acquire sanitize_address addrspace alias align
40 syn keyword llvmKeyword alignstack alwaysinline appending arm_aapcs_vfpcc
41 syn keyword llvmKeyword arm_aapcscc arm_apcscc asm atomic available_externally
42 syn keyword llvmKeyword blockaddress byval c catch cc ccc cleanup coldcc common
43 syn keyword llvmKeyword constant datalayout declare default define deplibs
44 syn keyword llvmKeyword distinct dllexport dllimport except extern_weak external
45 syn keyword llvmKeyword externally_initialized fastcc filter gc global hidden
46 syn keyword llvmKeyword initialexec inlinehint inreg intel_ocl_bicc inteldialect
47 syn keyword llvmKeyword internal linkonce linkonce_odr localdynamic localexec
48 syn keyword llvmKeyword minsize module monotonic msp430_intrcc naked nest
49 syn keyword llvmKeyword noalias nocapture noimplicitfloat noinline nonlazybind
50 syn keyword llvmKeyword noredzone noreturn nounwind optnone optsize personality
51 syn keyword llvmKeyword private protected ptx_device ptx_kernel readnone
52 syn keyword llvmKeyword readonly release returns_twice sanitize_thread
53 syn keyword llvmKeyword sanitize_memory section seq_cst sideeffect signext
54 syn keyword llvmKeyword singlethread spir_func spir_kernel sret ssp sspreq
55 syn keyword llvmKeyword sspstrong tail target thread_local to triple
56 syn keyword llvmKeyword unnamed_addr unordered uwtable volatile weak weak_odr
57 syn keyword llvmKeyword x86_fastcallcc x86_stdcallcc x86_thiscallcc
58 syn keyword llvmKeyword x86_64_sysvcc x86_64_win64cc zeroext uselistorder
59 syn keyword llvmKeyword uselistorder_bb
62 syn keyword llvmError getresult begin end
65 syn match llvmNoName /[%@!]\d\+\>/
66 syn match llvmNumber /-\?\<\d\+\>/
67 syn match llvmFloat /-\?\<\d\+\.\d*\(e[+-]\d\+\)\?\>/
68 syn match llvmFloat /\<0x\x\+\>/
69 syn keyword llvmBoolean true false
70 syn keyword llvmConstant zeroinitializer undef null
71 syn match llvmComment /;.*$/
72 syn region llvmString start=/"/ skip=/\\"/ end=/"/
73 syn match llvmLabel /[-a-zA-Z$._][-a-zA-Z$._0-9]*:/
74 syn match llvmIdentifier /[%@][-a-zA-Z$._][-a-zA-Z$._0-9]*/
77 syn match llvmIdentifier /![-a-zA-Z$._][-a-zA-Z$._0-9]*\ze\s*$/
78 syn match llvmIdentifier /![-a-zA-Z$._][-a-zA-Z$._0-9]*\ze\s*[=!]/
79 syn match llvmType /!\zs\a\+\ze\s*(/
80 syn match llvmConstant /\<DW_TAG_[a-z_]\+\>/
81 syn match llvmConstant /\<DW_ATE_[a-zA-Z_]\+\>/
82 syn match llvmConstant /\<DW_OP_[a-zA-Z0-9_]\+\>/
83 syn match llvmConstant /\<DW_LANG_[a-zA-Z0-9_]\+\>/
84 syn match llvmConstant /\<DW_VIRTUALITY_[a-z_]\+\>/
85 syn match llvmConstant /\<DIFlag[A-Za-z]\+\>/
88 syn match llvmSpecialComment /;\s*RUN:.*$/
89 syn match llvmSpecialComment /;\s*PR\d*\s*$/
90 syn match llvmSpecialComment /;\s*END\.\s*$/
91 syn match llvmSpecialComment /;\s*XFAIL:.*$/