Subversion Repositories pentevo

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef _ASMITREE_H
  2. #define _ASMITREE_H
  3. /* asmitree.h */
  4. /*****************************************************************************/
  5. /* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only                     */
  6. /*                                                                           */
  7. /* AS-Portierung                                                             */
  8. /*                                                                           */
  9. /* Opcode-Abfrage als Binaerbaum                                             */
  10. /*                                                                           */
  11. /* Historie: 30.10.1996 Grundsteinlegung                                     */
  12. /*            6.12.1998 dynamische Variante                                  */
  13. /*                                                                           */
  14. /*****************************************************************************/
  15.  
  16. #include "datatypes.h"
  17.  
  18. typedef void (*InstProc)(
  19. #ifdef __PROTOS__
  20. Word Index
  21. #endif
  22. );
  23.  
  24. typedef Boolean (*inst_fnc_t)(
  25. #ifdef __PROTOS__
  26. Word index
  27. #endif
  28. );
  29.  
  30. typedef struct _TInstTableEntry
  31. {
  32.   InstProc Procs[2];
  33.   char *Name;
  34.   Word Indices[2];
  35.   int Coll;
  36. } TInstTableEntry, *PInstTableEntry;
  37.  
  38. typedef struct inst_fnc_table_entry
  39. {
  40.   inst_fnc_t fnc;
  41.   char *p_name;
  42.   Word index;
  43.   int coll;
  44. } inst_fnc_table_entry_t;
  45.  
  46. struct sInstTable
  47. {
  48.   int Fill,Size;
  49.   Boolean Dynamic;
  50.   InstProc prefix_proc;
  51.   Word prefix_proc_index;
  52.   PInstTableEntry Entries;
  53. };
  54. typedef struct sInstTable TInstTable;
  55. typedef struct sInstTable *PInstTable;
  56.  
  57. typedef struct inst_fnc_table
  58. {
  59.   int fill, size;
  60.   Boolean dynamic;
  61.   inst_fnc_table_entry_t *p_entries;
  62. } inst_fnc_table_t;
  63.  
  64. extern PInstTable CreateInstTable(int TableSize);
  65. extern inst_fnc_table_t *inst_fnc_table_create(int table_size);
  66.  
  67. extern void SetDynamicInstTable(PInstTable Table);
  68.  
  69. extern void DestroyInstTable(PInstTable tab);
  70. extern void inst_fnc_table_destroy(inst_fnc_table_t *p_table);
  71.  
  72. extern void AddInstTable(PInstTable tab, const char *Name, Word Index, InstProc Proc);
  73. extern void inst_table_set_prefix_proc(PInstTable tab, InstProc prefix_proc, Word prefix_proc_index);
  74. extern void inst_fnc_table_add(inst_fnc_table_t *p_table, const char *p_name, Word index, inst_fnc_t fnc);
  75.  
  76. extern void RemoveInstTable(PInstTable tab, const char *Name);
  77.  
  78. extern Boolean LookupInstTable(PInstTable tab, const char *Name);
  79. extern const TInstTableEntry *inst_table_search(PInstTable p_table, const char *p_name);
  80. extern void inst_table_exec(const TInstTableEntry *p_entry);
  81. extern Boolean inst_fnc_table_lookup(const inst_fnc_table_t *p_table, const char *p_name);
  82.  
  83. extern void PrintInstTable(FILE *stream, PInstTable tab);
  84.  
  85. extern void asmitree_init(void);
  86.  
  87. #endif /* _ASMITREE_H */
  88.