OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PredCases
(Results
1 - 2
of
2
) sorted by null
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
SimplifyCFG.cpp
560
std::vector<std::pair<ConstantInt*, BasicBlock*> >
PredCases
;
562
PredCases
);
563
EliminateBlockCases(PredDef,
PredCases
); // Remove default from cases.
574
//
PredCases
. If there are any cases in ThisCases that are in
PredCases
, we
576
if (!ValuesOverlap(
PredCases
, ThisCases))
600
for (unsigned i = 0, e =
PredCases
.size(); i != e; ++i)
601
DeadCases.insert(
PredCases
[i].first);
620
for (unsigned i = 0, e =
PredCases
.size(); i != e; ++i)
621
if (
PredCases
[i].second == TIBB)
[
all
...]
/external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp
754
std::vector<ValueEqualityComparisonCase>
PredCases
;
756
GetValueEqualityComparisonCases(Pred->getTerminator(),
PredCases
);
757
EliminateBlockCases(PredDef,
PredCases
); // Remove default from cases.
768
//
PredCases
. If there are any cases in ThisCases that are in
PredCases
, we
770
if (!ValuesOverlap(
PredCases
, ThisCases))
795
for (unsigned i = 0, e =
PredCases
.size(); i != e; ++i)
796
DeadCases.insert(
PredCases
[i].Value);
[
all
...]
Completed in 61 milliseconds