Searched refs:index1 (Results 1 - 8 of 8) 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
44 Integer integer1 = (Integer) objectArray[index1];
/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 { argument
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 { argument
322 DCHECK(index2 > index1);
329 CheckedAliasingMatrixPosition(size_t index1, size_t index2, size_t position) argument
336 ComputeMayAlias(size_t index1, size_t index2) const argument
[all...]
H A Dstack_map_test.cc111 size_t index1 = dex_register_map.GetLocationCatalogEntryIndex( local
114 ASSERT_EQ(1u, index1);
116 DexRegisterLocation location1 = location_catalog.GetDexRegisterLocation(index1);
225 size_t index1 = dex_register_map.GetLocationCatalogEntryIndex( local
228 ASSERT_EQ(1u, index1);
230 DexRegisterLocation location1 = location_catalog.GetDexRegisterLocation(index1);
287 size_t index1 = dex_register_map.GetLocationCatalogEntryIndex( local
290 ASSERT_EQ(3u, index1);
292 DexRegisterLocation location1 = location_catalog.GetDexRegisterLocation(index1);
341 size_t index1 local
395 size_t index1 = dex_register_map.GetLocationCatalogEntryIndex( local
472 size_t index1 = dex_register_map.GetLocationCatalogEntryIndex( local
[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
498 index1 + stack_offset);
507 __ StoreToOffset(store_type, TMP, SP, index1 + stack_offset);
H A Dcode_generator_mips.cc642 void ParallelMoveResolverMIPS::Exchange(int index1, int index2, bool double_slot) { argument
653 index1 + stack_offset);
662 __ StoreToOffset(kStoreWord, TMP, SP, index1 + stack_offset);

Completed in 68 milliseconds