OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AP
(Results
1 - 17
of
17
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DIEHash.h
35
:
AP
(A), CU(CU) {}
104
AsmPrinter *
AP
;
ByteStreamer.h
40
AsmPrinter &
AP
;
43
APByteStreamer(AsmPrinter &Asm) :
AP
(Asm) {}
45
AP
.OutStreamer->AddComment(Comment);
46
AP
.emitInt8(Byte);
49
AP
.OutStreamer->AddComment(Comment);
50
AP
.emitSLEB128(DWord);
54
AP
.OutStreamer->AddComment(Comment);
55
AP
.emitULEB128(DWord, nullptr, PadTo);
AsmPrinterInlineAsm.cpp
131
MachineModuleInfo *MMI, AsmPrinter *
AP
,
187
AP
->PrintSpecial(MI, OS, Val.c_str());
252
Error =
AP
->PrintAsmMemoryOperand(
255
Error =
AP
->PrintAsmOperand(MI, OpNo,
274
AsmPrinter *
AP
, unsigned LocCookie,
355
AP
->PrintSpecial(MI, OS, Val.c_str());
425
MCSymbol *Sym =
AP
->GetBlockAddressSymbol(BA);
426
Sym->print(OS,
AP
->MAI);
430
Sym->print(OS,
AP
->MAI);
434
Error =
AP
->PrintAsmMemoryOperand
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
FaultMaps.h
32
explicit FaultMaps(AsmPrinter &
AP
);
71
AsmPrinter &
AP
;
StackMaps.h
288
StackMaps(AsmPrinter &
AP
);
356
AsmPrinter &
AP
;
/src/sys/arch/vax/include/
pcb.h
44
long
AP
; /* Argument Pointer */
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
RunLoopAutoreleaseLeakChecker.cpp
94
const auto *
AP
=
98
bool HasAutoreleasePool = (
AP
!= nullptr);
109
if (HasAutoreleasePool && (OAP !=
AP
))
MacOSKeychainAPIChecker.cpp
108
void generateDeallocatorMismatchReport(const AllocationPair &
AP
,
117
generateAllocatedDataNotReleasedReport(const AllocationPair &
AP
,
123
const AllocationPair &
AP
) const {
124
R->markInteresting(
AP
.first);
125
R->markInteresting(
AP
.second->Region);
225
generateDeallocatorMismatchReport(const AllocationPair &
AP
,
229
State = State->remove<AllocatedData>(
AP
.first);
238
FunctionsToTrack[
AP
.second->AllocatorIdx].DeallocatorIdx;
243
Report->addVisitor(std::make_unique<SecKeychainBugVisitor>(
AP
.first));
245
markInteresting(Report.get(),
AP
);
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Support/
PrettyStackTrace.cpp
237
va_list
AP
;
238
va_start(
AP
, Format);
239
const int SizeOrError = vsnprintf(nullptr, 0, Format,
AP
);
240
va_end(
AP
);
247
va_start(
AP
, Format);
248
vsnprintf(Str.data(), Size, Format,
AP
);
249
va_end(
AP
);
/src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h
98
NVPTXAsmPrinter &
AP
;
102
AggBuffer(unsigned size, raw_ostream &O, NVPTXAsmPrinter &
AP
)
103
: size(size), buffer(size), O(O),
AP
(
AP
) {
106
EmitGeneric =
AP
.EmitGeneric;
153
if (static_cast<const NVPTXTargetMachine &>(
AP
.TM).is64Bit())
162
MCSymbol *Name =
AP
.getSymbol(GVar);
170
Name->print(O,
AP
.MAI);
173
Name->print(O,
AP
.MAI);
177
AP
.lowerConstantForGV(cast<Constant>(CExpr), false)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUMCInstLower.cpp
42
const AsmPrinter &
AP
;
49
const AsmPrinter &
AP
);
61
const AsmPrinter &
AP
);
74
const AsmPrinter &
ap
):
75
Ctx(ctx), ST(st),
AP
(
ap
) { }
149
AP
.getNameWithPrefix(SymbolName, GV);
358
const AsmPrinter &
AP
) :
359
AMDGPUMCInstLower(Ctx, ST,
AP
) { }
/src/libexec/getty/
gettytab.h
148
#define
AP
gettyflags[4].value
/src/external/bsd/pcc/dist/pcc/arch/vax/
macdefs.h
140
# define
AP
12 /* argument pointer */
195
0, 0, 0, 0, /* do not care about
ap
, fp, sp or pc */ \
234
#define ARGREG
AP
/src/external/gpl3/binutils/dist/gas/config/
tc-vax.c
1035
R12
AP
1040
#define
AP
12
1045
/* Returns the register number of something like '%r15' or '
ap
', supplied
1098
retval =
AP
;
1342
/* Dissect user-input 'optext' (which is something like "@B^foo@bar(
AP
)[FP]:")
3534
{ "
ap
", 12 }, { "fp", 13 }, { "sp", 14 }, { "pc", 15 },
/src/external/gpl3/binutils.old/dist/gas/config/
tc-vax.c
1035
R12
AP
1040
#define
AP
12
1045
/* Returns the register number of something like '%r15' or '
ap
', supplied
1098
retval =
AP
;
1342
/* Dissect user-input 'optext' (which is something like "@B^foo@bar(
AP
)[FP]:")
3534
{ "
ap
", 12 }, { "fp", 13 }, { "sp", 14 }, { "pc", 15 },
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDecl.cpp
1204
const llvm::APInt &
AP
= cast<llvm::ConstantInt>(Pattern)->getValue();
1205
assert(
AP
.getBitWidth() <= 8);
1206
Value =
AP
.getLimitedValue();
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonFrameLowering.cpp
106
// address of the bottom of the stack, referred in the sources as
AP
(aligned
107
// pointer). The
AP
will be equal to "FP-p", where "p" is the smallest pad
108
// that aligns
AP
to the required boundary (a maximum of the alignments of
110
// then use
AP
as the base pointer.
116
// Illustration of the
AP
:
124
// stack alignment +--
AP
126
// The
AP
is set up at the beginning of the function. Since it is not a dedi-
130
// PS_fi. To access local objects with the
AP
register present, a different
132
// argument compared to PS_fi: the first input register is the
AP
register.
135
// The
AP
register is originally set up using pseudo-instruction PS_aligna
[
all
...]
Completed in 33 milliseconds
Indexes created Wed May 13 00:24:45 UTC 2026