comparison src/share/vm/opto/phaseX.hpp @ 6846:377508648226

8000313: C2 should use jlong for 64bit values Summary: Replace all occurrences of long with jlong in C2 code. Reviewed-by: kvn, twisti
author vlivanov
date Mon, 08 Oct 2012 13:02:13 -0700
parents ee7edf31f688
children d804e148cff8
comparison
equal deleted inserted replaced
6845:9024b6b53ec2 6846:377508648226
495 Deoptimization::DeoptReason reason); 495 Deoptimization::DeoptReason reason);
496 496
497 #ifndef PRODUCT 497 #ifndef PRODUCT
498 protected: 498 protected:
499 // Sub-quadratic implementation of VerifyIterativeGVN. 499 // Sub-quadratic implementation of VerifyIterativeGVN.
500 unsigned long _verify_counter; 500 julong _verify_counter;
501 unsigned long _verify_full_passes; 501 julong _verify_full_passes;
502 enum { _verify_window_size = 30 }; 502 enum { _verify_window_size = 30 };
503 Node* _verify_window[_verify_window_size]; 503 Node* _verify_window[_verify_window_size];
504 void verify_step(Node* n); 504 void verify_step(Node* n);
505 #endif 505 #endif
506 }; 506 };