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

  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
LanaiISelDAGToDAG.cpp 287 ConstantSDNode *ConstNode = cast<ConstantSDNode>(Node);
290 if (ConstNode->isNullValue()) {
297 if (ConstNode->isAllOnesValue()) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVISelDAGToDAG.cpp 382 auto *ConstNode = cast<ConstantSDNode>(Node);
383 if (VT == XLenVT && ConstNode->isNullValue()) {
389 ReplaceNode(Node, selectImm(CurDAG, DL, ConstNode->getSExtValue(), XLenVT));
RISCVISelLowering.cpp 8484 if (auto *ConstNode = dyn_cast<ConstantSDNode>(C.getNode())) {
8486 const APInt &Imm = ConstNode->getAPIntValue();
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 16182 if (auto *ConstNode = dyn_cast<ConstantSDNode>(C.getNode())) {
16183 if (!ConstNode->getAPIntValue().isSignedIntN(64))
16191 int64_t Imm = ConstNode->getSExtValue();
16625 ConstantSDNode* ConstNode = dyn_cast<ConstantSDNode>(RHS);
16628 if (!GSDN || !ConstNode)
16631 int64_t NewOffset = GSDN->getOffset() + ConstNode->getSExtValue();
16705 ConstantSDNode *ConstNode = dyn_cast<ConstantSDNode>(Op0.getOperand(1));
16707 if (!ConstNode || ConstNode->getZExtValue() != 64)
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp 3488 ConstantSDNode *ConstNode = cast<ConstantSDNode>(Node);
3489 if (ConstNode->isNullValue()) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 667 /// and ConstNode is c2.
670 SDValue &ConstNode);
16631 // and ConstNode is c2.
16643 SDValue &ConstNode) {
16651 for (SDNode *Use : ConstNode->uses()) {
16660 if (Use->getOperand(0) == ConstNode)
16667 // ConstNode = CONST
16668 // Use = ConstNode * A <-- visiting Use. OtherOp is A.
16671 // = AddNode * ConstNode <-- current visiting instruction.
16674 // multiply (ConstNode * A) that we can save
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 124 milliseconds