/dalvik/libdex/ |
H A D | DexDataMap.c | 18 * Verification-time map of data section items 34 DexDataMap* map = NULL; local 44 map = malloc(size); 46 if (map == NULL) { 50 map->count = 0; 51 map->max = maxCount; 52 map->offsets = (u4*) (map + 1); 53 map->types = (u2*) (map 61 dexDataMapFree(DexDataMap* map) argument 74 dexDataMapAdd(DexDataMap* map, u4 offset, u2 type) argument 94 dexDataMapGet(DexDataMap* map, u4 offset) argument 125 dexDataMapVerify(DexDataMap* map, u4 offset, u2 type) argument [all...] |
H A D | DexDataMap.h | 18 * Verification-time map of data section items 27 u4 count; /* number of items currently in the map */ 41 void dexDataMapFree(DexDataMap* map); 44 * Add a new element to the map. The offset must be greater than the 47 void dexDataMapAdd(DexDataMap* map, u4 offset, u2 type); 53 int dexDataMapGet(DexDataMap* map, u4 offset); 56 * Verify that there is an entry in the map, mapping the given offset to 60 bool dexDataMapVerify(DexDataMap* map, u4 offset, u2 type); 65 DEX_INLINE bool dexDataMapVerify0Ok(DexDataMap* map, u4 offset, u2 type) { argument 70 return dexDataMapVerify(map, offse [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
H A D | RegisterMapper.java | 41 public abstract RegisterSpec map(RegisterSpec registerSpec); method in class:RegisterMapper 48 public final RegisterSpecList map(RegisterSpecList sources) { method in class:RegisterMapper 53 newSources.set(i, map(sources.get(i)));
|
H A D | BasicRegisterMapper.java | 51 public RegisterSpec map(RegisterSpec registerSpec) { method in class:BasicRegisterMapper
|
H A D | SsaInsn.java | 155 result = mapper.map(result);
|
H A D | MoveParamCombiner.java | 115 public RegisterSpec map(RegisterSpec registerSpec) {
|
H A D | NormalSsaInsn.java | 43 RegisterSpecList newSources = mapper.map(oldSources);
|
H A D | ConstCollector.java | 365 public RegisterSpec map(RegisterSpec registerSpec) {
|
H A D | PhiInsn.java | 247 o.regSpec = mapper.map(old);
|
H A D | SsaRenamer.java | 86 /** map of SSA register number to debug (local var names) or null of n/a */ 339 public RegisterSpec map(RegisterSpec registerSpec) { method in class:SsaRenamer.BlockRenamer.RenamingMapper 567 // Just map as above.
|
H A D | EscapeAnalysis.java | 489 // Create a map for the new registers that will be created 672 public RegisterSpec map(RegisterSpec registerSpec) {
|
/dalvik/dx/src/com/android/dx/dex/file/ |
H A D | DexFile.java | 56 * {@code non-null;} map section. The map needs to be in a section by itself 60 private final MixedItemSection map; field in class:DexFile 121 map = new MixedItemSection("map", this, 4, SortType.NONE); 130 classData, map }; 275 * Gets the map section. 280 * @return {@code non-null;} the map section 283 return map; 413 return map; [all...] |
/dalvik/dexlist/ |
H A D | DexList.c | 200 MemMapping map; local 205 utfr = dexOpenAndMap(fileName, NULL, &map, true); 217 pDexFile = dexFileParse(map.addr, map.length, kDexParseDefault); 234 sysReleaseShmem(&map);
|
/dalvik/vm/analysis/ |
H A D | CodeVerify.h | 118 } map[1]; member in struct:UninitInstanceMap 125 * for ease of use by the register map generator. 152 * Uninitialized instance map, used for tracking the movement of 160 * instruction. For register map generation, we're only interested 281 * Associate a class with an address. Returns the map slot index, or -1 282 * if the address isn't listed in the map (shouldn't happen) or if a 291 * the map index. 297 * the map index.
|
H A D | CodeVerify.c | 361 * Create a new uninitialized instance map. 363 * The map is allocated and populated with address entries. The addresses 384 * Allocate the header and map as a single unit. 391 int size = offsetof(UninitInstanceMap, map) + 392 newInstanceCount * sizeof(uninitMap->map[0]); 400 uninitMap->map[idx++].addr = kUninitThisArgAddr; 410 uninitMap->map[idx++].addr = addr; 421 * Free the map. 431 * Returns the map slot index, or -1 if the address isn't listed in the map [all...] |
/dalvik/dexdump/ |
H A D | DexDump.c | 1507 * Dump a map in the "differential" format. 1545 * Dump register map contents of the current method. 1547 * "*pData" should point to the start of the register map data. Advances 1548 * "*pData" to the start of the next map. 1567 /* no map */ 1568 printf(" (no map)\n"); 1612 * Dump the contents of the register map area. 1748 MemMapping map; local 1755 if (dexOpenAndMap(fileName, gOptions.tempFileName, &map, false) != 0) 1763 pDexFile = dexFileParse(map [all...] |