// Push the systemdict on the dictionary stack
getInterpreter().getDictionaryStack().push(
getInterpreter().getSystemDict());
// Get the operand for eexec
final PsObject toExec = popOperand(PsOperator.EEXEC);
final EexecDecodeFilter filter =
new EexecDecodeFilter(EexecDecodeFilter.EEXEC_INITIAL_KEY,
EexecDecodeFilter.EEXEC_RANDOM_BYTES);
// Create the PsFile object to be executed
PsFile file = null;
if (toExec instanceof PsFile) {
file = new PsFileFilter(filter, (PsFile) toExec);