2018-07-21 02:59:31 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "RecordReplay.h"
|
|
|
|
|
2018-07-21 17:17:16 +03:00
|
|
|
#include "js/GCAnnotations.h"
|
|
|
|
#include "mozilla/Atomics.h"
|
2018-07-21 02:59:31 +03:00
|
|
|
#include "mozilla/Casting.h"
|
2018-09-30 00:28:31 +03:00
|
|
|
#include "mozilla/Utf8.h"
|
2018-07-21 02:59:31 +03:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
// Recording and replaying is only enabled on Mac nightlies.
|
|
|
|
#if defined(XP_MACOSX) && defined(NIGHTLY_BUILD)
|
|
|
|
# define ENABLE_RECORD_REPLAY
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ENABLE_RECORD_REPLAY
|
|
|
|
# include <dlfcn.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace recordreplay {
|
|
|
|
|
|
|
|
#define FOR_EACH_INTERFACE(Macro) \
|
|
|
|
Macro(InternalAreThreadEventsPassedThrough, bool, (), ()) Macro( \
|
|
|
|
InternalAreThreadEventsDisallowed, bool, (), \
|
|
|
|
()) Macro(InternalRecordReplayValue, size_t, (size_t aValue), (aValue)) \
|
|
|
|
Macro(InternalHasDivergedFromRecording, bool, (), ()) Macro( \
|
|
|
|
InternalGeneratePLDHashTableCallbacks, const PLDHashTableOps*, \
|
|
|
|
(const PLDHashTableOps* aOps), \
|
|
|
|
(aOps)) Macro(InternalUnwrapPLDHashTableCallbacks, \
|
|
|
|
const PLDHashTableOps*, (const PLDHashTableOps* aOps), \
|
|
|
|
(aOps)) \
|
|
|
|
Macro(InternalThingIndex, size_t, (void* aThing), (aThing)) Macro( \
|
|
|
|
InternalVirtualThingName, const char*, (void* aThing), (aThing)) \
|
2018-07-22 14:56:47 +03:00
|
|
|
Macro(ExecutionProgressCounter, ProgressCounter*, (), ()) \
|
2018-08-03 02:26:25 +03:00
|
|
|
Macro(NewTimeWarpTarget, ProgressCounter, (), ()) Macro( \
|
2018-11-11 04:26:52 +03:00
|
|
|
ShouldUpdateProgressCounter, bool, (const char* aURL), \
|
|
|
|
(aURL)) \
|
2018-07-22 14:56:47 +03:00
|
|
|
Macro(DefineRecordReplayControlObject, bool, \
|
|
|
|
(JSContext * aCx, JSObject * aObj), (aCx, aObj))
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2018-07-21 02:59:31 +03:00
|
|
|
#define FOR_EACH_INTERFACE_VOID(Macro) \
|
2018-10-26 00:41:04 +03:00
|
|
|
Macro( \
|
|
|
|
InternalBeginOrderedAtomicAccess, (const void* aValue), \
|
2018-07-21 02:59:31 +03:00
|
|
|
(aValue)) Macro(InternalEndOrderedAtomicAccess, (), \
|
|
|
|
()) Macro(InternalBeginPassThroughThreadEvents, (), \
|
|
|
|
()) Macro(InternalEndPassThroughThreadEvents, \
|
|
|
|
(), ()) \
|
|
|
|
Macro(InternalBeginDisallowThreadEvents, (), ()) Macro( \
|
|
|
|
InternalEndDisallowThreadEvents, (), \
|
|
|
|
()) Macro(InternalRecordReplayBytes, (void* aData, size_t aSize), \
|
|
|
|
(aData, aSize)) Macro(InternalInvalidateRecording, \
|
|
|
|
(const char* aWhy), (aWhy)) \
|
|
|
|
Macro(InternalDestroyPLDHashTableCallbacks, \
|
|
|
|
(const PLDHashTableOps* aOps), \
|
|
|
|
(aOps)) Macro(InternalMovePLDHashTableContents, \
|
|
|
|
(const PLDHashTableOps* aFirstOps, \
|
|
|
|
const PLDHashTableOps* aSecondOps), \
|
|
|
|
(aFirstOps, \
|
|
|
|
aSecondOps)) Macro(SetWeakPointerJSRoot, \
|
2018-07-22 14:56:47 +03:00
|
|
|
(const void* aPtr, \
|
|
|
|
JSObject* aJSObj), \
|
|
|
|
(aPtr, aJSObj)) \
|
2018-07-21 02:59:31 +03:00
|
|
|
Macro(RegisterTrigger, \
|
|
|
|
(void* aObj, const std::function<void()>& aCallback), \
|
|
|
|
(aObj, aCallback)) Macro(UnregisterTrigger, (void* aObj), \
|
|
|
|
(aObj)) \
|
|
|
|
Macro(ActivateTrigger, (void* aObj), (aObj)) Macro( \
|
|
|
|
ExecuteTriggers, (), \
|
|
|
|
()) Macro(InternalRecordReplayAssert, \
|
|
|
|
(const char* aFormat, va_list aArgs), \
|
|
|
|
(aFormat, aArgs)) \
|
|
|
|
Macro(InternalRecordReplayAssertBytes, \
|
|
|
|
(const void* aData, size_t aSize), \
|
|
|
|
(aData, aSize)) Macro(InternalRegisterThing, \
|
|
|
|
(void* aThing), (aThing)) \
|
|
|
|
Macro(InternalUnregisterThing, (void* aThing), \
|
|
|
|
(aThing)) Macro(InternalRecordReplayDirective, \
|
|
|
|
(long aDirective), \
|
|
|
|
(aDirective)) \
|
2018-07-22 14:56:47 +03:00
|
|
|
Macro(BeginContentParse, \
|
|
|
|
(const void* aToken, const char* aURL, \
|
|
|
|
const char* aContentType), \
|
|
|
|
(aToken, aURL, aContentType)) \
|
2018-09-30 00:28:31 +03:00
|
|
|
Macro(AddContentParseData8, \
|
|
|
|
(const void* aToken, \
|
|
|
|
const mozilla::Utf8Unit* aUtf8Buffer, \
|
|
|
|
size_t aLength), \
|
|
|
|
(aToken, aUtf8Buffer, aLength)) \
|
|
|
|
Macro(AddContentParseData16, \
|
2018-07-22 14:56:47 +03:00
|
|
|
(const void* aToken, \
|
|
|
|
const char16_t* aBuffer, \
|
|
|
|
size_t aLength), \
|
|
|
|
(aToken, aBuffer, aLength)) \
|
|
|
|
Macro(EndContentParse, \
|
|
|
|
(const void* aToken), \
|
|
|
|
(aToken))
|
2018-07-21 02:59:31 +03:00
|
|
|
|
|
|
|
#define DECLARE_SYMBOL(aName, aReturnType, aFormals, _) \
|
|
|
|
static aReturnType(*gPtr##aName) aFormals;
|
|
|
|
#define DECLARE_SYMBOL_VOID(aName, aFormals, _) \
|
|
|
|
DECLARE_SYMBOL(aName, void, aFormals, _)
|
|
|
|
|
|
|
|
FOR_EACH_INTERFACE(DECLARE_SYMBOL)
|
|
|
|
FOR_EACH_INTERFACE_VOID(DECLARE_SYMBOL_VOID)
|
|
|
|
|
|
|
|
#undef DECLARE_SYMBOL
|
|
|
|
#undef DECLARE_SYMBOL_VOID
|
|
|
|
|
|
|
|
static void* LoadSymbol(const char* aName) {
|
|
|
|
#ifdef ENABLE_RECORD_REPLAY
|
|
|
|
void* rv = dlsym(RTLD_DEFAULT, aName);
|
|
|
|
MOZ_RELEASE_ASSERT(rv);
|
|
|
|
return rv;
|
|
|
|
#else
|
|
|
|
return nullptr;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void Initialize(int aArgc, char* aArgv[]) {
|
|
|
|
// Only initialize if the right command line option was specified.
|
|
|
|
bool found = false;
|
|
|
|
for (int i = 0; i < aArgc; i++) {
|
|
|
|
if (!strcmp(aArgv[i], gProcessKindOption)) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void (*initialize)(int, char**);
|
|
|
|
BitwiseCast(LoadSymbol("RecordReplayInterface_Initialize"), &initialize);
|
|
|
|
if (!initialize) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define INIT_SYMBOL(aName, _1, _2, _3) \
|
|
|
|
BitwiseCast(LoadSymbol("RecordReplayInterface_" #aName), &gPtr##aName);
|
|
|
|
#define INIT_SYMBOL_VOID(aName, _2, _3) INIT_SYMBOL(aName, void, _2, _3)
|
|
|
|
|
|
|
|
FOR_EACH_INTERFACE(INIT_SYMBOL)
|
|
|
|
FOR_EACH_INTERFACE_VOID(INIT_SYMBOL_VOID)
|
|
|
|
|
|
|
|
#undef INIT_SYMBOL
|
|
|
|
#undef INIT_SYMBOL_VOID
|
|
|
|
|
|
|
|
initialize(aArgc, aArgv);
|
|
|
|
}
|
|
|
|
|
2018-07-21 17:17:16 +03:00
|
|
|
// Record/replay API functions can't GC, but we can't use
|
|
|
|
// JS::AutoSuppressGCAnalysis here due to linking issues.
|
|
|
|
struct AutoSuppressGCAnalysis {
|
|
|
|
AutoSuppressGCAnalysis() {}
|
|
|
|
~AutoSuppressGCAnalysis() {
|
|
|
|
#ifdef DEBUG
|
|
|
|
// Need nontrivial destructor.
|
|
|
|
static Atomic<int, SequentiallyConsistent, Behavior::DontPreserve> dummy;
|
|
|
|
dummy++;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
} JS_HAZ_GC_SUPPRESSED;
|
|
|
|
|
2018-07-21 02:59:31 +03:00
|
|
|
#define DEFINE_WRAPPER(aName, aReturnType, aFormals, aActuals) \
|
|
|
|
aReturnType aName aFormals { \
|
2018-07-21 17:17:16 +03:00
|
|
|
AutoSuppressGCAnalysis suppress; \
|
2018-07-21 02:59:31 +03:00
|
|
|
MOZ_ASSERT(IsRecordingOrReplaying() || IsMiddleman()); \
|
|
|
|
return gPtr##aName aActuals; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define DEFINE_WRAPPER_VOID(aName, aFormals, aActuals) \
|
|
|
|
void aName aFormals { \
|
2018-07-21 17:17:16 +03:00
|
|
|
AutoSuppressGCAnalysis suppress; \
|
2018-07-21 02:59:31 +03:00
|
|
|
MOZ_ASSERT(IsRecordingOrReplaying() || IsMiddleman()); \
|
|
|
|
gPtr##aName aActuals; \
|
|
|
|
}
|
|
|
|
|
|
|
|
FOR_EACH_INTERFACE(DEFINE_WRAPPER)
|
|
|
|
FOR_EACH_INTERFACE_VOID(DEFINE_WRAPPER_VOID)
|
|
|
|
|
|
|
|
#undef DEFINE_WRAPPER
|
|
|
|
#undef DEFINE_WRAPPER_VOID
|
|
|
|
|
|
|
|
#ifdef ENABLE_RECORD_REPLAY
|
|
|
|
|
|
|
|
bool gIsRecordingOrReplaying;
|
|
|
|
bool gIsRecording;
|
|
|
|
bool gIsReplaying;
|
|
|
|
bool gIsMiddleman;
|
|
|
|
|
|
|
|
#endif // ENABLE_RECORD_REPLAY
|
|
|
|
|
|
|
|
#undef ENABLE_RECORD_REPLAY
|
|
|
|
|
|
|
|
} // namespace recordreplay
|
|
|
|
} // namespace mozilla
|