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

1 2

  /external/llvm/unittests/Transforms/Utils/
Local.cpp 29 PHINode *phi = builder.CreatePHI(Type::getInt32Ty(C), 2); local
35 phi->addIncoming(phi, bb0);
36 phi->addIncoming(phi, bb1);
38 // The PHI will be removed
39 EXPECT_TRUE(RecursivelyDeleteDeadPHINode(phi));
46 phi = builder.CreatePHI(Type::getInt32Ty(C), 0);
48 EXPECT_TRUE(RecursivelyDeleteDeadPHINode(phi));
51 phi = builder.CreatePHI(Type::getInt32Ty(C), 0)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/generators/
RSAKeyPairGenerator.java 30 BigInteger p, q, n, d, e, pSub1, qSub1, phi; local
120 phi = p;
122 q = phi;
127 phi = pSub1.multiply(qSub1);
132 d = e.modInverse(phi);
  /external/llvm/lib/CodeGen/
UnreachableBlockElim.cpp 175 // Cleanup PHI nodes.
178 // Prune unneeded PHI entries.
181 MachineBasicBlock::iterator phi = BB->begin(); local
182 while (phi != BB->end() && phi->isPHI()) {
183 for (unsigned i = phi->getNumOperands() - 1; i >= 2; i-=2)
184 if (!preds.count(phi->getOperand(i).getMBB())) {
185 phi->RemoveOperand(i);
186 phi->RemoveOperand(i-1);
190 if (phi->getNumOperands() == 3)
    [all...]
  /development/samples/GlobalTime/src/com/android/globaltime/
LatLongSphere.java 56 // phi is the latitude
57 float phi = PI * fj; local
58 float sinPhi = (float) Math.sin(phi);
59 float cosPhi = (float) Math.cos(phi);
GlobalTime.java 497 float phi = j * scaleH; local
498 cosPhi[j] = (float)Math.cos(phi);
499 sinPhi[j] = (float)Math.sin(phi);
1026 float phi = decl + Shape.PI_OVER_TWO; local
    [all...]
  /external/clang/test/CodeGen/
2007-03-05-DataLayout.c 23 double phi; member in struct:bnode
36 #define Phi(x) ((x)->phi)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 67 * phi. We create a new name because one is used for the phi node, and the
77 * phi. *)
84 let phi = build_phi incoming "iftmp" builder in var
98 phi
116 (* Start the PHI node with an entry for start. *)
119 (* Within the loop, the variable is defined equal to the PHI node. If it
159 (* Add a new entry to the PHI node for the backedge. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
codegen.ml 85 * phi. We create a new name because one is used for the phi node, and the
95 * phi. *)
102 let phi = build_phi incoming "iftmp" builder in var
116 phi
134 (* Start the PHI node with an entry for start. *)
137 (* Within the loop, the variable is defined equal to the PHI node. If it
177 (* Add a new entry to the PHI node for the backedge. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
codegen.ml 115 * phi. We create a new name because one is used for the phi node, and the
125 * phi. *)
132 let phi = build_phi incoming "iftmp" builder in var
146 phi
190 (* Within the loop, the variable is defined equal to the PHI node. If it
  /dalvik/dx/src/com/android/dx/ssa/back/
LivenessAnalyzer.java 160 // If s is a phi-function with V as it's ith argument.
161 PhiInsn phi = (PhiInsn) insn; local
164 phi.predBlocksForReg(regV, ssaMeth)) {
247 * Ensures that all the phi result registers for all the phis in the
251 * a the result of a dead-end phi might be assigned the same register
252 * as the result of another phi, and the phi removal move scheduler may
  /dalvik/vm/compiler/
SSATransformation.cpp 150 * TODO - evaluate whether phi will ever need to be inserted into exit
381 * The calculated result is used for phi-node pruning - where we only need to
382 * insert a phi node if the variable is live-in to the block.
420 /* Insert phi nodes to for each variable to the dominance frontiers */
447 /* Calculate the phi blocks for each Dalvik register */
477 * Insert a phi node for dalvikReg in the phiBlocks if the Dalvik
486 /* Variable will be clobbered before being used - no need for phi */
488 MIR *phi = (MIR *) dvmCompilerNew(sizeof(MIR), true); local
489 phi->dalvikInsn.opcode = (Opcode)kMirOpPhi;
490 phi->dalvikInsn.vA = dalvikReg
    [all...]
Dataflow.cpp 1601 strcpy(buffer, "PHI");
2218 MIR *phi; local
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
tree-flow-inline.h 496 /* Return a use_operand_p pointer for argument I of PHI node GS. */
504 /* Return the tree operand for argument I of PHI node GS. */
513 /* Return a pointer to the tree operand for argument I of PHI node GS. */
521 /* Return the edge associated with argument I of phi node GS. */
529 /* Return the source location of gimple argument I of phi node GS. */
537 /* Return the source location of the argument on edge E of phi node GS. */
545 /* Set the source location of gimple argument I of phi node GS to LOC. */
553 /* Return TRUE if argument I of phi node GS has a location record. */
562 /* Return the PHI nodes for basic block BB, or NULL if there are no
563 PHI nodes. *
594 gimple phi; local
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
tree-flow-inline.h 496 /* Return a use_operand_p pointer for argument I of PHI node GS. */
504 /* Return the tree operand for argument I of PHI node GS. */
513 /* Return a pointer to the tree operand for argument I of PHI node GS. */
521 /* Return the edge associated with argument I of phi node GS. */
529 /* Return the source location of gimple argument I of phi node GS. */
537 /* Return the source location of the argument on edge E of phi node GS. */
545 /* Set the source location of gimple argument I of phi node GS to LOC. */
553 /* Return TRUE if argument I of phi node GS has a location record. */
562 /* Return the PHI nodes for basic block BB, or NULL if there are no
563 PHI nodes. *
594 gimple phi; local
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
tree-flow-inline.h 496 /* Return a use_operand_p pointer for argument I of PHI node GS. */
504 /* Return the tree operand for argument I of PHI node GS. */
513 /* Return a pointer to the tree operand for argument I of PHI node GS. */
521 /* Return the edge associated with argument I of phi node GS. */
529 /* Return the source location of gimple argument I of phi node GS. */
537 /* Return the source location of the argument on edge E of phi node GS. */
545 /* Set the source location of gimple argument I of phi node GS to LOC. */
553 /* Return TRUE if argument I of phi node GS has a location record. */
562 /* Return the PHI nodes for basic block BB, or NULL if there are no
563 PHI nodes. *
594 gimple phi; local
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 1275 const PHINode* phi = cast<PHINode>(I); local
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
PathProfiling.cpp 936 PHINode* phi = PHINode::Create(Type::getInt32Ty(*Context), local
984 PHINode* phi = target->getPathPHI(); local
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 118 // instructions that are pinned to an edge like a phi, or
132 // through multiple levels of phi, so give up if we've already
187 // %exn = phi ...
188 // %selector = phi ...
216 // For all the phis in nonDominated, make a new phi in split to join
217 // that phi with the edge from lastDominated.
220 PHINode *phi = dyn_cast<PHINode>(i); local
221 if (!phi) break;
223 PHINode *splitPhi = PHINode::Create(phi->getType(), 2, phi->getName()
323 PHINode *phi = cast<PHINode>(I); local
    [all...]
  /external/llvm/test/Bindings/Ocaml/
vmcore.ml 1274 let phi = build_phi [(p1, b1)] "PhiNode" at_jb in var
    [all...]
  /external/opencv/cxcore/src/
cxmathfuncs.cpp 692 double phi = angle_data[x]*C; local
695 x_data[x] = cos(phi)*magval;
697 y_data[x] = sin(phi)*magval;
    [all...]
  /external/freetype/src/base/
ftstroke.c 983 FT_Angle phi, theta, rotate; local
1021 phi = stroker->angle_in + theta;
1027 FT_Vector_From_Polar( &delta, length, phi + rotate );
1055 FT_Angle theta = 0, phi = 0; local
1075 phi = stroker->angle_in;
1080 phi = stroker->angle_in + theta + rotate;
1124 phi );
1133 FT_Vector_From_Polar( &delta, length, phi + rotate );
1142 FT_Vector_From_Polar( &delta, length, phi - rotate );
1173 FT_Vector_From_Polar( &delta, length, phi );
1434 FT_Angle theta, phi, rotate, alpha0 = 0; local
    [all...]
  /external/opencv/cv/src/
cvhough.cpp 293 float phi, phi1; local
316 for( ti1 = 1, phi = theta_it - halfPi, phi1 = (theta_it + t) * itheta;
317 ti1 < halftn; ti1++, phi += theta_it, phi1 += scale_factor )
319 rv = r0 * _cos( phi );
380 for( ti1 = 0 /*, phi = ti*theta - Pi/2 - t */ ; ti1 < stn; ti1++, ti2 += 5
381 /*phi += stheta */ )
383 /*rv = r*_cos(phi) - r0; */
    [all...]
cvimgwarp.cpp 2178 int phi, rho; local
2238 double phi = bufa.data.fl[x]*ascale; local
    [all...]
  /external/v8/src/
lithium-allocator.cc 575 // All phi input operands corresponding to this successor edge are live
580 HPhi* phi = phis->at(i); local
581 if (!phi->OperandAt(index)->IsConstant()) {
582 live_out->Add(phi->OperandAt(index)->id());
913 HPhi* phi = LookupPhi(to); local
915 if (phi != NULL) {
916 // This is a phi resolving move.
917 if (!phi->block()->IsLoopHeader()) {
918 hint = LiveRangeFor(phi->id())->FirstHint();
1011 HPhi* phi = phis->at(i); local
1237 HPhi* phi = phis->at(i); local
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp 2002 llvm::PHINode *phi = Builder.CreatePHI(lhs.getAddress()->getType(), 2, local
    [all...]

Completed in 854 milliseconds

1 2