/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | HLSLExternalSemaSource.cpp | 65 Record = CXXRecordDecl::Create(AST, TagDecl::TagKind::Class, HLSLNamespace, in BuiltinTypeDeclBuilder() 94 auto *Field = FieldDecl::Create( in addMemberVariable() 144 return DeclRefExpr::Create(AST, NestedNameSpecifierLoc(), SourceLocation(), in lookupBuiltinFunction() 149 return IntegerLiteral::Create( in emitResourceClassExpr() 167 CXXConstructorDecl *Constructor = CXXConstructorDecl::Create( in addDefaultHandleConstructor() 177 Expr *Call = CallExpr::Create(AST, Fn, {RCExpr}, AST.VoidPtrTy, VK_PRValue, in addDefaultHandleConstructor() 180 CXXThisExpr *This = CXXThisExpr::Create( in addDefaultHandleConstructor() 190 Call = CXXStaticCastExpr::Create( in addDefaultHandleConstructor() 197 BinaryOperator *Assign = BinaryOperator::Create( in addDefaultHandleConstructor() 202 CompoundStmt::Create(AST, {Assign}, FPOptionsOverride(), in addDefaultHandleConstructor() [all …]
|
H A D | SemaOpenACC.cpp | 208 case OpenACCClauseKind::Create: in doesClauseApplyToDirective() 512 return OpenACCDefaultClause::Create( in VisitDefaultClause() 545 return OpenACCIfClause::Create(Ctx, Clause.getBeginLoc(), in VisitIfClause() 578 return OpenACCSelfClause::Create( in VisitSelfClause() 633 return OpenACCNumGangsClause::Create( in VisitNumGangsClause() 654 return OpenACCNumWorkersClause::Create( in VisitNumWorkersClause() 675 return OpenACCVectorLengthClause::Create( in VisitVectorLengthClause() 696 return OpenACCAsyncClause::Create( in VisitAsyncClause() 716 return OpenACCPrivateClause::Create(Ctx, Clause.getBeginLoc(), in VisitPrivateClause() 733 return OpenACCFirstPrivateClause::Create( in VisitFirstPrivateClause() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | OpenACCClause.cpp | 48 OpenACCDefaultClause *OpenACCDefaultClause::Create(const ASTContext &C, in Create() function in OpenACCDefaultClause 59 OpenACCIfClause *OpenACCIfClause::Create(const ASTContext &C, in Create() function in OpenACCIfClause 79 OpenACCSelfClause *OpenACCSelfClause::Create(const ASTContext &C, in Create() function in OpenACCSelfClause 128 OpenACCNumWorkersClause::Create(const ASTContext &C, SourceLocation BeginLoc, in Create() function in OpenACCNumWorkersClause 149 OpenACCVectorLengthClause::Create(const ASTContext &C, SourceLocation BeginLoc, in Create() function in OpenACCVectorLengthClause 168 OpenACCAsyncClause *OpenACCAsyncClause::Create(const ASTContext &C, in Create() function in OpenACCAsyncClause 178 OpenACCWaitClause *OpenACCWaitClause::Create( in Create() function in OpenACCWaitClause 190 OpenACCNumGangsClause *OpenACCNumGangsClause::Create(const ASTContext &C, in Create() function in OpenACCNumGangsClause 200 OpenACCPrivateClause *OpenACCPrivateClause::Create(const ASTContext &C, in Create() function in OpenACCPrivateClause 210 OpenACCFirstPrivateClause *OpenACCFirstPrivateClause::Create( in Create() function in OpenACCFirstPrivateClause [all …]
|
H A D | StmtOpenMP.cpp | 37 OMPChildren *OMPChildren::Create(void *Mem, ArrayRef<OMPClause *> Clauses) { in Create() function in OMPChildren 43 OMPChildren *OMPChildren::Create(void *Mem, ArrayRef<OMPClause *> Clauses, in Create() function in OMPChildren 262 OMPMetaDirective *OMPMetaDirective::Create(const ASTContext &C, in Create() function in OMPMetaDirective 281 OMPParallelDirective *OMPParallelDirective::Create( in Create() function in OMPParallelDirective 300 OMPSimdDirective *OMPSimdDirective::Create( in Create() function in OMPSimdDirective 336 OMPForDirective *OMPForDirective::Create( in Create() function in OMPForDirective 410 OMPTileDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create() function in OMPTileDirective 431 OMPUnrollDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create() function in OMPUnrollDirective 453 OMPReverseDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create() function in OMPReverseDirective 470 OMPInterchangeDirective *OMPInterchangeDirective::Create( in Create() function in OMPInterchangeDirective [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 86 OMPRequiresDecl *OMPRequiresDecl::Create(ASTContext &C, DeclContext *DC, in Create() function in OMPRequiresDecl 114 OMPDeclareReductionDecl *OMPDeclareReductionDecl::Create( in Create() function in OMPDeclareReductionDecl 144 OMPDeclareMapperDecl *OMPDeclareMapperDecl::Create( in Create() function in OMPDeclareMapperDecl 176 OMPCapturedExprDecl *OMPCapturedExprDecl::Create(ASTContext &C, DeclContext *DC, in Create() function in OMPCapturedExprDecl
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | LowerGlobalDtors.cpp | 176 Function *CallDtors = Function::Create( in runImpl() 186 BasicBlock *BB = BasicBlock::Create(C, "body", CallDtors); in runImpl() 191 CallInst::Create(VoidVoid, Dtor, "", BB); in runImpl() 192 ReturnInst::Create(C, BB); in runImpl() 194 Function *RegisterCallDtors = Function::Create( in runImpl() 204 BasicBlock *EntryBB = BasicBlock::Create(C, "entry", RegisterCallDtors); in runImpl() 205 BasicBlock *FailBB = BasicBlock::Create(C, "fail", RegisterCallDtors); in runImpl() 206 BasicBlock *RetBB = BasicBlock::Create(C, "return", RegisterCallDtors); in runImpl() 210 Value *Res = CallInst::Create(AtExit, Args, "call", EntryBB); in runImpl() 213 BranchInst::Create(FailBB, RetBB, Cmp, EntryBB); in runImpl() [all …]
|
H A D | UnifyFunctionExitNodes.cpp | 35 BasicBlock::Create(F.getContext(), "UnifiedUnreachableBlock", &F); in createUnifyFunctionExitNodesPass() 40 BranchInst::Create(UnreachableBlock, BB); in getAnalysisUsage() 59 BasicBlock *NewRetBlock = BasicBlock::Create(F.getContext(), in unifyUnreachableBlocks() 64 ReturnInst::Create(F.getContext(), nullptr, NewRetBlock); in unifyUnreachableBlocks() 67 PN = PHINode::Create(F.getReturnType(), ReturningBlocks.size(), in unifyUnreachableBlocks() 70 ReturnInst::Create(F.getContext(), PN, NewRetBlock); in unifyReturnBlocks() 82 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()->getIterator()); in CreateLoop() 45 BranchInst::Create(Header, Exit, Cond, Latch); in CreateLoop()
|
/freebsd/tools/tools/nanobsd/embedded/ |
H A D | README | 22 beaglebone.cfg Create a bootable beaglebone image 23 qemu-amd64.cfg Create a bootable amd64 image for qemu (W) 24 qemu-i386.cfg Create a bootable i386 image for qemu (W) 25 qemu-powerpc.cfg Create a bootable 32-bit powerpc image for 27 qemu-powerpc64.cfg Create a bootable 64-bit IBM-flavor image for 29 rpi.cfg Create a bootable image for Raspberry Pi B 30 rpi2.cfg Create a bootable image for Raspberry Pi2
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | ValueObjectConstResult.cpp | 29 ValueObjectSP ValueObjectConstResult::Create(ExecutionContextScope *exe_scope, in Create() function in ValueObjectConstResult 33 auto manager_sp = ValueObjectManager::Create(); in Create() 52 ValueObjectSP ValueObjectConstResult::Create(ExecutionContextScope *exe_scope, in Create() function in ValueObjectConstResult 57 auto manager_sp = ValueObjectManager::Create(); in Create() 85 ValueObjectSP ValueObjectConstResult::Create(ExecutionContextScope *exe_scope, in Create() function in ValueObjectConstResult 92 auto manager_sp = ValueObjectManager::Create(); in Create() 99 ValueObjectSP ValueObjectConstResult::Create(ExecutionContextScope *exe_scope, in Create() function in ValueObjectConstResult 103 auto manager_sp = ValueObjectManager::Create(); in Create() 127 ValueObjectSP ValueObjectConstResult::Create(ExecutionContextScope *exe_scope, in Create() function in ValueObjectConstResult 133 auto manager_sp = ValueObjectManager::Create(); in Create() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyFixFunctionBitcasts.cpp | 112 Function *Wrapper = Function::Create(Ty, Function::PrivateLinkage, in createWrapper() 114 BasicBlock *BB = BasicBlock::Create(M->getContext(), "body", Wrapper); in createWrapper() 168 CallInst *Call = CallInst::Create(F, Args, "", BB); in createWrapper() 174 ReturnInst::Create(M->getContext(), BB); in createWrapper() 177 ReturnInst::Create(M->getContext(), UndefValue::get(RtnType), BB); in createWrapper() 179 ReturnInst::Create(M->getContext(), Call, BB); in createWrapper() 185 ReturnInst::Create(M->getContext(), Cast, BB); in createWrapper() 202 Wrapper = Function::Create(Ty, Function::PrivateLinkage, in createWrapper() 204 BasicBlock *BB = BasicBlock::Create(M->getContext(), "body", Wrapper); in createWrapper() 258 CallMain = CallInst::Create(MainTy, Main, Args, "call_main"); in runOnModule()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | OpenACCClause.h | 69 Create(const ASTContext &Ctx, SourceLocation BeginLoc, SourceLocation EndLoc); 91 Create(const ASTContext &Ctx, SourceLocation BeginLoc, SourceLocation EndLoc); 112 Create(const ASTContext &Ctx, SourceLocation BeginLoc, SourceLocation EndLoc); 138 Create(const ASTContext &Ctx, SourceLocation BeginLoc, SourceLocation EndLoc); 164 Create(const ASTContext &Ctx, SourceLocation BeginLoc, SourceLocation EndLoc); 190 Create(const ASTContext &Ctx, SourceLocation BeginLoc, SourceLocation EndLoc); 275 Create(const ASTContext &C, OpenACCClauseKind K, SourceLocation BeginLoc, 306 static OpenACCDefaultClause *Create(const ASTContext &C, 358 static OpenACCIfClause *Create(const ASTContext &C, SourceLocation BeginLoc, 372 static OpenACCSelfClause *Create(const ASTContext &C, SourceLocation BeginLoc, [all …]
|
H A D | StmtOpenMP.h | 318 auto *Data = OMPChildren::Create(reinterpret_cast<T *>(Mem) + 1, Clauses, in createDirective() 668 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, 1619 static OMPSimdDirective *Create(const ASTContext &C, SourceLocation StartLoc, 1698 static OMPForDirective *Create(const ASTContext &C, SourceLocation StartLoc, 1775 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, 1846 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, 1913 static OMPSectionDirective *Create(const ASTContext &C, 1969 static OMPScopeDirective *Create(const ASTContext &C, SourceLocation StartLoc, 2022 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, 2071 static OMPMasterDirective *Create(const ASTContext &C, [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | InstrTypes.h | 124 static UnaryOperator *Create(UnaryOps Op, Value *S, 132 static UnaryOperator *Create##OPC(Value *V, const Twine &Name = "") {\ 133 return Create(Instruction::OPC, V, Name);\ 137 static UnaryOperator *Create##OPC(Value *V, const Twine &Name, \ 139 return Create(Instruction::OPC, V, Name, BB);\ 143 static UnaryOperator *Create##OPC(Value *V, const Twine &Name, \ 145 return Create(Instruction::OPC, V, Name, I);\ 149 static UnaryOperator *Create##OPC(Value *V, const Twine &Name, \ 151 return Create(Instruction::OPC, V, Name, It);\ 159 UnaryOperator *UO = Create(Opc, V, Name, InsertBefore); [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUUnifyDivergentExitNodes.cpp | 146 BasicBlock *NewRetBlock = BasicBlock::Create(F.getContext(), Name, &F); in unifyReturnBlockSet() 171 BranchInst::Create(NewRetBlock, BB); in unifyReturnBlockSet() 229 DummyReturnBB = BasicBlock::Create(F.getContext(), in run() 233 ReturnInst::Create(F.getContext(), RetVal, DummyReturnBB); in run() 241 BranchInst::Create(LoopHeaderBB, DummyReturnBB, BoolTrue, BB); in run() 262 BranchInst::Create(TransitionBB, DummyReturnBB, BoolTrue, BB); in run() 275 UnreachableBlock = BasicBlock::Create(F.getContext(), in run() 283 BranchInst::Create(UnreachableBlock, BB); in run() 303 CallInst::Create(UnreachableIntrin, {}, "", UnreachableBlock); in run() 308 ReturnInst::Create(F.getContext(), RetVal, UnreachableBlock); in run()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | LazyReexports.cpp | 117 return LocalLazyCallThroughManager::Create<OrcAArch64>(ES, in createLocalLazyCallThroughManager() 121 return LocalLazyCallThroughManager::Create<OrcI386>(ES, ErrorHandlerAddr); in createLocalLazyCallThroughManager() 124 return LocalLazyCallThroughManager::Create<OrcLoongArch64>( in createLocalLazyCallThroughManager() 128 return LocalLazyCallThroughManager::Create<OrcMips32Be>(ES, in createLocalLazyCallThroughManager() 132 return LocalLazyCallThroughManager::Create<OrcMips32Le>(ES, in createLocalLazyCallThroughManager() 137 return LocalLazyCallThroughManager::Create<OrcMips64>(ES, ErrorHandlerAddr); in createLocalLazyCallThroughManager() 140 return LocalLazyCallThroughManager::Create<OrcRiscv64>(ES, in createLocalLazyCallThroughManager() 145 return LocalLazyCallThroughManager::Create<OrcX86_64_Win32>( in createLocalLazyCallThroughManager() 148 return LocalLazyCallThroughManager::Create<OrcX86_64_SysV>( in createLocalLazyCallThroughManager()
|
H A D | IndirectionUtils.cpp | 129 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 134 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 139 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 144 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 148 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 154 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 159 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 165 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 168 return CCMgrT::Create(ES, ErrorHandlerAddress); in createLocalCompileCallbackManager() 265 BasicBlock *EntryBlock = BasicBlock::Create(M.getContext(), "entry", &F); in makeStub() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Frontend/Offloading/ |
H A D | OffloadWrapper.cpp | 194 Function::Create(FuncTy, GlobalValue::InternalLinkage, in createUnregisterFunction() 205 IRBuilder<> Builder(BasicBlock::Create(C, "entry", Func)); in createUnregisterFunction() 216 auto *Func = Function::Create(FuncTy, GlobalValue::InternalLinkage, in createRegisterFunction() 233 IRBuilder<> Builder(BasicBlock::Create(C, "entry", Func)); in createRegisterFunction() 377 Function::Create(RegGlobalsTy, GlobalValue::InternalLinkage, in createRegisterGlobalsFunction() 382 IRBuilder<> Builder(BasicBlock::Create(C, "entry", RegGlobalsFn)); in createRegisterGlobalsFunction() 383 auto *EntryBB = BasicBlock::Create(C, "while.entry", RegGlobalsFn); in createRegisterGlobalsFunction() 384 auto *IfThenBB = BasicBlock::Create(C, "if.then", RegGlobalsFn); in createRegisterGlobalsFunction() 385 auto *IfElseBB = BasicBlock::Create(C, "if.else", RegGlobalsFn); in createRegisterGlobalsFunction() 386 auto *SwGlobalBB = BasicBlock::Create(C, "sw.global", RegGlobalsFn); in createRegisterGlobalsFunction() [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | ValueObjectConstResult.h | 39 Create(ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order, 43 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 48 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 54 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 58 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, 63 static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
|
/freebsd/tests/sys/fs/fusefs/ |
H A D | create.cc | 40 class Create: public FuseTest { class 64 class Create_7_8: public Create { 68 Create::SetUp(); in SetUp() 116 TEST_F(Create, attr_cache) in TEST_F() argument 149 TEST_F(Create, clear_attr_cache) in TEST_F() argument 196 TEST_F(Create, eexist) in TEST_F() argument 213 TEST_F(Create, Enosys) in TEST_F() argument 262 TEST_F(Create, entry_cache_negative) in TEST_F() argument 296 TEST_F(Create, entry_cache_negative_purge) in TEST_F() argument 333 TEST_F(Create, eperm) in TEST_F() argument [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Architecture/AArch64/ |
H A D | ArchitectureAArch64.cpp | 24 &ArchitectureAArch64::Create); in Terminate() 28 PluginManager::UnregisterPlugin(&ArchitectureAArch64::Create); 32 ArchitectureAArch64::Create(const ArchSpec &arch) { in Create() 29 ArchitectureAArch64::Create(const ArchSpec &arch) { Create() function in ArchitectureAArch64
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | LoopIdiomVectorize.cpp | 399 BranchInst *JumpToVectorLoop = BranchInst::Create(VectorLoopStartBlock); in createMaskedFindMismatch() 429 BranchInst *VectorEarlyExit = BranchInst::Create( in createMaskedFindMismatch() 453 BranchInst::Create(VectorLoopStartBlock, EndBlock, PredHasActiveLanes); in createMaskedFindMismatch() 492 auto *JumpToVectorLoop = BranchInst::Create(VectorLoopStartBlock); in createPredicatedFindMismatch() 542 auto *VectorEarlyExit = BranchInst::Create(VectorLoopMismatchBlock, in createPredicatedFindMismatch() 561 BranchInst::Create(VectorLoopStartBlock, EndBlock, ExitCond); in createPredicatedFindMismatch() 614 BasicBlock *MinItCheckBlock = BasicBlock::Create( in expandFindMismatch() 620 BasicBlock *MemCheckBlock = BasicBlock::Create( in expandFindMismatch() 623 VectorLoopPreheaderBlock = BasicBlock::Create( in expandFindMismatch() 626 VectorLoopStartBlock = BasicBlock::Create(Ctx, "mismatch_vec_loop", in expandFindMismatch() [all …]
|
/freebsd/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/contrib/llvm-project/lldb/source/Plugins/Architecture/PPC64/ |
H A D | ArchitecturePPC64.cpp | 28 &ArchitecturePPC64::Create); in LLDB_PLUGIN_DEFINE() 32 PluginManager::UnregisterPlugin(&ArchitecturePPC64::Create); in Terminate() 35 std::unique_ptr<Architecture> ArchitecturePPC64::Create(const ArchSpec &arch) { in Create() function in ArchitecturePPC64
|