Searched refs:Init (Results 226 - 250 of 259) sorted by relevance

1234567891011

/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBlocks.cpp1446 auto *Init = llvm::Function::Create(llvm::FunctionType::get(CGM.VoidTy, local
1450 Init));
1456 auto *InitVar = new llvm::GlobalVariable(CGM.getModule(), Init->getType(),
1458 Init, ".block_isa_init_ptr");
H A DMicrosoftCXXABI.cpp351 llvm::Constant *Init = llvm::ConstantArray::get(VDispMapTy, Map); local
358 /*Initializer=*/Init, MangledName);
2131 llvm::Constant *Init = llvm::ConstantArray::get(VBTableType, Offsets); local
2132 GV->setInitializer(Init);
H A DCGDebugInfo.cpp4515 void CGDebugInfo::EmitGlobalVariable(const ValueDecl *VD, const APValue &Init) { argument
4591 if (Init.isInt())
4593 DBuilder.createConstantValueExpression(Init.getInt().getExtValue());
4594 else if (Init.isFloat())
4596 Init.getFloat().bitcastToAPInt().getZExtValue());
H A DCGExpr.cpp126 void CodeGenFunction::InitTempAlloca(Address Var, llvm::Value *Init) { argument
128 auto *Store = new llvm::StoreInst(Init, Var.getPointer());
386 if (auto Init = ConstantEmitter(CGF).tryEmitAbstract(Inner, Ty)) {
390 CGF.CGM.getModule(), Init->getType(), /*isConstant=*/true,
391 llvm::GlobalValue::PrivateLinkage, Init, ".ref.tmp", nullptr,
4249 /*Init*/ true);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.h655 stack->Init(&thr->shadow_stack[start], size, toppc);
H A Dtsan_rtl_report.cpp438 stk->Init(&stack[0], pos);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h145 uptr Init(uptr size, const char *name = nullptr, uptr fixed_addr = 0);
H A Dsanitizer_win.cpp298 uptr ReservedAddressRange::Init(uptr size, const char *name, uptr fixed_addr) { function in class:__sanitizer::ReservedAddressRange
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerLoop.cpp789 DFT.Init(Options.DataFlowTrace, &FocusFunctionOrAuto, CorporaFiles,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp149 Constant *Init = GV->getInitializer(); local
150 if (!isa<ConstantArray>(Init) && !isa<ConstantDataArray>(Init))
153 uint64_t ArrayElementCount = Init->getType()->getArrayNumElements();
173 Type *EltTy = Init->getType()->getArrayElementType();
224 Constant *Elt = Init->getAggregateElement(i);
402 Ty = DL.getSmallestLegalIntType(Init->getContext(), ArrayElementCount);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp737 MDNode *Init; local
748 if (ParseSpecializedMDNode(Init, IsDistinct))
751 ParseMDTuple(Init, IsDistinct))
757 FI->second.first->replaceAllUsesWith(Init);
760 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
764 NumberedMetadata[MetadataID].reset(Init);
1051 Constant *Init = nullptr;
1055 if (ParseGlobalValue(Ty, Init))
1099 if (Init)
1100 GV->setInitializer(Init);
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp240 for (Init *Val : AddrSpaces->getValues()) {
374 static Record *getInitValueAsRegClass(Init *V) {
3508 Init *SrcInit = Src->getLeafValue();
3551 for (Init *Val : AddrSpaces->getValues()) {
3699 Init *SrcInit = Src->getLeafValue();
H A DFixedLenDecoderEmitter.cpp1057 // 0: Init
1824 std::vector<std::pair<Init*, StringRef>> InOutOperands;
1944 Init *Arg = CGI.Operands[SO.first].MIOperandInfo->
H A DAsmWriterEmitter.cpp1192 Init *MCOpPred = MCOpPredicates[i]->getValueInit("MCOperandPredicate");
/freebsd-11-stable/crypto/openssh/contrib/redhat/
H A Dopenssh.spec606 - Init script and spec file changes from Pekka Savola. (#28750)
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DNeonEmitter.cpp514 std::pair<Type, std::string> emitDagArg(Init *Arg, std::string ArgName);
1733 Intrinsic::DagEmitter::emitDagArg(Init *Arg, std::string ArgName) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp1505 Error PythonScript::Init() { function in class:PythonScript
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp272 quarantine.Init((uptr)options.quarantine_size_mb << 20,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp2137 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry)); local
2138 if (!Init) continue;
2140 (double)Init->getSExtValue() :
2141 (double)Init->getZExtValue());
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp2867 ExprResult Init = ParseCXXMemberInitializer( local
2870 if (Init.isInvalid())
2873 Actions.AddInitializerToDecl(ThisDecl, Init.get(), EqualLoc.isInvalid());
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp3449 std::string Init = local
3451 if (Init.empty() && S.LangOpts.CPlusPlus11)
3452 Init = "{}";
3453 if (!Init.empty())
3455 << FixItHint::CreateReplacement(ParenRange, Init);
H A DSemaExpr.cpp5027 if (auto Init = dyn_cast<ExprWithCleanups>(Param->getInit())) {
5030 Cleanup.setExprNeedsCleanups(Init->cleanupsHaveSideEffects());
5035 assert(!Init->getNumObjects() &&
6231 Expr *Init = ILE->getInit(i); local
6232 ILE->setInit(i, ConstantExpr::Create(Context, Init));
12933 ExprResult Init = InitSeq.Perform(*this, Entity, Kind, RHSExpr); local
12934 if (Init.isInvalid())
12935 return Init;
12936 RHSExpr = Init.get();
14613 ExprResult Init local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstructions.h472 void Init(AtomicOrdering Ordering, SyncScope::ID SSID);
548 void Init(Value *Ptr, Value *Cmp, Value *NewVal,
855 void Init(BinOp Operation, Value *Ptr, Value *Val,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DAutoUpgrade.cpp875 Constant *Init = GV->getInitializer(); local
876 unsigned N = Init->getNumOperands();
879 auto Ctor = cast<Constant>(Init->getOperand(i));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp12549 const PredicatedScalarEvolution &Init)
12550 : RewriteMap(Init.RewriteMap), SE(Init.SE), L(Init.L), Preds(Init.Preds),
12551 Generation(Init.Generation), BackedgeCount(Init.BackedgeCount) {
12552 for (auto I : Init.FlagsMap)

Completed in 923 milliseconds

1234567891011