Home
last modified time | relevance | path

Searched refs:PerformCommand (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/interpreter/
Dbytecode-generator.cc106 void Break(Statement* stmt) { PerformCommand(CMD_BREAK, stmt); } in Break()
107 void Continue(Statement* stmt) { PerformCommand(CMD_CONTINUE, stmt); } in Continue()
108 void ReturnAccumulator() { PerformCommand(CMD_RETURN, nullptr); } in ReturnAccumulator()
109 void AsyncReturnAccumulator() { PerformCommand(CMD_ASYNC_RETURN, nullptr); } in AsyncReturnAccumulator()
110 void ReThrowAccumulator() { PerformCommand(CMD_RETHROW, nullptr); } in ReThrowAccumulator()
122 void PerformCommand(Command command, Statement* statement);
200 execution_control()->PerformCommand(entry.command, entry.statement); in ApplyDeferredCommands()
367 void BytecodeGenerator::ControlScope::PerformCommand(Command command, in PerformCommand() function in v8::internal::interpreter::BytecodeGenerator::ControlScope
/external/v8/src/compiler/
Dast-graph-builder.cc178 void PerformCommand(Command cmd, Statement* target, Node* value);
829 void AstGraphBuilder::ControlScope::PerformCommand(Command command, in PerformCommand() function in v8::internal::compiler::AstGraphBuilder::ControlScope
846 PerformCommand(CMD_BREAK, stmt, builder()->jsgraph()->TheHoleConstant()); in BreakTo()
851 PerformCommand(CMD_CONTINUE, stmt, builder()->jsgraph()->TheHoleConstant()); in ContinueTo()
856 PerformCommand(CMD_RETURN, nullptr, return_value); in ReturnValue()
861 PerformCommand(CMD_THROW, nullptr, exception_value); in ThrowValue()