< prev index next >

src/hotspot/cpu/arm/nativeInst_arm_64.hpp

Print this page




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef CPU_ARM_VM_NATIVEINST_ARM_64_HPP
  26 #define CPU_ARM_VM_NATIVEINST_ARM_64_HPP
  27 
  28 #include "asm/macroAssembler.hpp"
  29 #include "code/codeCache.hpp"
  30 #include "memory/allocation.hpp"
  31 #include "runtime/icache.hpp"
  32 #include "runtime/os.hpp"
  33 
  34 // -------------------------------------------------------------------
  35 
  36 // Some experimental projects extend the ARM back-end by implementing
  37 // what the front-end usually assumes is a single native instruction
  38 // with a sequence of instructions.
  39 //
  40 // The 'Raw' variants are the low level initial code (usually one
  41 // instruction wide but some of them were already composed
  42 // instructions). They should be used only by the back-end.
  43 //
  44 // The non-raw classes are the front-end entry point, hiding potential
  45 // back-end extensions or the actual instructions size.
  46 class NativeInstruction;
  47 
  48 class RawNativeInstruction {
  49  public:
  50 




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef CPU_ARM_VM_NATIVEINST_ARM_64_HPP
  26 #define CPU_ARM_VM_NATIVEINST_ARM_64_HPP
  27 
  28 #include "asm/macroAssembler.hpp"
  29 #include "code/codeCache.hpp"

  30 #include "runtime/icache.hpp"
  31 #include "runtime/os.hpp"
  32 
  33 // -------------------------------------------------------------------
  34 
  35 // Some experimental projects extend the ARM back-end by implementing
  36 // what the front-end usually assumes is a single native instruction
  37 // with a sequence of instructions.
  38 //
  39 // The 'Raw' variants are the low level initial code (usually one
  40 // instruction wide but some of them were already composed
  41 // instructions). They should be used only by the back-end.
  42 //
  43 // The non-raw classes are the front-end entry point, hiding potential
  44 // back-end extensions or the actual instructions size.
  45 class NativeInstruction;
  46 
  47 class RawNativeInstruction {
  48  public:
  49 


< prev index next >