OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CondVal
(Results
1 - 10
of
10
) sorted by null
/external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp
733
Value *
CondVal
= SI.getCondition();
737
if (Value *V = SimplifySelectInst(
CondVal
, TrueVal, FalseVal, TD))
744
return BinaryOperator::CreateOr(
CondVal
, FalseVal);
747
Value *NotCond = Builder->CreateNot(
CondVal
, "not."+
CondVal
->getName());
753
return BinaryOperator::CreateAnd(
CondVal
, TrueVal);
756
Value *NotCond = Builder->CreateNot(
CondVal
, "not."+
CondVal
->getName());
762
if (
CondVal
== TrueVal)
763
return BinaryOperator::CreateOr(
CondVal
, FalseVal)
[
all
...]
InstructionCombining.cpp
[
all
...]
/external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp
639
Constant *
CondVal
= 0;
642
if (IsTrivialUnswitchCondition(LoopCond, &
CondVal
, &ExitBlock)) {
645
UnswitchTrivialCondition(currentLoop, LoopCond,
CondVal
, ExitBlock);
[
all
...]