You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
1.4 KiB

/*
* Copyright (c) 2018-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
package codetoanalyze.java.checkers;
import com.facebook.infer.annotation.ThreadSafe;
class Intraprocedural {
static class B {
int g = 0;
}
static class A {
B f = new B();
int h = 0;
}
@ThreadSafe
static class Field {
private A a = new A();
public void unstable_ok() {
int x = 42;
B b = a.f; // destabilizes
synchronized (this) {
a.f.g = 101;
}
x = a.f.g;
}
public void FN_stable_bad() {
int x = 42;
synchronized (this) {
a.f.g = 101;
}
x = a.f.g;
}
}
static class Param {
public void unstable_ok(A a) {
int x = 42;
B b = a.f; // destabilizes
synchronized (this) {
a.f.g = 101;
}
x = a.f.g;
}
public void stable_bad(A a) {
int x = 42;
synchronized (this) {
a.f.g = 101;
}
x = a.f.g;
}
}
@ThreadSafe
static class Global {
private static A a = new A();
public synchronized A getA() {
return a;
}
public synchronized void setA(A newA) {
a = newA;
}
public void unstable_ok() {
int x = 42;
A a = getA(); // destabilizes
synchronized (this) {
a.f.g = 101;
}
x = a.f.g;
}
}
}