Skip to content

Commit a11cc97

Browse files
committedMar 31, 2022
8283997: Unused argument in GraphKit::builtin_throw
Reviewed-by: roland, redestad, chagedorn
1 parent 067b258 commit a11cc97

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed
 

‎src/hotspot/share/opto/graphKit.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ void GraphKit::uncommon_trap_if_should_post_on_exceptions(Deoptimization::DeoptR
526526
}
527527

528528
//------------------------------builtin_throw----------------------------------
529-
void GraphKit::builtin_throw(Deoptimization::DeoptReason reason, Node* arg) {
529+
void GraphKit::builtin_throw(Deoptimization::DeoptReason reason) {
530530
bool must_throw = true;
531531

532532
// If this particular condition has not yet happened at this
@@ -3334,7 +3334,7 @@ Node* GraphKit::gen_checkcast(Node *obj, Node* superklass,
33343334
bool is_aastore = (java_bc() == Bytecodes::_aastore);
33353335
Deoptimization::DeoptReason reason = is_aastore ?
33363336
Deoptimization::Reason_array_check : Deoptimization::Reason_class_check;
3337-
builtin_throw(reason, makecon(TypeKlassPtr::make(objtp->klass())));
3337+
builtin_throw(reason);
33383338
return top();
33393339
} else if (!too_many_traps_or_recompiles(Deoptimization::Reason_null_assert)) {
33403340
return null_assert(obj);
@@ -3419,7 +3419,7 @@ Node* GraphKit::gen_checkcast(Node *obj, Node* superklass,
34193419
bool is_aastore = (java_bc() == Bytecodes::_aastore);
34203420
Deoptimization::DeoptReason reason = is_aastore ?
34213421
Deoptimization::Reason_array_check : Deoptimization::Reason_class_check;
3422-
builtin_throw(reason, load_object_klass(not_null_obj));
3422+
builtin_throw(reason);
34233423
}
34243424
} else {
34253425
(*failure_control) = not_subtype_ctrl;

‎src/hotspot/share/opto/graphKit.hpp

+2-6
Original file line numberDiff line numberDiff line change
@@ -266,12 +266,8 @@ class GraphKit : public Phase {
266266
JVMState* transfer_exceptions_into_jvms();
267267

268268
// Helper to throw a built-in exception.
269-
// Range checks take the offending index.
270-
// Cast and array store checks take the offending class.
271-
// Others do not take the optional argument.
272-
// The JVMS must allow the bytecode to be re-executed
273-
// via an uncommon trap.
274-
void builtin_throw(Deoptimization::DeoptReason reason, Node* arg = NULL);
269+
// The JVMS must allow the bytecode to be re-executed via an uncommon trap.
270+
void builtin_throw(Deoptimization::DeoptReason reason);
275271

276272
// Helper to check the JavaThread::_should_post_on_exceptions flag
277273
// and branch to an uncommon_trap if it is true (with the specified reason and must_throw)

‎src/hotspot/share/opto/parse2.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ Node* Parse::array_addressing(BasicType type, int vals, const Type*& elemtype) {
194194
// If we have already recompiled with the range-check-widening
195195
// heroic optimization turned off, then we must really be throwing
196196
// range check exceptions.
197-
builtin_throw(Deoptimization::Reason_range_check, idx);
197+
builtin_throw(Deoptimization::Reason_range_check);
198198
}
199199
}
200200
}

0 commit comments

Comments
 (0)
Please sign in to comment.