Searched refs:isAliveAfter (Results 1 – 6 of 6) sorted by relevance
/external/proguard/src/proguard/optimize/evaluation/ |
D | LivenessAnalyzer.java | 54 private long[] isAliveAfter = new long[ClassConstants.TYPICAL_CODE_LENGTH]; field in LivenessAnalyzer 126 public boolean isAliveAfter(int instructionOffset, int variableIndex) in isAliveAfter() method in LivenessAnalyzer 129 (isAliveAfter[instructionOffset] & (1L << variableIndex)) != 0; in isAliveAfter() 143 isAliveAfter[instructionOffset] |= 1L << variableIndex; in setAliveAfter() 147 isAliveAfter[instructionOffset] &= ~(1L << variableIndex); in setAliveAfter() 236 alive |= isAliveAfter[offset]; in visitCodeAttribute() 239 isAliveAfter[offset] = alive; in visitCodeAttribute() 287 if (isAliveAfter(offset, variableIndex)) in visitCodeAttribute() 312 long aliveAfter = isAliveAfter[offset]; in visitCodeAttribute() 367 isAliveAfter[offset] |= livenessMask; [all …]
|
D | VariableOptimizer.java | 273 (livenessAnalyzer.isAliveAfter(offset, variableIndex1) && in areNonOverlapping() 274 livenessAnalyzer.isAliveAfter(offset, variableIndex2)) || in areNonOverlapping() 306 if (livenessAnalyzer.isAliveAfter(offset, oldVariableIndex)) in updateLiveness()
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | StackLifetime.h | 158 bool isAliveAfter(const AllocaInst *AI, const Instruction *I) const;
|
/external/llvm-project/llvm/lib/Analysis/ |
D | StackLifetime.cpp | 50 bool StackLifetime::isAliveAfter(const AllocaInst *AI, in isAliveAfter() function in StackLifetime 376 if (SL.isAliveAfter(KV.getFirst(), Instr)) in printInfoComment()
|
D | StackSafetyAnalysis.cpp | 349 if (AI && !SL.isAliveAfter(AI, I)) { in analyzeAllUses() 367 if (AI && !SL.isAliveAfter(AI, I)) { in analyzeAllUses() 388 if (AI && !SL.isAliveAfter(AI, I)) { in analyzeAllUses()
|
/external/proguard/lib/ |
D | proguard.jar | META-INF/
META-INF/MANIFEST.MF
proguard/
proguard/FileWordReader.class
FileWordReader ... |