OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NumPreds
(Results
1 - 6
of
6
) sorted by null
/external/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h
50
unsigned
NumPreds
; // Number of predecessor blocks.
51
BBInfo **Preds; // Array[
NumPreds
] of predecessor blocks.
56
NumPreds
(0), Preds(0), PHITag(0) { }
116
Info->
NumPreds
= Preds.size();
117
if (Info->
NumPreds
== 0)
121
(Allocator.Allocate(Info->
NumPreds
* sizeof(BBInfo*),
124
for (unsigned p = 0; p != Info->
NumPreds
; ++p) {
237
for (unsigned p = 0; p != Info->
NumPreds
; ++p) {
295
for (unsigned p = 0; p != Info->
NumPreds
; ++p) {
333
ValT PHI = Traits::CreateEmptyPHI(Info->BB, Info->
NumPreds
, Updater)
[
all
...]
/external/llvm/lib/Transforms/Utils/
CloneFunction.cpp
426
unsigned
NumPreds
= OPN->getNumIncomingValues();
436
for (unsigned pred = 0, e =
NumPreds
; pred != e; ++pred) {
458
NumPreds
= std::distance(pred_begin(NewBB), pred_end(NewBB));
459
if (
NumPreds
!= PN->getNumIncomingValues()) {
460
assert(
NumPreds
< PN->getNumIncomingValues());
/external/llvm/include/llvm/CodeGen/
ScheduleDAG.h
273
unsigned
NumPreds
; // # of SDep::Data preds.
313
NodeQueueId(0),
NumPreds
(0), NumSuccs(0), NumPredsLeft(0),
327
NodeQueueId(0),
NumPreds
(0), NumSuccs(0), NumPredsLeft(0),
340
NodeQueueId(0),
NumPreds
(0), NumSuccs(0), NumPredsLeft(0),
/external/llvm/lib/CodeGen/
IfConversion.cpp
[
all
...]
/external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp
618
unsigned
NumPreds
= std::distance(pred_begin(TestBB), pred_end(TestBB));
619
if (
NumPreds
< MinNumPreds) {
621
MinNumPreds =
NumPreds
;
[
all
...]
IndVarSimplify.cpp
495
unsigned
NumPreds
= PN->getNumIncomingValues();
515
for (unsigned i = 0; i !=
NumPreds
; ++i) {
596
if (
NumPreds
== 1) {
604
if (
NumPreds
!= 1) {
[
all
...]
Completed in 649 milliseconds