Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | " Vim syntax file |
| 2 | " Language: GNU Assembler |
Bram Moolenaar | 555cdc2 | 2010-01-12 21:31:21 +0100 | [diff] [blame] | 3 | " Maintainer: Erik Wognsen <erik.wognsen@gmail.com> |
| 4 | " Previous maintainer: |
| 5 | " Kevin Dahlhausen <kdahlhaus@yahoo.com> |
Bram Moolenaar | 92dff18 | 2014-02-11 19:15:50 +0100 | [diff] [blame] | 6 | " Last Change: 2014 Feb 04 |
Bram Moolenaar | 00a927d | 2010-05-14 23:24:24 +0200 | [diff] [blame] | 7 | |
| 8 | " Thanks to Ori Avtalion for feedback on the comment markers! |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 9 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 10 | " quit when a syntax file was already loaded |
| 11 | if exists("b:current_syntax") |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 12 | finish |
| 13 | endif |
| 14 | |
Bram Moolenaar | 6ee8d89 | 2012-01-10 14:55:01 +0100 | [diff] [blame] | 15 | let s:cpo_save = &cpo |
| 16 | set cpo&vim |
| 17 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 18 | syn case ignore |
| 19 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 20 | " storage types |
| 21 | syn match asmType "\.long" |
| 22 | syn match asmType "\.ascii" |
| 23 | syn match asmType "\.asciz" |
| 24 | syn match asmType "\.byte" |
| 25 | syn match asmType "\.double" |
| 26 | syn match asmType "\.float" |
| 27 | syn match asmType "\.hword" |
| 28 | syn match asmType "\.int" |
| 29 | syn match asmType "\.octa" |
| 30 | syn match asmType "\.quad" |
| 31 | syn match asmType "\.short" |
| 32 | syn match asmType "\.single" |
| 33 | syn match asmType "\.space" |
| 34 | syn match asmType "\.string" |
| 35 | syn match asmType "\.word" |
| 36 | |
| 37 | syn match asmLabel "[a-z_][a-z0-9_]*:"he=e-1 |
| 38 | syn match asmIdentifier "[a-z_][a-z0-9_]*" |
| 39 | |
| 40 | " Various #'s as defined by GAS ref manual sec 3.6.2.1 |
| 41 | " Technically, the first decNumber def is actually octal, |
| 42 | " since the value of 0-7 octal is the same as 0-7 decimal, |
Bram Moolenaar | 6ee8d89 | 2012-01-10 14:55:01 +0100 | [diff] [blame] | 43 | " I (Kevin) prefer to map it as decimal: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 44 | syn match decNumber "0\+[1-7]\=[\t\n$,; ]" |
| 45 | syn match decNumber "[1-9]\d*" |
| 46 | syn match octNumber "0[0-7][0-7]\+" |
| 47 | syn match hexNumber "0[xX][0-9a-fA-F]\+" |
| 48 | syn match binNumber "0[bB][0-1]*" |
| 49 | |
Bram Moolenaar | 00a927d | 2010-05-14 23:24:24 +0200 | [diff] [blame] | 50 | syn keyword asmTodo contained TODO |
| 51 | |
Bram Moolenaar | 6ee8d89 | 2012-01-10 14:55:01 +0100 | [diff] [blame] | 52 | |
| 53 | " GAS supports one type of multi line comments: |
Bram Moolenaar | 00a927d | 2010-05-14 23:24:24 +0200 | [diff] [blame] | 54 | syn region asmComment start="/\*" end="\*/" contains=asmTodo |
Bram Moolenaar | 6ee8d89 | 2012-01-10 14:55:01 +0100 | [diff] [blame] | 55 | |
Bram Moolenaar | 53bfca2 | 2012-04-13 23:04:47 +0200 | [diff] [blame] | 56 | " GAS (undocumentedly?) supports C++ style comments. Unlike in C/C++ however, |
| 57 | " a backslash ending a C++ style comment does not extend the comment to the |
| 58 | " next line (hence the syntax region does not define 'skip="\\$"') |
| 59 | syn region asmComment start="//" end="$" keepend contains=asmTodo |
| 60 | |
Bram Moolenaar | 6ee8d89 | 2012-01-10 14:55:01 +0100 | [diff] [blame] | 61 | " Line comment characters depend on the target architecture and command line |
| 62 | " options and some comments may double as logical line number directives or |
| 63 | " preprocessor commands. This situation is described at |
| 64 | " http://sourceware.org/binutils/docs-2.22/as/Comments.html |
| 65 | " Some line comment characters have other meanings for other targets. For |
| 66 | " example, .type directives may use the `@' character which is also an ARM |
| 67 | " comment marker. |
| 68 | " As a compromise to accommodate what I arbitrarily assume to be the most |
| 69 | " frequently used features of the most popular architectures (and also the |
| 70 | " non-GNU assembly languages that use this syntax file because their asm files |
| 71 | " are also named *.asm), the following are used as line comment characters: |
Bram Moolenaar | 00a927d | 2010-05-14 23:24:24 +0200 | [diff] [blame] | 72 | syn match asmComment "[#;!|].*" contains=asmTodo |
Bram Moolenaar | 6ee8d89 | 2012-01-10 14:55:01 +0100 | [diff] [blame] | 73 | |
| 74 | " Side effects of this include: |
| 75 | " - When `;' is used to separate statements on the same line (many targets |
| 76 | " support this), all statements except the first get highlighted as |
| 77 | " comments. As a remedy, remove `;' from the above. |
| 78 | " - ARM comments are not highlighted correctly. For ARM, uncomment the |
| 79 | " following two lines and comment the one above. |
| 80 | "syn match asmComment "@.*" contains=asmTodo |
| 81 | "syn match asmComment "^#.*" contains=asmTodo |
| 82 | |
| 83 | " Advanced users of specific architectures will probably want to change the |
| 84 | " comment highlighting or use a specific, more comprehensive syntax file. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 85 | |
| 86 | syn match asmInclude "\.include" |
| 87 | syn match asmCond "\.if" |
| 88 | syn match asmCond "\.else" |
| 89 | syn match asmCond "\.endif" |
| 90 | syn match asmMacro "\.macro" |
| 91 | syn match asmMacro "\.endm" |
| 92 | |
Bram Moolenaar | 92dff18 | 2014-02-11 19:15:50 +0100 | [diff] [blame] | 93 | " Assembler directives start with a '.' and may contain upper case (e.g., |
| 94 | " .ABORT), numbers (e.g., .p2align), dash (e.g., .app-file) and underscore in |
| 95 | " CFI directives (e.g., .cfi_startproc). This will also match labels starting |
| 96 | " with '.', including the GCC auto-generated '.L' labels. |
| 97 | syn match asmDirective "\.[A-Za-z][0-9A-Za-z-_]*" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 98 | |
| 99 | |
| 100 | syn case match |
| 101 | |
| 102 | " Define the default highlighting. |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 103 | " Only when an item doesn't have highlighting yet |
| 104 | command -nargs=+ HiLink hi def link <args> |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 105 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 106 | " The default methods for highlighting. Can be overridden later |
| 107 | HiLink asmSection Special |
| 108 | HiLink asmLabel Label |
| 109 | HiLink asmComment Comment |
| 110 | HiLink asmTodo Todo |
| 111 | HiLink asmDirective Statement |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 112 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 113 | HiLink asmInclude Include |
| 114 | HiLink asmCond PreCondit |
| 115 | HiLink asmMacro Macro |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 116 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 117 | HiLink hexNumber Number |
| 118 | HiLink decNumber Number |
| 119 | HiLink octNumber Number |
| 120 | HiLink binNumber Number |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 121 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 122 | HiLink asmIdentifier Identifier |
| 123 | HiLink asmType Type |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 124 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 125 | delcommand HiLink |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 126 | |
| 127 | let b:current_syntax = "asm" |
| 128 | |
Bram Moolenaar | 6ee8d89 | 2012-01-10 14:55:01 +0100 | [diff] [blame] | 129 | let &cpo = s:cpo_save |
| 130 | unlet s:cpo_save |
| 131 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 132 | " vim: ts=8 |