HomeSort by relevance Sort by last modified time
    Searched refs:IfTrue (Results 1 - 25 of 44) sorted by null

1 2

  /external/clang/unittests/ASTMatchers/Dynamic/
VariantValueTest.cpp 108 bool IfTrue = false;
110 IfTrue = true;
112 EXPECT_FALSE(IfTrue);
116 IfTrue = false;
118 IfTrue = true;
120 EXPECT_TRUE(IfTrue);
  /external/llvm/lib/Target/Hexagon/
HexagonEarlyIfConv.cpp 172 unsigned getCondStoreOpcode(unsigned Opc, bool IfTrue) const;
174 MachineInstr *MI, unsigned PredR, bool IfTrue);
177 unsigned PredR, bool IfTrue);
655 bool IfTrue) const {
660 return IfTrue ? S2_pstorerbt_io : S2_pstorerbf_io;
662 return IfTrue ? S4_pstorerbt_rr : S4_pstorerbf_rr;
665 return IfTrue ? S4_pstorerbt_abs : S4_pstorerbf_abs;
667 return IfTrue ? S4_storeirbt_io : S4_storeirbf_io;
669 return IfTrue ? S2_pstorerht_io : S2_pstorerhf_io;
671 return IfTrue ? S4_pstorerht_rr : S4_pstorerhf_rr
    [all...]
HexagonGenMux.cpp 216 bool IfTrue = HII->isPredicatedTrue(Opc);
230 if (IfTrue)
HexagonExpandCondsets.cpp 578 bool IfTrue) {
595 return IfTrue ? A2_tfrt : A2_tfrf;
597 return IfTrue ? A2_tfrpt : A2_tfrpf;
602 return IfTrue ? C2_cmoveit : C2_cmoveif;
    [all...]
  /external/v8/src/compiler/
diamond.h 30 if_true = graph->NewNode(common->IfTrue(), branch);
control-flow-optimizer.cc 91 if_true = matcher.IfTrue();
js-call-reducer.cc 317 Node* if_null = graph()->NewNode(common()->IfTrue(), control);
326 Node* if_undefined = graph()->NewNode(common()->IfTrue(), control);
    [all...]
graph-assembler.h 404 current_control_ = graph()->NewNode(common()->IfTrue(), branch);
421 current_control_ = graph()->NewNode(common()->IfTrue(), branch);
js-typed-lowering.cc 734 control = graph()->NewNode(common()->IfTrue(), branch);
    [all...]
simplified-lowering.cc     [all...]
bytecode-graph-builder.h 103 Node* NewIfTrue() { return NewNode(common()->IfTrue()); }
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
HexagonEarlyIfConv.cpp 196 unsigned getCondStoreOpcode(unsigned Opc, bool IfTrue) const;
198 MachineInstr *MI, unsigned PredR, bool IfTrue);
201 unsigned PredR, bool IfTrue);
705 bool IfTrue) const {
706 return HII->getCondOpcode(Opc, !IfTrue);
711 unsigned PredR, bool IfTrue) {
721 unsigned COpc = getCondStoreOpcode(Opc, IfTrue);
744 const MCInstrDesc &D = HII->get(IfTrue ? Hexagon::J2_jumpt
764 unsigned PredR, bool IfTrue) {
775 predicateInstr(ToB, At, &*I, PredR, IfTrue);
    [all...]
HexagonGenMux.cpp 253 bool IfTrue = HII->isPredicatedTrue(Opc);
267 if (IfTrue)
HexagonExpandCondsets.cpp 579 bool IfTrue) {
597 return IfTrue ? A2_tfrt : A2_tfrf;
599 return IfTrue ? A2_tfrpt : A2_tfrpf;
612 return IfTrue ? C2_cmoveit : C2_cmoveif;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/
VPlan.h 492 /// Set two given VPBlockBases \p IfTrue and \p IfFalse to be the two
494 /// selector. This VPBlockBase is not added as predecessor of \p IfTrue or \p
496 void setTwoSuccessors(VPBlockBase *IfTrue, VPBlockBase *IfFalse,
501 appendSuccessor(IfTrue);
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
BasicBlockUtils.h 283 Value *GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/
BasicBlockUtils.h 287 Value *GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue,
  /external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 631 BranchInst::Create(/*ifTrue*/ThenBlock, /*ifFalse*/Tail, Cond);
672 BranchInst::Create(/*ifTrue*/ThenBlock, /*ifFalse*/ElseBlock, Cond);
678 Value *llvm::GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue,
733 IfTrue = Pred1;
737 IfTrue = Pred2;
761 IfTrue = Pred1;
764 IfTrue = Pred2;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 700 BranchInst::Create(/*ifTrue*/ThenBlock, /*ifFalse*/Tail, Cond);
742 BranchInst::Create(/*ifTrue*/ThenBlock, /*ifFalse*/ElseBlock, Cond);
747 Value *llvm::GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue,
802 IfTrue = Pred1;
806 IfTrue = Pred2;
830 IfTrue = Pred1;
833 IfTrue = Pred2;
  /external/swiftshader/third_party/LLVM/include/llvm/
Instructions.h     [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Instructions.cpp 733 BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore)
734 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
737 assert(IfTrue != 0 && "Branch destination may not be null!");
738 Op<-1>() = IfTrue;
740 BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
742 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
745 Op<-1>() = IfTrue;
753 BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
754 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
757 assert(IfTrue != 0 && "Branch destination may not be null!")
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
Instructions.cpp     [all...]
  /external/llvm/include/llvm/IR/
Instructions.h     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
Instructions.h     [all...]
  /external/llvm/lib/IR/
Instructions.cpp     [all...]

Completed in 1329 milliseconds

1 2