1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/compiler/asm.v
Alexander Medvednikov 843bb6dac1 cgen: lots of fixes
2020-03-15 00:46:08 +01:00

36 lines
738 B
V

// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module compiler
fn (p mut Parser) inline_asm() {
if !p.inside_unsafe {
p.error('asm() needs to be run inside `unsafe {}`')
}
p.next()
p.check(.lcbr)
s := p.check_string()
p.genln('asm("$s"')
for p.tok == .string{
p.genln('"$p.lit"')
p.next()
}
for p.tok == .colon {
p.next()
arg := p.check_string()
p.gen(': "$arg"')
if p.tok == .lpar {
p.next()
var_name := p.check_name()
if !p.known_var(var_name) {
p.error('unknown variable `$var_name`')
}
p.check(.rpar)
p.genln('($var_name)')
}
}
p.genln(');')
p.check(.rcbr)
}