Searched defs:changed (Results 1 - 10 of 10) sorted by relevance

/art/runtime/base/
H A Dbit_vector_test.cc152 bool changed = first.UnionIfNotIn(&second, &third); local
154 EXPECT_FALSE(changed);
163 bool changed = first.UnionIfNotIn(&second, &third); local
165 EXPECT_TRUE(changed);
H A Dbit_vector.cc141 bool changed = false; local
145 return changed;
153 changed = true;
165 changed = true;
169 return changed;
175 bool changed = false; local
179 return changed;
201 changed = true;
210 changed = true;
214 return changed;
[all...]
/art/compiler/optimizing/
H A Dssa_liveness_analysis.cc278 bool changed; local
280 changed = false;
289 changed = true;
292 } while (changed);
297 bool changed = false; local
302 changed = true;
305 return changed;
/art/runtime/verifier/
H A Dregister_line.cc99 size_t changed = 0; local
103 changed++;
120 DCHECK_GT(changed, 0u);
373 bool changed = false; local
380 changed = changed || !cur_type.Equals(new_type);
407 changed = true;
409 return changed;
H A Dmethod_verifier.cc1468 /* Begin by marking the first instruction as "changed". */
1472 /* Continue until no instructions are marked "changed". */
1495 // "changed" flags, we need to load the set of registers from the table.
1497 // situation where we have a stray "changed" flag set on an instruction that isn't a branch
1525 /* Clear "changed" and mark as visited. */
2970 /* update branch target, set "changed" if appropriate */
3116 // Merge registers into what we have for the next instruction, and set the "changed" flag if
3125 * prior state was. We have to assume that something has changed and re-evaluate it.
3267 // a class has changed, and will be flagged as an error in later checks.
4250 bool changed local
[all...]
/art/compiler/dex/
H A Dtype_inference.cc100 bool changed = MergeNonArrayFlags(src_type); local
106 changed = true;
108 changed |= MergeBits(src_type, kMaskArrayWideAndType);
118 changed = true;
121 changed |= MergeArrayConflict(src_type);
124 return changed;
128 bool changed = MergeNonArrayFlags(src_type); local
135 changed |= MergeBits(src_type, kMaskArrayWideAndType);
144 changed |= MergeBits(ObjectArrayType(), kMaskArrayWideAndType);
147 changed |
286 bool changed = false; local
414 bool changed = false; local
1065 bool changed = sregs_[mod_s_reg].MergeStrong(low_word_type); local
[all...]
H A Dtype_inference_test.cc481 bool changed = false; local
482 for (BasicBlock* bb = iter.Next(changed); bb != nullptr; bb = iter.Next(changed)) {
483 changed = type_inference_->Apply(bb);
H A Dmir_optimization.cc531 // We have changed the graph structure.
1328 bool changed = false; local
1332 changed = classes_to_check->GetHighestBitSet() != -1;
1338 changed = true;
1342 return changed;
/art/runtime/gc/allocator/
H A Drosalloc.cc938 bool changed = false; local
950 changed = true;
968 // free bit map and at least a bit in the alloc bit map changed.
969 return changed;
2138 // Check the page map size which might have changed due to grow/shrink.
/art/compiler/utils/arm/
H A Dassembler_thumb2.cc2241 // A branch has changed size. Make a hole for it.
2257 bool changed = branch->Resolve(bound_pc); // Branch can be resolved now. local
2260 if (changed) {
2264 // A cbz/cbnz instruction has changed size. There is no valid encoding for
2283 changed = branch->Resolve(bound_pc);
2284 if (changed) {
2296 // Now relocate any changed branches. Do this until there are no more changes.
2302 bool changed = branch->Relocate(changed_branch->GetLocation(), 2); local
2303 if (changed) {

Completed in 299 milliseconds