regop.isa (5428:5a27fea50fee) regop.isa (5429:52dbcf7f7328)
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

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

1095 TscOp = psrc1;
1096 '''
1097
1098 class Rdtsc(RdRegOp):
1099 code = '''
1100 DestReg = TscOp;
1101 '''
1102
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

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

1095 TscOp = psrc1;
1096 '''
1097
1098 class Rdtsc(RdRegOp):
1099 code = '''
1100 DestReg = TscOp;
1101 '''
1102
1103 class Rdm5reg(RdRegOp):
1104 code = '''
1105 DestReg = M5Reg;
1106 '''
1107
1103 class Wrdl(RegOp):
1104 code = '''
1105 SegDescriptor desc = SrcReg1;
1106 SegAttr attr = 0;
1107 attr.dpl = desc.dpl;
1108 attr.defaultSize = desc.d;
1109 if (!desc.s) {
1110 SegBaseDest = SegBaseDest;

--- 24 unchanged lines hidden ---
1108 class Wrdl(RegOp):
1109 code = '''
1110 SegDescriptor desc = SrcReg1;
1111 SegAttr attr = 0;
1112 attr.dpl = desc.dpl;
1113 attr.defaultSize = desc.d;
1114 if (!desc.s) {
1115 SegBaseDest = SegBaseDest;

--- 24 unchanged lines hidden ---