Home
last modified time | relevance | path

Searched refs:StoreVal (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Target/Mips/
H A DMipsExpandPseudo.cpp386 unsigned StoreVal = I->getOperand(8).getReg(); in expandAtomicBinOpSubword() local
439 BuildMI(loopMBB, DL, TII->get(Mips::AND), StoreVal) in expandAtomicBinOpSubword()
441 BuildMI(loopMBB, DL, TII->get(Mips::OR), StoreVal) in expandAtomicBinOpSubword()
442 .addReg(StoreVal).addReg(BinOpRes); in expandAtomicBinOpSubword()
443 BuildMI(loopMBB, DL, TII->get(SC), StoreVal) in expandAtomicBinOpSubword()
444 .addReg(StoreVal).addReg(Ptr).addImm(0); in expandAtomicBinOpSubword()
446 .addReg(StoreVal).addReg(Mips::ZERO).addMBB(loopMBB); in expandAtomicBinOpSubword()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/
H A DLiteralSupport.cpp1059 bool NumericLiteralParser::GetFixedPointValue(llvm::APInt &StoreVal, unsigned Scale) { in GetFixedPointValue() argument
1161 auto MaxVal = llvm::APInt::getMaxValue(StoreVal.getBitWidth()); in GetFixedPointValue()
1162 if (Val.getBitWidth() > StoreVal.getBitWidth()) { in GetFixedPointValue()
1164 StoreVal = Val.trunc(StoreVal.getBitWidth()); in GetFixedPointValue()
1165 } else if (Val.getBitWidth() < StoreVal.getBitWidth()) { in GetFixedPointValue()
1167 StoreVal = Val.zext(StoreVal.getBitWidth()); in GetFixedPointValue()
1169 StoreVal = Val; in GetFixedPointValue()
/freebsd-12.1/contrib/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp68 uint64_t StoreVal = ByteVal; in memsetStore() local
70 StoreVal |= ByteVal << (I * 8); in memsetStore()
72 Chain, DL, DAG.getConstant(StoreVal, DL, MVT::getIntegerVT(Size * 8)), in memsetStore()
H A DSystemZISelLowering.cpp6709 unsigned StoreVal = MRI.createVirtualRegister(RC); in emitAtomicCmpSwapW() local
6779 BuildMI(MBB, DL, TII->get(SystemZ::RLL), StoreVal) in emitAtomicCmpSwapW()
6783 .addReg(StoreVal) in emitAtomicCmpSwapW()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Lex/
H A DLiteralSupport.h117 bool GetFixedPointValue(llvm::APInt &StoreVal, unsigned Scale);
/freebsd-12.1/contrib/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1688 Value *StoreVal; in TryToShrinkGlobalToBoolean() local
1690 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()), in TryToShrinkGlobalToBoolean()
1704 StoreVal = new LoadInst(NewGV, LI->getName()+".b", false, 0, in TryToShrinkGlobalToBoolean()
1709 StoreVal = StoredVal->getOperand(0); in TryToShrinkGlobalToBoolean()
1710 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!"); in TryToShrinkGlobalToBoolean()
1714 new StoreInst(StoreVal, NewGV, false, 0, SI->getOrdering(), in TryToShrinkGlobalToBoolean()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGBuiltin.cpp6043 Value *StoreVal = EmitScalarExpr(E->getArg(0)); in EmitARMBuiltinExpr() local
6051 if (StoreVal->getType()->isPointerTy()) in EmitARMBuiltinExpr()
6052 StoreVal = Builder.CreatePtrToInt(StoreVal, Int32Ty); in EmitARMBuiltinExpr()
6057 StoreVal = Builder.CreateBitCast(StoreVal, IntTy); in EmitARMBuiltinExpr()
6058 StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int32Ty); in EmitARMBuiltinExpr()
6921 Value *StoreVal = EmitScalarExpr(E->getArg(0)); in EmitAArch64BuiltinExpr() local
6929 if (StoreVal->getType()->isPointerTy()) in EmitAArch64BuiltinExpr()
6930 StoreVal = Builder.CreatePtrToInt(StoreVal, Int64Ty); in EmitAArch64BuiltinExpr()
6935 StoreVal = Builder.CreateBitCast(StoreVal, IntTy); in EmitAArch64BuiltinExpr()
6936 StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int64Ty); in EmitAArch64BuiltinExpr()
[all …]