https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 79ba7034e36d46efc3aa060cbd4e61a37bb97264 authored by ffxbld on 20 December 2013, 01:38:10 UTC
Added FENNEC_26_0_1_RELEASE FENNEC_26_0_1_BUILD2 tag(s) for changeset 855c01ab6bf0. DONTBUILD CLOSED TREE a=release
Tip revision: 79ba703
jscrashreport.h
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 * vim: set ts=8 sts=4 et sw=4 tw=99:
 * 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 jscrashreport_h
#define jscrashreport_h

#include "mozilla/GuardObjects.h"

#include <stdint.h>

namespace js {
namespace crash {

void
SnapshotGCStack();

void
SnapshotErrorStack();

void
SaveCrashData(uint64_t tag, void *ptr, size_t size);

template<size_t size, unsigned char marker>
class StackBuffer
{
  public:
    StackBuffer(void *data
                MOZ_GUARD_OBJECT_NOTIFIER_PARAM)
    {
        MOZ_GUARD_OBJECT_NOTIFIER_INIT;

        buffer[0] = marker;
        buffer[1] = '[';

        for (size_t i = 0; i < size; i++) {
            if (data)
                buffer[i + 2] = static_cast<unsigned char*>(data)[i];
            else
                buffer[i + 2] = 0;
        }

        buffer[size - 2] = ']';
        buffer[size - 1] = marker;
    }

  private:
    MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER
    volatile unsigned char buffer[size + 4];
};

} /* namespace crash */
} /* namespace js */

#endif /* jscrashreport_h */
back to top