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

Lines Matching defs:?A

53   if (const Argument *MA = dyn_cast<Argument>(V))
54 return MA->getParent() ? MA->getParent()->getParent() : 0;
410 if (const Argument *FA = dyn_cast<Argument>(V))
411 return new SlotTracker(FA->getParent());
423 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
424 return new SlotTracker(GA->getParent());
852 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) {
854 WriteAsOperandInternal(Out, BA->getFunction(), &TypePrinter, Machine,
857 WriteAsOperandInternal(Out, BA->getBasicBlock(), &TypePrinter, Machine,
863 if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
864 Type *ETy = CA->getType()->getElementType();
868 WriteAsOperandInternal(Out, CA->getOperand(0),
871 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
875 WriteAsOperandInternal(Out, CA->getOperand(i), &TypePrinter, Machine,
882 if (const ConstantDataArray *CA = dyn_cast<ConstantDataArray>(CV)) {
885 if (CA->isString()) {
887 PrintEscapedString(CA->getAsString(), Out);
892 Type *ETy = CA->getType()->getElementType();
896 WriteAsOperandInternal(Out, CA->getElementAsConstant(0),
899 for (unsigned i = 1, e = CA->getNumElements(); i != e; ++i) {
903 WriteAsOperandInternal(Out, CA->getElementAsConstant(i), &TypePrinter,
1045 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
1047 if (IA->hasSideEffects())
1049 if (IA->isAlignStack())
1052 if (IA->getDialect() == InlineAsm::AD_Intel)
1055 PrintEscapedString(IA->getAsmString(), Out);
1057 PrintEscapedString(IA->getConstraintString(), Out);
1193 void printArgument(const Argument *FA, Attributes Attrs);
1464 void AssemblyWriter::printAlias(const GlobalAlias *GA) {
1465 if (GA->isMaterializable())
1468 // Don't crash when dumping partially built GA
1469 if (!GA->hasName())
1472 PrintLLVMName(Out, GA);
1475 PrintVisibility(GA->getVisibility(), Out);
1479 PrintLinkage(GA->getLinkage(), Out);
1481 const Constant *Aliasee = GA->getAliasee();
1484 TypePrinter.print(GA->getType(), Out);
1490 printInfoComment(*GA);