C++ javascript-engine

Open-source C++ projects categorized as javascript-engine

C++ javascript-engine Projects

  • V8

    The official mirror of the V8 Git repository

  • Project mention: Boehm Garbage Collector | news.ycombinator.com | 2024-01-21

    https://chromium.googlesource.com/v8/v8.git/+/HEAD/include/c...

    Due to the nature of web engine workloads migrating objects to being GC'd isn't performance negative (as most people would expect). With care it can often end up performance positive.

    There are a few tricks that Oilpan can apply. Concurrent tracing helps a lot (e.g. instead of incrementing/decrementing refs, you can trace on a different thread), in addition when destructing objects, the destructors typically become trivial meaning the object can just be dropped from memory. Both these free up main thread time. (The tradeoff with concurrent tracing is that you need atomic barriers when assigning pointers which needs care).

    This is on top of the safey improvements you gain from being GC'd vs. smart pointers, etc.

    One major tradeoff that UAF bugs become more difficult to fix, as you are just accessing objects which "should" be dead.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

C++ javascript-engine related posts

  • The Everything NPM Package

    2 projects | news.ycombinator.com | 6 Jan 2024
  • Microsoft defends Edge's predatory practices with cringe reply on X

    2 projects | news.ycombinator.com | 14 Dec 2023
  • C++23: Removing garbage collection support

    3 projects | news.ycombinator.com | 1 Nov 2023
  • What does the code look like for built-in functions?

    2 projects | /r/learnjavascript | 13 Jun 2023
  • What's happening with JavaScript Array References under the hood?

    1 project | /r/learnprogramming | 24 Mar 2023
  • FAMILIA PQ NAO TEM VAGA EM C E C++ NESSE MERCADO **********?????

    1 project | /r/brdev | 13 Mar 2023
  • [AskJS] Do you have to be a natural talent to reach deep knowledge?

    1 project | /r/javascript | 13 Jan 2023
  • A note from our sponsor - SaaSHub
    www.saashub.com | 2 Jun 2024
    SaaSHub helps you find the best software and product alternatives Learn more →

Index

Project Stars
1 V8 22,782

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com