Searched refs:ficlInstruction (Results 1 – 6 of 6) sorted by relevance
/illumos-gate/usr/src/common/ficl/ |
H A D | word.c | 31 ficlInstruction i; in ficlWordClassify() 34 if ((((ficlInstruction)word) > ficlInstructionInvalid) && in ficlWordClassify() 35 (((ficlInstruction)word) < ficlInstructionLast)) { in ficlWordClassify() 36 i = (ficlInstruction)word; in ficlWordClassify() 43 if ((((ficlInstruction)code) > ficlInstructionInvalid) && in ficlWordClassify() 44 (((ficlInstruction)code) < ficlInstructionLast)) { in ficlWordClassify() 45 i = (ficlInstruction)code; in ficlWordClassify()
|
H A D | dictionary.c | 205 ficlString name, ficlInstruction instruction, ficlInteger value) in ficlDictionaryAppendConstantInstruction() 217 ficlString name, ficlInstruction instruction, ficl2Integer value) in ficlDictionaryAppend2ConstantInstruction() 253 ficlString name, ficlInstruction instruction, ficlInteger value) in ficlDictionarySetConstantInstruction() 281 ficlInstruction instruction, ficl2Integer value) in ficlDictionarySet2ConstantInstruction() 292 ((((ficlInstruction)word->code) == ficlInstruction2ConstantParen) || in ficlDictionarySet2ConstantInstruction() 293 (((ficlInstruction)word->code) == ficlInstructionF2ConstantParen))) in ficlDictionarySet2ConstantInstruction() 296 ((((ficlInstruction)word->code) == ficlInstruction2ConstantParen))) in ficlDictionarySet2ConstantInstruction() 413 ficlInstruction i, ficlUnsigned8 flags) in ficlDictionaryAppendInstruction() 421 ficlInstruction i, ficlUnsigned8 flags) in ficlDictionarySetInstruction() 544 if ((((ficlInstruction)word) > ficlInstructionInvalid) && in ficlDictionaryIsAWord() [all …]
|
H A D | ficl.h | 971 enum ficlInstruction enum 983 typedef intptr_t ficlInstruction; typedef 1135 ficlVmExecuteInstruction(ficlVm *vm, ficlInstruction i); 1212 ficlInstruction semiParen; /* Native code to execute the word */ 1408 ficlInstruction i, ficlUnsigned8 flags); 1412 ficlString name, ficlInstruction instruction, ficlInteger value); 1415 ficlString name, ficlInstruction instruction, ficl2Integer value); 1437 ficlString name, ficlInstruction instruction, ficlInteger value); 1440 ficlString name, ficlInstruction instruction, ficl2Integer value); 1459 ficlInstruction i, ficlUnsigned8 flags);
|
H A D | vm.c | 140 switch ((ficlInstruction)(*ip)) { in ficlVmOptimizeJumpToJump() 150 switch ((ficlInstruction)*destination) { in ficlVmOptimizeJumpToJump() 236 ip = (ficlInstruction *)vm->ip; \ 245 register ficlInstruction *ip; in ficlVmInnerLoop() 260 ficlInstruction instruction; in ficlVmInnerLoop() 289 instruction = (ficlInstruction)((void *)fw); in ficlVmInnerLoop() 437 ip = (ficlInstruction *)((returnTop--)->p); in ficlVmInnerLoop() 465 #define EXIT_FUNCTION() ip = (ficlInstruction *)((returnTop--)->p); continue in ficlVmInnerLoop() 1321 ip = (ficlInstruction *)((returnTop--)->p); in ficlVmInnerLoop() 1335 ip = (ficlInstruction *)tempIP; in ficlVmInnerLoop() [all …]
|
H A D | tools.c | 415 if ((((ficlInstruction)word) > ficlInstructionInvalid) && in ficlPrimitiveStepBreak() 416 (((ficlInstruction)word) < ficlInstructionLast)) in ficlPrimitiveStepBreak()
|
H A D | primitives.c | 2380 ficlInstruction instruction; in ficlLocalParenIm() 2478 ficlInstruction instruction; in ficlLocalParen() 2567 ficlInstruction instruction = 0; in ficlPrimitiveToValue() 2646 switch ((ficlInstruction)word->code) { in ficlPrimitiveToValue()
|