OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NewGlobals
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp
442
std::vector<GlobalVariable*>
NewGlobals
;
451
NewGlobals
.reserve(STy->getNumElements());
464
NewGlobals
.push_back(NGV);
483
NewGlobals
.reserve(NumElements);
499
NewGlobals
.push_back(NGV);
510
if (
NewGlobals
.empty())
529
if (Val >=
NewGlobals
.size()) Val = 0; // Out of bound array access.
531
Value *NewPtr =
NewGlobals
[Val];
532
Type *NewTy =
NewGlobals
[Val]->getValueType();
569
for (unsigned i = 0, e =
NewGlobals
.size(); i != e; ++i
[
all
...]
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
GlobalOpt.cpp
505
std::vector<GlobalVariable*>
NewGlobals
;
514
NewGlobals
.reserve(STy->getNumElements());
526
NewGlobals
.push_back(NGV);
545
NewGlobals
.reserve(NumElements);
560
NewGlobals
.push_back(NGV);
571
if (
NewGlobals
.empty())
590
if (Val >=
NewGlobals
.size()) Val = 0; // Out of bound array access.
592
Value *NewPtr =
NewGlobals
[Val];
628
for (unsigned i = 0, e =
NewGlobals
.size(); i != e; ++i)
629
if (
NewGlobals
[i]->use_empty())
[
all
...]
Completed in 81 milliseconds