HomeSort by: relevance | last modified time | path
    Searched defs:InitValue (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
LowerEmuTLS.cpp 100 const Constant *InitValue = nullptr;
102 InitValue = GV->getInitializer();
103 const ConstantInt *InitIntValue = dyn_cast<ConstantInt>(InitValue);
106 if (isa<ConstantAggregateZero>(InitValue) ||
108 InitValue = nullptr;
118 PointerType *InitPtrType = InitValue ?
119 PointerType::getUnqual(InitValue->getType()) : VoidPtrType;
134 // Define "__emutls_t.*" if there is InitValue
136 if (InitValue) {
142 EmuTlsTmplVar->setInitializer(const_cast<Constant*>(InitValue));
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 68 uint64_t InitValue;
71 : Decoder(std::move(D)), HasCompleteDecoder(HCD), InitValue(0) {}
1116 bool UseInsertBits = OpInfo.numFields() != 1 || OpInfo.InitValue != 0;
1120 o.write_hex(OpInfo.InitValue);
2069 OpInfo.InitValue |= 1ULL << I;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
OpenMPOpt.cpp 146 ConstantInt *InitValue;
286 ICV.InitValue = nullptr; \
289 ICV.InitValue = ConstantInt::get( \
293 ICV.InitValue = ConstantInt::getFalse(OMPBuilder.Int1->getContext()); \
587 << (ICVInfo.InitValue
588 ? ICVInfo.InitValue->getValue().toString(10, true)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 219 int64_t InitValue;
220 if (!InitValueVal || !ConvertToSInt(InitValueVal->getValueAPF(), InitValue))
298 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
309 if (InitValue >= ExitValue)
312 uint32_t Range = uint32_t(ExitValue-InitValue);
335 if (InitValue <= ExitValue)
338 uint32_t Range = uint32_t(InitValue-ExitValue);
364 NewPHI->addIncoming(ConstantInt::get(Int32Ty, InitValue),

Completed in 34 milliseconds