OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CondInst
(Results
1 - 4
of
4
) sorted by null
/external/llvm/examples/Fibonacci/
fibonacci.cpp
64
Value *
CondInst
= new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond");
65
BranchInst::Create(RetBB, RecurseBB,
CondInst
, BB);
/external/llvm/examples/ParallelJIT/
ParallelJIT.cpp
92
Value *
CondInst
= new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond");
93
BranchInst::Create(RetBB, RecurseBB,
CondInst
, BB);
/external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp
797
Instruction *
CondInst
= dyn_cast<Instruction>(Condition);
800
if (!
CondInst
) {
808
if (CmpInst *CondCmp = dyn_cast<CmpInst>(
CondInst
)) {
[
all
...]
EarlyCSE.cpp
523
if (auto *
CondInst
= dyn_cast<Instruction>(BI->getCondition()))
524
if (SimpleValue::canHandle(
CondInst
)) {
529
AvailableValues.insert(
CondInst
, ConditionalConstant);
531
<<
CondInst
->getName() << "' as " << *ConditionalConstant
534
replaceDominatedUsesWith(
CondInst
, ConditionalConstant, DT,
[
all
...]
Completed in 157 milliseconds