Home
last modified time | relevance | path

Searched refs:prev (Results 1 – 10 of 10) sorted by relevance

/art/runtime/
Datomic.cc88 int64_t prev; in Write64()
94 : "=&r" (prev), "=&r" (status), "+m"(*addr) in Write64()
118 int64_t prev; in Cas64()
127 : "=&r" (prev), "=&r" (status), "+m"(*addr) in Cas64()
131 return prev == old_value; in Cas64()
Dreference_table.cc215 const mirror::Object* prev = sorted_entries[idx-1]; in Dump() local
217 size_t element_count = GetElementCount(prev); in Dump()
218 if (current == prev) { in Dump()
221 … } else if (current->GetClass() == prev->GetClass() && GetElementCount(current) == element_count) { in Dump()
226 DumpSummaryLine(os, prev, element_count, identical, equiv); in Dump()
Ddex_file_verifier.cc1432 const DexFile::ProtoId* prev = reinterpret_cast<const DexFile::ProtoId*>(previous_item_); in CheckInterProtoIdItem() local
1433 if (prev->return_type_idx_ > item->return_type_idx_) { in CheckInterProtoIdItem()
1436 } else if (prev->return_type_idx_ == item->return_type_idx_) { in CheckInterProtoIdItem()
1438 DexFileParameterIterator prev_it(*dex_file_, *prev); in CheckInterProtoIdItem()
/art/compiler/dex/
Dmir_optimization.cc514 BasicBlock* prev = walker->predecessors->Get(0); in LayoutBlocks() local
515 if (prev->conditional_branch) { in LayoutBlocks()
516 if (prev->fall_through == walker) { in LayoutBlocks()
520 DCHECK_EQ(walker, prev->taken); in LayoutBlocks()
522 Instruction::Code opcode = prev->last_mir_insn->dalvikInsn.opcode; in LayoutBlocks()
538 prev->last_mir_insn->dalvikInsn.opcode = opcode; in LayoutBlocks()
539 BasicBlock* t_bb = prev->taken; in LayoutBlocks()
540 prev->taken = prev->fall_through; in LayoutBlocks()
541 prev->fall_through = t_bb; in LayoutBlocks()
544 walker = prev; in LayoutBlocks()
[all …]
Dmir_graph.cc186 orig_block->last_mir_insn = insn->prev; in SplitBlock()
188 insn->prev->next = NULL; in SplitBlock()
189 insn->prev = NULL; in SplitBlock()
842 mir->prev = mir->next = NULL; in AppendMIR()
845 mir->prev = bb->last_mir_insn; in AppendMIR()
856 mir->prev = mir->next = NULL; in PrependMIR()
858 bb->first_mir_insn->prev = mir; in PrependMIR()
860 mir->prev = NULL; in PrependMIR()
867 new_mir->prev = current_mir; in InsertMIRAfter()
873 new_mir->next->prev = new_mir; in InsertMIRAfter()
Dmir_graph.h240 MIR* prev; member
/art/runtime/jdwp/
Djdwp_event.cc128 …ntf("Event id=0x%4x %p (prev=%p next=%p):", pEvent->requestId, pEvent, pEvent->prev, pEvent->next); in dumpEvent()
147 CHECK(pEvent->prev == NULL); in RegisterEvent()
179 event_list_->prev = pEvent; in RegisterEvent()
196 if (pEvent->prev == NULL) { in UnregisterEvent()
202 pEvent->prev->next = pEvent->next; in UnregisterEvent()
206 pEvent->next->prev = pEvent->prev; in UnregisterEvent()
209 pEvent->prev = NULL; in UnregisterEvent()
295 CHECK(pEvent->prev == NULL); in EventFree()
Djdwp_event.h92 JdwpEvent* prev; /* linked list */ member
/art/compiler/dex/quick/
Dcodegen_util.cc1056 lir->prev = lir->next = NULL; in AppendLIR()
1059 lir->prev = last_lir_insn_; in AppendLIR()
1072 DCHECK(current_lir->prev != NULL); in InsertLIRBefore()
1073 LIR *prev_lir = current_lir->prev; in InsertLIRBefore()
1076 new_lir->prev = prev_lir; in InsertLIRBefore()
1078 current_lir->prev = new_lir; in InsertLIRBefore()
1088 new_lir->prev = current_lir; in InsertLIRAfter()
1091 new_lir->next->prev = new_lir; in InsertLIRAfter()
Dmir_to_lir.h115 LIR* prev; member
140 #define PREV_LIR(lir) (lir->prev)