Searched refs:Placeholder (Results 1 - 10 of 10) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DValueList.cpp162 Constant *Placeholder = ResolveConstants.back().first; local
168 while (!Placeholder->use_empty()) {
169 auto UI = Placeholder->user_begin();
188 } else if (*I == Placeholder) {
222 Placeholder->replaceAllUsesWith(RealVal);
223 Placeholder->deleteValue();
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp260 CodeCompletionString::Chunk::CreatePlaceholder(const char *Placeholder) { argument
261 return Chunk(CK_Placeholder, Placeholder);
443 void CodeCompletionBuilder::AddPlaceholderChunk(const char *Placeholder) { argument
444 Chunks.push_back(Chunk::CreatePlaceholder(Placeholder));
H A DSemaCodeComplete.cpp3641 std::string Placeholder; local
3644 Placeholder = FormatFunctionParameter(Policy, Param);
3646 Placeholder += GetDefaultValueString(Param, Context.getSourceManager(),
3649 Placeholder = Prototype->getParamType(P).getAsString(Policy);
3654 Result.getAllocator().CopyString(Placeholder));
3656 Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Placeholder));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DValueMapper.cpp197 TempMDNode Placeholder; member in struct:__anon5777::MDNodeMapper::Data
592 if (!OpD.Placeholder)
593 OpD.Placeholder = Op.clone();
595 return *OpD.Placeholder;
710 bool HadPlaceholder(D.Placeholder);
713 TempMDNode ClonedN = D.Placeholder ? std::move(D.Placeholder) : N->clone();
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DCodeCompleteConsumer.h548 static Chunk CreatePlaceholder(const char *Placeholder);
720 void AddPlaceholderChunk(const char *Placeholder);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp1257 uint32_t *Placeholder = local
1261 Value.Addend += *Placeholder;
1264 Value.Addend += (int16_t)((*Placeholder & 0xFFF) | (((*Placeholder >> 16) & 0xF) << 12));
1269 uint8_t *Placeholder = reinterpret_cast<uint8_t *>( local
1271 uint32_t Opcode = readBytesUnaligned(Placeholder, 4);
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp3074 llvm::Value *Placeholder = llvm::UndefValue::get(IRPtrTy->getPointerTo());
3079 Placeholder = CGF.Builder.CreateAlignedLoad(IRPtrTy, Placeholder, Align);
3081 return AggValueSlot::forAddr(Address(Placeholder, Align),
3947 llvm::Instruction *Placeholder =
3950 Builder.SetInsertPoint(Placeholder);
3954 deferPlaceholderReplacement(Placeholder, Addr.getPointer());
H A DCGObjCGNU.cpp343 /// Placeholder for the class. Lots of things refer to the class before we've
348 /// Placeholder for the metaclass. Lots of things refer to the class before
1960 if (auto Placeholder =
1962 if (Placeholder != classStruct) {
1963 Placeholder->replaceAllUsesWith(
1964 llvm::ConstantExpr::getBitCast(classStruct, Placeholder->getType()));
1965 Placeholder->eraseFromParent();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp2581 Value *Placeholder = new LoadInst(
2583 V = insertInteger(DL, IRB, Placeholder, V, NewBeginOffset - BeginOffset,
2586 Placeholder->replaceAllUsesWith(&LI);
2587 Placeholder->deleteValue();
/freebsd-12-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp736 CASE(Placeholder);

Completed in 241 milliseconds