Searched refs:SrcVal (Results 1 - 9 of 9) 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.cpp1217 GenericValue Interpreter::executeTruncInst(Value *SrcVal, Type *DstTy,
1219 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1220 Type *SrcTy = SrcVal->getType();
1237 GenericValue Interpreter::executeSExtInst(Value *SrcVal, Type *DstTy,
1239 const Type *SrcTy = SrcVal->getType();
1240 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1257 GenericValue Interpreter::executeZExtInst(Value *SrcVal, Type *DstTy,
1259 const Type *SrcTy = SrcVal->getType();
1260 GenericValue Dest, Src = getOperandValue(SrcVal, SF);
1278 GenericValue Interpreter::executeFPTruncInst(Value *SrcVal, Typ
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DGVN.cpp1111 static Value *GetStoreValueForLoad(Value *SrcVal, unsigned Offset, argument
1114 LLVMContext &Ctx = SrcVal->getType()->getContext();
1116 uint64_t StoreSize = (DL.getTypeSizeInBits(SrcVal->getType()) + 7) / 8;
1123 if (SrcVal->getType()->getScalarType()->isPointerTy())
1124 SrcVal = Builder.CreatePtrToInt(SrcVal,
1125 DL.getIntPtrType(SrcVal->getType()));
1126 if (!SrcVal->getType()->isIntegerTy())
1127 SrcVal = Builder.CreateBitCast(SrcVal, IntegerTyp
1150 GetLoadValueForLoad(LoadInst *SrcVal, unsigned Offset, Type *LoadTy, Instruction *InsertPt, GVN &gvn) argument
[all...]
H A DScalarReplAggregates.cpp712 LoadInst *SrcVal = Builder.CreateLoad(SrcPtr, "srcval"); local
713 SrcVal->setAlignment(MTI->getAlignment());
714 Builder.CreateStore(SrcVal, NewAI);
719 LoadInst *SrcVal = Builder.CreateLoad(NewAI, "srcval"); local
729 StoreInst *NewStore = Builder.CreateStore(SrcVal, DstPtr);
2332 Value *SrcVal = SI->getOperand(0); local
2339 if (DL->getTypeSizeInBits(SrcVal->getType()) != AllocaSizeBits)
2340 SrcVal = Builder.CreateZExt(SrcVal,
2352 // Get the number of bits to shift SrcVal t
[all...]
/external/clang/lib/CodeGen/
H A DCGExpr.cpp1479 llvm::Value *SrcVal = Src.getScalarVal(); local
1482 SrcVal = Builder.CreateIntCast(SrcVal,
1485 llvm::Value *MaskedVal = SrcVal;
1497 SrcVal = Builder.CreateAnd(SrcVal,
1501 MaskedVal = SrcVal;
1503 SrcVal = Builder.CreateShl(SrcVal, Info.Offset, "bf.shl");
1513 SrcVal
1553 llvm::Value *SrcVal = Src.getScalarVal(); local
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.cpp886 SDValue SrcVal = Node->getOperand(2);
887 if (RegisterSDNode *R = dyn_cast<RegisterSDNode>(SrcVal))
890 SrcReg = getVR(SrcVal, VRBaseMap);
/external/llvm/lib/AsmParser/
H A DLLParser.cpp2594 Constant *SrcVal;
2597 ParseGlobalTypeAndValue(SrcVal) ||
2602 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2604 getTypeString(SrcVal->getType()) + "' to '" +
2607 SrcVal, DestTy);
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp2339 const Value *SrcVal = I.getArgOperand(0); local
2340 unsigned SrcReg = getRegForValue(SrcVal);
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp1380 SDValue SrcVal = Op.getOperand(0); local
1381 return makeLibCall(DAG, LC, Op.getValueType(), &SrcVal, 1,

Completed in 2425 milliseconds