comparison src/share/vm/ci/ciTypeFlow.cpp @ 1846:d55217dc206f

6829194: JSR 292 needs to support compressed oops Reviewed-by: kvn, jrose
author twisti
date Mon, 11 Oct 2010 04:18:58 -0700
parents 0e35fa8ebccd
children f95d63e2154a
comparison
equal deleted inserted replaced
1845:a222fcfba398 1846:d55217dc206f
1943 _max_stack = method->max_stack(); 1943 _max_stack = method->max_stack();
1944 _code_size = method->code_size(); 1944 _code_size = method->code_size();
1945 _has_irreducible_entry = false; 1945 _has_irreducible_entry = false;
1946 _osr_bci = osr_bci; 1946 _osr_bci = osr_bci;
1947 _failure_reason = NULL; 1947 _failure_reason = NULL;
1948 assert(start_bci() >= 0 && start_bci() < code_size() , "correct osr_bci argument"); 1948 assert(0 <= start_bci() && start_bci() < code_size() , err_msg("correct osr_bci argument: 0 <= %d < %d", start_bci(), code_size()));
1949 _work_list = NULL; 1949 _work_list = NULL;
1950 1950
1951 _ciblock_count = _methodBlocks->num_blocks(); 1951 _ciblock_count = _methodBlocks->num_blocks();
1952 _idx_to_blocklist = NEW_ARENA_ARRAY(arena(), GrowableArray<Block*>*, _ciblock_count); 1952 _idx_to_blocklist = NEW_ARENA_ARRAY(arena(), GrowableArray<Block*>*, _ciblock_count);
1953 for (int i = 0; i < _ciblock_count; i++) { 1953 for (int i = 0; i < _ciblock_count; i++) {