HomeSort by relevance Sort by last modified time
    Searched defs:Incoming (Results 1 - 12 of 12) sorted by null

  /external/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 101 Value *Incoming = P->getIncomingValue(i);
102 if (isa<Constant>(Incoming)) continue;
104 Value *V = LVI->getConstantOnEdge(Incoming, P->getIncomingBlock(i), BB, P);
106 // Look if the incoming value is a select with a constant but LVI tells us
107 // that the incoming value can never be that constant. In that case replace
108 // the incoming value with the other value of the select. This often allows
111 SelectInst *SI = dyn_cast<SelectInst>(Incoming);
165 /// incoming edges, then it's true universally and we can simplify the compare.
208 /// on that edge. Cases that cannot fire no matter what the incoming edge can
209 /// safely be removed. If a case fires on every incoming edge then the entir
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
StatepointLowering.cpp 110 /// Try to find existing copies of the incoming values in stack slots used for
111 /// statepoint spilling. If we can find a spill slot for the incoming value,
115 static void reservePreviousStackSlotForValue(SDValue Incoming,
118 if (isa<ConstantSDNode>(Incoming) || isa<FrameIndexSDNode>(Incoming)) {
124 SDValue Loc = Builder.StatepointLowering.getLocation(Incoming);
134 if (LoadSDNode *Load = dyn_cast<LoadSDNode>(Incoming)) {
164 Builder.DAG.getTargetFrameIndex(Index, Incoming.getValueType());
166 Builder.StatepointLowering.setLocation(Incoming, Loc);
322 /// Bases - base pointers incoming to this statepoin
    [all...]
LegalizeIntegerTypes.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
LoopUnroll.cpp 92 // incoming edges. This occurs when there are multiple edges from
350 // the incoming values from the previous block.
374 Value *Incoming = phi->getIncomingValueForBlock(*BB);
375 ValueToValueMapTy::iterator It = LastValueMap.find(Incoming);
377 Incoming = It->second;
378 phi->addIncoming(Incoming, New);
398 // Loop over the PHI nodes in the original block, setting incoming values.
  /external/llvm/lib/Analysis/
LoopInfo.cpp 142 BasicBlock *Incoming = nullptr, *Backedge = nullptr;
148 Incoming = *PI++;
151 if (contains(Incoming)) {
154 std::swap(Incoming, Backedge);
162 dyn_cast<ConstantInt>(PN->getIncomingValueForBlock(Incoming)))
ConstantFolding.cpp     [all...]
InstructionSimplify.cpp 448 /// it on the incoming phi values yields the same result for every value. If so
470 // Evaluate the BinOp on the incoming phi values.
473 Value *Incoming = PI->getIncomingValue(i);
474 // If the incoming value is the phi node itself, it can safely be skipped.
475 if (Incoming == PI) continue;
477 SimplifyBinOp(Opcode, Incoming, RHS, Q, MaxRecurse) :
478 SimplifyBinOp(Opcode, LHS, Incoming, Q, MaxRecurse);
491 /// incoming phi values yields the same result every time. If so returns the
511 // Evaluate the BinOp on the incoming phi values.
514 Value *Incoming = PI->getIncomingValue(i)
    [all...]
  /external/llvm/lib/Target/R600/
SIAnnotateControlFlow.cpp 217 // Handle all non-constant incoming values first
219 Value *Incoming = Phi->getIncomingValue(i);
221 if (isa<ConstantInt>(Incoming)) {
227 Value *PhiArg = handleLoopCondition(Incoming, Broken, L);
235 Value *Incoming = Phi->getIncomingValue(i);
236 if (Incoming != BoolTrue)
  /packages/apps/Gallery2/src/com/android/gallery3d/anim/
StateTransitionAnimation.java 32 public static final Spec INCOMING;
64 INCOMING = new Spec();
65 INCOMING.overlayAlphaFrom = 1f;
66 INCOMING.overlayAlphaTo = 0f;
67 INCOMING.overlayScaleFrom = 1f;
68 INCOMING.overlayScaleTo = 3f;
69 INCOMING.contentAlphaFrom = 0f;
70 INCOMING.contentAlphaTo = 1f;
71 INCOMING.contentScaleFrom = 0.25f;
72 INCOMING.contentScaleTo = 1f
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
StateManager.java 63 StateTransitionAnimation.Transition.Incoming);
93 StateTransitionAnimation.Transition.Incoming);
238 StateTransitionAnimation.Transition.Incoming);
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp 832 // If Arg is a PHI, and one or more incoming values to the
835 // could be pushed up to just those paths with non-null incoming values.
847 // Determine if the PHI has any null operands, or any incoming
852 Value *Incoming =
854 if (IsNullOrUndef(Incoming))
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp     [all...]

Completed in 240 milliseconds