Home
last modified time | relevance | path

Searched refs:Local (Results 1 – 25 of 203) sorted by relevance

123456789

/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DCompiler.h358 llvm::DenseMap<const ValueDecl *, Scope::Local> Locals;
415 void add(const Scope::Local &Local, bool IsExtended) { in add() argument
417 this->addExtended(Local); in add()
419 this->addLocal(Local); in add()
422 virtual void addLocal(const Scope::Local &Local) { in addLocal() argument
424 this->Parent->addLocal(Local); in addLocal()
427 virtual void addExtended(const Scope::Local &Local) { in addExtended() argument
429 this->Parent->addExtended(Local); in addExtended()
432 void addExtended(const Scope::Local &Local, const ValueDecl *ExtendingDecl) { in addExtended() argument
438 P->addLocal(Local); in addExtended()
[all …]
H A DInterpFrame.cpp39 for (auto &Local : Scope.locals()) { in InterpFrame() local
41 new (localBlock(Local.Offset)) Block(S.Ctx.getEvalID(), Local.Desc); in InterpFrame()
43 new (localInlineDesc(Local.Offset)) InlineDescriptor(Local.Desc); in InterpFrame()
77 for (auto &Local : Scope.locals()) { in ~InterpFrame() local
78 Block *B = localBlock(Local.Offset); in ~InterpFrame()
87 for (auto &Local : Func->getScope(Idx).locals()) { in destroy() local
88 S.deallocate(localBlock(Local.Offset)); in destroy()
H A DByteCodeEmitter.h30 using Local = Scope::Local; variable
61 Local createLocal(Descriptor *D);
70 llvm::SmallVector<SmallVector<Local, 8>, 2> Descriptors;
H A DEvalEmitter.h35 using Local = Scope::Local; variable
72 Local createLocal(Descriptor *D);
86 llvm::SmallVector<SmallVector<Local, 8>, 2> Descriptors;
H A DEvalEmitter.cpp85 Scope::Local EvalEmitter::createLocal(Descriptor *D) { in createLocal()
268 for (auto &Local : Descriptors[I]) { in emitDestroy() local
269 Block *B = getLocal(Local.Offset); in emitDestroy()
/freebsd/contrib/bmake/unit-tests/
H A Dposix1.exp11 Local variables
23 Local variable substitutions
51 Local variables
63 Local variable substitutions
97 Local variables
109 Local variable substitutions
144 Local variables
156 Local variable substitutions
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DDIPrinter.cpp358 for (const DILocal &Local : Locals) { in print()
360 {{"FunctionName", Local.FunctionName}, in print()
361 {"Name", Local.Name}, in print()
362 {"DeclFile", Local.DeclFile}, in print()
363 {"DeclLine", int64_t(Local.DeclLine)}, in print()
364 {"Size", Local.Size ? toHex(*Local.Size) : ""}, in print()
365 {"TagOffset", Local.TagOffset ? toHex(*Local.TagOffset) : ""}}); in print()
366 if (Local in print()
350 for (const DILocal &Local : Locals) { print() local
[all...]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/
H A Dget.ipv6remote.pl52 my %Local;
71 $Local{$addr} = 1;
87 if (/bytes from (.*), / and not defined $Local{$1}) {
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessingRecord.cpp142 Local = findLocalPreprocessedEntitiesInRange(Range); in getPreprocessedEntitiesInRangeSlow() local
146 return std::make_pair(Local.first, Local.second); in getPreprocessedEntitiesInRangeSlow()
153 return std::make_pair(Local.first, Local.second); in getPreprocessedEntitiesInRangeSlow()
158 if (Local.first == Local.second) in getPreprocessedEntitiesInRangeSlow()
163 return std::make_pair(int(Loaded.first)-TotalLoaded, Local.second); in getPreprocessedEntitiesInRangeSlow()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DGlobalValue.h211 Local, enumerator
236 if (A == UnnamedAddr::Local || B == UnnamedAddr::Local) in getMinUnnamedAddr()
237 return UnnamedAddr::Local; in getMinUnnamedAddr()
303 void setDSOLocal(bool Local) { IsDSOLocal = Local; } in setDSOLocal() argument
H A DMetadata.h476 static LocalAsMetadata *getLocal(Value *Local) { in getLocal() argument
477 return cast<LocalAsMetadata>(get(Local)); in getLocal()
486 static LocalAsMetadata *getLocalIfExists(Value *Local) { in getLocalIfExists() argument
487 return cast_or_null<LocalAsMetadata>(getIfExists(Local)); in getLocalIfExists()
548 LocalAsMetadata(Value *Local) in LocalAsMetadata() argument
549 : ValueAsMetadata(LocalAsMetadataKind, Local) { in LocalAsMetadata()
550 assert(!isa<Constant>(Local) && "Expected local value"); in LocalAsMetadata()
554 static LocalAsMetadata *get(Value *Local) { in get() argument
555 return ValueAsMetadata::getLocal(Local); in get()
558 static LocalAsMetadata *getIfExists(Value *Local) { in getIfExists() argument
[all …]
/freebsd/contrib/netbsd-tests/lib/librumphijack/
H A Dnetstat.expout2 Proto Recv-Q Send-Q Local Address Foreign Address State
5 Proto Recv-Q Send-Q Local Address Foreign Address (state)
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyExplicitLocals.cpp62 static void checkFrameBase(WebAssemblyFunctionInfo &MFI, unsigned Local, in checkFrameBase() argument
67 dbgs() << "Allocating local " << Local << "for VReg " in checkFrameBase()
70 MFI.setFrameBaseLocal(Local); in checkFrameBase()
241 auto Local = static_cast<unsigned>(MI.getOperand(1).getImm()); in runOnMachineFunction() local
242 Reg2Local[Reg] = Local; in runOnMachineFunction()
243 checkFrameBase(MFI, Local, Reg); in runOnMachineFunction()
246 WebAssemblyDebugValueManager(&MI).replaceWithLocal(Local); in runOnMachineFunction()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DExtractGV.cpp25 bool Local = GV.hasLocalLinkage(); in makeVisible() local
26 if (Local || Delete) { in makeVisible()
28 if (Local) in makeVisible()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugCrossExSubsection.cpp35 void DebugCrossModuleExportsSubsection::addMapping(uint32_t Local, in addMapping() argument
37 Mappings[Local] = Global; in addMapping()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp636 const Function &F, const LocalAsMetadata *Local) { in EnumerateFunctionLocalMetadata() argument
637 EnumerateFunctionLocalMetadata(getMetadataFunctionID(&F), Local); in EnumerateFunctionLocalMetadata()
758 unsigned F, const LocalAsMetadata *Local) { in EnumerateFunctionLocalMetadata() argument
762 MDIndex &Index = MetadataMap[Local]; in EnumerateFunctionLocalMetadata()
768 MDs.push_back(Local); in EnumerateFunctionLocalMetadata()
772 EnumerateValue(Local->getValue()); in EnumerateFunctionLocalMetadata()
1107 if (auto *Local = dyn_cast<LocalAsMetadata>(MD)) { in incorporateFunction() local
1109 FnLocalMDVector.push_back(Local); in incorporateFunction()
1113 if (auto *Local = dyn_cast<LocalAsMetadata>(VMD)) { in incorporateFunction() local
1116 FnLocalMDVector.push_back(Local); in incorporateFunction()
[all …]
/freebsd/tools/test/stress2/tools/
H A Dsetup.sh35 all.exclude Local list of tests to exclude, one test per line starting in column one
41 `hostname` Local configuration file
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExternalASTSource.h525 SmallVector<T, LocalStorage> Local;
562 return Self->Local.begin()[this->I];
576 return iterator(this, Local.size());
580 Local.push_back(LocalValue);
594 Local.erase(&*From, &*To);
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILValueEnumerator.cpp603 const Function &F, const LocalAsMetadata *Local) { in EnumerateFunctionLocalMetadata() argument
604 EnumerateFunctionLocalMetadata(getMetadataFunctionID(&F), Local); in EnumerateFunctionLocalMetadata()
726 unsigned F, const LocalAsMetadata *Local) { in EnumerateFunctionLocalMetadata() argument
730 MDIndex &Index = MetadataMap[Local]; in EnumerateFunctionLocalMetadata()
736 MDs.push_back(Local); in EnumerateFunctionLocalMetadata()
740 EnumerateValue(Local->getValue()); in EnumerateFunctionLocalMetadata()
1074 if (auto *Local = dyn_cast<LocalAsMetadata>(MD->getMetadata())) { in incorporateFunction() local
1076 FnLocalMDVector.push_back(Local); in incorporateFunction()
1080 if (auto *Local = dyn_cast<LocalAsMetadata>(VMD)) { in incorporateFunction() local
1083 FnLocalMDVector.push_back(Local); in incorporateFunction()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DAPValue.cpp43 : Ptr(P ? cast<ValueDecl>(P->getCanonicalDecl()) : nullptr), Local{I, V} {} in LValueBase()
45 : Ptr(P), Local{I, V} {} in LValueBase()
110 : Local.CallIndex; in getCallIndex()
114 return (is<TypeInfoLValue>() || is<DynamicAllocLValue>()) ? 0 : Local.Version; in getVersion()
131 ID.AddInteger(Local.CallIndex); in Profile()
132 ID.AddInteger(Local.Version); in Profile()
142 return LHS.Local.CallIndex == RHS.Local.CallIndex && in operator ==()
143 LHS.Local.Version == RHS.Local.Version; in operator ==()
/freebsd/sys/contrib/device-tree/Bindings/memory-controllers/
H A Dmediatek,smi-larb.txt1 SMI (Smart Multimedia Interface) Local Arbiter
23 - "gals": the clock for GALS(Global Async Local Sync).
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DDefineExternalSectionStartAndEndSymbols.h58 Scope::Local, false); in operator()
65 Scope::Local, false); in operator()
H A DCOFFLinkGraphBuilder.cpp333 : Scope::Local; in flushWeakAliasRequests()
363 Target->getSize(), Linkage::Weak, Scope::Local, false); in handleAlternateNames()
476 Linkage::Strong, Scope::Local, false); in createDefinedSymbol()
519 *B, Symbol.getValue(), SymbolName, 0, Linkage::Strong, Scope::Local, in createDefinedSymbol()
525 *B, Symbol.getValue(), SymbolName, 0, Linkage::Strong, Scope::Local, in createDefinedSymbol()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DCheckExprLifetime.cpp180 using Local = Expr *; typedef
220 using LocalVisitor = llvm::function_ref<bool(IndirectLocalPath &Path, Local L,
547 if (Visit(Path, Local(MTE), RK)) in visitLocalsRetainedByReferenceBinding()
575 Visit(Path, Local(DRE), RK); in visitLocalsRetainedByReferenceBinding()
623 Visit(Path, Local(CLE), RK); in visitLocalsRetainedByReferenceBinding()
675 [&](IndirectLocalPath &Path, Local L, ReferenceKind RK) -> bool { in visitLocalsRetainedByInitializer()
898 Visit(Path, Local(cast<BlockExpr>(Init)), RK_ReferenceBinding); in visitLocalsRetainedByInitializer()
904 Visit(Path, Local(cast<AddrLabelExpr>(Init)), RK_ReferenceBinding); in visitLocalsRetainedByInitializer()
1004 auto TemporaryVisitor = [&](IndirectLocalPath &Path, Local L, in checkExprLifetimeImpl()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DObjectLinkingLayer.cpp99 if (Sym->getScope() == Scope::Local) in scanLinkGraph()
241 if (Sym->hasName() && Sym->getScope() != Scope::Local) { in notifyResolved()
254 if (Sym->hasName() && Sym->getScope() != Scope::Local) { in notifyResolved()
440 if (Tgt.getScope() != Scope::Local) { in getBlockImmediateDeps()
469 Sym->getScope() != Scope::Local) { in claimOrExternalizeWeakAndCommonSymbols()
523 if (Sym->getScope() == Scope::Local) in registerDependencies()
561 if (Sym->getScope() == Scope::Local) { in registerDependencies()
620 if (E.getTarget().getScope() == Scope::Local && in computeBlockNonLocalDeps()

123456789