blob: 65861c658d01d949693d8aa87a0dcc8be0294001 [file] [log] [blame]
/*
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <sys/mman.h> /* for PROT_* */
#include "Dalvik.h"
#include "alloc/HeapBitmap.h"
#include "alloc/HeapBitmapInlines.h"
#include "alloc/HeapSource.h"
#include "alloc/Visit.h"
/*
* Maintain a card table from the the write barrier. All writes of
* non-NULL values to heap addresses should go through an entry in
* WriteBarrier, and from there to here.
*
* The heap is divided into "cards" of GC_CARD_SIZE bytes, as
* determined by GC_CARD_SHIFT. The card table contains one byte of
* data per card, to be used by the GC. The value of the byte will be
* one of GC_CARD_CLEAN or GC_CARD_DIRTY.
*
* After any store of a non-NULL object pointer into a heap object,
* code is obliged to mark the card dirty. The setters in
* ObjectInlines.h [such as dvmSetFieldObject] do this for you. The
* JIT and fast interpreters also contain code to mark cards as dirty.
*
* The card table's base [the "biased card table"] gets set to a
* rather strange value. In order to keep the JIT from having to
* fabricate or load GC_DIRTY_CARD to store into the card table,
* biased base is within the mmap allocation at a point where it's low
* byte is equal to GC_DIRTY_CARD. See dvmCardTableStartup for details.
*/
static bool allocCardTable(size_t heapMaximumSize)
{
size_t length;
void *allocBase;
u1 *biasedBase;
GcHeap *gcHeap = gDvm.gcHeap;
void *heapBase = dvmHeapSourceGetBase();
assert(gcHeap != NULL);
assert(heapBase != NULL);
/* Set up the card table */
length = heapMaximumSize / GC_CARD_SIZE;
assert(length * GC_CARD_SIZE == heapMaximumSize);
/* Allocate an extra 256 bytes to allow fixed low-byte of base */
allocBase = dvmAllocRegion(length + 0x100, PROT_READ | PROT_WRITE,
"dalvik-card-table");
if (allocBase == NULL) {
return false;
}
gcHeap->cardTableBase = (u1*)allocBase;
gcHeap->cardTableLength = length;
/* All zeros is the correct initial value; all clean. */
assert(GC_CARD_CLEAN == 0);
biasedBase = (u1 *)((uintptr_t)allocBase -
((uintptr_t)heapBase >> GC_CARD_SHIFT));
if (((uintptr_t)biasedBase & 0xff) != GC_CARD_DIRTY) {
int offset = GC_CARD_DIRTY - ((uintptr_t)biasedBase & 0xff);
biasedBase += offset + (offset < 0 ? 0x100 : 0);
}
assert(((uintptr_t)biasedBase & 0xff) == GC_CARD_DIRTY);
gDvm.biasedCardTableBase = biasedBase;
return true;
}
static bool allocModUnionTable(size_t heapSize)
{
size_t cardsPerHeap = heapSize / GC_CARD_SIZE;
size_t byteLength = cardsPerHeap / CHAR_BIT;
assert(byteLength * GC_CARD_SIZE * CHAR_BIT == heapSize);
int prot = PROT_READ | PROT_WRITE;
void *allocBase = dvmAllocRegion(byteLength, prot, "dalvik-modunion-table");
if (allocBase == NULL) {
return false;
}
GcHeap *gcHeap = gDvm.gcHeap;
gcHeap->modUnionTableBase = (u1*)allocBase;
gcHeap->modUnionTableLength = byteLength;
return true;
}
/*
* Initializes the card table; must be called before any other
* dvmCardTable*() functions.
*/
bool dvmCardTableStartup(size_t heapMaximumSize)
{
return allocCardTable(heapMaximumSize) && allocModUnionTable(heapMaximumSize);
}
/*
* Releases storage for the card table and clears its globals.
*/
static void freeCardTable()
{
if (gDvm.biasedCardTableBase == NULL) {
return;
}
gDvm.biasedCardTableBase = NULL;
munmap(gDvm.gcHeap->cardTableBase, gDvm.gcHeap->cardTableLength);
gDvm.gcHeap->cardTableBase = NULL;
gDvm.gcHeap->cardTableLength = 0;
}
/*
* Releases storage for the mod union table and clears its globals.
*/
static void freeModUnionTable()
{
if (gDvm.gcHeap->modUnionTableBase == NULL) {
return;
}
munmap(gDvm.gcHeap->modUnionTableBase, gDvm.gcHeap->modUnionTableLength);
gDvm.gcHeap->modUnionTableBase = NULL;
gDvm.gcHeap->modUnionTableLength = 0;
}
/*
* Tears down the entire CardTable.
*/
void dvmCardTableShutdown()
{
freeCardTable();
freeModUnionTable();
}
/*
* Set a bit in the mod union table for each dirty byte in the card
* table. Clears the corresponding byte in the card table.
*/
static void moveCardsToModUnion(u1 *base, u1 *limit)
{
GcHeap *h = gDvm.gcHeap;
u1 *baseCard = dvmCardFromAddr(base);
u1 *limitCard = dvmCardFromAddr(limit);
u4 *bits = (u4*)h->modUnionTableBase;
u1 *heapBase = (u1*)dvmHeapSourceGetBase();
for (u1 *card = baseCard; card < limitCard; ++card) {
if (*card == GC_CARD_CLEAN) {
continue;
}
u1 *addr = (u1*)dvmAddrFromCard(card);
u1 *biased = (u1*)((uintptr_t)addr - (uintptr_t)heapBase);
size_t offset = (uintptr_t)biased / GC_CARD_SIZE / HB_BITS_PER_WORD;
u4 bit = 1 << (((uintptr_t)biased / GC_CARD_SIZE) % HB_BITS_PER_WORD);
assert((u1*)&bits[offset] >= h->modUnionTableBase);
assert((u1*)&bits[offset] < h->modUnionTableBase+h->modUnionTableLength);
bits[offset] |= bit;
*card = GC_CARD_CLEAN;
}
}
void dvmClearCardTable()
{
uintptr_t base[HEAP_SOURCE_MAX_HEAP_COUNT];
uintptr_t limit[HEAP_SOURCE_MAX_HEAP_COUNT];
size_t numHeaps = dvmHeapSourceGetNumHeaps();
dvmHeapSourceGetRegions(base, NULL, limit, numHeaps);
for (size_t i = 0; i < numHeaps; ++i) {
if (i != 0) {
moveCardsToModUnion((u1*)base[i], (u1*)limit[i]);
} else {
u1 *baseCard = dvmCardFromAddr((u1*)base[i]);
size_t length = (limit[i] - base[i]) >> GC_CARD_SHIFT;
memset(baseCard, GC_CARD_CLEAN, length);
}
}
}
/*
* Returns true iff the address is within the bounds of the card table.
*/
bool dvmIsValidCard(const u1 *cardAddr)
{
GcHeap *h = gDvm.gcHeap;
return cardAddr >= h->cardTableBase &&
cardAddr < &h->cardTableBase[h->cardTableLength];
}
/*
* Returns the address of the relevent byte in the card table, given
* an address on the heap.
*/
u1 *dvmCardFromAddr(const void *addr)
{
u1 *biasedBase = gDvm.biasedCardTableBase;
u1 *cardAddr = biasedBase + ((uintptr_t)addr >> GC_CARD_SHIFT);
assert(dvmIsValidCard(cardAddr));
return cardAddr;
}
/*
* Returns the first address in the heap which maps to this card.
*/
void *dvmAddrFromCard(const u1 *cardAddr)
{
assert(dvmIsValidCard(cardAddr));
uintptr_t offset = cardAddr - gDvm.biasedCardTableBase;
return (void *)(offset << GC_CARD_SHIFT);
}
/*
* Dirties the card for the given address.
*/
void dvmMarkCard(const void *addr)
{
u1 *cardAddr = dvmCardFromAddr(addr);
*cardAddr = GC_CARD_DIRTY;
}
/*
* Returns true if the object is on a dirty card.
*/
static bool isObjectDirty(const Object *obj)
{
assert(obj != NULL);
assert(dvmIsValidObject(obj));
u1 *card = dvmCardFromAddr(obj);
return *card == GC_CARD_DIRTY;
}
/*
* Context structure for verifying the card table.
*/
struct WhiteReferenceCounter {
HeapBitmap *markBits;
size_t whiteRefs;
};
/*
* Visitor that counts white referents.
*/
static void countWhiteReferenceVisitor(void *addr, void *arg)
{
WhiteReferenceCounter *ctx;
Object *obj;
assert(addr != NULL);
assert(arg != NULL);
obj = *(Object **)addr;
if (obj == NULL) {
return;
}
assert(dvmIsValidObject(obj));
ctx = (WhiteReferenceCounter *)arg;
if (dvmHeapBitmapIsObjectBitSet(ctx->markBits, obj)) {
return;
}
ctx->whiteRefs += 1;
}
/*
* Visitor that logs white references.
*/
static void dumpWhiteReferenceVisitor(void *addr, void *arg)
{
WhiteReferenceCounter *ctx;
Object *obj;
assert(addr != NULL);
assert(arg != NULL);
obj = *(Object **)addr;
if (obj == NULL) {
return;
}
assert(dvmIsValidObject(obj));
ctx = (WhiteReferenceCounter*)arg;
if (dvmHeapBitmapIsObjectBitSet(ctx->markBits, obj)) {
return;
}
LOGE("object %p is white", obj);
}
/*
* Visitor that signals the caller when a matching reference is found.
*/
static void dumpReferencesVisitor(void *pObj, void *arg)
{
Object *obj = *(Object **)pObj;
Object *lookingFor = *(Object **)arg;
if (lookingFor != NULL && lookingFor == obj) {
*(Object **)arg = NULL;
}
}
static void dumpReferencesCallback(Object *obj, void *arg)
{
if (obj == (Object *)arg) {
return;
}
dvmVisitObject(dumpReferencesVisitor, obj, &arg);
if (arg == NULL) {
LOGD("Found %p in the heap @ %p", arg, obj);
dvmDumpObject(obj);
}
}
/*
* Root visitor that looks for matching references.
*/
static void dumpReferencesRootVisitor(void *ptr, u4 threadId,
RootType type, void *arg)
{
Object *obj = *(Object **)ptr;
Object *lookingFor = *(Object **)arg;
if (obj == lookingFor) {
LOGD("Found %p in a root @ %p", arg, ptr);
}
}
/*
* Invokes visitors to search for references to an object.
*/
static void dumpReferences(const Object *obj)
{
HeapBitmap *bitmap = dvmHeapSourceGetLiveBits();
void *arg = (void *)obj;
dvmVisitRoots(dumpReferencesRootVisitor, arg);
dvmHeapBitmapWalk(bitmap, dumpReferencesCallback, arg);
}
/*
* Returns true if the given object is a reference object and the
* just the referent is unmarked.
*/
static bool isReferentUnmarked(const Object *obj,
const WhiteReferenceCounter* ctx)
{
assert(obj != NULL);
assert(obj->clazz != NULL);
assert(ctx != NULL);
if (ctx->whiteRefs != 1) {
return false;
} else if (IS_CLASS_FLAG_SET(obj->clazz, CLASS_ISREFERENCE)) {
size_t offset = gDvm.offJavaLangRefReference_referent;
const Object *referent = dvmGetFieldObject(obj, offset);
return !dvmHeapBitmapIsObjectBitSet(ctx->markBits, referent);
} else {
return false;
}
}
/*
* Returns true if the given object is a string and has been interned
* by the user.
*/
static bool isWeakInternedString(const Object *obj)
{
assert(obj != NULL);
if (obj->clazz == gDvm.classJavaLangString) {
return dvmIsWeakInternedString((StringObject *)obj);
} else {
return false;
}
}
/*
* Returns true if the given object has been pushed on the mark stack
* by root marking.
*/
static bool isPushedOnMarkStack(const Object *obj)
{
GcMarkStack *stack = &gDvm.gcHeap->markContext.stack;
for (const Object **ptr = stack->base; ptr < stack->top; ++ptr) {
if (*ptr == obj) {
return true;
}
}
return false;
}
/*
* Callback applied to marked objects. If the object is gray and on
* an unmarked card an error is logged and the VM is aborted. Card
* table verification occurs between root marking and weak reference
* processing. We treat objects marked from the roots and weak
* references specially as it is permissible for these objects to be
* gray and on an unmarked card.
*/
static void verifyCardTableCallback(Object *obj, void *arg)
{
WhiteReferenceCounter ctx = { (HeapBitmap *)arg, 0 };
dvmVisitObject(countWhiteReferenceVisitor, obj, &ctx);
if (ctx.whiteRefs == 0) {
return;
} else if (isObjectDirty(obj)) {
return;
} else if (isReferentUnmarked(obj, &ctx)) {
return;
} else if (isWeakInternedString(obj)) {
return;
} else if (isPushedOnMarkStack(obj)) {
return;
} else {
LOGE("Verify failed, object %p is gray and on an unmarked card", obj);
dvmDumpObject(obj);
dvmVisitObject(dumpWhiteReferenceVisitor, obj, &ctx);
dumpReferences(obj);
dvmAbort();
}
}
/*
* Verifies that gray objects are on a dirty card.
*/
void dvmVerifyCardTable()
{
HeapBitmap *markBits = gDvm.gcHeap->markContext.bitmap;
dvmHeapBitmapWalk(markBits, verifyCardTableCallback, markBits);
}