define out the memory heap jsc functions

Reviewed By: mkonicek

Differential Revision: D2764964

fb-gh-sync-id: 26eff3e29762287f3527de84b146cee90eccd580
This commit is contained in:
Mike Armstrong 2015-12-16 10:44:39 -08:00 committed by facebook-github-bot-9
parent 42a1620b1e
commit 1be5777265
2 changed files with 7 additions and 2 deletions

View File

@ -30,7 +30,10 @@ using fbsystrace::FbSystraceSection;
// Add native performance markers support
#include <react/JSCPerfLogging.h>
#ifdef WITH_FB_MEMORY_PROFILING
#include <react/JSCMemory.h>
#endif
#ifdef WITH_FB_JSC_TUNING
#include <jsc_config_android.h>
@ -134,7 +137,9 @@ JSCExecutor::JSCExecutor(FlushImmediateCallback cb) :
addNativePerfLoggingHooks(m_context);
#endif
#ifdef WITH_FB_MEMORY_PROFILING
addNativeMemoryHooks(m_context);
#endif
}
JSCExecutor::~JSCExecutor() {

View File

@ -8,7 +8,7 @@
#include "Value.h"
#if WITH_FB_MEMORY_PROFILING
#ifdef WITH_FB_MEMORY_PROFILING
static JSValueRef nativeEnableAllocationTag(
JSContextRef ctx,
@ -143,7 +143,7 @@ namespace facebook {
namespace react {
void addNativeMemoryHooks(JSGlobalContextRef ctx) {
#if WITH_FB_MEMORY_PROFILING
#ifdef WITH_FB_MEMORY_PROFILING
installGlobalFunction(ctx, "nativeEnableAllocationTag", nativeEnableAllocationTag);
installGlobalFunction(ctx, "nativeAllocationPushTag", nativeAllocationPushTag);
installGlobalFunction(ctx, "nativeAllocationPopTag", nativeAllocationPopTag);