Home | History | Annotate | Download | only in NVPTX

Lines Matching refs:Value

49   Value *getOrInsertCVTA(Module *M, Function *F, GlobalVariable *GV,
51 Value *remapConstant(Module *M, Function *F, Constant *C,
53 Value *remapConstantVectorOrConstantAggregate(Module *M, Function *F,
56 Value *remapConstantExpr(Module *M, Function *F, ConstantExpr *C,
61 typedef ValueMap<Constant *, Value *> ConstantToValueMapTy;
117 Value *Operand = II->getOperand(i);
128 // Copy GVMap over to a standard value map.
167 Value *GenericToNVVM::getOrInsertCVTA(Module *M, Function *F,
171 Value *CVTA = nullptr;
210 Value *GenericToNVVM::remapConstant(Module *M, Function *F, Constant *C,
213 // return the converted value.
219 Value *NewValue = C;
250 Value *GenericToNVVM::remapConstantVectorOrConstantAggregate(
253 SmallVector<Value *, 4> NewOperands;
257 // converted to another value.
259 Value *Operand = C->getOperand(i);
260 Value *NewOperand = remapConstant(M, F, cast<Constant>(Operand), Builder);
271 // vector or aggregate value with a set instructions and the converted
273 Value *NewValue = UndefValue::get(C->getType());
276 Value *Idx = ConstantInt::get(Type::getInt32Ty(M->getContext()), i);
289 Value *GenericToNVVM::remapConstantExpr(Module *M, Function *F, ConstantExpr *C,
292 SmallVector<Value *, 4> NewOperands;
296 // converted to another value.
298 Value *Operand = C->getOperand(i);
299 Value *NewOperand = remapConstant(M, F, cast<Constant>(Operand), Builder);
375 // converted to another value.