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

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPURewriteOutArguments.cpp1 //===- AMDGPURewriteOutArgumentsPass.cpp - Create struct returns ----------===//
364 Function *NewFunc = Function::Create(NewFuncTy, Function::PrivateLinkage,
444 BasicBlock *StubBB = BasicBlock::Create(Ctx, "", &F);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp573 // Create an entry for every spilled value.
695 CleanupPadInst::Create(CatchSwitch->getParentPad(), {}, "", CurrentBlock);
697 CleanupReturnInst::Create(CleanupPad, NewBlock, CurrentBlock);
702 // with GetElementPointer from coroutine frame + loads and stores. Create an
754 // Create a GEP with the given index into the coroutine frame for the original
777 // Create a load instruction to reload the spilled value from the coroutine
1020 auto *NewBB = BasicBlock::Create(BB->getContext(), "", BB->getParent(), Succ);
1026 auto *Terminator = BranchInst::Create(Succ, NewBB);
1039 auto *NewCleanupPad = CleanupPadInst::Create(ParentPad, {}, "", NewBB);
1040 CleanupReturnInst::Create(NewCleanupPa
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp858 auto *BD = BindingDecl::Create(Context, DC, B.NameLoc, B.Name);
1186 E = ImplicitCastExpr::Create(S.Context, E.get()->getType(), CK_NoOp,
1206 Expr *Get = UnresolvedLookupExpr::Create(
1230 auto *RefVD = VarDecl::Create(
2555 // Create the base specifier.
2973 AccessSpecDecl *ASDecl = AccessSpecDecl::Create(Context, Access, CurContext,
3445 Member->addAttr(OverrideAttr::Create(Context, VS.getOverrideLoc(),
3448 Member->addAttr(FinalAttr::Create(
3888 // Create a synthetic function scope to represent the call to the constructor
4044 Expr *List = ParenListExpr::Create(Contex
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h1378 static CompoundStmt *Create(const ASTContext &C, ArrayRef<Stmt *> Stmts,
1591 static CaseStmt *Create(const ASTContext &Ctx, Expr *lhs, Expr *rhs,
1837 static AttributedStmt *Create(const ASTContext &C, SourceLocation Loc,
1921 /// Create an IfStmt.
1922 static IfStmt *Create(const ASTContext &Ctx, SourceLocation IL,
1927 /// Create an empty IfStmt optionally with storage for an else statement,
2120 /// Create a switch statement.
2121 static SwitchStmt *Create(const ASTContext &Ctx, Stmt *Init, VarDecl *Var,
2124 /// Create an empty switch statement optionally with storage for
2299 /// Create
[all...]
H A DDeclFriend.h111 static FriendDecl *Create(ASTContext &C, DeclContext *DC,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp889 return SelectInst::Create(X, AddOne(Op1C), Op1);
893 return SelectInst::Create(X, SubOne(Op1C), Op1);
924 return CastInst::Create(Instruction::SExt, X, Ty);
1089 return CallInst::Create(getUAddSat(), { X, Y });
1095 return CallInst::Create(getUAddSat(), { X, ConstantInt::get(Ty, *C) });
1377 return SelectInst::Create(SI->getCondition(), N, A);
1381 return SelectInst::Create(SI->getCondition(), A, N);
1809 return SelectInst::Create(X, SubOne(C), C);
1812 return SelectInst::Create(X, AddOne(C), C);
1947 SelectInst::Create(Con
[all...]
H A DInstructionCombining.cpp455 BinaryOperator::Create(Opcode, A, B);
956 return SelectInst::Create(SI->getCondition(), NewTV, NewFV, "", nullptr, SI);
1038 PHINode *NewPN = PHINode::Create(I.getType(), PN->getNumIncomingValues());
1531 Instruction *NewBO = BinaryOperator::Create(Opcode, V1, V2);
1654 Instruction *R = BinaryOperator::Create(Opcode, NewSplat, OtherOp);
1723 return CastInst::Create(CastOpc, NarrowBO, BO.getType());
1759 return SelectInst::Create(Cond, NewTrueC, NewFalseC, "", nullptr, Sel);
1989 auto *NewGEP = GetElementPtrInst::Create(GEPEltType, NewSrc, {SO1});
2056 : GetElementPtrInst::Create(Src->getSourceElementType(),
2094 return CastInst::Create(Instructio
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DAtomicExpandPass.cpp879 BasicBlock::Create(Ctx, "partword.cmpxchg.failure", F, EndBB);
880 auto LoopBB = BasicBlock::Create(Ctx, "partword.cmpxchg.loop", F, FailureBB);
1041 BasicBlock *LoopBB = BasicBlock::Create(Ctx, "atomicrmw.start", F, ExitBB);
1190 auto FailureBB = BasicBlock::Create(Ctx, "cmpxchg.failure", F, ExitBB);
1191 auto NoStoreBB = BasicBlock::Create(Ctx, "cmpxchg.nostore", F, FailureBB);
1192 auto SuccessBB = BasicBlock::Create(Ctx, "cmpxchg.success", F, NoStoreBB);
1194 BasicBlock::Create(Ctx, "cmpxchg.releasedload", F, SuccessBB);
1196 BasicBlock::Create(Ctx, "cmpxchg.trystore", F, ReleasedLoadBB);
1198 BasicBlock::Create(Ctx, "cmpxchg.fencedstore", F, TryStoreBB);
1199 auto StartBB = BasicBlock::Create(Ct
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DProcessInfo.h226 Create(const FileSpec &filename);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DScriptInterpreter.cpp123 ScriptInterpreterIORedirect::Create(bool enable_io, Debugger &debugger, function in class:ScriptInterpreterIORedirect
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc64.cpp499 static llvm::Expected<ReturnValueExtractor> Create(Thread &thread, function in class:__anon2811::ReturnValueExtractor
538 valobj_sp = ValueObjectConstResult::Create(
682 return ValueObjectConstResult::Create(&m_thread, m_type, ConstString(""),
934 auto exp_extractor = ReturnValueExtractor::Create(thread, type);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DCxxModuleHandler.cpp172 T *to_d = T::Create(std::forward<Args>(args)...);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSIndexPath.cpp201 return ValueObjectConstResult::Create(
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptx86ABIFixups.cpp178 // Create the type cast from the old function type to the new one
194 llvm::CallInst::Create(new_func_type, new_func_addr_load, new_call_args,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationReplayServer.cpp212 // Create a thread that watches our internal state and controls which
298 multi_loader = repro::MultiLoader<repro::GDBRemoteProvider>::Create(
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DAppleDWARFIndex.cpp20 std::unique_ptr<AppleDWARFIndex> AppleDWARFIndex::Create( function in class:AppleDWARFIndex
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DStackFrameRecognizer.cpp43 args_synthesized->Append(ValueObjectRecognizerSynthesizedValue::Create(
/freebsd-13-stable/contrib/llvm-project/lldb/tools/lldb-server/
H A Dlldb-platform.cpp282 std::unique_ptr<Acceptor> acceptor_up(Acceptor::Create(
/freebsd-13-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-13-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-13-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-13-stable/cddl/usr.sbin/zfsd/
H A Dzfsd.cc209 CaseFile::Create(vdev);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInferAddressSpaces.cpp574 PHINode *NewPHI = PHINode::Create(NewPtrType, PHI->getNumIncomingValues());
584 GetElementPtrInst *NewGEP = GetElementPtrInst::Create(
592 return SelectInst::Create(I->getOperand(0), NewPointerOperands[1],
1113 NewV = CastInst::Create(Instruction::BitCast, NewV,
/freebsd-13-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,
898 PHINode *NewIdx = PHINode::Create(TestVa
[all...]

Completed in 338 milliseconds

1234567891011>>