HomeSort by: relevance | last modified time | path
    Searched defs:ConstNode (Results 1 - 4 of 4) 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));
  /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/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)

Completed in 46 milliseconds