base.isa (4524:f051dcff22b3) base.isa (4534:7035ff1aa521)
1// -*- mode:c++ -*-
2
3// Copyright (c) 2007 The Hewlett-Packard Development Company
4// All rights reserved.
5//
6// Redistribution and use of this software in source and binary forms,
7// with or without modification, are permitted provided that the
8// following conditions are met:

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

95 return ss.str();
96 }
97 };
98}};
99
100//////////////////////////////////////////////////////////////////////////
101//
102// Base class for the python representation of x86 microops
1// -*- mode:c++ -*-
2
3// Copyright (c) 2007 The Hewlett-Packard Development Company
4// All rights reserved.
5//
6// Redistribution and use of this software in source and binary forms,
7// with or without modification, are permitted provided that the
8// following conditions are met:

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

95 return ss.str();
96 }
97 };
98}};
99
100//////////////////////////////////////////////////////////////////////////
101//
102// Base class for the python representation of x86 microops
103//
104//////////////////////////////////////////////////////////////////////////
103
104let {{
105 class X86Microop(object):
106 def __init__(self, name):
107 self.name = name
108
109 # This converts a list of python bools into
110 # a comma seperated list of C++ bools.

--- 101 unchanged lines hidden ---
105
106let {{
107 class X86Microop(object):
108 def __init__(self, name):
109 self.name = name
110
111 # This converts a list of python bools into
112 # a comma seperated list of C++ bools.

--- 101 unchanged lines hidden ---