2017-10-20 18:38:59 +00:00
|
|
|
# Below is a list of people and organizations that have contributed
|
2008-09-08 08:09:50 +00:00
|
|
|
# to the V8 project. Names should be added to the list like so:
|
2008-09-05 07:46:32 +00:00
|
|
|
#
|
|
|
|
# Name/Organization <email address>
|
|
|
|
|
2015-01-13 11:58:37 +00:00
|
|
|
Google Inc. <*@google.com>
|
|
|
|
The Chromium Authors <*@chromium.org>
|
|
|
|
Sigma Designs Inc. <*@sdesigns.com>
|
|
|
|
ARM Ltd. <*@arm.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Hewlett-Packard Development Company, LP <*@palm.com>
|
2015-01-13 11:58:37 +00:00
|
|
|
Igalia, S.L. <*@igalia.com>
|
|
|
|
Joyent, Inc. <*@joyent.com>
|
|
|
|
Bloomberg Finance L.P. <*@bloomberg.net>
|
|
|
|
NVIDIA Corporation <*@nvidia.com>
|
|
|
|
BlackBerry Limited <*@blackberry.com>
|
|
|
|
Opera Software ASA <*@opera.com>
|
|
|
|
Intel Corporation <*@intel.com>
|
2019-06-07 17:56:59 +00:00
|
|
|
LG Electronics, Inc. <*@lge.com>
|
2018-12-19 23:32:19 +00:00
|
|
|
Microsoft <*@microsoft.com>
|
2015-01-13 11:58:37 +00:00
|
|
|
MIPS Technologies, Inc. <*@mips.com>
|
|
|
|
Imagination Technologies, LLC <*@imgtec.com>
|
2018-07-26 13:43:48 +00:00
|
|
|
Wave Computing, Inc. <*@wavecomp.com>
|
2015-01-13 11:58:37 +00:00
|
|
|
Loongson Technology Corporation Limited <*@loongson.cn>
|
|
|
|
Code Aurora Forum <*@codeaurora.org>
|
2015-01-14 13:23:36 +00:00
|
|
|
Home Jinni Inc. <*@homejinni.com>
|
2019-04-24 11:33:53 +00:00
|
|
|
IBM Inc. <*@*.ibm.com>
|
|
|
|
IBM Inc. <*@ibm.com>
|
2020-09-14 12:39:01 +00:00
|
|
|
Red Hat Inc. <*@redhat.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Samsung <*@*.samsung.com>
|
2019-04-25 22:35:41 +00:00
|
|
|
Samsung <*@samsung.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
RT-RK Computer Based System <*@rt-rk.com>
|
|
|
|
Amazon, Inc <*@amazon.com>
|
|
|
|
ST Microelectronics <*@st.com>
|
|
|
|
Yandex LLC <*@yandex-team.ru>
|
2015-02-09 06:56:29 +00:00
|
|
|
StrongLoop, Inc. <*@strongloop.com>
|
2017-07-02 04:03:11 +00:00
|
|
|
Facebook, Inc. <*@fb.com>
|
|
|
|
Facebook, Inc. <*@oculus.com>
|
2017-09-25 22:17:53 +00:00
|
|
|
Vewd Software AS <*@vewd.com>
|
2017-10-20 18:10:35 +00:00
|
|
|
Groupon <*@groupon.com>
|
2018-08-02 20:08:35 +00:00
|
|
|
Meteor Development Group <*@meteor.com>
|
2018-04-17 17:46:34 +00:00
|
|
|
Cloudflare, Inc. <*@cloudflare.com>
|
2019-08-09 23:42:22 +00:00
|
|
|
Julia Computing, Inc. <*@juliacomputing.com>
|
2020-08-28 18:12:02 +00:00
|
|
|
CodeWeavers, Inc. <*@codeweavers.com>
|
2022-03-23 09:09:47 +00:00
|
|
|
Alibaba, Inc. <*@alibaba-inc.com>
|
2008-09-05 07:46:32 +00:00
|
|
|
|
2015-01-16 12:01:12 +00:00
|
|
|
Aaron Bieber <deftly@gmail.com>
|
2020-07-02 22:17:38 +00:00
|
|
|
Aaron O'Mullan <aaron.omullan@gmail.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Abdulla Kamar <abdulla.kamar@gmail.com>
|
2020-03-31 16:35:14 +00:00
|
|
|
Adam Kallai <kadam@inf.u-szeged.hu>
|
2011-05-08 14:55:57 +00:00
|
|
|
Akinori MUSHA <knu@FreeBSD.org>
|
2018-12-10 17:35:16 +00:00
|
|
|
Alessandro Pignotti <alessandro@leaningtech.com>
|
Add Isolate::DiscardThreadSpecificMetadata method to embedder API.
If many threads use the same Isolate (or many Isolates) and then
terminate, their PerIsolateThreadData objects are never cleaned
up, resulting in a slow memory leak and, worse, the
PerIsolateThreadData chain getting larger and larger, adversely
affecting performance.
In this situation, embedders will now be encouraged to apply
DiscardThreadSpecificMetadata against any Isolate a thread is
done with, especially if the thread is about to terminate.
Note that it is harmless to run DiscardThreadSpecificMetadata
against an Isolate for which a thread has no thread data and
per-Isolate thread data can be reestablished if a thread starts
using an Isolate again after running DiscardThreadSpecificMetadata
against it.
It is, however, an embedder error to run
DiscardThreadSpecificMetadata against an Isolate in thread with a
Locker for the Isolate in the stack or against an Entered Isolate.
This change cannot cause any change in behavior in existing apps
as the only added coded can only be reached via the new
DiscardThreadSpecificMetadata method.
R=Jakob, jochen
BUG=
Review URL: https://codereview.chromium.org/1522703002
Cr-Commit-Position: refs/heads/master@{#32909}
2015-12-16 15:49:28 +00:00
|
|
|
Alex Kodat <akodat@rocketsoftware.com>
|
2008-11-21 10:06:29 +00:00
|
|
|
Alexander Botero-Lowry <alexbl@FreeBSD.org>
|
2011-02-08 13:01:34 +00:00
|
|
|
Alexander Karpinsky <homm86@gmail.com>
|
2019-04-26 01:28:38 +00:00
|
|
|
Alexander Neville <dark@volatile.bz>
|
2009-06-19 09:12:20 +00:00
|
|
|
Alexandre Vassalotti <avassalotti@gmail.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Alexis Campailla <alexis@janeasystems.com>
|
2019-02-26 10:49:36 +00:00
|
|
|
Allan Sandfeld Jensen <allan.jensen@qt.io>
|
2018-06-05 08:35:27 +00:00
|
|
|
Amos Lim <eui-sang.lim@samsung.com>
|
2010-09-15 10:22:55 +00:00
|
|
|
Andreas Anyuru <andreas.anyuru@gmail.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Andrei Kashcha <anvaka@gmail.com>
|
2021-09-27 09:57:04 +00:00
|
|
|
Andrew Paprocki <andrew@ishiboo.com>
|
2017-11-18 19:15:28 +00:00
|
|
|
Anna Henningsen <anna@addaleax.net>
|
2021-01-04 18:30:34 +00:00
|
|
|
Antoine du Hamel <duhamelantoine1995@gmail.com>
|
2022-01-03 15:44:42 +00:00
|
|
|
Anton Bershanskiy <8knots@protonmail.com>
|
2019-01-22 13:09:15 +00:00
|
|
|
Anton Bikineev <ant.bikineev@gmail.com>
|
2022-02-15 07:56:37 +00:00
|
|
|
Ao Wang <wangao.james@bytedance.com>
|
2021-10-31 12:37:03 +00:00
|
|
|
Archil Sharashenidze <achosharashenidze@gmail.com>
|
2022-02-04 10:08:49 +00:00
|
|
|
Bala Avulapati <bavulapati@gmail.com>
|
2016-01-28 11:05:42 +00:00
|
|
|
Bangfu Tao <bangfu.tao@samsung.com>
|
2019-02-27 18:05:58 +00:00
|
|
|
Ben Coe <bencoe@gmail.com>
|
2018-08-02 20:08:35 +00:00
|
|
|
Ben Newman <ben@meteor.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Ben Noordhuis <info@bnoordhuis.nl>
|
2016-02-20 07:55:30 +00:00
|
|
|
Benjamin Tan <demoneaux@gmail.com>
|
2010-12-02 15:37:45 +00:00
|
|
|
Bert Belder <bertbelder@gmail.com>
|
2021-04-11 03:37:18 +00:00
|
|
|
Brendon Tiszka <btiszka@gmail.com>
|
2021-02-09 16:11:55 +00:00
|
|
|
Brice Dobry <brice.dobry@futurewei.com>
|
2010-09-10 08:12:34 +00:00
|
|
|
Burcu Dogan <burcujdogan@gmail.com>
|
2014-10-09 13:19:02 +00:00
|
|
|
Caitlin Potter <caitpotter88@gmail.com>
|
2021-02-09 16:11:55 +00:00
|
|
|
Chao Wang <chao.w@rioslab.org>
|
2020-10-26 21:53:25 +00:00
|
|
|
Charles Kerr <charles@charleskerr.com>
|
2020-01-10 14:14:10 +00:00
|
|
|
Chengzhong Wu <legendecas@gmail.com>
|
2017-02-11 13:00:40 +00:00
|
|
|
Choongwoo Han <cwhan.tunz@gmail.com>
|
2015-07-17 15:07:55 +00:00
|
|
|
Chris Nardi <hichris123@gmail.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Christopher A. Taylor <chris@gameclosure.com>
|
2017-11-06 18:01:59 +00:00
|
|
|
Colin Ihrig <cjihrig@gmail.com>
|
2020-08-24 04:05:24 +00:00
|
|
|
Cong Zuo <zckevinzc@gmail.com>
|
2021-09-27 09:57:04 +00:00
|
|
|
Craig Schlenter <craig.schlenter@gmail.com>
|
2009-05-26 08:49:07 +00:00
|
|
|
Daniel Andersson <kodandersson@gmail.com>
|
2016-07-14 06:32:14 +00:00
|
|
|
Daniel Bevenius <daniel.bevenius@gmail.com>
|
2021-04-23 20:56:03 +00:00
|
|
|
Daniel Dromboski <dandromb@gmail.com>
|
2009-05-26 08:49:07 +00:00
|
|
|
Daniel James <dnljms@gmail.com>
|
2021-09-27 09:57:04 +00:00
|
|
|
Daniel Shelton <d1.shelton@samsung.com>
|
2022-03-23 15:58:35 +00:00
|
|
|
Danylo Boiko <danielboyko02@gmail.com>
|
2021-08-17 14:56:20 +00:00
|
|
|
Darshan Sen <raisinten@gmail.com>
|
2019-07-22 18:30:35 +00:00
|
|
|
David Carlier <devnexen@gmail.com>
|
2020-03-19 13:40:05 +00:00
|
|
|
David Manouchehri <david@davidmanouchehri.com>
|
2022-03-22 20:33:04 +00:00
|
|
|
David Sanders <dsanders11@ucsbalum.com>
|
2019-02-06 11:09:34 +00:00
|
|
|
Deepak Mohan <hop2deep@gmail.com>
|
2016-07-11 20:41:09 +00:00
|
|
|
Deon Dior <diaoyuanjie@gmail.com>
|
2021-02-09 16:11:55 +00:00
|
|
|
Derek Tu <derek.t@rioslab.org>
|
2021-03-26 13:10:54 +00:00
|
|
|
Dominic Chen <d.c.ddcc@gmail.com>
|
2018-05-05 16:23:38 +00:00
|
|
|
Dominic Farolini <domfarolino@gmail.com>
|
2015-01-26 14:11:25 +00:00
|
|
|
Douglas Crosher <dtc-v8@scieneer.com>
|
2015-09-06 12:01:23 +00:00
|
|
|
Dusan Milosavljevic <dusan.m.milosavljevic@gmail.com>
|
2022-05-04 06:10:38 +00:00
|
|
|
Eden Wang <nedenwang@tencent.com>
|
2020-03-21 06:49:03 +00:00
|
|
|
Eric Rannaud <eric.rannaud@gmail.com>
|
2010-01-25 12:37:31 +00:00
|
|
|
Erich Ocean <erich.ocean@me.com>
|
2015-11-12 14:47:38 +00:00
|
|
|
Evan Lucas <evan.lucas@help.com>
|
2011-09-13 14:38:39 +00:00
|
|
|
Fedor Indutny <fedor@indutny.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Felix Geisendörfer <haimuiba@gmail.com>
|
2022-04-20 05:17:16 +00:00
|
|
|
Feng Yu <f3n67u@gmail.com>
|
2012-03-30 15:01:11 +00:00
|
|
|
Filipe David Manana <fdmanana@gmail.com>
|
2015-10-14 19:22:17 +00:00
|
|
|
Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
|
2022-02-16 03:48:20 +00:00
|
|
|
Gao Sheng <gaosheng08@meituan.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Geoffrey Garside <ggarside@gmail.com>
|
2018-06-29 10:39:49 +00:00
|
|
|
Gergely Nagy <ngg@ngg.hu>
|
2020-08-04 20:24:25 +00:00
|
|
|
Gilang Mentari Hamidy <gilang@hamidy.net>
|
2018-04-13 02:56:48 +00:00
|
|
|
Gus Caplan <me@gus.host>
|
2016-09-01 20:27:46 +00:00
|
|
|
Gwang Yoon Hwang <ryumiel@company100.net>
|
2021-02-09 16:11:55 +00:00
|
|
|
Haichuan Wang <hc.opensource@gmail.com>
|
2019-02-13 23:27:41 +00:00
|
|
|
Hannu Trey <hannu.trey@gmail.com>
|
2022-03-21 13:10:49 +00:00
|
|
|
Harshal Nandigramwar <pro.bbcom18@gmail.com>
|
2022-02-04 08:15:03 +00:00
|
|
|
Harshil Jain <twitharshil@gmail.com>
|
2016-10-27 12:36:15 +00:00
|
|
|
Henrique Ferreiro <henrique.ferreiro@gmail.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Hirofumi Mako <mkhrfm@gmail.com>
|
2022-06-06 19:44:32 +00:00
|
|
|
Hisham Muhammad <hisham@gobolinux.org>
|
2016-07-03 07:09:18 +00:00
|
|
|
Honggyu Kim <honggyu.kp@gmail.com>
|
2020-01-04 20:31:15 +00:00
|
|
|
Huáng Jùnliàng <jlhwung@gmail.com>
|
2020-08-27 13:19:10 +00:00
|
|
|
HyeockJin Kim <kherootz@gmail.com>
|
[regexp] Fix and unify non-unicode case-folding algorithms
Non-unicode, case-insensitive regexps (e.g. /foo/i, not foo/iu) use a
case-folding algorithm that doesn't quite match the Unicode
definition. There are two places in irregexp that need to do
case-folding. Prior to this patch, neither of them quite matched the
spec (https://tc39.es/ecma262/#sec-runtime-semantics-canonicalize-ch).
This patch implements the "Canonicalize" algorithm in
src/regexp/special-case.h, and uses it in the relevant places. It
replaces special-case logic around upper-casing / ASCII characters
with the following approach:
1. For most characters, calling UnicodeSet::closeOver on a set
containing that character will produce the correct set of
case-insensitive matches.
2. For a small handful of characters (like the sharp S that prompted
this change), UnicodeSet::closeOver will include some characters
that should be omitted. For example, although closeOver('ß') =
"ßẞ", uppercase('ß') is "SS", so step 3.e means that 'ß'
canonicalizes to itself, and should not match 'ẞ'. In these cases,
we can skip the closeOver entirely, because it will never add an
equivalent character. These characters are in the IgnoreSet.
3. For an even smaller handful of characters, UnicodeSet::closeOver
will produce some characters that should be omitted, but also some
characters that should be included. For example, closeOver('k') =
"kKK" (lowercase k, uppercase K, U+212A KELVIN SIGN), but KELVIN
SIGN should not match either of the other two (step 3.g). To handle
this, we put such characters in the SpecialAddSet. In these cases,
we closeOver the original character, but filter out the results
that do not have the same canonical value.
The computation of IgnoreSet and SpecialAddSet happens at build time,
using the pre-existing gen-regexp-special-case.cc step.
R=jgruber@chromium.org
Bug: v8:10248
Change-Id: I00d48b180c83bb8e645cc59eda57b01eab134f0b
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2072858
Reviewed-by: Frank Tang <ftang@chromium.org>
Reviewed-by: Jakob Gruber <jgruber@chromium.org>
Commit-Queue: Jakob Gruber <jgruber@chromium.org>
Cr-Commit-Position: refs/heads/master@{#66641}
2020-03-03 21:58:46 +00:00
|
|
|
Iain Ireland <iireland@mozilla.com>
|
2018-04-23 21:20:24 +00:00
|
|
|
Ingvar Stepanyan <me@rreverser.com>
|
2012-02-22 11:35:17 +00:00
|
|
|
Ioseb Dzmanashvili <ioseb.dzmanashvili@gmail.com>
|
2014-10-17 10:01:38 +00:00
|
|
|
Isiah Meadows <impinball@gmail.com>
|
2017-06-29 19:52:15 +00:00
|
|
|
Jaime Bernardo <jaime@janeasystems.com>
|
2021-09-27 09:57:04 +00:00
|
|
|
James M Snell <jasnell@gmail.com>
|
|
|
|
James Pike <g00gle@chilon.net>
|
2017-10-20 18:10:35 +00:00
|
|
|
Jan Krems <jan.krems@gmail.com>
|
2021-09-27 09:57:04 +00:00
|
|
|
Jan de Mooij <jandemooij@gmail.com>
|
2020-03-10 11:38:47 +00:00
|
|
|
Janusz Majnert <jmajnert@gmail.com>
|
2020-10-08 22:38:40 +00:00
|
|
|
Javad Amiri <javad.amiri@anu.edu.au>
|
2021-09-27 09:57:04 +00:00
|
|
|
Jay Freeman <saurik@saurik.com>
|
2021-07-06 21:26:10 +00:00
|
|
|
Jesper van den Ende <jespertheend@gmail.com>
|
2021-02-09 16:11:55 +00:00
|
|
|
Ji Qiu <qiuji@iscas.ac.cn>
|
2019-05-12 15:50:25 +00:00
|
|
|
Jiawen Geng <technicalcute@gmail.com>
|
2020-04-17 07:58:03 +00:00
|
|
|
Jiaxun Yang <jiaxun.yang@flygoat.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Joel Stanley <joel@jms.id.au>
|
2015-03-12 15:12:37 +00:00
|
|
|
Johan Bergström <johan@bergstroem.nu>
|
2012-02-22 12:26:36 +00:00
|
|
|
Jonathan Liu <net147@gmail.com>
|
2016-03-31 15:54:12 +00:00
|
|
|
Julien Brianceau <jbriance@cisco.com>
|
2015-03-03 11:03:41 +00:00
|
|
|
JunHo Seo <sejunho@gmail.com>
|
2021-09-27 09:57:04 +00:00
|
|
|
Junha Park <jpark3@scu.edu>
|
2019-09-22 14:51:03 +00:00
|
|
|
Junming Huang <kiminghjm@gmail.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Kang-Hao (Kenny) Lu <kennyluck@csail.mit.edu>
|
2015-09-04 19:58:35 +00:00
|
|
|
Karl Skomski <karl@skomski.com>
|
2022-03-04 04:30:49 +00:00
|
|
|
Keith Smiley <keithbsmiley@gmail.com>
|
2016-12-27 17:48:40 +00:00
|
|
|
Kevin Gibbons <bakkot@gmail.com>
|
2017-10-20 18:38:59 +00:00
|
|
|
Kris Selden <kris.selden@gmail.com>
|
2018-08-06 09:02:33 +00:00
|
|
|
Kyounga Ra <kyounga@alticast.com>
|
2017-02-27 08:20:45 +00:00
|
|
|
Loo Rong Jie <loorongjie@gmail.com>
|
2020-12-05 02:29:50 +00:00
|
|
|
Lu Yahan <yahan@iscas.ac.cn>
|
2013-01-03 08:56:05 +00:00
|
|
|
Luis Reis <luis.m.reis@gmail.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Luke Zarko <lukezarko@gmail.com>
|
2021-11-24 06:47:49 +00:00
|
|
|
Ma Aiguo <maaiguo@uniontech.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Maciej Małecki <me@mmalecki.com>
|
2020-09-04 03:37:16 +00:00
|
|
|
Marcel Laverdet <marcel@laverdet.com>
|
2015-08-11 07:48:49 +00:00
|
|
|
Marcin Cieślak <saper@marcincieslak.com>
|
2017-12-12 20:51:06 +00:00
|
|
|
Marcin Wiącek <marcin@mwiacek.com>
|
2020-08-04 20:24:25 +00:00
|
|
|
Martin Bidlingmaier <martin.bidlingmaier@gmail.com>
|
2017-08-24 21:49:48 +00:00
|
|
|
Mateusz Czeladka <mateusz.szczap@gmail.com>
|
2018-10-04 09:47:11 +00:00
|
|
|
Matheus Marchini <mat@mmarchini.me>
|
2019-09-13 14:27:11 +00:00
|
|
|
Matheus Marchini <mmarchini@netflix.com>
|
2012-02-23 08:15:45 +00:00
|
|
|
Mathias Bynens <mathias@qiwi.be>
|
2011-03-18 20:35:07 +00:00
|
|
|
Matt Hanselman <mjhanselman@gmail.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Matthew Sporleder <msporleder@gmail.com>
|
2018-12-17 13:03:06 +00:00
|
|
|
Maxim Mazurok <maxim@mazurok.com>
|
2011-03-18 20:35:07 +00:00
|
|
|
Maxim Mossienko <maxim.mossienko@gmail.com>
|
2012-02-22 11:35:17 +00:00
|
|
|
Michael Lutz <michi@icosahedron.de>
|
2019-05-29 09:46:30 +00:00
|
|
|
Michael Mclaughlin <m8ch88l@gmail.com>
|
2010-09-10 07:08:03 +00:00
|
|
|
Michael Smith <mike@w3.org>
|
2016-08-16 12:00:38 +00:00
|
|
|
Michaël Zasso <mic.besace@gmail.com>
|
2021-06-23 00:14:01 +00:00
|
|
|
Mihir Shah <mihirshah.11204@gmail.com>
|
2011-02-04 13:43:38 +00:00
|
|
|
Mike Gilbert <floppymaster@gmail.com>
|
2015-04-01 15:13:16 +00:00
|
|
|
Mike Pennisi <mike@mikepennisi.com>
|
2017-12-05 20:50:13 +00:00
|
|
|
Mikhail Gusarov <dottedmag@dottedmag.net>
|
2015-10-30 14:16:58 +00:00
|
|
|
Milton Chiang <milton.chiang@mediatek.com>
|
2019-07-12 07:13:01 +00:00
|
|
|
Mu Tao <pamilty@gmail.com>
|
2016-03-11 10:04:40 +00:00
|
|
|
Myeong-bo Shim <m0609.shim@samsung.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Nicolas Antonius Ernst Leopold Maria Kaiser <nikai@nikai.net>
|
2021-08-11 14:32:58 +00:00
|
|
|
Nicolò Ribaudo <nicolo.ribaudo@gmail.com>
|
2021-03-12 16:55:47 +00:00
|
|
|
Niek van der Maas <mail@niekvandermaas.nl>
|
2017-10-04 14:44:44 +00:00
|
|
|
Niklas Hambüchen <mail@nh2.me>
|
2016-09-01 20:27:46 +00:00
|
|
|
Noj Vek <nojvek@gmail.com>
|
2016-06-14 21:39:36 +00:00
|
|
|
Oleksandr Chekhovskyi <oleksandr.chekhovskyi@gmail.com>
|
2019-06-06 19:35:53 +00:00
|
|
|
Oliver Dunk <oliver@oliverdunk.com>
|
2009-05-26 08:49:07 +00:00
|
|
|
Paolo Giarrusso <p.giarrusso@gmail.com>
|
2010-04-22 17:28:43 +00:00
|
|
|
Patrick Gansterer <paroga@paroga.com>
|
2021-09-27 09:57:04 +00:00
|
|
|
Paul Lind <plind44@gmail.com>
|
|
|
|
Pavel Medvedev <pmedvedev@gmail.com>
|
2022-07-11 10:48:36 +00:00
|
|
|
Pedro Falcato <pedro.falcato@gmail.com>
|
2019-04-24 06:33:50 +00:00
|
|
|
Peng Fei <pfgenyun@gmail.com>
|
2021-02-09 16:11:55 +00:00
|
|
|
Peng Wu <peng.w@rioslab.org>
|
2020-02-13 01:00:59 +00:00
|
|
|
Peng-Yu Chen <pengyu@libstarrify.so>
|
2016-09-01 20:27:46 +00:00
|
|
|
Peter Rybin <peter.rybin@gmail.com>
|
2011-03-23 09:02:15 +00:00
|
|
|
Peter Varga <pvarga@inf.u-szeged.hu>
|
2017-08-22 23:39:31 +00:00
|
|
|
Peter Wong <peter.wm.wong@gmail.com>
|
2018-09-12 16:54:30 +00:00
|
|
|
PhistucK <phistuck@gmail.com>
|
2009-05-26 08:49:07 +00:00
|
|
|
Rafal Krypa <rafal@krypa.net>
|
2019-04-29 17:23:24 +00:00
|
|
|
Raul Tambre <raul@tambre.ee>
|
2018-05-13 23:19:39 +00:00
|
|
|
Ray Glover <ray@rayglover.net>
|
2021-09-27 09:57:04 +00:00
|
|
|
Ray Wang <ray@isrc.iscas.ac.cn>
|
2014-08-27 09:51:51 +00:00
|
|
|
Refael Ackermann <refack@gmail.com>
|
2009-05-26 08:49:07 +00:00
|
|
|
Rene Rebe <rene@exactcode.de>
|
2021-02-09 16:11:55 +00:00
|
|
|
Reza Yazdani <ryazdani@futurewei.com>
|
2018-04-27 19:55:59 +00:00
|
|
|
Rick Waldron <waldron.rick@gmail.com>
|
2016-10-26 20:26:56 +00:00
|
|
|
Rob Wu <rob@robwu.nl>
|
2019-05-03 13:21:54 +00:00
|
|
|
Robert Meijer <robert.s.meijer@gmail.com>
|
2011-07-01 05:50:14 +00:00
|
|
|
Robert Mustacchi <rm@fingolfin.org>
|
2015-01-14 13:23:36 +00:00
|
|
|
Robert Nagy <robert.nagy@gmail.com>
|
2020-11-07 11:17:30 +00:00
|
|
|
Robert O'Callahan <rocallahan@gmail.com>
|
2019-07-24 05:03:35 +00:00
|
|
|
Rong Wang <wangrong089@gmail.com>
|
2019-06-29 02:50:53 +00:00
|
|
|
Ross Kirsling <rkirsling@gmail.com>
|
2019-01-21 14:56:16 +00:00
|
|
|
Ruben Bridgewater <ruben@bridgewater.de>
|
2015-01-14 13:23:36 +00:00
|
|
|
Ryan Dahl <ry@tinyclouds.org>
|
2015-09-23 10:52:37 +00:00
|
|
|
Sakthipriyan Vairamani (thefourtheye) <thechargingvolcano@gmail.com>
|
2016-10-17 09:27:19 +00:00
|
|
|
Sander Mathijs van Veen <sander@leaningtech.com>
|
2014-01-31 09:18:43 +00:00
|
|
|
Sandro Santilli <strk@keybit.net>
|
2011-02-02 13:32:18 +00:00
|
|
|
Sanjoy Das <sanjoy@playingwithpointers.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Seo Sanghyeon <sanxiyn@gmail.com>
|
2019-04-07 02:06:08 +00:00
|
|
|
Shawn Anastasio <shawnanastasio@gmail.com>
|
2019-07-15 07:08:28 +00:00
|
|
|
Shawn Presser <shawnpresser@gmail.com>
|
2015-09-24 21:46:35 +00:00
|
|
|
Stefan Penner <stefan.penner@gmail.com>
|
2021-05-28 15:24:54 +00:00
|
|
|
Stephan Hartmann <stha09@googlemail.com>
|
2021-04-14 22:44:39 +00:00
|
|
|
Stephen Belanger <stephen.belanger@datadoghq.com>
|
2017-11-18 09:27:20 +00:00
|
|
|
Sylvestre Ledru <sledru@mozilla.com>
|
2021-09-27 09:57:04 +00:00
|
|
|
Takeshi Yoneda <takeshi@tetrate.io>
|
2018-02-07 03:43:37 +00:00
|
|
|
Taketoshi Aono <brn@b6n.ch>
|
2021-02-09 16:11:55 +00:00
|
|
|
Tao Liqiang <taolq@outlook.com>
|
2018-03-03 02:26:52 +00:00
|
|
|
Teddy Katz <teddy.katz@gmail.com>
|
2021-02-09 16:11:55 +00:00
|
|
|
Thomas Young <wenzhang5800@gmail.com>
|
2018-01-05 14:40:40 +00:00
|
|
|
Tiancheng "Timothy" Gu <timothygu99@gmail.com>
|
2021-09-27 09:57:04 +00:00
|
|
|
Tianping Yang <yangtianping@oppo.com>
|
2021-08-13 15:00:32 +00:00
|
|
|
Timo Teräs <timo.teras@iki.fi>
|
2011-12-13 13:02:08 +00:00
|
|
|
Tobias Burnus <burnus@net-b.de>
|
2018-05-15 14:56:58 +00:00
|
|
|
Tobias Nießen <tniessen@tnie.de>
|
2018-07-16 21:01:31 +00:00
|
|
|
Ujjwal Sharma <usharma1998@gmail.com>
|
2019-02-19 08:28:26 +00:00
|
|
|
Vadim Gorbachev <bmsdave@gmail.com>
|
2020-05-09 00:35:12 +00:00
|
|
|
Varun Varada <varuncvarada@gmail.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Victor Costan <costan@gmail.com>
|
2010-08-10 09:53:56 +00:00
|
|
|
Vlad Burlik <vladbph@gmail.com>
|
2015-12-15 11:47:03 +00:00
|
|
|
Vladimir Krivosheev <develar@gmail.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Vladimir Shutoff <vovan@shutoff.ru>
|
2021-05-25 12:56:45 +00:00
|
|
|
Wael Almattar <waelsy123@gmail.com>
|
2021-02-09 16:11:55 +00:00
|
|
|
Wei Wu <lazyparser@gmail.com>
|
2019-01-16 16:57:36 +00:00
|
|
|
Wenlu Wang <kingwenlu@gmail.com>
|
2022-04-02 02:56:30 +00:00
|
|
|
Wenming Yang <yangwenming@bytedance.com>
|
2021-04-06 12:01:44 +00:00
|
|
|
Wenyu Zhao <wenyu.zhao@anu.edu.au>
|
2017-06-08 15:48:19 +00:00
|
|
|
Wiktor Garbacz <wiktor.garbacz@gmail.com>
|
2020-02-21 14:37:03 +00:00
|
|
|
Wouter Vermeiren <wouter.vermeiren@essensium.com>
|
2021-02-09 16:11:55 +00:00
|
|
|
Xiaofang Zou <zouxiaofang@iscas.ac.cn>
|
2018-04-05 17:24:36 +00:00
|
|
|
Xiaoyin Liu <xiaoyin.l@outlook.com>
|
2020-08-04 20:24:25 +00:00
|
|
|
Yanbo Li <lybvinci@gmail.com>
|
2018-09-04 20:04:32 +00:00
|
|
|
Yannic Bonenberger <contact@yannic-bonenberger.com>
|
2021-02-09 16:11:55 +00:00
|
|
|
Yi Wang <wangyi8848@gmail.com>
|
2017-10-13 08:32:23 +00:00
|
|
|
Yong Wang <ccyongwang@tencent.com>
|
2019-11-05 09:17:41 +00:00
|
|
|
Youfeng Hao <ajihyf@gmail.com>
|
2015-01-14 13:23:36 +00:00
|
|
|
Yu Yin <xwafish@gmail.com>
|
2021-10-28 13:33:02 +00:00
|
|
|
Yujie Wang <hex6770@gmail.com>
|
2021-05-11 15:44:17 +00:00
|
|
|
Yuri Iozzelli <yuri@leaningtech.com>
|
2021-09-27 09:57:04 +00:00
|
|
|
Yusif Khudhur <yusif.khudhur@gmail.com>
|
2022-02-14 08:40:04 +00:00
|
|
|
Yuxiang Cao <caoyxsh@outlook.com>
|
2016-01-29 09:12:30 +00:00
|
|
|
Zac Hansen <xaxxon@gmail.com>
|
2020-08-04 20:24:25 +00:00
|
|
|
Zeynep Cankara <zeynepcankara402@gmail.com>
|
2019-10-29 11:33:33 +00:00
|
|
|
Zhao Jiazhong <kyslie3100@gmail.com>
|
2021-06-04 19:15:03 +00:00
|
|
|
Zheng Liu <i6122f@gmail.com>
|
2012-03-20 08:12:31 +00:00
|
|
|
Zhongping Wang <kewpie.w.zp@gmail.com>
|
2017-09-25 22:17:53 +00:00
|
|
|
柳荣一 <admin@web-tinker.com>
|
2021-12-29 08:22:50 +00:00
|
|
|
Yang Xiang <xiangyangemail@gmail.com>
|