OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Pred1Br
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp
703
BranchInst *
Pred1Br
= dyn_cast<BranchInst>(Pred1->getTerminator());
705
if (!
Pred1Br
|| !Pred2Br)
708
// Eliminate code duplication by ensuring that
Pred1Br
is conditional if
715
if (
Pred1Br
->isConditional())
719
std::swap(
Pred1Br
, Pred2Br);
722
if (
Pred1Br
->isConditional()) {
731
if (
Pred1Br
->getSuccessor(0) == BB &&
732
Pred1Br
->getSuccessor(1) == Pred2) {
735
} else if (
Pred1Br
->getSuccessor(0) == Pred2 &&
736
Pred1Br
->getSuccessor(1) == BB)
[
all
...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
SimplifyCFG.cpp
141
BranchInst *
Pred1Br
= dyn_cast<BranchInst>(Pred1->getTerminator());
143
if (
Pred1Br
== 0 || Pred2Br == 0)
146
// Eliminate code duplication by ensuring that
Pred1Br
is conditional if
153
if (
Pred1Br
->isConditional())
157
std::swap(
Pred1Br
, Pred2Br);
160
if (
Pred1Br
->isConditional()) {
169
if (
Pred1Br
->getSuccessor(0) == BB &&
170
Pred1Br
->getSuccessor(1) == Pred2) {
173
} else if (
Pred1Br
->getSuccessor(0) == Pred2 &&
174
Pred1Br
->getSuccessor(1) == BB)
[
all
...]
Completed in 63 milliseconds