HomeSort by relevance Sort by last modified time
    Searched refs:code_offset (Results 1 - 25 of 28) sorted by null

1 2

  /art/compiler/
elf_patcher.cc 217 uintptr_t code_offset = quick_code - code_base; local
221 code_offset = oat_header_->GetQuickToInterpreterBridgeOffset();
226 code_offset = oat_header_->GetQuickGenericJniTrampolineOffset();
239 quick_code = PointerToLowMemUInt32(reinterpret_cast<void*>(oat_data_addr + code_offset));
247 } else if (code_offset != 0) {
248 value = PointerToLowMemUInt32(reinterpret_cast<void*>(oat_data_addr + code_offset));
common_compiler_test.cc 148 base -= kPointerSize; // Move backward so that code_offset != 0.
149 uint32_t code_offset = kPointerSize; local
150 return OatFile::OatMethod(base, code_offset);
188 size_t code_offset = compiled_method->AlignCode(size - code_size); local
189 size_t padding = code_offset - (size - code_size);
199 code_ptr = &(*chunk)[code_offset];
oat_writer.cc 382 // to 0-offset and we need to adjust it by code_offset.
383 uint32_t code_offset = quick_code_offset - thumb_offset; local
385 mapping_table_offset += code_offset;
386 DCHECK_LT(mapping_table_offset, code_offset);
389 vmap_table_offset += code_offset;
390 DCHECK_LT(vmap_table_offset, code_offset);
393 gc_map_offset += code_offset;
394 DCHECK_LT(gc_map_offset, code_offset);
    [all...]
  /art/runtime/
dex_file_verifier.h 61 bool CheckClassDataItemMethod(uint32_t idx, uint32_t access_flags, uint32_t code_offset,
oat.h 165 OatMethodOffsets(uint32_t code_offset = 0);
oat.cc 494 OatMethodOffsets::OatMethodOffsets(uint32_t code_offset) : code_offset_(code_offset) {
oat_file.h 153 OatMethod(const byte* base, const uint32_t code_offset);
oat_file.cc 588 const uint32_t code_offset)
590 code_offset_(code_offset) {
dex_file_verifier.cc 468 uint32_t code_offset, bool expect_direct) {
491 if (UNLIKELY(expect_code && (code_offset == 0))) {
495 } else if (UNLIKELY(!expect_code && (code_offset != 0))) {
497 " with access flags %x", code_offset, access_flags);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_code.h 219 uint32_t code_offset; /* US_CODE_OFFSET */ member in struct:r300_fragment_program_code
r300_fragprog_emit.c 524 code->code_offset =
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_code.h 219 uint32_t code_offset; /* US_CODE_OFFSET */ member in struct:r300_fragment_program_code
r300_fragprog_emit.c 524 code->code_offset =
  /art/runtime/mirror/
art_method-inl.h 217 inline void ArtMethod::SetQuickOatCodeOffset(uint32_t code_offset) {
219 SetEntryPointFromQuickCompiledCode(reinterpret_cast<void*>(code_offset));
223 inline void ArtMethod::SetPortableOatCodeOffset(uint32_t code_offset) {
225 SetEntryPointFromPortableCompiledCode(reinterpret_cast<void*>(code_offset));
art_method.h 352 void SetPortableOatCodeOffset(uint32_t code_offset) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
355 void SetQuickOatCodeOffset(uint32_t code_offset) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
  /art/compiler/dex/
mir_graph.h 564 BasicBlock* FindBlock(DexOffset code_offset) {
565 return FindBlock(code_offset, false, false, NULL);
    [all...]
mir_graph.cc 155 BasicBlock* MIRGraph::SplitBlock(DexOffset code_offset,
157 DCHECK_GT(code_offset, orig_block->start_offset);
161 if (insn->offset == code_offset) break;
171 bottom_block->start_offset = code_offset;
266 BasicBlock* MIRGraph::FindBlock(DexOffset code_offset, bool split, bool create,
268 if (code_offset >= cu_->code_item->insns_size_in_code_units_) {
272 int block_id = dex_pc_to_block_map_.Get(code_offset);
275 if ((bb != NULL) && (bb->start_offset == code_offset)) {
287 return SplitBlock(code_offset, bb, bb == *immed_pred_block_p ? immed_pred_block_p : NULL);
293 bb->start_offset = code_offset;
    [all...]
  /external/lldb/source/Plugins/ObjectFile/PECOFF/
ObjectFilePECOFF.h 176 uint32_t code_offset; member in struct:ObjectFilePECOFF::coff_opt_header
ObjectFilePECOFF.cpp 392 m_coff_header_opt.code_offset = m_data.GetU32(offset_ptr);
    [all...]
  /external/chromium_org/v8/src/
debug.cc 1746 int code_offset = pc_offset; local
1809 int code_offset = ComputeCodeOffsetFromPcOffset(*frame_code, old_pc_offset); local
1900 int code_offset = generators[i]->continuation(); local
2013 int code_offset = local
    [all...]
frames.cc 786 int code_offset = static_cast<int>(pc - code->instruction_start()); local
787 PrintF(file, "+%d", code_offset);
    [all...]
  /art/oatdump/
oatdump.cc 351 uint32_t code_offset = oat_method.GetCodeOffset(); local
353 code_offset &= ~0x1;
355 offsets_.insert(code_offset);
490 uint32_t code_offset = oat_method.GetCodeOffset(); local
491 *indent2_os << StringPrintf("code_offset: 0x%08x ", code_offset);
599 uint32_t code_offset = oat_method.GetCodeOffset(); local
600 uint32_t aligned_code_begin = AlignCodeOffset(code_offset);
606 *indent1_os << StringPrintf("(code_offset=0x%08x size_offset=0x%08x size=%u)%s\n",
607 code_offset,
    [all...]
  /art/runtime/verifier/
method_verifier.h 353 bool VerifyInstruction(const Instruction* inst, uint32_t code_offset);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_fs.c 340 OUT_CB_REG(R300_US_CODE_OFFSET, code->code_offset);
  /external/mesa3d/src/gallium/drivers/r300/
r300_fs.c 340 OUT_CB_REG(R300_US_CODE_OFFSET, code->code_offset);

Completed in 852 milliseconds

1 2