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

/macosx-10.10.1/llvmCore-3425.0.34/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h215 GenericValue executeTruncInst(Value *SrcVal, Type *DstTy,
217 GenericValue executeSExtInst(Value *SrcVal, Type *DstTy,
219 GenericValue executeZExtInst(Value *SrcVal, Type *DstTy,
221 GenericValue executeFPTruncInst(Value *SrcVal, Type *DstTy,
223 GenericValue executeFPExtInst(Value *SrcVal, Type *DstTy,
225 GenericValue executeFPToUIInst(Value *SrcVal, Type *DstTy,
227 GenericValue executeFPToSIInst(Value *SrcVal, Type *DstTy,
229 GenericValue executeUIToFPInst(Value *SrcVal, Type *DstTy,
231 GenericValue executeSIToFPInst(Value *SrcVal, Type *DstTy,
233 GenericValue executePtrToIntInst(Value *SrcVal, Typ
[all...]
H A DExecution.cpp944 GenericValue Interpreter::executeTruncInst(Value *SrcVal, Type *DstTy,
946 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
953 GenericValue Interpreter::executeSExtInst(Value *SrcVal, Type *DstTy,
955 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
962 GenericValue Interpreter::executeZExtInst(Value *SrcVal, Type *DstTy,
964 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
971 GenericValue Interpreter::executeFPTruncInst(Value *SrcVal, Type *DstTy,
973 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
974 assert(SrcVal->getType()->isDoubleTy() && DstTy->isFloatTy() &&
980 GenericValue Interpreter::executeFPExtInst(Value *SrcVal, Typ
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DGVN.cpp1010 static Value *GetStoreValueForLoad(Value *SrcVal, unsigned Offset, argument
1013 LLVMContext &Ctx = SrcVal->getType()->getContext();
1015 uint64_t StoreSize = (TD.getTypeSizeInBits(SrcVal->getType()) + 7) / 8;
1022 if (SrcVal->getType()->isPointerTy())
1023 SrcVal = Builder.CreatePtrToInt(SrcVal, TD.getIntPtrType(Ctx));
1024 if (!SrcVal->getType()->isIntegerTy())
1025 SrcVal = Builder.CreateBitCast(SrcVal, IntegerType::get(Ctx, StoreSize*8));
1035 SrcVal
1048 GetLoadValueForLoad(LoadInst *SrcVal, unsigned Offset, Type *LoadTy, Instruction *InsertPt, GVN &gvn) argument
[all...]
H A DScalarReplAggregates.cpp710 LoadInst *SrcVal = Builder.CreateLoad(SrcPtr, "srcval"); local
711 SrcVal->setAlignment(MTI->getAlignment());
712 Builder.CreateStore(SrcVal, NewAI);
717 LoadInst *SrcVal = Builder.CreateLoad(NewAI, "srcval"); local
727 StoreInst *NewStore = Builder.CreateStore(SrcVal, DstPtr);
2333 Value *SrcVal = SI->getOperand(0); local
2340 if (TD->getTypeSizeInBits(SrcVal->getType()) != AllocaSizeBits)
2341 SrcVal = Builder.CreateZExt(SrcVal,
2353 // Get the number of bits to shift SrcVal t
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.cpp849 SDValue SrcVal = Node->getOperand(2);
850 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
853 SrcReg = getVR(SrcVal, VRBaseMap);
/macosx-10.10.1/llvmCore-3425.0.34/lib/AsmParser/
H A DLLParser.cpp2172 Constant *SrcVal;
2175 ParseGlobalTypeAndValue(SrcVal) ||
2180 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2182 getTypeString(SrcVal->getType()) + "' to '" +
2185 SrcVal, DestTy);

Completed in 147 milliseconds