registers.hh revision 4120
111238Sandreas.sandberg@arm.com/*
211238Sandreas.sandberg@arm.com * Copyright (c) 2007 The Hewlett-Packard Development Company
311238Sandreas.sandberg@arm.com * All rights reserved.
411238Sandreas.sandberg@arm.com *
511238Sandreas.sandberg@arm.com * Redistribution and use of this software in source and binary forms,
611238Sandreas.sandberg@arm.com * with or without modification, are permitted provided that the
711238Sandreas.sandberg@arm.com * following conditions are met:
811238Sandreas.sandberg@arm.com *
911238Sandreas.sandberg@arm.com * The software must be used only for Non-Commercial Use which means any
1011238Sandreas.sandberg@arm.com * use which is NOT directed to receiving any direct monetary
1111238Sandreas.sandberg@arm.com * compensation for, or commercial advantage from such use.  Illustrative
1211238Sandreas.sandberg@arm.com * examples of non-commercial use are academic research, personal study,
1311238Sandreas.sandberg@arm.com * teaching, education and corporate research & development.
1411238Sandreas.sandberg@arm.com * Illustrative examples of commercial use are distributing products for
1511238Sandreas.sandberg@arm.com * commercial advantage and providing services using the software for
1611238Sandreas.sandberg@arm.com * commercial advantage.
1711238Sandreas.sandberg@arm.com *
1811238Sandreas.sandberg@arm.com * If you wish to use this software or functionality therein that may be
1911238Sandreas.sandberg@arm.com * covered by patents for commercial use, please contact:
2011238Sandreas.sandberg@arm.com *     Director of Intellectual Property Licensing
2111238Sandreas.sandberg@arm.com *     Office of Strategy and Technology
2211238Sandreas.sandberg@arm.com *     Hewlett-Packard Company
2311238Sandreas.sandberg@arm.com *     1501 Page Mill Road
2411238Sandreas.sandberg@arm.com *     Palo Alto, California  94304
2511238Sandreas.sandberg@arm.com *
2611238Sandreas.sandberg@arm.com * Redistributions of source code must retain the above copyright notice,
2711238Sandreas.sandberg@arm.com * this list of conditions and the following disclaimer.  Redistributions
2811238Sandreas.sandberg@arm.com * in binary form must reproduce the above copyright notice, this list of
2911238Sandreas.sandberg@arm.com * conditions and the following disclaimer in the documentation and/or
3011238Sandreas.sandberg@arm.com * other materials provided with the distribution.  Neither the name of
3111238Sandreas.sandberg@arm.com * the COPYRIGHT HOLDER(s), HEWLETT-PACKARD COMPANY, nor the names of its
3211238Sandreas.sandberg@arm.com * contributors may be used to endorse or promote products derived from
3311238Sandreas.sandberg@arm.com * this software without specific prior written permission.  No right of
3411238Sandreas.sandberg@arm.com * sublicense is granted herewith.  Derivatives of the software and
3511238Sandreas.sandberg@arm.com * output created using the software may be prepared, but only for
3611238Sandreas.sandberg@arm.com * Non-Commercial Uses.  Derivatives of the software may be shared with
3711238Sandreas.sandberg@arm.com * others provided: (i) the others agree to abide by the list of
3811238Sandreas.sandberg@arm.com * conditions herein which includes the Non-Commercial Use restrictions;
3911238Sandreas.sandberg@arm.com * and (ii) such Derivatives of the software include the above copyright
4011238Sandreas.sandberg@arm.com * notice to acknowledge the contribution from this software where
4111238Sandreas.sandberg@arm.com * applicable, this list of conditions and the disclaimer below.
4211238Sandreas.sandberg@arm.com *
4311238Sandreas.sandberg@arm.com * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4411238Sandreas.sandberg@arm.com * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
4511238Sandreas.sandberg@arm.com * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
4611238Sandreas.sandberg@arm.com * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
4711238Sandreas.sandberg@arm.com * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
4811238Sandreas.sandberg@arm.com * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
4911238Sandreas.sandberg@arm.com * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
5011238Sandreas.sandberg@arm.com * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
5111297Sandreas.sandberg@arm.com * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
5211238Sandreas.sandberg@arm.com * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
5311238Sandreas.sandberg@arm.com * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5411238Sandreas.sandberg@arm.com *
5511238Sandreas.sandberg@arm.com * Authors: Gabe Black
5611238Sandreas.sandberg@arm.com */
5711238Sandreas.sandberg@arm.com
5811238Sandreas.sandberg@arm.com#ifndef __ARCH_X86_REGFILE_HH__
5911238Sandreas.sandberg@arm.com#define __ARCH_X86_REGFILE_HH__
6011238Sandreas.sandberg@arm.com
6111238Sandreas.sandberg@arm.com#error X86 is not yet supported!
6211238Sandreas.sandberg@arm.com
6311238Sandreas.sandberg@arm.comnamespace X86ISA
6411238Sandreas.sandberg@arm.com{
6511238Sandreas.sandberg@arm.com};
6611688Sandreas.hansson@arm.com
6711238Sandreas.sandberg@arm.com#endif // __ARCH_X86_REGFILE_HH__
6811238Sandreas.sandberg@arm.com