Home
last modified time | relevance | path

Searched refs:is_statement (Results 1 - 17 of 17) sorted by relevance

/third_party/node/deps/v8/src/codegen/
H A Dsource-position-table.h29 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 Dsource-position-table.cc37 // 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 Dbytecode-source-info.h23 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 Dbytecode-source-info.cc16 char description = info.is_statement() ? 'S' : 'E'; in operator <<()
H A Dbytecode-array-writer.cc213 bool is_statement = false; in SetFunctionEntrySourcePosition() local
215 kFunctionEntryBytecodeOffset, SourcePosition(position), is_statement); in SetFunctionEntrySourcePosition()
230 source_info.is_statement()); in UpdateSourcePositionTable()
H A Dbytecode-array-builder.h536 if (!latest_source_info_.is_statement()) { in SetExpressionPosition()
H A Dbytecode-array-builder.cc140 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 Dgdb-jit.cc878 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 Dcode.cc264 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 Djs-parser-statm.c3090 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 Djs-parser-internal.h741 void parser_parse_class (parser_context_t *context_p, bool is_statement);
H A Djs-parser-expr.c719 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 Dliveedit.cc945 iterator.is_statement()); in TranslateSourcePositionTable()
H A Ddebug.cc275 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 Dwasm-debug.cc71 while (!it.is_statement()) it.Advance(); in FindNewPC()
H A Dwasm-code-manager.cc433 << (it.is_statement() ? " statement" : "") << "\n"; in Disassemble()
/third_party/node/deps/v8/src/logging/
H A Dlog.cc1533 if (iter.is_statement()) { in CodeLinePosEvent()

Completed in 34 milliseconds