src/share/vm/opto/cfgnode.hpp

Fri, 22 Feb 2008 17:55:13 -0800

author
kvn
date
Fri, 22 Feb 2008 17:55:13 -0800
changeset 463
67914967a4b5
parent 452
ff5961f4c095
child 499
b8f5ba577b02
permissions
-rw-r--r--

6650373: Assert in methodOopDesc::make_adapters()
Summary: AdapterHandlerLibrary::get_create_adapter_index() returns incorrect value (-2) when CodeCache is full.
Reviewed-by: sgoldman

duke@435 1 /*
duke@435 2 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
duke@435 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@435 20 * CA 95054 USA or visit www.sun.com if you need additional information or
duke@435 21 * have any questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 // Portions of code courtesy of Clifford Click
duke@435 26
duke@435 27 // Optimization - Graph Style
duke@435 28
duke@435 29 class Matcher;
duke@435 30 class Node;
duke@435 31 class RegionNode;
duke@435 32 class TypeNode;
duke@435 33 class PhiNode;
duke@435 34 class GotoNode;
duke@435 35 class MultiNode;
duke@435 36 class MultiBranchNode;
duke@435 37 class IfNode;
duke@435 38 class PCTableNode;
duke@435 39 class JumpNode;
duke@435 40 class CatchNode;
duke@435 41 class NeverBranchNode;
duke@435 42 class ProjNode;
duke@435 43 class CProjNode;
duke@435 44 class IfTrueNode;
duke@435 45 class IfFalseNode;
duke@435 46 class CatchProjNode;
duke@435 47 class JProjNode;
duke@435 48 class JumpProjNode;
duke@435 49 class SCMemProjNode;
duke@435 50 class PhaseIdealLoop;
duke@435 51
duke@435 52 //------------------------------RegionNode-------------------------------------
duke@435 53 // The class of RegionNodes, which can be mapped to basic blocks in the
duke@435 54 // program. Their inputs point to Control sources. PhiNodes (described
duke@435 55 // below) have an input point to a RegionNode. Merged data inputs to PhiNodes
duke@435 56 // correspond 1-to-1 with RegionNode inputs. The zero input of a PhiNode is
duke@435 57 // the RegionNode, and the zero input of the RegionNode is itself.
duke@435 58 class RegionNode : public Node {
duke@435 59 public:
duke@435 60 // Node layout (parallels PhiNode):
duke@435 61 enum { Region, // Generally points to self.
duke@435 62 Control // Control arcs are [1..len)
duke@435 63 };
duke@435 64
duke@435 65 RegionNode( uint required ) : Node(required) {
duke@435 66 init_class_id(Class_Region);
duke@435 67 init_req(0,this);
duke@435 68 }
duke@435 69
duke@435 70 Node* is_copy() const {
duke@435 71 const Node* r = _in[Region];
duke@435 72 if (r == NULL)
duke@435 73 return nonnull_req();
duke@435 74 return NULL; // not a copy!
duke@435 75 }
duke@435 76 PhiNode* has_phi() const; // returns an arbitrary phi user, or NULL
duke@435 77 PhiNode* has_unique_phi() const; // returns the unique phi user, or NULL
duke@435 78 // Is this region node unreachable from root?
duke@435 79 bool is_unreachable_region(PhaseGVN *phase) const;
duke@435 80 virtual int Opcode() const;
duke@435 81 virtual bool pinned() const { return (const Node *)in(0) == this; }
duke@435 82 virtual bool is_CFG () const { return true; }
duke@435 83 virtual uint hash() const { return NO_HASH; } // CFG nodes do not hash
duke@435 84 virtual bool depends_only_on_test() const { return false; }
duke@435 85 virtual const Type *bottom_type() const { return Type::CONTROL; }
duke@435 86 virtual const Type *Value( PhaseTransform *phase ) const;
duke@435 87 virtual Node *Identity( PhaseTransform *phase );
duke@435 88 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
duke@435 89 virtual const RegMask &out_RegMask() const;
duke@435 90 };
duke@435 91
duke@435 92 //------------------------------JProjNode--------------------------------------
duke@435 93 // jump projection for node that produces multiple control-flow paths
duke@435 94 class JProjNode : public ProjNode {
duke@435 95 public:
duke@435 96 JProjNode( Node* ctrl, uint idx ) : ProjNode(ctrl,idx) {}
duke@435 97 virtual int Opcode() const;
duke@435 98 virtual bool is_CFG() const { return true; }
duke@435 99 virtual uint hash() const { return NO_HASH; } // CFG nodes do not hash
duke@435 100 virtual const Node* is_block_proj() const { return in(0); }
duke@435 101 virtual const RegMask& out_RegMask() const;
duke@435 102 virtual uint ideal_reg() const { return 0; }
duke@435 103 };
duke@435 104
duke@435 105 //------------------------------PhiNode----------------------------------------
duke@435 106 // PhiNodes merge values from different Control paths. Slot 0 points to the
duke@435 107 // controlling RegionNode. Other slots map 1-for-1 with incoming control flow
duke@435 108 // paths to the RegionNode. For speed reasons (to avoid another pass) we
duke@435 109 // can turn PhiNodes into copys in-place by NULL'ing out their RegionNode
duke@435 110 // input in slot 0.
duke@435 111 class PhiNode : public TypeNode {
duke@435 112 const TypePtr* const _adr_type; // non-null only for Type::MEMORY nodes.
duke@435 113 // Size is bigger to hold the _adr_type field.
duke@435 114 virtual uint hash() const; // Check the type
duke@435 115 virtual uint cmp( const Node &n ) const;
duke@435 116 virtual uint size_of() const { return sizeof(*this); }
duke@435 117
duke@435 118 // Determine a unique non-trivial input, if any.
duke@435 119 // Ignore casts if it helps. Return NULL on failure.
duke@435 120 Node* unique_input(PhaseTransform *phase);
duke@435 121 // Determine if CMoveNode::is_cmove_id can be used at this join point.
duke@435 122 Node* is_cmove_id(PhaseTransform* phase, int true_path);
duke@435 123
duke@435 124 public:
duke@435 125 // Node layout (parallels RegionNode):
duke@435 126 enum { Region, // Control input is the Phi's region.
duke@435 127 Input // Input values are [1..len)
duke@435 128 };
duke@435 129
duke@435 130 PhiNode( Node *r, const Type *t, const TypePtr* at = NULL )
duke@435 131 : TypeNode(t,r->req()), _adr_type(at) {
duke@435 132 init_class_id(Class_Phi);
duke@435 133 init_req(0, r);
duke@435 134 verify_adr_type();
duke@435 135 }
duke@435 136 // create a new phi with in edges matching r and set (initially) to x
duke@435 137 static PhiNode* make( Node* r, Node* x );
duke@435 138 // extra type arguments override the new phi's bottom_type and adr_type
duke@435 139 static PhiNode* make( Node* r, Node* x, const Type *t, const TypePtr* at = NULL );
duke@435 140 // create a new phi with narrowed memory type
duke@435 141 PhiNode* slice_memory(const TypePtr* adr_type) const;
duke@435 142 // like make(r, x), but does not initialize the in edges to x
duke@435 143 static PhiNode* make_blank( Node* r, Node* x );
duke@435 144
duke@435 145 // Accessors
duke@435 146 RegionNode* region() const { Node* r = in(Region); assert(!r || r->is_Region(), ""); return (RegionNode*)r; }
duke@435 147
duke@435 148 Node* is_copy() const {
duke@435 149 // The node is a real phi if _in[0] is a Region node.
duke@435 150 DEBUG_ONLY(const Node* r = _in[Region];)
duke@435 151 assert(r != NULL && r->is_Region(), "Not valid control");
duke@435 152 return NULL; // not a copy!
duke@435 153 }
duke@435 154
duke@435 155 // Check for a simple dead loop.
duke@435 156 enum LoopSafety { Safe = 0, Unsafe, UnsafeLoop };
duke@435 157 LoopSafety simple_data_loop_check(Node *in) const;
duke@435 158 // Is it unsafe data loop? It becomes a dead loop if this phi node removed.
duke@435 159 bool is_unsafe_data_reference(Node *in) const;
duke@435 160 int is_diamond_phi() const;
duke@435 161 virtual int Opcode() const;
duke@435 162 virtual bool pinned() const { return in(0) != 0; }
duke@435 163 virtual const TypePtr *adr_type() const { verify_adr_type(true); return _adr_type; }
duke@435 164 virtual const Type *Value( PhaseTransform *phase ) const;
duke@435 165 virtual Node *Identity( PhaseTransform *phase );
duke@435 166 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
duke@435 167 virtual const RegMask &out_RegMask() const;
duke@435 168 virtual const RegMask &in_RegMask(uint) const;
duke@435 169 #ifndef PRODUCT
duke@435 170 virtual void dump_spec(outputStream *st) const;
duke@435 171 #endif
duke@435 172 #ifdef ASSERT
duke@435 173 void verify_adr_type(VectorSet& visited, const TypePtr* at) const;
duke@435 174 void verify_adr_type(bool recursive = false) const;
duke@435 175 #else //ASSERT
duke@435 176 void verify_adr_type(bool recursive = false) const {}
duke@435 177 #endif //ASSERT
duke@435 178 };
duke@435 179
duke@435 180 //------------------------------GotoNode---------------------------------------
duke@435 181 // GotoNodes perform direct branches.
duke@435 182 class GotoNode : public Node {
duke@435 183 public:
duke@435 184 GotoNode( Node *control ) : Node(control) {
duke@435 185 init_flags(Flag_is_Goto);
duke@435 186 }
duke@435 187 virtual int Opcode() const;
duke@435 188 virtual bool pinned() const { return true; }
duke@435 189 virtual bool is_CFG() const { return true; }
duke@435 190 virtual uint hash() const { return NO_HASH; } // CFG nodes do not hash
duke@435 191 virtual const Node *is_block_proj() const { return this; }
duke@435 192 virtual bool depends_only_on_test() const { return false; }
duke@435 193 virtual const Type *bottom_type() const { return Type::CONTROL; }
duke@435 194 virtual const Type *Value( PhaseTransform *phase ) const;
duke@435 195 virtual Node *Identity( PhaseTransform *phase );
duke@435 196 virtual const RegMask &out_RegMask() const;
duke@435 197 };
duke@435 198
duke@435 199 //------------------------------CProjNode--------------------------------------
duke@435 200 // control projection for node that produces multiple control-flow paths
duke@435 201 class CProjNode : public ProjNode {
duke@435 202 public:
duke@435 203 CProjNode( Node *ctrl, uint idx ) : ProjNode(ctrl,idx) {}
duke@435 204 virtual int Opcode() const;
duke@435 205 virtual bool is_CFG() const { return true; }
duke@435 206 virtual uint hash() const { return NO_HASH; } // CFG nodes do not hash
duke@435 207 virtual const Node *is_block_proj() const { return in(0); }
duke@435 208 virtual const RegMask &out_RegMask() const;
duke@435 209 virtual uint ideal_reg() const { return 0; }
duke@435 210 };
duke@435 211
duke@435 212 //---------------------------MultiBranchNode-----------------------------------
duke@435 213 // This class defines a MultiBranchNode, a MultiNode which yields multiple
duke@435 214 // control values. These are distinguished from other types of MultiNodes
duke@435 215 // which yield multiple values, but control is always and only projection #0.
duke@435 216 class MultiBranchNode : public MultiNode {
duke@435 217 public:
duke@435 218 MultiBranchNode( uint required ) : MultiNode(required) {
duke@435 219 init_class_id(Class_MultiBranch);
duke@435 220 }
duke@435 221 };
duke@435 222
duke@435 223 //------------------------------IfNode-----------------------------------------
duke@435 224 // Output selected Control, based on a boolean test
duke@435 225 class IfNode : public MultiBranchNode {
duke@435 226 // Size is bigger to hold the probability field. However, _prob does not
duke@435 227 // change the semantics so it does not appear in the hash & cmp functions.
duke@435 228 virtual uint size_of() const { return sizeof(*this); }
duke@435 229 public:
duke@435 230
duke@435 231 // Degrees of branch prediction probability by order of magnitude:
duke@435 232 // PROB_UNLIKELY_1e(N) is a 1 in 1eN chance.
duke@435 233 // PROB_LIKELY_1e(N) is a 1 - PROB_UNLIKELY_1e(N)
duke@435 234 #define PROB_UNLIKELY_MAG(N) (1e- ## N ## f)
duke@435 235 #define PROB_LIKELY_MAG(N) (1.0f-PROB_UNLIKELY_MAG(N))
duke@435 236
duke@435 237 // Maximum and minimum branch prediction probabilties
duke@435 238 // 1 in 1,000,000 (magnitude 6)
duke@435 239 //
duke@435 240 // Although PROB_NEVER == PROB_MIN and PROB_ALWAYS == PROB_MAX
duke@435 241 // they are used to distinguish different situations:
duke@435 242 //
duke@435 243 // The name PROB_MAX (PROB_MIN) is for probabilities which correspond to
duke@435 244 // very likely (unlikely) but with a concrete possibility of a rare
duke@435 245 // contrary case. These constants would be used for pinning
duke@435 246 // measurements, and as measures for assertions that have high
duke@435 247 // confidence, but some evidence of occasional failure.
duke@435 248 //
duke@435 249 // The name PROB_ALWAYS (PROB_NEVER) is to stand for situations for which
duke@435 250 // there is no evidence at all that the contrary case has ever occurred.
duke@435 251
duke@435 252 #define PROB_NEVER PROB_UNLIKELY_MAG(6)
duke@435 253 #define PROB_ALWAYS PROB_LIKELY_MAG(6)
duke@435 254
duke@435 255 #define PROB_MIN PROB_UNLIKELY_MAG(6)
duke@435 256 #define PROB_MAX PROB_LIKELY_MAG(6)
duke@435 257
duke@435 258 // Static branch prediction probabilities
duke@435 259 // 1 in 10 (magnitude 1)
duke@435 260 #define PROB_STATIC_INFREQUENT PROB_UNLIKELY_MAG(1)
duke@435 261 #define PROB_STATIC_FREQUENT PROB_LIKELY_MAG(1)
duke@435 262
duke@435 263 // Fair probability 50/50
duke@435 264 #define PROB_FAIR (0.5f)
duke@435 265
duke@435 266 // Unknown probability sentinel
duke@435 267 #define PROB_UNKNOWN (-1.0f)
duke@435 268
duke@435 269 // Probability "constructors", to distinguish as a probability any manifest
duke@435 270 // constant without a names
duke@435 271 #define PROB_LIKELY(x) ((float) (x))
duke@435 272 #define PROB_UNLIKELY(x) (1.0f - (float)(x))
duke@435 273
duke@435 274 // Other probabilities in use, but without a unique name, are documented
duke@435 275 // here for lack of a better place:
duke@435 276 //
duke@435 277 // 1 in 1000 probabilities (magnitude 3):
duke@435 278 // threshold for converting to conditional move
duke@435 279 // likelihood of null check failure if a null HAS been seen before
duke@435 280 // likelihood of slow path taken in library calls
duke@435 281 //
duke@435 282 // 1 in 10,000 probabilities (magnitude 4):
duke@435 283 // threshold for making an uncommon trap probability more extreme
duke@435 284 // threshold for for making a null check implicit
duke@435 285 // likelihood of needing a gc if eden top moves during an allocation
duke@435 286 // likelihood of a predicted call failure
duke@435 287 //
duke@435 288 // 1 in 100,000 probabilities (magnitude 5):
duke@435 289 // threshold for ignoring counts when estimating path frequency
duke@435 290 // likelihood of FP clipping failure
duke@435 291 // likelihood of catching an exception from a try block
duke@435 292 // likelihood of null check failure if a null has NOT been seen before
duke@435 293 //
duke@435 294 // Magic manifest probabilities such as 0.83, 0.7, ... can be found in
duke@435 295 // gen_subtype_check() and catch_inline_exceptions().
duke@435 296
duke@435 297 float _prob; // Probability of true path being taken.
duke@435 298 float _fcnt; // Frequency counter
duke@435 299 IfNode( Node *control, Node *b, float p, float fcnt )
duke@435 300 : MultiBranchNode(2), _prob(p), _fcnt(fcnt) {
duke@435 301 init_class_id(Class_If);
duke@435 302 init_req(0,control);
duke@435 303 init_req(1,b);
duke@435 304 }
duke@435 305 virtual int Opcode() const;
duke@435 306 virtual bool pinned() const { return true; }
duke@435 307 virtual const Type *bottom_type() const { return TypeTuple::IFBOTH; }
duke@435 308 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
duke@435 309 virtual const Type *Value( PhaseTransform *phase ) const;
duke@435 310 virtual const RegMask &out_RegMask() const;
duke@435 311 void dominated_by(Node* prev_dom, PhaseIterGVN* igvn);
duke@435 312 int is_range_check(Node* &range, Node* &index, jint &offset);
never@452 313 Node* fold_compares(PhaseGVN* phase);
duke@435 314 static Node* up_one_dom(Node* curr, bool linear_only = false);
duke@435 315
never@452 316 // Takes the type of val and filters it through the test represented
never@452 317 // by if_proj and returns a more refined type if one is produced.
never@452 318 // Returns NULL is it couldn't improve the type.
never@452 319 static const TypeInt* filtered_int_type(PhaseGVN* phase, Node* val, Node* if_proj);
never@452 320
duke@435 321 #ifndef PRODUCT
duke@435 322 virtual void dump_spec(outputStream *st) const;
duke@435 323 #endif
duke@435 324 };
duke@435 325
duke@435 326 class IfTrueNode : public CProjNode {
duke@435 327 public:
duke@435 328 IfTrueNode( IfNode *ifnode ) : CProjNode(ifnode,1) {
duke@435 329 init_class_id(Class_IfTrue);
duke@435 330 }
duke@435 331 virtual int Opcode() const;
duke@435 332 virtual Node *Identity( PhaseTransform *phase );
duke@435 333 };
duke@435 334
duke@435 335 class IfFalseNode : public CProjNode {
duke@435 336 public:
duke@435 337 IfFalseNode( IfNode *ifnode ) : CProjNode(ifnode,0) {
duke@435 338 init_class_id(Class_IfFalse);
duke@435 339 }
duke@435 340 virtual int Opcode() const;
duke@435 341 virtual Node *Identity( PhaseTransform *phase );
duke@435 342 };
duke@435 343
duke@435 344
duke@435 345 //------------------------------PCTableNode------------------------------------
duke@435 346 // Build an indirect branch table. Given a control and a table index,
duke@435 347 // control is passed to the Projection matching the table index. Used to
duke@435 348 // implement switch statements and exception-handling capabilities.
duke@435 349 // Undefined behavior if passed-in index is not inside the table.
duke@435 350 class PCTableNode : public MultiBranchNode {
duke@435 351 virtual uint hash() const; // Target count; table size
duke@435 352 virtual uint cmp( const Node &n ) const;
duke@435 353 virtual uint size_of() const { return sizeof(*this); }
duke@435 354
duke@435 355 public:
duke@435 356 const uint _size; // Number of targets
duke@435 357
duke@435 358 PCTableNode( Node *ctrl, Node *idx, uint size ) : MultiBranchNode(2), _size(size) {
duke@435 359 init_class_id(Class_PCTable);
duke@435 360 init_req(0, ctrl);
duke@435 361 init_req(1, idx);
duke@435 362 }
duke@435 363 virtual int Opcode() const;
duke@435 364 virtual const Type *Value( PhaseTransform *phase ) const;
duke@435 365 virtual Node *Ideal(PhaseGVN *phase, bool can_reshape);
duke@435 366 virtual const Type *bottom_type() const;
duke@435 367 virtual bool pinned() const { return true; }
duke@435 368 };
duke@435 369
duke@435 370 //------------------------------JumpNode---------------------------------------
duke@435 371 // Indirect branch. Uses PCTable above to implement a switch statement.
duke@435 372 // It emits as a table load and local branch.
duke@435 373 class JumpNode : public PCTableNode {
duke@435 374 public:
duke@435 375 JumpNode( Node* control, Node* switch_val, uint size) : PCTableNode(control, switch_val, size) {
duke@435 376 init_class_id(Class_Jump);
duke@435 377 }
duke@435 378 virtual int Opcode() const;
duke@435 379 virtual const RegMask& out_RegMask() const;
duke@435 380 virtual const Node* is_block_proj() const { return this; }
duke@435 381 };
duke@435 382
duke@435 383 class JumpProjNode : public JProjNode {
duke@435 384 virtual uint hash() const;
duke@435 385 virtual uint cmp( const Node &n ) const;
duke@435 386 virtual uint size_of() const { return sizeof(*this); }
duke@435 387
duke@435 388 private:
duke@435 389 const int _dest_bci;
duke@435 390 const uint _proj_no;
duke@435 391 const int _switch_val;
duke@435 392 public:
duke@435 393 JumpProjNode(Node* jumpnode, uint proj_no, int dest_bci, int switch_val)
duke@435 394 : JProjNode(jumpnode, proj_no), _dest_bci(dest_bci), _proj_no(proj_no), _switch_val(switch_val) {
duke@435 395 init_class_id(Class_JumpProj);
duke@435 396 }
duke@435 397
duke@435 398 virtual int Opcode() const;
duke@435 399 virtual const Type* bottom_type() const { return Type::CONTROL; }
duke@435 400 int dest_bci() const { return _dest_bci; }
duke@435 401 int switch_val() const { return _switch_val; }
duke@435 402 uint proj_no() const { return _proj_no; }
duke@435 403 #ifndef PRODUCT
duke@435 404 virtual void dump_spec(outputStream *st) const;
duke@435 405 #endif
duke@435 406 };
duke@435 407
duke@435 408 //------------------------------CatchNode--------------------------------------
duke@435 409 // Helper node to fork exceptions. "Catch" catches any exceptions thrown by
duke@435 410 // a just-prior call. Looks like a PCTableNode but emits no code - just the
duke@435 411 // table. The table lookup and branch is implemented by RethrowNode.
duke@435 412 class CatchNode : public PCTableNode {
duke@435 413 public:
duke@435 414 CatchNode( Node *ctrl, Node *idx, uint size ) : PCTableNode(ctrl,idx,size){
duke@435 415 init_class_id(Class_Catch);
duke@435 416 }
duke@435 417 virtual int Opcode() const;
duke@435 418 virtual const Type *Value( PhaseTransform *phase ) const;
duke@435 419 };
duke@435 420
duke@435 421 // CatchProjNode controls which exception handler is targetted after a call.
duke@435 422 // It is passed in the bci of the target handler, or no_handler_bci in case
duke@435 423 // the projection doesn't lead to an exception handler.
duke@435 424 class CatchProjNode : public CProjNode {
duke@435 425 virtual uint hash() const;
duke@435 426 virtual uint cmp( const Node &n ) const;
duke@435 427 virtual uint size_of() const { return sizeof(*this); }
duke@435 428
duke@435 429 private:
duke@435 430 const int _handler_bci;
duke@435 431
duke@435 432 public:
duke@435 433 enum {
duke@435 434 fall_through_index = 0, // the fall through projection index
duke@435 435 catch_all_index = 1, // the projection index for catch-alls
duke@435 436 no_handler_bci = -1 // the bci for fall through or catch-all projs
duke@435 437 };
duke@435 438
duke@435 439 CatchProjNode(Node* catchnode, uint proj_no, int handler_bci)
duke@435 440 : CProjNode(catchnode, proj_no), _handler_bci(handler_bci) {
duke@435 441 init_class_id(Class_CatchProj);
duke@435 442 assert(proj_no != fall_through_index || handler_bci < 0, "fall through case must have bci < 0");
duke@435 443 }
duke@435 444
duke@435 445 virtual int Opcode() const;
duke@435 446 virtual Node *Identity( PhaseTransform *phase );
duke@435 447 virtual const Type *bottom_type() const { return Type::CONTROL; }
duke@435 448 int handler_bci() const { return _handler_bci; }
duke@435 449 bool is_handler_proj() const { return _handler_bci >= 0; }
duke@435 450 #ifndef PRODUCT
duke@435 451 virtual void dump_spec(outputStream *st) const;
duke@435 452 #endif
duke@435 453 };
duke@435 454
duke@435 455
duke@435 456 //---------------------------------CreateExNode--------------------------------
duke@435 457 // Helper node to create the exception coming back from a call
duke@435 458 class CreateExNode : public TypeNode {
duke@435 459 public:
duke@435 460 CreateExNode(const Type* t, Node* control, Node* i_o) : TypeNode(t, 2) {
duke@435 461 init_req(0, control);
duke@435 462 init_req(1, i_o);
duke@435 463 }
duke@435 464 virtual int Opcode() const;
duke@435 465 virtual Node *Identity( PhaseTransform *phase );
duke@435 466 virtual bool pinned() const { return true; }
duke@435 467 uint match_edge(uint idx) const { return 0; }
duke@435 468 virtual uint ideal_reg() const { return Op_RegP; }
duke@435 469 };
duke@435 470
duke@435 471 //------------------------------NeverBranchNode-------------------------------
duke@435 472 // The never-taken branch. Used to give the appearance of exiting infinite
duke@435 473 // loops to those algorithms that like all paths to be reachable. Encodes
duke@435 474 // empty.
duke@435 475 class NeverBranchNode : public MultiBranchNode {
duke@435 476 public:
duke@435 477 NeverBranchNode( Node *ctrl ) : MultiBranchNode(1) { init_req(0,ctrl); }
duke@435 478 virtual int Opcode() const;
duke@435 479 virtual bool pinned() const { return true; };
duke@435 480 virtual const Type *bottom_type() const { return TypeTuple::IFBOTH; }
duke@435 481
duke@435 482 virtual void emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const { }
duke@435 483 virtual uint size(PhaseRegAlloc *ra_) const { return 0; }
duke@435 484 #ifndef PRODUCT
duke@435 485 virtual void format( PhaseRegAlloc *, outputStream *st ) const;
duke@435 486 #endif
duke@435 487 };

mercurial