Searched refs:InitValue (Results 1 – 8 of 8) sorted by relevance
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ |
| HD | LowerEmuTLS.cpp | 98 const Constant *InitValue = nullptr; in addEmuTlsVar() local 100 InitValue = GV->getInitializer(); in addEmuTlsVar() 101 const ConstantInt *InitIntValue = dyn_cast<ConstantInt>(InitValue); in addEmuTlsVar() 104 if (isa<ConstantAggregateZero>(InitValue) || in addEmuTlsVar() 106 InitValue = nullptr; in addEmuTlsVar() 116 PointerType *InitPtrType = InitValue ? in addEmuTlsVar() 117 PointerType::getUnqual(InitValue->getType()) : VoidPtrType; in addEmuTlsVar() 139 if (InitValue) { in addEmuTlsVar() 145 EmuTlsTmplVar->setInitializer(const_cast<Constant*>(InitValue)); in addEmuTlsVar()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
| HD | OMPConstants.cpp | 46 #define OMP_TYPE(VarName, InitValue) Type *llvm::omp::types::VarName = nullptr; argument 65 #define OMP_TYPE(VarName, InitValue) VarName = InitValue; in initializeTypes() argument 79 #define OMP_TYPE(VarName, InitValue) VarName = nullptr; in uninitializeTypes() argument
|
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
| HD | OMPConstants.h | 87 #define OMP_TYPE(VarName, InitValue) extern Type *VarName; argument
|
| HD | OMPKinds.def | 109 #define OMP_TYPE(VarName, InitValue)
|
| /freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/ |
| HD | FixedLenDecoderEmitter.cpp | 68 uint64_t InitValue; member 71 : Decoder(std::move(D)), HasCompleteDecoder(HCD), InitValue(0) {} in OperandInfo() 1109 if (OpInfo.numFields() != 1 || OpInfo.InitValue != 0) { in emitBinaryParser() 1111 o.write_hex(OpInfo.InitValue); in emitBinaryParser() 1117 if (OpInfo.numFields() != 1 || OpInfo.InitValue != 0) o << '|'; in emitBinaryParser() 2043 OpInfo.InitValue |= 1ULL << I; in populateInstruction()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| HD | IndVarSimplify.cpp | 315 int64_t InitValue; in handleFloatingPointIV() local 316 if (!InitValueVal || !ConvertToSInt(InitValueVal->getValueAPF(), InitValue)) in handleFloatingPointIV() 394 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue)) in handleFloatingPointIV() 405 if (InitValue >= ExitValue) in handleFloatingPointIV() 408 uint32_t Range = uint32_t(ExitValue-InitValue); in handleFloatingPointIV() 431 if (InitValue <= ExitValue) in handleFloatingPointIV() 434 uint32_t Range = uint32_t(InitValue-ExitValue); in handleFloatingPointIV() 460 NewPHI->addIncoming(ConstantInt::get(Int32Ty, InitValue), in handleFloatingPointIV()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ |
| HD | ScalarEvolution.cpp | 8227 Value *InitValue = nullptr; in computeSCEVAtScope() local 8231 if (!InitValue) in computeSCEVAtScope() 8232 InitValue = PN->getIncomingValue(i); in computeSCEVAtScope() 8233 else if (InitValue != PN->getIncomingValue(i)) { in computeSCEVAtScope() 8239 if (!MultipleInitValues && InitValue) in computeSCEVAtScope() 8240 return getSCEV(InitValue); in computeSCEVAtScope()
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/ |
| HD | SemaOpenMP.cpp | 14010 llvm::APFloat InitValue = in actOnOMPReductionKindClause() local 14013 Init = FloatingLiteral::Create(Context, InitValue, /*isexact=*/true, in actOnOMPReductionKindClause() 14018 llvm::APInt InitValue = llvm::APInt::getAllOnesValue(Size); in actOnOMPReductionKindClause() local 14019 Init = IntegerLiteral::Create(Context, InitValue, IntTy, ELoc); in actOnOMPReductionKindClause() 14040 llvm::APInt InitValue = in actOnOMPReductionKindClause() local 14045 Init = IntegerLiteral::Create(Context, InitValue, IntTy, ELoc); in actOnOMPReductionKindClause() 14055 llvm::APFloat InitValue = llvm::APFloat::getLargest( in actOnOMPReductionKindClause() local 14057 Init = FloatingLiteral::Create(Context, InitValue, /*isexact=*/true, in actOnOMPReductionKindClause()
|