mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 11:34:38 +02:00
7198429: need checked categorization of caller-sensitive methods in the JDK
Reviewed-by: kvn, jrose
This commit is contained in:
parent
e4b1cf5f02
commit
6964a690ed
18 changed files with 413 additions and 305 deletions
|
@ -790,6 +790,17 @@ int ciMethod::scale_count(int count, float prof_factor) {
|
|||
return count;
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// ciMethod::is_special_get_caller_class_method
|
||||
//
|
||||
bool ciMethod::is_ignored_by_security_stack_walk() const {
|
||||
check_is_loaded();
|
||||
VM_ENTRY_MARK;
|
||||
return get_Method()->is_ignored_by_security_stack_walk();
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// invokedynamic support
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue