/third_party/node/deps/v8/src/codegen/ |
H A D | source-position-table.h | 29 is_statement(false) {} in PositionTableEntry() 31 : code_offset(offset), source_position(source), is_statement(statement) {} in PositionTableEntry() 35 bool is_statement; member 55 bool is_statement); 131 bool is_statement() const { in is_statement() function in v8::internal::SourcePositionTableIterator 133 return current_.is_statement; in is_statement()
|
H A D | source-position-table.cc | 37 // Helper: Add the offsets from 'other' to 'value'. Also set is_statement. 45 value->is_statement = other.is_statement; in AddAndSetEntry() 82 // Since code_offset is not negative, we use sign to encode is_statement. in EncodeEntry() 84 entry.is_statement ? entry.code_offset : -entry.code_offset - 1); in EncodeEntry() 112 entry->is_statement = true; in DecodeEntry() 115 entry->is_statement = false; in DecodeEntry() 136 DCHECK_EQ(encoded->is_statement(), raw->is_statement); in CheckTableEquals() 156 bool is_statement) { in AddPosition() 154 AddPosition(size_t code_offset, SourcePosition source_position, bool is_statement) AddPosition() argument [all...] |
/third_party/node/deps/v8/src/interpreter/ |
H A D | bytecode-source-info.h | 23 BytecodeSourceInfo(int source_position, bool is_statement) in BytecodeSourceInfo() argument 24 : position_type_(is_statement ? PositionType::kStatement in BytecodeSourceInfo() 45 DCHECK(!is_statement()); in MakeExpressionPosition() 61 bool is_statement() const { in is_statement() function in v8::internal::interpreter::final
|
H A D | bytecode-source-info.cc | 16 char description = info.is_statement() ? 'S' : 'E'; in operator <<()
|
H A D | bytecode-array-writer.cc | 213 bool is_statement = false; in SetFunctionEntrySourcePosition() local 215 kFunctionEntryBytecodeOffset, SourcePosition(position), is_statement); in SetFunctionEntrySourcePosition() 230 source_info.is_statement()); in UpdateSourcePositionTable()
|
H A D | bytecode-array-builder.h | 536 if (!latest_source_info_.is_statement()) { in SetExpressionPosition()
|
H A D | bytecode-array-builder.cc | 140 if (latest_source_info_.is_statement() || in CurrentSourcePosition() 160 } else if (deferred_source_info_.is_statement() && in AttachOrEmitDeferredSourceInfo()
|
/third_party/node/deps/v8/src/diagnostics/ |
H A D | gdb-jit.cc | 878 void SetPosition(intptr_t pc, int pos, bool is_statement) { 879 AddPCInfo(PCInfo(pc, pos, is_statement)); 883 PCInfo(intptr_t pc, int pos, bool is_statement) 884 : pc_(pc), pos_(pos), is_statement_(is_statement) {} 1399 bool is_statement = true; 1420 if (!is_statement) { 1423 } else if (is_statement != info->is_statement_) { 1425 is_statement = !is_statement;
|
/third_party/node/deps/v8/src/objects/ |
H A D | code.cc | 264 if (it.is_statement()) { in SourceStatementPosition() 546 << (it.is_statement() ? " statement" : "") << "\n"; in Disassemble() 628 os << (source_positions.is_statement() ? " S> " : " E> "); in Disassemble()
|
/third_party/jerryscript/jerry-core/parser/js/ |
H A D | js-parser-statm.c | 3090 bool is_statement = true; in parser_parse_statements() local 3094 is_statement = (context_p->next_scanner_info_p->u8_arg & SCANNER_FUNCTION_STATEMENT) != 0; in parser_parse_statements() 3096 JERRY_ASSERT (!is_statement || (context_p->next_scanner_info_p->u8_arg & SCANNER_FUNCTION_ASYNC)); in parser_parse_statements() 3105 if (is_statement) in parser_parse_statements()
|
H A D | js-parser-internal.h | 741 void parser_parse_class (parser_context_t *context_p, bool is_statement);
|
H A D | js-parser-expr.c | 719 bool is_statement) /**< true - if class is parsed as a statement in parser_parse_class() 735 if (is_statement) in parser_parse_class() 816 if (is_statement) in parser_parse_class() 718 parser_parse_class(parser_context_t *context_p, bool is_statement) parser_parse_class() argument
|
/third_party/node/deps/v8/src/debug/ |
H A D | liveedit.cc | 945 iterator.is_statement()); in TranslateSourcePositionTable()
|
H A D | debug.cc | 275 if (source_position_iterator_.is_statement()) { in Next() 306 } else if (source_position_iterator_.is_statement()) { in GetDebugBreakType()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-debug.cc | 71 while (!it.is_statement()) it.Advance(); in FindNewPC()
|
H A D | wasm-code-manager.cc | 433 << (it.is_statement() ? " statement" : "") << "\n"; in Disassemble()
|
/third_party/node/deps/v8/src/logging/ |
H A D | log.cc | 1533 if (iter.is_statement()) { in CodeLinePosEvent()
|