Searched refs:InitValue (Results 1 – 9 of 9) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | LowerEmuTLS.cpp | 100 const Constant *InitValue = nullptr; in addEmuTlsVar() local 102 InitValue = GV->getInitializer(); in addEmuTlsVar() 103 const ConstantInt *InitIntValue = dyn_cast<ConstantInt>(InitValue); in addEmuTlsVar() 106 if (isa<ConstantAggregateZero>(InitValue) || in addEmuTlsVar() 108 InitValue = nullptr; in addEmuTlsVar() 118 PointerType *InitPtrType = InitValue ? in addEmuTlsVar() 119 PointerType::getUnqual(InitValue->getType()) : VoidPtrType; in addEmuTlsVar() 136 if (InitValue) { in addEmuTlsVar() 142 EmuTlsTmplVar->setInitializer(const_cast<Constant*>(InitValue)); in addEmuTlsVar()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | IndVarSimplify.cpp | 219 int64_t InitValue; in handleFloatingPointIV() local 220 if (!InitValueVal || !ConvertToSInt(InitValueVal->getValueAPF(), InitValue)) in handleFloatingPointIV() 298 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue)) in handleFloatingPointIV() 309 if (InitValue >= ExitValue) in handleFloatingPointIV() 312 uint32_t Range = uint32_t(ExitValue-InitValue); in handleFloatingPointIV() 335 if (InitValue <= ExitValue) in handleFloatingPointIV() 338 uint32_t Range = uint32_t(InitValue-ExitValue); in handleFloatingPointIV() 364 NewPHI->addIncoming(ConstantInt::get(Int32Ty, InitValue), in handleFloatingPointIV()
|
| /freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | FixedLenDecoderEmitter.cpp | 68 uint64_t InitValue; member 71 : Decoder(std::move(D)), HasCompleteDecoder(HCD), InitValue(0) {} in OperandInfo() 1116 bool UseInsertBits = OpInfo.numFields() != 1 || OpInfo.InitValue != 0; in emitBinaryParser() 1120 o.write_hex(OpInfo.InitValue); in emitBinaryParser() 2069 OpInfo.InitValue |= 1ULL << I; in populateInstruction()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | OpenMPOpt.cpp | 152 ConstantInt *InitValue; member 300 ICV.InitValue = nullptr; \ in initializeInternalControlVars() 303 ICV.InitValue = ConstantInt::get( \ in initializeInternalControlVars() 307 ICV.InitValue = ConstantInt::getFalse(OMPBuilder.Int1->getContext()); \ in initializeInternalControlVars() 771 << (ICVInfo.InitValue in printICVs() 772 ? toString(ICVInfo.InitValue->getValue(), 10, true) in printICVs()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
| H A D | OMPIRBuilder.h | 836 #define OMP_TYPE(VarName, InitValue) Type *VarName = nullptr; argument
|
| H A D | OMPKinds.def | 25 #define OMP_TYPE(VarName, InitValue)
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
| H A D | OMPIRBuilder.cpp | 2707 #define OMP_TYPE(VarName, InitValue) VarName = InitValue; in initializeTypes() argument
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ScalarEvolution.cpp | 8859 Value *InitValue = nullptr; in computeSCEVAtScope() local 8863 if (!InitValue) in computeSCEVAtScope() 8864 InitValue = PN->getIncomingValue(i); in computeSCEVAtScope() 8865 else if (InitValue != PN->getIncomingValue(i)) { in computeSCEVAtScope() 8871 if (!MultipleInitValues && InitValue) in computeSCEVAtScope() 8872 return getSCEV(InitValue); in computeSCEVAtScope()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 17109 llvm::APFloat InitValue = llvm::APFloat::getAllOnesValue( in actOnOMPReductionKindClause() local 17112 Init = FloatingLiteral::Create(Context, InitValue, /*isexact=*/true, in actOnOMPReductionKindClause() 17117 llvm::APInt InitValue = llvm::APInt::getAllOnesValue(Size); in actOnOMPReductionKindClause() local 17118 Init = IntegerLiteral::Create(Context, InitValue, IntTy, ELoc); in actOnOMPReductionKindClause() 17139 llvm::APInt InitValue = in actOnOMPReductionKindClause() local 17144 Init = IntegerLiteral::Create(Context, InitValue, IntTy, ELoc); in actOnOMPReductionKindClause() 17154 llvm::APFloat InitValue = llvm::APFloat::getLargest( in actOnOMPReductionKindClause() local 17156 Init = FloatingLiteral::Create(Context, InitValue, /*isexact=*/true, in actOnOMPReductionKindClause()
|