comparison src/share/vm/c1/c1_LIRAssembler.hpp @ 1200:ba263cfb7611

6917766: JSR 292 needs its own deopt handler Summary: We need to introduce a new MH deopt handler so we can easily determine if the deopt happened at a MH call site or not. Reviewed-by: never, jrose
author twisti
date Fri, 29 Jan 2010 12:13:05 +0100
parents eb28cf662f56
children 24128c2ffa87
comparison
equal deleted inserted replaced
1199:0e14bd797dad 1200:ba263cfb7611
1 /* 1 /*
2 * Copyright 2000-2008 Sun Microsystems, Inc. All Rights Reserved. 2 * Copyright 2000-2010 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
131 void emit_static_call_stub(); 131 void emit_static_call_stub();
132 void emit_code_stub(CodeStub* op); 132 void emit_code_stub(CodeStub* op);
133 void add_call_info_here(CodeEmitInfo* info) { add_call_info(code_offset(), info); } 133 void add_call_info_here(CodeEmitInfo* info) { add_call_info(code_offset(), info); }
134 134
135 // code patterns 135 // code patterns
136 void emit_exception_handler(); 136 int emit_exception_handler();
137 void emit_exception_entries(ExceptionInfoList* info_list); 137 void emit_exception_entries(ExceptionInfoList* info_list);
138 void emit_deopt_handler(); 138 int emit_deopt_handler();
139 139
140 void emit_code(BlockList* hir); 140 void emit_code(BlockList* hir);
141 void emit_block(BlockBegin* block); 141 void emit_block(BlockBegin* block);
142 void emit_lir_list(LIR_List* list); 142 void emit_lir_list(LIR_List* list);
143 143