Deleted Added
sdiff udiff text old ( 6464:2529aeaf1a1c ) new ( 6479:b9ab1b56391b )
full compact
1// Copyright (c) 2007-2008 The Hewlett-Packard Development Company
2// All rights reserved.
3//
4// Redistribution and use of this software in source and binary forms,
5// with or without modification, are permitted provided that the
6// following conditions are met:
7//
8// The software must be used only for Non-Commercial Use which means any

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

879 if ((ext & OFBit) && (msb ^ CFBits))
880 ccFlagBits = ccFlagBits | OFBit;
881 //Use the regular mechanisms to calculate the other flags.
882 ccFlagBits = genFlags(ccFlagBits, ext & ~(CFBit | ECFBit | OFBit),
883 DestReg, psrc1, op2);
884 }
885 '''
886
887 class Wrip(WrRegOp, CondRegOp):
888 code = 'RIP = psrc1 + sop2 + CSBase'
889 else_code="RIP = RIP;"
890
891 class Wruflags(WrRegOp):
892 code = 'ccFlagBits = psrc1 ^ op2'
893
894 class Wrflags(WrRegOp):

--- 434 unchanged lines hidden ---