static_inst.hh (12614:0bc465e1f5fb) static_inst.hh (12768:9a299ec956ac)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

139 /// of the individual flags.
140 //@{
141
142 bool isNop() const { return flags[IsNop]; }
143
144 bool isMemRef() const { return flags[IsMemRef]; }
145 bool isLoad() const { return flags[IsLoad]; }
146 bool isStore() const { return flags[IsStore]; }
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

139 /// of the individual flags.
140 //@{
141
142 bool isNop() const { return flags[IsNop]; }
143
144 bool isMemRef() const { return flags[IsMemRef]; }
145 bool isLoad() const { return flags[IsLoad]; }
146 bool isStore() const { return flags[IsStore]; }
147 bool isAtomic() const { return flags[IsAtomic]; }
147 bool isStoreConditional() const { return flags[IsStoreConditional]; }
148 bool isInstPrefetch() const { return flags[IsInstPrefetch]; }
149 bool isDataPrefetch() const { return flags[IsDataPrefetch]; }
150 bool isPrefetch() const { return isInstPrefetch() ||
151 isDataPrefetch(); }
152
153 bool isInteger() const { return flags[IsInteger]; }
154 bool isFloating() const { return flags[IsFloating]; }

--- 195 unchanged lines hidden ---
148 bool isStoreConditional() const { return flags[IsStoreConditional]; }
149 bool isInstPrefetch() const { return flags[IsInstPrefetch]; }
150 bool isDataPrefetch() const { return flags[IsDataPrefetch]; }
151 bool isPrefetch() const { return isInstPrefetch() ||
152 isDataPrefetch(); }
153
154 bool isInteger() const { return flags[IsInteger]; }
155 bool isFloating() const { return flags[IsFloating]; }

--- 195 unchanged lines hidden ---