Searched refs:Val1 (Results 1 - 6 of 6) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DFormat.h98 T1 Val1; member in class:llvm::format_object2
102 : format_object_base(fmt), Val1(val1), Val2(val2) {
106 return snprintf(Buffer, BufferSize, Fmt, Val1, Val2);
116 T1 Val1; member in class:llvm::format_object3
121 : format_object_base(fmt), Val1(val1), Val2(val2), Val3(val3) {
125 return snprintf(Buffer, BufferSize, Fmt, Val1, Val2, Val3);
135 T1 Val1; member in class:llvm::format_object4
142 : format_object_base(fmt), Val1(val1), Val2(val2), Val3(val3), Val4(val4) {
146 return snprintf(Buffer, BufferSize, Fmt, Val1, Val2, Val3, Val4);
156 T1 Val1; member in class:llvm::format_object5
191 format(const char *Fmt, const T1 &Val1, const T2 &Val2) argument
203 format(const char *Fmt, const T1 &Val1, const T2 &Val2, const T3 &Val3) argument
215 format(const char *Fmt, const T1 &Val1, const T2 &Val2, const T3 &Val3, const T4 &Val4) argument
228 format(const char *Fmt,const T1 &Val1, const T2 &Val2, const T3 &Val3, const T4 &Val4, const T5 &Val5) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Utils/
H A DBypassSlowDivision.cpp49 static bool isEqual(const DivOpInfo &Val1, const DivOpInfo &Val2) { argument
50 return Val1.SignedOp == Val2.SignedOp &&
51 Val1.Dividend == Val2.Dividend &&
52 Val1.Divisor == Val2.Divisor;
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-stress/
H A Dllvm-stress.cpp321 Value *Val1 = getRandomValue(Val0->getType()); local
325 Val1->getType()->isPointerTy())
355 PT->push_back(BinaryOperator::Create(Op, Val0, Val1, "B", Term));
436 Value *Val1 = getRandomValue(Val0->getType()); local
452 Value *V = new ShuffleVectorInst(Val0, Val1, Mask, "Shuff",
464 Value *Val1 = getRandomValue(Val0->getType()->getScalarType()); local
466 Value *V = InsertElementInst::Create(Val0, Val1,
567 Value *Val1 = getRandomValue(Val0->getType()); local
579 Value *V = SelectInst::Create(Cond, Val0, Val1, "Sl", BB->getTerminator());
590 Value *Val1 local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/AsmParser/
H A DLLParser.cpp2209 Constant *Val0, *Val1;
2214 ParseGlobalTypeAndValue(Val1) ||
2222 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
2229 Constant *Val0, *Val1;
2235 ParseGlobalTypeAndValue(Val1) ||
2239 if (Val0->getType() != Val1->getType())
2247 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
2253 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
2279 Constant *Val0, *Val1;
2299 ParseGlobalTypeAndValue(Val1) ||
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/ADT/
H A DAPInt.h1659 /// @returns the greatest common divisor of Val1 and Val2
1661 APInt GreatestCommonDivisor(const APInt& Val1, const APInt& Val2);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp2420 Ops.push_back(Node->getOperand(2)); // Low part of Val1
2421 Ops.push_back(Node->getOperand(3)); // High part of Val1
3066 SDValue Val1 = N->getOperand(3); local
3074 Chain = CurDAG->getCopyToReg(Chain, dl, ARM::R3, Val1, Chain.getValue(1));
3080 Val1 = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
3092 Ops.push_back(Val1);

Completed in 124 milliseconds