• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/

Lines Matching defs:?A

936   LegalizeTypeAction TA = getTypeAction(Context, VT);
937 if (NumElts != 1 && (TA == TypeWidenVector || TA == TypePromoteInteger)) {
1085 TargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
1092 GA &&
1093 !GA->getGlobal()->isDeclaration() &&
1094 !GA->getGlobal()->isWeakForLinker())
1423 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1424 unsigned ShAmt = SA->getZExtValue();
1478 KnownZero <<= SA->getZExtValue();
1479 KnownOne <<= SA->getZExtValue();
1481 KnownZero |= APInt::getLowBitsSet(BitWidth, SA->getZExtValue());
1485 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1487 unsigned ShAmt = SA->getZExtValue();
1538 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1540 unsigned ShAmt = SA->getZExtValue();
2666 bool TargetLowering::isGAPlusOffset(SDNode *N, const GlobalValue *&GA,
2670 GA = GASD->getGlobal();
2678 if (isGAPlusOffset(N1.getNode(), GA, Offset)) {
2684 } else if (isGAPlusOffset(N2.getNode(), GA, Offset)) {
2781 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
2786 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
2787 if (C == 0 || GA == 0) {
2789 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(1));
2791 if (C == 0 || GA == 0)
2792 C = 0, GA = 0;
2797 if (GA) { // Either &GV or &GV+C
2799 int64_t Offs = GA->getOffset();
2801 Ops.push_back(DAG.getTargetGlobalAddress(GA->getGlobal(),
2881 const InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue());
2887 ConstraintInfos = IA->ParseConstraints();