/third_party/node/deps/v8/src/logging/ |
H A D | local-logger.cc | 26 void LocalLogger::CodeLinePosInfoRecordEvent(Address code_start, in CodeLinePosInfoRecordEvent() argument 29 logger_->CodeLinePosInfoRecordEvent(code_start, source_position_table, in CodeLinePosInfoRecordEvent()
|
H A D | local-logger.h | 25 void CodeLinePosInfoRecordEvent(Address code_start,
|
H A D | log.cc | 730 event.code_start = reinterpret_cast<void*>(code->InstructionStart()); in LogRecordedBuffer() 752 event.code_start = code->instructions().begin(); in LogRecordedBuffer() 804 event.code_start = reinterpret_cast<void*>(from.InstructionStart()); in CodeMoveEvent() 844 event.code_start = reinterpret_cast<void*>(start_address); in EndCodePosInfoEvent() 1528 void CodeLinePosEvent(JitLogger& jit_logger, Address code_start, in CodeLinePosEvent() argument 1543 jit_logger.EndCodePosInfoEvent(code_start, jit_handler_data, code_type); in CodeLinePosEvent() 1548 void Logger::CodeLinePosInfoRecordEvent(Address code_start, in CodeLinePosInfoRecordEvent() argument 1553 CodeLinePosEvent(*jit_logger_, code_start, iter, code_type); in CodeLinePosInfoRecordEvent() 1558 Address code_start, base::Vector<const byte> source_position_table) { in WasmCodeLinePosInfoRecordEvent() 1561 CodeLinePosEvent(*jit_logger_, code_start, ite in WasmCodeLinePosInfoRecordEvent() 1557 WasmCodeLinePosInfoRecordEvent( Address code_start, base::Vector<const byte> source_position_table) WasmCodeLinePosInfoRecordEvent() argument [all...] |
H A D | log.h | 210 void CodeLinePosInfoRecordEvent(Address code_start, 215 Address code_start, base::Vector<const byte> source_position_table);
|
/third_party/node/src/ |
H A D | node_win32_etw_provider.cc | 106 jevent->code_start, in CodeAddressNotification() 111 NODE_V8SYMBOL_REMOVE(jevent->code_start, nullptr); in CodeAddressNotification() 114 NODE_V8SYMBOL_MOVE(jevent->code_start, jevent->new_code_start); in CodeAddressNotification()
|
/third_party/vixl/examples/aarch64/ |
H A D | custom-disassembler.cc | 151 Label code_start, code_end; in TestCustomDisassembler() local 152 masm.Bind(&code_start); in TestCustomDisassembler() 156 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start); in TestCustomDisassembler()
|
H A D | non-const-visitor.cc | 103 Label code_start, code_end; in main() local 104 masm.Bind(&code_start); in main() 108 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start); in main()
|
H A D | executable-memory.h | 48 ExecutableMemory(const vixl::byte* code_start, size_t size) in ExecutableMemory() argument 57 memcpy(buffer_, code_start, size_); in ExecutableMemory()
|
/third_party/node/deps/v8/src/third_party/vtune/ |
H A D | vtune-jit.cc | 195 jmethod.method_load_address = event->code_start; in event_handler() 212 GetEntries()->find(event->code_start); in event_handler() 233 GetEntries()->erase(event->code_start); in event_handler() 285 GetEntries()->insert(std::pair <void*, void*>(event->code_start, event->user_data)); in event_handler()
|
/third_party/vixl/examples/aarch32/ |
H A D | examples.h | 47 ExecutableMemory(const byte* code_start, size_t size) in ExecutableMemory() argument 56 memcpy(buffer_, code_start, size_); in ExecutableMemory()
|
/third_party/node/deps/v8/src/compiler/backend/ |
H A D | jump-threading.cc | 85 for (int i = block->code_start(); i < block->code_end(); ++i) { in ComputeForwarding() 209 for (int i = block->code_start(); i < block->code_end(); ++i) { in ApplyForwarding()
|
H A D | instruction.cc | 697 os << " instructions: [" << block->code_start() << ", " << block->code_end() 886 return InstructionAt(block->code_start()); 892 int code_start = static_cast<int>(instructions_.size()); 893 current_block_->set_code_start(code_start); 899 CHECK(current_block_->code_start() >= 0 && 900 current_block_->code_start() < end);
|
H A D | frame-elider.cc | 24 for (int i = block->code_start(); i < block->code_end(); ++i) { in MarkBlocks()
|
H A D | register-allocator-verifier.cc | 558 for (int instr_index = block->code_start(); instr_index < block->code_end(); in VerifyGapMoves()
|
H A D | code-generator.cc | 545 for (int i = block->code_start(); i < block->code_end(); ++i) { in AssembleBlock()
|
H A D | instruction.h | 1546 int32_t code_start() const { return code_start_; } in code_start() function in v8::internal::compiler::final
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-serialization.cc | 379 byte* code_start = serialized_code_start; in WriteCode() local 397 code_start = aligned_buffer.get(); in WriteCode() 400 memcpy(code_start, code->instructions().begin(), code_size); in WriteCode() 410 {code_start, code->instructions().size()}, code->reloc_info(), in WriteCode() 411 reinterpret_cast<Address>(code_start) + code->constant_pool_offset(), in WriteCode() 446 if (code_start != serialized_code_start) { in WriteCode() 447 memcpy(serialized_code_start, code_start, code_size); in WriteCode()
|
H A D | wasm-code-manager.cc | 1240 Address code_start = reinterpret_cast<Address>(dst_code_bytes.begin()); in AddCodeWithCodeSpace() local 1241 Address constant_pool_start = code_start + constant_pool_offset; in AddCodeWithCodeSpace()
|
/third_party/vixl/test/aarch64/examples/ |
H A D | test-examples.cc | 566 Label code_start, code_end; in TEST() local 567 masm.Bind(&code_start); in TEST() 571 Instruction* instr_start = masm.GetLabelAddress<Instruction*>(&code_start); in TEST()
|
/third_party/node/deps/v8/src/diagnostics/ |
H A D | system-jit-win.cc | 123 script_context, event->code_start, (uint64_t)event->code_len, in EventHandler()
|
H A D | perf-jit.cc | 376 Address code_start = code->InstructionStart(); in LogWriteDebugInfo() local 388 entry.address_ = code_start + iterator.code_offset() + kElfHeaderSize; in LogWriteDebugInfo()
|
H A D | gdb-jit.cc | 467 void Write(Writer* w, uintptr_t code_start, uintptr_t code_size) { 471 WriteSegmentCommand(w, code_start, code_size); 538 uintptr_t code_start, 547 cmd->vmaddr = code_start; 2049 Address addr = reinterpret_cast<Address>(event->code_start); 2095 PutLineInfo(reinterpret_cast<Address>(event->code_start), line_info);
|
/third_party/node/deps/v8/include/ |
H A D | v8-callbacks.h | 59 // WASM_CODE, |code_start| points to the beginning of jitted assembly code, 60 // while for BYTE_CODE events, |code_start| points to the first bytecode of 68 void* code_start; member
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-callbacks.h | 61 // WASM_CODE, |code_start| points to the beginning of jitted assembly code, 62 // while for BYTE_CODE events, |code_start| points to the first bytecode of 70 void* code_start; member
|
/third_party/node/deps/v8/src/compiler/ |
H A D | graph-visualizer.cc | 607 if (instruction_block->code_start() >= 0) { in PrintSchedule()
|