/* * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. *
*/
//------------------------------Opaque1Node------------------------------------ // A node to prevent unwanted optimizations. Allows constant folding. // Stops value-numbering, Ideal calls or Identity functions. class Opaque1Node : public Node { virtual uint hash() const ; // { return NO_HASH; } virtualbool cmp( const Node &n ) const; public:
Opaque1Node(Compile* C, Node *n) : Node(NULL, n) { // Put it on the Macro nodes list to removed during macro nodes expansion.
init_flags(Flag_is_macro);
init_class_id(Class_Opaque1);
C->add_macro_node(this);
} // Special version for the pre-loop to hold the original loop limit // which is consumed by range check elimination.
Opaque1Node(Compile* C, Node *n, Node* orig_limit) : Node(NULL, n, orig_limit) { // Put it on the Macro nodes list to removed during macro nodes expansion.
init_flags(Flag_is_macro);
init_class_id(Class_Opaque1);
C->add_macro_node(this);
}
Node* original_loop_limit() { return req()==3 ? in(2) : NULL; } virtualint Opcode() const; virtualconst Type *bottom_type() const { return TypeInt::INT; } virtual Node* Identity(PhaseGVN* phase);
};
// Opaque nodes specific to range check elimination handling class OpaqueLoopInitNode : public Opaque1Node { public:
OpaqueLoopInitNode(Compile* C, Node *n) : Opaque1Node(C, n) {
} virtualint Opcode() const;
};
class OpaqueLoopStrideNode : public Opaque1Node { public:
OpaqueLoopStrideNode(Compile* C, Node *n) : Opaque1Node(C, n) {
} virtualint Opcode() const;
};
class OpaqueZeroTripGuardNode : public Opaque1Node { public: // This captures the test that returns true when the loop is entered. It depends on whether the loop goes up or down. // This is used by CmpINode::Value.
BoolTest::mask _loop_entered_mask;
OpaqueZeroTripGuardNode(Compile* C, Node* n, BoolTest::mask loop_entered_test) :
Opaque1Node(C, n), _loop_entered_mask(loop_entered_test) {
} virtualint Opcode() const; virtual uint size_of() const { returnsizeof(*this);
}
};
//------------------------------Opaque3Node------------------------------------ // A node to prevent unwanted optimizations. Will be optimized only during // macro nodes expansion. class Opaque3Node : public Node { int _opt; // what optimization it was used for virtual uint hash() const; virtualbool cmp(const Node &n) const; public: enum { RTM_OPT };
Opaque3Node(Compile* C, Node* n, int opt) : Node(0, n), _opt(opt) { // Put it on the Macro nodes list to removed during macro nodes expansion.
init_flags(Flag_is_macro);
C->add_macro_node(this);
} virtualint Opcode() const; virtualconst Type* bottom_type() const { return TypeInt::INT; } virtual Node* Identity(PhaseGVN* phase); bool rtm_opt() const { return (_opt == RTM_OPT); }
};
// Input 1 is a check that we know implicitly is always true or false // but the compiler has no way to prove. If during optimizations, that // check becomes true or false, the Opaque4 node is replaced by that // constant true or false. Input 2 is the constant value we know the // test takes. After loop optimizations, we replace input 1 by input 2 // so the control that depends on that test can be removed and there's // no overhead at runtime. Used for instance by // GraphKit::must_be_not_null(). class Opaque4Node : public Node { public:
Opaque4Node(Compile* C, Node *tst, Node* final_tst) : Node(NULL, tst, final_tst) {
init_flags(Flag_is_macro);
C->add_macro_node(this);
}
//------------------------------ProfileBooleanNode------------------------------- // A node represents value profile for a boolean during parsing. // Once parsing is over, the node goes away (during IGVN). // It is used to override branch frequencies from MDO (see has_injected_profile in parse2.cpp). class ProfileBooleanNode : public Node {
uint _false_cnt;
uint _true_cnt; bool _consumed; bool _delay_removal; virtual uint hash() const ; // { return NO_HASH; } virtualbool cmp( const Node &n ) const; public:
ProfileBooleanNode(Node *n, uint false_cnt, uint true_cnt) : Node(0, n),
_false_cnt(false_cnt), _true_cnt(true_cnt), _consumed(false), _delay_removal(true) {}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.