comparison src/share/vm/graal/graalCodeInstaller.cpp @ 15180:7a9531f50cd8

renamed com.oracle.graal.api.code.CompilationResult.frameSize to totalFrameSize
author twisti
date Wed, 16 Apr 2014 15:04:35 -1000
parents f24d578e63a9
children 29e3ba750c9e
comparison
equal deleted inserted replaced
15179:d74a0522ef1b 15180:7a9531f50cd8
453 _sites = (arrayOop) HotSpotCompiledCode::sites(compiled_code); 453 _sites = (arrayOop) HotSpotCompiledCode::sites(compiled_code);
454 _exception_handlers = (arrayOop) HotSpotCompiledCode::exceptionHandlers(compiled_code); 454 _exception_handlers = (arrayOop) HotSpotCompiledCode::exceptionHandlers(compiled_code);
455 455
456 _code = (arrayOop) CompilationResult::targetCode(comp_result); 456 _code = (arrayOop) CompilationResult::targetCode(comp_result);
457 _code_size = CompilationResult::targetCodeSize(comp_result); 457 _code_size = CompilationResult::targetCodeSize(comp_result);
458 _total_frame_size = CompilationResult::frameSize(comp_result); 458 _total_frame_size = CompilationResult::totalFrameSize(comp_result);
459 _custom_stack_area_offset = CompilationResult::customStackAreaOffset(comp_result); 459 _custom_stack_area_offset = CompilationResult::customStackAreaOffset(comp_result);
460 460
461 // Pre-calculate the constants section size. This is required for PC-relative addressing. 461 // Pre-calculate the constants section size. This is required for PC-relative addressing.
462 _dataSection = HotSpotCompiledCode::dataSection(compiled_code); 462 _dataSection = HotSpotCompiledCode::dataSection(compiled_code);
463 guarantee(DataSection::sectionAlignment(_dataSection) <= _constants->alignment(), "Alignment inside constants section is restricted by alignment of section begin"); 463 guarantee(DataSection::sectionAlignment(_dataSection) <= _constants->alignment(), "Alignment inside constants section is restricted by alignment of section begin");