Home
last modified time | relevance | path

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

123456789

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/
H A DByteCodeExprGen.h339 void add(const Scope::Local &Local, bool IsExtended) { in add() argument
341 this->addExtended(Local); in add()
343 this->addLocal(Local); in add()
346 virtual void addLocal(const Scope::Local &Local) { in addLocal() argument
351 virtual void addExtended(const Scope::Local &Local) { in addExtended() argument
388 void addLocal(const Scope::Local &Local) override { in addLocal() argument
402 for (Scope::Local &Local : this->Ctx->Descriptors[*Idx]) { in emitDestructors()
403 if (!Local.Desc->isPrimitive() && !Local.Desc->isPrimitiveArray()) { in emitDestructors()
443 void addExtended(const Scope::Local &Local) override { in addExtended() argument
447 this->addLocal(Local); in addExtended()
[all …]
H A DInterpFrame.cpp38 for (auto &Local : Scope.locals()) { in InterpFrame() local
39 Block *B = new (localBlock(Local.Offset)) Block(Local.Desc); in InterpFrame()
41 InlineDescriptor *ID = localInlineDesc(Local.Offset); in InterpFrame()
42 ID->Desc = Local.Desc; in InterpFrame()
81 for (auto &Local : Scope.locals()) { in ~InterpFrame() local
82 Block *B = localBlock(Local.Offset); in ~InterpFrame()
91 for (auto &Local : Func->getScope(Idx).locals()) { in destroy() local
92 S.deallocate(localBlock(Local.Offset)); in destroy()
H A DByteCodeEmitter.h30 using Local = Scope::Local; variable
58 Local createLocal(Descriptor *D);
67 llvm::SmallVector<SmallVector<Local, 8>, 2> Descriptors;
H A DEvalEmitter.h35 using Local = Scope::Local; variable
64 Local createLocal(Descriptor *D);
78 llvm::SmallVector<SmallVector<Local, 8>, 2> Descriptors;
H A DEvalEmitter.cpp60 Scope::Local EvalEmitter::createLocal(Descriptor *D) { in createLocal()
188 for (auto &Local : Descriptors[I]) { in emitDestroy() local
189 Block *B = getLocal(Local.Offset); in emitDestroy()
/freebsd-14.2/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-14.2/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-14.2/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DDIPrinter.cpp358 for (const DILocal &Local : Locals) { in print() local
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.FrameOffset) in print()
367 FrameObject["FrameOffset"] = *Local.FrameOffset; in print()
/freebsd-14.2/sys/contrib/device-tree/Bindings/iio/frequency/
H A Dadi,adrf6780.yaml49 Local Oscillator Amplifier Enable. Disable to put the part in
67 Double the Local Oscillator output frequency from the Local
74 Local Oscillator input frequency equal to the Local Oscillator
/freebsd-14.2/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-14.2/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-14.2/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-14.2/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-14.2/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()
231 auto Local = static_cast<unsigned>(MI.getOperand(1).getImm()); in runOnMachineFunction() local
232 Reg2Local[Reg] = Local; in runOnMachineFunction()
233 checkFrameBase(MFI, Local, Reg); in runOnMachineFunction()
236 WebAssemblyDebugValueManager(&MI).replaceWithLocal(Local); in runOnMachineFunction()
/freebsd-14.2/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-14.2/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-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DExternalASTSource.h503 SmallVector<T, LocalStorage> Local;
540 return Self->Local.begin()[this->I];
554 return iterator(this, Local.size());
558 Local.push_back(LocalValue);
572 Local.erase(&*From, &*To);
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DDefineExternalSectionStartAndEndSymbols.h58 Scope::Local, false); in operator()
65 Scope::Local, false); in operator()
/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp599 const Function &F, const LocalAsMetadata *Local) { in EnumerateFunctionLocalMetadata() argument
600 EnumerateFunctionLocalMetadata(getMetadataFunctionID(&F), Local); in EnumerateFunctionLocalMetadata()
721 unsigned F, const LocalAsMetadata *Local) { in EnumerateFunctionLocalMetadata() argument
725 MDIndex &Index = MetadataMap[Local]; in EnumerateFunctionLocalMetadata()
731 MDs.push_back(Local); in EnumerateFunctionLocalMetadata()
735 EnumerateValue(Local->getValue()); in EnumerateFunctionLocalMetadata()
1072 if (auto *Local = dyn_cast<LocalAsMetadata>(MD->getMetadata())) { in incorporateFunction() local
1074 FnLocalMDVector.push_back(Local); in incorporateFunction()
1078 if (auto *Local = dyn_cast<LocalAsMetadata>(VMD)) { in incorporateFunction() local
1081 FnLocalMDVector.push_back(Local); in incorporateFunction()
/freebsd-14.2/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-14.2/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-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DObjectLinkingLayer.cpp98 if (Sym->getScope() == Scope::Local) in scanLinkGraph()
240 if (Sym->hasName() && Sym->getScope() != Scope::Local) { in notifyResolved()
253 if (Sym->hasName() && Sym->getScope() != Scope::Local) { in notifyResolved()
415 if (Tgt.getScope() != Scope::Local) { in getBlockImmediateDeps()
443 Sym->getScope() != Scope::Local) { in claimOrExternalizeWeakAndCommonSymbols()
492 if (Sym->getScope() == Scope::Local) in computeNamedSymbolDependencies()
518 if (Sym->getScope() == Scope::Local) { in computeNamedSymbolDependencies()
559 if (E.getTarget().getScope() == Scope::Local && in computeBlockNonLocalDeps()
/freebsd-14.2/lib/clang/include/lld/Common/
H A DVersion.inc1 // Local identifier in __FreeBSD_version style

123456789