Home
last modified time | relevance | path

Searched refs:FW_COMPILE (Results 1 – 5 of 5) sorted by relevance

/NextBSD/sys/boot/ficl/
HDwords.c2556 dictSetFlags(vmGetDict(pVM), FW_COMPILE, 0); in compileOnly()
4895 dictAppendWord(dp, ">r", toRStack, FW_COMPILE); in ficlCompileCore()
4940 dictAppendWord(dp, "i", loopICo, FW_COMPILE); in ficlCompileCore()
4944 dictAppendWord(dp, "j", loopJCo, FW_COMPILE); in ficlCompileCore()
4945 dictAppendWord(dp, "k", loopKCo, FW_COMPILE); in ficlCompileCore()
4946 dictAppendWord(dp, "leave", leaveCo, FW_COMPILE); in ficlCompileCore()
4961 dictAppendWord(dp, "r>", fromRStack, FW_COMPILE); in ficlCompileCore()
4962 dictAppendWord(dp, "r@", fetchRStack, FW_COMPILE); in ficlCompileCore()
4980 dictAppendWord(dp, "unloop", unloopCo, FW_COMPILE); in ficlCompileCore()
4998 dictAppendWord(dp, "2>r", twoToR, FW_COMPILE); in ficlCompileCore()
[all …]
HDficl.h550 #define FW_COMPILE 2 /* error if executed when not compiling */ macro
554 #define FW_COMPIMMED (FW_IMMEDIATE | FW_COMPILE)
HDvm.c599 return ((pFW != NULL) && (pFW->flags & FW_COMPILE)); in wordIsCompileOnly()
HDfloat.c1059 dictAppendWord(dp, "(fliteral)", fliteralParen, FW_COMPILE); in ficlCompileFloat()
HDtools.c357 if (pFW->flags & FW_COMPILE) in seeXT()