8010500: [parfait] Possible null pointer dereference at hotspot/src/share/vm/opto/loopnode.hpp
Added NULL check for loopnode() in get_pre_loop_end() Reviewed-by: kvn, roland
This commit is contained in:
parent
39b5a040cd
commit
94a86285a7
@ -441,6 +441,7 @@ bool SuperWord::ref_is_alignable(SWPointer& p) {
|
||||
return true; // no induction variable
|
||||
}
|
||||
CountedLoopEndNode* pre_end = get_pre_loop_end(lp()->as_CountedLoop());
|
||||
assert(pre_end != NULL, "we must have a correct pre-loop");
|
||||
assert(pre_end->stride_is_con(), "pre loop stride is constant");
|
||||
int preloop_stride = pre_end->stride_con();
|
||||
|
||||
@ -1981,7 +1982,7 @@ void SuperWord::align_initial_loop_index(MemNode* align_to_ref) {
|
||||
CountedLoopNode *main_head = lp()->as_CountedLoop();
|
||||
assert(main_head->is_main_loop(), "");
|
||||
CountedLoopEndNode* pre_end = get_pre_loop_end(main_head);
|
||||
assert(pre_end != NULL, "");
|
||||
assert(pre_end != NULL, "we must have a correct pre-loop");
|
||||
Node *pre_opaq1 = pre_end->limit();
|
||||
assert(pre_opaq1->Opcode() == Op_Opaque1, "");
|
||||
Opaque1Node *pre_opaq = (Opaque1Node*)pre_opaq1;
|
||||
@ -2145,7 +2146,8 @@ CountedLoopEndNode* SuperWord::get_pre_loop_end(CountedLoopNode *cl) {
|
||||
if (!p_f->is_IfFalse()) return NULL;
|
||||
if (!p_f->in(0)->is_CountedLoopEnd()) return NULL;
|
||||
CountedLoopEndNode *pre_end = p_f->in(0)->as_CountedLoopEnd();
|
||||
if (!pre_end->loopnode()->is_pre_loop()) return NULL;
|
||||
CountedLoopNode* loop_node = pre_end->loopnode();
|
||||
if (loop_node == NULL || !loop_node->is_pre_loop()) return NULL;
|
||||
return pre_end;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user