Searched refs:Local (Results 1 - 25 of 76) sorted by relevance

1234

/freebsd-12-stable/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-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DDIPrinter.cpp120 DIPrinter &DIPrinter::operator<<(const DILocal &Local) { argument
121 if (Local.FunctionName.empty())
124 OS << Local.FunctionName << '\n';
126 if (Local.Name.empty())
129 OS << Local.Name << '\n';
131 if (Local.DeclFile.empty())
134 OS << Local.DeclFile;
135 OS << ':' << Local.DeclLine << '\n';
137 if (Local.FrameOffset)
138 OS << *Local
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DByteCodeExprGen.h218 llvm::DenseMap<const ValueDecl *, Scope::Local> Locals;
244 void add(const Scope::Local &Local, bool IsExtended) {
246 this->addExtended(Local);
248 this->addLocal(Local);
251 virtual void addLocal(const Scope::Local &Local) {
253 this->Parent->addLocal(Local);
256 virtual void addExtended(const Scope::Local &Local) {
[all...]
H A DByteCodeEmitter.h36 using Local = Scope::Local;
69 Local createLocal(Descriptor *D);
73 /// Local descriptors.
74 llvm::SmallVector<SmallVector<Local, 8>, 2> Descriptors;
H A DEvalEmitter.h40 using Local = Scope::Local;
71 Local createLocal(Descriptor *D);
80 /// Local descriptors.
81 llvm::SmallVector<SmallVector<Local, 8>, 2> Descriptors;
H A DByteCodeExprGen.cpp34 void addExtended(const Scope::Local &Local) override {
35 return this->addLocal(Local);
428 Scope::Local Local = this->createLocal(D);
430 Locals.insert({VD, Local});
431 VarScope->add(Local, IsExtended);
432 return Local.Offset;
456 Scope::Local Local
[all...]
H A DInterpFrame.cpp29 for (auto &Local : Scope.locals()) {
30 Block *B = new (localBlock(Local.Offset)) Block(Local.Desc);
46 for (auto &Local : Func->getScope(Idx).locals()) {
47 S.deallocate(reinterpret_cast<Block *>(localBlock(Local.Offset)));
H A DFunction.h35 struct Local { struct in class:clang::interp::Scope
42 using LocalVectorTy = llvm::SmallVector<Local, 8>;
137 /// Local area size: storage + metadata.
H A DEvalEmitter.cpp51 Scope::Local EvalEmitter::createLocal(Descriptor *D) {
238 for (auto &Local : Descriptors[I]) {
239 auto It = Locals.find(Local.Offset);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugCrossExSubsection.cpp34 void DebugCrossModuleExportsSubsection::addMapping(uint32_t Local, argument
36 Mappings[Local] = Global;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DExtractGV.cpp26 bool Local = GV.hasLocalLinkage(); local
27 if (Local || Delete) {
29 if (Local)
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/
H A DDIPrinter.h55 DIPrinter &operator<<(const DILocal &Local);
/freebsd-12-stable/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
H A Dposix1.mk50 # Local variables: regular forms, D/F forms and suffix substitution.
64 "Local variables\n\
84 "Local variable substitutions\n\
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DGlobalValue.h99 unsigned ThreadLocal : 3; // Is this symbol "Thread Local", if so, what is
199 Local,
224 if (A == UnnamedAddr::Local || B == UnnamedAddr::Local)
225 return UnnamedAddr::Local;
249 /// If the value is "Thread Local", its value isn't shared by the threads.
281 void setDSOLocal(bool Local) { IsDSOLocal = Local; }
H A DMetadata.h365 static LocalAsMetadata *getLocal(Value *Local) { argument
366 return cast<LocalAsMetadata>(get(Local));
375 static LocalAsMetadata *getLocalIfExists(Value *Local) { argument
376 return cast_or_null<LocalAsMetadata>(getIfExists(Local));
430 LocalAsMetadata(Value *Local) argument
431 : ValueAsMetadata(LocalAsMetadataKind, Local) {
432 assert(!isa<Constant>(Local) && "Expected local value");
436 static LocalAsMetadata *get(Value *Local) { argument
437 return ValueAsMetadata::getLocal(Local);
440 static LocalAsMetadata *getIfExists(Value *Local) { argument
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessingRecord.cpp142 Local = findLocalPreprocessedEntitiesInRange(Range); local
146 return std::make_pair(Local.first, Local.second);
153 return std::make_pair(Local.first, Local.second);
158 if (Local.first == Local.second)
163 return std::make_pair(int(Loaded.first)-TotalLoaded, Local.second);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugCrossExSubsection.h55 void addMapping(uint32_t Local, uint32_t Global);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/Targets/
H A DAMDGPU.cpp44 Local, // opencl_local
50 Local, // cuda_shared
59 Local, // opencl_local
65 Local, // cuda_shared
H A DAMDGPU.h34 Local = 3, enumerator in enum:clang::targets::final::AddrSpace
92 if (AddrSpace == Private || AddrSpace == Local)
330 } else if (AddressSpace == Local) {
/freebsd-12-stable/contrib/sendmail/contrib/
H A DsocketmapServer.pl25 Local => $4,
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExternalASTSource.h527 SmallVector<T, LocalStorage> Local; member in class:clang::LazyVector
564 return Self->Local.begin()[this->I];
578 return iterator(this, Local.size());
582 Local.push_back(LocalValue);
596 Local.erase(&*From, &*To);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Index/
H A DIndexSymbol.h87 Local = 1 << 7, member in class:clang::index::SymbolProperty
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLink.cpp86 case Scope::Local:
123 case Scope::Local:
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp410 // Local metadata is enumerated during function-incorporation.
575 const Function &F, const LocalAsMetadata *Local) {
576 EnumerateFunctionLocalMetadata(getMetadataFunctionID(&F), Local); local
692 unsigned F, const LocalAsMetadata *Local) {
696 MDIndex &Index = MetadataMap[Local];
702 MDs.push_back(Local);
706 EnumerateValue(Local->getValue());
985 if (auto *Local = dyn_cast<LocalAsMetadata>(MD->getMetadata()))
987 FnLocalMDVector.push_back(Local);
574 EnumerateFunctionLocalMetadata( const Function &F, const LocalAsMetadata *Local) argument
691 EnumerateFunctionLocalMetadata( unsigned F, const LocalAsMetadata *Local) argument

Completed in 148 milliseconds

1234