Searched refs:index2 (Results 1 - 7 of 7) sorted by relevance

/art/test/573-checker-checkcast-regression/src/
H A DMain.java25 // This test method uses two integers (`index1` and `index2`) to
42 static public int test(Object new_array, int index1, int index2) { argument
45 Integer integer2 = (Integer) objectArray[index2];
/art/compiler/optimizing/
H A Dselect_generator.cc55 // with different inputs at `index1` and `index2`. Otherwise returns that phi.
56 static HPhi* GetSingleChangedPhi(HBasicBlock* block, size_t index1, size_t index2) { argument
57 DCHECK_NE(index1, index2);
62 if (phi->InputAt(index1) != phi->InputAt(index2)) {
H A Dload_store_elimination.cc261 // Returns true if heap_locations_[index1] and heap_locations_[index2] may alias.
262 bool MayAlias(size_t index1, size_t index2) const {
263 if (index1 < index2) {
264 return aliasing_matrix_.IsBitSet(AliasingMatrixPosition(index1, index2));
265 } else if (index1 > index2) {
266 return aliasing_matrix_.IsBitSet(AliasingMatrixPosition(index2, index1));
268 DCHECK(false) << "index1 and index2 are expected to be different";
318 // `index1` and `index2` are indices in the array of collected heap locations.
321 size_t AliasingMatrixPosition(size_t index1, size_t index2) const {
322 DCHECK(index2 > index
329 CheckedAliasingMatrixPosition(size_t index1, size_t index2, size_t position) argument
[all...]
H A Dcode_generator_mips.h143 void Exchange(int index1, int index2, bool double_slot);
H A Dcode_generator_mips64.h143 void Exchange(int index1, int index2, bool double_slot);
H A Dcode_generator_mips64.cc486 void ParallelMoveResolverMIPS64::Exchange(int index1, int index2, bool double_slot) { argument
502 index2 + stack_offset);
506 index2 + stack_offset);
H A Dcode_generator_mips.cc642 void ParallelMoveResolverMIPS::Exchange(int index1, int index2, bool double_slot) { argument
657 index2 + stack_offset);
661 index2 + stack_offset);

Completed in 161 milliseconds