Remove JIT registration API; this needs more time.

This commit is contained in:
David Anderson
2014-06-24 20:44:30 -07:00
parent fac52a2897
commit f9defa7b37
3 changed files with 1 additions and 50 deletions
-16
View File
@@ -84,22 +84,6 @@ VProfTool::IsAttached()
return true;
}
intptr_t
VProfTool::RegisterCode(
uintptr_t addr,
size_t length,
const char *name,
const uintptr_t *line_map,
size_t line_count)
{
return 0;
}
void
VProfTool::DeregisterCode(intptr_t cookie)
{
}
void
VProfTool::EnterScope(const char *group, const char *name)
{
-7
View File
@@ -46,13 +46,6 @@ public:
void Stop(void (*render)(const char *fmt, ...)) KE_OVERRIDE;
bool IsActive() KE_OVERRIDE;
bool IsAttached() KE_OVERRIDE;
intptr_t RegisterCode(
uintptr_t addr,
size_t length,
const char *name,
const uintptr_t *line_map,
size_t line_count) KE_OVERRIDE;
void DeregisterCode(intptr_t cookie) KE_OVERRIDE;
void EnterScope(const char *group, const char *name) KE_OVERRIDE;
void LeaveScope() KE_OVERRIDE;
void RenderHelp(void (*render)(const char *fmt, ...)) KE_OVERRIDE;