home *** CD-ROM | disk | FTP | other *** search
/ Java 1996 August / Java - Summer 1996.iso / kaffe-0.2 / config / i386-needs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-13  |  1.1 KB  |  43 lines

  1. /*
  2.  * i386-needs.h
  3.  * What does the FreeBSD i386 architecture need in terms of soft instructions.
  4.  *
  5.  * Copyright (c) 1996 Systems Architecture Research Centre,
  6.  *           City University, London, UK.
  7.  *
  8.  * See the file "license.terms" for information on usage and redistribution
  9.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10.  *
  11.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
  12.  */
  13.  
  14. #ifndef __i386_needs_h
  15. #define __i386_needs_h
  16.  
  17. #define    NEED_soft_unimplemented
  18. #define NEED_soft_lmul
  19. #define NEED_soft_ldiv
  20. #define NEED_soft_lrem
  21. #define NEED_soft_frem
  22. #define NEED_soft_drem
  23. #define NEED_soft_lshl
  24. #define NEED_soft_lshr
  25. #define NEED_soft_lushr
  26. #define    NEED_soft_lcmp
  27. #define    NEED_soft_fcmpl
  28. #define    NEED_soft_fcmpg
  29. #define    NEED_soft_dcmpl
  30. #define    NEED_soft_dcmpg
  31. #define    NEED_soft_multianewarray
  32. #define    NEED_soft_new
  33. #define    NEED_soft_anewarray
  34. #define    NEED_soft_newarray
  35. #define    NEED_soft_athrow
  36. #define    NEED_soft_checkcast
  37. #define    NEED_soft_instanceof
  38. #define    NEED_soft_lookupmethod
  39. #define    NEED_soft_monitorenter
  40. #define    NEED_soft_monitorexit
  41.  
  42. #endif
  43.