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

1 2 3 4 5 6 7 8 910

  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Edge.java 66 * The successor block of the basic block from which this edge originates.
68 Label successor; field in class:Edge
Label.java 213 * The successor of this label, in the order they are visited. This linked
219 Label successor; field in class:Label
471 * null it is added to the successor of the RET blocks found in the
488 e.successor = JSR.successors.successor;
501 // calls this method recursively on each successor, except JSR targets
508 e.successor.visitSubroutine(JSR, id, nbSubroutines);
  /external/e2fsprogs/intl/
loadinfo.h 76 struct loaded_l10nfile *successor[1]; member in struct:loaded_l10nfile
99 furthermore its ->successor[] field contains a list of other lookup
  /art/compiler/optimizing/
dead_code_elimination.cc 74 for (HBasicBlock* successor : live_successors) {
76 if (!visited->IsBitSet(successor->GetBlockId())) {
77 visited->SetBit(successor->GetBlockId());
78 worklist.push_back(successor);
143 HBasicBlock* successor = block->GetSingleSuccessor(); local
144 if (successor->IsExitBlock() || successor->GetPredecessors().size() != 1u) {
148 block->MergeWith(successor);
150 // Reiterate on this block in case it can be merged with its new successor.
block_builder.cc 39 // Create the first block for the dex instructions, single successor of the entry block.
329 // the successor is not in the same TryItem.
334 HBasicBlock* successor = try_block->GetSuccessors()[i]; local
336 // If the successor is a try block, all of its predecessors must be
339 if (GetTryItem(successor, try_block_info) != nullptr) {
340 DCHECK_EQ(entry.second, GetTryItem(successor, try_block_info));
346 new (arena_) HTryBoundary(HTryBoundary::BoundaryKind::kExit, successor->GetDexPc());
347 graph_->SplitEdge(try_block, successor)->AddInstruction(try_exit);
graph_checker.cc 154 for (HBasicBlock* successor : block->GetNormalSuccessors()) {
155 if (successor->IsCatchBlock()) {
156 AddError(StringPrintf("Catch block %d is a normal successor of block %d.",
157 successor->GetBlockId(),
161 for (HBasicBlock* successor : block->GetExceptionalSuccessors()) {
162 if (!successor->IsCatchBlock()) {
163 AddError(StringPrintf("Normal block %d is an exceptional successor of block %d.",
164 successor->GetBlockId(),
186 for (HBasicBlock* successor : block->GetNormalSuccessors()) {
187 if (successor->GetPredecessors().size() > 1)
515 HBasicBlock* successor = ret->GetBlock()->GetSingleSuccessor(); local
525 HBasicBlock* successor = ret->GetBlock()->GetSingleSuccessor(); local
    [all...]
bounds_check_elimination.cc 615 // and push the narrowed value range to `successor`.
617 HBasicBlock* successor, ValueRange* range) {
621 AssignRange(successor, instruction, range);
633 AssignRange(successor, instruction, existing_range->Narrow(range));
658 HBasicBlock* successor = nullptr; local
664 successor = instruction->IfTrueSuccessor();
666 successor = instruction->IfTrueSuccessor();
668 successor = instruction->IfFalseSuccessor();
672 successor = instruction->IfFalseSuccessor();
679 if (successor != nullptr)
    [all...]
nodes.cc 77 HBasicBlock* successor = current->GetSuccessors()[successors_visited[current_id]++]; local
78 uint32_t successor_id = successor->GetBlockId();
80 DCHECK(ContainsElement(worklist, successor));
81 successor->AddBackEdge(current);
85 worklist.push_back(successor);
129 // We only need to update the successor, which might be live.
130 for (HBasicBlock* successor : block->GetSuccessors()) {
131 successor->RemovePredecessor(block);
211 static bool UpdateDominatorOfSuccessor(HBasicBlock* block, HBasicBlock* successor) {
212 DCHECK(ContainsElement(block->GetSuccessors(), successor));
250 HBasicBlock* successor = current->GetSuccessors()[successors_visited[current_id]++]; local
420 HBasicBlock* successor = normal_successors[j]; local
1871 HBasicBlock* successor = other->GetSuccessors()[0]; local
1908 HBasicBlock* successor = other->GetSuccessors()[0]; local
1928 HBasicBlock* successor = GetSuccessors()[0]; local
    [all...]
code_generator_arm64.cc 392 SuspendCheckSlowPathARM64(HSuspendCheck* instruction, HBasicBlock* successor)
393 : SlowPathCodeARM64(instruction), successor_(successor) {}
2800 HBasicBlock* successor = try_boundary->GetNormalFlowSuccessor(); local
    [all...]
  /external/v8/src/crankshaft/
hydrogen-environment-liveness.cc 49 // When a value is live in successor A but dead in B, we must
52 HBasicBlock* successor = it.Current(); local
53 int successor_id = successor->block_id();
hydrogen-bch.cc 137 Element* successor = at(current->end()->SuccessorAt(i)); local
139 if (!successor->is_in_loop()) {
140 if (!successor->is_proper_exit()) {
148 if (successor->is_start()) {
lithium-allocator.cc 543 // successor edges.
546 // Process all successor blocks.
548 // Add values live on entry to the successor. Note the successor's
550 HBasicBlock* successor = it.Current(); local
551 BitVector* live_in = live_in_sets_[successor->block_id()];
554 // All phi input operands corresponding to this successor edge are live
556 int index = successor->PredecessorIndexOf(block);
557 const ZoneList<HPhi*>* phis = successor->phis();
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
GLPropertyAccessor.java 46 IGLProperty successor = e.getProperty(root); local
47 if (successor == null) {
51 root = successor;
  /toolchain/binutils/binutils-2.25/intl/
loadinfo.h 84 struct loaded_l10nfile *successor[1]; member in struct:loaded_l10nfile
107 furthermore its ->successor[] field contains a list of other lookup
  /dalvik/dx/src/com/android/dx/command/dump/
DotDumper.java 148 int successor = successors.get(j); local
150 if (successor != bb.getPrimarySuccessor()) {
151 System.out.print(" n" + Hex.u2(successor) + " ");
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
LabelFlowAnalyzer.java 23 * within a class. It calculates the properties "multitarget" and "successor"
45 * <code>true</code> if the current instruction is a potential successor of
48 boolean successor = false; field in class:LabelFlowAnalyzer
72 // the block already is successor of some other code, adding a target
87 successor = opcode != Opcodes.GOTO;
96 if (successor) {
125 successor = false;
148 successor = false;
151 successor = true;
159 successor = true
    [all...]
LabelInfo.java 32 private boolean successor = false; field in class:LabelInfo
56 if (info.target || info.successor) {
64 * Defines that the given label is the possible successor of the previous
72 info.successor = true;
95 * Checks whether this label is the possible successor of the previous
102 * successor
106 return info == null ? false : info.successor;
142 return info != null && info.successor
  /external/guava/guava/src/com/google/common/collect/
TreeMultiset.java 126 successor(header, header); method
255 successor(header, newRoot, header); method
557 successor(this, right, succ);
566 successor(pred, left, this);
783 successor(pred, succ);
937 private static <T> void successor(AvlNode<T> a, AvlNode<T> b) {
942 private static <T> void successor(AvlNode<T> a, AvlNode<T> b, AvlNode<T> c) {
943 successor(a, b);
944 successor(b, c);
979 successor(header, header)
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
TreeMultiset.java 122 successor(header, header); method
251 successor(header, newRoot, header); method
553 successor(this, right, succ);
562 successor(pred, left, this);
779 successor(pred, succ);
933 private static <T> void successor(AvlNode<T> a, AvlNode<T> b) {
938 private static <T> void successor(AvlNode<T> a, AvlNode<T> b, AvlNode<T> c) {
939 successor(a, b);
940 successor(b, c);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
MethodAnalyzer.java 182 for (AnalyzedInstruction successor: startOfMethod.successors) {
183 instructionsToAnalyze.set(successor.instructionIndex);
225 for (AnalyzedInstruction successor: instructionToAnalyze.successors) {
226 instructionsToAnalyze.set(successor.getInstructionIndex());
407 for (AnalyzedInstruction successor: instruction.successors) {
408 if (successor.mergeRegister(registerNumber, postRegisterType, analyzedState, override)) {
409 changedInstructions.set(successor.instructionIndex);
476 //and no reachable code will have an unreachable predessor or successor
530 @Nonnull AnalyzedInstruction successor,
533 addPredecessorSuccessor(predecessor, successor, exceptionHandlers, instructionsToProcess, false)
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
SsaRenamer.java 363 * phis in successor blocks.
624 * Updates the phi insns in successor blocks with operands based
656 SsaBasicBlock successor = ssaMeth.getBlocks().get(i); local
657 successor.forEachPhiInsn(visitor);
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaRenamer.java 364 * phis in successor blocks.
625 * Updates the phi insns in successor blocks with operands based
657 SsaBasicBlock successor = ssaMeth.getBlocks().get(i); local
658 successor.forEachPhiInsn(visitor);
  /external/lzma/C/
Ppmd7.c 279 #define SUCCESSOR(p) ((CPpmd_Void_Ref)((p)->SuccessorLow | ((UInt32)(p)->SuccessorHigh << 16)))
347 CPpmd_Byte_Ref upBranch = (CPpmd_Byte_Ref)SUCCESSOR(p->FoundState);
356 CPpmd_Void_Ref successor; local
365 successor = SUCCESSOR(s);
366 if (successor != upBranch)
368 c = CTX(successor);
425 CPpmd_Void_Ref successor, fSuccessor = SUCCESSOR(p->FoundState); local
472 successor = REF(p->Text);
    [all...]
  /external/opencv3/modules/imgproc/src/
min_enclosing_triangle.cpp 267 static unsigned int successor(unsigned int index, unsigned int nrOfPoints);
475 while (greaterOrEqual(height(successor(b, nrOfPoints), polygon, nrOfPoints, c),
1135 static unsigned int successor(unsigned int index, unsigned int nrOfPoints) { function in namespace:minEnclosingTriangle
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteConnectionPool.java 625 ConnectionWaiter successor = mConnectionWaiterQueue; local
626 while (successor != null) {
627 if (priority > successor.mPriority) {
628 waiter.mNext = successor;
631 predecessor = successor;
632 successor = successor.mNext;
824 final ConnectionWaiter successor = waiter.mNext; local
    [all...]

Completed in 487 milliseconds

1 2 3 4 5 6 7 8 910