/*
- * Copyright (C) 2013 Apple Inc. All rights reserved.
+ * Copyright (C) 2013, 2014 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
#include "config.h"
#include "FunctionExecutableDump.h"
+#include "CodeBlock.h"
+
namespace JSC {
void FunctionExecutableDump::dump(PrintStream& out) const
{
- out.print(m_executable->inferredName().string(), "#", m_executable->hashFor(CodeForCall), "/", m_executable->hashFor(CodeForConstruct), ":[", RawPointer(m_executable), "]");
+ out.print(m_executable->inferredName().string(), "#");
+ if (m_executable->isGeneratedForCall())
+ out.print(m_executable->codeBlockForCall()->hashAsStringIfPossible());
+ else
+ out.print("<nogen>");
+ out.print("/");
+ if (m_executable->isGeneratedForConstruct())
+ out.print(m_executable->codeBlockForConstruct()->hashAsStringIfPossible());
+ else
+ out.print("<nogen>");
+ out.print(":[", RawPointer(m_executable), "]");
}
} // namespace JSC