hotspot/src/share/vm/opto/machnode.hpp
changeset 19696 bd5a0131bde1
parent 13728 882756847a04
child 22844 90f76a40ed8a
equal deleted inserted replaced
19695:c0b305024048 19696:bd5a0131bde1
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    56 
    56 
    57 //---------------------------MachOper------------------------------------------
    57 //---------------------------MachOper------------------------------------------
    58 class MachOper : public ResourceObj {
    58 class MachOper : public ResourceObj {
    59 public:
    59 public:
    60   // Allocate right next to the MachNodes in the same arena
    60   // Allocate right next to the MachNodes in the same arena
    61   void *operator new( size_t x, Compile* C ) { return C->node_arena()->Amalloc_D(x); }
    61   void *operator new( size_t x, Compile* C ) throw() { return C->node_arena()->Amalloc_D(x); }
    62 
    62 
    63   // Opcode
    63   // Opcode
    64   virtual uint opcode() const = 0;
    64   virtual uint opcode() const = 0;
    65 
    65 
    66   // Number of input edges.
    66   // Number of input edges.