https://github.com/mozilla/gecko-dev
Raw File
Tip revision: e373ee4a3888eebed9bec12d9420e56064ed2087 authored by seabld on 01 November 2012, 03:43:34 UTC
Added tag SEAMONKEY_2_14b3_RELEASE for changeset FIREFOX_17_0b4_BUILD1. CLOSED TREE a=release
Tip revision: e373ee4
Memory.h
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 * vim: set ts=8 sw=4 et tw=78:
 *
 * 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/. */

#ifndef jsgc_memory_h___
#define jsgc_memory_h___

#include <stddef.h>
#include "jsgc.h"

namespace js {
namespace gc {

// Sanity check that our compiled configuration matches the currently running
// instance and initialize any runtime data needed for allocation.
void InitMemorySubsystem();

// Allocate or deallocate pages from the system with the given alignment.
void *MapAlignedPages(size_t size, size_t alignment);
void UnmapPages(void *p, size_t size);

// Tell the OS that the given pages are not in use, so they should not
// be written to a paging file. This may be a no-op on some platforms.
bool MarkPagesUnused(void *p, size_t size);

// Undo |MarkPagesUnused|: tell the OS that the given pages are of interest
// and should be paged in and out normally. This may be a no-op on some
// platforms.
bool MarkPagesInUse(void *p, size_t size);

// Returns #(hard faults) + #(soft faults)
size_t GetPageFaultCount();

} /* namespace gc */
} /* namespace js */

#endif /* jsgc_memory_h___ */
back to top