types.hh revision 5543
12428SN/A/*
22428SN/A * Copyright (c) 2003-2005 The Regents of The University of Michigan
32428SN/A * All rights reserved.
42428SN/A *
52428SN/A * Redistribution and use in source and binary forms, with or without
62428SN/A * modification, are permitted provided that the following conditions are
72428SN/A * met: redistributions of source code must retain the above copyright
82428SN/A * notice, this list of conditions and the following disclaimer;
92428SN/A * redistributions in binary form must reproduce the above copyright
102428SN/A * notice, this list of conditions and the following disclaimer in the
112428SN/A * documentation and/or other materials provided with the distribution;
122428SN/A * neither the name of the copyright holders nor the names of its
132428SN/A * contributors may be used to endorse or promote products derived from
142428SN/A * this software without specific prior written permission.
152428SN/A *
162428SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172428SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182428SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192428SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202428SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212428SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222428SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232428SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242428SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252428SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262428SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Nathan Binkert
292665Ssaidi@eecs.umich.edu *          Steve Reinhardt
302428SN/A */
312428SN/A
322428SN/A#ifndef __ARCH_ALPHA_TYPES_HH__
332428SN/A#define __ARCH_ALPHA_TYPES_HH__
342428SN/A
352972Sgblack@eecs.umich.edu#include <inttypes.h>
362428SN/A
372428SN/Anamespace AlphaISA
382428SN/A{
392428SN/A
402428SN/A    typedef uint32_t MachInst;
412428SN/A    typedef uint64_t ExtMachInst;
422428SN/A    typedef uint8_t  RegIndex;
432428SN/A
442428SN/A    typedef uint64_t IntReg;
454040Ssaidi@eecs.umich.edu    typedef uint64_t LargestRead;
462428SN/A
472428SN/A    // floating point register file entry type
482455SN/A    typedef double FloatReg;
492455SN/A    typedef uint64_t FloatRegBits;
502428SN/A
512428SN/A    // control register file contents
522428SN/A    typedef uint64_t MiscReg;
532428SN/A
542428SN/A    typedef union {
552428SN/A        IntReg  intreg;
562428SN/A        FloatReg   fpreg;
572428SN/A        MiscReg ctrlreg;
582428SN/A    } AnyReg;
592428SN/A
602972Sgblack@eecs.umich.edu    enum RegContextParam
612972Sgblack@eecs.umich.edu    {
622972Sgblack@eecs.umich.edu        CONTEXT_PALMODE
632972Sgblack@eecs.umich.edu    };
642972Sgblack@eecs.umich.edu
652972Sgblack@eecs.umich.edu    typedef bool RegContextVal;
662972Sgblack@eecs.umich.edu
672428SN/A    enum annotes {
682428SN/A        ANNOTE_NONE = 0,
692428SN/A        // An impossible number for instruction annotations
702428SN/A        ITOUCH_ANNOTE = 0xffffffff,
712428SN/A    };
722428SN/A
735251Sksewell@umich.edu    struct CoreSpecific {
745251Sksewell@umich.edu        int core_type;
755251Sksewell@umich.edu    };
762428SN/A} // namespace AlphaISA
772428SN/A
782428SN/A#endif
79