HomeSort by: relevance | last modified time | path
    Searched refs:LogicOp (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZInstrInfo.cpp 902 struct LogicOp {
903 LogicOp() = default;
904 LogicOp(unsigned regSize, unsigned immLSB, unsigned immSize)
916 static LogicOp interpretAndImmediate(unsigned Opcode) {
918 case SystemZ::NILMux: return LogicOp(32, 0, 16);
919 case SystemZ::NIHMux: return LogicOp(32, 16, 16);
920 case SystemZ::NILL64: return LogicOp(64, 0, 16);
921 case SystemZ::NILH64: return LogicOp(64, 16, 16);
922 case SystemZ::NIHL64: return LogicOp(64, 32, 16);
923 case SystemZ::NIHH64: return LogicOp(64, 48, 16)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 2734 SDValue computeLogicOpInGPR(SDValue LogicOp);
2908 SDValue IntegerCompareEliminator::computeLogicOpInGPR(SDValue LogicOp) {
2909 assert(isLogicOp(LogicOp.getOpcode()) &&
2911 assert(LogicOp.getValueType() == MVT::i1 &&
2913 SDLoc dl(LogicOp);
2917 bool IsBitwiseNegation = isBitwiseNot(LogicOp);
2938 LHS = getLogicOperand(LogicOp.getOperand(0));
2939 RHS = getLogicOperand(LogicOp.getOperand(1));
2956 switch (LogicOp.getOpcode()) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CodeGenPrepare.cpp 8120 Instruction *LogicOp;
8123 m_Br(m_OneUse(m_Instruction(LogicOp)), TBB, FBB)))
8136 if (match(LogicOp,
8139 else if (match(LogicOp, m_LogicalOr(m_OneUse(m_Value(Cond1)),
8164 LogicOp->eraseFromParent();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 7944 SDValue LogicOp = Shift->getOperand(0);
7945 if (!LogicOp.hasOneUse())
7948 unsigned LogicOpcode = LogicOp.getOpcode();
7987 if (matchFirstShift(LogicOp.getOperand(0), X, C0Val))
7988 Y = LogicOp.getOperand(1);
7989 else if (matchFirstShift(LogicOp.getOperand(1), X, C0Val))
7990 Y = LogicOp.getOperand(0);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp 21919 unsigned LogicOp = IsFABS ? X86ISD::FAND :
21925 return DAG.getNode(LogicOp, dl, LogicVT, Operand, Mask);
21930 SDValue LogicNode = DAG.getNode(LogicOp, dl, LogicVT, Operand, Mask);
    [all...]

Completed in 73 milliseconds