OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StaticAllocaMap
(Results
1 - 9
of
9
) sorted by null
/external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp
124
StaticAllocaMap
[AI] =
178
if (!isa<AllocaInst>(I) || !
StaticAllocaMap
.count(cast<AllocaInst>(I)))
197
StaticAllocaMap
.find(AI);
198
if (SI !=
StaticAllocaMap
.end()) { // Check for VLAs.
306
assert(
StaticAllocaMap
.count(H.CatchObj.Alloca));
307
H.CatchObj.FrameIndex =
StaticAllocaMap
[H.CatchObj.Alloca];
334
StaticAllocaMap
.clear();
FastISel.cpp
195
!FuncInfo.
StaticAllocaMap
.count(cast<AllocaInst>(V))))
587
auto SI = FuncInfo.
StaticAllocaMap
.find(AI);
588
if (SI != FuncInfo.
StaticAllocaMap
.end())
[
all
...]
SelectionDAGBuilder.cpp
[
all
...]
/external/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h
93
///
StaticAllocaMap
- Keep track of frame indices for fixed sized allocas in
96
DenseMap<const AllocaInst*, int>
StaticAllocaMap
;
/external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp
310
if (FuncInfo.
StaticAllocaMap
.count(static_cast<const AllocaInst *>(Obj)) ||
387
FuncInfo.
StaticAllocaMap
.find(AI);
388
if (SI != FuncInfo.
StaticAllocaMap
.end()) {
[
all
...]
/external/llvm/lib/Target/Mips/
MipsFastISel.cpp
281
FuncInfo.
StaticAllocaMap
.find(AI);
283
if (SI != FuncInfo.
StaticAllocaMap
.end()) {
414
if (FuncInfo.
StaticAllocaMap
.count(static_cast<const AllocaInst *>(Obj)) ||
477
FuncInfo.
StaticAllocaMap
.find(AI);
478
if (SI != FuncInfo.
StaticAllocaMap
.end()) {
[
all
...]
/external/llvm/lib/Target/ARM/
ARMFastISel.cpp
706
if (!FuncInfo.
StaticAllocaMap
.count(AI)) return 0;
712
FuncInfo.
StaticAllocaMap
.find(AI);
716
if (SI != FuncInfo.
StaticAllocaMap
.end()) {
763
if (FuncInfo.
StaticAllocaMap
.count(static_cast<const AllocaInst *>(Obj)) ||
846
FuncInfo.
StaticAllocaMap
.find(AI);
847
if (SI != FuncInfo.
StaticAllocaMap
.end()) {
[
all
...]
/external/llvm/lib/Target/X86/
X86FastISel.cpp
698
if (FuncInfo.
StaticAllocaMap
.count(static_cast<const AllocaInst *>(V)) ||
737
FuncInfo.
StaticAllocaMap
.find(A);
738
if (SI != FuncInfo.
StaticAllocaMap
.end()) {
[
all
...]
/external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp
317
if (!FuncInfo.
StaticAllocaMap
.count(AI))
321
FuncInfo.
StaticAllocaMap
.find(AI);
323
if (SI != FuncInfo.
StaticAllocaMap
.end()) {
516
if (FuncInfo.
StaticAllocaMap
.count(static_cast<const AllocaInst *>(Obj)) ||
603
FuncInfo.
StaticAllocaMap
.find(AI);
604
if (SI != FuncInfo.
StaticAllocaMap
.end()) {
[
all
...]
Completed in 262 milliseconds