1. 30 8月, 2017 1 次提交
  2. 26 8月, 2017 2 次提交
  3. 23 8月, 2017 1 次提交
  4. 22 8月, 2017 3 次提交
  5. 19 8月, 2017 3 次提交
  6. 18 8月, 2017 2 次提交
  7. 17 8月, 2017 4 次提交
    • F
      Additional refactors. · 9a27f555
      Fredric Silberberg 提交于
      9a27f555
    • F
      Refactor IConditionalChoiceExpression. · ef25ee7d
      Fredric Silberberg 提交于
      ef25ee7d
    • A
      Remove LocalFunctionRewriting pass (#21408) · e887a8ab
      Andy Gocke 提交于
      
      Perform synthesis of closure methods in an early pass before visitation,
      meaning we no longer need to do a second visitation of the tree to lower
      local functions.
      
      The baselines have been changed because we now do closure id and
      synthessis in order of closure visitation, rather than bound node
      visitation. Closure visitation visits all the closures in a given scope,
      then recurs into nested scopes, while BoundNode visitation treats
      closures as scopes themselves, so nested closures are visited before
      closures declared in the same scope.
      
      Fixes https://github.com/dotnet/roslyn/projects/26#card-3753331
      e887a8ab
    • M
      Optimize performance for LookupSymbols(name) · 400be5d9
      Manish Vasani 提交于
      A customer trace on recent 15.3 release shows that `Microsoft.CodeAnalysis.CSharp!Binder.IsAccessibleHelper` is taking up large amount of CPU stacks for LookupSymbols(name) calls from IDE analyzers. This change optimizes the performance of this code path by adding a name check before doing accessibilty checks.
      400be5d9
  8. 16 8月, 2017 9 次提交
    • H
      8221825d
    • F
    • F
      Fixed unintentional capitalization change. · 21c24166
      Fredric Silberberg 提交于
      21c24166
    • F
      Fixed unintentional capitalization change. · a23840ef
      Fredric Silberberg 提交于
      a23840ef
    • A
      Fix bug in 'this' optimization for classes (#21510) · 5d6f76f2
      Andy Gocke 提交于
      In the introduction of the new 'this' optimization routine,
      one of the things which was changed was to treat 'this' more
      like a formal parameter of the method, as opposed to a variable
      living in an implicit, higher scope. This has some advantages
      in simplicity for analysis, but created a problem when it came
      to proxies. The current analysis builds the proxy list by walking
      the tree and finding all captured variables and adding them
      to the proxy dictionary keyed by the original variable symbol.
      For instance, if a local variable is captured to a field, during
      rewriting it will be added to the proxy list as (original symbol,
      hoisted field). Since most symbols are only ever captured to a
      single replacement field, this usually works fine -- all proxies
      can exist side-by-side in the proxy list since there is no intersection.
      
      However, this is not true for captured environment pointers. When
      a new environment is introduced, a local will be created to point
      to that environment. That local may itself be captured by nested
      variables, creating a linked list from nested scopes to parent scope.
      Most notably, *multiple* nested environments may capture the *same*
      environment pointer in *different* hoisted fields. This means that
      the proxies dictionary cannot hold all mappings at once, since the
      mapping for a given captured environment pointer will depend on the
      current scope.
      
      The current code actually accounts for this already by adding a
      captured environment pointer to the proxy list on a nested scope's
      introduction, and removing it upon leaving that scope.
      
      By changing 'this' to be treated like a formal parameter, I
      circumvented this logic, introducing a bug. When two scopes tried
      to capture the 'this' pointer, the compiler crashed due to trying
      to add two mappings to the same key.
      
      This change fixes this problem by treating the 'this' parameter
      like an environment pointer for the purposes of capturing and
      hoisting. It's possible that we want to treat it like a formal
      parameter, but if so it's probably better to treat all captured
      environment pointers the same way and introduce a scope-aware
      notion of proxies, rather than having a global dictionary.
      
      Fixes #21506
      5d6f76f2
    • F
      Fixed unintentional capitalization change. · ad58d125
      Fredric Silberberg 提交于
      ad58d125
    • F
      More test fixes. · 358dbb65
      Fredric Silberberg 提交于
      358dbb65
    • F
      Fixed misgenerated tests. · 75c45f1d
      Fredric Silberberg 提交于
      75c45f1d
    • C
      Use default tuple fields in conversion since fields from inferred names · b3eb0b67
      Charles Stoner 提交于
      are marked not usable in C#7
      b3eb0b67
  9. 15 8月, 2017 7 次提交
  10. 14 8月, 2017 1 次提交
  11. 12 8月, 2017 7 次提交