v8/src
Peter Marshall 5694ac2210 [cpu-profiler] Fix a TSAN false-positive by using std::atomic
TSAN was flakily detecting a race in the Add/RemoveSampler functions.
It could also be fixed by moving the USE(atomic_->Value()); line below
the do loop in the constructor of AtomicGuard.

Given that base::AtomicValue is deprecated and std::atomic has a
compare_exchange operation with std::memory_order_seq_cst, we can just
use std::atomic_bool to fix the TSAN false-positive.

Bug: v8:7702
Change-Id: Id2038ea1ccced7339f45991263e944394e935454
Reviewed-on: https://chromium-review.googlesource.com/c/1288814
Reviewed-by: Alexei Filippov <alph@chromium.org>
Commit-Queue: Peter Marshall <petermarshall@chromium.org>
Cr-Commit-Position: refs/heads/master@{#56794}
2018-10-18 21:35:45 +00:00
..
arm [root] Refactor root offset accessors in TurboAssembler 2018-10-17 14:30:17 +00:00
arm64 [root] Refactor root offset accessors in TurboAssembler 2018-10-17 14:30:17 +00:00
asmjs Reduce wasm OWNERS to current team members 2018-10-15 14:47:49 +00:00
ast Compress memory by reordering members and storing bits in pointers. 2018-10-17 11:39:05 +00:00
base [Fuchsia] Use ZX_VMO_NON_RESIZABLE for zx_vmo_create() 2018-10-18 18:04:43 +00:00
builtins Reland "[Intl] Move Intl.getCanonicalLocales to C++" 2018-10-18 20:39:15 +00:00
compiler [turbofan] Optimize JSResolvePromise with unreliable resolution maps. 2018-10-18 18:09:44 +00:00
compiler-dispatcher [Compiler] Avoid flaky crashes for aborted compiler dispatcher jobs. 2018-10-18 17:29:19 +00:00
debug [builtins] Port Array.p.join to Torque. 2018-10-16 13:56:31 +00:00
extensions [deprecation] Deprecate ToBoolean(Local<Context>) 2018-09-24 12:02:09 +00:00
heap [js weak refs] Fix cleanup task scheduling 2018-10-18 11:33:13 +00:00
ia32 [ia32] Remove ShouldGenerateIsolateIndependentCode helper 2018-10-18 09:31:06 +00:00
ic Move MessageTemplate enum into its own header file 2018-10-11 23:01:32 +00:00
inspector inspector: do not report async tail in Debugger.scriptParsed event 2018-10-18 16:16:57 +00:00
interpreter [class] Fix class field name initialization 2018-10-16 11:02:21 +00:00
js Reland "[Intl] Move Intl.getCanonicalLocales to C++" 2018-10-18 20:39:15 +00:00
libplatform [base] Introduce MutexGuard as typedef for LockGuard<Mutex> 2018-10-12 15:44:51 +00:00
libsampler [cpu-profiler] Fix a TSAN false-positive by using std::atomic 2018-10-18 21:35:45 +00:00
mips [root] Refactor root offset accessors in TurboAssembler 2018-10-17 14:30:17 +00:00
mips64 [root] Refactor root offset accessors in TurboAssembler 2018-10-17 14:30:17 +00:00
objects Reland "[Intl] Move Intl.getCanonicalLocales to C++" 2018-10-18 20:39:15 +00:00
parsing [parser] Reuse expression classifier across conditional lhs/rhs 2018-10-18 17:25:02 +00:00
ppc PPC/s390: fix compilation error for incompatible types 2018-10-17 17:56:54 +00:00
profiler [heap profiler] Provide detailed samples information in heap profiler 2018-10-18 20:50:15 +00:00
regexp Reland "[ia32,root] Disable root indirections in irregexp code" 2018-10-16 07:30:13 +00:00
runtime [builtins] Port Array.p.join to Torque. 2018-10-16 13:56:31 +00:00
s390 PPC/s390: fix compilation error for incompatible types 2018-10-17 17:56:54 +00:00
snapshot [ia32] Implement PC-relative calls for snapshot code 2018-10-17 16:02:12 +00:00
third_party [cleanup] Remove DCHECK from third_party 2018-08-08 10:47:16 +00:00
torque [torque] allow return type never for runtime functions 2018-10-16 22:01:52 +00:00
tracing [tracing] Fix data race 2018-09-27 08:45:27 +00:00
trap-handler [cleanup] Refactor base, compiler, and wasm classes to use bools instead of converting ints. 2018-09-20 09:14:25 +00:00
wasm MIPS[64]: Fix failing several Liftoff tests 2018-10-17 14:32:37 +00:00
x64 [root] Refactor root offset accessors in TurboAssembler 2018-10-17 14:30:17 +00:00
zone [zone] Simplify and inline Zone::New 2018-10-18 14:23:11 +00:00
accessors.cc [objects] Change String::length field to uint32_t. 2018-09-13 13:07:08 +00:00
accessors.h [cleanup] Introduce ACCESSOR_INFO_ROOT_LIST 2018-09-24 11:03:26 +00:00
address-map.cc Clarify roots iteration 2018-10-16 08:42:30 +00:00
address-map.h Reland "[snapshot] Factor out root serialization code" 2018-10-10 10:45:35 +00:00
allocation-site-scopes-inl.h [objects.h splitting] Move Allocationsite & AllocationMemento 2018-09-12 11:21:08 +00:00
allocation-site-scopes.h [refactoring] Drop roots.h -> handles.h #include 2018-10-12 18:50:02 +00:00
allocation.cc Remove redundant IsAddressAligned function 2018-10-15 12:16:44 +00:00
allocation.h [cleanup] Introduce base::AddressRegion helper class 2018-09-17 13:02:54 +00:00
api-arguments-inl.h [ubsan] Replace internal::Object references in v8.h 2018-10-16 19:02:21 +00:00
api-arguments.cc [cleanup] Move handle() function to handles-inl.h 2018-07-23 16:10:10 +00:00
api-arguments.h [cleanup] Mark general src/ methods in subclasses with override. 2018-09-18 07:17:52 +00:00
api-inl.h [js weak refs] Initial JS Weak Ref implementation. 2018-10-09 13:16:50 +00:00
api-natives.cc Move MessageTemplate enum into its own header file 2018-10-11 23:01:32 +00:00
api-natives.h [ApiNatives] Eliminate old enum and TODO 2018-09-17 19:17:38 +00:00
api.cc [heap profiler] Provide detailed samples information in heap profiler 2018-10-18 20:50:15 +00:00
api.h inspector: return [[StableObjectId]] as internal property 2018-09-20 15:03:52 +00:00
arguments-inl.h [iwyu] Split off arguments-inl.h and builtins-utils-inl.h 2018-08-03 09:26:41 +00:00
arguments.cc
arguments.h [refactoring] Drop roots.h -> handles.h #include 2018-10-12 18:50:02 +00:00
asan.h [asan] Move asan macros to asan.h 2018-05-08 14:14:34 +00:00
assembler-arch-inl.h [assembler] Move reloc info to its own file 2018-08-17 09:54:28 +00:00
assembler-arch.h [wasm] Split off wasm-linkage.h 2018-04-27 13:43:49 +00:00
assembler-inl.h
assembler.cc [base] Introduce MutexGuard as typedef for LockGuard<Mutex> 2018-10-12 15:44:51 +00:00
assembler.h [assembler] Unify reloc info recording 2018-10-01 14:26:23 +00:00
assert-scope.cc Compress memory by reordering members and storing bits in pointers. 2018-10-17 11:39:05 +00:00
assert-scope.h Compress memory by reordering members and storing bits in pointers. 2018-10-17 11:39:05 +00:00
async-hooks-wrapper.cc [async-await] Fix INIT hook with --harmony-await-optimization 2018-10-15 14:36:56 +00:00
async-hooks-wrapper.h [async] Fix a crash when AsyncHooks is used in the proto of an object 2018-07-23 14:34:59 +00:00
bailout-reason.cc Reland "[turboassembler] Introduce hard-abort mode" 2018-07-24 15:58:46 +00:00
bailout-reason.h [parser] Decreased size of Bailout/Abort reason. 2018-08-24 08:42:50 +00:00
basic-block-profiler.cc [base] Introduce MutexGuard as typedef for LockGuard<Mutex> 2018-10-12 15:44:51 +00:00
basic-block-profiler.h [cleanup] Refactor second batch of general classes to use default members. 2018-09-20 10:34:28 +00:00
bignum-dtoa.cc
bignum-dtoa.h
bignum.cc Normalize casing of hexadecimal digits 2017-12-02 01:24:40 +00:00
bignum.h
bit-vector.cc
bit-vector.h [cleanup] Refactor second batch of general classes to use default members. 2018-09-20 10:34:28 +00:00
bootstrapper.cc Reland "[Intl] Move Intl.getCanonicalLocales to C++" 2018-10-18 20:39:15 +00:00
bootstrapper.h [cleanup] Remove empty and deprecated BASE_EMBEDDED macro 2018-09-11 09:33:18 +00:00
boxed-float.h Fix is_trivially_copyable check for MSVC and older stdlibc++ 2018-03-01 13:05:12 +00:00
cached-powers.cc Normalize casing of hexadecimal digits 2017-12-02 01:24:40 +00:00
cached-powers.h
callable.h [cleanup] Remove empty and deprecated BASE_EMBEDDED macro 2018-09-11 09:33:18 +00:00
cancelable-task.cc [base] Introduce MutexGuard as typedef for LockGuard<Mutex> 2018-10-12 15:44:51 +00:00
cancelable-task.h [CompilerDispatcher] Simplify Abort logic and remove MemoryPressure notifications. 2018-10-12 13:28:20 +00:00
char-predicates-inl.h [scanner] Use more range checks and const 2018-09-05 09:11:09 +00:00
char-predicates.cc
char-predicates.h
checks.h [cleanup] Split out v8-internal.h from include/v8.h 2018-09-07 09:55:25 +00:00
code-events.h [base] Introduce MutexGuard as typedef for LockGuard<Mutex> 2018-10-12 15:44:51 +00:00
code-factory.cc [cleanup] Remove obsolete StringAdd with TENURED. 2018-09-13 06:35:32 +00:00
code-factory.h [cleanup] Remove obsolete StringAdd with TENURED. 2018-09-13 06:35:32 +00:00
code-reference.cc [cleanup] Clean up CodeReference class 2018-04-23 10:10:45 +00:00
code-reference.h Use DCHECK instead of CHECK in CodeReference 2018-06-06 13:23:12 +00:00
code-stub-assembler.cc [builtins] Port Array.p.join to Torque. 2018-10-16 13:56:31 +00:00
code-stub-assembler.h [builtins] Port Array.p.join to Torque. 2018-10-16 13:56:31 +00:00
code-stubs-utils.h
code-stubs.cc [Build] Add support for V8 Lite mode. 2018-10-15 16:04:17 +00:00
code-stubs.h Prune forward declarations in isolate.h 2018-09-24 12:47:43 +00:00
code-tracer.h Reland "[wasm] Add a separate CodeTracer to the WasmEngine." 2018-07-16 12:39:00 +00:00
codegen.cc [cleanup] Support V8-agnostic mode in MacroAssembler 2018-09-15 03:09:44 +00:00
codegen.h [cleanup] Support V8-agnostic mode in MacroAssembler 2018-09-15 03:09:44 +00:00
collector.h [cleanup] Refactor second batch of general classes to use default members. 2018-09-20 10:34:28 +00:00
compilation-cache.cc [cleanup] Refactor second batch of general classes to use default members. 2018-09-20 10:34:28 +00:00
compilation-cache.h [cleanup] Refactor second batch of general classes to use default members. 2018-09-20 10:34:28 +00:00
compilation-statistics.cc [base] Introduce MutexGuard as typedef for LockGuard<Mutex> 2018-10-12 15:44:51 +00:00
compilation-statistics.h [cleanup] Refactor second batch of general classes to use default members. 2018-09-20 10:34:28 +00:00
compiler.cc [CompilerDispatcher] Add support for aborting a job. 2018-10-15 13:31:26 +00:00
compiler.h [Compiler] Remove CompilerDispatcherJob and use BackgroundCompileTask directly 2018-10-09 10:39:27 +00:00
contexts-inl.h [js weak refs] Fix cleanup task scheduling 2018-10-18 11:33:13 +00:00
contexts.cc Use JSGlobalProxy type for the global proxy field on Context. 2018-07-19 08:42:05 +00:00
contexts.h [Intl] Add Intl.Segmenter.prototype.segment 2018-10-18 08:08:37 +00:00
conversions-inl.h [ubsan] Fix many static_cast<int32_t> with undefined behavior 2018-04-17 02:02:18 +00:00
conversions.cc Fix building with GCC 7.x and 8.x 2018-09-21 01:12:25 +00:00
conversions.h [GetIsolate] Remove GetIsolate from String in src/objects.cc 2018-06-21 11:59:58 +00:00
counters-inl.h [explicit isolates] Remove various GetIsolates 2018-07-17 11:56:37 +00:00
counters.cc [base] Introduce MutexGuard as typedef for LockGuard<Mutex> 2018-10-12 15:44:51 +00:00
counters.h [heap] Add GC sum counters 2018-10-17 19:42:30 +00:00
d8-console.cc [deprecation] Deprecate ToBoolean(Local<Context>) 2018-09-24 12:02:09 +00:00
d8-console.h
d8-platforms.cc [base] Introduce MutexGuard as typedef for LockGuard<Mutex> 2018-10-12 15:44:51 +00:00
d8-platforms.h [d8] Add --stress-delay-tasks flag 2018-10-09 16:04:57 +00:00
d8-posix.cc [cleanup] Replace 0 and NULL with nullptr for src/ files. 2018-09-14 14:46:10 +00:00
d8-windows.cc [heap] Pass isolate to the OOM handler and add an OOM test. 2018-03-22 14:44:50 +00:00
d8.cc [base] Introduce MutexGuard as typedef for LockGuard<Mutex> 2018-10-12 15:44:51 +00:00
d8.h [cleanup] Mark general src/ methods in subclasses with override. 2018-09-18 07:17:52 +00:00
d8.js [cleanup] Remove a lot of dead intrinsics/runtime functions. 2018-09-20 12:48:57 +00:00
date.cc [cleanup] Replace 0 and NULL with nullptr for src/ files. 2018-09-14 14:46:10 +00:00
date.h TimeClip before formatting in Intl.DateTimeFormat 2018-04-25 20:17:29 +00:00
dateparser-inl.h
dateparser.cc
dateparser.h [cleanup] Remove empty and deprecated BASE_EMBEDDED macro 2018-09-11 09:33:18 +00:00
deoptimize-reason.cc
deoptimize-reason.h [turbofan] Make CheckString deopt reason more informative 2018-02-21 16:36:33 +00:00
deoptimizer.cc [deoptimizer] Materialize context properly for construct stub frame. 2018-10-17 10:27:04 +00:00
deoptimizer.h [cleanup] Refactor second batch of general classes to use default members. 2018-09-20 10:34:28 +00:00
DEPS [objects.h splitting] Move JSObject + subclasses 2018-09-21 13:03:09 +00:00
detachable-vector.h
disasm.h [cleanup] Refactor second batch of general classes to use default members. 2018-09-20 10:34:28 +00:00
disassembler.cc [ptr-compr] Move Heap::root() to Isolate 2018-10-11 08:59:50 +00:00
disassembler.h Make disassembler tests abort on unimplemented opcode 2018-07-26 13:52:17 +00:00
diy-fp.cc
diy-fp.h
double.h [iwyu] Fix includes in double.h 2018-07-25 07:57:55 +00:00
dtoa.cc
dtoa.h
eh-frame.cc [ubsan] Change Address typedef to uintptr_t 2018-04-14 01:25:28 +00:00
eh-frame.h [ubsan] Change Address typedef to uintptr_t 2018-04-14 01:25:28 +00:00
elements-inl.h [iwyu] Fix includes in elements-inl.h 2018-07-31 14:09:29 +00:00
elements-kind.cc [elements] Use IsHoleyElementsKind if possible 2018-08-13 19:21:33 +00:00
elements-kind.h [cleanup] Move some helper methods from Heap to ReadOnlyRoots 2018-09-26 11:03:11 +00:00
elements.cc Move MessageTemplate enum into its own header file 2018-10-11 23:01:32 +00:00
elements.h [cleanup] Refactor second batch of general classes to use default members. 2018-09-20 10:34:28 +00:00
execution.cc Move MessageTemplate enum into its own header file 2018-10-11 23:01:32 +00:00
execution.h [inspector] use interrupt for pause only as last resort 2018-05-30 13:54:37 +00:00
external-reference-table.cc [cleanup] Introduce ACCESSOR_INFO_ROOT_LIST 2018-09-24 11:03:26 +00:00
external-reference-table.h [cleanup] Don't declare inline runtime functions by default 2018-10-05 13:10:56 +00:00
external-reference.cc [builtins] Port Array.p.join to Torque. 2018-10-16 13:56:31 +00:00
external-reference.h [builtins] Port Array.p.join to Torque. 2018-10-16 13:56:31 +00:00
fast-dtoa.cc Work on -Wimplicit-fallthrough for v8 2018-02-16 13:32:25 +00:00
fast-dtoa.h
feedback-vector-inl.h Reland [in-place weak refs] Fix MaybeObject function names 2018-09-17 08:27:59 +00:00
feedback-vector.cc Reland [in-place weak refs] Fix MaybeObject function names 2018-09-17 08:27:59 +00:00
feedback-vector.h [base] Remove OffsetFrom and AddressFrom 2018-09-19 16:23:49 +00:00
field-index-inl.h Remove unused method from FieldIndex 2018-08-22 09:36:36 +00:00
field-index.h Remove unused method from FieldIndex 2018-08-22 09:36:36 +00:00
field-type.cc [cleanup] Fix more header includes to allow individual compilation 2018-07-30 09:34:27 +00:00
field-type.h [cleanup] Fix more header includes to allow individual compilation 2018-07-30 09:34:27 +00:00
fixed-dtoa.cc
fixed-dtoa.h
flag-definitions.h [class] Ship instance and static public class fields 2018-10-18 18:14:52 +00:00
flags.cc [d8] Treat .mjs files as modules 2018-07-17 19:04:28 +00:00
flags.h [flags] Print flags that were ignored. 2018-05-18 16:40:09 +00:00
frame-constants.h [masm] Don't push CodeObject when entering INTERNAL frames 2018-05-29 13:20:03 +00:00
frames-inl.h [memory] Replace Memory class with templated Memory functions. 2018-08-23 15:20:21 +00:00
frames.cc Refactor integer hashing function names 2018-09-20 11:43:13 +00:00
frames.h Fix building with GCC 7.x and 8.x 2018-09-21 01:12:25 +00:00
futex-emulation.cc [base] Introduce MutexGuard as typedef for LockGuard<Mutex> 2018-10-12 15:44:51 +00:00
futex-emulation.h [cleanup] Remove unused Isolate parameters 2018-07-18 16:47:22 +00:00
gdb-jit.cc [base] Introduce MutexGuard as typedef for LockGuard<Mutex> 2018-10-12 15:44:51 +00:00
gdb-jit.h [presubmit] Add include guard check 2018-02-02 16:59:32 +00:00
global-handles.cc Compress memory by reordering members and storing bits in pointers. 2018-10-17 11:39:05 +00:00
global-handles.h Compress memory by reordering members and storing bits in pointers. 2018-10-17 11:39:05 +00:00
globals.h [ubsan] Replace internal::Object references in v8.h 2018-10-16 19:02:21 +00:00
handler-table.cc [wasm] Print handler tables together with WasmCode. 2018-08-24 12:09:08 +00:00
handler-table.h [gc] Remove empty no track gc members for release builds. 2018-10-16 08:41:24 +00:00
handles-inl.h [ubsan] Replace internal::Object references in v8.h 2018-10-16 19:02:21 +00:00
handles.cc [ptr-compr] Move Heap::root() to Isolate 2018-10-11 08:59:50 +00:00
handles.h [ubsan] Replace internal::Object references in v8.h 2018-10-16 19:02:21 +00:00
heap-symbols.h [Intl] Add Intl.Segmenter.prototype.segment 2018-10-18 08:08:37 +00:00
icu_util.cc Block ICU data override with loading from file 2018-01-29 21:58:39 +00:00
icu_util.h
identity-map.cc [explicit isolates] Convert src/* to ReadOnlyRoots 2018-07-04 10:29:45 +00:00
identity-map.h [cleanup] Fix leftover clang-tidy warnings. 2018-09-21 11:12:13 +00:00
instruction-stream.cc [ptr-compr] Explicitly pass v8::PageAllocator instance to helper functions. 2018-09-06 14:45:58 +00:00
instruction-stream.h Replace V8_EMBEDDED_BUILTIN by runtime flag 2018-07-03 08:22:19 +00:00
interface-descriptors.cc [async] Improve async function handling. 2018-10-10 06:37:53 +00:00
interface-descriptors.h [async] Improve async function handling. 2018-10-10 06:37:53 +00:00
intl.cc [intl] Port CanonicalizeLocaleList to C++ 2018-08-07 18:02:23 +00:00
intl.h [Intl] Clean up SupportedLocalesOf and GetAvailableLocales 2018-10-08 19:45:31 +00:00
isolate-data.h Reland "[ia32,root] Add indirect calls and jumps through virtual register" 2018-10-16 14:05:12 +00:00
isolate-inl.h [refactoring] Drop roots.h -> handles.h #include 2018-10-12 18:50:02 +00:00
isolate.cc [async] Follow initial promise chains created via Promise#then(). 2018-10-12 15:49:01 +00:00
isolate.h [snapshot] Create a ReadOnly snapshot 2018-10-16 10:13:20 +00:00
json-parser.cc Move MessageTemplate enum into its own header file 2018-10-11 23:01:32 +00:00
json-parser.h [cleanup] Remove empty and deprecated BASE_EMBEDDED macro 2018-09-11 09:33:18 +00:00
json-stringifier.cc Move MessageTemplate enum into its own header file 2018-10-11 23:01:32 +00:00
json-stringifier.h [iwyu] Make string-builder.h an inline file 2018-07-31 12:52:22 +00:00
keys.cc [cleanup] Refactor second batch of general classes to use default members. 2018-09-20 10:34:28 +00:00
keys.h [cleanup] Refactor second batch of general classes to use default members. 2018-09-20 10:34:28 +00:00
label.h Fix gcc compile error 2018-09-04 10:34:06 +00:00
layout-descriptor-inl.h [heap,iwyu] Clean up scavenger and related headers 2018-07-30 13:07:52 +00:00
layout-descriptor.cc [ptr-compr] Fix assert in LayoutDescriptor which failed with 31-bit Smis. 2018-08-24 09:17:36 +00:00
layout-descriptor.h [heap,iwyu] Clean up scavenger and related headers 2018-07-30 13:07:52 +00:00
locked-queue-inl.h [base] Introduce MutexGuard as typedef for LockGuard<Mutex> 2018-10-12 15:44:51 +00:00
locked-queue.h [cleanup] Remove empty and deprecated BASE_EMBEDDED macro 2018-09-11 09:33:18 +00:00
log-inl.h
log-utils.cc Escape backslashes when logging. 2018-08-10 09:09:19 +00:00
log-utils.h [base] Introduce MutexGuard as typedef for LockGuard<Mutex> 2018-10-12 15:44:51 +00:00
log.cc [base] Introduce MutexGuard as typedef for LockGuard<Mutex> 2018-10-12 15:44:51 +00:00
log.h [interpreter] Always put bytecode handlers in builtins table 2018-09-20 09:58:15 +00:00
lookup-cache-inl.h
lookup-cache.cc
lookup-cache.h
lookup-inl.h [cleanup] Fix more header includes to allow individual compilation 2018-07-30 09:34:27 +00:00
lookup.cc Add iterator protectors for JSMapIterator/JSSet/JSSetIterator. 2018-10-10 14:10:29 +00:00
lookup.h [Runtime] Use Runtime_SetNamedProperty for property stores in one-shot code. 2018-09-11 13:42:25 +00:00
lsan.h [lsan] Disable annotations on windows 2018-05-14 09:57:32 +00:00
machine-type.cc
machine-type.h [compiler] Bypass FP register allocation if there are no FP vregs 2018-08-30 16:23:10 +00:00
macro-assembler-inl.h
macro-assembler.h [cleanup] Remove empty and deprecated BASE_EMBEDDED macro 2018-09-11 09:33:18 +00:00
map-updater.cc Revert "Reland "Create a fast path to get migration target when updating map"" 2018-10-15 14:35:37 +00:00
map-updater.h [cleanup] Fix more header includes to allow individual compilation 2018-07-30 09:34:27 +00:00
math-random.cc Warm up RNG when --random_seed is used 2018-10-05 15:34:58 +00:00
math-random.h Reland "Do not use FixedDoubleArray to store RNG state" 2018-09-24 14:23:22 +00:00
maybe-handles-inl.h Reland [in-place weak refs] Fix MaybeObject function names 2018-09-17 08:27:59 +00:00
maybe-handles.h [cleanup] Refactor maybe-handle to use default members. 2018-09-14 10:53:38 +00:00
message-template.h [Intl] Add Intl.Segmenter.prototype.segment 2018-10-18 08:08:37 +00:00
messages.cc Move MessageTemplate enum into its own header file 2018-10-11 23:01:32 +00:00
messages.h Move MessageTemplate enum into its own header file 2018-10-11 23:01:32 +00:00
msan.h [msan] Add static type checks for non-msan builds 2018-05-08 14:08:29 +00:00
objects-body-descriptors-inl.h [Intl] Add Intl.Segmenter.prototype.segment 2018-10-18 08:08:37 +00:00
objects-body-descriptors.h [in-place weak refs] Cleanup: Remove BodyDescriptorWeak 2018-09-19 12:57:40 +00:00
objects-debug.cc [Intl] Add Intl.Segmenter.prototype.segment 2018-10-18 08:08:37 +00:00
objects-definitions.h [Intl] Add Intl.Segmenter.prototype.segment 2018-10-18 08:08:37 +00:00
objects-inl.h Move MessageTemplate enum into its own header file 2018-10-11 23:01:32 +00:00
objects-printer.cc [Intl] Add Intl.Segmenter.prototype.segment 2018-10-18 08:08:37 +00:00
objects.cc [js weak refs] Fix cleanup task scheduling 2018-10-18 11:33:13 +00:00
objects.h [Intl] Add Intl.Segmenter.prototype.segment 2018-10-18 08:08:37 +00:00
optimized-compilation-info.cc Refactor OptimizedCompilationInfo construction 2018-09-05 13:53:47 +00:00
optimized-compilation-info.h [objects.h splitting] Move JSObject + subclasses 2018-09-21 13:03:09 +00:00
ostreams.cc [cleanup] Refactor first batch of general classes to use default members. 2018-09-19 08:32:08 +00:00
ostreams.h Export OFStreamBase in ostream.h 2018-10-05 13:24:51 +00:00
OWNERS Reduce wasm OWNERS to current team members 2018-10-15 14:47:49 +00:00
pending-compilation-error-handler.cc Move MessageTemplate enum into its own header file 2018-10-11 23:01:32 +00:00
pending-compilation-error-handler.h Move MessageTemplate enum into its own header file 2018-10-11 23:01:32 +00:00
perf-jit.cc [cpu-profiler] Use instruction start as the key for the CodeMap 2018-07-27 09:53:00 +00:00
perf-jit.h [cleanup] Mark general src/ methods in subclasses with override. 2018-09-18 07:17:52 +00:00
pointer-with-payload.h Compress memory by reordering members and storing bits in pointers. 2018-10-17 11:39:05 +00:00
PRESUBMIT.py [CQ] Let presubmit scripts point to correct LUCI bots 2018-02-27 23:26:51 +00:00
property-descriptor.cc [cleanup] Remove unused Isolate parameters 2018-07-18 16:47:22 +00:00
property-descriptor.h
property-details.h [cleanup] Remove empty and deprecated BASE_EMBEDDED macro 2018-09-11 09:33:18 +00:00
property.cc Reland [in-place weak refs] Fix MaybeObject function names 2018-09-17 08:27:59 +00:00
property.h [cleanup] Remove empty and deprecated BASE_EMBEDDED macro 2018-09-11 09:33:18 +00:00
prototype-inl.h [cleanup] Fix more header includes to allow individual compilation 2018-07-30 14:36:41 +00:00
prototype.h [cleanup] Refactor first batch of general classes to use default members. 2018-09-19 08:32:08 +00:00
register-configuration.cc Fix register names in restricted configuration 2018-08-22 15:08:15 +00:00
register-configuration.h [cleanup] Refactor first batch of general classes to use default members. 2018-09-19 08:32:08 +00:00
reglist.h
reloc-info.cc [wasm] Ensure all wasm runtime stubs are PIC 2018-08-22 10:03:16 +00:00
reloc-info.h Fix -Wdefaulted-function-deleted warnings 2018-10-03 15:42:01 +00:00
roots-inl.h [refactoring] Drop roots.h -> handles.h #include 2018-10-12 18:50:02 +00:00
roots.cc Clarify roots iteration 2018-10-16 08:42:30 +00:00
roots.h Clarify roots iteration 2018-10-16 08:42:30 +00:00
runtime-profiler.cc interpreter: make interpreted frames distinguishable in the native stack 2018-04-10 19:33:55 +00:00
runtime-profiler.h
safepoint-table.cc [memory] Replace Memory class with templated Memory functions. 2018-08-23 15:20:21 +00:00
safepoint-table.h [gc] Remove empty no track gc members for release builds. 2018-10-16 08:41:24 +00:00
setup-isolate-deserialize.cc [interpreter] Always put bytecode handlers in builtins table 2018-09-20 09:58:15 +00:00
setup-isolate-full.cc [interpreter] Always put bytecode handlers in builtins table 2018-09-20 09:58:15 +00:00
setup-isolate.h [interpreter] Always put bytecode handlers in builtins table 2018-09-20 09:58:15 +00:00
signature.h [wasm] Refactor SignatureMap to use unordered_map 2018-07-12 12:34:28 +00:00
simulator-base.cc [base] Introduce MutexGuard as typedef for LockGuard<Mutex> 2018-10-12 15:44:51 +00:00
simulator-base.h [assembler] Move reloc info to its own file 2018-08-17 09:54:28 +00:00
simulator.h [ubsan] Change Address typedef to uintptr_t 2018-04-14 01:25:28 +00:00
source-position-table.cc [gc] Remove empty no track gc members for release builds. 2018-10-16 08:41:24 +00:00
source-position-table.h [gc] Remove empty no track gc members for release builds. 2018-10-16 08:41:24 +00:00
source-position.cc [GetIsolate] Remove 1-arg Handle constructor 2018-06-26 11:02:30 +00:00
source-position.h [turbolizer] Add inlining information to --trace-turbo 2018-05-16 13:22:24 +00:00
splay-tree-inl.h
splay-tree.h [cleanup] Refactor first batch of general classes to use default members. 2018-09-19 08:32:08 +00:00
startup-data-util.cc Reland "[build] Make separate snapshot for trusted variant" 2018-03-20 10:59:24 +00:00
startup-data-util.h
string-builder-inl.h [gc] Remove empty no track gc members for release builds. 2018-10-16 08:41:24 +00:00
string-builder.cc [iwyu] Make string-builder.h an inline file 2018-07-31 12:52:22 +00:00
string-case.cc
string-case.h [presubmit] Add include guard check 2018-02-02 16:59:32 +00:00
string-constants.cc [turbofan] First steps in brokerizing JSNativeContextSpecialization. 2018-10-01 15:08:03 +00:00
string-constants.h [refactoring] Drop roots.h -> handles.h #include 2018-10-12 18:50:02 +00:00
string-hasher-inl.h [cleanup] Fix more header includes to allow individual compilation 2018-07-30 14:36:41 +00:00
string-hasher.h Extend hash seed to 64 bits 2018-07-16 11:19:42 +00:00
string-search.h [ptr-compr] Support 31-bit Smis in lower half-word on 64-bit architectures. 2018-06-05 11:37:35 +00:00
string-stream.cc Reland: [iwyu] Remove sfi-inl.h -> wasm include 2018-07-25 14:54:37 +00:00
string-stream.h [cleanup] Refactor first batch of general classes to use default members. 2018-09-19 08:32:08 +00:00
strtod.cc Fix compilation failure due to -Wunneeded-internal-declaration 2017-12-05 14:52:31 +00:00
strtod.h
torque-assembler.h [torque] add an intermediate representation to Torque 2018-10-04 21:29:18 +00:00
transitions-inl.h Revert "Reland "Create a fast path to get migration target when updating map"" 2018-10-15 14:35:37 +00:00
transitions.cc Revert "Reland "Create a fast path to get migration target when updating map"" 2018-10-15 14:35:37 +00:00
transitions.h Revert "Reland "Create a fast path to get migration target when updating map"" 2018-10-15 14:35:37 +00:00
turbo-assembler.cc [root] Refactor root offset accessors in TurboAssembler 2018-10-17 14:30:17 +00:00
turbo-assembler.h [root] Refactor root offset accessors in TurboAssembler 2018-10-17 14:30:17 +00:00
type-hints.cc [builtins] Convert CEntry/GetProperty/StringAdd stubs to builtins 2018-05-07 15:02:42 +00:00
type-hints.h [builtins] Convert CEntry/GetProperty/StringAdd stubs to builtins 2018-05-07 15:02:42 +00:00
unicode-cache-inl.h
unicode-cache.h [cleanup] Refactor first batch of general classes to use default members. 2018-09-19 08:32:08 +00:00
unicode-decoder.cc Consolidate UTF-8 Vector<char> to uc16 decoding into Iterator 2018-02-20 20:04:41 +00:00
unicode-decoder.h [cleanup] Refactor first batch of general classes to use default members. 2018-09-19 08:32:08 +00:00
unicode-inl.h [unibrow] -1 used by kNoPreviousCharacter and kEndOfInput isn't a valid Lead/Trail char. Drop superfluous check. 2018-06-21 12:35:08 +00:00
unicode.cc Implement DFA Unicode Decoder 2017-12-11 21:36:13 +00:00
unicode.h [cleanup] Refactor first batch of general classes to use default members. 2018-09-19 08:32:08 +00:00
unoptimized-compilation-info.cc [scopes] Clean up and centralize mapped/unmapped arguments logic 2018-08-21 20:38:41 +00:00
unoptimized-compilation-info.h [scopes] Clean up and centralize mapped/unmapped arguments logic 2018-08-21 20:38:41 +00:00
uri.cc [cleanup] Move handle() function to handles-inl.h 2018-07-23 16:10:10 +00:00
uri.h [cleanup] Move handle() function to handles-inl.h 2018-07-23 16:10:10 +00:00
utils-inl.h
utils.cc [turbofan] Serialize Object::BooleanValue. 2018-09-18 08:19:20 +00:00
utils.h Remove redundant IsAligned function 2018-10-15 12:34:41 +00:00
v8.cc [cleanup] Resurrect the c1 visualizer output 2018-10-04 10:01:20 +00:00
v8.h [heap] Pass isolate to the OOM handler and add an OOM test. 2018-03-22 14:44:50 +00:00
v8dll-main.cc
v8memory.h [memory] Replace Memory class with templated Memory functions. 2018-08-23 15:20:21 +00:00
v8threads.cc [debug] Fully implement Debug::ArchiveDebug and Debug::RestoreDebug. 2018-08-03 20:45:09 +00:00
v8threads.h [cleanup] Refactor first batch of general classes to use default members. 2018-09-19 08:32:08 +00:00
value-serializer.cc [wasm] Threads imply structured cloning 2018-10-15 11:41:40 +00:00
value-serializer.h Compress memory by reordering members and storing bits in pointers. 2018-10-17 11:39:05 +00:00
vector-slot-pair.cc [cleanup] Refactor first batch of general classes to use default members. 2018-09-19 08:32:08 +00:00
vector-slot-pair.h [turbofan] Fix RedundancyElimination and add more test coverage. 2018-09-19 13:08:12 +00:00
vector.h [wasm] "Vectorize" fuzzer 2018-07-12 12:44:39 +00:00
version.cc
version.h [iwyu] More iwyu fixes (date, execution etc.) 2018-02-26 08:59:59 +00:00
visitors.cc [heap-profiler] Simplify snapshotting of the roots. 2018-02-19 10:03:38 +00:00
visitors.h [snapshot] Create a ReadOnly snapshot 2018-10-16 10:13:20 +00:00
vm-state-inl.h
vm-state.h [cleanup] Remove empty and deprecated BASE_EMBEDDED macro 2018-09-11 09:33:18 +00:00