/external/v8/src/ |
D | source-position-table.cc | 36 value.code_offset += other.code_offset; in AddAndSetEntry() 44 value.code_offset -= other.code_offset; in SubtractFromEntry() 69 DCHECK_GE(entry.code_offset, 0); in EncodeEntry() 72 entry.is_statement ? entry.code_offset : -entry.code_offset - 1); in EncodeEntry() 101 entry->code_offset = tmp; in DecodeEntry() 104 entry->code_offset = -(tmp + 1); in DecodeEntry() 122 DCHECK_EQ(encoded.code_offset(), raw->code_offset); in CheckTableEquals() 136 void SourcePositionTableBuilder::AddPosition(size_t code_offset, in AddPosition() argument 141 int offset = static_cast<int>(code_offset); in AddPosition()
|
D | source-position-table.h | 25 : code_offset(0), source_position(0), is_statement(false) {} in PositionTableEntry() 27 : code_offset(offset), source_position(source), is_statement(statement) {} in PositionTableEntry() 29 int code_offset; member 41 void AddPosition(size_t code_offset, SourcePosition source_position, 86 int code_offset() const { in code_offset() function 88 return current_.code_offset; in code_offset()
|
D | frames.cc | 780 int code_offset = static_cast<int>(pc() - code->InstructionStart()); in position() local 781 return code->SourcePosition(code_offset); in position() 1106 int code_offset, FILE* file, in PrintFunctionAndOffset() argument 1110 PrintF(file, "+%d", code_offset); in PrintFunctionAndOffset() 1113 int source_pos = code->SourcePosition(code_offset); in PrintFunctionAndOffset() 1143 int code_offset = 0; in PrintTop() local 1146 code_offset = iframe->GetBytecodeOffset(); in PrintTop() 1149 code_offset = static_cast<int>(frame->pc() - code->InstructionStart()); in PrintTop() 1151 PrintFunctionAndOffset(function, function->abstract_code(), code_offset, in PrintTop() 1174 int code_offset) { in CollectFunctionAndOffsetForICStats() argument [all …]
|
D | frames.h | 509 int code_offset, bool is_constructor); 514 int code_offset() const { return code_offset_; } in code_offset() function 558 wasm::WasmCode*, int code_offset, 562 int code_offset() const { return code_offset_; } in code_offset() function 576 int code_offset() const { return byte_offset_; } in code_offset() function 599 int code_offset() const; 772 int code_offset, FILE* file, 780 int code_offset);
|
D | isolate.cc | 428 const int offset = summary.code_offset(); in AppendStandardFrame() 467 summary.code_offset(), flags); in AppendStandardFrame() 736 int code_offset; in NewStackFrameObject() local 741 code_offset = summ.code_offset(); in NewStackFrameObject() 750 int entry = cache->FindEntry(isolate_, code_offset); in NewStackFrameObject() 778 SimpleNumberDictionary::Set(isolate_, cache, code_offset, frame); in NewStackFrameObject() 1498 int code_offset = summary.code_offset(); in Throw() local 1500 int index = table.LookupRange(code_offset, nullptr, &prediction); in Throw() 1743 int code_offset = elements->Offset(i)->value(); in Throw() local 1749 wasm_code, code_offset); in Throw() [all …]
|
D | perf-jit.cc | 373 entry.address_ = code_start + iterator.code_offset() + kElfHeaderSize; in LogWriteDebugInfo()
|
D | log.cc | 1345 msg << "C" << iterator.code_offset() << "O" << pos.ScriptOffset(); in CodeCreateEvent() 1431 jit_handler_data, iter.code_offset(), in CodeLinePosEvent() 1435 jit_logger->AddCodeLinePosInfoEvent(jit_handler_data, iter.code_offset(), in CodeLinePosEvent()
|
/external/u-boot/board/freescale/common/ |
D | sdhc_boot.c | 23 u32 blklen, code_offset, code_len, n; in mmc_get_env_addr() local 38 code_offset = *(u32 *)(tmp_buf + ESDHC_BOOT_IMAGE_ADDR); in mmc_get_env_addr() 54 tmp = (u64)code_offset * blklen; in mmc_get_env_addr() 57 tmp = code_offset + code_len; in mmc_get_env_addr() 70 *env_addr = code_offset + code_len; in mmc_get_env_addr()
|
/external/u-boot/board/gdsys/p1022/ |
D | sdhc_boot.c | 38 u32 blklen, code_offset, code_len, n; in mmc_get_env_addr() local 53 code_offset = *(u32 *)(tmp_buf + ESDHC_BOOT_IMAGE_ADDR); in mmc_get_env_addr() 58 *env_addr = code_offset + code_len; in mmc_get_env_addr()
|
D | controlcenterd-id.c | 396 u32 code_len, code_offset, target_addr, exec_entry; in compute_second_stage_hash() local 409 code_offset = *(u32 *)(buf + ESDHC_BOOT_IMAGE_ADDR_OFS); in compute_second_stage_hash() 418 if (ccdm_mmc_read(mmc, code_offset, load_addr, code_len) < 0) in compute_second_stage_hash() 769 u32 code_len, code_offset; in load_sd_key_program() local 783 code_offset = *(u32 *)(buf + ESDHC_BOOT_IMAGE_ADDR_OFS); in load_sd_key_program() 786 code_offset += code_len; in load_sd_key_program() 788 code_offset += CONFIG_ENV_SIZE; in load_sd_key_program() 790 if (ccdm_mmc_read(mmc, code_offset, buf, 4*3) < 0) in load_sd_key_program() 807 code_offset += 12; in load_sd_key_program() 808 if (ccdm_mmc_read(mmc, code_offset, result->code, header.code_size) in load_sd_key_program() [all …]
|
/external/u-boot/drivers/qe/ |
D | qe.c | 346 const u32 *code = base + be32_to_cpu(ucode->code_offset); in qe_upload_microcode() 484 if (ucode->code_offset) in qe_upload_firmware() 612 if (ucode->code_offset) in u_qe_upload_firmware() 673 if (!ucode->code_offset) in u_qe_firmware_resume() 676 code = (const void *)firmware + be32_to_cpu(ucode->code_offset); in u_qe_firmware_resume()
|
/external/v8/src/objects/ |
D | script.h | 168 static int GetColumnNumber(Handle<Script> script, int code_offset); 170 static int GetLineNumber(Handle<Script> script, int code_offset);
|
/external/v8/src/debug/ |
D | debug.cc | 105 int offset = summary.code_offset(); in FromFrame() 117 int offset = summary.code_offset(); in AllAtCurrentStatement() 154 if (it.code_offset() <= offset && offset - it.code_offset() < distance) { in BreakIndexFromCodeOffset() 156 distance = offset - it.code_offset(); in BreakIndexFromCodeOffset() 178 return it.code_offset() == code_offset_; in HasBreakPoint() 251 interpreter::Bytecodes::FromByte(bytecode_array->get(code_offset())); in GetDebugBreakType() 256 bytecode_array->get(code_offset() + 1)); in GetDebugBreakType() 286 interpreter::BytecodeArrayAccessor(bytecode_array, code_offset()) in SetDebugBreak() 296 bytecode_array->set(code_offset(), original->get(code_offset())); in ClearDebugBreak() 312 handle(bytecode_array, isolate()), code_offset()); in GetBreakLocation() [all …]
|
D | debug.h | 100 int code_offset, int position, int generator_obj_reg_index) in BreakLocation() argument 102 code_offset_(code_offset), in BreakLocation() 144 int code_offset() { return source_position_iterator_.code_offset(); } in code_offset() function
|
D | liveedit.cc | 1014 builder.AddPosition(iterator.code_offset(), position, in TranslateSourcePositionTable()
|
/external/u-boot/drivers/net/fm/ |
D | fm.c | 181 if (be32_to_cpu(ucode->code_offset)) { in fman_upload_firmware() 188 be32_to_cpu(ucode->code_offset); in fman_upload_firmware()
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_code.h | 215 uint32_t code_offset; /* US_CODE_OFFSET */ member
|
D | r300_fragprog_emit.c | 524 code->code_offset = in r300BuildFragmentProgramHwCode()
|
/external/u-boot/include/ |
D | fsl_qe.h | 256 u32 code_offset;/* Offset of the actual microcode */ member
|
/external/v8/src/profiler/ |
D | profiler-listener.cc | 99 line_table->SetPosition(it.code_offset(), line_number); in CodeCreateEvent()
|
/external/mesa3d/src/gallium/drivers/r300/ |
D | r300_fs.c | 327 OUT_CB_REG(R300_US_CODE_OFFSET, code->code_offset); in r300_emit_fs_code_to_buffer()
|
/external/v8/src/runtime/ |
D | runtime-internal.cc | 335 int pos = summary.abstract_code()->SourcePosition(summary.code_offset()); in ComputeLocation()
|
/external/v8/src/ic/ |
D | ic.cc | 130 int code_offset = 0; in TraceIC() local 132 code_offset = InterpretedFrame::GetBytecodeOffset(fp()); in TraceIC() 134 code_offset = static_cast<int>(pc() - function->code()->InstructionStart()); in TraceIC() 137 function, function->abstract_code(), code_offset); in TraceIC()
|
/external/google-breakpad/src/common/dwarf/ |
D | dwarf2reader.cc | 1442 size_t code_offset = opcode & 0x3f; in DoInstruction() local 1443 address_ += code_offset * cie->code_alignment_factor; in DoInstruction()
|
/external/v8/src/wasm/ |
D | wasm-code-manager.cc | 269 os << std::setw(10) << std::hex << it.code_offset() << std::dec in Disassemble()
|