8300244: Replace NULL with nullptr in share/interpreter/

Reviewed-by: coleenp, dholmes
This commit is contained in:
Johan Sjölen 2023-01-25 10:31:51 +00:00
parent 71107f4648
commit a5d8e12872
25 changed files with 553 additions and 553 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2022, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -47,14 +47,14 @@ class TemplateInterpreterGenerator: public AbstractInterpreterGenerator {
return generate_exception_handler_common(name, message, false);
}
address generate_klass_exception_handler(const char* name) {
return generate_exception_handler_common(name, NULL, true);
return generate_exception_handler_common(name, nullptr, true);
}
address generate_exception_handler_common(const char* name, const char* message, bool pass_oop);
address generate_ClassCastException_handler();
address generate_ArrayIndexOutOfBounds_handler();
address generate_return_entry_for(TosState state, int step, size_t index_size);
address generate_earlyret_entry_for(TosState state);
address generate_deopt_entry_for(TosState state, int step, address continuation = NULL);
address generate_deopt_entry_for(TosState state, int step, address continuation = nullptr);
address generate_safept_entry_for(TosState state, address runtime_entry);
void generate_throw_exception();