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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp67 uint64_t StoreVal = ByteVal; local
69 StoreVal |= ByteVal << (I * 8);
71 Chain, DL, DAG.getConstant(StoreVal, DL, MVT::getIntegerVT(Size * 8)),
H A DSystemZISelLowering.cpp7295 Register StoreVal = MRI.createVirtualRegister(RC); local
7357 // %StoreVal = RLL %RetrySwapVal, -BitSize(%NegBitShift)
7359 // %RetryOldVal = CS %Dest, %StoreVal, Disp(%Base)
7365 BuildMI(MBB, DL, TII->get(SystemZ::RLL), StoreVal)
7369 .addReg(StoreVal)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsExpandPseudo.cpp418 Register StoreVal = I->getOperand(8).getReg(); local
529 // and StoreVal, OlddVal, Mask2
530 // or StoreVal, StoreVal, BinOpRes
531 // StoreVal<tied1> = sc StoreVal, 0(Ptr)
532 // beq StoreVal, zero, loopMBB
533 BuildMI(loopMBB, DL, TII->get(Mips::AND), StoreVal)
535 BuildMI(loopMBB, DL, TII->get(Mips::OR), StoreVal)
536 .addReg(StoreVal)
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DLiteralSupport.h116 bool GetFixedPointValue(llvm::APInt &StoreVal, unsigned Scale);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1719 Value *StoreVal;
1721 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()),
1735 StoreVal = new LoadInst(NewGV->getValueType(), NewGV,
1741 StoreVal = StoredVal->getOperand(0);
1742 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1746 new StoreInst(StoreVal, NewGV, false, None, SI->getOrdering(),
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp6391 Value *StoreVal = EmitScalarExpr(E->getArg(0));
6399 if (StoreVal->getType()->isPointerTy())
6400 StoreVal = Builder.CreatePtrToInt(StoreVal, Int32Ty);
6404 CGM.getDataLayout().getTypeSizeInBits(StoreVal->getType()));
6405 StoreVal = Builder.CreateBitCast(StoreVal, IntTy);
6406 StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int32Ty);
6413 return Builder.CreateCall(F, {StoreVal, StoreAdd
[all...]

Completed in 233 milliseconds