Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[javasrc2cpg] Add name mangling for pattern locals that conflict with locals in the enclosing scope #5319

Merged
merged 1 commit into from
Feb 20, 2025

Conversation

johannescoetzee
Copy link
Contributor

This PR builds on #5305 and is a follow-up to #5305 and adds name mangling for locals that conflict with hoisted pattern locals. Where conflicting variables have the same types as well, a single local is shared instead.

static void foo(Object o) {
  if (o instanceof String value) {
    sink(value);
  }
  // mangled
  int value;
}
static void foo(Object o) {
  if (o instanceof String value) {
    sink(value);
  }
  if (o instanceof Integer value) {
    // mangled
    sink(value);
  }
}
static void foo(Object o) {
  switch (o) {
    case Integer value -> sink(value);
    // not mangled since the local is enclosed in a block in the body of the switch entry
    case Boolean value -> sink(value);
  }
  if (o instanceof String value) {
    // not mangled since the switch locals are all enclosed
    sink(value);
  }
}
static void foo(Object o) {
  {
    if (o instanceof String value) {
      sink(value);
    }
  }
  {
    // not mangled since the pattern local is enclosed in the block above
    int value = 2;
    sink(value);
  }
}
// single local shared
static void foo(Object o) {
    if (o instanceof String s) {
        sink0(s);
    }
    if (o instanceof String s) {
        sink1(s);
    }
    // This s must be initialized before using it, so it will always overwrite the value of the
    // pattern variable, hence avoiding false positives.
    String s = "safe";
    sink2(s);
}

@johannescoetzee johannescoetzee requested a review from ml86 February 20, 2025 15:19
Base automatically changed from johannes/javasrc2cpg/pattern-matching-refactor to master February 20, 2025 16:13
@johannescoetzee johannescoetzee force-pushed the johannes/javasrc2cpg/local-name-mangling branch from 941f590 to 1ceab0b Compare February 20, 2025 16:23
@johannescoetzee johannescoetzee merged commit 3102b73 into master Feb 20, 2025
5 checks passed
@johannescoetzee johannescoetzee deleted the johannes/javasrc2cpg/local-name-mangling branch February 20, 2025 17:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants