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

Local names incorrect #53

Open
mtruyens opened this issue Jan 17, 2017 · 18 comments
Open

Local names incorrect #53

mtruyens opened this issue Jan 17, 2017 · 18 comments

Comments

@mtruyens
Copy link

Hi,

In the attached screenshot, you can see that the local "nodeleaf-id" is shown several times in the list at the right side. Only one of those instance is correct (the one having value 538) -- the other values correspond to other locals (e.g., :node-types/tree corresponds to local "rep-tree|fold?" and value null corresponds to "has-children?"). When I select the text of the local at the left side, the current value is correctly displayed in the popup window that appears.

Using Chrome 57.0.2984.0, Dirac 1.0.0, and I tried to start with a fresh Chrome folder with no extensions installed other than Dirac.

screen shot 2017-01-17 at 10 52 39

@mtruyens
Copy link
Author

Another example, this time with the function parameter "regy":
screen shot 2017-01-17 at 10 59 38

@darwin
Copy link
Member

darwin commented Jan 17, 2017

I can confirm this. It is caused by the way ClojureScript generates Javascript code and how default DevTools select local variables for display. I believe if you break the code at the same spot in internal DevTools (without Dirac installed), you will experience a similar thing.

I haven't tried to counter it yet because I don't fully understand the mechanism. The only thing Dirac does is that it tries to sort properties and put null and undefined values at the end of list. This way it mitigates the problem a bit without losing any information.

But I don't see this feature in your screenshots. Have you disabled "Enable clustered locals" in Dirac DevTools extension preferences?

@mtruyens
Copy link
Author

mtruyens commented Jan 17, 2017 via email

@darwin
Copy link
Member

darwin commented Jan 17, 2017

If I remember well, ClojureScript generated Javascript similar to this one:

if (condition) {
  var v = exp1;
  ...
  // breakpoint here
} else {
  var v = exp2;
  ...
}

There are two variables named "v", you stopped in true branch, but DevTools sees all branches. Of course this gets worse when nested.

I believe this will have to be solved on DevTools side, to display only locals from relevant code branches.

@darwin darwin added the bug label Jan 30, 2017
@darwin
Copy link
Member

darwin commented Jan 30, 2017

Investigated this issue a bit today. Scratch my previous comment. Javascript scope variables work as expected.

The problem is in case with source maps. DevTools tries to map real variable names to original names. Unfortunately the implementation does not expect that multiple distinct variables could potentially map to the same name in original sources.

I was able to reproduce it on this minimal repro case:

(let [x 1]
  (let [x 2]
    (js-debugger)))

Which generates javascript similar to this:

var x = (1);
var x__$1 = (2);
debugger;

Both x and x__$1 map to original name x. If naive code wants to construct reverse mapping keyed by original name, it ends up with { "x": "x__$1" } (which overwrote previous { "x": "x" }).

I have identified multiple places where they use some intermediate data structure for reverse-mapping names and it does not expect multiple variables with the same name. This confuses lookups in code relying on those mappings.

namesMapping.set(id.name, entry.name);

namesMapping.set(id.name, sourceName);

@aslushnikov I believe commit decf4d4 needs a review.

Secondary problem is in the code producing source code decorations:

valuesMap.set(property.name, property.value);

@pfeldman 80774d6

I think this will deserve a ticket upstream, because this needs to be fixed in general.

@aslushnikov
Copy link

@darwin thank you for the investigation. Would you mind filing bugs on the crbug.com (and posting links here so that they're triaged quickly)?

If you have any time for the CL to address the issue, I'll be happy to review

@darwin
Copy link
Member

darwin commented Jan 31, 2017

@aslushnikov sure, will do (probably at the end of this week).

@darwin
Copy link
Member

darwin commented Feb 1, 2017

I was able to implement a fix but it will need deeper changes to resolve all remaining issues.

New observations:

  1. SDK.TextSourceMap.findEntry method was wrong in some cases
  2. the problem is not only mapping of compiled names to duplicit original names. I found a case where even compiled names can be duplicit in the context of a given scope.

Original ClojureScript:

(defn breakpoint-demo [count]
  (let [x 1]
    (let [y 2]
      (let [x 3
            z #(println x)]
        (js-debugger))))

Produces:

var x = (1);
var y = (2);
var x__$1 = (3);
var z = ((function (x__$1,y,x){
return (function (){
return cljs.core.println.call(null,x__$1);
});})(x__$1,y,x))

Compiled variable names x,y and x__$1 are present twice. Second time as args to the anonymous function.

Mapping from compiled to original names should be:

x -> x
y -> y
x__$1 -> x
x__$1 -> null (second)
y -> null (second)
x -> null (second)
z -> z

This means that we have to care about general case of duplicit compiled names pointing arbitrarily to (potentially) duplicit original names. Any code using plain names to uniquely identify something is potentially wrong, both when mapping compiled names to original ones and reverse.

Implementation notes:

  1. 2f1268b
    SDK.TextSourceMap.findEntry method was returning false positives in some cases, the culprit was !first test which was preventing the whole condition in most cases
  2. 65c9264
    I was able to fix SourceMapNamesResolver to be aware of duplicit names, but I wasn't able to properly fix Sources.SourceMapNamesResolver.RemoteObject becasue I cannot modify its API design (that would lead to avalanche of more changes). The methods getAllProperties and setPropertyValue expect string names to identify properties. But names are not enough, we need some kind of id-system for property names so we can distinguish them even if they have duplicit names.
  3. 0ed1b3b
    I was able to fix JavaScriptSourceFrame to properly render decoration widgets even exposed to duplicit names. The trick was to invent string-based id-system which is used to do proper mapping between properties and widgets (see getLocationId)

@darwin
Copy link
Member

darwin commented Feb 1, 2017

@mtruyens please test it again with v1.1.2 release and report back.

darwin added a commit that referenced this issue Feb 2, 2017
the code was probably correct, I was just haunted by paranormal events

issue #53
darwin added a commit that referenced this issue Feb 2, 2017
Some nasty source maps generated by ClojureScript really use negative
indices.

issue #53
@darwin
Copy link
Member

darwin commented Feb 2, 2017

The changes in 1.1.2 release were not enough to fix everything :-(

Found pretty nasty bug in adba577.

@darwin
Copy link
Member

darwin commented Feb 2, 2017

Reported upstream as ticket 687772:
https://bugs.chromium.org/p/chromium/issues/detail?id=687772

@mtruyens
Copy link
Author

mtruyens commented Feb 7, 2017

A very big thank you for this investigation (and for your product in general!)

@danielcompton
Copy link
Collaborator

Here's another example of this which is slightly different:

(ns source-map-test2.core)

(defn test-fn
  [one-one]
  (let [two-two 2]
    ((fn rebind [] one-one))
    (js-debugger)))

(test-fn 1)

screenshot of intellij idea 14-03-18 11-59-17 am

screenshot of google chrome 14-03-18 11-58-03 am

@darwin
Copy link
Member

darwin commented Mar 13, 2018

@danielcompton Could you confirm this in Dirac? Dirac has a patch for this issue.

@danielcompton
Copy link
Collaborator

Dirac maps them correctly, but uses the generated JS name (one_one, rather than the original ClojureScript name (one-one):

screenshot of google chrome 14-03-18 12-50-41 pm

@darwin
Copy link
Member

darwin commented Mar 13, 2018

This is fishy. Are you sure you really ran the source-maps-enabled case under Dirac?

@danielcompton
Copy link
Collaborator

danielcompton commented Mar 14, 2018

I force updated the Chrome extension to the latest version, and I don't see this anymore, everything looks correct, sorry for the false alarm:

screenshot of google chrome 14-03-18 12-59-27 pm

darwin added a commit that referenced this issue Mar 14, 2018
@darwin
Copy link
Member

darwin commented Nov 28, 2018

Please note that this feature is broken in latest ClojureScript 1.10.439 due to CLJS-2993.

You might want to stay on 1.10.339 which is last good version.

darwin added a commit to binaryage/devtools-frontend that referenced this issue Nov 1, 2020
It has been causing me headaches when merging official changes.
I defer to devtools devs to fix this on their side.
binaryage/dirac#53
darwin added a commit that referenced this issue Nov 1, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants