-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
llvm.js
28 lines (27 loc) · 867 Bytes
/
llvm.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// @ts-nocheck
llvm.displayName = 'llvm'
llvm.aliases = []
/** @type {import('../core.js').Syntax} */
export default function llvm(Prism) {
;(function (Prism) {
Prism.languages.llvm = {
comment: /;.*/,
string: {
pattern: /"[^"]*"/,
greedy: true
},
boolean: /\b(?:false|true)\b/,
variable: /[%@!#](?:(?!\d)(?:[-$.\w]|\\[a-f\d]{2})+|\d+)/i,
label: /(?!\d)(?:[-$.\w]|\\[a-f\d]{2})+:/i,
type: {
pattern:
/\b(?:double|float|fp128|half|i[1-9]\d*|label|metadata|ppc_fp128|token|void|x86_fp80|x86_mmx)\b/,
alias: 'class-name'
},
keyword: /\b[a-z_][a-z_0-9]*\b/,
number:
/[+-]?\b\d+(?:\.\d+)?(?:[eE][+-]?\d+)?\b|\b0x[\dA-Fa-f]+\b|\b0xK[\dA-Fa-f]{20}\b|\b0x[ML][\dA-Fa-f]{32}\b|\b0xH[\dA-Fa-f]{4}\b/,
punctuation: /[{}[\];(),.!*=<>]/
}
})(Prism)
}