mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 02:54:35 +02:00
8205459: Rename Access API flag decorators
Rename OOP_NOT_NULL, IN_HEAP_ARRAY, AS_DEST_NOT_INITIALIZED Reviewed-by: pliden, stefank
This commit is contained in:
parent
49396d51e9
commit
b84c23399e
67 changed files with 263 additions and 276 deletions
|
@ -1602,7 +1602,7 @@ void LIRGenerator::do_StoreIndexed(StoreIndexed* x) {
|
|||
array_store_check(value.result(), array.result(), store_check_info, x->profiled_method(), x->profiled_bci());
|
||||
}
|
||||
|
||||
DecoratorSet decorators = IN_HEAP | IN_HEAP_ARRAY;
|
||||
DecoratorSet decorators = IN_HEAP | IS_ARRAY;
|
||||
if (x->check_boolean()) {
|
||||
decorators |= C1_MASK_BOOLEAN;
|
||||
}
|
||||
|
@ -1847,7 +1847,7 @@ void LIRGenerator::do_LoadIndexed(LoadIndexed* x) {
|
|||
}
|
||||
}
|
||||
|
||||
DecoratorSet decorators = IN_HEAP | IN_HEAP_ARRAY;
|
||||
DecoratorSet decorators = IN_HEAP | IS_ARRAY;
|
||||
|
||||
LIR_Opr result = rlock_result(x, x->elt_type());
|
||||
access_load_at(decorators, x->elt_type(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue