8299726: [cleanup] Some code cleanup in opto/compile.hpp
Reviewed-by: thartmann
This commit is contained in:
parent
0234f813e6
commit
88f0ea7887
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 1997, 2022, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
@ -56,7 +56,6 @@ class CloneMap;
|
|||||||
class ConnectionGraph;
|
class ConnectionGraph;
|
||||||
class IdealGraphPrinter;
|
class IdealGraphPrinter;
|
||||||
class InlineTree;
|
class InlineTree;
|
||||||
class Int_Array;
|
|
||||||
class Matcher;
|
class Matcher;
|
||||||
class MachConstantNode;
|
class MachConstantNode;
|
||||||
class MachConstantBaseNode;
|
class MachConstantBaseNode;
|
||||||
@ -77,12 +76,10 @@ class PhaseCCP;
|
|||||||
class PhaseOutput;
|
class PhaseOutput;
|
||||||
class RootNode;
|
class RootNode;
|
||||||
class relocInfo;
|
class relocInfo;
|
||||||
class Scope;
|
|
||||||
class StartNode;
|
class StartNode;
|
||||||
class SafePointNode;
|
class SafePointNode;
|
||||||
class JVMState;
|
class JVMState;
|
||||||
class Type;
|
class Type;
|
||||||
class TypeData;
|
|
||||||
class TypeInt;
|
class TypeInt;
|
||||||
class TypeInteger;
|
class TypeInteger;
|
||||||
class TypeKlassPtr;
|
class TypeKlassPtr;
|
||||||
@ -164,7 +161,6 @@ class CloneMap {
|
|||||||
void set_clone_idx(int x) { _clone_idx = x; }
|
void set_clone_idx(int x) { _clone_idx = x; }
|
||||||
bool is_debug() const { return _debug; }
|
bool is_debug() const { return _debug; }
|
||||||
void set_debug(bool debug) { _debug = debug; }
|
void set_debug(bool debug) { _debug = debug; }
|
||||||
static const char* debug_option_name;
|
|
||||||
|
|
||||||
bool same_idx(node_idx_t k1, node_idx_t k2) const { return idx(k1) == idx(k2); }
|
bool same_idx(node_idx_t k1, node_idx_t k2) const { return idx(k1) == idx(k2); }
|
||||||
bool same_gen(node_idx_t k1, node_idx_t k2) const { return gen(k1) == gen(k2); }
|
bool same_gen(node_idx_t k1, node_idx_t k2) const { return gen(k1) == gen(k2); }
|
||||||
|
Loading…
Reference in New Issue
Block a user