cf197fee81
Facebook: ~bsimmers/bin/move-vm-files.sh
73 linhas
2.4 KiB
C++
73 linhas
2.4 KiB
C++
/*
|
|
+----------------------------------------------------------------------+
|
|
| HipHop for PHP |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) 2010- Facebook, Inc. (http://www.facebook.com) |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
| available through the world-wide-web at the following url: |
|
|
| http://www.php.net/license/3_01.txt |
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
#ifndef TRANSLATOR_DEBUG_H_
|
|
#define TRANSLATOR_DEBUG_H_
|
|
|
|
#include "hphp/runtime/base/types.h"
|
|
#include "hphp/runtime/vm/jit/translator.h"
|
|
#include "hphp/runtime/vm/hhbc.h"
|
|
#include "hphp/runtime/vm/debug/dwarf.h"
|
|
|
|
namespace HPHP {
|
|
namespace Debug {
|
|
|
|
class DebugInfo {
|
|
public:
|
|
DebugInfo();
|
|
~DebugInfo();
|
|
|
|
void recordTracelet(TCRange range,
|
|
const Func* func,
|
|
const Opcode *instr, bool exit,
|
|
bool inPrologue);
|
|
void recordStub(TCRange range,
|
|
const char* name);
|
|
void recordPerfMap(TCRange range, const Func* func, bool exit,
|
|
bool inPrologue);
|
|
void recordBCInstr(TCRange range, uint32_t op);
|
|
|
|
void debugSync();
|
|
static DebugInfo* Get();
|
|
|
|
private:
|
|
/* maintain separate dwarf info for a and astubs, so that we
|
|
* don't emit dwarf info for the two in the same ELF file.
|
|
* gdb tends to get confused when it sees dwarf info for
|
|
* widely separated addresses ranges in the same ELF file.
|
|
*/
|
|
DwarfInfo m_aDwarfInfo;
|
|
DwarfInfo m_astubsDwarfInfo;
|
|
/*
|
|
* Stuff to output symbol names to /tmp/perf-%d.map files. This stuff
|
|
* can be read by perf top/record, etc.
|
|
*/
|
|
FILE* m_perfMap;
|
|
char m_perfMapName[64];
|
|
};
|
|
|
|
/*
|
|
* Gets the fake symbol name we want to use for a php function.
|
|
*/
|
|
std::string lookupFunction(const Func* func,
|
|
bool exit,
|
|
bool inPrologue,
|
|
bool pseudoWithFileName);
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|