Searched refs:Create (Results 226 - 250 of 473) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/llvm-project/lldb/source/Symbol/
H A DCxxModuleHandler.cpp172 T *to_d = T::Create(std::forward<Args>(args)...);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
H A DStackFrameRecognizer.cpp43 args_synthesized->Append(ValueObjectRecognizerSynthesizedValue::Create(
/freebsd-12-stable/contrib/llvm-project/lldb/tools/lldb-server/
H A Dlldb-platform.cpp282 std::unique_ptr<Acceptor> acceptor_up(Acceptor::Create(
/freebsd-12-stable/contrib/llvm-project/clang/lib/Lex/
H A DHeaderMap.cpp46 /// HeaderMap::Create - This attempts to load the specified file as a header
50 std::unique_ptr<HeaderMap> HeaderMap::Create(const FileEntry *FE, function in class:HeaderMap
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_mac.cpp181 t = AsanThread::Create(/* start_routine */ nullptr, /* arg */ nullptr,
H A Dasan_win.cpp152 AsanThread::Create(start_routine, arg, current_tid, &stack, detached);
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector1.cpp61 DDetector *DDetector::Create(const DDFlags *flags) { function in class:__sanitizer::DDetector
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DExecutionUtils.h99 /// Create an iterator range over the entries of the llvm.global_ctors
103 /// Create an iterator range over the entries of the llvm.global_ctors
207 /// Create a runtime-overrides class.
258 /// Create a DynamicLibrarySearchGenerator that searches for symbols in the
310 Create(ObjectLayer &L, std::unique_ptr<MemoryBuffer> ArchiveBuffer);
H A DLLJIT.h34 /// Create instances using LLJITBuilder.
39 static Expected<std::unique_ptr<LLJIT>> Create(LLJITBuilderState &S);
60 /// Create a new JITDylib with the given name and return a reference to it.
130 /// Create an LLJIT instance with a single compile thread.
181 // Create a single-threaded LLLazyJIT instance.
261 /// Create an instance of the JIT.
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/
H A DLinkAllPasses.h233 llvm::Function::Create(nullptr, llvm::GlobalValue::ExternalLinkage)->viewCFGOnly();
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DMCAsmParser.h102 SMLoc Location, bool Create) = 0;
303 /// Create an MCAsmParser instance.
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclFriend.h111 static FriendDecl *Create(ASTContext &C, DeclContext *DC,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCBoolRetToInt.cpp103 PHINode::Create(IntTy, P->getNumIncomingValues(), P->getName(), P);
H A DPPCLoopInstrFormPrep.cpp543 PHINode::Create(I8PtrTy, HeaderLoopPredCount,
564 PtrInc = GetElementPtrInst::Create(
591 PtrInc = GetElementPtrInst::Create(
639 GetElementPtrInst *NewPtr = GetElementPtrInst::Create(
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInferAddressSpaces.cpp475 PHINode *NewPHI = PHINode::Create(NewPtrType, PHI->getNumIncomingValues());
485 GetElementPtrInst *NewGEP = GetElementPtrInst::Create(
493 return SelectInst::Create(I->getOperand(0), NewPointerOperands[1],
989 NewV = CastInst::Create(Instruction::BitCast, NewV,
H A DInductiveRangeCheckElimination.cpp551 // Create the appropriate loop structure needed to describe a cloned copy of
1256 RRI.ExitSelector = BasicBlock::Create(Ctx, Twine(LS.Tag) + ".exit.selector",
1258 RRI.PseudoExit = BasicBlock::Create(Ctx, Twine(LS.Tag) + ".pseudo.exit", &F,
1307 BranchInst::Create(ContinuationBlock, RRI.PseudoExit);
1313 PHINode *NewPHI = PHINode::Create(PN.getType(), 2, PN.getName() + ".copy",
1322 RRI.IndVarEnd = PHINode::Create(IndVarBase->getType(), 2, "indvar.end",
1348 BasicBlock *Preheader = BasicBlock::Create(Ctx, Tag, &F, LS.Header);
1349 BranchInst::Create(LS.Header, Preheader);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUnrollRuntime.cpp60 /// - Create PHI nodes at prolog end block to combine values
88 // Create a PHI node for each outgoing value from the original loop
102 PHINode *NewPN = PHINode::Create(PN.getType(), 2, PN.getName() + ".unr",
147 // Create a branch around the original loop, which is taken if there are no
178 /// - Create PHI nodes at the unrolling loop exit to combine
248 // Create PHI nodes at NewExit (from the unrolling loop Latch and PreHeader).
257 PHINode *NewPN = PHINode::Create(PN.getType(), 2, PN.getName() + ".unr",
291 /// Create a clone of the blocks in a loop and connect them together.
358 PHINode *NewIdx = PHINode::Create(NewIter->getType(), 2,
899 PHINode *NewIdx = PHINode::Create(TestVa
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.cpp119 BasicBlock *NewBB = BasicBlock::Create(PrevBB->getContext(), getName(),
149 BranchInst::Create(NewBB, PredBB);
169 // 1. Create an IR basic block, or reuse the last one if possible.
223 auto *CondBr = BranchInst::Create(NewBB, nullptr, NewCond);
458 BranchInst::Create(VectorLatchBB, LastBB);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp218 // Create the new function body and insert it into the module.
219 Function *NF = Function::Create(NFTy, F->getLinkage(), F->getAddressSpace(),
330 NewCS = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
333 auto *NewCall = CallInst::Create(NF, Args, OpBundles, "", Call);
399 Value *Idx = GetElementPtrInst::Create(
/freebsd-12-stable/cddl/usr.sbin/zfsd/
H A Dzfsd.cc207 CaseFile::Create(vdev);
/freebsd-12-stable/share/examples/jails/
H A Djng265 jng_bridge_descr="Create ng0_NAME [ng1_NAME ...]"
334 # Create a new interface to the bridge
/freebsd-12-stable/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp2770 valobj_sp = ValueObjectConstResult::Create(
2777 valobj_sp = ValueObjectConstResult::Create(
2907 m_addr_of_valobj_sp = ValueObjectConstResult::Create(
2927 return ValueObjectCast::Create(*this, GetName(), compiler_type);
2931 return ValueObjectCast::Create(*this, new_name, GetCompilerType());
2943 valobj_sp = ValueObjectMemory::Create(
2957 valobj_sp = ValueObjectMemory::Create(
3155 lldb::ValueObjectSP ptr_result_valobj_sp(ValueObjectConstResult::Create(
3177 new_value_sp = ValueObjectConstResult::Create(
3299 ValueObjectConstResult::Create(target_s
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Expression/
H A DMaterializer.cpp88 m_persistent_variable_sp->m_live_sp = ValueObjectConstResult::Create(
233 m_persistent_variable_sp->m_live_sp = ValueObjectConstResult::Create(
440 ValueObjectVariable::Create(scope, m_variable_sp);
610 ValueObjectVariable::Create(scope, m_variable_sp);
912 ret->m_live_sp = ValueObjectConstResult::Create(exe_scope, m_type, name,
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ABI/Windows-x86_64/
H A DABIWindows_x86_64.cpp1466 return_valobj_sp = ValueObjectConstResult::Create(
1476 return_valobj_sp = ValueObjectConstResult::Create(
1505 return_valobj_sp = ValueObjectConstResult::Create(
1685 return_valobj_sp = ValueObjectConstResult::Create(
1705 return_valobj_sp = ValueObjectMemory::Create(
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCleanup.cpp278 // Create a variable to decide whether the cleanup needs to be run.
370 llvm::SwitchInst::Create(Load, Br->getSuccessor(0), 4, Block);
622 llvm::BranchInst::Create(si->case_begin()->getCaseSuccessor(), si);
845 InstsToAppend.push_back(llvm::BranchInst::Create(BranchAfter));
866 llvm::SwitchInst::Create(Load, Default, SwitchCapacity);
890 InstsToAppend.push_back(llvm::BranchInst::Create(BranchThroughDest));
1051 // Create the branch.

Completed in 499 milliseconds

1234567891011>>