HomeSort by relevance Sort by last modified time
    Searched refs:tab_rec (Results 1 - 9 of 9) sorted by null

  /art/compiler/dex/quick/mips/
call_mips.cc 69 SwitchTable *tab_rec = local
71 tab_rec->table = table;
72 tab_rec->vaddr = current_dalvik_offset_;
74 tab_rec->targets =
76 switch_tables_.Insert(tab_rec);
102 tab_rec->anchor = base_label;
105 reinterpret_cast<uintptr_t>(tab_rec));
148 SwitchTable *tab_rec = local
150 tab_rec->table = table;
151 tab_rec->vaddr = current_dalvik_offset_
228 FillArrayData *tab_rec = local
    [all...]
assemble_mips.cc 542 SwitchTable *tab_rec = reinterpret_cast<SwitchTable*>(lir->operands[3]); local
543 int offset2 = tab_rec ? tab_rec->offset : lir->target->offset;
569 SwitchTable *tab_rec = reinterpret_cast<SwitchTable*>(lir->operands[3]); local
570 int offset2 = tab_rec ? tab_rec->offset : lir->target->offset;
575 SwitchTable *tab_rec = reinterpret_cast<SwitchTable*>(lir->operands[3]); local
576 int offset2 = tab_rec ? tab_rec->offset : lir->target->offset;
    [all...]
  /art/compiler/dex/quick/x86/
call_x86.cc 76 SwitchTable *tab_rec = local
78 tab_rec->table = table;
79 tab_rec->vaddr = current_dalvik_offset_;
81 tab_rec->targets = static_cast<LIR**>(arena_->Alloc(size * sizeof(LIR*),
83 switch_tables_.Insert(tab_rec);
107 reinterpret_cast<uintptr_t>(tab_rec));
112 tab_rec->anchor = switch_branch;
132 FillArrayData *tab_rec = local
134 tab_rec->table = table;
135 tab_rec->vaddr = current_dalvik_offset_
    [all...]
target_x86.cc 227 SwitchTable *tab_rec = reinterpret_cast<SwitchTable*>(operand); local
228 buf += StringPrintf("0x%08x", tab_rec->offset);
assemble_x86.cc 1092 Mir2Lir::SwitchTable *tab_rec = reinterpret_cast<Mir2Lir::SwitchTable*>(table_or_disp); local
1096 Mir2Lir::FillArrayData *tab_rec = reinterpret_cast<Mir2Lir::FillArrayData*>(base_or_table); local
    [all...]
  /art/compiler/dex/quick/arm/
call_arm.cc 318 SwitchTable *tab_rec = local
320 tab_rec->table = table;
321 tab_rec->vaddr = current_dalvik_offset_;
323 tab_rec->targets = static_cast<LIR**>(arena_->Alloc(size * sizeof(LIR*),
325 switch_tables_.Insert(tab_rec);
340 NewLIR3(kThumb2Adr, rBase, 0, reinterpret_cast<uintptr_t>(tab_rec));
352 tab_rec->anchor = switch_branch;
366 SwitchTable *tab_rec = local
368 tab_rec->table = table;
369 tab_rec->vaddr = current_dalvik_offset_
419 FillArrayData *tab_rec = local
    [all...]
assemble_arm.cc 1222 SwitchTable *tab_rec = reinterpret_cast<SwitchTable*>(lir->operands[2]); local
1254 SwitchTable *tab_rec = reinterpret_cast<SwitchTable*>(lir->operands[3]); local
1262 SwitchTable *tab_rec = reinterpret_cast<SwitchTable*>(lir->operands[3]); local
    [all...]
  /art/compiler/dex/quick/
codegen_util.cc 399 Mir2Lir::SwitchTable* tab_rec = iterator.Next(); local
400 if (tab_rec == NULL) break;
401 AlignBuffer(code_buffer_, tab_rec->offset);
411 bx_offset = tab_rec->anchor->offset + 4;
417 bx_offset = tab_rec->anchor->offset;
424 if (tab_rec->table[0] == Instruction::kSparseSwitchSignature) {
425 const int* keys = reinterpret_cast<const int*>(&(tab_rec->table[2]));
426 for (int elems = 0; elems < tab_rec->table[1]; elems++) {
427 int disp = tab_rec->targets[elems]->offset - bx_offset;
435 tab_rec->targets[elems]->offset - bx_offset)
456 Mir2Lir::FillArrayData *tab_rec = iterator.Next(); local
667 Mir2Lir::SwitchTable *tab_rec = iterator.Next(); local
684 Mir2Lir::FillArrayData *tab_rec = iterator.Next(); local
831 Mir2Lir::SwitchTable *tab_rec = iterator.Next(); local
    [all...]
mir_to_lir.h 297 void MarkPackedCaseLabels(Mir2Lir::SwitchTable *tab_rec);
298 void MarkSparseCaseLabels(Mir2Lir::SwitchTable *tab_rec);
    [all...]

Completed in 126 milliseconds