HomeSort by relevance Sort by last modified time
    Searched refs:getBlocks (Results 1 - 25 of 207) sorted by null

1 2 3 4 5 6 7 8 9

  /dalvik/dx/src/com/android/dx/dex/cf/
CodeStatistics.java 115 = nonOptRmeth.getBlocks().getEffectiveInstructionCount();
116 int oldCountRegs = nonOptRmeth.getBlocks().getRegCount();
121 + rmeth.getBlocks().getEffectiveInstructionCount()
123 + "/" + rmeth.getBlocks().getRegCount());
127 = rmeth.getBlocks().getEffectiveInstructionCount();
133 += (rmeth.getBlocks().getRegCount() - oldCountRegs);
OptimizerOptions.java 138 = rmeth.getBlocks().getEffectiveInstructionCount();
140 = skipRopMethod.getBlocks().getEffectiveInstructionCount();
145 rmeth.getBlocks().getRegCount(),
146 skipRopMethod.getBlocks().getRegCount(),
147 100.0 * ((skipRopMethod.getBlocks().getRegCount()
148 - rmeth.getBlocks().getRegCount())
149 / (float) skipRopMethod.getBlocks().getRegCount()),
  /external/llvm/include/llvm/CodeGen/
EdgeBundles.h 48 /// getBlocks - Return an array of blocks that are connected to Bundle.
49 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
EdgeBundles.h 48 /// getBlocks - Return an array of blocks that are connected to Bundle.
49 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; }
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/
EdgeBundles.h 48 /// getBlocks - Return an array of blocks that are connected to Bundle.
49 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; }
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/CodeGen/
EdgeBundles.h 48 /// getBlocks - Return an array of blocks that are connected to Bundle.
49 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; }
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/CodeGen/
EdgeBundles.h 48 /// getBlocks - Return an array of blocks that are connected to Bundle.
49 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; }
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/CodeGen/
EdgeBundles.h 48 /// getBlocks - Return an array of blocks that are connected to Bundle.
49 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; }
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/CodeGen/
EdgeBundles.h 48 /// getBlocks - Return an array of blocks that are connected to Bundle.
49 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; }
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/CodeGen/
EdgeBundles.h 48 /// getBlocks - Return an array of blocks that are connected to Bundle.
49 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; }
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
EdgeBundles.h 48 /// getBlocks - Return an array of blocks that are connected to Bundle.
49 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; }
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/CodeGen/
EdgeBundles.h 48 /// getBlocks - Return an array of blocks that are connected to Bundle.
49 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; }
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/CodeGen/
EdgeBundles.h 48 /// getBlocks - Return an array of blocks that are connected to Bundle.
49 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; }
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/CodeGen/
EdgeBundles.h 48 /// getBlocks - Return an array of blocks that are connected to Bundle.
49 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; }
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/CodeGen/
EdgeBundles.h 48 /// getBlocks - Return an array of blocks that are connected to Bundle.
49 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; }
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/CodeGen/
EdgeBundles.h 48 /// getBlocks - Return an array of blocks that are connected to Bundle.
49 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; }
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/CodeGen/
EdgeBundles.h 48 /// getBlocks - Return an array of blocks that are connected to Bundle.
49 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; }
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
EdgeBundles.h 47 /// getBlocks - Return an array of blocks that are connected to Bundle.
48 ArrayRef<unsigned> getBlocks(unsigned Bundle) { return Blocks[Bundle]; }
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
BlockAddresses.java 50 BasicBlockList blocks = method.getBlocks();
127 BasicBlockList blocks = method.getBlocks();
StdCatchBuilder.java 81 BasicBlockList blocks = method.getBlocks();
98 BasicBlockList blocks = method.getBlocks();
125 BasicBlockList blocks = method.getBlocks();
  /dalvik/dx/src/com/android/dx/dex/code/
BlockAddresses.java 50 BasicBlockList blocks = method.getBlocks();
127 BasicBlockList blocks = method.getBlocks();
StdCatchBuilder.java 82 BasicBlockList blocks = method.getBlocks();
100 BasicBlockList blocks = method.getBlocks();
127 BasicBlockList blocks = method.getBlocks();
  /dalvik/dx/src/com/android/dx/ssa/
SsaConverter.java 146 ArrayList<SsaBasicBlock> blocks = result.getBlocks();
187 ArrayList<SsaBasicBlock> blocks = ssaMeth.getBlocks();
232 ArrayList<SsaBasicBlock> blocks = result.getBlocks();
305 ssaBlocks = ssaMeth.getBlocks();
SsaBasicBlock.java 121 this.predecessors = new BitSet(parent.getBlocks().size());
122 this.successors = new BitSet(parent.getBlocks().size());
139 BasicBlockList ropBlocks = rmeth.getBlocks();
378 return parent.getBlocks().get(primarySuccessor);
420 predecessors = new BitSet(parent.getBlocks().size());
427 SsaBasicBlock predBlock = parent.getBlocks().get(i);
508 parent.getBlocks().get(newIndex).predecessors.set(index);
511 parent.getBlocks().get(oldIndex).predecessors.clear(index);
532 parent.getBlocks().get(oldIndex).predecessors.clear(index);
606 succ = parent.getBlocks().get(i)
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
LivenessAnalyzer.java 113 int blocksSz = ssaMeth.getBlocks().size();
186 blockN = ssaMeth.getBlocks().get(nextLiveOutBlock);
261 for (SsaBasicBlock b : ssaMeth.getBlocks()) {

Completed in 670 milliseconds

1 2 3 4 5 6 7 8 9