src/hotspot/cpu/zero/nativeInst_zero.hpp
changeset 49364 601146c66cad
parent 47216 71c04702a3d5
child 49621 5ef28d560b6f
equal deleted inserted replaced
49363:7be58576e71a 49364:601146c66cad
     1 /*
     1 /*
     2  * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * Copyright 2007 Red Hat, Inc.
     3  * Copyright 2007 Red Hat, Inc.
     4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     5  *
     5  *
     6  * This code is free software; you can redistribute it and/or modify it
     6  * This code is free software; you can redistribute it and/or modify it
     7  * under the terms of the GNU General Public License version 2 only, as
     7  * under the terms of the GNU General Public License version 2 only, as
    44 // - - NativeTstRegMem
    44 // - - NativeTstRegMem
    45 
    45 
    46 // The base class for different kinds of native instruction abstractions.
    46 // The base class for different kinds of native instruction abstractions.
    47 // Provides the primitive operations to manipulate code relative to this.
    47 // Provides the primitive operations to manipulate code relative to this.
    48 
    48 
    49 class NativeInstruction VALUE_OBJ_CLASS_SPEC {
    49 class NativeInstruction {
    50  public:
    50  public:
    51   bool is_jump() {
    51   bool is_jump() {
    52     ShouldNotCallThis();
    52     ShouldNotCallThis();
    53     return false;
    53     return false;
    54   }
    54   }