Deleted Added
sdiff udiff text old ( 9921:ee049bfce978 ) new ( 11328:9512d2e25f14 )
full compact
1// Copyright (c) 2007-2008 The Hewlett-Packard Development Company
2// Copyright (c) 2015 Advanced Micro Devices, Inc.
3// All rights reserved.
4//
5// The license below extends only to copyright in the software and shall
6// not be construed as granting a license to any other intellectual
7// property including but not limited to intellectual property relating
8// to a hardware implementation of the functionality of the software
9// licensed hereunder. You may use the software subject to the license
10// terms below provided that you ensure that this notice is replicated

--- 34 unchanged lines hidden (view full) ---

45 'sb' : 'int8_t',
46 'ub' : 'uint8_t',
47 'sw' : 'int16_t',
48 'uw' : 'uint16_t',
49 'sdw' : 'int32_t',
50 'udw' : 'uint32_t',
51 'sqw' : 'int64_t',
52 'uqw' : 'uint64_t',
53 'u2qw' : 'std::array<uint64_t, 2>',
54 'sf' : 'float',
55 'df' : 'double',
56}};
57
58let {{
59 def foldInt(idx, foldBit, id):
60 return ('IntReg', 'uqw', 'INTREG_FOLDED(%s, %s)' % (idx, foldBit),
61 'IsInteger', id)

--- 148 unchanged lines hidden ---