Searched refs:Create (Results 1 - 25 of 468) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DUnifyFunctionExitNodes.cpp69 UnreachableBlock = BasicBlock::Create(F.getContext(),
75 BranchInst::Create(UnreachableBlock, BB);
92 BasicBlock *NewRetBlock = BasicBlock::Create(F.getContext(),
97 ReturnInst::Create(F.getContext(), nullptr, NewRetBlock);
100 PN = PHINode::Create(F.getReturnType(), ReturningBlocks.size(),
103 ReturnInst::Create(F.getContext(), PN, NewRetBlock);
116 BranchInst::Create(NewRetBlock, BB);
H A DEscapeEnumerator.cpp66 // Create a cleanup block.
68 BasicBlock *CleanupBB = BasicBlock::Create(C, CleanupBBName, &F);
80 LandingPadInst::Create(ExnTy, 1, "cleanup.lpad", CleanupBB);
82 ResumeInst *RI = ResumeInst::Create(LPad, CleanupBB);
H A DLowerInvoke.cpp56 CallInst::Create(II->getFunctionType(), II->getCalledValue(),
65 BranchInst::Create(II->getNormalDest(), II);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DStringPool.cpp29 entry_t *S = entry_t::Create(Key);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/PPC64/
H A DArchitecturePPC64.cpp30 &ArchitecturePPC64::Create); member in class:ArchitecturePPC64
34 PluginManager::UnregisterPlugin(&ArchitecturePPC64::Create);
37 std::unique_ptr<Architecture> ArchitecturePPC64::Create(const ArchSpec &arch) { function in class:ArchitecturePPC64
H A DArchitecturePPC64.h35 static std::unique_ptr<Architecture> Create(const ArchSpec &arch);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionVariable.cpp30 ValueObjectConstResult::Create(exe_scope, byte_order, addr_byte_size);
39 m_frozen_sp = ValueObjectConstResult::Create(exe_scope, value, name);
58 ValueObjectConstResult::Create(exe_scope, byte_order, addr_byte_size);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLowerGlobalDtors.cpp137 Function *CallDtors = Function::Create(
145 BasicBlock *BB = BasicBlock::Create(C, "body", CallDtors);
150 CallInst::Create(VoidVoid, Dtor, "", BB);
151 ReturnInst::Create(C, BB);
153 Function *RegisterCallDtors = Function::Create(
161 BasicBlock *EntryBB = BasicBlock::Create(C, "entry", RegisterCallDtors);
162 BasicBlock *FailBB = BasicBlock::Create(C, "fail", RegisterCallDtors);
163 BasicBlock *RetBB = BasicBlock::Create(C, "return", RegisterCallDtors);
167 Value *Res = CallInst::Create(AtExit, Args, "call", EntryBB);
170 BranchInst::Create(FailB
[all...]
H A DWebAssemblyFixFunctionBitcasts.cpp95 // Create a wrapper function with type Ty that calls F (which may have a
121 Function *Wrapper = Function::Create(Ty, Function::PrivateLinkage,
123 BasicBlock *BB = BasicBlock::Create(M->getContext(), "body", Wrapper);
177 CallInst *Call = CallInst::Create(F, Args, "", BB);
183 ReturnInst::Create(M->getContext(), BB);
186 ReturnInst::Create(M->getContext(), UndefValue::get(RtnType), BB);
188 ReturnInst::Create(M->getContext(), Call, BB);
194 ReturnInst::Create(M->getContext(), Cast, BB);
209 // Create a new wrapper that simply contains `unreachable`.
211 Wrapper = Function::Create(T
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUUnifyDivergentExitNodes.cpp144 BasicBlock *NewRetBlock = BasicBlock::Create(F.getContext(), Name, &F);
185 BranchInst::Create(NewRetBlock, BB);
224 DummyReturnBB = BasicBlock::Create(F.getContext(),
258 ReturnInst::Create(F.getContext(), RetVal, DummyReturnBB);
266 BranchInst::Create(LoopHeaderBB, DummyReturnBB, BoolTrue, BB);
268 // Create a new transition block to hold the conditional branch.
271 // Create a branch that will always branch to the transition block and
274 BranchInst::Create(TransitionBB, DummyReturnBB, BoolTrue, BB);
285 UnreachableBlock = BasicBlock::Create(F.getContext(),
292 BranchInst::Create(UnreachableBloc
[all...]
H A DSIAnnotateControlFlow.cpp214 Value *Ret = CallInst::Create(If, Term->getCondition(), "", Term);
215 Term->setCondition(ExtractValueInst::Create(Ret, 0, "", Term));
216 push(Term->getSuccessor(1), ExtractValueInst::Create(Ret, 1, "", Term));
224 Value *Ret = CallInst::Create(Else, popSaved(), "", Term);
225 Term->setCondition(ExtractValueInst::Create(Ret, 0, "", Term));
226 push(Term->getSuccessor(1), ExtractValueInst::Create(Ret, 1, "", Term));
242 return CallInst::Create(IfBreak, Args, "", Insert);
251 return CallInst::Create(IfBreak, Args, "", Insert);
268 PHINode *Broken = PHINode::Create(IntMask, 0, "phi.broken", &Target->front());
286 Term->setCondition(CallInst::Create(Loo
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectConstResult.h38 Create(ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order,
42 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type,
47 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type,
53 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type,
57 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
62 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
H A DValueObjectMemory.h33 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
38 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
H A DValueObjectCast.h29 static lldb::ValueObjectSP Create(ValueObject &parent,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/Arm/
H A DArchitectureArm.cpp27 &ArchitectureArm::Create); member in class:ArchitectureArm
31 PluginManager::UnregisterPlugin(&ArchitectureArm::Create);
34 std::unique_ptr<Architecture> ArchitectureArm::Create(const ArchSpec &arch) { function in class:ArchitectureArm
H A DArchitectureArm.h34 static std::unique_ptr<Architecture> Create(const ArchSpec &arch);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclGroup.cpp20 DeclGroup* DeclGroup::Create(ASTContext &C, Decl **Decls, unsigned NumDecls) { function in class:DeclGroup
H A DExprConcepts.cpp46 ASTConstraintSatisfaction::Create(C, *Satisfaction) :
84 ConceptSpecializationExpr::Create(const ASTContext &C, function in class:ConceptSpecializationExpr
115 ASTConstraintSatisfaction::Create(C, *Satisfaction) :
121 ConceptSpecializationExpr::Create(const ASTContext &C, function in class:ConceptSpecializationExpr
135 ConceptSpecializationExpr::Create(ASTContext &C, EmptyShell Empty, function in class:ConceptSpecializationExpr
197 RequiresExpr::Create(ASTContext &C, SourceLocation RequiresKWLoc, function in class:RequiresExpr
211 RequiresExpr::Create(ASTContext &C, EmptyShell Empty, function in class:RequiresExpr
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueUInt64.h34 static lldb::OptionValueSP Create(const char *, Status &) = delete;
35 static lldb::OptionValueSP Create(llvm::StringRef value_str, Status &error);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMConstantPoolValue.h162 static ARMConstantPoolConstant *Create(const Constant *C, unsigned ID);
163 static ARMConstantPoolConstant *Create(const GlobalValue *GV,
165 static ARMConstantPoolConstant *Create(const GlobalVariable *GV,
167 static ARMConstantPoolConstant *Create(const Constant *C, unsigned ID,
170 static ARMConstantPoolConstant *Create(const Constant *C, unsigned ID,
220 static ARMConstantPoolSymbol *Create(LLVMContext &C, StringRef s, unsigned ID,
255 static ARMConstantPoolMBB *Create(LLVMContext &C,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DLazyReexports.cpp96 return LocalLazyCallThroughManager::Create<OrcAArch64>(ES,
100 return LocalLazyCallThroughManager::Create<OrcI386>(ES, ErrorHandlerAddr);
103 return LocalLazyCallThroughManager::Create<OrcMips32Be>(ES,
107 return LocalLazyCallThroughManager::Create<OrcMips32Le>(ES,
112 return LocalLazyCallThroughManager::Create<OrcMips64>(ES, ErrorHandlerAddr);
116 return LocalLazyCallThroughManager::Create<OrcX86_64_Win32>(
119 return LocalLazyCallThroughManager::Create<OrcX86_64_SysV>(
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclGroup.h36 static DeclGroup *Create(ASTContext &C, Decl **Decls, unsigned NumDecls);
68 static DeclGroupRef Create(ASTContext &C, Decl **Decls, unsigned NumDecls) {
73 return DeclGroupRef(DeclGroup::Create(C, Decls, NumDecls));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZConstantPoolValue.h42 Create(const GlobalValue *GV, SystemZCP::SystemZCPModifier Modifier);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_thread.h23 static MsanThread *Create(thread_callback_t start_routine, void *arg);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/Mips/
H A DArchitectureMips.h43 static std::unique_ptr<Architecture> Create(const ArchSpec &arch);

Completed in 258 milliseconds

1234567891011>>