"I am a person who works hard and plays hard."

Yuan Wei
Second Year Graduate Student Department of Computer Science
University of Virginia Charlottesville, VA 22903
Email: yw3f@cs.virginia.edu


Source Code Analysis

Main Page   Compound List   File List   Compound Members   File Members  

endian.h

Go to the documentation of this file.
00001 /*
00002  * endian.h - host endian probe interfaces
00003  *
00004  * This file is a part of the SimpleScalar tool suite written by
00005  * Todd M. Austin as a part of the Multiscalar Research Project.
00006  *  
00007  * The tool suite is currently maintained by Doug Burger and Todd M. Austin.
00008  * 
00009  * Copyright (C) 1994, 1995, 1996, 1997, 1998 by Todd M. Austin
00010  *
00011  * This source file is distributed "as is" in the hope that it will be
00012  * useful.  The tool set comes with no warranty, and no author or
00013  * distributor accepts any responsibility for the consequences of its
00014  * use. 
00015  * 
00016  * Everyone is granted permission to copy, modify and redistribute
00017  * this tool set under the following conditions:
00018  * 
00019  *    This source code is distributed for non-commercial use only. 
00020  *    Please contact the maintainer for restrictions applying to 
00021  *    commercial use.
00022  *
00023  *    Permission is granted to anyone to make or distribute copies
00024  *    of this source code, either as received or modified, in any
00025  *    medium, provided that all copyright notices, permission and
00026  *    nonwarranty notices are preserved, and that the distributor
00027  *    grants the recipient permission for further redistribution as
00028  *    permitted by this document.
00029  *
00030  *    Permission is granted to distribute this file in compiled
00031  *    or executable form under the same conditions that apply for
00032  *    source code, provided that either:
00033  *
00034  *    A. it is accompanied by the corresponding machine-readable
00035  *       source code,
00036  *    B. it is accompanied by a written offer, with no time limit,
00037  *       to give anyone a machine-readable copy of the corresponding
00038  *       source code in return for reimbursement of the cost of
00039  *       distribution.  This written offer must permit verbatim
00040  *       duplication by anyone, or
00041  *    C. it is distributed by someone who received only the
00042  *       executable form, and is accompanied by a copy of the
00043  *       written offer of source code that they received concurrently.
00044  *
00045  * In other words, you are welcome to use, share and improve this
00046  * source file.  You are forbidden to forbid anyone else to use, share
00047  * and improve what you give them.
00048  *
00049  * INTERNET: dburger@cs.wisc.edu
00050  * US Mail:  1210 W. Dayton Street, Madison, WI 53706
00051  *
00052  * $Id: endian.h,v 1.1.1.1 2000/05/26 15:21:52 taustin Exp $
00053  *
00054  * $Log: endian.h,v $
00055  * Revision 1.1.1.1  2000/05/26 15:21:52  taustin
00056  * SimpleScalar Tool Set
00057  *
00058  *
00059  * Revision 1.7  1999/12/31 18:34:59  taustin
00060  * cross-endian execution support added
00061  *
00062  * Revision 1.6  1999/12/13 18:43:19  taustin
00063  * cross endian execution support added
00064  *
00065  * Revision 1.5  1998/08/27 08:25:29  taustin
00066  * implemented host interface description in host.h
00067  *
00068  * Revision 1.4  1997/03/11  01:10:30  taustin
00069  * updated copyright
00070  * long/int tweaks made for ALPHA target support
00071  * swapping supported disabled until it can be tested further
00072  *
00073  * Revision 1.3  1997/01/06  15:58:53  taustin
00074  * comments updated
00075  *
00076  * Revision 1.1  1996/12/05  18:50:23  taustin
00077  * Initial revision
00078  *
00079  *
00080  */
00081 
00082 #ifndef ENDIAN_H
00083 #define ENDIAN_H
00084 
00085 /* data swapping functions, from big/little to little/big endian format */
00086 #define SWAP_HALF(X)                                                    \
00087   (((((half_t)(X)) & 0xff) << 8) | ((((half_t)(X)) & 0xff00) >> 8))
00088 #define SWAP_WORD(X)    (((word_t)(X) << 24) |                          \
00089                          (((word_t)(X) << 8)  & 0x00ff0000) |           \
00090                          (((word_t)(X) >> 8)  & 0x0000ff00) |           \
00091                          (((word_t)(X) >> 24) & 0x000000ff))
00092 #define SWAP_QWORD(X)   (((qword_t)(X) << 56) |                         \
00093                          (((qword_t)(X) << 40) & ULL(0x00ff000000000000)) |\
00094                          (((qword_t)(X) << 24) & ULL(0x0000ff0000000000)) |\
00095                          (((qword_t)(X) << 8)  & ULL(0x000000ff00000000)) |\
00096                          (((qword_t)(X) >> 8)  & ULL(0x00000000ff000000)) |\
00097                          (((qword_t)(X) >> 24) & ULL(0x0000000000ff0000)) |\
00098                          (((qword_t)(X) >> 40) & ULL(0x000000000000ff00)) |\
00099                          (((qword_t)(X) >> 56) & ULL(0x00000000000000ff)))
00100 
00101 /* recognized endian formats */
00102 enum endian_t { endian_big, endian_little, endian_unknown};
00103 /* probe host (simulator) byte endian format */
00104 enum endian_t
00105 endian_host_byte_order(void);
00106 
00107 /* probe host (simulator) double word endian format */
00108 enum endian_t
00109 endian_host_word_order(void);
00110 
00111 #ifndef HOST_ONLY
00112 
00113 /* probe target (simulated program) byte endian format, only
00114    valid after program has been loaded */
00115 enum endian_t
00116 endian_target_byte_order(void);
00117 
00118 /* probe target (simulated program) double word endian format,
00119    only valid after program has been loaded */
00120 enum endian_t
00121 endian_target_word_order(void);
00122 
00123 #endif /* HOST_ONLY */
00124 
00125 #endif /* ENDIAN_H */


UVa CS Department of Computer Science
School of Engineering, University of Virginia
151 Engineer's Way, P.O. Box 400740
Charlottesville, Virginia 22904-4740

(434) 982-2200  Fax: (434) 982-2214