Deleted Added
sdiff udiff text old ( 7219:0c995c5f8245 ) new ( 7221:99ae09123a46 )
full compact
1// -*- mode:c++ -*-
2
3// Copyright (c) 2010 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

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

496 uint64_t arg2Low = bits(Op2.sw, 15, 0);
497 uint64_t arg2High = bits(Op2.sw, 31, 16);
498 uSaturateOp<16>(midRes, arg1Low, arg2High);
499 replaceBits(resTemp, 15, 0, midRes);
500 uSaturateOp<16>(midRes, arg1High, arg2Low, true);
501 replaceBits(resTemp, 31, 16, midRes);
502 Dest = resTemp;
503 ''', flagType="none", buildCc=False)
504}};