Searched refs:InitValue (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | LowerEmuTLS.cpp | 122 const Constant *InitValue = nullptr; in addEmuTlsVar() local 124 InitValue = GV->getInitializer(); in addEmuTlsVar() 125 const ConstantInt *InitIntValue = dyn_cast<ConstantInt>(InitValue); in addEmuTlsVar() 128 if (isa<ConstantAggregateZero>(InitValue) || in addEmuTlsVar() 130 InitValue = nullptr; in addEmuTlsVar() 156 if (InitValue) { in addEmuTlsVar() 162 EmuTlsTmplVar->setInitializer(const_cast<Constant*>(InitValue)); in addEmuTlsVar()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | IndVarSimplify.cpp | 214 int64_t InitValue; in handleFloatingPointIV() local 215 if (!InitValueVal || !ConvertToSInt(InitValueVal->getValueAPF(), InitValue)) in handleFloatingPointIV() 293 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue)) in handleFloatingPointIV() 304 if (InitValue >= ExitValue) in handleFloatingPointIV() 307 uint32_t Range = uint32_t(ExitValue-InitValue); in handleFloatingPointIV() 330 if (InitValue <= ExitValue) in handleFloatingPointIV() 333 uint32_t Range = uint32_t(InitValue-ExitValue); in handleFloatingPointIV() 360 NewPHI->addIncoming(ConstantInt::get(Int32Ty, InitValue), in handleFloatingPointIV()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | DecoderEmitter.cpp | 98 uint64_t InitValue; member 101 : Decoder(std::move(D)), HasCompleteDecoder(HCD), InitValue(0) {} in OperandInfo() 1184 bool UseInsertBits = OpInfo.numFields() != 1 || OpInfo.InitValue != 0; in emitBinaryParser() 1188 o.write_hex(OpInfo.InitValue); in emitBinaryParser() 1985 OpInfo.InitValue |= 1ULL << I; in addOneOperandFields()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | OpenMPOpt.cpp | 310 ConstantInt *InitValue; member 458 ICV.InitValue = nullptr; \ in initializeInternalControlVars() 461 ICV.InitValue = ConstantInt::get( \ in initializeInternalControlVars() 465 ICV.InitValue = ConstantInt::getFalse(OMPBuilder.Int1->getContext()); \ in initializeInternalControlVars() 1000 << (ICVInfo.InitValue in printICVs() 1001 ? toString(ICVInfo.InitValue->getValue(), 10, true) in printICVs()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
H A D | OMPIRBuilder.h | 2868 #define OMP_TYPE(VarName, InitValue) Type *VarName = nullptr; argument
|
H A D | OMPKinds.def | 25 #define OMP_TYPE(VarName, InitValue)
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ScalarEvolution.cpp | 10009 Value *InitValue = nullptr; in computeSCEVAtScope() local 10013 if (!InitValue) in computeSCEVAtScope() 10014 InitValue = PN->getIncomingValue(i); in computeSCEVAtScope() 10015 else if (InitValue != PN->getIncomingValue(i)) { in computeSCEVAtScope() 10021 if (!MultipleInitValues && InitValue) in computeSCEVAtScope() 10022 return getSCEV(InitValue); in computeSCEVAtScope()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 18623 llvm::APFloat InitValue = llvm::APFloat::getAllOnesValue( in actOnOMPReductionKindClause() local 18625 Init = FloatingLiteral::Create(Context, InitValue, /*isexact=*/true, in actOnOMPReductionKindClause() 18630 llvm::APInt InitValue = llvm::APInt::getAllOnes(Size); in actOnOMPReductionKindClause() local 18631 Init = IntegerLiteral::Create(Context, InitValue, IntTy, ELoc); in actOnOMPReductionKindClause() 18652 llvm::APInt InitValue = in actOnOMPReductionKindClause() local 18657 Init = IntegerLiteral::Create(Context, InitValue, IntTy, ELoc); in actOnOMPReductionKindClause() 18667 llvm::APFloat InitValue = llvm::APFloat::getLargest( in actOnOMPReductionKindClause() local 18669 Init = FloatingLiteral::Create(Context, InitValue, /*isexact=*/true, in actOnOMPReductionKindClause()
|
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
H A D | OMPIRBuilder.cpp | 8339 #define OMP_TYPE(VarName, InitValue) VarName = InitValue; in initializeTypes() argument
|