OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Local
(Results
1 - 24
of
24
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
ExtractGV.cpp
26
bool
Local
= GV.hasLocalLinkage();
27
if (
Local
|| Delete) {
29
if (
Local
)
/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
local.cc
1
// Tests for
local
types
13
class
Local
{
22
Local
l;
23
static
Local
l1;
/src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
local.cc
1
// Tests for
local
types
13
class
Local
{
22
Local
l;
23
static
Local
l1;
/src/external/apache2/llvm/dist/clang/lib/AST/Interp/
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.
/src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
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/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/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);
APValue.h
152
LValueBase() :
Local
{} {}
195
LocalState
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/llvm/lib/Target/X86/
X86AsmPrinter.cpp
72
bool
Local
= MF.getFunction().hasLocalLinkage();
75
Local
? COFF::IMAGE_SYM_CLASS_STATIC : COFF::IMAGE_SYM_CLASS_EXTERNAL);
724
// using NLPs; however, sometimes the types are
local
to the file.
/src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
py-type.c
122
struct
Local
{ int g; } l;
/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
py-type.c
122
struct
Local
{ int g; } l;
/src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp
306
// We want to visit the functions backward now so we can list function-
local
450
//
Local
metadata is enumerated during function-incorporation, but
625
const Function &F, const LocalAsMetadata *
Local
) {
626
EnumerateFunctionLocalMetadata(getMetadataFunctionID(&F),
Local
);
744
/// EnumerateFunctionLocalMetadata - Incorporate function-
local
metadata
747
unsigned F, const LocalAsMetadata *
Local
) {
751
MDIndex &Index = MetadataMap[
Local
];
757
MDs.push_back(
Local
);
761
EnumerateValue(
Local
->getValue());
764
/// EnumerateFunctionLocalListMetadata - Incorporate function-
local
metadat
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/Index/
IndexSymbol.h
90
Local
= 1 << 7,
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RDFLiveness.cpp
1024
dbgs() << "
Local
: " << Print<RegisterAggr>(LiveMap[B], DFG) << '\n';
1035
dbgs() << "
Local
: " << Print<RegisterAggr>(LiveMap[B], DFG) << '\n';
1119
dbgs() << "
Local
: " << Print<RegisterAggr>(LiveMap[B], DFG) << '\n';
1140
dbgs() << "
Local
: " << Print<RegisterAggr>(LiveMap[B], DFG) << '\n';
1145
RegisterAggr &
Local
= LiveMap[B];
1151
Local
.insert(RegisterRef(R.first,M));
1157
dbgs() << "
Local
: " << Print<RegisterAggr>(
Local
, DFG) << '\n';
/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/llvm/include/llvm/Support/
AMDGPUMetadata.h
66
Local
= 3,
/src/external/apache2/llvm/dist/llvm/lib/MC/
WinCOFFObjectWriter.cpp
376
COFFSymbol *
Local
= nullptr;
390
Local
= WeakDefault;
407
Local
= Sym;
410
if (
Local
) {
411
Local
->Data.Value = getSymbolValue(MCSym, Layout);
414
Local
->Data.Type = SymbolCOFF.getType();
415
Local
->Data.StorageClass = SymbolCOFF.getClass();
418
if (
Local
->Data.StorageClass == COFF::IMAGE_SYM_CLASS_NULL) {
422
Local
->Data.StorageClass = IsExternal ? COFF::IMAGE_SYM_CLASS_EXTERNAL
ELFObjectWriter.cpp
132
// This holds the symbol table index of the last
local
symbol.
648
bool
Local
= Symbol.getBinding() == ELF::STB_LOCAL;
649
assert(
Local
|| !Symbol.isTemporary());
657
assert(!
Local
);
701
if (
Local
)
719
// Make the first STT_FILE precede previous
local
symbols.
726
// Emit STT_FILE symbols before their associated
local
symbols.
1299
// allows us to omit some
local
symbols from the symbol table.
1359
// Keep symbol type for a
local
ifunc because it may result in an IRELATIVE
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h
357
/// Is this a
local
edge within the loop, an exit from the loop, or a
360
enum DistType {
Local
, Exit, Backedge };
361
DistType Type =
Local
;
388
add(Node, Amount, Weight::
Local
);
445
/// edge is
local
/exit/backedge is in the context of LoopHead. Otherwise,
446
/// every edge should be a
local
edge (since all the loops are packaged up).
593
/// During the block frequency algorithm, the
local
graphs are defined in a
764
/// - Each successor is categorized as \a Weight::
Local
, a
local
edge
1091
// Visit loops in post-order to find the
local
mass distribution, and then d
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h
230
Local
,
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFContext.cpp
1152
DILocal
Local
;
1154
Local
.FunctionName = Name;
1169
Local
.FrameOffset = *FrameOffset;
1180
Local
.TagOffset = TagOffsetAttr->getAsUnsignedConstant();
1187
Local
.Name = *Name;
1189
Local
.Size = getTypeSize(Type, getCUAddrSize());
1196
Local
.DeclFile);
1199
Local
.DeclLine = DeclLineAttr->getAsUnsignedConstant().getValue();
1201
Result.push_back(
Local
);
/src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
CodeView.h
592
//
local
IDs to a single ID namespace for all items in the PDB file.
594
support::ulittle32_t
Local
;
/src/external/apache2/llvm/dist/llvm/lib/Target/VE/
VEISelLowering.cpp
607
bool
Local
= TM.shouldAssumeDSOLocal(*Mod, GV);
608
bool UsePlt = !
Local
;
962
// Create following instructions for
local
linkage PIC code.
971
// Create following instructions for not
local
linkage PIC code.
1252
// The current implementation of nld (2.26) doesn't allow
local
exec model
1813
// Create following instructions for
local
linkage PIC code.
1862
// Create following instructions for non-
local
linkage PIC code function
1874
// Create following instructions for
local
linkage PIC code.
1892
// Create following instructions for not
local
linkage PIC code.
2248
/*
Local
*/ false, /* Call */ true)
[
all
...]
Completed in 48 milliseconds
Indexes created Fri Apr 24 00:22:58 UTC 2026