1. 08 Dec, 2016 1 commit
    • neis's avatar
      [parsing] Fix maybe-assigned flag in some cases. · fcb75915
      neis authored
      This CL attempts to set the maybe-assigned flag for variables that are written
      to as part of a destructuring or loop header.
      
      For instance, in the following two cases we now mark x as maybe-assigned.
      
      a) [x] = [1];
      b) for (x of [1,2,3]) {};
      
      There's more work to do here, this is just a first step.
      
      R=adamk@chromium.org, mstarzinger@chromium.org
      BUG=v8:5636
      
      Review-Url: https://codereview.chromium.org/2562443003
      Cr-Commit-Position: refs/heads/master@{#41582}
      fcb75915
  2. 07 Dec, 2016 4 commits
    • jwolfe's avatar
      A decimal integer literal with a leading 0 is now an error in strict mode. · 93b87c89
      jwolfe authored
      We're still collecting use counter data for this situation.
      
      BUG=v8:4973
      CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel
      
      Review-Url: https://codereview.chromium.org/2510873005
      Cr-Commit-Position: refs/heads/master@{#41563}
      93b87c89
    • jwolfe's avatar
      Change error messages for octal escape sequences · 089e4fd3
      jwolfe authored
      When an octal escape sequence is in a string in strict mode:
      - Octal literals are not allowed in strict mode.
      + Octal escape sequences are not allowed in strict mode.
      
      When an octal escape sequence is in a template string:
      - Octal literals are not allowed in template strings.
      + Octal escape sequences are not allowed in template strings.
      
      BUG=v8:4973
      CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel
      
      Review-Url: https://codereview.chromium.org/2551633002
      Cr-Commit-Position: refs/heads/master@{#41560}
      089e4fd3
    • caitp's avatar
      [ignition] desugar GetIterator() via bytecode rather than via AST · b5f146a0
      caitp authored
      Introduces:
      - a new AST node representing the GetIterator() algorithm in the specification, to be used by ForOfStatement, YieldExpression (in the case of delegating yield*), and the future `for-await-of` loop proposed in http://tc39.github.io/proposal-async-iteration/#sec-async-iterator-value-unwrap-functions.
      - a new opcode (JumpIfJSReceiver), which is useful for `if Type(object) is not Object` checks which are common throughout the specification. This node is easily eliminated by TurboFan.
      
      The AST node is desugared specially in bytecode, rather than manually when building the AST. The benefit of this is that desugaring in the BytecodeGenerator is much simpler and easier to understand than desugaring the AST.
      
      This also reduces parse time very slightly, and allows us to use LoadIC rather than KeyedLoadIC, which seems to have  better baseline performance. This results in a ~20% improvement in test/js-perf-test/Iterators micro-benchmarks, which I believe owes to the use of the slightly faster LoadIC as opposed to the KeyedLoadIC in the baseline case. Both produce identical optimized code via TurboFan when the type check can be eliminated, and the load can be replaced with a constant value.
      
      BUG=v8:4280
      R=bmeurer@chromium.org, rmcilroy@chromium.org, adamk@chromium.org, neis@chromium.org, jarin@chromium.org
      TBR=rossberg@chromium.org
      
      Review-Url: https://codereview.chromium.org/2557593004
      Cr-Commit-Position: refs/heads/master@{#41555}
      b5f146a0
    • henrique.ferreiro's avatar
      Install the 'name' property in classes at runtime · afd5ff55
      henrique.ferreiro authored
      This allows to detect a static property also named 'name', and also makes sure 'name' is added last, to be standards-compliant.
      
      BUG=v8:4199
      
      Review-Url: https://codereview.chromium.org/2423053002
      Cr-Commit-Position: refs/heads/master@{#41546}
      afd5ff55
  3. 06 Dec, 2016 1 commit
  4. 05 Dec, 2016 2 commits
  5. 02 Dec, 2016 3 commits
  6. 01 Dec, 2016 3 commits
  7. 30 Nov, 2016 2 commits
  8. 29 Nov, 2016 1 commit
  9. 28 Nov, 2016 4 commits
    • tebbi's avatar
      [parser] removed redundant undefined check of for-of iterator · 08931d45
      tebbi authored
      Removed a redundant check: If completion is not normal, then #iterator cannot be undefined.
      
      Review-Url: https://codereview.chromium.org/2533803002
      Cr-Commit-Position: refs/heads/master@{#41321}
      08931d45
    • Jochen Eisinger's avatar
      Fix compilation in parser.cc · 6c057947
      Jochen Eisinger authored
      R=verwaest@chromium.org
      TBR=marja@chromium.org, verwaest@chromium.org
      BUG=
      
      Review URL: https://codereview.chromium.org/2531233002 .
      
      Cr-Commit-Position: refs/heads/master@{#41310}
      6c057947
    • jochen's avatar
      Assign unique IDs to FunctionLiterals · cfebe603
      jochen authored
      They're supposed to be stable across several parse passes, so we'll also
      store them in the associated SharedFunctionInfos
      
      To achieve this, the PreParser and Parser need to generated the same number of
      FunctionLiterals. To achieve this, we teach the PreParser about desuggaring of
      class literals.
      
      For regular functions, the function IDs are assigned in the order they occur in
      the source. For arrow functions, however, we only know that it's an arrow function
      after parsing the parameter list, and so the ID assigned to the arrow function is
      larger than the IDs assigned to functions defined in the parameter list. This
      implies that we have to reset the function ID counter to before the parameter list
      when re-parsing an arrow function. To be able to do this, we store the number of
      function literals found in the parameter list of arrow functions as well.
      
      BUG=v8:5589
      
      Review-Url: https://codereview.chromium.org/2481163002
      Cr-Commit-Position: refs/heads/master@{#41309}
      cfebe603
    • marja's avatar
      Parser: store parameters in a ThreadedList instead of ZoneList. · b31cbbd4
      marja authored
      ThreadedList is more memory-efficient than ZoneList. This also enables
      us to use ThreadedList when making Preparser track parameters (upcoming
      work).
      
      BUG=v8:5501
      
      Review-Url: https://codereview.chromium.org/2531593002
      Cr-Commit-Position: refs/heads/master@{#41307}
      b31cbbd4
  10. 24 Nov, 2016 4 commits
  11. 23 Nov, 2016 3 commits
  12. 22 Nov, 2016 2 commits
    • marja's avatar
      Preparse inner functions: fix maybe_assigned · d2e90c5d
      marja authored
      ... but be less pessimistic about context allocation (see below).
      
      We might have just (pessimistically) context-allocated a variable based
      on references coming from an inner function, but after that we still
      need to set maybe_assigned (pessimistically).
      
      This makes test-parsing/InnerAssignment pass with
      FLAG_lazy_inner_functions.
      
      This was undetected until now because we didn't have lazy parsing enabled
      for small scripts.
      
      Less pessimistic approach: now that inner functions laziness decisions
      are stable (if we have once compiled a piece of code with lazy inner
      functions, we never compile the same code with eager inner functions),
      we don't need to be as pessimistic with context allocation as before.
      
      BUG=v8:5501
      
      Review-Url: https://codereview.chromium.org/2521513004
      Cr-Commit-Position: refs/heads/master@{#41183}
      d2e90c5d
    • neis's avatar
      Remove some leftovers of full-codegen's generators implementation. · c051ef38
      neis authored
      TBR=littledan@chromium.org
      BUG=
      
      Review-Url: https://codereview.chromium.org/2517143003
      Cr-Commit-Position: refs/heads/master@{#41180}
      c051ef38
  13. 21 Nov, 2016 1 commit
  14. 18 Nov, 2016 3 commits
  15. 17 Nov, 2016 2 commits
  16. 16 Nov, 2016 4 commits