| /freebsd-13.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 32 qemu-powerpc64.cfg Create a bootable 64-bit IBM-flavor image for 34 rpi.cfg Create a bootable image for Raspberry Pi B 35 rpi2.cfg Create a bootable image for Raspberry Pi2
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyLowerGlobalDtors.cpp | 151 Function *CallDtors = Function::Create( in runOnModule() 161 BasicBlock *BB = BasicBlock::Create(C, "body", CallDtors); in runOnModule() 166 CallInst::Create(VoidVoid, Dtor, "", BB); in runOnModule() 167 ReturnInst::Create(C, BB); in runOnModule() 169 Function *RegisterCallDtors = Function::Create( in runOnModule() 180 BasicBlock *FailBB = BasicBlock::Create(C, "fail", RegisterCallDtors); in runOnModule() 181 BasicBlock *RetBB = BasicBlock::Create(C, "return", RegisterCallDtors); in runOnModule() 185 Value *Res = CallInst::Create(AtExit, Args, "call", EntryBB); in runOnModule() 188 BranchInst::Create(FailBB, RetBB, Cmp, EntryBB); in runOnModule() 193 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() 270 CallMain = CallInst::Create(MainTy, Casted, Args, "call_main"); in runOnModule()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | UnifyFunctionExitNodes.cpp | 59 BasicBlock::Create(F.getContext(), "UnifiedUnreachableBlock", &F); in unifyUnreachableBlocks() 64 BranchInst::Create(UnreachableBlock, BB); in unifyUnreachableBlocks() 83 BasicBlock *NewRetBlock = BasicBlock::Create(F.getContext(), in unifyReturnBlocks() 88 ReturnInst::Create(F.getContext(), nullptr, NewRetBlock); in unifyReturnBlocks() 91 PN = PHINode::Create(F.getReturnType(), ReturningBlocks.size(), in unifyReturnBlocks() 94 ReturnInst::Create(F.getContext(), PN, NewRetBlock); in unifyReturnBlocks() 106 BranchInst::Create(NewRetBlock, BB); in unifyReturnBlocks()
|
| H A D | MatrixUtils.cpp | 28 BasicBlock *Header = BasicBlock::Create( in CreateLoop() 30 BasicBlock *Body = BasicBlock::Create(Header->getContext(), Name + ".body", in CreateLoop() 32 BasicBlock *Latch = BasicBlock::Create(Header->getContext(), Name + ".latch", in CreateLoop() 36 BranchInst::Create(Body, Header); in CreateLoop() 37 BranchInst::Create(Latch, Body); in CreateLoop() 39 PHINode::Create(I32Ty, 2, Name + ".iv", Header->getTerminator()); in CreateLoop() 45 BranchInst::Create(Header, Exit, Cond, Latch); in CreateLoop()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | ValueObjectConstResult.cpp | 28 ValueObjectSP ValueObjectConstResult::Create(ExecutionContextScope *exe_scope, in Create() function in ValueObjectConstResult 32 auto manager_sp = ValueObjectManager::Create(); in Create() 51 ValueObjectSP ValueObjectConstResult::Create(ExecutionContextScope *exe_scope, in Create() function in ValueObjectConstResult 56 auto manager_sp = ValueObjectManager::Create(); in Create() 84 ValueObjectSP ValueObjectConstResult::Create(ExecutionContextScope *exe_scope, in Create() function in ValueObjectConstResult 91 auto manager_sp = ValueObjectManager::Create(); in Create() 98 ValueObjectSP ValueObjectConstResult::Create(ExecutionContextScope *exe_scope, in Create() function in ValueObjectConstResult 102 auto manager_sp = ValueObjectManager::Create(); in Create() 126 ValueObjectSP ValueObjectConstResult::Create(ExecutionContextScope *exe_scope, in Create() function in ValueObjectConstResult 132 auto manager_sp = ValueObjectManager::Create(); in Create() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUUnifyDivergentExitNodes.cpp | 142 BasicBlock *NewRetBlock = BasicBlock::Create(F.getContext(), Name, &F); in unifyReturnBlockSet() 167 BranchInst::Create(NewRetBlock, BB); in unifyReturnBlockSet() 220 DummyReturnBB = BasicBlock::Create(F.getContext(), in runOnFunction() 224 ReturnInst::Create(F.getContext(), RetVal, DummyReturnBB); in runOnFunction() 232 BranchInst::Create(LoopHeaderBB, DummyReturnBB, BoolTrue, BB); in runOnFunction() 253 BranchInst::Create(TransitionBB, DummyReturnBB, BoolTrue, BB); in runOnFunction() 266 UnreachableBlock = BasicBlock::Create(F.getContext(), in runOnFunction() 274 BranchInst::Create(UnreachableBlock, BB); in runOnFunction() 294 CallInst::Create(UnreachableIntrin, {}, "", UnreachableBlock); in runOnFunction() 299 ReturnInst::Create(F.getContext(), RetVal, UnreachableBlock); in runOnFunction()
|
| 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(IntMask, 0, "phi.broken", &Target->front()); in handleLoop() 280 Term->setCondition(CallInst::Create(Loop, Arg, "", Term)); in handleLoop() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | BodyFarm.cpp | 117 return BinaryOperator::Create( in makeAssignment() 126 return BinaryOperator::Create( in makeComparison() 141 DeclRefExpr *DR = DeclRefExpr::Create( in makeDeclRefExpr() 168 return ImplicitCastExpr::Create(C, Ty, in makeImplicitCast() 214 return MemberExpr::Create( in makeMemberExpression() 281 DeclRefExpr::Create(/* Ctx =*/ C, in create_call_once_lambda_call() 290 return CXXOperatorCallExpr::Create( in create_call_once_lambda_call() 464 IfStmt::Create(C, SourceLocation(), in create_call_once() 511 CallExpr *CE = CallExpr::Create( in create_dispatch_once() 550 auto *If = IfStmt::Create(C, SourceLocation(), in create_dispatch_once() [all …]
|
| /freebsd-13.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-13.1/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | ValueObjectConstResult.h | 38 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,
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | InstrTypes.h | 123 static UnaryOperator *Create(UnaryOps Op, Value *S, 140 return Create(Instruction::OPC, V, Name);\ 146 return Create(Instruction::OPC, V, Name, BB);\ 152 return Create(Instruction::OPC, V, Name, I);\ 233 return Create(Instruction::OPC, V1, V2, Name);\ 286 BinaryOperator *BO = Create(Opc, V1, V2, Name); 305 BinaryOperator *BO = Create(Opc, V1, V2, Name); 452 static CastInst *Create( 465 static CastInst *Create( 778 static CmpInst *Create(OtherOps Op, [all …]
|
| H A D | Instructions.h | 1771 static SelectInst *Create(Value *C, Value *S1, Value *S2, 1781 static SelectInst *Create(Value *C, Value *S1, Value *S2, 2370 static ExtractValueInst *Create(Value *Agg, 2378 static ExtractValueInst *Create(Value *Agg, 2494 static InsertValueInst *Create(Value *Agg, Value *Val, 2501 static InsertValueInst *Create(Value *Agg, Value *Val, 2982 static ReturnInst* Create(LLVMContext &C, Value *retVal, 3088 static BranchInst *Create(BasicBlock *IfTrue, 4044 static CallBrInst *Create(FunctionCallee Func, 4060 static CallBrInst *Create(CallBrInst *CBI, [all …]
|
| H A D | NoFolder.h | 149 return BinaryOperator::Create(Opc, LHS, RHS); in CreateBinOp() 175 return UnaryOperator::Create(Opc, C); in CreateUnOp() 197 return GetElementPtrInst::Create(Ty, C, IdxList); in CreateGetElementPtr() 224 return CastInst::Create(Op, C, DestTy); in CreateCast() 289 return SelectInst::Create(C, True, False); in CreateSelect() 294 return ExtractElementInst::Create(Vec, Idx); in CreateExtractElement() 299 return InsertElementInst::Create(Vec, NewElt, Idx); in CreateInsertElement() 309 return ExtractValueInst::Create(Agg, IdxList); in CreateExtractValue() 314 return InsertValueInst::Create(Agg, Val, IdxList); in CreateInsertValue()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExprConcepts.cpp | 45 ? ASTConstraintSatisfaction::Create(C, *Satisfaction) in ConceptSpecializationExpr() 72 ConceptSpecializationExpr::Create(const ASTContext &C, in Create() function in ConceptSpecializationExpr 100 ? ASTConstraintSatisfaction::Create(C, *Satisfaction) in ConceptSpecializationExpr() 114 ConceptSpecializationExpr::Create(const ASTContext &C, in Create() function in ConceptSpecializationExpr 128 ConceptSpecializationExpr::Create(ASTContext &C, EmptyShell Empty, in Create() function in ConceptSpecializationExpr 194 RequiresExpr::Create(ASTContext &C, SourceLocation RequiresKWLoc, in Create() function in RequiresExpr 208 RequiresExpr::Create(ASTContext &C, EmptyShell Empty, in Create() function in RequiresExpr
|
| H A D | StmtOpenMP.cpp | 256 OMPParallelDirective *OMPParallelDirective::Create( in Create() function in OMPParallelDirective 311 OMPForDirective *OMPForDirective::Create( in Create() function in OMPForDirective 440 OMPSectionsDirective *OMPSectionsDirective::Create( in Create() function in OMPSectionsDirective 510 OMPCriticalDirective *OMPCriticalDirective::Create( in Create() function in OMPCriticalDirective 808 OMPAtomicDirective *OMPAtomicDirective::Create( in Create() function in OMPAtomicDirective 969 OMPTaskLoopDirective *OMPTaskLoopDirective::Create( in Create() function in OMPTaskLoopDirective 1193 OMPParallelMasterTaskLoopSimdDirective::Create( in Create() function in OMPParallelMasterTaskLoopSimdDirective 1359 OMPDistributeParallelForSimdDirective::Create( in Create() function in OMPDistributeParallelForSimdDirective 1632 OMPTeamsDistributeParallelForSimdDirective::Create( in Create() function in OMPTeamsDistributeParallelForSimdDirective 1692 OMPTeamsDistributeParallelForDirective::Create( in Create() function in OMPTeamsDistributeParallelForDirective [all …]
|
| H A D | DeclOpenMP.cpp | 28 OMPThreadPrivateDecl *OMPThreadPrivateDecl::Create(ASTContext &C, in Create() function in OMPThreadPrivateDecl 57 OMPAllocateDecl *OMPAllocateDecl::Create(ASTContext &C, DeclContext *DC, in Create() function in OMPAllocateDecl 85 OMPRequiresDecl *OMPRequiresDecl::Create(ASTContext &C, DeclContext *DC, in Create() function in OMPRequiresDecl 112 OMPDeclareReductionDecl *OMPDeclareReductionDecl::Create( in Create() function in OMPDeclareReductionDecl 142 OMPDeclareMapperDecl *OMPDeclareMapperDecl::Create( in Create() function in OMPDeclareMapperDecl 174 OMPCapturedExprDecl *OMPCapturedExprDecl::Create(ASTContext &C, DeclContext *DC, in Create() function in OMPCapturedExprDecl
|
| H A D | DeclTemplate.cpp | 441 ClassTemplateDecl *ClassTemplateDecl::Create(ASTContext &C, in Create() function in ClassTemplateDecl 731 NonTypeTemplateParmDecl *NonTypeTemplateParmDecl::Create( in Create() function in NonTypeTemplateParmDecl 876 ArgsAsWritten = ASTTemplateArgumentListInfo::Create(C, in Create() 1047 Create(ASTContext &Context, TagKind TK,DeclContext *DC, in Create() function in ClassTemplatePartialSpecializationDecl 1342 VarTemplatePartialSpecializationDecl::Create( in Create() function in VarTemplatePartialSpecializationDecl 1368 auto *T = TemplateTypeParmDecl::Create( in createMakeIntegerSeqParameterList() 1377 auto *N = NonTypeTemplateParmDecl::Create( in createMakeIntegerSeqParameterList() 1384 auto *TPL = TemplateParameterList::Create( in createMakeIntegerSeqParameterList() 1394 auto *TemplateTypeParm = TemplateTypeParmDecl::Create( in createMakeIntegerSeqParameterList() 1418 auto *Index = NonTypeTemplateParmDecl::Create( in createTypePackElementParameterList() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Architecture/AArch64/ |
| H A D | ArchitectureAArch64.cpp | 25 &ArchitectureAArch64::Create); in Initialize() 29 PluginManager::UnregisterPlugin(&ArchitectureAArch64::Create); in Terminate() 33 ArchitectureAArch64::Create(const ArchSpec &arch) { in Create() function in ArchitectureAArch64
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | LazyReexports.cpp | 116 return LocalLazyCallThroughManager::Create<OrcAArch64>(ES, in createLocalLazyCallThroughManager() 120 return LocalLazyCallThroughManager::Create<OrcI386>(ES, ErrorHandlerAddr); in createLocalLazyCallThroughManager() 123 return LocalLazyCallThroughManager::Create<OrcMips32Be>(ES, in createLocalLazyCallThroughManager() 127 return LocalLazyCallThroughManager::Create<OrcMips32Le>(ES, in createLocalLazyCallThroughManager() 132 return LocalLazyCallThroughManager::Create<OrcMips64>(ES, ErrorHandlerAddr); in createLocalLazyCallThroughManager() 136 return LocalLazyCallThroughManager::Create<OrcX86_64_Win32>( in createLocalLazyCallThroughManager() 139 return LocalLazyCallThroughManager::Create<OrcX86_64_SysV>( in createLocalLazyCallThroughManager()
|
| H A D | IndirectionUtils.cpp | 127 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 132 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 137 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 141 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 147 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 153 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 156 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 242 BasicBlock *EntryBlock = BasicBlock::Create(M.getContext(), "entry", &F); in makeStub() 290 Function::Create(cast<FunctionType>(F.getValueType()), in cloneFunctionDecl()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMConstantPoolValue.h | 160 static ARMConstantPoolConstant *Create(const Constant *C, unsigned ID); 161 static ARMConstantPoolConstant *Create(const GlobalValue *GV, 163 static ARMConstantPoolConstant *Create(const GlobalVariable *GV, 165 static ARMConstantPoolConstant *Create(const Constant *C, unsigned ID, 168 static ARMConstantPoolConstant *Create(const Constant *C, unsigned ID, 218 static ARMConstantPoolSymbol *Create(LLVMContext &C, StringRef s, unsigned ID, 253 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-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtOpenMP.h | 309 auto *Data = OMPChildren::Create(reinterpret_cast<T *>(Mem) + 1, Clauses, in createDirective() 652 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, 1689 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, 1760 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, 1827 static OMPSectionDirective *Create(const ASTContext &C, 1934 static OMPMasterDirective *Create(const ASTContext &C, 1997 Create(const ASTContext &C, const DeclarationNameInfo &Name, 2680 static OMPDepobjDirective *Create(const ASTContext &C, 4127 static OMPDistributeParallelForSimdDirective *Create( 4675 static OMPTargetTeamsDirective *Create(const ASTContext &C, [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Architecture/PPC64/ |
| H A D | ArchitecturePPC64.cpp | 32 &ArchitecturePPC64::Create); in Initialize() 36 PluginManager::UnregisterPlugin(&ArchitecturePPC64::Create); in Terminate() 39 std::unique_ptr<Architecture> ArchitecturePPC64::Create(const ArchSpec &arch) { in Create() function in ArchitecturePPC64
|