Home
last modified time | relevance | path

Searched refs:InstructionSize (Results 1 – 17 of 17) sorted by relevance

/third_party/node/deps/v8/src/profiler/
Dprofiler-listener.cc53 rec->instruction_size = code->InstructionSize(); in CodeCreateEvent()
68 rec->instruction_size = code->InstructionSize(); in CodeCreateEvent()
87 rec->instruction_size = code->InstructionSize(); in CodeCreateEvent()
227 rec->instruction_size = abstract_code->InstructionSize(); in CodeCreateEvent()
292 rec->instruction_size = code->InstructionSize(); in RegExpCodeCreateEvent()
Dcpu-profiler.cc417 rec->instruction_size = code.InstructionSize(); in LogBuiltins()
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/truetype/
Dglyph_table.h90 virtual int32_t InstructionSize() = 0;
198 virtual int32_t InstructionSize();
270 virtual int32_t InstructionSize();
Dglyph_table.cc346 int32_t GlyphTable::SimpleGlyph::InstructionSize() { in InstructionSize() function in sfntly::GlyphTable::SimpleGlyph
354 data_->Slice(instructions_offset_, InstructionSize())); in Instructions()
540 int32_t GlyphTable::CompositeGlyph::InstructionSize() { in InstructionSize() function in sfntly::GlyphTable::CompositeGlyph
546 data_->Slice(instructions_offset_, InstructionSize())); in Instructions()
/third_party/node/deps/v8/src/heap/
Dcode-stats.cc219 DCHECK(0 <= prev_pc_offset && prev_pc_offset <= code.InstructionSize()); in CollectCodeCommentStatistics()
220 delta += static_cast<int>(code.InstructionSize() - prev_pc_offset); in CollectCodeCommentStatistics()
/third_party/node/deps/v8/src/logging/
Dlog.cc372 code->InstructionSize(), name, length); in LogRecordedBuffer()
428 code_event.code_size = static_cast<size_t>(code->InstructionSize()); in CodeCreateEvent()
448 code_event.code_size = static_cast<size_t>(code->InstructionSize()); in CodeCreateEvent()
468 code_event.code_size = static_cast<size_t>(code->InstructionSize()); in CodeCreateEvent()
492 code_event.code_size = static_cast<size_t>(code->InstructionSize()); in CodeCreateEvent()
516 code_event.code_size = static_cast<size_t>(code->InstructionSize()); in RegExpCodeCreateEvent()
533 code_event.code_size = static_cast<size_t>(to.InstructionSize()); in CodeMoveEvent()
653 event.code_size = code->InstructionSize(); in LogRecordedBuffer()
657 code->InstructionSize()); in LogRecordedBuffer()
733 event.code_len = code->InstructionSize(); in LogRecordedBuffer()
[all …]
/third_party/node/deps/v8/src/codegen/
Dcode-reference.cc26 int instruction_size() const { return code->InstructionSize(); } in instruction_size()
/third_party/node/deps/v8/src/objects/
Dcode-inl.h58 int AbstractCode::InstructionSize() { in InstructionSize() function
60 return GetCode().InstructionSize(); in InstructionSize()
385 int Code::InstructionSize() const { in InstructionSize() function
430 DCHECK_LE(offset, InstructionSize()); in GetOffsetFromInstructionStart()
Dcode.h320 inline int InstructionSize() const;
821 inline int InstructionSize();
Dcode.cc517 int code_size = InstructionSize(); in Disassemble()
/third_party/node/deps/v8/src/diagnostics/
Dperf-jit.cc247 WriteJitCodeLoadEntry(code_pointer, code->InstructionSize(), code_name, in LogRecordedBuffer()
Dobjects-debug.cc1103 CHECK(IsAligned(InstructionSize(), in CodeVerify()
/third_party/node/deps/v8/src/builtins/
Dbuiltins.cc278 code.InstructionSize()); in PrintBuiltinSize()
/third_party/node/deps/v8/src/diagnostics/riscv64/
Ddisasm-riscv64.cc2877 return instr->InstructionSize(); in InstructionDecode()
/third_party/node/deps/v8/src/codegen/riscv64/
Dconstants-riscv64.h1385 inline uint8_t InstructionSize() const { in InstructionSize() function
/third_party/node/deps/v8/src/execution/riscv64/
Dsimulator-riscv64.cc6958 reinterpret_cast<int64_t>(instr) + instr->InstructionSize()); in InstructionDecode()
/third_party/node/deps/v8/src/api/
Dapi.cc9351 pair.second->code.length_in_bytes = js_entry.InstructionSize(); in GetJSEntryStubs()