HomeSort by: relevance | last modified time | path
    Searched refs:Local (Results 1 - 25 of 101) sorted by relevancy

1 2 3 4 5

  /src/sys/rump/net/lib/liblocal/
Makefile 7 COMMENT=Local domain sockets (PF_LOCAL/PF_UNIX)
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
ByteCodeExprGen.h 127 /// Compiles an initializer for a local.
133 /// Visits an initializer for a local.
152 /// Creates a local primitive value.
156 /// Allocates a space storing a local given its type.
219 llvm::DenseMap<const ValueDecl *, Scope::Local> Locals;
245 void add(const Scope::Local &Local, bool IsExtended) {
247 this->addExtended(Local);
249 this->addLocal(Local);
252 virtual void addLocal(const Scope::Local &Local)
    [all...]
ByteCodeEmitter.h 36 using Local = Scope::Local;
68 /// Callback for local registration.
69 Local createLocal(Descriptor *D);
73 /// Local descriptors.
74 llvm::SmallVector<SmallVector<Local, 8>, 2> Descriptors;
83 /// Offset of the next local variable.
EvalEmitter.h 40 using Local = Scope::Local;
70 /// Callback for registering a local.
71 Local createLocal(Descriptor *D);
80 /// Local descriptors.
81 llvm::SmallVector<SmallVector<Local, 8>, 2> Descriptors;
ByteCodeExprGen.cpp 34 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 = this->createLocal(D)
    [all...]
InterpFrame.cpp 29 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)));
156 assert(Offset < Func->getFrameSize() && "Invalid local offset.");
Function.h 11 // The scope class which describes local variables is also defined here.
34 /// Information about a local's storage.
35 struct Local {
36 /// Offset of the local in frame.
38 /// Descriptor of the local.
42 using LocalVectorTy = llvm::SmallVector<Local, 8>;
58 /// describing all arguments and stack-local variables.
63 /// Returns the size of the function's local stack.
137 /// Local area size: storage + metadata.
EvalEmitter.cpp 51 Scope::Local EvalEmitter::createLocal(Descriptor *D) {
52 // Allocate memory for a local.
57 // Register the local.
201 assert(It != Locals.end() && "Missing local variable");
214 assert(It != Locals.end() && "Missing local variable");
228 assert(It != Locals.end() && "Missing local variable");
238 for (auto &Local : Descriptors[I]) {
239 auto It = Locals.find(Local.Offset);
240 assert(It != Locals.end() && "Missing local variable");
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
DebugCrossExSubsection.cpp 34 void DebugCrossModuleExportsSubsection::addMapping(uint32_t Local,
36 Mappings[Local] = Global;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
ExtractGV.cpp 26 bool Local = GV.hasLocalLinkage();
27 if (Local || Delete) {
29 if (Local)
  /src/usr.bin/make/unit-tests/
posix1.exp 11 Local variables
16 Directory and filename parts of local variables
23 Local variable substitutions
51 Local variables
56 Directory and filename parts of local variables
63 Local variable substitutions
97 Local variables
102 Directory and filename parts of local variables
109 Local variable substitutions
144 Local variable
    [all...]
posix1.mk 52 # Local variables: regular forms, D/F forms and suffix substitution.
66 "Local variables\n\
72 # X is one of the local variables.
74 "Directory and filename parts of local variables\n\
81 # Do all kinds of meaningless substitutions on local variables to see
86 "Local variable substitutions\n\
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/
DIPrinter.cpp 347 for (const DILocal &Local : Locals) {
349 {{"FunctionName", Local.FunctionName},
350 {"Name", Local.Name},
351 {"DeclFile", Local.DeclFile},
352 {"DeclLine", int64_t(Local.DeclLine)},
353 {"Size", Local.Size ? toHex(*Local.Size) : ""},
354 {"TagOffset", Local.TagOffset ? toHex(*Local.TagOffset) : ""}});
355 if (Local.FrameOffset
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
DefineExternalSectionStartAndEndSymbols.h 58 Scope::Local, false);
65 Scope::Local, false);
  /src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
AMDGPU.cpp 44 Local, // opencl_local
52 Local, // cuda_shared
56 Local, // sycl_local
66 Local, // opencl_local
74 Local, // cuda_shared
AMDGPU.h 35 Local = 3,
102 if (AddrSpace == Private || AddrSpace == Local)
375 } else if (AddressSpace == Local) {
393 // address space has value 0 but in private and local address space has
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
GlobalValue.h 99 unsigned ThreadLocal : 3; // Is this symbol "Thread Local", if so, what is
192 Local,
217 if (A == UnnamedAddr::Local || B == UnnamedAddr::Local)
218 return UnnamedAddr::Local;
237 "local linkage requires default visibility");
243 /// If the value is "Thread Local", its value isn't shared by the threads.
280 void setDSOLocal(bool Local) { IsDSOLocal = Local; }
  /src/external/apache2/llvm/dist/clang/lib/Lex/
PreprocessingRecord.cpp 127 assert(0 && "Out-of bounds local preprocessed entity");
142 Local = findLocalPreprocessedEntitiesInRange(Range);
144 // Check if range spans local entities.
146 return std::make_pair(Local.first, Local.second);
151 // Check if range spans local entities.
153 return std::make_pair(Local.first, Local.second);
158 if (Local.first == Local.second
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndexer.h 53 /// Whether we only want to see "local" declarations (that did not
57 void setOnlyLocalDecls(bool Local = true) { OnlyLocalDecls = Local; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
DebugCrossExSubsection.h 55 void addMapping(uint32_t Local, uint32_t Global);
  /src/external/gpl2/gettext/dist/gettext-tools/tests/
xgettext-c-7 89 Local Variables:
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyExplicitLocals.cpp 13 /// registers into locals, inserting explicit local.get and local.set
62 static void checkFrameBase(WebAssemblyFunctionInfo &MFI, unsigned Local,
64 // Mark a local for the frame base vreg.
67 dbgs() << "Allocating local " << Local << "for VReg "
70 MFI.setFrameBaseLocal(Local);
74 /// Return a local id number for the given register, assigning it a new one
106 /// Get the appropriate local.get opcode for the given register class.
125 /// Get the appropriate local.set opcode for the given register class
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
ObjectLinkingLayer.cpp 53 // Skip local symbols.
54 if (Sym->getScope() == Scope::Local)
56 assert(Sym->hasName() && "Anonymous non-local symbol?");
211 if (Sym->hasName() && Sym->getScope() != Scope::Local) {
392 // Skip local symbols: we do not track dependencies for these.
393 if (Sym->getScope() == Scope::Local)
396 "Defined non-local jitlink::Symbol should have a name");
404 if (TargetSym.getScope() != Scope::Local) {
411 "local symbols must be defined");
440 for (auto *Local : LocalDepsForName)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExternalASTSource.h 489 /// from an external source and partially added by local translation. The
497 SmallVector<T, LocalStorage> Local;
534 return Self->Local.begin()[this->I];
548 return iterator(this, Local.size());
552 Local.push_back(LocalValue);
566 Local.erase(&*From, &*To);
  /src/external/apache2/llvm/dist/clang/include/clang/Index/
IndexSymbol.h 90 Local = 1 << 7,

Completed in 85 milliseconds

1 2 3 4 5