准引用LLVM中的引用变量

时间:2015-01-11 09:37:59

标签: haskell happy

如何将变量传递给quasiquoted部分?

我正在使用llvm-quote-general,并希望将Type传递给我使用quasiquoter构建的指令。

我可以从文本构建指令:

alloci64 :: Instruction
alloci64 = [lli|alloc i64|]

我希望能够传入一种类型。这样做的语法是什么?

alloc :: Type -> Instruction
alloc t = [lli|alloc t|]

我已经尝试了以下所有方法,但没有一个有效。它们会产生lexer error s。

[lli|alloc $t|]
[lli|alloc $$t|]
[lli|alloc $t$|]
[lli|alloc $$t$$|]

图书馆中的quasiquoter很高兴。通过源代码查看,与反引号相关的令牌最接近的是符号happy_dollar_dollar,它似乎无法在任何地方定义。

编辑:我解决了Type s的问题;一个例子是[lli|alloc $type:t]

操作数

我用Type解决了问题,但仍然无法弄清楚如何反对引用一般事物。我想用Operand建立一个指令。试图这样做会导致错误。

add' :: Operand -> Operand -> Instruction
add' a b = [lli|add $opr:a $opr:b|]
                    ^
                    parse error on `ANTI_OPR'

pre-happy source表明以下所有内容,包括$opr:都应该做点什么

<0> {
 "$dl:"           / { allowAnti } { lexAnti Tanti_dl }
 "$dlM:"           / { allowAnti } { lexAntiM Tanti_dl }
 "$tt:"           / { allowAnti } { lexAnti Tanti_tt }
 "$ttM:"           / { allowAnti } { lexAntiM Tanti_tt }
 "$def:"          / { allowAnti } { lexAnti Tanti_def }
 "$defM:"          / { allowAnti } { lexAntiM Tanti_def }
 "$defs:"         / { allowAnti } { lexAnti Tanti_defs }
 "$defsM:"         / { allowAnti } { lexAntiM Tanti_defs }
 "$bb:"           / { allowAnti } { lexAnti Tanti_bb }
 "$bbM:"           / { allowAnti } { lexAntiM Tanti_bb }
 "$bbs:"          / { allowAnti } { lexAnti Tanti_bbs }
 "$bbsM:"          / { allowAnti } { lexAntiM Tanti_bbs }
 "$instr:"        / { allowAnti } { lexAnti Tanti_instr }
 "$instrM:"        / { allowAnti } { lexAntiM Tanti_instr }
 "$instrs:"       / { allowAnti } { lexAnti Tanti_instrs }
 "$instrsM:"       / { allowAnti } { lexAntiM Tanti_instrs }
 "$type:"         / { allowAnti } { lexAnti Tanti_type }
 "$typeM:"         / { allowAnti } { lexAntiM Tanti_type }
 "$opr:"          / { allowAnti } { lexAnti Tanti_opr }
 "$oprM:"          / { allowAnti } { lexAntiM Tanti_opr }
 "$const:"        / { allowAnti } { lexAnti Tanti_const }
 "$constM:"        / { allowAnti } { lexAntiM Tanti_const }
 "$id:"           / { allowAnti } { lexAnti Tanti_id }
 "$idM:"           / { allowAnti } { lexAntiM Tanti_id }
 "$gid:"          / { allowAnti } { lexAnti Tanti_gid }
 "$gidM:"          / { allowAnti } { lexAntiM Tanti_gid }
 "$param:"        / { allowAnti } { lexAnti Tanti_param }
 "$paramM:"        / { allowAnti } { lexAntiM Tanti_param }
 "$params:"       / { allowAnti } { lexAnti Tanti_params }
 "$paramsM:"       / { allowAnti } { lexAntiM Tanti_params }
}

1 个答案:

答案 0 :(得分:2)

摆弄更多,以下工作

alloc :: Type -> Instruction
alloc t = [lli|alloc $type:t|]

字符串"type"位于the source code,其他示例包含$exp:e1等文字,但没有解释它是什么。