mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 11:04:34 +02:00
8031994: java/lang/Character/CheckProp test times out
Reviewed-by: iveresov, roland
This commit is contained in:
parent
baadb75921
commit
0915147727
6 changed files with 32 additions and 21 deletions
|
@ -169,6 +169,8 @@ class LIRGenerator: public InstructionVisitor, public BlockClosure {
|
|||
return this;
|
||||
}
|
||||
|
||||
void print_if_not_loaded(const NewInstance* new_instance) PRODUCT_RETURN;
|
||||
|
||||
#ifdef ASSERT
|
||||
LIR_List* lir(const char * file, int line) const {
|
||||
_lir->set_file_and_line(file, line);
|
||||
|
@ -307,7 +309,7 @@ class LIRGenerator: public InstructionVisitor, public BlockClosure {
|
|||
|
||||
void store_stack_parameter (LIR_Opr opr, ByteSize offset_from_sp_in_bytes);
|
||||
|
||||
void klass2reg_with_patching(LIR_Opr r, ciMetadata* obj, CodeEmitInfo* info);
|
||||
void klass2reg_with_patching(LIR_Opr r, ciMetadata* obj, CodeEmitInfo* info, bool need_resolve = false);
|
||||
|
||||
// this loads the length and compares against the index
|
||||
void array_range_check (LIR_Opr array, LIR_Opr index, CodeEmitInfo* null_check_info, CodeEmitInfo* range_check_info);
|
||||
|
@ -325,7 +327,7 @@ class LIRGenerator: public InstructionVisitor, public BlockClosure {
|
|||
void monitor_enter (LIR_Opr object, LIR_Opr lock, LIR_Opr hdr, LIR_Opr scratch, int monitor_no, CodeEmitInfo* info_for_exception, CodeEmitInfo* info);
|
||||
void monitor_exit (LIR_Opr object, LIR_Opr lock, LIR_Opr hdr, LIR_Opr scratch, int monitor_no);
|
||||
|
||||
void new_instance (LIR_Opr dst, ciInstanceKlass* klass, LIR_Opr scratch1, LIR_Opr scratch2, LIR_Opr scratch3, LIR_Opr scratch4, LIR_Opr klass_reg, CodeEmitInfo* info);
|
||||
void new_instance (LIR_Opr dst, ciInstanceKlass* klass, bool is_unresolved, LIR_Opr scratch1, LIR_Opr scratch2, LIR_Opr scratch3, LIR_Opr scratch4, LIR_Opr klass_reg, CodeEmitInfo* info);
|
||||
|
||||
// machine dependent
|
||||
void cmp_mem_int(LIR_Condition condition, LIR_Opr base, int disp, int c, CodeEmitInfo* info);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue