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

1 2

  /external/llvm/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 59 ConstantSDNode *N = cast<ConstantSDNode>(inN);
99 ConstantSDNode *CN = 0;
101 && (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
120 ConstantSDNode *CN = 0;
122 && (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
141 ConstantSDNode *CN = 0;
143 && (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
159 uint64_t Val = cast<ConstantSDNode>(N)->getZExtValue();
214 unsigned IntNo = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue()
    [all...]
XCoreISelLowering.cpp 361 ConstantSDNode *CN = 0;
362 if (!(CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))) {
370 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Base.getOperand(1)
785 if (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue() > 0)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 511 cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
512 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
534 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
535 if (isa<ConstantSDNode>(N1)) {
539 cast<ConstantSDNode>(N0.getOperand(1)),
540 cast<ConstantSDNode>(N1));
552 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
553 if (isa<ConstantSDNode>(N0)) {
557 cast<ConstantSDNode>(N1.getOperand(1)),
558 cast<ConstantSDNode>(N0))
    [all...]
TargetLowering.cpp     [all...]
ScheduleDAGSDNodes.h 53 if (isa<ConstantSDNode>(Node)) return true;
InstrEmitter.cpp 347 } else if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
451 unsigned SubIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
489 unsigned SubIdx = cast<ConstantSDNode>(N2)->getZExtValue();
519 const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
548 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
565 unsigned DstRCIdx = cast<ConstantSDNode>(Node->getOperand(0))->getZExtValue();
577 unsigned SubIdx = cast<ConstantSDNode>(Op)->getZExtValue();
    [all...]
SelectionDAG.cpp 130 if (isa<ConstantSDNode>(NotZero)) {
131 if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
171 if (isa<ConstantSDNode>(Zero)) {
172 if (!cast<ConstantSDNode>(Zero)->isNullValue())
364 ID.AddPointer(cast<ConstantSDNode>(N)->getConstantIntValue());
793 assert(!isa<ConstantSDNode>(N) && "Bad ConstantSDNode!");
    [all...]
  /external/llvm/lib/Target/PTX/
PTXISelDAGToDAG.cpp 228 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
325 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
338 return ConstantSDNode::classof(operand.getNode());
343 if (!ConstantSDNode::classof(node))
346 ConstantSDNode *CN = cast<ConstantSDNode>(node);
PTXSelectionDAGInfo.cpp 42 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 36 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
52 ConstantSDNode *V = dyn_cast<ConstantSDNode>(Src);
82 ConstantSDNode *ValC = dyn_cast<ConstantSDNode>(Src);
183 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
X86ISelDAGToDAG.cpp 176 return isInt<8>(cast<ConstantSDNode>(N)->getSExtValue());
182 uint64_t v = cast<ConstantSDNode>(N)->getZExtValue();
333 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
594 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Address))
748 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N))
757 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
788 if (ConstantSDNode
    [all...]
X86ISelLowering.cpp 95 if (isa<ConstantSDNode>(Idx)) {
96 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
127 if (isa<ConstantSDNode>(Idx)) {
132 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
    [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeISelDAGToDAG.cpp 105 Imm = (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
107 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
109 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
164 } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
  /external/llvm/lib/Target/CellSPU/
SPUISelDAGToDAG.cpp 41 //! ConstantSDNode predicate for i32 sign-extended, 10-bit immediates
43 isI32IntS10Immediate(ConstantSDNode *CN)
48 //! ConstantSDNode predicate for i32 unsigned 10-bit immediate values
50 isI32IntU10Immediate(ConstantSDNode *CN)
55 //! ConstantSDNode predicate for i16 sign-extended, 10-bit immediate values
57 isI16IntS10Immediate(ConstantSDNode *CN)
62 //! ConstantSDNode predicate for i16 unsigned 10-bit immediate values
64 isI16IntU10Immediate(ConstantSDNode *CN)
69 //! ConstantSDNode predicate for signed 16-bit values
79 isIntS16Immediate(ConstantSDNode *CN, short &Imm
    [all...]
SPUISelLowering.cpp 589 ConstantSDNode *CN;
594 && (CN = dyn_cast<ConstantSDNode > (basePtr.getOperand(1))) != 0) {
642 if (isa<ConstantSDNode>(Op1)) {
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp 292 Imm = cast<ConstantSDNode>(N)->getZExtValue();
322 const ConstantSDNode *C = dyn_cast<ConstantSDNode>(Node);
405 ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(N.getOperand(1));
429 ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(N.getOperand(1));
467 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
495 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(N.getOperand(1)))
    [all...]
ARMSelectionDAGInfo.cpp 42 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
  /external/llvm/lib/Target/PowerPC/
PPCHazardRecognizers.cpp 116 if (ConstantSDNode *StoreOffset = dyn_cast<ConstantSDNode>(StorePtr1[i]))
117 if (ConstantSDNode *LoadOffset = dyn_cast<ConstantSDNode>(Ptr1)) {
PPCISelDAGToDAG.cpp 263 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue();
265 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue();
267 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue();
279 Imm = cast<ConstantSDNode>(N)->getZExtValue();
289 Imm = cast<ConstantSDNode>(N)->getZExtValue();
747 int64_t Imm = cast<ConstantSDNode>(N)->getZExtValue();
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelDAGToDAG.cpp 85 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) {
121 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
  /external/llvm/lib/Target/Blackfin/
BlackfinISelDAGToDAG.cpp 106 ConstantSDNode *CN = 0;
108 (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) &&
  /external/llvm/lib/Target/Alpha/
AlphaISelDAGToDAG.cpp 256 uint64_t uval = cast<ConstantSDNode>(N)->getZExtValue();
357 ConstantSDNode* SC = NULL;
358 ConstantSDNode* MC = NULL;
360 (MC = dyn_cast<ConstantSDNode>(N->getOperand(1))) &&
361 (SC = dyn_cast<ConstantSDNode>(N->getOperand(0).getOperand(1)))) {
  /external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 190 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
225 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
312 if (cast<ConstantSDNode>(LD->getOffset())->getZExtValue() != 1)
318 if (cast<ConstantSDNode>(LD->getOffset())->getZExtValue() != 2)
MSP430ISelLowering.cpp 600 if (!isa<ConstantSDNode>(N->getOperand(1)))
615 uint64_t ShiftAmount = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
695 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
708 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
721 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS)) {
734 if (const ConstantSDNode * C = dyn_cast<ConstantSDNode>(LHS))
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGISel.h 229 bool CheckAndMask(SDValue LHS, ConstantSDNode *RHS,
231 bool CheckOrMask(SDValue LHS, ConstantSDNode *RHS,

Completed in 351 milliseconds

1 2