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

/external/llvm/lib/CodeGen/
H A DLowerEmuTLS.cpp96 const Constant *InitValue = nullptr; local
98 InitValue = GV->getInitializer();
99 const ConstantInt *InitIntValue = dyn_cast<ConstantInt>(InitValue);
102 if (isa<ConstantAggregateZero>(InitValue) ||
104 InitValue = nullptr;
114 PointerType *InitPtrType = InitValue ?
115 PointerType::getUnqual(InitValue->getType()) : VoidPtrType;
135 // Define "__emutls_t.*" if there is InitValue
137 if (InitValue) {
143 EmuTlsTmplVar->setInitializer(const_cast<Constant*>(InitValue));
[all...]
/external/llvm/include/llvm/Support/
H A DOptions.h97 const ValT &InitValue) {
99 cl::Hidden, cl::init(InitValue));
96 registerOption(const char *ArgStr, const char *Desc, const ValT &InitValue) argument
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DOptions.h97 const ValT &InitValue) {
99 cl::Hidden, cl::init(InitValue));
96 registerOption(StringRef ArgStr, StringRef Desc, const ValT &InitValue) argument
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp261 int64_t InitValue; local
262 if (!InitValueVal || !ConvertToSInt(InitValueVal->getValueAPF(), InitValue))
342 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
353 if (InitValue >= ExitValue)
356 uint32_t Range = uint32_t(ExitValue-InitValue);
380 if (InitValue <= ExitValue)
383 uint32_t Range = uint32_t(InitValue-ExitValue);
409 NewPHI->addIncoming(ConstantInt::get(Int32Ty, InitValue),
/external/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp253 int64_t InitValue; local
254 if (!InitValueVal || !ConvertToSInt(InitValueVal->getValueAPF(), InitValue))
333 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
344 if (InitValue >= ExitValue)
347 uint32_t Range = uint32_t(ExitValue-InitValue);
371 if (InitValue <= ExitValue)
374 uint32_t Range = uint32_t(InitValue-ExitValue);
400 NewPHI->addIncoming(ConstantInt::get(Int32Ty, InitValue),
/external/clang/lib/Sema/
H A DSemaOpenMP.cpp9350 llvm::APFloat InitValue =
9353 Init = FloatingLiteral::Create(Context, InitValue, /*isexact=*/true,
9358 llvm::APInt InitValue = llvm::APInt::getAllOnesValue(Size);
9359 Init = IntegerLiteral::Create(Context, InitValue, IntTy, ELoc);
9380 llvm::APInt InitValue =
9386 Init = IntegerLiteral::Create(Context, InitValue, IntTy, ELoc);
9397 llvm::APFloat InitValue = llvm::APFloat::getLargest(
9399 Init = FloatingLiteral::Create(Context, InitValue, /*isexact=*/true,

Completed in 314 milliseconds