Searched refs:SrcVal (Results 1 - 13 of 13) sorted by relevance

/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h222 GenericValue executeTruncInst(Value *SrcVal, Type *DstTy,
224 GenericValue executeSExtInst(Value *SrcVal, Type *DstTy,
226 GenericValue executeZExtInst(Value *SrcVal, Type *DstTy,
228 GenericValue executeFPTruncInst(Value *SrcVal, Type *DstTy,
230 GenericValue executeFPExtInst(Value *SrcVal, Type *DstTy,
232 GenericValue executeFPToUIInst(Value *SrcVal, Type *DstTy,
234 GenericValue executeFPToSIInst(Value *SrcVal, Type *DstTy,
236 GenericValue executeUIToFPInst(Value *SrcVal, Type *DstTy,
238 GenericValue executeSIToFPInst(Value *SrcVal, Type *DstTy,
240 GenericValue executePtrToIntInst(Value *SrcVal, Typ
[all...]
H A DExecution.cpp1218 GenericValue Interpreter::executeTruncInst(Value *SrcVal, Type *DstTy,
1220 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1221 Type *SrcTy = SrcVal->getType();
1238 GenericValue Interpreter::executeSExtInst(Value *SrcVal, Type *DstTy,
1240 Type *SrcTy = SrcVal->getType();
1241 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1258 GenericValue Interpreter::executeZExtInst(Value *SrcVal, Type *DstTy,
1260 Type *SrcTy = SrcVal->getType();
1261 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1279 GenericValue Interpreter::executeFPTruncInst(Value *SrcVal, Typ
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DGVN.cpp1131 static Value *GetStoreValueForLoad(Value *SrcVal, unsigned Offset, argument
1134 LLVMContext &Ctx = SrcVal->getType()->getContext();
1136 uint64_t StoreSize = (DL.getTypeSizeInBits(SrcVal->getType()) + 7) / 8;
1143 if (SrcVal->getType()->getScalarType()->isPointerTy())
1144 SrcVal = Builder.CreatePtrToInt(SrcVal,
1145 DL.getIntPtrType(SrcVal->getType()));
1146 if (!SrcVal->getType()->isIntegerTy())
1147 SrcVal = Builder.CreateBitCast(SrcVal, IntegerTyp
1170 GetLoadValueForLoad(LoadInst *SrcVal, unsigned Offset, Type *LoadTy, Instruction *InsertPt, GVN &gvn) argument
[all...]
H A DScalarReplAggregates.cpp718 LoadInst *SrcVal = Builder.CreateLoad(SrcPtr, "srcval"); local
719 SrcVal->setAlignment(MTI->getAlignment());
720 Builder.CreateStore(SrcVal, NewAI);
725 LoadInst *SrcVal = Builder.CreateLoad(NewAI, "srcval"); local
735 StoreInst *NewStore = Builder.CreateStore(SrcVal, DstPtr);
2356 Value *SrcVal = SI->getOperand(0); local
2364 if (DL.getTypeSizeInBits(SrcVal->getType()) != AllocaSizeBits)
2365 SrcVal = Builder.CreateZExt(SrcVal,
2377 // Get the number of bits to shift SrcVal t
[all...]
/external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
H A Dtransform.hpp375 template <class SrcVal, class DstPtrTuple, class OpTuple>
376 __device__ static void transform(const SrcVal& srcVal, DstPtrTuple& dst, const OpTuple& op, int y, int x)
387 template <class SrcVal, class DstPtrTuple, class OpTuple>
388 __device__ __forceinline__ static void transform(const SrcVal&, DstPtrTuple&, const OpTuple&, int, int) argument
/external/clang/lib/CodeGen/
H A DCGExpr.cpp1664 llvm::Value *SrcVal = Src.getScalarVal(); local
1667 SrcVal = Builder.CreateIntCast(SrcVal, Ptr.getElementType(),
1669 llvm::Value *MaskedVal = SrcVal;
1680 SrcVal = Builder.CreateAnd(SrcVal,
1684 MaskedVal = SrcVal;
1686 SrcVal = Builder.CreateShl(SrcVal, Info.Offset, "bf.shl");
1696 SrcVal
1732 llvm::Value *SrcVal = Src.getScalarVal(); local
[all...]
H A DMicrosoftCXXABI.cpp3840 llvm::Value *SrcVal = local
3850 if (SrcVal)
3851 Args.add(RValue::get(SrcVal), SrcParam.getType());
/external/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.cpp897 SDValue SrcVal = Node->getOperand(2);
898 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
901 SrcReg = getVR(SrcVal, VRBaseMap);
/external/llvm/lib/AsmParser/
H A DLLParser.cpp2769 Constant *SrcVal;
2772 ParseGlobalTypeAndValue(SrcVal) ||
2777 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2779 getTypeString(SrcVal->getType()) + "' to '" +
2782 SrcVal, DestTy);
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp3320 Value *SrcVal = DestPN->getIncomingValue(Idx); local
3321 PHINode *SrcPN = dyn_cast<PHINode>(SrcVal);
3340 DestPN->addIncoming(SrcVal, pred);
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp2491 const Value *SrcVal = II->getArgOperand(0); local
2492 unsigned SrcReg = getRegForValue(SrcVal);
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp11666 SDValue SrcVal = Op.getOperand(0); local
11667 return makeLibCall(DAG, LC, Op.getValueType(), SrcVal, /*isSigned*/ false,
11679 SDValue SrcVal = Op.getOperand(0); local
11680 return makeLibCall(DAG, LC, Op.getValueType(), SrcVal, /*isSigned*/ false,
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp1840 SDValue SrcVal = Op.getOperand(0); local
1841 return makeLibCall(DAG, LC, Op.getValueType(), SrcVal, /*isSigned*/ false,

Completed in 1005 milliseconds