| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | Compiler.h | 408 llvm::DenseMap<const ValueDecl *, Scope::Local> Locals; 469 virtual void addLocal(const Scope::Local &Local) { in addLocal() argument 473 void addExtended(const Scope::Local &Local, const ValueDecl *ExtendingDecl) { in addExtended() argument 479 P->addLocal(Local); in addExtended() 489 this->Parent->addLocal(Local); in addExtended() 491 this->addLocal(Local); in addExtended() 495 void addForScopeKind(const Scope::Local &Local, ScopeKind Kind) { in addForScopeKind() argument 499 P->addLocal(Local); in addForScopeKind() 508 this->addLocal(Local); in addForScopeKind() 563 void addLocal(const Scope::Local &Local) override { in addLocal() argument [all …]
|
| H A D | InterpFrame.cpp | 43 for (auto &Local : Scope.locals()) { in InterpFrame() local 44 new (localBlock(Local.Offset)) Block(S.Ctx.getEvalID(), Local.Desc); in InterpFrame() 47 new (localInlineDesc(Local.Offset)) InlineDescriptor(Local.Desc); in InterpFrame() 86 for (auto &Local : Scope.locals()) { in destroyScopes() local 87 S.deallocate(localBlock(Local.Offset)); in destroyScopes() 95 for (auto &Local : Func->getScope(Idx).locals()) { in initScope() local 96 localBlock(Local.Offset)->invokeCtor(); in initScope() 101 for (auto &Local : Func->getScope(Idx).locals_reverse()) { in destroy() local 102 S.deallocate(localBlock(Local.Offset)); in destroy()
|
| H A D | ByteCodeEmitter.h | 30 using Local = Scope::Local; variable 66 Local createLocal(Descriptor *D); 75 llvm::SmallVector<SmallVector<Local, 8>, 2> Descriptors;
|
| H A D | EvalEmitter.h | 34 using Local = Scope::Local; variable 80 Local createLocal(Descriptor *D); 94 llvm::SmallVector<SmallVector<Local, 8>, 2> Descriptors;
|
| H A D | EvalEmitter.cpp | 97 Scope::Local EvalEmitter::createLocal(Descriptor *D) { in createLocal() 295 for (auto &Local : Descriptors[I]) { in emitDestroy() local 296 Block *B = getLocal(Local.Offset); in emitDestroy()
|
| /freebsd/contrib/bmake/unit-tests/ |
| H A D | posix1.exp | 11 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/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/ |
| H A D | get.ipv6remote.pl | 52 my %Local; 71 $Local{$addr} = 1; 87 if (/bytes from (.*), / and not defined $Local{$1}) {
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/ |
| H A D | DIPrinter.cpp | 368 for (const DILocal &Local : Locals) { in print() local 370 {{"FunctionName", Local.FunctionName}, in print() 371 {"Name", Local.Name}, in print() 372 {"DeclFile", Local.DeclFile}, in print() 373 {"DeclLine", int64_t(Local.DeclLine)}, in print() 374 {"Size", Local.Size ? toHex(*Local.Size) : ""}, in print() 375 {"TagOffset", Local.TagOffset ? toHex(*Local.TagOffset) : ""}}); in print() 376 if (Local.FrameOffset) in print() 377 FrameObject["FrameOffset"] = *Local.FrameOffset; in print()
|
| /freebsd/contrib/llvm-project/clang/lib/Lex/ |
| H A D | PreprocessingRecord.cpp | 139 Local = findLocalPreprocessedEntitiesInRange(Range); in getPreprocessedEntitiesInRangeSlow() local 143 return std::make_pair(Local.first, Local.second); in getPreprocessedEntitiesInRangeSlow() 150 return std::make_pair(Local.first, Local.second); in getPreprocessedEntitiesInRangeSlow() 155 if (Local.first == Local.second) in getPreprocessedEntitiesInRangeSlow() 160 return std::make_pair(int(Loaded.first)-TotalLoaded, Local.second); in getPreprocessedEntitiesInRangeSlow()
|
| /freebsd/contrib/netbsd-tests/lib/librumphijack/ |
| H A D | netstat.expout | 2 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 D | WebAssemblyExplicitLocals.cpp | 62 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() 255 auto Local = static_cast<unsigned>(MI.getOperand(1).getImm()); in runOnMachineFunction() local 256 Reg2Local[Reg] = Local; in runOnMachineFunction() 257 checkFrameBase(MFI, Local, Reg); in runOnMachineFunction() 260 WebAssemblyDebugValueManager(&MI).replaceWithLocal(Local); in runOnMachineFunction()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | ExtractGV.cpp | 24 bool Local = GV.hasLocalLinkage(); in makeVisible() local 25 if (Local || Delete) { in makeVisible() 27 if (Local) in makeVisible()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | GlobalValue.h | 213 Local, enumerator 238 if (A == UnnamedAddr::Local || B == UnnamedAddr::Local) in getMinUnnamedAddr() 239 return UnnamedAddr::Local; in getMinUnnamedAddr() 305 void setDSOLocal(bool Local) { IsDSOLocal = Local; } in setDSOLocal() argument
|
| H A D | Metadata.h | 483 static LocalAsMetadata *getLocal(Value *Local) { in getLocal() argument 484 return cast<LocalAsMetadata>(get(Local)); in getLocal() 493 static LocalAsMetadata *getLocalIfExists(Value *Local) { in getLocalIfExists() argument 494 return cast_or_null<LocalAsMetadata>(getIfExists(Local)); in getLocalIfExists() 555 LocalAsMetadata(Value *Local) in LocalAsMetadata() argument 556 : ValueAsMetadata(LocalAsMetadataKind, Local) { in LocalAsMetadata() 557 assert(!isa<Constant>(Local) && "Expected local value"); in LocalAsMetadata() 561 static LocalAsMetadata *get(Value *Local) { in get() argument 562 return ValueAsMetadata::getLocal(Local); in get() 565 static LocalAsMetadata *getIfExists(Value *Local) { in getIfExists() argument [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | DebugCrossExSubsection.cpp | 35 void DebugCrossModuleExportsSubsection::addMapping(uint32_t Local, in addMapping() argument 37 Mappings[Local] = Global; in addMapping()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | GlobalMergeFunctions.h | 34 Local, enumerator 51 HashFunctionMode MergerMode = HashFunctionMode::Local;
|
| /freebsd/tools/test/stress2/tools/ |
| H A D | setup.sh | 35 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/llvm/lib/Bitcode/Writer/ |
| H A D | ValueEnumerator.cpp | 639 const Function &F, const LocalAsMetadata *Local) { in EnumerateFunctionLocalMetadata() argument 640 EnumerateFunctionLocalMetadata(getMetadataFunctionID(&F), Local); in EnumerateFunctionLocalMetadata() 761 unsigned F, const LocalAsMetadata *Local) { in EnumerateFunctionLocalMetadata() argument 765 MDIndex &Index = MetadataMap[Local]; in EnumerateFunctionLocalMetadata() 771 MDs.push_back(Local); in EnumerateFunctionLocalMetadata() 775 EnumerateValue(Local->getValue()); in EnumerateFunctionLocalMetadata() 1110 if (auto *Local = dyn_cast<LocalAsMetadata>(MD)) { in incorporateFunction() local 1112 FnLocalMDVector.push_back(Local); in incorporateFunction() 1116 if (auto *Local = dyn_cast<LocalAsMetadata>(VMD)) { in incorporateFunction() local 1119 FnLocalMDVector.push_back(Local); in incorporateFunction() [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ExternalASTSource.h | 551 SmallVector<T, LocalStorage> Local; 588 return Self->Local.begin()[this->I]; 602 return iterator(this, Local.size()); 606 Local.push_back(LocalValue); 620 Local.erase(&*From, &*To);
|
| /freebsd/sys/contrib/device-tree/Bindings/memory-controllers/ |
| H A D | mediatek,smi-larb.txt | 1 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 D | DefineExternalSectionStartAndEndSymbols.h | 58 Scope::Local, false); in operator() 65 Scope::Local, false); in operator()
|
| H A D | COFFLinkGraphBuilder.cpp | 327 : Scope::Local; in flushWeakAliasRequests() 359 Target->getSize(), Linkage::Weak, Scope::Local, false); in handleAlternateNames() 479 Linkage::Strong, Scope::Local, false); in createDefinedSymbol() 522 *B, Symbol.getValue(), SymbolName, 0, Linkage::Strong, Scope::Local, in createDefinedSymbol() 528 *B, Symbol.getValue(), SymbolName, 0, Linkage::Strong, Scope::Local, in createDefinedSymbol()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/ |
| H A D | DXILValueEnumerator.cpp | 603 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 D | APValue.cpp | 43 : 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/lib/clang/include/lld/Common/ |
| H A D | Version.inc | 1 // Local identifier in __FreeBSD_version style
|