Searched refs:CST (Results 1 - 8 of 8) sorted by relevance

/freebsd-9.3-release/contrib/binutils/bfd/
H A Dcpu-ia64-opc.c426 #define CST IA64_OPND_CLASS_CST macro
438 { CST, ins_const, ext_const, "NIL", {{ 0, 0}}, 0, "<none>" },
439 { CST, ins_const, ext_const, "ar.csd", {{ 0, 0}}, 0, "ar.csd" },
440 { CST, ins_const, ext_const, "ar.ccv", {{ 0, 0}}, 0, "ar.ccv" },
441 { CST, ins_const, ext_const, "ar.pfs", {{ 0, 0}}, 0, "ar.pfs" },
442 { CST, ins_const, ext_const, "1", {{ 0, 0}}, 0, "1" },
443 { CST, ins_const, ext_const, "8", {{ 0, 0}}, 0, "8" },
444 { CST, ins_const, ext_const, "16", {{ 0, 0}}, 0, "16" },
445 { CST, ins_const, ext_const, "r0", {{ 0, 0}}, 0, "r0" },
446 { CST, ins_cons
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp861 // non-constant operand of the multiply, and set CST to point to the multiplier.
864 static inline Value *dyn_castFoldableMul(Value *V, ConstantInt *&CST) { argument
872 if ((CST = dyn_cast<ConstantInt>(I->getOperand(1))))
875 if ((CST = dyn_cast<ConstantInt>(I->getOperand(1)))) {
876 // The multiplier is really 1 << CST.
878 uint32_t CSTVal = CST->getLimitedValue(BitWidth);
879 CST = ConstantInt::get(V->getType()->getContext(),
/freebsd-9.3-release/sys/dev/ctau/
H A Dctddk.h364 SA1, IDL, TRB, RRC, TRC0, TRC1, CST; member in struct:_ct_chan_t
H A Dctau.c497 set(CST, 0);
516 set(CST, 1);
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp1768 Constant *CST = IV.isConstant() ? local
1770 DEBUG(dbgs() << "*** Arg " << *AI << " = " << *CST <<"\n"); local
1774 AI->replaceAllUsesWith(CST);
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp2550 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(NewRHS))
2551 if ((CCCode == ISD::SETLT && CST->isNullValue()) || // X < 0
2552 (CCCode == ISD::SETGT && CST->isAllOnesValue())) { // X > -1
/freebsd-9.3-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp7705 ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op); local
7706 if (!CST) return; // Must be an immediate to match.
7707 unsigned Value = CST->getZExtValue();
/freebsd-9.3-release/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp19662 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
19664 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);

Completed in 185 milliseconds