X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/93a3786624b2768d89bfa27e46598dc64e2fb70a..refs/heads/master:/runtime/FunctionExecutableDump.cpp diff --git a/runtime/FunctionExecutableDump.cpp b/runtime/FunctionExecutableDump.cpp index 1577ed5..6c6dba7 100644 --- a/runtime/FunctionExecutableDump.cpp +++ b/runtime/FunctionExecutableDump.cpp @@ -1,5 +1,5 @@ /* - * 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 @@ -26,11 +26,23 @@ #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(""); + out.print("/"); + if (m_executable->isGeneratedForConstruct()) + out.print(m_executable->codeBlockForConstruct()->hashAsStringIfPossible()); + else + out.print(""); + out.print(":[", RawPointer(m_executable), "]"); } } // namespace JSC