本文整理汇总了C++中ExecutableBase::isFunctionExecutable方法的典型用法代码示例。如果您正苦于以下问题:C++ ExecutableBase::isFunctionExecutable方法的具体用法?C++ ExecutableBase::isFunctionExecutable怎么用?C++ ExecutableBase::isFunctionExecutable使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ExecutableBase
的用法示例。
在下文中一共展示了ExecutableBase::isFunctionExecutable方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: ASCIILiteral
String SamplingProfiler::StackFrame::displayNameForJSONTests()
{
if (frameType == FrameType::Unknown)
return ASCIILiteral("(unknown)");
if (frameType == FrameType::Host)
return ASCIILiteral("(host)");
RELEASE_ASSERT(frameType != FrameType::UnverifiedCallee);
ExecutableBase* executable = u.verifiedExecutable;
if (executable->isHostFunction())
return static_cast<NativeExecutable*>(executable)->name();
if (executable->isFunctionExecutable()) {
String result = static_cast<FunctionExecutable*>(executable)->inferredName().string();
if (result.isEmpty())
return ASCIILiteral("(anonymous function)");
return result;
}
if (executable->isEvalExecutable())
return ASCIILiteral("(eval)");
if (executable->isProgramExecutable())
return ASCIILiteral("(program)");
if (executable->isModuleProgramExecutable())
return ASCIILiteral("(module)");
RELEASE_ASSERT_NOT_REACHED();
return String();
}
示例2: deleteAllCompiledCode
void Heap::deleteAllCompiledCode()
{
// If JavaScript is running, it's not safe to delete code, since we'll end
// up deleting code that is live on the stack.
if (m_vm->entryScope)
return;
for (ExecutableBase* current = m_compiledCode.head(); current; current = current->next()) {
if (!current->isFunctionExecutable())
continue;
static_cast<FunctionExecutable*>(current)->clearCodeIfNotCompiling();
}
m_codeBlocks.clearMarks();
m_codeBlocks.deleteUnmarkedAndUnreferenced();
}