Searched defs:prev (Results 1 - 9 of 9) sorted by relevance

/art/compiler/utils/
H A Dswap_space.cc175 auto prev = it; local
176 --prev;
177 CHECK_LE(prev->End(), chunk.Start());
178 if (prev->End() == chunk.Start()) {
179 // Merge *prev with this chunk.
180 chunk.size += prev->size;
181 chunk.ptr -= prev->size;
182 auto erase_pos = free_by_size_.find(FreeBySizeEntry { prev->size, prev });
185 // "prev" i
[all...]
/art/runtime/jdwp/
H A Djdwp_event.h92 JdwpEvent* prev; /* linked list */ member in struct:art::JDWP::JdwpEvent
/art/runtime/
H A Dreference_table.cc215 mirror::Object* prev = nullptr; local
218 if (prev != nullptr) {
219 const size_t element_count = GetElementCount(prev);
220 if (current == prev) {
223 } else if (current->GetClass() == prev->GetClass() &&
229 DumpSummaryLine(os, prev, element_count, identical, equiv);
234 prev = current;
237 DumpSummaryLine(os, prev, GetElementCount(prev), identical, equiv);
H A Ddex_file_verifier.cc1579 const DexFile::ProtoId* prev = reinterpret_cast<const DexFile::ProtoId*>(previous_item_); local
1580 if (UNLIKELY(prev->return_type_idx_ > item->return_type_idx_)) {
1583 } else if (prev->return_type_idx_ == item->return_type_idx_) {
1585 DexFileParameterIterator prev_it(*dex_file_, *prev);
/art/compiler/dex/
H A Dmir_optimization.cc775 BasicBlock* prev = GetBasicBlock(walker->predecessors[0]); local
778 if (prev->visited) {
781 prev->visited = true;
783 if (prev->conditional_branch) {
784 if (GetBasicBlock(prev->fall_through) == walker) {
788 DCHECK_EQ(walker, GetBasicBlock(prev->taken));
790 Instruction::Code opcode = prev->last_mir_insn->dalvikInsn.opcode;
806 prev->last_mir_insn->dalvikInsn.opcode = opcode;
807 BasicBlockId t_bb = prev->taken;
808 prev
[all...]
H A Dmir_graph.cc188 MIR* prev = nullptr; // Will be set to instruction before split. local
191 prev = insn;
199 // Similarly, prev will be the last instruction of the "top" block
253 orig_block->last_mir_insn = prev;
254 prev->next = nullptr;
/art/compiler/utils/mips64/
H A Dassembler_mips64.cc806 int32_t prev = (auipc << 16) | (jic & 0xFFFF); local
821 label->position_ = prev;
842 uint32_t prev = label->position_; local
843 Auipc(AT, prev >> 16);
844 Jic(AT, prev);
865 uint32_t prev = label->position_; local
866 Auipc(indirect_reg, prev >> 16);
867 Daddiu(indirect_reg, indirect_reg, prev);
/art/compiler/utils/arm/
H A Dassembler_thumb2.cc1347 uint16_t Thumb2Assembler::EmitCompareAndBranch(Register rn, uint16_t prev, bool n) { argument
1351 Emit16(prev); // Previous link.
/art/compiler/dex/quick/
H A Dmir_to_lir.h172 LIR* prev; member in struct:art::LIR
191 #define PREV_LIR(lir) (lir->prev)

Completed in 1910 milliseconds