templates.isa (7639:8c09b7ff5b57) | templates.isa (10037:5cac77888310) |
---|---|
1// -*- mode:c++ -*- 2 | 1// -*- mode:c++ -*- 2 |
3// Copyright (c) 2010 ARM Limited | 3// Copyright (c) 2010-2011 ARM Limited |
4// All rights reserved 5// 6// The license below extends only to copyright in the software and shall 7// not be construed as granting a license to any other intellectual 8// property including but not limited to intellectual property relating 9// to a hardware implementation of the functionality of the software 10// licensed hereunder. You may use the software subject to the license 11// terms below provided that you ensure that this notice is replicated --- 23 unchanged lines hidden (view full) --- 35// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 36// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 37// 38// Authors: Gabe Black 39 40//Basic instruction templates 41##include "basic.isa" 42 | 4// All rights reserved 5// 6// The license below extends only to copyright in the software and shall 7// not be construed as granting a license to any other intellectual 8// property including but not limited to intellectual property relating 9// to a hardware implementation of the functionality of the software 10// licensed hereunder. You may use the software subject to the license 11// terms below provided that you ensure that this notice is replicated --- 23 unchanged lines hidden (view full) --- 35// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 36// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 37// 38// Authors: Gabe Black 39 40//Basic instruction templates 41##include "basic.isa" 42 |
43//Templates for AArch64 bit data instructions. 44##include "data64.isa" 45 |
|
43//Templates for predicated instructions 44##include "pred.isa" 45 46//Templates for memory instructions 47##include "mem.isa" 48 | 46//Templates for predicated instructions 47##include "pred.isa" 48 49//Templates for memory instructions 50##include "mem.isa" 51 |
52//Templates for AArch64 memory instructions 53##include "mem64.isa" 54 |
|
49//Miscellaneous instructions that don't fit elsewhere 50##include "misc.isa" | 55//Miscellaneous instructions that don't fit elsewhere 56##include "misc.isa" |
57##include "misc64.isa" |
|
51 52//Templates for microcoded memory instructions 53##include "macromem.isa" 54 55//Templates for branches 56##include "branch.isa" | 58 59//Templates for microcoded memory instructions 60##include "macromem.isa" 61 62//Templates for branches 63##include "branch.isa" |
64##include "branch64.isa" |
|
57 58//Templates for multiplies 59##include "mult.isa" 60 61//Templates for VFP instructions 62##include "vfp.isa" | 65 66//Templates for multiplies 67##include "mult.isa" 68 69//Templates for VFP instructions 70##include "vfp.isa" |
71##include "vfp64.isa" |
|
63 64//Templates for Neon instructions 65##include "neon.isa" | 72 73//Templates for Neon instructions 74##include "neon.isa" |
75 76##include "neon64.isa" |
|