Home | History | Annotate | Download | only in interpreter

Lines Matching defs:bytecode_array

73       i::handle(js_function->shared()->bytecode_array(), i_isolate());
82 return i::handle(js_function->shared()->bytecode_array(), i_isolate());
259 std::ostream& stream, i::Handle<i::BytecodeArray> bytecode_array) const {
261 int frame_size = bytecode_array->frame_size();
265 << "\nparameter count: " << bytecode_array->parameter_count() << '\n';
269 std::ostream& stream, i::Handle<i::BytecodeArray> bytecode_array) const {
270 stream << "bytecode array length: " << bytecode_array->length()
274 bytecode_array->source_position_table());
275 BytecodeArrayIterator bytecode_iterator(bytecode_array);
280 PrintBytecode(stream, bytecode_iterator, bytecode_array->parameter_count());
314 std::ostream& stream, i::Handle<i::BytecodeArray> bytecode_array) const {
316 HandlerTable* table = HandlerTable::cast(bytecode_array->handler_table());
326 std::ostream& stream, i::Handle<i::BytecodeArray> bytecode_array) const {
327 PrintFrameSize(stream, bytecode_array);
328 PrintBytecodeSequence(stream, bytecode_array);
329 PrintConstantPool(stream, bytecode_array->constant_pool());
330 PrintHandlers(stream, bytecode_array);
343 i::Handle<i::BytecodeArray> bytecode_array =
349 PrintBytecodeArray(stream, bytecode_array);