| /freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUUnifyDivergentExitNodes.cpp | 131 ReturnInst::Create(F.getContext(), nullptr, NewRetBlock); in unifyReturnBlockSet() 134 PN = PHINode::Create(F.getReturnType(), ReturningBlocks.size(), in unifyReturnBlockSet() 137 ReturnInst::Create(F.getContext(), PN, NewRetBlock); in unifyReturnBlockSet() 150 BranchInst::Create(NewRetBlock, BB); in unifyReturnBlockSet() 187 DummyReturnBB = BasicBlock::Create(F.getContext(), in runOnFunction() 191 ReturnInst::Create(F.getContext(), RetVal, DummyReturnBB); in runOnFunction() 202 BasicBlock *TransitionBB = BasicBlock::Create(F.getContext(), in runOnFunction() 221 UnreachableBlock = BasicBlock::Create(F.getContext(), in runOnFunction() 228 BranchInst::Create(UnreachableBlock, BB); in runOnFunction() 246 CallInst::Create(UnreachableIntrin, {}, "", UnreachableBlock); in runOnFunction() [all …]
|
| H A D | SIAnnotateControlFlow.cpp | 208 Value *Ret = CallInst::Create(If, Term->getCondition(), "", Term); in openIf() 209 Term->setCondition(ExtractValueInst::Create(Ret, 0, "", Term)); in openIf() 210 push(Term->getSuccessor(1), ExtractValueInst::Create(Ret, 1, "", Term)); in openIf() 218 Value *Ret = CallInst::Create(Else, popSaved(), "", Term); in insertElse() 219 Term->setCondition(ExtractValueInst::Create(Ret, 0, "", Term)); in insertElse() 220 push(Term->getSuccessor(1), ExtractValueInst::Create(Ret, 1, "", Term)); in insertElse() 236 return CallInst::Create(IfBreak, Args, "", Insert); in handleLoopCondition() 245 return CallInst::Create(IfBreak, Args, "", Insert); in handleLoopCondition() 262 PHINode *Broken = PHINode::Create(Int64, 0, "phi.broken", &Target->front()); in handleLoop() 271 Term->setCondition(CallInst::Create(Loop, Arg, "", Term)); in handleLoop() [all …]
|
| /freebsd-12.1/tools/tools/nanobsd/embedded/ |
| H A D | README | 23 beaglebone.cfg Create a bootable beaglebone image 24 qemu-amd64.cfg Create a bootable amd64 image for qemu (W) 25 qemu-i386.cfg Create a bootable i386 image for qemu (W) 26 qemu-mips.cfg Create a bootable mips malta board image for 28 qemu-mips64.cfg Create a bootable mips malta board (64-bit 30 qemu-powerpc.cfg Create a bootable 32-bit powerpc image for 34 qemu-sparc64.cfg Create a bootable sparc64 image for qemu 35 rpi.cfg Create a bootable image for Raspberry Pi B 36 rpi2.cfg Create a bootable image for Raspberry Pi2 37 sam9260ek.cfg Create a bootable image for an Atmel SAM9260-EK [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyLowerGlobalDtors.cpp | 137 Function *CallDtors = Function::Create( in runOnModule() 145 BasicBlock *BB = BasicBlock::Create(C, "body", CallDtors); in runOnModule() 148 CallInst::Create(Dtor, "", BB); in runOnModule() 149 ReturnInst::Create(C, BB); in runOnModule() 153 Function *RegisterCallDtors = Function::Create( in runOnModule() 162 BasicBlock *FailBB = BasicBlock::Create(C, "fail", RegisterCallDtors); in runOnModule() 163 BasicBlock *RetBB = BasicBlock::Create(C, "return", RegisterCallDtors); in runOnModule() 167 Value *Res = CallInst::Create(AtExit, Args, "call", EntryBB); in runOnModule() 170 BranchInst::Create(FailBB, RetBB, Cmp, EntryBB); in runOnModule() 175 CallInst::Create(Intrinsic::getDeclaration(&M, Intrinsic::trap), "", in runOnModule() [all …]
|
| H A D | WebAssemblyFixFunctionBitcasts.cpp | 120 Function *Wrapper = Function::Create(Ty, Function::PrivateLinkage, in CreateWrapper() 122 BasicBlock *BB = BasicBlock::Create(M->getContext(), "body", Wrapper); in CreateWrapper() 176 CallInst *Call = CallInst::Create(F, Args, "", BB); in CreateWrapper() 182 ReturnInst::Create(M->getContext(), BB); in CreateWrapper() 185 ReturnInst::Create(M->getContext(), UndefValue::get(RtnType), BB); in CreateWrapper() 187 ReturnInst::Create(M->getContext(), Call, BB); in CreateWrapper() 193 ReturnInst::Create(M->getContext(), Cast, BB); in CreateWrapper() 210 Wrapper = Function::Create(Ty, Function::PrivateLinkage, in CreateWrapper() 212 BasicBlock *BB = BasicBlock::Create(M->getContext(), "body", Wrapper); in CreateWrapper() 266 CallMain = CallInst::Create(Casted, Args, "call_main"); in runOnModule()
|
| H A D | WebAssemblyLowerEmscriptenEHSjLj.cpp | 384 Function::Create(FTy, GlobalValue::ExternalLinkage, in getFindMatchingCatch() 479 Function *F = Function::Create(FTy, GlobalValue::ExternalLinkage, in getInvokeWrapper() 548 BasicBlock *ThenBB1 = BasicBlock::Create(C, "if.then1", F); in wrapTestSetjmp() 549 BasicBlock *ElseBB1 = BasicBlock::Create(C, "if.else1", F); in wrapTestSetjmp() 550 BasicBlock *EndBB1 = BasicBlock::Create(C, "if.end", F); in wrapTestSetjmp() 561 BasicBlock *ThenBB2 = BasicBlock::Create(C, "if.then2", F); in wrapTestSetjmp() 562 BasicBlock *EndBB2 = BasicBlock::Create(C, "if.end2", F); in wrapTestSetjmp() 643 Function::Create(FunctionType::get(IRB.getInt32Ty(), false), in runOnModule() 645 SetTempRet0Func = Function::Create( in runOnModule() 681 EmLongjmpJmpbufF = Function::Create(LongjmpF->getFunctionType(), in runOnModule() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Utils/ |
| H A D | UnifyFunctionExitNodes.cpp | 64 UnreachableBlock = BasicBlock::Create(F.getContext(), in runOnFunction() 70 BranchInst::Create(UnreachableBlock, BB); in runOnFunction() 87 BasicBlock *NewRetBlock = BasicBlock::Create(F.getContext(), in runOnFunction() 92 ReturnInst::Create(F.getContext(), nullptr, NewRetBlock); in runOnFunction() 95 PN = PHINode::Create(F.getReturnType(), ReturningBlocks.size(), in runOnFunction() 98 ReturnInst::Create(F.getContext(), PN, NewRetBlock); in runOnFunction() 111 BranchInst::Create(NewRetBlock, BB); in runOnFunction()
|
| H A D | BasicBlockUtils.cpp | 532 BasicBlock *NewBB = BasicBlock::Create( in SplitBlockPredecessors() 536 BranchInst *BI = BranchInst::Create(BB, NewBB); in SplitBlockPredecessors() 583 BasicBlock *NewBB1 = BasicBlock::Create(OrigBB->getContext(), in SplitLandingPadPredecessors() 589 BranchInst *BI1 = BranchInst::Create(OrigBB, NewBB1); in SplitLandingPadPredecessors() 624 NewBB2 = BasicBlock::Create(OrigBB->getContext(), in SplitLandingPadPredecessors() 630 BranchInst *BI2 = BranchInst::Create(OrigBB, NewBB2); in SplitLandingPadPredecessors() 733 CheckTerm = BranchInst::Create(Tail, ThenBlock); in SplitBlockAndInsertIfThen() 736 BranchInst::Create(/*ifTrue*/ThenBlock, /*ifFalse*/Tail, Cond); in SplitBlockAndInsertIfThen() 773 *ThenTerm = BranchInst::Create(Tail, ThenBlock); in SplitBlockAndInsertIfThenElse() 775 *ElseTerm = BranchInst::Create(Tail, ElseBlock); in SplitBlockAndInsertIfThenElse() [all …]
|
| H A D | CodeExtractor.cpp | 633 NewBB = BasicBlock::Create(ExitBB->getContext(), in severSplitPHINodesOfExits() 641 BranchInst::Create(ExitBB, NewBB); in severSplitPHINodesOfExits() 737 Function *newFunction = Function::Create( in constructFunction() 846 GetElementPtrInst *GEP = GetElementPtrInst::Create( in constructFunction() 939 GetElementPtrInst *GEP = GetElementPtrInst::Create( in emitCallAndSwitchStatement() 948 call = CallInst::Create(newFunction, params, in emitCallAndSwitchStatement() 973 GetElementPtrInst *GEP = GetElementPtrInst::Create( in emitCallAndSwitchStatement() 1048 NewTarget = BasicBlock::Create(Context, in emitCallAndSwitchStatement() 1065 ReturnInst::Create(Context, brVal, NewTarget); in emitCallAndSwitchStatement() 1095 ReturnInst::Create(Context, in emitCallAndSwitchStatement() [all …]
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 1551 return Create(cast<FunctionType>( 1560 return Create(cast<FunctionType>( 1570 return Create(cast<FunctionType>( 1578 return Create(cast<FunctionType>( 1586 return Create(cast<FunctionType>( 1595 return Create(cast<FunctionType>( 2329 static ExtractValueInst *Create(Value *Agg, 3728 return Create(cast<FunctionType>( 3740 return Create(cast<FunctionType>( 3750 return Create(cast<FunctionType>( [all …]
|
| H A D | InstrTypes.h | 147 return Create(Instruction::OPC, V1, V2, Name);\ 153 return Create(Instruction::OPC, V1, V2, Name, BB);\ 159 return Create(Instruction::OPC, V1, V2, Name, I);\ 167 BinaryOperator *BO = Create(Opc, V1, V2, Name); 205 BinaryOperator *BO = Create(Opc, V1, V2, Name); 217 BinaryOperator *BO = Create(Opc, V1, V2, Name, I); 224 BinaryOperator *BO = Create(Opc, V1, V2, Name); 243 BinaryOperator *BO = Create(Opc, V1, V2, Name); 375 static CastInst *Create( 388 static CastInst *Create( [all …]
|
| H A D | NoFolder.h | 176 return BinaryOperator::Create(Opc, LHS, RHS); in CreateBinOp() 225 return GetElementPtrInst::Create(Ty, C, IdxList); in CreateGetElementPtr() 252 return CastInst::Create(Op, C, DestTy); in CreateCast() 312 return SelectInst::Create(C, True, False); in CreateSelect() 316 return ExtractElementInst::Create(Vec, Idx); in CreateExtractElement() 321 return InsertElementInst::Create(Vec, NewElt, Idx); in CreateInsertElement() 331 return ExtractValueInst::Create(Agg, IdxList); in CreateExtractValue() 336 return InsertValueInst::Create(Agg, Val, IdxList); in CreateInsertValue()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | DeclTemplate.cpp | 343 ClassTemplateDecl *ClassTemplateDecl::Create(ASTContext &C, in Create() function in ClassTemplateDecl 561 NonTypeTemplateParmDecl *NonTypeTemplateParmDecl::Create( in Create() function in NonTypeTemplateParmDecl 700 ArgsAsWritten = ASTTemplateArgumentListInfo::Create(C, in Create() 853 Create(ASTContext &Context, TagKind TK,DeclContext *DC, in Create() function in ClassTemplatePartialSpecializationDecl 1132 VarTemplatePartialSpecializationDecl::Create( in Create() function in VarTemplatePartialSpecializationDecl 1158 auto *T = TemplateTypeParmDecl::Create( in createMakeIntegerSeqParameterList() 1166 auto *N = NonTypeTemplateParmDecl::Create( in createMakeIntegerSeqParameterList() 1173 auto *TPL = TemplateParameterList::Create( in createMakeIntegerSeqParameterList() 1183 auto *TemplateTypeParm = TemplateTypeParmDecl::Create( in createMakeIntegerSeqParameterList() 1206 auto *Index = NonTypeTemplateParmDecl::Create( in createTypePackElementParameterList() [all …]
|
| H A D | StmtOpenMP.cpp | 57 OMPParallelDirective *OMPParallelDirective::Create( in Create() function in OMPParallelDirective 221 OMPSectionsDirective *OMPSectionsDirective::Create( in Create() function in OMPSectionsDirective 310 OMPCriticalDirective *OMPCriticalDirective::Create( in Create() function in OMPCriticalDirective 525 OMPTaskgroupDirective *OMPTaskgroupDirective::Create( in Create() function in OMPTaskgroupDirective 643 OMPAtomicDirective *OMPAtomicDirective::Create( in Create() function in OMPAtomicDirective 866 OMPTaskLoopDirective *OMPTaskLoopDirective::Create( in Create() function in OMPTaskLoopDirective 1103 OMPDistributeParallelForSimdDirective::Create( in Create() function in OMPDistributeParallelForSimdDirective 1416 OMPTeamsDistributeParallelForSimdDirective::Create( in Create() function in OMPTeamsDistributeParallelForSimdDirective 1486 OMPTeamsDistributeParallelForDirective::Create( in Create() function in OMPTeamsDistributeParallelForDirective 1632 OMPTargetTeamsDistributeParallelForDirective::Create( in Create() function in OMPTargetTeamsDistributeParallelForDirective [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/ |
| H A D | ValueObjectConstResult.h | 47 Create(ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order, 51 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 56 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 62 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 66 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, 71 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
|
| /freebsd-12.1/contrib/llvm/lib/ExecutionEngine/Orc/ |
| H A D | LazyReexports.cpp | 98 return LocalLazyCallThroughManager::Create<OrcAArch64>(ES, in createLocalLazyCallThroughManager() 102 return LocalLazyCallThroughManager::Create<OrcI386>(ES, ErrorHandlerAddr); in createLocalLazyCallThroughManager() 105 return LocalLazyCallThroughManager::Create<OrcMips32Be>(ES, in createLocalLazyCallThroughManager() 109 return LocalLazyCallThroughManager::Create<OrcMips32Le>(ES, in createLocalLazyCallThroughManager() 114 return LocalLazyCallThroughManager::Create<OrcMips64>(ES, ErrorHandlerAddr); in createLocalLazyCallThroughManager() 118 return LocalLazyCallThroughManager::Create<OrcX86_64_Win32>( in createLocalLazyCallThroughManager() 121 return LocalLazyCallThroughManager::Create<OrcX86_64_SysV>( in createLocalLazyCallThroughManager()
|
| H A D | IndirectionUtils.cpp | 125 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 130 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 135 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 139 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 145 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 151 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 154 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 239 BasicBlock *EntryBlock = BasicBlock::Create(M.getContext(), "entry", &F); in makeStub() 287 Function::Create(cast<FunctionType>(F.getValueType()), in cloneFunctionDecl()
|
| /freebsd-12.1/tests/sys/fs/fusefs/ |
| H A D | create.cc | 42 class Create: public FuseTest { class 66 class Create_7_8: public Create { 70 Create::SetUp(); in SetUp() 118 TEST_F(Create, attr_cache) in TEST_F() argument 151 TEST_F(Create, clear_attr_cache) in TEST_F() argument 198 TEST_F(Create, eexist) in TEST_F() argument 215 TEST_F(Create, Enosys) in TEST_F() argument 264 TEST_F(Create, entry_cache_negative) in TEST_F() argument 335 TEST_F(Create, eperm) in TEST_F() argument 349 TEST_F(Create, ok) in TEST_F() argument [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/ |
| H A D | BodyFarm.cpp | 144 DeclRefExpr *DR = DeclRefExpr::Create( in makeDeclRefExpr() 171 return ImplicitCastExpr::Create(C, Ty, in makeImplicitCast() 182 return ImplicitCastExpr::Create(C, Ty, CK_IntegralCast, in makeIntegralCast() 211 return IntegerLiteral::Create(C, APValue, Ty, SourceLocation()); in makeIntegerLiteral() 219 return MemberExpr::Create( in makeMemberExpression() 286 DeclRefExpr::Create(/* Ctx =*/ C, in create_call_once_lambda_call() 295 return CXXOperatorCallExpr::Create( in create_call_once_lambda_call() 467 IfStmt::Create(C, SourceLocation(), in create_call_once() 512 CallExpr *CE = CallExpr::Create( in create_dispatch_once() 551 auto *If = IfStmt::Create(C, SourceLocation(), in create_dispatch_once() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | StmtOpenMP.h | 316 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, 1217 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, 1288 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, 1346 static OMPSectionDirective *Create(const ASTContext &C, 1408 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, 1456 static OMPMasterDirective *Create(const ASTContext &C, 1522 Create(const ASTContext &C, const DeclarationNameInfo &Name, 1598 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, 1670 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, 3220 static OMPDistributeParallelForSimdDirective *Create( [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Target/ARM/ |
| H A D | ARMConstantPoolValue.h | 163 static ARMConstantPoolConstant *Create(const Constant *C, unsigned ID); 164 static ARMConstantPoolConstant *Create(const GlobalValue *GV, 166 static ARMConstantPoolConstant *Create(const GlobalVariable *GV, 168 static ARMConstantPoolConstant *Create(const Constant *C, unsigned ID, 171 static ARMConstantPoolConstant *Create(const Constant *C, unsigned ID, 221 static ARMConstantPoolSymbol *Create(LLVMContext &C, StringRef s, unsigned ID, 256 static ARMConstantPoolMBB *Create(LLVMContext &C,
|
| H A D | ARMConstantPoolValue.cpp | 148 ARMConstantPoolConstant::Create(const Constant *C, unsigned ID) { in Create() function in ARMConstantPoolConstant 154 ARMConstantPoolConstant::Create(const GlobalVariable *GVar, in Create() function in ARMConstantPoolConstant 160 ARMConstantPoolConstant::Create(const GlobalValue *GV, in Create() function in ARMConstantPoolConstant 168 ARMConstantPoolConstant::Create(const Constant *C, unsigned ID, in Create() function in ARMConstantPoolConstant 175 ARMConstantPoolConstant::Create(const Constant *C, unsigned ID, in Create() function in ARMConstantPoolConstant 233 ARMConstantPoolSymbol *ARMConstantPoolSymbol::Create(LLVMContext &C, in Create() function in ARMConstantPoolSymbol 272 ARMConstantPoolMBB *ARMConstantPoolMBB::Create(LLVMContext &C, in Create() function in ARMConstantPoolMBB
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | DwarfEHPrepare.cpp | 124 ExnObj = ExtractValueInst::Create(RI->getOperand(0), 0, "exn.obj", RI); in GetExceptionObject() 226 CallInst *CI = CallInst::Create(RewindFunction, ExnObj, "", UnwindBB); in InsertUnwindResumeCalls() 234 BasicBlock *UnwindBB = BasicBlock::Create(Ctx, "unwind_resume", &Fn); in InsertUnwindResumeCalls() 235 PHINode *PN = PHINode::Create(Type::getInt8PtrTy(Ctx), ResumesLeft, in InsertUnwindResumeCalls() 242 BranchInst::Create(UnwindBB, Parent); in InsertUnwindResumeCalls() 251 CallInst *CI = CallInst::Create(RewindFunction, PN, "", UnwindBB); in InsertUnwindResumeCalls()
|
| /freebsd-12.1/cddl/usr.sbin/zfsd/tests/ |
| H A D | zfsd_unittest.cc | 152 static TestableCaseFile &Create(Vdev &vdev); 188 TestableCaseFile::Create(Vdev &vdev) in Create() function in TestableCaseFile 440 m_caseFile = &TestableCaseFile::Create(*m_vdev); in SetUp() 710 m_caseFile456 = &TestableCaseFile::Create(*m_vdev456); in TEST_F() 726 m_caseFile456 = &TestableCaseFile::Create(*m_vdev456); in TEST_F() 743 TestableCaseFile *CaseFile1 = &TestableCaseFile::Create(*m_vdev456); in TEST_F() 744 TestableCaseFile *CaseFile2 = &TestableCaseFile::Create(*m_vdev789); in TEST_F() 745 TestableCaseFile *CaseFile3 = &TestableCaseFile::Create(*m_vdev456); in TEST_F() 746 TestableCaseFile *CaseFile4 = &TestableCaseFile::Create(*m_vdev789); in TEST_F() 747 TestableCaseFile *CaseFile5 = &TestableCaseFile::Create(*m_vdev789); in TEST_F()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGCUDANV.cpp | 95 llvm::Function *DummyFunc = llvm::Function::Create( in makeDummyFunction() 99 llvm::BasicBlock::Create(Context, "", DummyFunc); in makeDummyFunction() 249 llvm::Function *RegisterKernelsFunc = llvm::Function::Create( in makeRegisterGlobalsFn() 368 llvm::Function *ModuleCtorFunc = llvm::Function::Create( in makeModuleCtorFunction() 373 llvm::BasicBlock::Create(Context, "entry", ModuleCtorFunc); in makeModuleCtorFunction() 461 llvm::BasicBlock::Create(Context, "if", ModuleCtorFunc); in makeModuleCtorFunction() 463 llvm::BasicBlock::Create(Context, "exit", ModuleCtorFunc); in makeModuleCtorFunction() 592 llvm::Function *ModuleDtorFunc = llvm::Function::Create( in makeModuleDtorFunction() 598 llvm::BasicBlock::Create(Context, "entry", ModuleDtorFunc); in makeModuleDtorFunction() 610 llvm::BasicBlock::Create(Context, "if", ModuleDtorFunc); in makeModuleDtorFunction() [all …]
|