HomeSort by: relevance | last modified time | path
    Searched defs:SelectInst (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/
AArch64InstructionSelector.cpp 1207 auto SelectInst = MIB.buildInstr(Opc, {Dst}, {True, False}).addImm(CC);
1208 constrainSelectedInstRegOperands(*SelectInst, TII, TRI, RBI);
1209 return &*SelectInst;
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instructions.h 1724 // SelectInst Class
1729 class SelectInst : public Instruction {
1730 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr,
1738 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr,
1757 SelectInst *cloneImpl() const;
1760 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1764 SelectInst *Sel = new(3) SelectInst(C, S1, S2, NameStr, InsertBefore);
1770 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1773 return new(3) SelectInst(C, S1, S2, NameStr, InsertAtEnd)
    [all...]

Completed in 56 milliseconds