Home
last modified time | relevance | path

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

/freebsd-12.1/stand/ficl/
H A Dwords.c2568 dictSetFlags(vmGetDict(pVM), FW_COMPILE, 0); in compileOnly()
4907 dictAppendWord(dp, ">r", toRStack, FW_COMPILE); in ficlCompileCore()
4952 dictAppendWord(dp, "i", loopICo, FW_COMPILE); in ficlCompileCore()
4956 dictAppendWord(dp, "j", loopJCo, FW_COMPILE); in ficlCompileCore()
4957 dictAppendWord(dp, "k", loopKCo, FW_COMPILE); in ficlCompileCore()
4958 dictAppendWord(dp, "leave", leaveCo, FW_COMPILE); in ficlCompileCore()
4973 dictAppendWord(dp, "r>", fromRStack, FW_COMPILE); in ficlCompileCore()
4974 dictAppendWord(dp, "r@", fetchRStack, FW_COMPILE); in ficlCompileCore()
4993 dictAppendWord(dp, "unloop", unloopCo, FW_COMPILE); in ficlCompileCore()
5011 dictAppendWord(dp, "2>r", twoToR, FW_COMPILE); in ficlCompileCore()
[all …]
H A Dficl.h550 #define FW_COMPILE 2 /* error if executed when not compiling */ macro
554 #define FW_COMPIMMED (FW_IMMEDIATE | FW_COMPILE)
H A Dvm.c599 return ((pFW != NULL) && (pFW->flags & FW_COMPILE)); in wordIsCompileOnly()
H A Dfloat.c1059 dictAppendWord(dp, "(fliteral)", fliteralParen, FW_COMPILE); in ficlCompileFloat()
H A Dtools.c357 if (pFW->flags & FW_COMPILE) in seeXT()