File:  [local] / rpl / src / analyse.c
Revision 1.86: download - view: text, annotated - select for diffs - revision graph
Wed May 22 09:05:20 2013 UTC (10 years, 11 months ago) by bertrand
Branches: MAIN
CVS tags: HEAD
Correction de conditions d'accès concurrents.

    1: /*
    2: ================================================================================
    3:   RPL/2 (R) version 4.1.14
    4:   Copyright (C) 1989-2013 Dr. BERTRAND Joël
    5: 
    6:   This file is part of RPL/2.
    7: 
    8:   RPL/2 is free software; you can redistribute it and/or modify it
    9:   under the terms of the CeCILL V2 License as published by the french
   10:   CEA, CNRS and INRIA.
   11:  
   12:   RPL/2 is distributed in the hope that it will be useful, but WITHOUT
   13:   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   14:   FITNESS FOR A PARTICULAR PURPOSE.  See the CeCILL V2 License
   15:   for more details.
   16:  
   17:   You should have received a copy of the CeCILL License
   18:   along with RPL/2. If not, write to info@cecill.info.
   19: ================================================================================
   20: */
   21: 
   22: 
   23: #include "rpl-conv.h"
   24: 
   25: 
   26: /*
   27: ================================================================================
   28:   Analyseur syntaxique de l'interprète RPL/2
   29: ================================================================================
   30:   Entrées :
   31: --------------------------------------------------------------------------------
   32:   Sorties :
   33: --------------------------------------------------------------------------------
   34:   Effets de bord : néant
   35: ================================================================================
   36: */
   37: 
   38: static void
   39: creation_instruction(struct_processus *s_etat_processus,
   40:         unsigned char *instruction, void (*routine)())
   41: {
   42:     int                     i;
   43: 
   44:     struct_instruction      *l_instruction_courante;
   45: 
   46:     unsigned char           *ptr;
   47: 
   48:     BUG(strlen(instruction) >= d_longueur_maximale_instruction,
   49:             printf("%s -> %d >= %d\n", instruction, (int) strlen(instruction),
   50:             d_longueur_maximale_instruction));
   51: 
   52:     if ((*s_etat_processus).arbre_instructions == NULL)
   53:     {
   54:         if (((*s_etat_processus).arbre_instructions =
   55:                 malloc(sizeof(struct_instruction))) == NULL)
   56:         {
   57:             (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
   58:             return;
   59:         }
   60: 
   61:         (*(*s_etat_processus).arbre_instructions).feuille = NULL;
   62: 
   63:         if (((*(*s_etat_processus).arbre_instructions).noeuds =
   64:                 malloc(((size_t) (*s_etat_processus).nombre_caracteres)
   65:                 * sizeof(struct_instruction))) == NULL)
   66:         {
   67:             (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
   68:             return;
   69:         }
   70: 
   71:         for(i = 0; i < (*s_etat_processus).nombre_caracteres; i++)
   72:         {
   73:             (*(*s_etat_processus).arbre_instructions).noeuds[i] = NULL;
   74:         }
   75:     }
   76: 
   77:     l_instruction_courante = (*s_etat_processus).arbre_instructions;
   78:     ptr = instruction;
   79: 
   80:     while((*ptr) != d_code_fin_chaine)
   81:     {
   82:         BUG((*s_etat_processus).pointeurs_caracteres[*ptr] < 0,
   83:                 printf("Instruction=\"%s\", (*ptr)='%c'\n",
   84:                 instruction, *ptr));
   85: 
   86:         if ((*l_instruction_courante).noeuds[(*s_etat_processus)
   87:                 .pointeurs_caracteres[*ptr]] == NULL)
   88:         {
   89:             // Le noeud suivant n'existe pas, on le crée.
   90: 
   91:             if (((*l_instruction_courante).noeuds[(*s_etat_processus)
   92:                     .pointeurs_caracteres[*ptr]] =
   93:                     malloc(sizeof(struct_instruction))) == NULL)
   94:             {
   95:                 (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
   96:                 return;
   97:             }
   98: 
   99:             (*(*l_instruction_courante).noeuds[(*s_etat_processus)
  100:                     .pointeurs_caracteres[*ptr]]).feuille = NULL;
  101: 
  102:             if (((*(*l_instruction_courante).noeuds[(*s_etat_processus)
  103:                     .pointeurs_caracteres[*ptr]]).noeuds =
  104:                     malloc(((size_t) (*s_etat_processus).nombre_caracteres)
  105:                     * sizeof(struct_instruction))) == NULL)
  106:             {
  107:                 (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
  108:                 return;
  109:             }
  110: 
  111:             for(i = 0; i < (*s_etat_processus).nombre_caracteres; i++)
  112:             {
  113:                 (*(*l_instruction_courante).noeuds[(*s_etat_processus)
  114:                         .pointeurs_caracteres[*ptr]]).noeuds[i] = NULL;
  115:             }
  116:         }
  117: 
  118:         l_instruction_courante = (*l_instruction_courante).noeuds
  119:                 [(*s_etat_processus).pointeurs_caracteres[*ptr]];
  120:         ptr++;
  121:     }
  122: 
  123:     BUG((*l_instruction_courante).feuille != NULL,
  124:             printf("Instruction=\"%s\"\n", instruction));
  125: 
  126:     (*l_instruction_courante).feuille = routine;
  127: 
  128:     return;
  129: }
  130: 
  131: 
  132: void
  133: liberation_arbre_instructions(struct_processus *s_etat_processus,
  134:         struct_instruction *arbre)
  135: {
  136:     int                 i;
  137: 
  138:     for(i = 0; i < (*s_etat_processus).nombre_caracteres; i++)
  139:     {
  140:         if ((*arbre).noeuds[i] != NULL)
  141:         {
  142:             liberation_arbre_instructions(s_etat_processus, (*arbre).noeuds[i]);
  143:         }
  144:     }
  145: 
  146:     free((*arbre).noeuds);
  147:     free(arbre);
  148: 
  149:     return;
  150: }
  151: 
  152: 
  153: /*
  154:  * Caractères autorisés dans les instructions
  155:  *
  156:  * A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
  157:  * e i (mais traités comme des majuscules grâce à 'instruction_*_sensible()'
  158:  * + - * / % ^ < > = ? 1 2
  159:  */
  160: 
  161: void
  162: initialisation_instructions(struct_processus *s_etat_processus)
  163: {
  164:     int             decalage;
  165:     int             i;
  166:     int             longueur_tableau;
  167: 
  168:     unsigned char   caractere;
  169: 
  170:     // Récupération de la longueur d'un unsigned char
  171: 
  172:     longueur_tableau = 1;
  173:     decalage = 0;
  174:     caractere = 1;
  175: 
  176:     while((1L << decalage) == (long) ((unsigned char) (caractere << decalage)))
  177:     {
  178:         decalage++;
  179:         longueur_tableau *= 2;
  180:     }
  181: 
  182:     if (((*s_etat_processus).pointeurs_caracteres =
  183:             malloc(((size_t) longueur_tableau * sizeof(int)))) == NULL)
  184:     {
  185:         (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
  186:         return;
  187:     }
  188: 
  189:     for(i = 0; i < longueur_tableau; i++)
  190:     {
  191:         (*s_etat_processus).pointeurs_caracteres[i] = -1;
  192:     }
  193: 
  194:     (*s_etat_processus).nombre_caracteres = 0;
  195: 
  196: #define DECLARATION_CARACTERE(c) \
  197:         do { (*s_etat_processus).pointeurs_caracteres[c] = \
  198:         (*s_etat_processus).nombre_caracteres++; } while(0)
  199: 
  200:     DECLARATION_CARACTERE('A');
  201:     DECLARATION_CARACTERE('B');
  202:     DECLARATION_CARACTERE('C');
  203:     DECLARATION_CARACTERE('D');
  204:     DECLARATION_CARACTERE('E');
  205:     DECLARATION_CARACTERE('F');
  206:     DECLARATION_CARACTERE('G');
  207:     DECLARATION_CARACTERE('H');
  208:     DECLARATION_CARACTERE('I');
  209:     DECLARATION_CARACTERE('J');
  210:     DECLARATION_CARACTERE('K');
  211:     DECLARATION_CARACTERE('L');
  212:     DECLARATION_CARACTERE('M');
  213:     DECLARATION_CARACTERE('N');
  214:     DECLARATION_CARACTERE('O');
  215:     DECLARATION_CARACTERE('P');
  216:     DECLARATION_CARACTERE('Q');
  217:     DECLARATION_CARACTERE('R');
  218:     DECLARATION_CARACTERE('S');
  219:     DECLARATION_CARACTERE('T');
  220:     DECLARATION_CARACTERE('U');
  221:     DECLARATION_CARACTERE('V');
  222:     DECLARATION_CARACTERE('W');
  223:     DECLARATION_CARACTERE('X');
  224:     DECLARATION_CARACTERE('Y');
  225:     DECLARATION_CARACTERE('Z');
  226:     DECLARATION_CARACTERE('+');
  227:     DECLARATION_CARACTERE('-');
  228:     DECLARATION_CARACTERE('/');
  229:     DECLARATION_CARACTERE('*');
  230:     DECLARATION_CARACTERE('%');
  231:     DECLARATION_CARACTERE('^');
  232:     DECLARATION_CARACTERE('<');
  233:     DECLARATION_CARACTERE('>');
  234:     DECLARATION_CARACTERE('=');
  235:     DECLARATION_CARACTERE('?');
  236:     DECLARATION_CARACTERE('1');
  237:     DECLARATION_CARACTERE('2');
  238: 
  239: #undef DECLARATION_CARACTERE
  240: 
  241: #define INSTRUCTION(chaine, fonction) \
  242:         creation_instruction(s_etat_processus, chaine, fonction)
  243: 
  244:     INSTRUCTION("E", instruction_sensible_e);
  245:     INSTRUCTION("I", instruction_sensible_i);
  246:     INSTRUCTION("+", instruction_plus);
  247:     INSTRUCTION("-", instruction_moins);
  248:     INSTRUCTION("*", instruction_multiplication);
  249:     INSTRUCTION("/", instruction_division);
  250:     INSTRUCTION("%", instruction_pourcent);
  251:     INSTRUCTION("^", instruction_puissance);
  252:     INSTRUCTION("<", instruction_lt);
  253:     INSTRUCTION("=", instruction_egalite);
  254:     INSTRUCTION(">", instruction_gt);
  255: 
  256:     INSTRUCTION("CF", instruction_cf);
  257:     INSTRUCTION("CR", instruction_cr);
  258:     INSTRUCTION("DO", instruction_do);
  259:     INSTRUCTION("FP", instruction_fp);
  260:     INSTRUCTION("IF", instruction_if);
  261:     INSTRUCTION("IM", instruction_im);
  262:     INSTRUCTION("IN", instruction_in);
  263:     INSTRUCTION("IP", instruction_ip);
  264:     INSTRUCTION("LN", instruction_ln);
  265:     INSTRUCTION("LQ", instruction_lq);
  266:     INSTRUCTION("LU", instruction_lu);
  267:     INSTRUCTION("NS", instruction_ns);
  268:     INSTRUCTION("OR", instruction_or);
  269:     INSTRUCTION("PI", instruction_pi);
  270:     INSTRUCTION("QR", instruction_qr);
  271:     INSTRUCTION("RE", instruction_re);
  272:     INSTRUCTION("RL", instruction_rl);
  273:     INSTRUCTION("RR", instruction_rr);
  274:     INSTRUCTION("SF", instruction_sf);
  275:     INSTRUCTION("SL", instruction_sl);
  276:     INSTRUCTION("SQ", instruction_sq);
  277:     INSTRUCTION("SR", instruction_sr);
  278:     INSTRUCTION("SX", instruction_sx);
  279:     INSTRUCTION("SY", instruction_sy);
  280:     INSTRUCTION("S+", instruction_s_plus);
  281:     INSTRUCTION("S-", instruction_s_moins);
  282:     INSTRUCTION("->", instruction_fleche);
  283:     INSTRUCTION("*D", instruction_star_d);
  284:     INSTRUCTION("*H", instruction_star_h);
  285:     INSTRUCTION("*S", instruction_star_s);
  286:     INSTRUCTION("*W", instruction_star_w);
  287:     INSTRUCTION("**", instruction_puissance);
  288:     INSTRUCTION("%T", instruction_pourcent_t);
  289:     INSTRUCTION("<=", instruction_le);
  290:     INSTRUCTION("<<", instruction_vers_niveau_superieur);
  291:     INSTRUCTION("<>", instruction_ne);
  292:     INSTRUCTION("==", instruction_same);
  293:     INSTRUCTION("=>", instruction_ge);
  294:     INSTRUCTION("=<", instruction_le);
  295:     INSTRUCTION(">=", instruction_ge);
  296:     INSTRUCTION(">>", instruction_vers_niveau_inferieur);
  297: 
  298:     INSTRUCTION("ABS", instruction_abs);
  299:     INSTRUCTION("AND", instruction_and);
  300:     //INSTRUCTION("ARC")
  301:     //(centre, rayon, theta1, theta2 dans le sens trigonométrique)
  302:     INSTRUCTION("ARG", instruction_arg);
  303:     INSTRUCTION("ASL", instruction_asl);
  304:     INSTRUCTION("ASR", instruction_asr);
  305:     //INSTRUCTION("BAR")
  306:     //Instruction HP48 (sélectionne le type de graphique à barres)
  307:     //Chaque point est représenté par une barre verticale.
  308:     INSTRUCTION("BIN", instruction_bin);
  309:     //INSTRUCTION("BOX")
  310:     //(point 1, point 2)
  311:     INSTRUCTION("CHR", instruction_chr);
  312:     INSTRUCTION("CLS", instruction_cls);
  313:     INSTRUCTION("CON", instruction_con);
  314:     INSTRUCTION("COS", instruction_cos);
  315:     INSTRUCTION("COV", instruction_cov);
  316:     INSTRUCTION("DEC", instruction_dec);
  317:     INSTRUCTION("DEG", instruction_deg);
  318:     INSTRUCTION("DER", instruction_der);
  319:     INSTRUCTION("DET", instruction_det);
  320:     INSTRUCTION("DFT", instruction_dft);
  321:     INSTRUCTION("DOT", instruction_dot);
  322:     INSTRUCTION("DUP", instruction_dup);
  323:     INSTRUCTION("EGV", instruction_egv);
  324:     INSTRUCTION("END", instruction_end);
  325:     INSTRUCTION("ENG", instruction_eng);
  326:     INSTRUCTION("EXP", instruction_exp);
  327:     INSTRUCTION("FC?", instruction_fc_test);
  328:     INSTRUCTION("FFT", instruction_fft);
  329:     //INSTRUCTION("FIT")
  330:     //Extension RPL/2 (choix de la méthode de régression, par défaut, 'LINEAR'.
  331:     //Les types sont
  332:     //'LINEAR' => y = b + mx
  333:     //'LOGARITHMIC' => y = b + m ln(x)
  334:     //'EXPONENTIAL' => y = be^(mx) ou ln(y) = ln(b) + mx
  335:     //'POWER' => y = bx^m ou ln(y) = ln(b) + m ln(x)
  336:     INSTRUCTION("FIX", instruction_fix);
  337:     INSTRUCTION("FOR", instruction_for);
  338:     INSTRUCTION("FS?", instruction_fs_test);
  339:     INSTRUCTION("GET", instruction_get);
  340:     INSTRUCTION("HEX", instruction_hex);
  341:     INSTRUCTION("IDN", instruction_idn);
  342:     INSTRUCTION("IFT", instruction_ift);
  343:     INSTRUCTION("INT", instruction_int);
  344:     INSTRUCTION("INV", instruction_inv);
  345:     INSTRUCTION("KEY", instruction_key);
  346:     INSTRUCTION("LOG", instruction_log);
  347:     INSTRUCTION("LSQ", instruction_lsq);
  348:     INSTRUCTION("MAX", instruction_max);
  349:     INSTRUCTION("MEM", instruction_mem);
  350:     INSTRUCTION("MIN", instruction_min);
  351:     INSTRUCTION("MOD", instruction_mod);
  352:     INSTRUCTION("NEG", instruction_neg);
  353:     INSTRUCTION("NOT", instruction_not);
  354:     INSTRUCTION("NUM", instruction_num);
  355:     INSTRUCTION("OCT", instruction_oct);
  356:     INSTRUCTION("POS", instruction_pos);
  357:     INSTRUCTION("PR1", instruction_pr1);
  358:     INSTRUCTION("PUT", instruction_put);
  359:     INSTRUCTION("RAD", instruction_rad);
  360:     INSTRUCTION("RCI", instruction_rci);
  361:     INSTRUCTION("RCL", instruction_rcl);
  362:     INSTRUCTION("RDM", instruction_rdm);
  363:     INSTRUCTION("RDZ", instruction_rdz);
  364:     INSTRUCTION("RES", instruction_res);
  365:     INSTRUCTION("RLB", instruction_rlb);
  366:     INSTRUCTION("RND", instruction_rnd);
  367:     INSTRUCTION("ROT", instruction_rot);
  368:     INSTRUCTION("RRB", instruction_rrb);
  369:     INSTRUCTION("RSD", instruction_rsd);
  370:     INSTRUCTION("SCI", instruction_sci);
  371:     INSTRUCTION("SIN", instruction_sin);
  372:     INSTRUCTION("SLB", instruction_slb);
  373:     INSTRUCTION("SRB", instruction_srb);
  374:     INSTRUCTION("SST", instruction_sst);
  375:     INSTRUCTION("STD", instruction_std);
  376:     INSTRUCTION("STO", instruction_sto);
  377:     INSTRUCTION("SVD", instruction_svd);
  378:     INSTRUCTION("SVL", instruction_svl);
  379:     INSTRUCTION("SUB", instruction_sub);
  380:     INSTRUCTION("SWI", instruction_swi);
  381:     INSTRUCTION("SX2", instruction_sx2);
  382:     INSTRUCTION("SXY", instruction_sxy);
  383:     INSTRUCTION("SY2", instruction_sy2);
  384:     INSTRUCTION("TAN", instruction_tan);
  385:     INSTRUCTION("TOT", instruction_tot);
  386:     INSTRUCTION("TRN", instruction_trn);
  387:     INSTRUCTION("USE", instruction_use);
  388:     INSTRUCTION("VAR", instruction_var);
  389:     //INSTRUCTION("V->")
  390:     //Instruction HP48 (éclate un vecteur [ x y ] => x y quel que soit le
  391:     //système de
  392:     //coordonnées)
  393:     INSTRUCTION("XOR", instruction_xor);
  394:     INSTRUCTION("->Q", instruction_fleche_q);
  395:     INSTRUCTION("%CH", instruction_pourcent_ch);
  396: 
  397:     INSTRUCTION("ACOS", instruction_acos);
  398:     INSTRUCTION("ALOG", instruction_alog);
  399:     INSTRUCTION("ASIN", instruction_asin);
  400:     INSTRUCTION("ATAN", instruction_atan);
  401:     INSTRUCTION("AXES", instruction_axes);
  402:     INSTRUCTION("BEEP", instruction_beep);
  403:     INSTRUCTION("B->R", instruction_b_vers_r);
  404:     INSTRUCTION("CASE", instruction_case);
  405:     INSTRUCTION("CEIL", instruction_ceil);
  406:     INSTRUCTION("CLMF", instruction_clmf);
  407:     INSTRUCTION("CNRM", instruction_cnrm);
  408:     INSTRUCTION("COLS", instruction_cols);
  409:     INSTRUCTION("COL+", instruction_col_plus);
  410:     INSTRUCTION("COL-", instruction_col_moins);
  411:     INSTRUCTION("COMB", instruction_comb);
  412:     INSTRUCTION("COND", instruction_cond);
  413:     INSTRUCTION("CONJ", instruction_conj);
  414:     INSTRUCTION("CONT", instruction_cont);
  415:     INSTRUCTION("COPY", instruction_copy);
  416:     INSTRUCTION("CORR", instruction_corr);
  417:     INSTRUCTION("COSH", instruction_cosh);
  418:     INSTRUCTION("CSWP", instruction_cswp);
  419:     INSTRUCTION("C->R", instruction_c_vers_r);
  420:     INSTRUCTION("DATE", instruction_date);
  421:     INSTRUCTION("DECR", instruction_decr);
  422:     INSTRUCTION("DISP", instruction_disp);
  423:     INSTRUCTION("DRAW", instruction_draw);
  424:     INSTRUCTION("DRAX", instruction_drax);
  425:     INSTRUCTION("DROP", instruction_drop);
  426:     INSTRUCTION("DRWS", instruction_drws);
  427:     INSTRUCTION("DUP2", instruction_dup2);
  428:     INSTRUCTION("DUPN", instruction_dupn);
  429:     INSTRUCTION("D->R", instruction_d_vers_r);
  430:     INSTRUCTION("EDIT", instruction_edit);
  431:     INSTRUCTION("EGVL", instruction_egvl);
  432:     INSTRUCTION("ELSE", instruction_else);
  433:     INSTRUCTION("ERRM", instruction_errm);
  434:     INSTRUCTION("ERRN", instruction_errn);
  435:     INSTRUCTION("EVAL", instruction_eval);
  436:     INSTRUCTION("EXIT", instruction_exit);
  437:     INSTRUCTION("EXPM", instruction_expm);
  438:     INSTRUCTION("FACT", instruction_fact);
  439:     INSTRUCTION("FC?C", instruction_fc_test_c);
  440:     INSTRUCTION("FC?S", instruction_fc_test_s);
  441:     //INSTRUCTION("FORM")
  442:     INSTRUCTION("FS?C", instruction_fs_test_c);
  443:     INSTRUCTION("FS?S", instruction_fs_test_s);
  444:     INSTRUCTION("FUSE", instruction_fuse);
  445:     INSTRUCTION("GEGV", instruction_gegv);
  446:     INSTRUCTION("GETC", instruction_getc);
  447:     INSTRUCTION("GETI", instruction_geti);
  448:     INSTRUCTION("GETR", instruction_getr);
  449:     INSTRUCTION("HALT", instruction_halt);
  450:     INSTRUCTION("HEAD", instruction_head);
  451:     INSTRUCTION("HELP", instruction_help);
  452:     INSTRUCTION("HMS+", instruction_hms_plus);
  453:     INSTRUCTION("HMS-", instruction_hms_moins);
  454:     //INSTRUCTION("HOME");
  455:     INSTRUCTION("IDFT", instruction_idft);
  456:     INSTRUCTION("IFFT", instruction_ifft);
  457:     INSTRUCTION("IFTE", instruction_ifte);
  458:     INSTRUCTION("INCR", instruction_incr);
  459:     //INSTRUCTION("ISOL");
  460:     INSTRUCTION("ISWI", instruction_iswi);
  461:     INSTRUCTION("KILL", instruction_kill);
  462:     INSTRUCTION("KIND", instruction_kind);
  463:     INSTRUCTION("LAST", instruction_last);
  464:     INSTRUCTION("LEGV", instruction_legv);
  465:     INSTRUCTION("LINE", instruction_line);
  466:     INSTRUCTION("LNP1", instruction_lnp1);
  467:     INSTRUCTION("LOCK", instruction_lock);
  468:     INSTRUCTION("L->T", instruction_l_vers_t);
  469:     INSTRUCTION("MANT", instruction_mant);
  470:     INSTRUCTION("MARK", instruction_mark);
  471:     //INSTRUCTION("MAXR")
  472:     INSTRUCTION("MAXS", instruction_maxs);
  473:     INSTRUCTION("MEAN", instruction_mean);
  474:     //INSTRUCTION("MINR");
  475:     INSTRUCTION("MINS", instruction_mins); // MAXDOUBLE/MINDOUBLE
  476:     INSTRUCTION("NEXT", instruction_next);
  477:     //INSTRUCTION("NUMX");
  478:     //INSTRUCTION("NUMY");
  479:     INSTRUCTION("OPEN", instruction_open);
  480:     INSTRUCTION("OVER", instruction_over);
  481:     //INSTRUCTION("PATH");
  482:     INSTRUCTION("PCOV", instruction_pcov);
  483:     INSTRUCTION("PEEK", instruction_peek);
  484:     INSTRUCTION("PERM", instruction_perm);
  485:     INSTRUCTION("PICK", instruction_pick);
  486:     INSTRUCTION("PLOT", instruction_plot);
  487:     INSTRUCTION("PMAX", instruction_pmax);
  488:     INSTRUCTION("PMIN", instruction_pmin);
  489:     INSTRUCTION("POKE", instruction_poke);
  490:     INSTRUCTION("POLL", instruction_poll);
  491:     INSTRUCTION("PPAR", instruction_ppar);
  492:     INSTRUCTION("PRMD", instruction_prmd);
  493:     INSTRUCTION("PRST", instruction_prst);
  494:     INSTRUCTION("PUTC", instruction_putc);
  495:     INSTRUCTION("PUTI", instruction_puti);
  496:     INSTRUCTION("PUTR", instruction_putr);
  497:     INSTRUCTION("PVAR", instruction_pvar);
  498:     INSTRUCTION("P->R", instruction_p_vers_r);
  499:     //INSTRUCTION("QUAD");
  500:     INSTRUCTION("RAND", instruction_rand);
  501:     INSTRUCTION("RANK", instruction_rank);
  502:     //INSTRUCTION("RANM")
  503:     //Instruction HP48 (crée une matrice aléatoire
  504:     //{ nb_lignes nb_colonnes } ou tableau quelconque dont les éléments seront
  505:     //modifiés pour prendre des valeurs aléatoires entre -9 et 9)
  506:     INSTRUCTION("RCEQ", instruction_rceq);
  507:     INSTRUCTION("RCIJ", instruction_rcij);
  508:     INSTRUCTION("RCLF", instruction_rclf);
  509:     INSTRUCTION("RCLS", instruction_rcls);
  510:     INSTRUCTION("RCWS", instruction_rcws);
  511:     INSTRUCTION("RDGN", instruction_rdgn);
  512:     INSTRUCTION("READ", instruction_read);
  513:     INSTRUCTION("RECV", instruction_recv);
  514:     INSTRUCTION("REGV", instruction_regv);
  515:     INSTRUCTION("REPL", instruction_repl);
  516:     INSTRUCTION("RNRM", instruction_rnrm);
  517:     INSTRUCTION("ROLL", instruction_roll);
  518:     //INSTRUCTION("ROOT")
  519:     INSTRUCTION("ROW-", instruction_row_moins);
  520:     INSTRUCTION("ROW+", instruction_row_plus);
  521:     //INSTRUCTION("RREF")
  522:     //Instruction HP48 (transforme [A B] en [I C] par combinaisons linéaires
  523:     //de lignes)
  524:     INSTRUCTION("RSWP", instruction_rswp);
  525:     INSTRUCTION("R->B", instruction_r_vers_b);
  526:     INSTRUCTION("R->C", instruction_r_vers_c);
  527:     INSTRUCTION("R->D", instruction_r_vers_d);
  528:     INSTRUCTION("R->P", instruction_r_vers_p);
  529:     INSTRUCTION("SAME", instruction_same);
  530:     INSTRUCTION("SAVE", instruction_save);
  531:     INSTRUCTION("SCLS", instruction_scls);
  532:     INSTRUCTION("SDEV", instruction_sdev);
  533:     INSTRUCTION("SEND", instruction_send);
  534:     //INSTRUCTION("SHOW");
  535:     INSTRUCTION("SIGN", instruction_sign);
  536:     INSTRUCTION("SINH", instruction_sinh);
  537:     INSTRUCTION("SINV", instruction_sinv);
  538:     INSTRUCTION("SIZE", instruction_size);
  539:     INSTRUCTION("SNEG", instruction_sneg);
  540:     INSTRUCTION("SORT", instruction_sort);
  541:     INSTRUCTION("SPAR", instruction_spar);
  542:     INSTRUCTION("SQRT", instruction_sqrt);
  543:     //INSTRUCTION("SRAD");
  544:     INSTRUCTION("SREV", instruction_srev);
  545:     //INSTRUCTION("SRNM")
  546:     //Instruction HP48 (renvoie la norme spectrale d'un tableau. Pour une
  547:     //matrice,
  548:     //la norme spectrale est égale à sa plus grande valeur singulière. Pour un
  549:     //vecteur, la fonction est équivalente à ABS.
  550:     INSTRUCTION("STEP", instruction_step);
  551:     INSTRUCTION("STEQ", instruction_steq);
  552:     INSTRUCTION("STO*", instruction_sto_fois);
  553:     INSTRUCTION("STO+", instruction_sto_plus);
  554:     INSTRUCTION("STO-", instruction_sto_moins);
  555:     INSTRUCTION("STO/", instruction_sto_division);
  556:     INSTRUCTION("STOF", instruction_stof);
  557:     INSTRUCTION("STOP", instruction_stop);
  558:     INSTRUCTION("STOS", instruction_stos);
  559:     INSTRUCTION("STWS", instruction_stws);
  560:     INSTRUCTION("SWAP", instruction_swap);
  561:     INSTRUCTION("SYNC", instruction_sync);
  562:     INSTRUCTION("TAIL", instruction_tail);
  563:     INSTRUCTION("TANH", instruction_tanh);
  564:     INSTRUCTION("THEN", instruction_then);
  565:     INSTRUCTION("TIME", instruction_time);
  566:     INSTRUCTION("TRIM", instruction_trim);
  567:     INSTRUCTION("TRNC", instruction_trnc);
  568:     INSTRUCTION("TRUE", instruction_true);
  569:     INSTRUCTION("TYPE", instruction_type);
  570:     INSTRUCTION("T->L", instruction_t_vers_l);
  571:     INSTRUCTION("UTPC", instruction_utpc);
  572:     INSTRUCTION("UTPF", instruction_utpf);
  573:     INSTRUCTION("UTPN", instruction_utpn);
  574:     INSTRUCTION("UTPT", instruction_utpt);
  575:     INSTRUCTION("VARS", instruction_vars);
  576:     INSTRUCTION("WAIT", instruction_wait);
  577:     INSTRUCTION("XCOL", instruction_xcol);
  578:     INSTRUCTION("XPON", instruction_xpon);
  579:     //INSTRUCTION("XRNG")
  580:     //INSTRUCTION("XVOL")
  581:     INSTRUCTION("YCOL", instruction_ycol);
  582:     //INSTRUCTION("YRNG")
  583:     //INSTRUCTION("YVOL")
  584:     //INSTRUCTION("ZVOL")
  585:     //INSTRUCTION("->V2")
  586:     //Instruction HP48 (combine deux réels x et y en un vecteur 2D en fonction
  587:     //du mode de coordonnées en cours => [ x y ] et ce quel que soit le système
  588:     //de coordonnées courant)
  589:     //INSTRUCTION("->V3")
  590: 
  591:     INSTRUCTION("ABORT", instruction_abort);
  592:     INSTRUCTION("ACOSH", instruction_acosh);
  593:     INSTRUCTION("ALARM", instruction_alarm);
  594:     INSTRUCTION("ASINH", instruction_asinh);
  595:     INSTRUCTION("ATANH", instruction_atanh);
  596:     //INSTRUCTION("BYTES");
  597:     INSTRUCTION("CENTR", instruction_centr);
  598:     //INSTRUCTION("CIRCL");
  599:     INSTRUCTION("CLEAR", instruction_clear);
  600:     INSTRUCTION("CLLCD", instruction_cllcd);
  601:     INSTRUCTION("CLOSE", instruction_close);
  602:     INSTRUCTION("CLUSR", instruction_clusr);
  603:     //INSTRUCTION("CLVAR");
  604:     //INSTRUCTION("COLCT")
  605:     INSTRUCTION("COL->", instruction_col_fleche);
  606:     //INSTRUCTION("CONIC")
  607:     //Instruction HP48 (sélectionne le type de tracé CONIC)
  608:     //Permet de tracer des coniques en fonction d'équations
  609:     //de type f(x, y) = 0.
  610:     //INSTRUCTION("CRDIR")
  611:     INSTRUCTION("CRMTX", instruction_crmtx);
  612:     INSTRUCTION("CROSS", instruction_cross);
  613:     INSTRUCTION("CRTAB", instruction_crtab);
  614:     INSTRUCTION("CSTOP", instruction_cstop);
  615:     INSTRUCTION("CYCLE", instruction_cycle);
  616:     //INSTRUCTION("CYLIN")
  617:     //Instruction HP48 (sélectionne le type de tracé CYLINDRIC)
  618:     INSTRUCTION("DEPND", instruction_depnd);
  619:     INSTRUCTION("DEPTH", instruction_depth);
  620:     //INSTRUCTION("DOSUB")
  621:     //Instruction HP48 (application séquentielle d'une fonction à une liste)
  622:     //liste nombre_elements_traites_a_chaque_iteration fonction DOSUB
  623:     //{ 1 2 3 4 5 }
  624:     //2
  625:     //<< + 2 / >>
  626:     //DOSUB
  627:     //=> { 1.5 2.5 3.5 4.5 }
  628:     INSTRUCTION("DGTIZ", instruction_dgtiz);
  629:     INSTRUCTION("DROP2", instruction_drop2);
  630:     INSTRUCTION("DROPN", instruction_dropn);
  631:     INSTRUCTION("ERASE", instruction_erase);
  632:     INSTRUCTION("EXGET", instruction_exget);
  633:     //INSTRUCTION("EXPAN");
  634:     INSTRUCTION("EXSUB", instruction_exsub);
  635:     INSTRUCTION("EYEPT", instruction_eyept);
  636:     INSTRUCTION("FALSE", instruction_false);
  637:     INSTRUCTION("FLOOR", instruction_floor);
  638:     INSTRUCTION("GAMMA", instruction_gamma);
  639:     INSTRUCTION("GEGVL", instruction_gegvl);
  640:     INSTRUCTION("GLEGV", instruction_glegv);
  641:     INSTRUCTION("GREGV", instruction_gregv);
  642:     INSTRUCTION("HMS->", instruction_hms_fleche);
  643:     INSTRUCTION("IFERR", instruction_iferr);
  644:     INSTRUCTION("INDEP", instruction_indep);
  645:     INSTRUCTION("INPUT", instruction_input);
  646:     INSTRUCTION("JDATE", instruction_jdate);
  647:     INSTRUCTION("LABEL", instruction_label);
  648:     INSTRUCTION("LCASE", instruction_lcase);
  649:     INSTRUCTION("LCHOL", instruction_lchol);
  650:     INSTRUCTION("LCD->", instruction_lcd_fleche);
  651:     INSTRUCTION("LIMIT", instruction_limit);
  652:     //INSTRUCTION("NDIST")
  653:     //Instruction HP48 (distribution normale, prend la moyenne au niveau 3,
  654:     //la variance au niveau 2, un réel x au niveau 1 et renvoie la probabilité
  655:     //qu'une variable aléatoire normale soit égale à x dans une distribution
  656:     //normale).
  657:     INSTRUCTION("NRAND", instruction_nrand);
  658:     INSTRUCTION("OBGET", instruction_obget);
  659:     INSTRUCTION("OBSUB", instruction_obsub);
  660:     INSTRUCTION("PAPER", instruction_paper);
  661:     //INSTRUCTION("PCOEFF")
  662:     //INSTRUCTION("PEVAL")
  663:     //INSTRUCTION("PGDIR")
  664:     //INSTRUCTION("PIXEL")
  665:     //INSTRUCTION("PLIST")
  666:     //Instruction HP48 (produit des termes d'une liste)
  667:     INSTRUCTION("POLAR", instruction_polar);
  668:     INSTRUCTION("PRINT", instruction_print);
  669:     //INSTRUCTION("PREDV");
  670:     INSTRUCTION("PRLCD", instruction_prlcd);
  671:     //INSTRUCTION("PROOT")
  672:     //Instruction HP48 (calcule les racines d'un polynôme en fonction du tableau
  673:     //de coefficients)
  674:     INSTRUCTION("PRSTC", instruction_prstc);
  675:     INSTRUCTION("PRUSR", instruction_prusr);
  676:     INSTRUCTION("PRVAR", instruction_prvar);
  677:     INSTRUCTION("PSDEV", instruction_psdev);
  678:     INSTRUCTION("PURGE", instruction_purge);
  679:     INSTRUCTION("RDATE", instruction_rdate);
  680:     INSTRUCTION("REGEX", instruction_regex);
  681:     INSTRUCTION("RELAX", instruction_relax);
  682:     INSTRUCTION("RFUSE", instruction_rfuse);
  683:     INSTRUCTION("RSTOP", instruction_rstop);
  684:     INSTRUCTION("ROLLD", instruction_rolld);
  685:     INSTRUCTION("ROW->", instruction_row_fleche);
  686:     INSTRUCTION("SCALE", instruction_scale);
  687:     INSTRUCTION("SCHED", instruction_sched);
  688:     INSTRUCTION("SCHUR", instruction_schur);
  689:     INSTRUCTION("SCONJ", instruction_sconj);
  690:     INSTRUCTION("SLICE", instruction_slice);
  691:     //INSTRUCTION("SLIST")
  692:     //Instruction HP48 (somme des termes d'une liste)
  693:     INSTRUCTION("SPAWN", instruction_spawn);
  694:     INSTRUCTION("START", instruction_start);
  695:     INSTRUCTION("STORE", instruction_store);
  696:     INSTRUCTION("STR->", instruction_str_fleche);
  697:     INSTRUCTION("TAYLR", instruction_taylr);
  698:     INSTRUCTION("TITLE", instruction_title);
  699:     //INSTRUCTION("TRACE")
  700:     //INSTRUCTION("TRUTH")
  701:     INSTRUCTION("UCASE", instruction_ucase);
  702:     INSTRUCTION("UCHOL", instruction_uchol);
  703:     INSTRUCTION("UNTIL", instruction_until);
  704:     //INSTRUCTION("UPDIR")
  705:     INSTRUCTION("VISIT", instruction_visit);
  706:     INSTRUCTION("WFACK", instruction_wfack);
  707:     INSTRUCTION("WFSWI", instruction_wfswi);
  708:     INSTRUCTION("WHILE", instruction_while);
  709:     //INSTRUCTION("WIDTH")
  710:     INSTRUCTION("WRITE", instruction_write);
  711:     INSTRUCTION("XROOT", instruction_xroot);
  712:     INSTRUCTION("YIELD", instruction_yield);
  713:     INSTRUCTION("->COL", instruction_fleche_col);
  714:     INSTRUCTION("->HMS", instruction_fleche_hms);
  715:     INSTRUCTION("->LCD", instruction_fleche_lcd);
  716:     INSTRUCTION("->NUM", instruction_fleche_num);
  717:     INSTRUCTION("->ROW", instruction_fleche_row);
  718:     INSTRUCTION("->STR", instruction_fleche_str);
  719: 
  720:     INSTRUCTION("APPEND", instruction_append);
  721:     INSTRUCTION("ARRY->", instruction_array_fleche);
  722:     INSTRUCTION("ATEXIT", instruction_atexit);
  723:     INSTRUCTION("ATPOKE", instruction_atpoke);
  724:     INSTRUCTION("BESSEL", instruction_bessel);
  725:     INSTRUCTION("CIPHER", instruction_cipher);
  726:     INSTRUCTION("CLRERR", instruction_clrerr);
  727:     INSTRUCTION("CLRMTX", instruction_clrmtx);
  728:     INSTRUCTION("CLRSWI", instruction_clrswi);
  729:     INSTRUCTION("CREATE", instruction_create);
  730:     INSTRUCTION("DELETE", instruction_delete);
  731: #   ifdef SHARED_MEMORY
  732:         INSTRUCTION("DETACH", instruction_detach);
  733: #   else
  734:         if ((*s_etat_processus).langue == 'F')
  735:         {
  736:             printf("+++Attention : DETACH est émulé par SPAWN car le système"
  737:                     " hôte ne supporte\n"
  738:                     "               pas de mémoire partagée !\n");
  739:         }
  740:         else
  741:         {
  742:             printf("+++Warning : DETACH is replaced by SPAWN as host system"
  743:                     " does not support\n"
  744:                     "             shared memory !\n");
  745:         }
  746: 
  747:         INSTRUCTION("DETACH", instruction_spawn);
  748: #   endif
  749:     INSTRUCTION("DIAG->", instruction_diag_fleche);
  750:     INSTRUCTION("DIGEST", instruction_digest);
  751:     //INSTRUCTION("DOLIST")
  752:     //Instruction HP48 (application d'une fonction à une liste)
  753:     //liste(s) nombre_de_listes_a_traiter fonction DOLIST
  754:     //{ 1 2 3 }
  755:     //{ 4 5 6 }
  756:     //{ 7 8 9 }
  757:     //3
  758:     //<<  * + >>
  759:     //DOLIST
  760:     //=> { 29 42 57 }
  761:     INSTRUCTION("ELSEIF", instruction_elseif);
  762:     INSTRUCTION("FORALL", instruction_forall);
  763:     INSTRUCTION("FORMAT", instruction_format);
  764:     //INSTRUCTION("HEIGHT")
  765:     INSTRUCTION("ITRACE", instruction_itrace);
  766:     INSTRUCTION("LIST->", instruction_list_fleche);
  767:     INSTRUCTION("LOGGER", instruction_logger);
  768:     INSTRUCTION("MCLRIN", instruction_mclrin);
  769:     INSTRUCTION("NRPROC", instruction_nrproc);
  770:     INSTRUCTION("PROCID", instruction_procid);
  771:     INSTRUCTION("PROMPT", instruction_prompt);
  772:     INSTRUCTION("RCLSWI", instruction_rclswi);
  773:     INSTRUCTION("RECALL", instruction_recall);
  774:     INSTRUCTION("RECODE", instruction_recode);
  775:     INSTRUCTION("REDRAW", instruction_redraw);
  776:     INSTRUCTION("REMOVE", instruction_remove);
  777:     INSTRUCTION("REPEAT", instruction_repeat);
  778:     INSTRUCTION("RETURN", instruction_return);
  779:     INSTRUCTION("REWIND", instruction_rewind);
  780:     //INSTRUCTION("SCREEN")
  781:     INSTRUCTION("SELECT", instruction_select);
  782:     //INSTRUCTION("SPHERE")
  783:     INSTRUCTION("SHARED", instruction_shared);
  784:     INSTRUCTION("SPLASH", instruction_splash);
  785:     INSTRUCTION("STATIC", instruction_static);
  786:     INSTRUCTION("STOSWI", instruction_stoswi);
  787:     //INSTRUCTION("STREAM", instruction_stream);
  788:     //{ 1 2 3 4 5 } << * >> STREAM => 120
  789:     INSTRUCTION("TARGET", instruction_target);
  790:     INSTRUCTION("UNLOCK", instruction_unlock);
  791:     INSTRUCTION("VERIFY", instruction_verify);
  792:     INSTRUCTION("WFDATA", instruction_wfdata);
  793:     INSTRUCTION("WFLOCK", instruction_wflock);
  794:     INSTRUCTION("WFPOKE", instruction_wfpoke);
  795:     INSTRUCTION("WFPROC", instruction_wfproc);
  796:     INSTRUCTION("WFSOCK", instruction_wfsock);
  797:     INSTRUCTION("->ARRY", instruction_fleche_array);
  798:     INSTRUCTION("->DIAG", instruction_fleche_diag);
  799:     INSTRUCTION("->LIST", instruction_fleche_list);
  800: 
  801:     INSTRUCTION("ARRAY->", instruction_array_fleche);
  802:     //INSTRUCTION("BARPLOT")
  803:     //INSTRUCTION("BESTFIT")
  804:     //Instruction HP48 (choisit le meilleur modèle de régression)
  805:     INSTRUCTION("CLRFUSE", instruction_clrfuse);
  806:     INSTRUCTION("CONVERT", instruction_convert);
  807:     INSTRUCTION("CRSMPHR", instruction_crsmphr);
  808:     INSTRUCTION("CURRENC", instruction_currenc);
  809:     INSTRUCTION("DEFAULT", instruction_default);
  810:     INSTRUCTION("EPSILON", instruction_epsilon);
  811:     //INSTRUCTION("GRIDMAP")
  812:     //Instruction HP48 (sélectionne le mode de tracé GRIDMAP)
  813:     //Le tracé GRIDMAP transforme la grille d'échantillonnage rectiligne
  814:     //en appliquant la fonction en cours à valeurs complexes.
  815:     //Les coordonnées de chaque point de la grille (un nombre complexe)
  816:     //constituent
  817:     //les données d'entrée de la fonction qui les projette ensuite dans le
  818:     //grille
  819:     //de sortie.
  820:     //f(x,y)=fnct complexe évaluée sur la grille (x,y) et affichée comme une
  821:     //fonction paramétrique.
  822:     INSTRUCTION("INQUIRE", instruction_inquire);
  823:     INSTRUCTION("MEMLOCK", instruction_memlock);
  824:     INSTRUCTION("MTXLOCK", instruction_mtxlock);
  825:     INSTRUCTION("PERSIST", instruction_persist);
  826:     INSTRUCTION("PLOTTER", instruction_plotter);
  827:     INSTRUCTION("PRIVATE", instruction_private);
  828:     INSTRUCTION("PROTECT", instruction_protect);
  829:     INSTRUCTION("PSHPRFL", instruction_pshprfl);
  830:     INSTRUCTION("PULPRFL", instruction_pulprfl);
  831:     INSTRUCTION("RESTART", instruction_restart);
  832:     INSTRUCTION("REVLIST", instruction_revlist);
  833:     INSTRUCTION("SCATTER", instruction_scatter);
  834:     INSTRUCTION("SUSPEND", instruction_suspend);
  835:     INSTRUCTION("SWILOCK", instruction_swilock);
  836:     INSTRUCTION("SYSEVAL", instruction_syseval);
  837:     INSTRUCTION("TABLE->", instruction_table_fleche);
  838:     INSTRUCTION("VERSION", instruction_version);
  839:     INSTRUCTION("WORKDIR", instruction_workdir);
  840:     INSTRUCTION("->ARRAY", instruction_fleche_array);
  841:     INSTRUCTION("->TABLE", instruction_fleche_table);
  842: 
  843:     INSTRUCTION("CLRCNTXT", instruction_clrcntxt);
  844:     INSTRUCTION("CLRSMPHR", instruction_clrsmphr);
  845:     INSTRUCTION("COMPRESS", instruction_compress);
  846:     INSTRUCTION("CONTINUE", instruction_continue);
  847:     INSTRUCTION("CRITICAL", instruction_critical);
  848:     INSTRUCTION("DUPCNTXT", instruction_dupcntxt);
  849:     INSTRUCTION("FUNCTION", instruction_function);
  850:     INSTRUCTION("IMPLICIT", instruction_implicit);
  851:     INSTRUCTION("INFINITY", instruction_sensible_infinity);
  852:     INSTRUCTION("KEYLABEL", instruction_keylabel);
  853:     INSTRUCTION("KEYTITLE", instruction_keytitle);
  854:     INSTRUCTION("LOGSCALE", instruction_logscale);
  855:     INSTRUCTION("NEWPLANE", instruction_newplane);
  856:     INSTRUCTION("PSHCNTXT", instruction_pshcntxt);
  857:     INSTRUCTION("PULCNTXT", instruction_pulcntxt);
  858:     INSTRUCTION("SQLQUERY", instruction_sqlquery);
  859:     INSTRUCTION("SWIQUEUE", instruction_swiqueue);
  860:     INSTRUCTION("TOKENIZE", instruction_tokenize);
  861:     INSTRUCTION("VARIABLE", instruction_variable);
  862:     INSTRUCTION("VOLATILE", instruction_volatile);
  863:     INSTRUCTION("WARRANTY", instruction_warranty);
  864: 
  865:     INSTRUCTION("AUTOSCALE", instruction_autoscale);
  866:     INSTRUCTION("BACKSPACE", instruction_backspace);
  867:     INSTRUCTION("BACKTRACE", instruction_backtrace);
  868:     INSTRUCTION("CLRATEXIT", instruction_clratexit);
  869:     INSTRUCTION("CLRATPOKE", instruction_clratpoke);
  870:     INSTRUCTION("COPYRIGHT", instruction_copyright);
  871:     //INSTRUCTION("CYLINDRIC");
  872:     INSTRUCTION("DAEMONIZE", instruction_daemonize);
  873:     INSTRUCTION("DROPCNTXT", instruction_dropcntxt);
  874:     INSTRUCTION("EXTERNALS", instruction_externals);
  875:     INSTRUCTION("HISTOGRAM", instruction_histogram);
  876:     INSTRUCTION("MEMUNLOCK", instruction_memunlock);
  877:     INSTRUCTION("MTXSTATUS", instruction_mtxstatus);
  878:     INSTRUCTION("MTXUNLOCK", instruction_mtxunlock);
  879:     INSTRUCTION("PARAMETER", instruction_parameter);
  880:     //INSTRUCTION("PSCONTOUR")
  881:     //INSTRUCTION("SCATRPLOT")
  882:     //(trace un nuage de points de SDAT et la courbe de régression)
  883:     INSTRUCTION("SMPHRDECR", instruction_smphrdecr);
  884:     INSTRUCTION("SMPHRGETV", instruction_smphrgetv);
  885:     INSTRUCTION("SMPHRINCR", instruction_smphrincr);
  886:     INSTRUCTION("SWAPCNTXT", instruction_swapcntxt);
  887:     INSTRUCTION("SWISTATUS", instruction_swistatus);
  888:     INSTRUCTION("SWIUNLOCK", instruction_swiunlock);
  889:     INSTRUCTION("UNPROTECT", instruction_unprotect);
  890:     INSTRUCTION("WIREFRAME", instruction_wireframe);
  891: 
  892:     INSTRUCTION("MTXTRYLOCK", instruction_mtxtrylock);
  893:     INSTRUCTION("PARAMETRIC", instruction_parametric);
  894:     //INSTRUCTION("PARSURFACE")
  895:     //Instruction HP48 (tracé PARSURFACE) Equation sous forme de liste
  896:     INSTRUCTION("SLICESCALE", instruction_slicescale);
  897:     INSTRUCTION("SQLCONNECT", instruction_sqlconnect);
  898:     //INSTRUCTION("SLOPEFIELD")
  899:     //Instruction HP48 (type de tracé)
  900:     //Tracé 3D en courbes de niveaux.
  901:     //Le type de tracé 'SLOPEFIELD' dessine un réseau de segments dont les
  902:     //pentes
  903:     //représentent la valeur de la fonction (x,y) en leur milieu.
  904:     //=> utile pour y'=F(x,y)
  905:     INSTRUCTION("UNCOMPRESS", instruction_uncompress);
  906: 
  907:     INSTRUCTION("LOCALIZATION", instruction_localization);
  908:     INSTRUCTION("SMPHRTRYDECR", instruction_smphrtrydecr);
  909: 
  910:     INSTRUCTION("SQLDISCONNECT", instruction_sqldisconnect);
  911: #undef INSTRUCTION
  912: 
  913:     return;
  914: }
  915: 
  916: 
  917: void *
  918: analyse_instruction(struct_processus *s_etat_processus, unsigned char *ptr)
  919: {
  920:     int                             pointeur;
  921: 
  922:     struct_instruction              *l_instruction_courante;
  923: 
  924:     l_instruction_courante = (*s_etat_processus).arbre_instructions;
  925: 
  926:     while((*ptr) != d_code_fin_chaine)
  927:     {
  928:         pointeur = (*s_etat_processus).pointeurs_caracteres[*ptr];
  929: 
  930:         if (pointeur < 0)
  931:         {
  932:             // Caractère hors de l'alphabet des instructions
  933: 
  934:             return(NULL);
  935:         }
  936: 
  937:         if ((*l_instruction_courante).noeuds[pointeur] == NULL)
  938:         {
  939:             // Le chemin de l'instruction candidate n'existe pas.
  940: 
  941:             return(NULL);
  942:         }
  943: 
  944:         l_instruction_courante = (*l_instruction_courante).noeuds[pointeur];
  945:         ptr++;
  946: 
  947:         if ((l_instruction_courante == NULL) && ((*ptr) != d_code_fin_chaine))
  948:         {
  949:             // Le chemin de l'instruction candidate est incomplet.
  950: 
  951:             return(NULL);
  952:         }
  953:     }
  954: 
  955:     if ((*l_instruction_courante).feuille != NULL)
  956:     {
  957:         return((*l_instruction_courante).feuille);
  958:     }
  959: 
  960:     return(NULL);
  961: }
  962: 
  963: 
  964: void
  965: analyse(struct_processus *s_etat_processus, void (*fonction)())
  966: {
  967:     real8                           attente;
  968:     real8                           pourcentage;
  969:     real8                           temps_cpu;
  970:     real8                           temps_reel;
  971: 
  972:     static struct timeval           horodatage_initial;
  973:     struct timeval                  horodatage_final;
  974: 
  975: #   ifndef OS2
  976:     static struct rusage            usage_initial;
  977:     struct rusage                   usage_final;
  978: #   else
  979:     static clock_t                  usage_initial;
  980:     clock_t                         usage_final;
  981: #   endif
  982: 
  983:     struct timespec                 temporisation;
  984: 
  985:     unsigned char                   *position;
  986:     unsigned char                   *bibliotheque_candidate;
  987:     unsigned char                   instruction_majuscule
  988:                                             [d_longueur_maximale_instruction];
  989:     unsigned char                   registre_instruction_valide;
  990: 
  991:     void                            (*instruction)();
  992: 
  993:     errno = 0;
  994:     (*s_etat_processus).var_volatile_exception_gsl = 0;
  995: 
  996:     (*s_etat_processus).instruction_valide = 'Y';
  997:     (*s_etat_processus).constante_symbolique = 'N';
  998:     (*s_etat_processus).nombre_arguments = -2;
  999:     (*s_etat_processus).instruction_intrinseque = 'I';
 1000: 
 1001:     /*
 1002:      * On autorise l'exécution d'un fork() dans un thread concurrent.
 1003:      */
 1004: 
 1005: #   ifndef SEMAPHORES_NOMMES
 1006:         if (sem_post(&((*s_etat_processus).semaphore_fork)) != 0)
 1007: #   else
 1008:         if (sem_post((*s_etat_processus).semaphore_fork) != 0)
 1009: #   endif
 1010:     {
 1011:         (*s_etat_processus).erreur_systeme = d_es_processus;
 1012:         return;
 1013:     }
 1014: 
 1015: #   ifndef SEMAPHORES_NOMMES
 1016:         while(sem_wait(&((*s_etat_processus).semaphore_fork)) != 0)
 1017: #   else
 1018:         while(sem_wait((*s_etat_processus).semaphore_fork) != 0)
 1019: #   endif
 1020:     {
 1021:         if (errno != EINTR)
 1022:         {
 1023:             (*s_etat_processus).erreur_systeme = d_es_processus;
 1024:             return;
 1025:         }
 1026:     }
 1027: 
 1028:     /*
 1029:      * Verrou pour les sections_critiques
 1030:      */
 1031: 
 1032:     if (pthread_mutex_lock(&mutex_sections_critiques) != 0)
 1033:     {
 1034:         (*s_etat_processus).erreur_systeme = d_es_processus;
 1035:         return;
 1036:     }
 1037: 
 1038:     if (pthread_mutex_unlock(&mutex_sections_critiques) != 0)
 1039:     {
 1040:         (*s_etat_processus).erreur_systeme = d_es_processus;
 1041:         return;
 1042:     }
 1043: 
 1044:     scrutation_injection(s_etat_processus);
 1045: 
 1046:     if (fonction == NULL)
 1047:     {
 1048:         conversion_majuscule_limitee((*s_etat_processus).instruction_courante,
 1049:                 instruction_majuscule, d_longueur_maximale_instruction);
 1050:         instruction = analyse_instruction(s_etat_processus,
 1051:                 instruction_majuscule);
 1052: 
 1053:         if (instruction == NULL)
 1054:         {
 1055:             // L'instruction n'existe pas.
 1056: 
 1057:             (*s_etat_processus).instruction_valide = 'N';
 1058:         }
 1059:         else
 1060:         {
 1061:             // Exécution de l'instruction associée. Le drapeau
 1062:             // (*s_etat_processus).instruction_valide peut passer à 'N'
 1063:             // dans le cas d'instructions sensibles à la casse.
 1064: 
 1065:             if ((*s_etat_processus).niveau_profilage >= 2)
 1066:             {
 1067:                 profilage(s_etat_processus, instruction_majuscule);
 1068:             }
 1069: 
 1070:             (*s_etat_processus).instruction_valide = 'Y';
 1071:             instruction(s_etat_processus);
 1072: 
 1073:             if ((*s_etat_processus).niveau_profilage >= 2)
 1074:             {
 1075:                 profilage(s_etat_processus, NULL);
 1076:             }
 1077:         }
 1078:     }
 1079:     else
 1080:     {
 1081:         if ((*s_etat_processus).niveau_profilage >= 2)
 1082:         {
 1083:             profilage(s_etat_processus,
 1084:                     (*s_etat_processus).instruction_courante);
 1085:         }
 1086: 
 1087:         (*s_etat_processus).instruction_valide = 'Y';
 1088:         fonction(s_etat_processus);
 1089: 
 1090:         if ((*s_etat_processus).niveau_profilage >= 2)
 1091:         {
 1092:             profilage(s_etat_processus, NULL);
 1093:         }
 1094:     }
 1095: 
 1096:     if ((*s_etat_processus).instruction_valide == 'Y')
 1097:     {
 1098:         (*s_etat_processus).instruction_intrinseque = 'Y';
 1099:     }
 1100: 
 1101:     if ((*s_etat_processus).instruction_valide == 'N')
 1102:     {
 1103:         if ((position = index((*s_etat_processus).instruction_courante, '$'))
 1104:                 != NULL)
 1105:         {
 1106:             if ((bibliotheque_candidate = malloc(((size_t) (position + 1
 1107:                     - (*s_etat_processus).instruction_courante))
 1108:                     * sizeof(unsigned char))) == NULL)
 1109:             {
 1110:                 (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 1111:                 return;
 1112:             }
 1113: 
 1114:             (*bibliotheque_candidate) = d_code_fin_chaine;
 1115:             strncat(bibliotheque_candidate,
 1116:                     (*s_etat_processus).instruction_courante, ((size_t)
 1117:                     (position - (*s_etat_processus).instruction_courante)));
 1118: 
 1119:             position++;
 1120: 
 1121:             if (execution_fonction_de_bibliotheque(s_etat_processus, position,
 1122:                     bibliotheque_candidate) == d_vrai)
 1123:             {
 1124:                 (*s_etat_processus).instruction_valide = 'Y';
 1125:                 (*s_etat_processus).instruction_intrinseque = 'N';
 1126:             }
 1127:             else
 1128:             {
 1129:                 (*s_etat_processus).instruction_valide = 'N';
 1130:             }
 1131: 
 1132:             free(bibliotheque_candidate);
 1133:         }
 1134:         else
 1135:         {
 1136:             if (execution_fonction_de_bibliotheque(s_etat_processus,
 1137:                     (*s_etat_processus).instruction_courante, NULL)
 1138:                     == d_vrai)
 1139:             {
 1140:                 (*s_etat_processus).instruction_valide = 'Y';
 1141:                 (*s_etat_processus).instruction_intrinseque = 'N';
 1142:             }
 1143:             else
 1144:             {
 1145:                 (*s_etat_processus).instruction_valide = 'N';
 1146:             }
 1147:         }
 1148:     }
 1149: 
 1150: /*
 1151: --------------------------------------------------------------------------------
 1152:   Gestion des interruptions logicielles
 1153: --------------------------------------------------------------------------------
 1154: */
 1155: 
 1156:     if (((*s_etat_processus).erreur_systeme == d_es) &&
 1157:             ((*s_etat_processus).erreur_execution == d_ex) &&
 1158:             ((*s_etat_processus).exception == d_ep))
 1159:     {
 1160:         if ((*s_etat_processus).test_instruction == 'N')
 1161:         {
 1162:             if ((*s_etat_processus).nombre_interruptions_non_affectees != 0)
 1163:             {
 1164:                 affectation_interruptions_logicielles(s_etat_processus);
 1165:             }
 1166: 
 1167:             if (((*s_etat_processus).nombre_interruptions_en_queue != 0) &&
 1168:                     ((*s_etat_processus).erreur_systeme == d_es) &&
 1169:                     ((*s_etat_processus).erreur_execution == d_ex))
 1170:             {
 1171: 
 1172:                 registre_instruction_valide =
 1173:                         (*s_etat_processus).instruction_valide;
 1174:                 traitement_interruptions_logicielles(s_etat_processus);
 1175:                 (*s_etat_processus).instruction_valide =
 1176:                         registre_instruction_valide;
 1177:             }
 1178:         }
 1179:     }
 1180: 
 1181: /*
 1182: --------------------------------------------------------------------------------
 1183:   Limitation du pourcetage de temps CPU
 1184: --------------------------------------------------------------------------------
 1185: */
 1186: 
 1187:     if ((*s_etat_processus).pourcentage_maximal_cpu < 100)
 1188:     {
 1189: #       ifndef OS2
 1190:         getrusage(RUSAGE_SELF, &usage_final);
 1191: #       else
 1192:         usage_final = clock();
 1193: #       endif
 1194: 
 1195:         gettimeofday(&horodatage_final, NULL);
 1196: 
 1197:         if ((*s_etat_processus).initialisation_scheduler == d_vrai)
 1198:         {
 1199:             temps_reel = ((real8) (horodatage_final.tv_sec -
 1200:                     horodatage_initial.tv_sec)) +
 1201:                     (((real8) (horodatage_final.tv_usec -
 1202:                     horodatage_initial.tv_usec)) / ((real8) 1E6));
 1203: 
 1204:             // Le temps depuis la dernière limitation est de plus de un
 1205:             // dixième de seconde.
 1206: 
 1207:             if (temps_reel >= 0.1)
 1208:             {
 1209: #               ifndef OS2
 1210:                 temps_cpu = ((real8) ((usage_final.ru_utime.tv_sec +
 1211:                         usage_final.ru_stime.tv_sec) -
 1212:                         (usage_initial.ru_utime.tv_sec +
 1213:                         usage_initial.ru_stime.tv_sec))) +
 1214:                         (((real8) ((usage_final.ru_utime.tv_usec +
 1215:                         usage_final.ru_stime.tv_usec) -
 1216:                         (usage_initial.ru_utime.tv_usec +
 1217:                         usage_initial.ru_stime.tv_usec))) / ((real8) 1E6));
 1218: #               else
 1219:                 temps_cpu = (usage_final - usage_initial) / CLOCKS_PER_SEC;
 1220: #               endif
 1221: 
 1222:                 pourcentage = 100 * temps_cpu / temps_reel;
 1223: 
 1224:                 if (pourcentage > 100)
 1225:                 {
 1226:                     pourcentage = 100;
 1227:                 }
 1228: 
 1229:                 if (pourcentage > (*s_etat_processus).pourcentage_maximal_cpu)
 1230:                 {
 1231:                     attente = ((pourcentage * temps_cpu) /
 1232:                             (*s_etat_processus).pourcentage_maximal_cpu)
 1233:                             - (pourcentage * temps_cpu / 100);
 1234: 
 1235:                     temporisation.tv_sec = (time_t) floor(attente);
 1236:                     temporisation.tv_nsec = (suseconds_t) ((attente
 1237:                             - ((real8) temporisation.tv_sec)) * 1E9);
 1238: 
 1239:                     while(nanosleep(&temporisation, &temporisation) == -1)
 1240:                     {
 1241:                         if (errno != EINTR)
 1242:                         {
 1243:                             break;
 1244:                         }
 1245:                     }
 1246:                 }
 1247: 
 1248:                 horodatage_initial = horodatage_final;
 1249:                 usage_initial = usage_final;
 1250:             }
 1251:         }
 1252:         else
 1253:         {
 1254:             (*s_etat_processus).initialisation_scheduler = d_vrai;
 1255: 
 1256:             horodatage_initial = horodatage_final;
 1257:             usage_initial = usage_final;
 1258:         }
 1259:     }
 1260:     else
 1261:     {
 1262:         (*s_etat_processus).initialisation_scheduler = d_faux;
 1263:     }
 1264: 
 1265: /*
 1266: --------------------------------------------------------------------------------
 1267:   Introduction des erreurs générées
 1268: --------------------------------------------------------------------------------
 1269: */
 1270: 
 1271:     if (((*s_etat_processus).test_instruction == 'N') &&
 1272:             ((*s_etat_processus).instruction_valide == 'Y'))
 1273:     {
 1274:         traitement_asynchrone_exceptions_gsl(s_etat_processus);
 1275: 
 1276:         if ((*s_etat_processus).erreur_processus_fils == d_vrai)
 1277:         {
 1278:             (*s_etat_processus).erreur_processus_fils = d_faux;
 1279: 
 1280:             (*s_etat_processus).erreur_systeme =
 1281:                     (*s_etat_processus).erreur_systeme_processus_fils;
 1282:             (*s_etat_processus).erreur_execution =
 1283:                     (*s_etat_processus).erreur_execution_processus_fils;
 1284:             (*s_etat_processus).arret_si_exception = d_vrai;
 1285: 
 1286:             if ((*s_etat_processus).pid_erreur_processus_fils == getpid())
 1287:             {
 1288:                 (*s_etat_processus).invalidation_message_erreur = d_faux;
 1289:             }
 1290:             else
 1291:             {
 1292:                 (*s_etat_processus).invalidation_message_erreur = d_vrai;
 1293:             }
 1294:         }
 1295: 
 1296:         if (((*s_etat_processus).erreur_execution != d_ex) ||
 1297:                 ((*s_etat_processus).erreur_systeme != d_es) ||
 1298:                 ((*s_etat_processus).exception != d_ep))
 1299:         {
 1300:             (*s_etat_processus).niveau_derniere_erreur =
 1301:                     (*s_etat_processus).niveau_courant;
 1302: 
 1303:             if ((*s_etat_processus).mode_execution_programme == 'Y')
 1304:             {
 1305:                 if ((*s_etat_processus).instruction_derniere_erreur != NULL)
 1306:                 {
 1307:                     free((*s_etat_processus).instruction_derniere_erreur);
 1308:                     (*s_etat_processus).instruction_derniere_erreur = NULL;
 1309:                 }
 1310: 
 1311:                 if ((*s_etat_processus).instruction_courante == NULL)
 1312:                 {
 1313:                     if (((*s_etat_processus).instruction_derniere_erreur =
 1314:                             malloc(16 * sizeof(unsigned char))) == NULL)
 1315:                     {
 1316:                         (*s_etat_processus).erreur_systeme =
 1317:                                 d_es_allocation_memoire;
 1318:                         return;
 1319:                     }
 1320: 
 1321:                     strcpy((*s_etat_processus).instruction_derniere_erreur,
 1322:                             "<not available>");
 1323:                 }
 1324:                 else
 1325:                 {
 1326:                     if (((*s_etat_processus).instruction_derniere_erreur =
 1327:                             malloc((strlen((*s_etat_processus)
 1328:                             .instruction_courante) + 1) *
 1329:                             sizeof(unsigned char))) == NULL)
 1330:                     {
 1331:                         (*s_etat_processus).erreur_systeme =
 1332:                                 d_es_allocation_memoire;
 1333:                         return;
 1334:                     }
 1335: 
 1336:                     strcpy((*s_etat_processus).instruction_derniere_erreur,
 1337:                             (*s_etat_processus).instruction_courante);
 1338:                 }
 1339:             }
 1340:             else
 1341:             {
 1342:                 if ((*s_etat_processus).objet_courant != NULL)
 1343:                 {
 1344:                     if ((*s_etat_processus).instruction_derniere_erreur != NULL)
 1345:                     {
 1346:                         free((*s_etat_processus).instruction_derniere_erreur);
 1347:                         (*s_etat_processus).instruction_derniere_erreur = NULL;
 1348:                     }
 1349: 
 1350:                     if (((*s_etat_processus).instruction_derniere_erreur =
 1351:                             formateur(s_etat_processus, 0,
 1352:                             (*s_etat_processus).objet_courant)) == NULL)
 1353:                     {
 1354:                         return;
 1355:                     }
 1356: 
 1357:                     (*s_etat_processus).objet_courant = NULL;
 1358:                 }
 1359:             }
 1360:         }
 1361:     }
 1362: 
 1363:     return;
 1364: }
 1365: 
 1366: 
 1367: /*
 1368: ================================================================================
 1369:   Traitement asynchrone des erreurs de la bibliothèque GSL
 1370: ================================================================================
 1371:   Entrées :
 1372: --------------------------------------------------------------------------------
 1373:   Sorties :
 1374: --------------------------------------------------------------------------------
 1375:   Effets de bord : néant
 1376: ================================================================================
 1377: */
 1378: 
 1379: void
 1380: traitement_asynchrone_exceptions_gsl(struct_processus *s_etat_processus)
 1381: {
 1382:     if ((*s_etat_processus).var_volatile_exception_gsl != 0)
 1383:     {
 1384:         switch((*s_etat_processus).var_volatile_exception_gsl)
 1385:         {
 1386:             case GSL_EINVAL :
 1387:             {
 1388:                 (*s_etat_processus).erreur_execution = d_ex_argument_invalide;
 1389:                 break;
 1390:             }
 1391: 
 1392:             case GSL_EDOM :
 1393:             {
 1394:                 (*s_etat_processus).exception = d_ep_domaine_definition;
 1395:                 break;
 1396:             }
 1397: 
 1398:             case GSL_ERANGE :
 1399:             {
 1400:                 (*s_etat_processus).exception = d_ep_resultat_indefini;
 1401:                 break;
 1402:             }
 1403: 
 1404:             case GSL_EZERODIV :
 1405:             {
 1406:                 (*s_etat_processus).exception = d_ep_division_par_zero;
 1407:                 break;
 1408:             }
 1409: 
 1410:             case GSL_EUNDRFLW :
 1411:             {
 1412:                 (*s_etat_processus).exception = d_ep_underflow;
 1413:                 break;
 1414:             }
 1415: 
 1416:             case GSL_EOVRFLW :
 1417:             {
 1418:                 (*s_etat_processus).exception = d_ep_overflow;
 1419:                 break;
 1420:             }
 1421: 
 1422:             case GSL_ENOMEM :
 1423:             {
 1424:                 (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
 1425:                 break;
 1426:             }
 1427: 
 1428:             case GSL_ELOSS :
 1429:             {
 1430:                 (*s_etat_processus).exception = d_ep_perte_precision;
 1431:                 break;
 1432:             }
 1433: 
 1434:             default :
 1435:             {
 1436:                 (*s_etat_processus).erreur_execution =
 1437:                         d_ex_routines_mathematiques;
 1438:                 break;
 1439:             }
 1440:         }
 1441: 
 1442:         (*s_etat_processus).var_volatile_exception_gsl = 0;
 1443:     }
 1444: 
 1445:     return;
 1446: }
 1447: 
 1448: // vim: ts=4

CVSweb interface <joel.bertrand@systella.fr>