eval.h
上传用户:yuppie_zhu
上传日期:2007-01-08
资源大小:535k
文件大小:1k
源码类别:

编译器/解释器

开发平台:

C/C++

  1. /* eval.h   header file for eval.c
  2.  *
  3.  * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
  4.  * Julian Hall. All rights reserved. The software is
  5.  * redistributable under the licence given in the file "Licence"
  6.  * distributed in the NASM archive.
  7.  */
  8. #ifndef NASM_EVAL_H
  9. #define NASM_EVAL_H
  10. /*
  11.  * Called once to tell the evaluator what output format is
  12.  * providing segment-base details, and what function can be used to
  13.  * look labels up.
  14.  */
  15. void eval_global_info (struct ofmt *output, lfunc lookup_label, loc_t *locp);
  16. /*
  17.  * The evaluator itself.
  18.  */
  19. expr *evaluate (scanner sc, void *scprivate, struct tokenval *tv,
  20. int *fwref, int critical, efunc report_error,
  21. struct eval_hints *hints);
  22. void eval_cleanup(void);
  23. #endif