Home | History | Annotate | Download | only in X86

Lines Matching refs:Val

83   bool X86FastEmitStore(EVT VT, const Value *Val, const X86AddressMode &AM);
84 bool X86FastEmitStore(EVT VT, unsigned Val, const X86AddressMode &AM);
230 /// X86FastEmitStore - Emit a machine instruction to store a value Val of
235 X86FastISel::X86FastEmitStore(EVT VT, unsigned Val, const X86AddressMode &AM) {
245 TII.get(X86::AND8ri), AndResult).addReg(Val).addImm(1);
246 Val = AndResult;
276 DL, TII.get(Opc)), AM).addReg(Val);
280 bool X86FastISel::X86FastEmitStore(EVT VT, const Value *Val,
283 if (isa<ConstantPointerNull>(Val))
284 Val = Constant::getNullValue(TD.getIntPtrType(Val->getContext()));
287 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
312 unsigned ValReg = getRegForValue(Val);