/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
SsaConverter.java | 142 * successors and multiple predecessors. 168 * Any block with that has both multiple successors and multiple 242 // Successors list is modified in loop below. 243 BitSet successors = (BitSet)block.getSuccessors().clone(); local 244 for (int j = successors.nextSetBit(0); 245 j >= 0; j = successors.nextSetBit(j+1)) {
|
SsaRenamer.java | 654 BitSet successors = block.getSuccessors(); local 655 for (int i = successors.nextSetBit(0); i >= 0; 656 i = successors.nextSetBit(i + 1)) {
|
SsaBasicBlock.java | 58 private BitSet successors; field in class:SsaBasicBlock 129 this.successors = new BitSet(parent.getBlocks().size()); 162 result.successors 348 * @return {@code non-null;} successors set, indexed by block index 351 return successors; 421 newPred.successors.set(index) ; 456 if (!successors.get(other.index)) { 463 newSucc.successors.set(other.index) ; 477 successors.clear(other.index); 478 successors.set(newSucc.index) [all...] |
/dalvik/dx/src/com/android/dx/command/dump/ |
BlockDumper.java | 243 IntList successors = bb.getSuccessors(); local 244 int ssz = successors.size(); 249 int succ = successors.get(j); 326 IntList successors = bb.getSuccessors(); local 327 int ssz = successors.size(); 333 int succ = successors.get(i);
|
/dalvik/dx/src/com/android/dx/ssa/ |
SsaRenamer.java | 653 BitSet successors = block.getSuccessors(); local 654 for (int i = successors.nextSetBit(0); i >= 0; 655 i = successors.nextSetBit(i + 1)) {
|
SsaBasicBlock.java | 57 private BitSet successors; field in class:SsaBasicBlock 128 this.successors = new BitSet(parent.getBlocks().size()); 161 result.successors 347 * @return {@code non-null;} successors set, indexed by block index 350 return successors; 420 newPred.successors.set(index) ; 455 if (!successors.get(other.index)) { 462 newSucc.successors.set(other.index) ; 476 successors.clear(other.index); 477 successors.set(newSucc.index) [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
Ropper.java | 200 * Generates a list of subroutine successors. Note: successor blocks 203 * before we leave the ropper. Redundent successors will result in 206 * @return all currently known successors 210 IntList successors = new IntList(callerBlocks.size()); local 221 successors.add(subCaller.getSuccessors().get(0)); 224 successors.setImmutable(); 226 return successors; 230 * Merges the specified frame into this subroutine's successors, 532 * successors of this block which are out of the range of 547 * any successors 589 IntList successors = block.getSuccessors(); local 711 IntList successors = block.getSuccessors(); local 1243 IntList successors = bb.getSuccessors(); local 1457 IntList successors; local 1664 IntList successors = next.getSuccessors(); local [all...] |
/art/compiler/sea_ir/ir/ |
sea.cc | 230 // assign branches their control flow successors. 380 const std::vector<Region*>* successors = crt_region->GetSuccessors(); local 381 for (std::vector<Region*>::const_iterator successors_it = successors->begin(); 382 successors_it != successors->end(); successors_it++) { 387 // Rename all successors in the dominators tree.
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
RopTranslator.java | 324 * (aka default) successor (if any). Keep following successors 379 * unordered successors (hopefully the primary), and so 380 * on, until we run out of unordered successors. 415 IntList successors = one.getSuccessors(); local 416 int ssz = successors.size(); 419 int candidate = successors.get(i); 611 IntList successors = block.getSuccessors(); local 613 int succSz = successors.size(); 618 * less than the number of successors and that the last 625 (primarySuccessor != successors.get(casesSz))) [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
RopTranslator.java | 330 * (aka default) successor (if any). Keep following successors 385 * unordered successors (hopefully the primary), and so 386 * on, until we run out of unordered successors. 421 IntList successors = one.getSuccessors(); local 422 int ssz = successors.size(); 425 int candidate = successors.get(i); 617 IntList successors = block.getSuccessors(); local 619 int succSz = successors.size(); 624 * less than the number of successors and that the last 631 (primarySuccessor != successors.get(casesSz))) [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
RopTranslator.java | 331 * (aka default) successor (if any). Keep following successors 386 * unordered successors (hopefully the primary), and so 387 * on, until we run out of unordered successors. 422 IntList successors = one.getSuccessors(); local 423 int ssz = successors.size(); 426 int candidate = successors.get(i); 618 IntList successors = block.getSuccessors(); local 620 int succSz = successors.size(); 625 * less than the number of successors and that the last 632 (primarySuccessor != successors.get(casesSz))) [all...] |
/external/llvm/lib/CodeGen/ |
ShrinkWrapping.cpp | 17 // placed in the loop exit nodes (the successors of loop _exiting_ nodes). 198 /// successors. 203 // AnticOut[MBB] = INTERSECT(AnticIn[S] for S in SUCCESSORS(MBB)) 204 SmallVector<MachineBasicBlock*, 4> successors; local 209 successors.push_back(SUCC); 212 unsigned i = 0, e = successors.size(); 215 MachineBasicBlock* SUCC = successors[i]; 219 SUCC = successors[i]; 291 // anticipated at successors of MBB. 352 /// 3. all CSRs are used in all immediate successors of the entry block 744 SmallVector<MachineBasicBlock*, 4> successors; local [all...] |
/external/chromium_org/v8/src/ |
jsregexp.h | 328 // The successors are a list of sets that contain the same values 331 ZoneList<OutSet*>* successors(Zone* zone) { return successors_; } function in class:v8::internal::OutSet 393 // successors in a zone and caches them. [all...] |
/external/v8/src/ |
jsregexp.h | 355 // The successors are a list of sets that contain the same values 358 ZoneList<OutSet*>* successors() { return successors_; } function in class:v8::internal::OutSet 414 // successors in a zone and caches them. [all...] |
/prebuilts/devtools/tools/lib/ |
lint-checks.jar | |
/prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/22.2.0/ |
lint-checks-22.2.0.jar | |
/prebuilts/sdk/tools/lib/ |
dx.jar | |
/prebuilts/tools/common/asm-tools/ |
asm-debug-all-4.0.jar | |
/prebuilts/tools/common/m2/internal/com/google/code/findbugs/bcel/2.0.1/ |
bcel-2.0.1.jar | |
/external/dexmaker/lib/ |
mockito-core-1.9.1-SNAPSHOT.jar | |
/external/robolectric/lib/test/ |
mockito-core-1.8.5.jar | |
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/ |
compiler.jar | |
/prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/ |
xalan-2.6.0.jar | |