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

/art/compiler/dex/
H A Dvreg_analysis.cc124 bool MIRGraph::InferTypeAndSize(BasicBlock* bb, MIR* mir, bool changed) { argument
144 changed |= SetCore(defs[0]);
147 changed |= SetRef(defs[0]);
163 changed |= SetCore(uses[next]);
166 changed |= SetRef(uses[next]);
182 changed |= SetCore(uses[next]);
185 changed |= SetRef(uses[next]);
201 changed |= SetCore(uses[next]);
204 changed |= SetRef(uses[next]);
224 changed |
[all...]
H A Dmir_optimization.cc1111 bool changed = false; local
1117 changed = classes_to_check->GetHighestBitSet() != -1;
1120 changed = true;
1123 return changed;
/art/compiler/optimizing/
H A Dssa_liveness_analysis.cc256 bool changed; local
258 changed = false;
267 changed = true;
270 } while (changed);
275 bool changed = false; local
280 changed = true;
283 return changed;
/art/runtime/base/
H A Dbit_vector.cc164 bool changed = false; local
168 return changed;
176 changed = true;
189 changed = true;
193 return changed;
199 bool changed = false; local
203 return changed;
211 changed = true;
228 changed = true;
237 changed
[all...]
/art/runtime/verifier/
H A Dregister_line.cc168 size_t changed = 0; local
172 changed++;
175 DCHECK_GT(changed, 0u);
459 bool changed = false; local
466 changed = changed || !cur_type.Equals(new_type);
488 return changed;
H A Dmethod_verifier.cc1310 /* Begin by marking the first instruction as "changed". */
1314 /* Continue until no instructions are marked "changed". */
1334 // "changed" flags, we need to load the set of registers from the table.
1336 // situation where we have a stray "changed" flag set on an instruction that isn't a branch
1364 /* Clear "changed" and mark as visited. */
2743 /* update branch target, set "changed" if appropriate */
2889 // Merge registers into what we have for the next instruction, and set the "changed" flag if
2898 * prior state was. We have to assume that something has changed and re-evaluate it.
3033 // a class has changed, and will be flagged as an error in later checks.
3980 bool changed local
[all...]
/art/compiler/sea_ir/ir/
H A Dsea.cc74 bool changed = true; local
75 while (changed) {
76 changed = false;
118 changed = true;
162 bool changed = true; local
164 while (changed && (iteration < MAX_REACHING_DEF_ITERERATIONS)) {
166 changed = false;
171 changed |= (*regions_it)->UpdateReachingDefs();
174 DCHECK(!changed) << "Reaching definitions computation did not reach a fixed point.";
545 bool changed local
[all...]
/art/runtime/gc/allocator/
H A Drosalloc.cc927 bool changed = false; local
939 changed = true;
957 // free bit map and at least a bit in the alloc bit map changed.
958 return changed;
2109 // Check the page map size which might have changed due to grow/shrink.
/art/compiler/utils/arm/
H A Dassembler_thumb2.cc2076 // A branch has changed size. Make a hole for it.
2092 bool changed = branch->Resolve(bound_pc); // Branch can be resolved now. local
2095 if (changed) {
2099 // A cbz/cbnz instruction has changed size. There is no valid encoding for
2118 changed = branch->Resolve(bound_pc);
2119 if (changed) {
2131 // Now relocate any changed branches. Do this until there are no more changes.
2137 bool changed = branch->Relocate(changed_branch->GetLocation(), 2); local
2138 if (changed) {

Completed in 2269 milliseconds