HomeSort by relevance Sort by last modified time
    Searched defs:successors (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/dexmaker/src/main/java/com/google/dexmaker/
Label.java 77 IntList successors = new IntList(); local
79 successors.add(catchLabel.id);
83 successors.add(primarySuccessorIndex);
86 successors.add(alternateSuccessor.id);
88 successors.setImmutable();
90 return new BasicBlock(id, result, successors, primarySuccessorIndex);
  /art/compiler/sea_ir/debug/
dot_gen.cc 139 std::vector<Region*>* successors = region->GetSuccessors(); local
140 for (std::vector<Region*>::const_iterator cit = successors->begin(); cit != successors->end();
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
BasicBlock.java 35 * {@code non-null;} full list of successors that this block may
38 private final IntList successors; field in class:BasicBlock
42 * {@code -1} if this block has no successors (that is, it
52 * @param successors {@code non-null;} full list of successors that this
56 * successors (that is, it exits the function/method or is an
59 public BasicBlock(int label, InsnList insns, IntList successors,
94 successors.throwIfMutable();
97 throw new NullPointerException("successors == null");
104 if (primarySuccessor >= 0 && !successors.contains(primarySuccessor))
    [all...]
RopMethod.java 158 * For each block, find its successors, and add the block's label to
164 IntList successors = one.getSuccessors(); local
165 int ssz = successors.size();
171 int succLabel = successors.get(j);
BasicBlockList.java 224 * the preferred successor. If the block has no successors, then
232 IntList successors = block.getSuccessors(); local
233 int succSize = successors.size();
240 return labelToBlock(successors.get(0));
247 return labelToBlock(successors.get(0));
257 * @return {@code true} if the two blocks' non-primary successors
LocalVariableExtractor.java 177 IntList successors = block.getSuccessors(); local
178 int succSz = successors.size();
182 int succ = successors.get(i);
  /dalvik/dx/src/com/android/dx/rop/code/
BasicBlock.java 35 * {@code non-null;} full list of successors that this block may
38 private final IntList successors; field in class:BasicBlock
42 * {@code -1} if this block has no successors (that is, it
52 * @param successors {@code non-null;} full list of successors that this
56 * successors (that is, it exits the function/method or is an
59 public BasicBlock(int label, InsnList insns, IntList successors,
94 successors.throwIfMutable();
97 throw new NullPointerException("successors == null");
104 if (primarySuccessor >= 0 && !successors.contains(primarySuccessor))
    [all...]
RopMethod.java 157 * For each block, find its successors, and add the block's label to
163 IntList successors = one.getSuccessors(); local
164 int ssz = successors.size();
170 int succLabel = successors.get(j);
BasicBlockList.java 223 * the preferred successor. If the block has no successors, then
231 IntList successors = block.getSuccessors(); local
232 int succSize = successors.size();
239 return labelToBlock(successors.get(0));
246 return labelToBlock(successors.get(0));
256 * @return {@code true} if the two blocks' non-primary successors
LocalVariableExtractor.java 177 IntList successors = block.getSuccessors(); local
178 int succSz = successors.size();
182 int succ = successors.get(i);
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
BasicBlock.java 35 * {@code non-null;} full list of successors that this block may
38 private final IntList successors; field in class:BasicBlock
42 * {@code -1} if this block has no successors (that is, it
52 * @param successors {@code non-null;} full list of successors that this
56 * successors (that is, it exits the function/method or is an
59 public BasicBlock(int label, InsnList insns, IntList successors,
94 successors.throwIfMutable();
97 throw new NullPointerException("successors == null");
104 if (primarySuccessor >= 0 && !successors.contains(primarySuccessor))
    [all...]
RopMethod.java 158 * For each block, find its successors, and add the block's label to
164 IntList successors = one.getSuccessors(); local
165 int ssz = successors.size();
171 int succLabel = successors.get(j);
  /art/compiler/optimizing/
pretty_printer.h 83 const GrowableArray<HBasicBlock*>& successors = block->GetSuccessors(); local
84 if (!successors.IsEmpty()) {
86 for (size_t i = 0; i < successors.Size() - 1; i++) {
87 PrintInt(successors.Get(i)->GetBlockId());
90 PrintInt(successors.Peek()->GetBlockId());
  /dalvik/dexgen/src/com/android/dexgen/rop/
ByteBlock.java 36 /** {@code non-null;} list of successors that this block may branch to */
37 private final IntList successors; field in class:ByteBlock
50 * @param successors {@code non-null;} list of successors that this block may
55 public ByteBlock(int label, int start, int end, IntList successors,
69 if (successors == null) {
73 int sz = successors.size();
75 if (successors.get(i) < 0) {
76 throw new IllegalArgumentException("successors[" + i +
78 successors.get(i))
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
ByteBlock.java 36 /** {@code non-null;} list of successors that this block may branch to */
37 private final IntList successors; field in class:ByteBlock
50 * @param successors {@code non-null;} list of successors that this block may
55 public ByteBlock(int label, int start, int end, IntList successors,
69 if (successors == null) {
73 int sz = successors.size();
75 if (successors.get(i) < 0) {
76 throw new IllegalArgumentException("successors[" + i +
78 successors.get(i))
    [all...]
  /art/compiler/dex/
mir_graph_test.cc 30 BasicBlockId successors[kMaxPredecessors]; member in struct:art::TopologicalSortOrderTest::BBDef
72 bb->fall_through = (def->num_successors >= 1) ? def->successors[0] : 0u;
73 bb->taken = (def->num_successors >= 2) ? def->successors[1] : 0u;
mir_optimization_test.cc 41 BasicBlockId successors[kMaxPredecessors]; member in struct:art::ClassInitCheckEliminationTest::BBDef
115 bb->fall_through = (def->num_successors >= 1) ? def->successors[0] : 0u;
116 bb->taken = (def->num_successors >= 2) ? def->successors[1] : 0u;
  /dalvik/dx/src/com/android/dx/command/dump/
DotDumper.java 138 IntList successors = bb.getSuccessors(); local
140 if (successors.size() == 0) {
142 } else if (successors.size() == 1) {
144 + Hex.u2(successors.get(0)) + ";");
147 for (int j = 0; j < successors.size(); j++ ) {
148 int successor = successors.get(j);
  /dalvik/dx/src/com/android/dx/ssa/
LocalVariableExtractor.java 109 // The exit block has no insns and no successors
193 IntList successors = block.getSuccessorList(); local
194 int succSz = successors.size();
198 int succ = successors.get(i);
SsaConverter.java 141 * successors and multiple predecessors.
167 * Any block with that has both multiple successors and multiple
241 // Successors list is modified in loop below.
242 BitSet successors = (BitSet)block.getSuccessors().clone(); local
243 for (int j = successors.nextSetBit(0);
244 j >= 0; j = successors.nextSetBit(j+1)) {
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
LocalVariableExtractor.java 110 // The exit block has no insns and no successors
194 IntList successors = block.getSuccessorList(); local
195 int succSz = successors.size();
199 int succ = successors.get(i);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
AnalyzedInstruction.java 61 protected final LinkedList<AnalyzedInstruction> successors = new LinkedList<AnalyzedInstruction>(); field in class:AnalyzedInstruction
109 successors.add(successor);
123 return successors.size();
127 return Collections.unmodifiableList(successors);
  /art/compiler/sea_ir/code_gen/
code_gen.cc 155 std::vector<Region*>* successors = instruction->GetRegion()->GetSuccessors(); local
156 DCHECK_GT(successors->size(), 0u);
157 llvm::BasicBlock* then_block = llvm_data_->GetBlock(successors->at(0));
158 llvm::BasicBlock* else_block = llvm_data_->GetBlock(successors->at(1));
249 std::vector<Region*>* successors = instruction->GetRegion()->GetSuccessors(); local
250 DCHECK_GT(successors->size(), 0u);
251 llvm::BasicBlock* then_block = llvm_data_->GetBlock(successors->at(0));
252 llvm::BasicBlock* else_block = llvm_data_->GetBlock(successors->at(1));
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
StdCatchBuilder.java 218 IntList successors = block.getSuccessors(); local
219 int succSize = successors.size();
231 || (primary != successors.get(catchSize))))) {
234 * successor -- if any -- last in the successors list, but
238 "shouldn't happen: weird successors list");
257 CodeAddress oneHandler = addresses.getStart(successors.get(i));
  /dalvik/dx/src/com/android/dx/dex/code/
StdCatchBuilder.java 217 IntList successors = block.getSuccessors(); local
218 int succSize = successors.size();
230 || (primary != successors.get(catchSize))))) {
233 * successor -- if any -- last in the successors list, but
237 "shouldn't happen: weird successors list");
256 CodeAddress oneHandler = addresses.getStart(successors.get(i));

Completed in 929 milliseconds

1 2 3