1. 16 Sep, 2020 1 commit
  2. 26 Aug, 2020 1 commit
  3. 30 Jul, 2020 1 commit
  4. 27 Jul, 2020 2 commits
  5. 11 May, 2020 1 commit
    • Seth Brenith's avatar
      [torque][cleanup] Simplify some Torque-defined classes · e7693985
      Seth Brenith authored
      This CL is pretty mechanical; I just iterated through some Torque
      classes making the following changes:
      
      - Use @generateCppClass if it seems easy to
      - Use @generatePrint if the existing printer doesn't do anything special
      - Fix up any imprecise field types
      
      It also includes two minor changes to implementation-visitor:
      
      - Add a new -inl.h file with the things needed for
        torque-generated/class-definitions-tq.cc so we don't need to keep
        changing the compiler when we add @generateCppClass.
      - Avoid emitting incorrect accessors for ExternalPointers. This isn't
        strictly necessary for correctness, as the accessors defined in C++
        already hide the ones inherited from generated code, but it makes me
        feel safer.
      
      Change-Id: I4d5a8ba6f86ebff57a0d147619212a3993b087c0
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2185824Reviewed-by: 's avatarTobias Tebbi <tebbi@chromium.org>
      Commit-Queue: Seth Brenith <seth.brenith@microsoft.com>
      Cr-Commit-Position: refs/heads/master@{#67719}
      e7693985
  6. 09 Mar, 2020 1 commit
    • Seth Brenith's avatar
      [tools] Fix v8windbg behavior on Map's bit_field2 · 8b1a5681
      Seth Brenith authored
      Bill kindly pointed out to me that v8windbg was not handling bit_field2
      correctly. The issue was that the constexpr type for ElementsKind was,
      somewhat unsurprisingly, "ElementsKind", but v8windbg expected a fully-
      qualified type name like "v8::internal::ElementsKind". This change
      addresses the problem in two ways:
      1. Update v8windbg's type resolution logic to resolve type names as if
         they were used in the v8::internal namespace. This makes it more
         consistent with how those type names are used in other generated
         Torque code, reducing surprises and the number of times we have to
         write `v8::internal::` in .tq files.
      2. Add compile-time verification that any constexpr type name used as a
         string in class-debug-readers-tq.cc can also resolve as a type name.
      
      Bug: v8:9376
      Change-Id: I349cd6ab586fd8345a1fa8bfc3989bb8e6376ab8
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2063769Reviewed-by: 's avatarTobias Tebbi <tebbi@chromium.org>
      Reviewed-by: 's avatarClemens Backes <clemensb@chromium.org>
      Commit-Queue: Seth Brenith <seth.brenith@microsoft.com>
      Cr-Commit-Position: refs/heads/master@{#66633}
      8b1a5681
  7. 26 Feb, 2020 1 commit
  8. 21 Feb, 2020 1 commit
  9. 14 Feb, 2020 2 commits
  10. 18 Nov, 2019 1 commit
  11. 30 Oct, 2019 1 commit
  12. 24 Oct, 2019 1 commit
  13. 05 Jun, 2019 1 commit
    • Suraj Sharma's avatar
      Reland "[torque] Convert few class layout to torque." · 8dc7da0c
      Suraj Sharma authored
      This is a reland of 42fee61a
      
      The in-object fields of JSModuleNamespace has been excluded from torque.
      It is restored back to its existing mechanism on the C++ side and rest
      of the class is ported to torque.
      
      Original change's description:
      > [torque] Convert few class layout to torque.
      >
      > 1. Converted Module, JSModuleNameSpace, JSCollator, JSV8BreakIterator,
      >       TemplateList,
      >       JSStrictArgumentsObject to torque.
      >
      > Bug: v8:8952
      > Change-Id: I01e88ac36acd7ba18791bec609e5ae737672c731
      > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1619146
      > Commit-Queue: Suraj Sharma <surshar@microsoft.com>
      > Reviewed-by: Simon Zünd <szuend@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#61671}
      
      Bug: v8:8952
      Change-Id: Ibd41000ad96ae57bd4f452f0c0c1b890e2c6fb5c
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1632833Reviewed-by: 's avatarTobias Tebbi <tebbi@chromium.org>
      Commit-Queue: Suraj Sharma <surshar@microsoft.com>
      Cr-Commit-Position: refs/heads/master@{#62005}
      8dc7da0c
  14. 29 May, 2019 1 commit
  15. 21 May, 2019 1 commit
    • Georg Neis's avatar
      Revert "Reland "[torque] Convert few class layout to torque."" · e165213e
      Georg Neis authored
      This reverts commit 42fee61a.
      
      Reason for revert: it's not safe to access in-object fields that way.
      Will post more information in Gerrit.
      
      Original change's description:
      > Reland "[torque] Convert few class layout to torque."
      > 
      > This is a reland of b9bfd006
      > 
      > Original change's description:
      > > [torque] Convert few class layout to torque and updated torque code formatter.
      > >
      > > 1. Converted Module, JSModuleNameSpace, JSCollator, JSV8BreakIterator,
      > >       TemplateList,
      > >       JSStrictArgumentsObject to torque.
      > > 2. Updated torque code formatter to now handle multi-line
      > >             declarations correctly.
      > >
      > > Bug: v8:8952
      > > Change-Id: I97846b1bc0d2cba5d7a68468fc263423b1b55d19
      > > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1536988
      > > Reviewed-by: Simon Zünd <szuend@chromium.org>
      > > Commit-Queue: Suraj Sharma <surshar@microsoft.com>
      > > Cr-Commit-Position: refs/heads/master@{#61624}
      > 
      > Removed the Torque code Formatter update from this CL
      > 
      > Bug: v8:8952
      > Change-Id: I01e88ac36acd7ba18791bec609e5ae737672c731
      > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1619146
      > Commit-Queue: Suraj Sharma <surshar@microsoft.com>
      > Reviewed-by: Simon Zünd <szuend@chromium.org>
      > Cr-Commit-Position: refs/heads/master@{#61671}
      
      TBR=surshar@microsoft.com,szuend@chromium.org
      
      Change-Id: I6fd66ce67aeecf0128878924d5e5b6a71ad88e32
      No-Presubmit: true
      No-Tree-Checks: true
      No-Try: true
      Bug: v8:8952
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1622109Reviewed-by: 's avatarGeorg Neis <neis@chromium.org>
      Commit-Queue: Georg Neis <neis@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#61692}
      e165213e
  16. 20 May, 2019 1 commit
    • Suraj Sharma's avatar
      Reland "[torque] Convert few class layout to torque." · 42fee61a
      Suraj Sharma authored
      This is a reland of b9bfd006
      
      Original change's description:
      > [torque] Convert few class layout to torque and updated torque code formatter.
      >
      > 1. Converted Module, JSModuleNameSpace, JSCollator, JSV8BreakIterator,
      >       TemplateList,
      >       JSStrictArgumentsObject to torque.
      > 2. Updated torque code formatter to now handle multi-line
      >             declarations correctly.
      >
      > Bug: v8:8952
      > Change-Id: I97846b1bc0d2cba5d7a68468fc263423b1b55d19
      > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1536988
      > Reviewed-by: Simon Zünd <szuend@chromium.org>
      > Commit-Queue: Suraj Sharma <surshar@microsoft.com>
      > Cr-Commit-Position: refs/heads/master@{#61624}
      
      Removed the Torque code Formatter update from this CL
      
      Bug: v8:8952
      Change-Id: I01e88ac36acd7ba18791bec609e5ae737672c731
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1619146
      Commit-Queue: Suraj Sharma <surshar@microsoft.com>
      Reviewed-by: 's avatarSimon Zünd <szuend@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#61671}
      42fee61a
  17. 18 May, 2019 1 commit
  18. 17 May, 2019 1 commit
  19. 10 May, 2019 1 commit
  20. 29 Apr, 2019 1 commit