blob: 11e06c9750d54e6c1b09751ee969c0a93db32c23 [file] [log] [blame]
Chris Lattner8da78af2002-04-07 22:31:46 +00001//===-- AsmWriter.cpp - Printing LLVM as an assembly file -----------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00009//
10// This library implements the functionality defined in llvm/Assembly/Writer.h
11//
Chris Lattner02b93992002-04-12 18:21:53 +000012// Note that these routines must be extremely tolerant of various errors in the
Chris Lattner8f77dae2003-05-08 02:44:12 +000013// LLVM code, because it can be used for debugging transformations.
Chris Lattner02b93992002-04-12 18:21:53 +000014//
Chris Lattner00950542001-06-06 20:29:01 +000015//===----------------------------------------------------------------------===//
16
Chris Lattner75cf7cf2002-04-08 22:03:40 +000017#include "llvm/Assembly/Writer.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000018#include "llvm/ADT/DenseMap.h"
19#include "llvm/ADT/STLExtras.h"
20#include "llvm/ADT/SmallString.h"
21#include "llvm/ADT/StringExtras.h"
Chris Lattner1dbb3872010-09-02 23:09:42 +000022#include "llvm/Assembly/AssemblyAnnotationWriter.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000023#include "llvm/Assembly/PrintModulePass.h"
Bill Wendling58a6cf22012-06-28 00:41:44 +000024#include "llvm/DebugInfo.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000025#include "llvm/IR/CallingConv.h"
26#include "llvm/IR/Constants.h"
27#include "llvm/IR/DerivedTypes.h"
28#include "llvm/IR/InlineAsm.h"
29#include "llvm/IR/IntrinsicInst.h"
30#include "llvm/IR/LLVMContext.h"
31#include "llvm/IR/Module.h"
32#include "llvm/IR/Operator.h"
Chandler Carruth4068e1a2013-01-07 15:43:51 +000033#include "llvm/IR/TypeFinder.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000034#include "llvm/IR/ValueSymbolTable.h"
Bill Wendling8f487662006-11-28 02:09:03 +000035#include "llvm/Support/CFG.h"
David Greened865e022010-01-05 01:29:26 +000036#include "llvm/Support/Debug.h"
Devang Patel2d5988d2009-09-30 20:16:54 +000037#include "llvm/Support/Dwarf.h"
Torok Edwinab7c09b2009-07-08 18:01:40 +000038#include "llvm/Support/ErrorHandling.h"
Dan Gohman683e9222009-08-12 17:23:50 +000039#include "llvm/Support/FormattedStream.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000040#include "llvm/Support/MathExtras.h"
Chris Lattner007377f2001-09-07 16:36:04 +000041#include <algorithm>
Reid Spencer4ad513c2007-05-22 19:27:35 +000042#include <cctype>
Chris Lattner31f84992003-11-21 20:23:48 +000043using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000044
Reid Spenceredd5d9e2005-05-15 16:13:11 +000045// Make virtual table appear in this compilation unit.
46AssemblyAnnotationWriter::~AssemblyAnnotationWriter() {}
47
Chris Lattner6ab910b2008-08-19 04:36:02 +000048//===----------------------------------------------------------------------===//
49// Helper Functions
50//===----------------------------------------------------------------------===//
51
52static const Module *getModuleFromVal(const Value *V) {
53 if (const Argument *MA = dyn_cast<Argument>(V))
54 return MA->getParent() ? MA->getParent()->getParent() : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +000055
Chris Lattner6ab910b2008-08-19 04:36:02 +000056 if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
57 return BB->getParent() ? BB->getParent()->getParent() : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +000058
Chris Lattner6ab910b2008-08-19 04:36:02 +000059 if (const Instruction *I = dyn_cast<Instruction>(V)) {
60 const Function *M = I->getParent() ? I->getParent()->getParent() : 0;
61 return M ? M->getParent() : 0;
62 }
Andrew Trick18801ec2011-09-30 19:48:58 +000063
Chris Lattner6ab910b2008-08-19 04:36:02 +000064 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
65 return GV->getParent();
66 return 0;
67}
68
Micah Villmowd3766df2012-09-13 15:11:12 +000069static void PrintCallingConv(unsigned cc, raw_ostream &Out)
70{
71 switch (cc) {
72 case CallingConv::Fast: Out << "fastcc"; break;
73 case CallingConv::Cold: Out << "coldcc"; break;
74 case CallingConv::X86_StdCall: Out << "x86_stdcallcc"; break;
75 case CallingConv::X86_FastCall: Out << "x86_fastcallcc"; break;
76 case CallingConv::X86_ThisCall: Out << "x86_thiscallcc"; break;
Elena Demikhovsky35752222012-10-24 14:46:16 +000077 case CallingConv::Intel_OCL_BI: Out << "intel_ocl_bicc"; break;
Micah Villmowd3766df2012-09-13 15:11:12 +000078 case CallingConv::ARM_APCS: Out << "arm_apcscc"; break;
79 case CallingConv::ARM_AAPCS: Out << "arm_aapcscc"; break;
80 case CallingConv::ARM_AAPCS_VFP:Out << "arm_aapcs_vfpcc"; break;
81 case CallingConv::MSP430_INTR: Out << "msp430_intrcc"; break;
82 case CallingConv::PTX_Kernel: Out << "ptx_kernel"; break;
83 case CallingConv::PTX_Device: Out << "ptx_device"; break;
84 default: Out << "cc" << cc; break;
85 }
86}
Michael Ilseman407a6162012-11-15 22:34:00 +000087
Daniel Dunbare9da1332008-10-28 19:33:02 +000088// PrintEscapedString - Print each character of the specified string, escaping
89// it if it is not printable or if it is an escape char.
Chris Lattner8fff1262010-07-07 23:16:37 +000090static void PrintEscapedString(StringRef Name, raw_ostream &Out) {
Daniel Dunbar03d76512009-07-25 23:55:21 +000091 for (unsigned i = 0, e = Name.size(); i != e; ++i) {
92 unsigned char C = Name[i];
Nick Lewycky34a40862009-03-15 06:39:52 +000093 if (isprint(C) && C != '\\' && C != '"')
Daniel Dunbare9da1332008-10-28 19:33:02 +000094 Out << C;
95 else
96 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
97 }
98}
99
Chris Lattner6ab910b2008-08-19 04:36:02 +0000100enum PrefixType {
101 GlobalPrefix,
102 LabelPrefix,
Daniel Dunbarcad35802008-10-14 23:28:09 +0000103 LocalPrefix,
104 NoPrefix
Chris Lattner6ab910b2008-08-19 04:36:02 +0000105};
106
107/// PrintLLVMName - Turn the specified name into an 'LLVM name', which is either
108/// prefixed with % (if the string only contains simple characters) or is
109/// surrounded with ""'s (if it has special chars in it). Print it out.
Benjamin Kramer38e59892010-07-14 22:38:02 +0000110static void PrintLLVMName(raw_ostream &OS, StringRef Name, PrefixType Prefix) {
Jay Foad61717b32011-04-24 14:30:00 +0000111 assert(!Name.empty() && "Cannot get empty name!");
Chris Lattner6ab910b2008-08-19 04:36:02 +0000112 switch (Prefix) {
Daniel Dunbarcad35802008-10-14 23:28:09 +0000113 case NoPrefix: break;
Chris Lattner52b26de2008-08-19 05:16:28 +0000114 case GlobalPrefix: OS << '@'; break;
115 case LabelPrefix: break;
116 case LocalPrefix: OS << '%'; break;
Nick Lewycky04234832009-03-19 06:31:22 +0000117 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000118
Chris Lattner6ab910b2008-08-19 04:36:02 +0000119 // Scan the name to see if it needs quotes first.
Daniel Dunbar03d76512009-07-25 23:55:21 +0000120 bool NeedsQuotes = isdigit(Name[0]);
Chris Lattner6ab910b2008-08-19 04:36:02 +0000121 if (!NeedsQuotes) {
Daniel Dunbar03d76512009-07-25 23:55:21 +0000122 for (unsigned i = 0, e = Name.size(); i != e; ++i) {
Aaron Ballman09dab822012-07-16 16:18:18 +0000123 // By making this unsigned, the value passed in to isalnum will always be
124 // in the range 0-255. This is important when building with MSVC because
125 // its implementation will assert. This situation can arise when dealing
126 // with UTF-8 multibyte characters.
127 unsigned char C = Name[i];
Chris Lattner6ab910b2008-08-19 04:36:02 +0000128 if (!isalnum(C) && C != '-' && C != '.' && C != '_') {
129 NeedsQuotes = true;
130 break;
131 }
132 }
133 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000134
Chris Lattner6ab910b2008-08-19 04:36:02 +0000135 // If we didn't need any quotes, just write out the name in one blast.
136 if (!NeedsQuotes) {
Daniel Dunbar03d76512009-07-25 23:55:21 +0000137 OS << Name;
Chris Lattner6ab910b2008-08-19 04:36:02 +0000138 return;
139 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000140
Chris Lattner6ab910b2008-08-19 04:36:02 +0000141 // Okay, we need quotes. Output the quotes and escape any scary characters as
142 // needed.
143 OS << '"';
Daniel Dunbar03d76512009-07-25 23:55:21 +0000144 PrintEscapedString(Name, OS);
Chris Lattner6ab910b2008-08-19 04:36:02 +0000145 OS << '"';
146}
147
148/// PrintLLVMName - Turn the specified name into an 'LLVM name', which is either
149/// prefixed with % (if the string only contains simple characters) or is
150/// surrounded with ""'s (if it has special chars in it). Print it out.
Dan Gohman1220e102009-08-12 20:56:03 +0000151static void PrintLLVMName(raw_ostream &OS, const Value *V) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000152 PrintLLVMName(OS, V->getName(),
Chris Lattner6ab910b2008-08-19 04:36:02 +0000153 isa<GlobalValue>(V) ? GlobalPrefix : LocalPrefix);
154}
155
Chris Lattner9cc34462009-02-28 20:25:14 +0000156//===----------------------------------------------------------------------===//
157// TypePrinting Class: Type printing machinery
158//===----------------------------------------------------------------------===//
159
Chris Lattnerfb78b332011-06-18 21:23:04 +0000160/// TypePrinting - Type printing machinery.
161namespace {
162class TypePrinting {
Craig Topper86a1c322012-09-15 17:09:36 +0000163 TypePrinting(const TypePrinting &) LLVM_DELETED_FUNCTION;
164 void operator=(const TypePrinting&) LLVM_DELETED_FUNCTION;
Chris Lattnerfb78b332011-06-18 21:23:04 +0000165public:
Chris Lattner1afcace2011-07-09 17:41:24 +0000166
167 /// NamedTypes - The named types that are used by the current module.
Bill Wendling573e9732012-08-03 00:30:35 +0000168 TypeFinder NamedTypes;
Andrew Trick18801ec2011-09-30 19:48:58 +0000169
Chris Lattner1afcace2011-07-09 17:41:24 +0000170 /// NumberedTypes - The numbered types, along with their value.
171 DenseMap<StructType*, unsigned> NumberedTypes;
Andrew Trick18801ec2011-09-30 19:48:58 +0000172
Chris Lattner1afcace2011-07-09 17:41:24 +0000173
Chris Lattnerfb78b332011-06-18 21:23:04 +0000174 TypePrinting() {}
175 ~TypePrinting() {}
Andrew Trick18801ec2011-09-30 19:48:58 +0000176
Chris Lattner1afcace2011-07-09 17:41:24 +0000177 void incorporateTypes(const Module &M);
Andrew Trick18801ec2011-09-30 19:48:58 +0000178
Chris Lattner1afcace2011-07-09 17:41:24 +0000179 void print(Type *Ty, raw_ostream &OS);
Andrew Trick18801ec2011-09-30 19:48:58 +0000180
Chris Lattner1afcace2011-07-09 17:41:24 +0000181 void printStructBody(StructType *Ty, raw_ostream &OS);
Chris Lattnerfb78b332011-06-18 21:23:04 +0000182};
183} // end anonymous namespace.
Chris Lattnerd8030a72009-02-28 22:34:45 +0000184
Chris Lattner1afcace2011-07-09 17:41:24 +0000185
186void TypePrinting::incorporateTypes(const Module &M) {
Bill Wendling573e9732012-08-03 00:30:35 +0000187 NamedTypes.run(M, false);
Andrew Trick18801ec2011-09-30 19:48:58 +0000188
Chris Lattner1afcace2011-07-09 17:41:24 +0000189 // The list of struct types we got back includes all the struct types, split
190 // the unnamed ones out to a numbering and remove the anonymous structs.
191 unsigned NextNumber = 0;
Andrew Trick18801ec2011-09-30 19:48:58 +0000192
Chris Lattner1afcace2011-07-09 17:41:24 +0000193 std::vector<StructType*>::iterator NextToUse = NamedTypes.begin(), I, E;
194 for (I = NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I) {
195 StructType *STy = *I;
Andrew Trick18801ec2011-09-30 19:48:58 +0000196
Chris Lattner1afcace2011-07-09 17:41:24 +0000197 // Ignore anonymous types.
Chris Lattnerc4d0e9f2011-08-12 18:07:07 +0000198 if (STy->isLiteral())
Chris Lattner1afcace2011-07-09 17:41:24 +0000199 continue;
Andrew Trick18801ec2011-09-30 19:48:58 +0000200
Chris Lattner1afcace2011-07-09 17:41:24 +0000201 if (STy->getName().empty())
202 NumberedTypes[STy] = NextNumber++;
203 else
204 *NextToUse++ = STy;
205 }
Andrew Trick18801ec2011-09-30 19:48:58 +0000206
Chris Lattner1afcace2011-07-09 17:41:24 +0000207 NamedTypes.erase(NextToUse, NamedTypes.end());
208}
209
210
Chris Lattner534361e2009-02-28 20:49:40 +0000211/// CalcTypeName - Write the specified type to the specified raw_ostream, making
212/// use of type names or up references to shorten the type name where possible.
Chris Lattner1afcace2011-07-09 17:41:24 +0000213void TypePrinting::print(Type *Ty, raw_ostream &OS) {
Chris Lattner9cc34462009-02-28 20:25:14 +0000214 switch (Ty->getTypeID()) {
Chris Lattner30794262009-02-28 21:27:31 +0000215 case Type::VoidTyID: OS << "void"; break;
Dan Gohmance163392011-12-17 00:04:22 +0000216 case Type::HalfTyID: OS << "half"; break;
Chris Lattner30794262009-02-28 21:27:31 +0000217 case Type::FloatTyID: OS << "float"; break;
218 case Type::DoubleTyID: OS << "double"; break;
219 case Type::X86_FP80TyID: OS << "x86_fp80"; break;
220 case Type::FP128TyID: OS << "fp128"; break;
221 case Type::PPC_FP128TyID: OS << "ppc_fp128"; break;
222 case Type::LabelTyID: OS << "label"; break;
Nick Lewycky7a0370f2009-05-30 05:06:04 +0000223 case Type::MetadataTyID: OS << "metadata"; break;
Dale Johannesenbb811a22010-09-10 20:55:01 +0000224 case Type::X86_MMXTyID: OS << "x86_mmx"; break;
Chris Lattner583ffd82009-02-28 21:18:43 +0000225 case Type::IntegerTyID:
Chris Lattner30794262009-02-28 21:27:31 +0000226 OS << 'i' << cast<IntegerType>(Ty)->getBitWidth();
Chris Lattner1afcace2011-07-09 17:41:24 +0000227 return;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000228
Chris Lattner36942d72009-02-28 20:35:42 +0000229 case Type::FunctionTyID: {
Chris Lattner1afcace2011-07-09 17:41:24 +0000230 FunctionType *FTy = cast<FunctionType>(Ty);
231 print(FTy->getReturnType(), OS);
Chris Lattner30794262009-02-28 21:27:31 +0000232 OS << " (";
Chris Lattner36942d72009-02-28 20:35:42 +0000233 for (FunctionType::param_iterator I = FTy->param_begin(),
234 E = FTy->param_end(); I != E; ++I) {
235 if (I != FTy->param_begin())
Chris Lattner30794262009-02-28 21:27:31 +0000236 OS << ", ";
Chris Lattner1afcace2011-07-09 17:41:24 +0000237 print(*I, OS);
Chris Lattner9cc34462009-02-28 20:25:14 +0000238 }
Chris Lattner36942d72009-02-28 20:35:42 +0000239 if (FTy->isVarArg()) {
Chris Lattner30794262009-02-28 21:27:31 +0000240 if (FTy->getNumParams()) OS << ", ";
241 OS << "...";
Chris Lattner9cc34462009-02-28 20:25:14 +0000242 }
Chris Lattner30794262009-02-28 21:27:31 +0000243 OS << ')';
Chris Lattner1afcace2011-07-09 17:41:24 +0000244 return;
Chris Lattner36942d72009-02-28 20:35:42 +0000245 }
246 case Type::StructTyID: {
Chris Lattner1afcace2011-07-09 17:41:24 +0000247 StructType *STy = cast<StructType>(Ty);
Andrew Trick18801ec2011-09-30 19:48:58 +0000248
Chris Lattnerc4d0e9f2011-08-12 18:07:07 +0000249 if (STy->isLiteral())
Chris Lattner1afcace2011-07-09 17:41:24 +0000250 return printStructBody(STy, OS);
251
252 if (!STy->getName().empty())
253 return PrintLLVMName(OS, STy->getName(), LocalPrefix);
Andrew Trick18801ec2011-09-30 19:48:58 +0000254
Chris Lattner1afcace2011-07-09 17:41:24 +0000255 DenseMap<StructType*, unsigned>::iterator I = NumberedTypes.find(STy);
256 if (I != NumberedTypes.end())
257 OS << '%' << I->second;
258 else // Not enumerated, print the hex address.
Benjamin Kramer5a832642011-11-02 17:24:36 +0000259 OS << "%\"type " << STy << '\"';
Chris Lattner1afcace2011-07-09 17:41:24 +0000260 return;
Chris Lattner36942d72009-02-28 20:35:42 +0000261 }
262 case Type::PointerTyID: {
Chris Lattner1afcace2011-07-09 17:41:24 +0000263 PointerType *PTy = cast<PointerType>(Ty);
264 print(PTy->getElementType(), OS);
Chris Lattner36942d72009-02-28 20:35:42 +0000265 if (unsigned AddressSpace = PTy->getAddressSpace())
Chris Lattner30794262009-02-28 21:27:31 +0000266 OS << " addrspace(" << AddressSpace << ')';
267 OS << '*';
Chris Lattner1afcace2011-07-09 17:41:24 +0000268 return;
Chris Lattner36942d72009-02-28 20:35:42 +0000269 }
270 case Type::ArrayTyID: {
Chris Lattner1afcace2011-07-09 17:41:24 +0000271 ArrayType *ATy = cast<ArrayType>(Ty);
Chris Lattner30794262009-02-28 21:27:31 +0000272 OS << '[' << ATy->getNumElements() << " x ";
Chris Lattner1afcace2011-07-09 17:41:24 +0000273 print(ATy->getElementType(), OS);
Chris Lattner30794262009-02-28 21:27:31 +0000274 OS << ']';
Chris Lattner1afcace2011-07-09 17:41:24 +0000275 return;
Chris Lattner36942d72009-02-28 20:35:42 +0000276 }
277 case Type::VectorTyID: {
Chris Lattner1afcace2011-07-09 17:41:24 +0000278 VectorType *PTy = cast<VectorType>(Ty);
Chris Lattner30794262009-02-28 21:27:31 +0000279 OS << "<" << PTy->getNumElements() << " x ";
Chris Lattner1afcace2011-07-09 17:41:24 +0000280 print(PTy->getElementType(), OS);
Chris Lattner30794262009-02-28 21:27:31 +0000281 OS << '>';
Chris Lattner1afcace2011-07-09 17:41:24 +0000282 return;
Chris Lattner36942d72009-02-28 20:35:42 +0000283 }
Chris Lattner36942d72009-02-28 20:35:42 +0000284 default:
Chris Lattner30794262009-02-28 21:27:31 +0000285 OS << "<unrecognized-type>";
Chris Lattner1afcace2011-07-09 17:41:24 +0000286 return;
Chris Lattner9cc34462009-02-28 20:25:14 +0000287 }
Chris Lattner9cc34462009-02-28 20:25:14 +0000288}
289
Chris Lattner1afcace2011-07-09 17:41:24 +0000290void TypePrinting::printStructBody(StructType *STy, raw_ostream &OS) {
291 if (STy->isOpaque()) {
292 OS << "opaque";
293 return;
Chris Lattner9cc34462009-02-28 20:25:14 +0000294 }
Andrew Trick18801ec2011-09-30 19:48:58 +0000295
Chris Lattner1afcace2011-07-09 17:41:24 +0000296 if (STy->isPacked())
297 OS << '<';
Andrew Trick18801ec2011-09-30 19:48:58 +0000298
Chris Lattner1afcace2011-07-09 17:41:24 +0000299 if (STy->getNumElements() == 0) {
300 OS << "{}";
301 } else {
302 StructType::element_iterator I = STy->element_begin();
303 OS << "{ ";
304 print(*I++, OS);
305 for (StructType::element_iterator E = STy->element_end(); I != E; ++I) {
306 OS << ", ";
307 print(*I, OS);
Chris Lattner413fd232009-03-01 00:03:38 +0000308 }
Andrew Trick18801ec2011-09-30 19:48:58 +0000309
Chris Lattner1afcace2011-07-09 17:41:24 +0000310 OS << " }";
Chris Lattnere9fa33e2009-02-28 23:20:19 +0000311 }
Chris Lattner1afcace2011-07-09 17:41:24 +0000312 if (STy->isPacked())
313 OS << '>';
Chris Lattnere9fa33e2009-02-28 23:20:19 +0000314}
315
Chris Lattner9cc34462009-02-28 20:25:14 +0000316
Chris Lattner1afcace2011-07-09 17:41:24 +0000317
Chris Lattner6ab910b2008-08-19 04:36:02 +0000318//===----------------------------------------------------------------------===//
319// SlotTracker Class: Enumerate slot numbers for unnamed values
320//===----------------------------------------------------------------------===//
321
Chris Lattnerb64871a2008-08-19 04:28:07 +0000322namespace {
323
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000324/// This class provides computation of slot numbers for LLVM Assembly writing.
Chris Lattner45d4c732008-08-17 04:17:45 +0000325///
Chris Lattner0d9574a2008-08-19 04:26:57 +0000326class SlotTracker {
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000327public:
Devang Patel320671d2009-07-08 21:44:25 +0000328 /// ValueMap - A mapping of Values to slot numbers.
Chris Lattner92255072008-08-17 17:25:25 +0000329 typedef DenseMap<const Value*, unsigned> ValueMap;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000330
331private:
Devang Patel320671d2009-07-08 21:44:25 +0000332 /// TheModule - The module for which we are holding slot numbers.
Chris Lattner45d4c732008-08-17 04:17:45 +0000333 const Module* TheModule;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000334
Devang Patel320671d2009-07-08 21:44:25 +0000335 /// TheFunction - The function for which we are holding slot numbers.
Chris Lattner45d4c732008-08-17 04:17:45 +0000336 const Function* TheFunction;
337 bool FunctionProcessed;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000338
Jay Foad7f0ce342011-07-11 07:28:49 +0000339 /// mMap - The slot map for the module level data.
Chris Lattner45d4c732008-08-17 04:17:45 +0000340 ValueMap mMap;
341 unsigned mNext;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000342
Jay Foad7f0ce342011-07-11 07:28:49 +0000343 /// fMap - The slot map for the function level data.
Chris Lattner45d4c732008-08-17 04:17:45 +0000344 ValueMap fMap;
345 unsigned fNext;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000346
Devang Patel320671d2009-07-08 21:44:25 +0000347 /// mdnMap - Map for MDNodes.
Chris Lattner307c9892009-12-31 02:20:11 +0000348 DenseMap<const MDNode*, unsigned> mdnMap;
Devang Patel320671d2009-07-08 21:44:25 +0000349 unsigned mdnNext;
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000350public:
Chris Lattner45d4c732008-08-17 04:17:45 +0000351 /// Construct from a module
Chris Lattner0d9574a2008-08-19 04:26:57 +0000352 explicit SlotTracker(const Module *M);
Chris Lattner45d4c732008-08-17 04:17:45 +0000353 /// Construct from a function, starting out in incorp state.
Chris Lattner0d9574a2008-08-19 04:26:57 +0000354 explicit SlotTracker(const Function *F);
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000355
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000356 /// Return the slot number of the specified value in it's type
Chris Lattner0d9574a2008-08-19 04:26:57 +0000357 /// plane. If something is not in the SlotTracker, return -1.
Chris Lattner22379bc2007-01-11 03:54:27 +0000358 int getLocalSlot(const Value *V);
359 int getGlobalSlot(const GlobalValue *V);
Devang Patel320671d2009-07-08 21:44:25 +0000360 int getMetadataSlot(const MDNode *N);
Reid Spencerfc621e22004-06-09 15:26:53 +0000361
Misha Brukmanfd939082005-04-21 23:48:37 +0000362 /// If you'd like to deal with a function instead of just a module, use
Chris Lattner0d9574a2008-08-19 04:26:57 +0000363 /// this method to get its data into the SlotTracker.
Misha Brukmanfd939082005-04-21 23:48:37 +0000364 void incorporateFunction(const Function *F) {
365 TheFunction = F;
Reid Spencer28531c72004-08-16 07:46:33 +0000366 FunctionProcessed = false;
367 }
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000368
Misha Brukmanfd939082005-04-21 23:48:37 +0000369 /// After calling incorporateFunction, use this method to remove the
Chris Lattner0d9574a2008-08-19 04:26:57 +0000370 /// most recently incorporated function from the SlotTracker. This
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000371 /// will reset the state of the machine back to just the module contents.
372 void purgeFunction();
373
Devang Patel320671d2009-07-08 21:44:25 +0000374 /// MDNode map iterators.
Chris Lattner307c9892009-12-31 02:20:11 +0000375 typedef DenseMap<const MDNode*, unsigned>::iterator mdn_iterator;
376 mdn_iterator mdn_begin() { return mdnMap.begin(); }
377 mdn_iterator mdn_end() { return mdnMap.end(); }
378 unsigned mdn_size() const { return mdnMap.size(); }
379 bool mdn_empty() const { return mdnMap.empty(); }
Devang Patel320671d2009-07-08 21:44:25 +0000380
Reid Spencerb03de0c2004-05-26 21:56:09 +0000381 /// This function does the actual initialization.
382 inline void initialize();
383
Devang Patel320671d2009-07-08 21:44:25 +0000384 // Implementation Details
385private:
Chris Lattner9446bbe2007-01-09 07:55:49 +0000386 /// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
387 void CreateModuleSlot(const GlobalValue *V);
Devang Patel320671d2009-07-08 21:44:25 +0000388
389 /// CreateMetadataSlot - Insert the specified MDNode* into the slot table.
390 void CreateMetadataSlot(const MDNode *N);
391
Chris Lattner9446bbe2007-01-09 07:55:49 +0000392 /// CreateFunctionSlot - Insert the specified Value* into the slot table.
393 void CreateFunctionSlot(const Value *V);
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000394
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000395 /// Add all of the module level global variables (and their initializers)
396 /// and function declarations, but not the contents of those functions.
397 void processModule();
398
Devang Patel320671d2009-07-08 21:44:25 +0000399 /// Add all of the functions arguments, basic blocks, and instructions.
Reid Spencerb03de0c2004-05-26 21:56:09 +0000400 void processFunction();
401
Craig Topper86a1c322012-09-15 17:09:36 +0000402 SlotTracker(const SlotTracker &) LLVM_DELETED_FUNCTION;
403 void operator=(const SlotTracker &) LLVM_DELETED_FUNCTION;
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000404};
405
Chris Lattnerb64871a2008-08-19 04:28:07 +0000406} // end anonymous namespace
Reid Spencer0d1b77e2004-05-26 07:18:52 +0000407
Chris Lattner6ab910b2008-08-19 04:36:02 +0000408
409static SlotTracker *createSlotTracker(const Value *V) {
410 if (const Argument *FA = dyn_cast<Argument>(V))
411 return new SlotTracker(FA->getParent());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000412
Chris Lattner6ab910b2008-08-19 04:36:02 +0000413 if (const Instruction *I = dyn_cast<Instruction>(V))
Andrew Trick62e05902011-09-30 19:50:40 +0000414 if (I->getParent())
415 return new SlotTracker(I->getParent()->getParent());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000416
Chris Lattner6ab910b2008-08-19 04:36:02 +0000417 if (const BasicBlock *BB = dyn_cast<BasicBlock>(V))
418 return new SlotTracker(BB->getParent());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000419
Chris Lattner6ab910b2008-08-19 04:36:02 +0000420 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
421 return new SlotTracker(GV->getParent());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000422
Chris Lattner6ab910b2008-08-19 04:36:02 +0000423 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
Daniel Dunbara279bc32009-09-20 02:20:51 +0000424 return new SlotTracker(GA->getParent());
425
Chris Lattner6ab910b2008-08-19 04:36:02 +0000426 if (const Function *Func = dyn_cast<Function>(V))
427 return new SlotTracker(Func);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000428
Dan Gohman3bdfbf52010-07-20 23:55:01 +0000429 if (const MDNode *MD = dyn_cast<MDNode>(V)) {
430 if (!MD->isFunctionLocal())
431 return new SlotTracker(MD->getFunction());
432
Dale Johannesen5f72a5e2010-01-13 00:00:24 +0000433 return new SlotTracker((Function *)0);
Dan Gohman3bdfbf52010-07-20 23:55:01 +0000434 }
Dale Johannesen5f72a5e2010-01-13 00:00:24 +0000435
Chris Lattner6ab910b2008-08-19 04:36:02 +0000436 return 0;
437}
438
439#if 0
David Greened865e022010-01-05 01:29:26 +0000440#define ST_DEBUG(X) dbgs() << X
Chris Lattner6ab910b2008-08-19 04:36:02 +0000441#else
Chris Lattner24233032008-08-19 04:47:09 +0000442#define ST_DEBUG(X)
Chris Lattner6ab910b2008-08-19 04:36:02 +0000443#endif
444
445// Module level constructor. Causes the contents of the Module (sans functions)
446// to be added to the slot table.
447SlotTracker::SlotTracker(const Module *M)
Andrew Trick18801ec2011-09-30 19:48:58 +0000448 : TheModule(M), TheFunction(0), FunctionProcessed(false),
Chris Lattner38cf02e2009-12-31 01:36:50 +0000449 mNext(0), fNext(0), mdnNext(0) {
Chris Lattner6ab910b2008-08-19 04:36:02 +0000450}
451
452// Function level constructor. Causes the contents of the Module and the one
453// function provided to be added to the slot table.
454SlotTracker::SlotTracker(const Function *F)
Chris Lattnercfb5a202008-08-19 05:06:27 +0000455 : TheModule(F ? F->getParent() : 0), TheFunction(F), FunctionProcessed(false),
Chris Lattner6e6b1802009-12-31 02:13:35 +0000456 mNext(0), fNext(0), mdnNext(0) {
Chris Lattner6ab910b2008-08-19 04:36:02 +0000457}
458
459inline void SlotTracker::initialize() {
460 if (TheModule) {
461 processModule();
462 TheModule = 0; ///< Prevent re-processing next time we're called.
463 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000464
Chris Lattner6ab910b2008-08-19 04:36:02 +0000465 if (TheFunction && !FunctionProcessed)
466 processFunction();
467}
468
469// Iterate through all the global variables, functions, and global
470// variable initializers and create slots for them.
471void SlotTracker::processModule() {
Chris Lattner24233032008-08-19 04:47:09 +0000472 ST_DEBUG("begin processModule!\n");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000473
Chris Lattner6ab910b2008-08-19 04:36:02 +0000474 // Add all of the unnamed global variables to the value table.
475 for (Module::const_global_iterator I = TheModule->global_begin(),
Devang Patel320671d2009-07-08 21:44:25 +0000476 E = TheModule->global_end(); I != E; ++I) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000477 if (!I->hasName())
Chris Lattner6ab910b2008-08-19 04:36:02 +0000478 CreateModuleSlot(I);
Devang Patel320671d2009-07-08 21:44:25 +0000479 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000480
Devang Patel37c4a2d2009-07-29 22:04:47 +0000481 // Add metadata used by named metadata.
Daniel Dunbara279bc32009-09-20 02:20:51 +0000482 for (Module::const_named_metadata_iterator
Devang Patel37c4a2d2009-07-29 22:04:47 +0000483 I = TheModule->named_metadata_begin(),
484 E = TheModule->named_metadata_end(); I != E; ++I) {
485 const NamedMDNode *NMD = I;
Dan Gohman872814a2010-07-21 18:54:18 +0000486 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i)
487 CreateMetadataSlot(NMD->getOperand(i));
Devang Patel37c4a2d2009-07-29 22:04:47 +0000488 }
489
Chris Lattner6ab910b2008-08-19 04:36:02 +0000490 // Add all the unnamed functions to the table.
491 for (Module::const_iterator I = TheModule->begin(), E = TheModule->end();
492 I != E; ++I)
493 if (!I->hasName())
494 CreateModuleSlot(I);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000495
Chris Lattner24233032008-08-19 04:47:09 +0000496 ST_DEBUG("end processModule!\n");
Chris Lattner6ab910b2008-08-19 04:36:02 +0000497}
498
Chris Lattner6ab910b2008-08-19 04:36:02 +0000499// Process the arguments, basic blocks, and instructions of a function.
500void SlotTracker::processFunction() {
Chris Lattner24233032008-08-19 04:47:09 +0000501 ST_DEBUG("begin processFunction!\n");
Chris Lattner6ab910b2008-08-19 04:36:02 +0000502 fNext = 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000503
Chris Lattner6ab910b2008-08-19 04:36:02 +0000504 // Add all the function arguments with no names.
505 for(Function::const_arg_iterator AI = TheFunction->arg_begin(),
506 AE = TheFunction->arg_end(); AI != AE; ++AI)
507 if (!AI->hasName())
508 CreateFunctionSlot(AI);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000509
Chris Lattner24233032008-08-19 04:47:09 +0000510 ST_DEBUG("Inserting Instructions:\n");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000511
Chris Lattner6e6b1802009-12-31 02:13:35 +0000512 SmallVector<std::pair<unsigned, MDNode*>, 4> MDForInst;
Devang Patel43215782009-09-16 20:21:17 +0000513
Chris Lattner6ab910b2008-08-19 04:36:02 +0000514 // Add all of the basic blocks and instructions with no names.
515 for (Function::const_iterator BB = TheFunction->begin(),
516 E = TheFunction->end(); BB != E; ++BB) {
517 if (!BB->hasName())
518 CreateFunctionSlot(BB);
Andrew Trick18801ec2011-09-30 19:48:58 +0000519
Daniel Dunbara279bc32009-09-20 02:20:51 +0000520 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E;
Devang Patel320671d2009-07-08 21:44:25 +0000521 ++I) {
Chris Lattner3990b122009-12-28 23:41:32 +0000522 if (!I->getType()->isVoidTy() && !I->hasName())
Chris Lattner6ab910b2008-08-19 04:36:02 +0000523 CreateFunctionSlot(I);
Andrew Trick18801ec2011-09-30 19:48:58 +0000524
Chris Lattnerfd450c02010-05-10 20:53:17 +0000525 // Intrinsics can directly use metadata. We allow direct calls to any
526 // llvm.foo function here, because the target may not be linked into the
527 // optimizer.
528 if (const CallInst *CI = dyn_cast<CallInst>(I)) {
529 if (Function *F = CI->getCalledFunction())
530 if (F->getName().startswith("llvm."))
531 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
532 if (MDNode *N = dyn_cast_or_null<MDNode>(I->getOperand(i)))
533 CreateMetadataSlot(N);
534 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000535
Devang Patel43215782009-09-16 20:21:17 +0000536 // Process metadata attached with this instruction.
Chris Lattner3990b122009-12-28 23:41:32 +0000537 I->getAllMetadata(MDForInst);
538 for (unsigned i = 0, e = MDForInst.size(); i != e; ++i)
539 CreateMetadataSlot(MDForInst[i].second);
Chris Lattner6e6b1802009-12-31 02:13:35 +0000540 MDForInst.clear();
Devang Patel320671d2009-07-08 21:44:25 +0000541 }
Chris Lattner6ab910b2008-08-19 04:36:02 +0000542 }
Devang Patel43215782009-09-16 20:21:17 +0000543
Chris Lattner6ab910b2008-08-19 04:36:02 +0000544 FunctionProcessed = true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000545
Chris Lattner24233032008-08-19 04:47:09 +0000546 ST_DEBUG("end processFunction!\n");
Chris Lattner6ab910b2008-08-19 04:36:02 +0000547}
548
549/// Clean up after incorporating a function. This is the only way to get out of
550/// the function incorporation state that affects get*Slot/Create*Slot. Function
551/// incorporation state is indicated by TheFunction != 0.
552void SlotTracker::purgeFunction() {
Chris Lattner24233032008-08-19 04:47:09 +0000553 ST_DEBUG("begin purgeFunction!\n");
Chris Lattner6ab910b2008-08-19 04:36:02 +0000554 fMap.clear(); // Simply discard the function level map
555 TheFunction = 0;
556 FunctionProcessed = false;
Chris Lattner24233032008-08-19 04:47:09 +0000557 ST_DEBUG("end purgeFunction!\n");
Chris Lattner6ab910b2008-08-19 04:36:02 +0000558}
559
560/// getGlobalSlot - Get the slot number of a global value.
561int SlotTracker::getGlobalSlot(const GlobalValue *V) {
562 // Check for uninitialized state and do lazy initialization.
563 initialize();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000564
Jay Foad7f0ce342011-07-11 07:28:49 +0000565 // Find the value in the module map
Chris Lattner6ab910b2008-08-19 04:36:02 +0000566 ValueMap::iterator MI = mMap.find(V);
Dan Gohmanaeaf2452008-10-01 19:58:59 +0000567 return MI == mMap.end() ? -1 : (int)MI->second;
Chris Lattner6ab910b2008-08-19 04:36:02 +0000568}
569
Chris Lattner307c9892009-12-31 02:20:11 +0000570/// getMetadataSlot - Get the slot number of a MDNode.
Devang Patel320671d2009-07-08 21:44:25 +0000571int SlotTracker::getMetadataSlot(const MDNode *N) {
572 // Check for uninitialized state and do lazy initialization.
573 initialize();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000574
Jay Foad7f0ce342011-07-11 07:28:49 +0000575 // Find the MDNode in the module map
Chris Lattner307c9892009-12-31 02:20:11 +0000576 mdn_iterator MI = mdnMap.find(N);
Devang Patel320671d2009-07-08 21:44:25 +0000577 return MI == mdnMap.end() ? -1 : (int)MI->second;
578}
579
Chris Lattner6ab910b2008-08-19 04:36:02 +0000580
581/// getLocalSlot - Get the slot number for a value that is local to a function.
582int SlotTracker::getLocalSlot(const Value *V) {
583 assert(!isa<Constant>(V) && "Can't get a constant or global slot with this!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000584
Chris Lattner6ab910b2008-08-19 04:36:02 +0000585 // Check for uninitialized state and do lazy initialization.
586 initialize();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000587
Chris Lattner6ab910b2008-08-19 04:36:02 +0000588 ValueMap::iterator FI = fMap.find(V);
Dan Gohmanaeaf2452008-10-01 19:58:59 +0000589 return FI == fMap.end() ? -1 : (int)FI->second;
Chris Lattner6ab910b2008-08-19 04:36:02 +0000590}
591
592
593/// CreateModuleSlot - Insert the specified GlobalValue* into the slot table.
594void SlotTracker::CreateModuleSlot(const GlobalValue *V) {
595 assert(V && "Can't insert a null Value into SlotTracker!");
Chris Lattner4ee93c42009-12-29 07:25:48 +0000596 assert(!V->getType()->isVoidTy() && "Doesn't need a slot!");
Chris Lattner6ab910b2008-08-19 04:36:02 +0000597 assert(!V->hasName() && "Doesn't need a slot!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000598
Chris Lattner6ab910b2008-08-19 04:36:02 +0000599 unsigned DestSlot = mNext++;
600 mMap[V] = DestSlot;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000601
Chris Lattner24233032008-08-19 04:47:09 +0000602 ST_DEBUG(" Inserting value [" << V->getType() << "] = " << V << " slot=" <<
Chris Lattner6ab910b2008-08-19 04:36:02 +0000603 DestSlot << " [");
604 // G = Global, F = Function, A = Alias, o = other
Chris Lattner24233032008-08-19 04:47:09 +0000605 ST_DEBUG((isa<GlobalVariable>(V) ? 'G' :
Chris Lattner6ab910b2008-08-19 04:36:02 +0000606 (isa<Function>(V) ? 'F' :
607 (isa<GlobalAlias>(V) ? 'A' : 'o'))) << "]\n");
608}
609
Chris Lattner6ab910b2008-08-19 04:36:02 +0000610/// CreateSlot - Create a new slot for the specified value if it has no name.
611void SlotTracker::CreateFunctionSlot(const Value *V) {
Chris Lattner4ee93c42009-12-29 07:25:48 +0000612 assert(!V->getType()->isVoidTy() && !V->hasName() && "Doesn't need a slot!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000613
Chris Lattner6ab910b2008-08-19 04:36:02 +0000614 unsigned DestSlot = fNext++;
615 fMap[V] = DestSlot;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000616
Chris Lattner6ab910b2008-08-19 04:36:02 +0000617 // G = Global, F = Function, o = other
Chris Lattner24233032008-08-19 04:47:09 +0000618 ST_DEBUG(" Inserting value [" << V->getType() << "] = " << V << " slot=" <<
Chris Lattner6ab910b2008-08-19 04:36:02 +0000619 DestSlot << " [o]\n");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000620}
Chris Lattner6ab910b2008-08-19 04:36:02 +0000621
Devang Patel320671d2009-07-08 21:44:25 +0000622/// CreateModuleSlot - Insert the specified MDNode* into the slot table.
623void SlotTracker::CreateMetadataSlot(const MDNode *N) {
624 assert(N && "Can't insert a null Value into SlotTracker!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000625
Chris Lattner2b4b1e22009-12-31 02:27:30 +0000626 // Don't insert if N is a function-local metadata, these are always printed
627 // inline.
Dan Gohman3bdfbf52010-07-20 23:55:01 +0000628 if (!N->isFunctionLocal()) {
629 mdn_iterator I = mdnMap.find(N);
630 if (I != mdnMap.end())
631 return;
Victor Hernandezff7707e2009-12-04 20:07:10 +0000632
Dan Gohman3bdfbf52010-07-20 23:55:01 +0000633 unsigned DestSlot = mdnNext++;
634 mdnMap[N] = DestSlot;
635 }
Devang Patel320671d2009-07-08 21:44:25 +0000636
Chris Lattner2b4b1e22009-12-31 02:27:30 +0000637 // Recursively add any MDNodes referenced by operands.
638 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
639 if (const MDNode *Op = dyn_cast_or_null<MDNode>(N->getOperand(i)))
640 CreateMetadataSlot(Op);
Devang Patel320671d2009-07-08 21:44:25 +0000641}
Chris Lattner6ab910b2008-08-19 04:36:02 +0000642
643//===----------------------------------------------------------------------===//
644// AsmWriter Implementation
645//===----------------------------------------------------------------------===//
Chris Lattnerf082b802002-07-23 18:07:49 +0000646
Dan Gohman1220e102009-08-12 20:56:03 +0000647static void WriteAsOperandInternal(raw_ostream &Out, const Value *V,
Dan Gohmand6c0f652009-08-13 15:27:57 +0000648 TypePrinting *TypePrinter,
Dan Gohman3bdfbf52010-07-20 23:55:01 +0000649 SlotTracker *Machine,
650 const Module *Context);
Reid Spencer0e25e1c2004-07-04 11:50:43 +0000651
Chris Lattnerc97536e2008-08-17 04:40:13 +0000652
Chris Lattner207b5bc2001-10-29 16:37:48 +0000653
Chris Lattner82c4bc72006-12-06 06:40:49 +0000654static const char *getPredicateText(unsigned predicate) {
Reid Spencer81dfeb32006-12-04 05:19:18 +0000655 const char * pred = "unknown";
656 switch (predicate) {
Chris Lattner6e6b1802009-12-31 02:13:35 +0000657 case FCmpInst::FCMP_FALSE: pred = "false"; break;
658 case FCmpInst::FCMP_OEQ: pred = "oeq"; break;
659 case FCmpInst::FCMP_OGT: pred = "ogt"; break;
660 case FCmpInst::FCMP_OGE: pred = "oge"; break;
661 case FCmpInst::FCMP_OLT: pred = "olt"; break;
662 case FCmpInst::FCMP_OLE: pred = "ole"; break;
663 case FCmpInst::FCMP_ONE: pred = "one"; break;
664 case FCmpInst::FCMP_ORD: pred = "ord"; break;
665 case FCmpInst::FCMP_UNO: pred = "uno"; break;
666 case FCmpInst::FCMP_UEQ: pred = "ueq"; break;
667 case FCmpInst::FCMP_UGT: pred = "ugt"; break;
668 case FCmpInst::FCMP_UGE: pred = "uge"; break;
669 case FCmpInst::FCMP_ULT: pred = "ult"; break;
670 case FCmpInst::FCMP_ULE: pred = "ule"; break;
671 case FCmpInst::FCMP_UNE: pred = "une"; break;
672 case FCmpInst::FCMP_TRUE: pred = "true"; break;
673 case ICmpInst::ICMP_EQ: pred = "eq"; break;
674 case ICmpInst::ICMP_NE: pred = "ne"; break;
675 case ICmpInst::ICMP_SGT: pred = "sgt"; break;
676 case ICmpInst::ICMP_SGE: pred = "sge"; break;
677 case ICmpInst::ICMP_SLT: pred = "slt"; break;
678 case ICmpInst::ICMP_SLE: pred = "sle"; break;
679 case ICmpInst::ICMP_UGT: pred = "ugt"; break;
680 case ICmpInst::ICMP_UGE: pred = "uge"; break;
681 case ICmpInst::ICMP_ULT: pred = "ult"; break;
682 case ICmpInst::ICMP_ULE: pred = "ule"; break;
Reid Spencer81dfeb32006-12-04 05:19:18 +0000683 }
684 return pred;
685}
686
Eli Friedmanff030482011-07-28 21:48:00 +0000687static void writeAtomicRMWOperation(raw_ostream &Out,
688 AtomicRMWInst::BinOp Op) {
689 switch (Op) {
690 default: Out << " <unknown operation " << Op << ">"; break;
691 case AtomicRMWInst::Xchg: Out << " xchg"; break;
692 case AtomicRMWInst::Add: Out << " add"; break;
693 case AtomicRMWInst::Sub: Out << " sub"; break;
694 case AtomicRMWInst::And: Out << " and"; break;
695 case AtomicRMWInst::Nand: Out << " nand"; break;
696 case AtomicRMWInst::Or: Out << " or"; break;
697 case AtomicRMWInst::Xor: Out << " xor"; break;
698 case AtomicRMWInst::Max: Out << " max"; break;
699 case AtomicRMWInst::Min: Out << " min"; break;
700 case AtomicRMWInst::UMax: Out << " umax"; break;
701 case AtomicRMWInst::UMin: Out << " umin"; break;
702 }
703}
Devang Patel320671d2009-07-08 21:44:25 +0000704
Dan Gohman1220e102009-08-12 20:56:03 +0000705static void WriteOptimizationInfo(raw_ostream &Out, const User *U) {
Michael Ilseman15c13d32012-11-27 00:42:44 +0000706 if (const FPMathOperator *FPO = dyn_cast<const FPMathOperator>(U)) {
707 // Unsafe algebra implies all the others, no need to write them all out
708 if (FPO->hasUnsafeAlgebra())
709 Out << " fast";
710 else {
711 if (FPO->hasNoNaNs())
712 Out << " nnan";
713 if (FPO->hasNoInfs())
714 Out << " ninf";
715 if (FPO->hasNoSignedZeros())
716 Out << " nsz";
717 if (FPO->hasAllowReciprocal())
718 Out << " arcp";
719 }
720 }
721
Dan Gohman1224c382009-07-20 21:19:07 +0000722 if (const OverflowingBinaryOperator *OBO =
723 dyn_cast<OverflowingBinaryOperator>(U)) {
Dan Gohman5078f842009-08-20 17:11:38 +0000724 if (OBO->hasNoUnsignedWrap())
Dan Gohman59858cf2009-07-27 16:11:46 +0000725 Out << " nuw";
Dan Gohman5078f842009-08-20 17:11:38 +0000726 if (OBO->hasNoSignedWrap())
Dan Gohman59858cf2009-07-27 16:11:46 +0000727 Out << " nsw";
Chris Lattner35bda892011-02-06 21:44:57 +0000728 } else if (const PossiblyExactOperator *Div =
729 dyn_cast<PossiblyExactOperator>(U)) {
Dan Gohman1224c382009-07-20 21:19:07 +0000730 if (Div->isExact())
Dan Gohman59858cf2009-07-27 16:11:46 +0000731 Out << " exact";
Dan Gohmandd8004d2009-07-27 21:53:46 +0000732 } else if (const GEPOperator *GEP = dyn_cast<GEPOperator>(U)) {
733 if (GEP->isInBounds())
734 Out << " inbounds";
Dan Gohman1224c382009-07-20 21:19:07 +0000735 }
736}
737
Dan Gohman40cf12f2010-07-14 20:57:55 +0000738static void WriteConstantInternal(raw_ostream &Out, const Constant *CV,
739 TypePrinting &TypePrinter,
Dan Gohman3bdfbf52010-07-20 23:55:01 +0000740 SlotTracker *Machine,
741 const Module *Context) {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000742 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000743 if (CI->getType()->isIntegerTy(1)) {
Reid Spencer579dca12007-01-12 04:24:46 +0000744 Out << (CI->getZExtValue() ? "true" : "false");
Chris Lattnerfad86b02008-08-17 07:19:36 +0000745 return;
746 }
747 Out << CI->getValue();
748 return;
749 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000750
Chris Lattnerfad86b02008-08-17 07:19:36 +0000751 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Tobias Grosser057beb82012-05-24 15:59:06 +0000752 if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEsingle ||
Dan Gohmance163392011-12-17 00:04:22 +0000753 &CFP->getValueAPF().getSemantics() == &APFloat::IEEEdouble) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000754 // We would like to output the FP constant value in exponential notation,
755 // but we cannot do this if doing so will lose precision. Check here to
756 // make sure that we only output it in exponential format if we can parse
757 // the value back and get the same value.
758 //
Dale Johannesen541ed9f2009-01-21 20:32:55 +0000759 bool ignored;
Dan Gohmance163392011-12-17 00:04:22 +0000760 bool isHalf = &CFP->getValueAPF().getSemantics()==&APFloat::IEEEhalf;
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000761 bool isDouble = &CFP->getValueAPF().getSemantics()==&APFloat::IEEEdouble;
NAKAMURA Takumi22bed5d2012-02-16 08:12:24 +0000762 bool isInf = CFP->getValueAPF().isInfinity();
763 bool isNaN = CFP->getValueAPF().isNaN();
764 if (!isHalf && !isInf && !isNaN) {
Dan Gohmance163392011-12-17 00:04:22 +0000765 double Val = isDouble ? CFP->getValueAPF().convertToDouble() :
766 CFP->getValueAPF().convertToFloat();
767 SmallString<128> StrVal;
768 raw_svector_ostream(StrVal) << Val;
Chris Lattner66e810b2002-04-18 18:53:13 +0000769
Dan Gohmance163392011-12-17 00:04:22 +0000770 // Check to make sure that the stringized number is not some string like
771 // "Inf" or NaN, that atof will accept, but the lexer will not. Check
772 // that the string matches the "[-+]?[0-9]" regex.
773 //
774 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
775 ((StrVal[0] == '-' || StrVal[0] == '+') &&
776 (StrVal[1] >= '0' && StrVal[1] <= '9'))) {
777 // Reparse stringized version!
NAKAMURA Takumic8782a12012-02-16 04:19:15 +0000778 if (APFloat(APFloat::IEEEdouble, StrVal).convertToDouble() == Val) {
Dan Gohmance163392011-12-17 00:04:22 +0000779 Out << StrVal.str();
780 return;
781 }
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000782 }
Chris Lattner66e810b2002-04-18 18:53:13 +0000783 }
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000784 // Otherwise we could not reparse it to exactly the same value, so we must
Dale Johannesen541ed9f2009-01-21 20:32:55 +0000785 // output the string in hexadecimal format! Note that loading and storing
786 // floating point types changes the bits of NaNs on some hosts, notably
787 // x86, so we must not use these types.
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000788 assert(sizeof(double) == sizeof(uint64_t) &&
789 "assuming that double is 64 bits!");
Chris Lattnerc6a13462008-11-10 04:30:26 +0000790 char Buffer[40];
Dale Johannesen541ed9f2009-01-21 20:32:55 +0000791 APFloat apf = CFP->getValueAPF();
Dan Gohmance163392011-12-17 00:04:22 +0000792 // Halves and floats are represented in ASCII IR as double, convert.
Dale Johannesen541ed9f2009-01-21 20:32:55 +0000793 if (!isDouble)
Daniel Dunbara279bc32009-09-20 02:20:51 +0000794 apf.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
Dale Johannesen541ed9f2009-01-21 20:32:55 +0000795 &ignored);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000796 Out << "0x" <<
797 utohex_buffer(uint64_t(apf.bitcastToAPInt().getZExtValue()),
Dale Johannesen541ed9f2009-01-21 20:32:55 +0000798 Buffer+40);
Chris Lattnercfb5a202008-08-19 05:06:27 +0000799 return;
800 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000801
Tobias Grosser057beb82012-05-24 15:59:06 +0000802 // Either half, or some form of long double.
803 // These appear as a magic letter identifying the type, then a
804 // fixed number of hex digits.
Chris Lattnercfb5a202008-08-19 05:06:27 +0000805 Out << "0x";
Tobias Grosser057beb82012-05-24 15:59:06 +0000806 // Bit position, in the current word, of the next nibble to print.
807 int shiftcount;
808
Dale Johannesen1b25cb22009-03-23 21:16:53 +0000809 if (&CFP->getValueAPF().getSemantics() == &APFloat::x87DoubleExtended) {
Chris Lattnercfb5a202008-08-19 05:06:27 +0000810 Out << 'K';
Dale Johannesen1b25cb22009-03-23 21:16:53 +0000811 // api needed to prevent premature destruction
812 APInt api = CFP->getValueAPF().bitcastToAPInt();
813 const uint64_t* p = api.getRawData();
814 uint64_t word = p[1];
Tobias Grosser057beb82012-05-24 15:59:06 +0000815 shiftcount = 12;
Dale Johannesen1b25cb22009-03-23 21:16:53 +0000816 int width = api.getBitWidth();
817 for (int j=0; j<width; j+=4, shiftcount-=4) {
818 unsigned int nibble = (word>>shiftcount) & 15;
819 if (nibble < 10)
820 Out << (unsigned char)(nibble + '0');
821 else
822 Out << (unsigned char)(nibble - 10 + 'A');
823 if (shiftcount == 0 && j+4 < width) {
824 word = *p;
825 shiftcount = 64;
826 if (width-j-4 < 64)
827 shiftcount = width-j-4;
828 }
829 }
830 return;
Tobias Grosser057beb82012-05-24 15:59:06 +0000831 } else if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEquad) {
832 shiftcount = 60;
Chris Lattnercfb5a202008-08-19 05:06:27 +0000833 Out << 'L';
Tobias Grosser057beb82012-05-24 15:59:06 +0000834 } else if (&CFP->getValueAPF().getSemantics() == &APFloat::PPCDoubleDouble) {
835 shiftcount = 60;
Chris Lattnercfb5a202008-08-19 05:06:27 +0000836 Out << 'M';
Tobias Grosser057beb82012-05-24 15:59:06 +0000837 } else if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEhalf) {
838 shiftcount = 12;
839 Out << 'H';
840 } else
Torok Edwinc23197a2009-07-14 16:55:14 +0000841 llvm_unreachable("Unsupported floating point type");
Chris Lattnercfb5a202008-08-19 05:06:27 +0000842 // api needed to prevent premature destruction
Dale Johannesen7111b022008-10-09 18:53:47 +0000843 APInt api = CFP->getValueAPF().bitcastToAPInt();
Chris Lattnercfb5a202008-08-19 05:06:27 +0000844 const uint64_t* p = api.getRawData();
845 uint64_t word = *p;
Chris Lattnercfb5a202008-08-19 05:06:27 +0000846 int width = api.getBitWidth();
847 for (int j=0; j<width; j+=4, shiftcount-=4) {
848 unsigned int nibble = (word>>shiftcount) & 15;
849 if (nibble < 10)
850 Out << (unsigned char)(nibble + '0');
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000851 else
Chris Lattnercfb5a202008-08-19 05:06:27 +0000852 Out << (unsigned char)(nibble - 10 + 'A');
853 if (shiftcount == 0 && j+4 < width) {
854 word = *(++p);
855 shiftcount = 64;
856 if (width-j-4 < 64)
857 shiftcount = width-j-4;
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000858 }
859 }
Chris Lattnercfb5a202008-08-19 05:06:27 +0000860 return;
861 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000862
Chris Lattnercfb5a202008-08-19 05:06:27 +0000863 if (isa<ConstantAggregateZero>(CV)) {
Chris Lattnerde512b52004-02-15 05:55:15 +0000864 Out << "zeroinitializer";
Chris Lattnercfb5a202008-08-19 05:06:27 +0000865 return;
866 }
Andrew Trick18801ec2011-09-30 19:48:58 +0000867
Chris Lattner73050e12009-10-28 03:38:12 +0000868 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) {
869 Out << "blockaddress(";
Dan Gohman3bdfbf52010-07-20 23:55:01 +0000870 WriteAsOperandInternal(Out, BA->getFunction(), &TypePrinter, Machine,
871 Context);
Chris Lattner73050e12009-10-28 03:38:12 +0000872 Out << ", ";
Dan Gohman3bdfbf52010-07-20 23:55:01 +0000873 WriteAsOperandInternal(Out, BA->getBasicBlock(), &TypePrinter, Machine,
874 Context);
Chris Lattner73050e12009-10-28 03:38:12 +0000875 Out << ")";
876 return;
877 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000878
Chris Lattnercfb5a202008-08-19 05:06:27 +0000879 if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) {
Chris Lattner1afcace2011-07-09 17:41:24 +0000880 Type *ETy = CA->getType()->getElementType();
Chris Lattner18c7f802012-02-05 02:29:43 +0000881 Out << '[';
882 TypePrinter.print(ETy, Out);
883 Out << ' ';
884 WriteAsOperandInternal(Out, CA->getOperand(0),
885 &TypePrinter, Machine,
886 Context);
887 for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
888 Out << ", ";
Chris Lattner8b10b692012-01-31 03:15:40 +0000889 TypePrinter.print(ETy, Out);
890 Out << ' ';
Chris Lattner18c7f802012-02-05 02:29:43 +0000891 WriteAsOperandInternal(Out, CA->getOperand(i), &TypePrinter, Machine,
Chris Lattner8b10b692012-01-31 03:15:40 +0000892 Context);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000893 }
Chris Lattner18c7f802012-02-05 02:29:43 +0000894 Out << ']';
Chris Lattnercfb5a202008-08-19 05:06:27 +0000895 return;
896 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000897
Chris Lattnerd59ae902012-01-26 02:32:04 +0000898 if (const ConstantDataArray *CA = dyn_cast<ConstantDataArray>(CV)) {
899 // As a special case, print the array as a string if it is an array of
900 // i8 with ConstantInt values.
901 if (CA->isString()) {
902 Out << "c\"";
903 PrintEscapedString(CA->getAsString(), Out);
904 Out << '"';
905 return;
906 }
907
908 Type *ETy = CA->getType()->getElementType();
909 Out << '[';
Chris Lattner8b10b692012-01-31 03:15:40 +0000910 TypePrinter.print(ETy, Out);
911 Out << ' ';
912 WriteAsOperandInternal(Out, CA->getElementAsConstant(0),
913 &TypePrinter, Machine,
914 Context);
915 for (unsigned i = 1, e = CA->getNumElements(); i != e; ++i) {
916 Out << ", ";
Chris Lattnerd59ae902012-01-26 02:32:04 +0000917 TypePrinter.print(ETy, Out);
918 Out << ' ';
Chris Lattner8b10b692012-01-31 03:15:40 +0000919 WriteAsOperandInternal(Out, CA->getElementAsConstant(i), &TypePrinter,
920 Machine, Context);
Chris Lattnerd59ae902012-01-26 02:32:04 +0000921 }
Chris Lattner8b10b692012-01-31 03:15:40 +0000922 Out << ']';
Chris Lattnerd59ae902012-01-26 02:32:04 +0000923 return;
924 }
925
Daniel Dunbara279bc32009-09-20 02:20:51 +0000926
Chris Lattnercfb5a202008-08-19 05:06:27 +0000927 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) {
Andrew Lenharth43f344a2007-01-08 18:21:30 +0000928 if (CS->getType()->isPacked())
929 Out << '<';
Misha Brukman40c732c2004-06-04 21:11:51 +0000930 Out << '{';
Jim Laskeya3f332b2006-02-25 12:27:03 +0000931 unsigned N = CS->getNumOperands();
932 if (N) {
Chris Lattner24233032008-08-19 04:47:09 +0000933 Out << ' ';
Chris Lattner0f7364b2009-02-28 21:26:53 +0000934 TypePrinter.print(CS->getOperand(0)->getType(), Out);
Dan Gohman8dae1382008-09-14 17:21:12 +0000935 Out << ' ';
Chris Lattner7a716ad2002-04-16 21:36:08 +0000936
Dan Gohman3bdfbf52010-07-20 23:55:01 +0000937 WriteAsOperandInternal(Out, CS->getOperand(0), &TypePrinter, Machine,
938 Context);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000939
Jim Laskeya3f332b2006-02-25 12:27:03 +0000940 for (unsigned i = 1; i < N; i++) {
Chris Lattner7a716ad2002-04-16 21:36:08 +0000941 Out << ", ";
Chris Lattner0f7364b2009-02-28 21:26:53 +0000942 TypePrinter.print(CS->getOperand(i)->getType(), Out);
Dan Gohman8dae1382008-09-14 17:21:12 +0000943 Out << ' ';
Chris Lattner7a716ad2002-04-16 21:36:08 +0000944
Dan Gohman3bdfbf52010-07-20 23:55:01 +0000945 WriteAsOperandInternal(Out, CS->getOperand(i), &TypePrinter, Machine,
946 Context);
Chris Lattner7a716ad2002-04-16 21:36:08 +0000947 }
Dan Gohman8dae1382008-09-14 17:21:12 +0000948 Out << ' ';
Chris Lattner7a716ad2002-04-16 21:36:08 +0000949 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000950
Dan Gohman8dae1382008-09-14 17:21:12 +0000951 Out << '}';
Andrew Lenharth43f344a2007-01-08 18:21:30 +0000952 if (CS->getType()->isPacked())
953 Out << '>';
Chris Lattnercfb5a202008-08-19 05:06:27 +0000954 return;
955 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000956
Chris Lattnerd59ae902012-01-26 02:32:04 +0000957 if (isa<ConstantVector>(CV) || isa<ConstantDataVector>(CV)) {
958 Type *ETy = CV->getType()->getVectorElementType();
Dan Gohman7dfa07f2009-02-11 00:25:25 +0000959 Out << '<';
Chris Lattner0f7364b2009-02-28 21:26:53 +0000960 TypePrinter.print(ETy, Out);
Dan Gohman8dae1382008-09-14 17:21:12 +0000961 Out << ' ';
Chris Lattnerd59ae902012-01-26 02:32:04 +0000962 WriteAsOperandInternal(Out, CV->getAggregateElement(0U), &TypePrinter,
963 Machine, Context);
964 for (unsigned i = 1, e = CV->getType()->getVectorNumElements(); i != e;++i){
Chris Lattner4667b712008-08-19 05:26:17 +0000965 Out << ", ";
Chris Lattner0f7364b2009-02-28 21:26:53 +0000966 TypePrinter.print(ETy, Out);
Dan Gohman8dae1382008-09-14 17:21:12 +0000967 Out << ' ';
Chris Lattnerd59ae902012-01-26 02:32:04 +0000968 WriteAsOperandInternal(Out, CV->getAggregateElement(i), &TypePrinter,
969 Machine, Context);
Chris Lattnercfb5a202008-08-19 05:06:27 +0000970 }
Dan Gohman7dfa07f2009-02-11 00:25:25 +0000971 Out << '>';
Chris Lattnercfb5a202008-08-19 05:06:27 +0000972 return;
973 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000974
Chris Lattnercfb5a202008-08-19 05:06:27 +0000975 if (isa<ConstantPointerNull>(CV)) {
Chris Lattner7a716ad2002-04-16 21:36:08 +0000976 Out << "null";
Chris Lattnercfb5a202008-08-19 05:06:27 +0000977 return;
978 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000979
Chris Lattnercfb5a202008-08-19 05:06:27 +0000980 if (isa<UndefValue>(CV)) {
Chris Lattnerb976e662004-10-16 18:08:06 +0000981 Out << "undef";
Chris Lattnercfb5a202008-08-19 05:06:27 +0000982 return;
983 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000984
Chris Lattnercfb5a202008-08-19 05:06:27 +0000985 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
Reid Spencer81dfeb32006-12-04 05:19:18 +0000986 Out << CE->getOpcodeName();
Dan Gohman59858cf2009-07-27 16:11:46 +0000987 WriteOptimizationInfo(Out, CE);
Reid Spencer81dfeb32006-12-04 05:19:18 +0000988 if (CE->isCompare())
Chris Lattnercfb5a202008-08-19 05:06:27 +0000989 Out << ' ' << getPredicateText(CE->getPredicate());
Reid Spencer81dfeb32006-12-04 05:19:18 +0000990 Out << " (";
Misha Brukmanfd939082005-04-21 23:48:37 +0000991
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000992 for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
Chris Lattner0f7364b2009-02-28 21:26:53 +0000993 TypePrinter.print((*OI)->getType(), Out);
Dan Gohman8dae1382008-09-14 17:21:12 +0000994 Out << ' ';
Dan Gohman3bdfbf52010-07-20 23:55:01 +0000995 WriteAsOperandInternal(Out, *OI, &TypePrinter, Machine, Context);
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000996 if (OI+1 != CE->op_end())
Chris Lattnerc188eeb2002-07-30 18:54:25 +0000997 Out << ", ";
Vikram S. Adveb4dbb442002-07-14 23:14:45 +0000998 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000999
Dan Gohman995be7d2008-05-31 19:12:39 +00001000 if (CE->hasIndices()) {
Jay Foadd30aa5a2011-04-13 15:22:40 +00001001 ArrayRef<unsigned> Indices = CE->getIndices();
Dan Gohman995be7d2008-05-31 19:12:39 +00001002 for (unsigned i = 0, e = Indices.size(); i != e; ++i)
1003 Out << ", " << Indices[i];
1004 }
1005
Reid Spencer3da59db2006-11-27 01:05:10 +00001006 if (CE->isCast()) {
Chris Lattner95586b82002-08-15 19:37:43 +00001007 Out << " to ";
Chris Lattner0f7364b2009-02-28 21:26:53 +00001008 TypePrinter.print(CE->getType(), Out);
Chris Lattner95586b82002-08-15 19:37:43 +00001009 }
Reid Spencer3da59db2006-11-27 01:05:10 +00001010
Misha Brukman40c732c2004-06-04 21:11:51 +00001011 Out << ')';
Chris Lattnercfb5a202008-08-19 05:06:27 +00001012 return;
Chris Lattner7a716ad2002-04-16 21:36:08 +00001013 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001014
Chris Lattnercfb5a202008-08-19 05:06:27 +00001015 Out << "<placeholder or erroneous Constant>";
Chris Lattner7a716ad2002-04-16 21:36:08 +00001016}
1017
Chris Lattner85b19122009-12-31 02:31:59 +00001018static void WriteMDNodeBodyInternal(raw_ostream &Out, const MDNode *Node,
1019 TypePrinting *TypePrinter,
Dan Gohman3bdfbf52010-07-20 23:55:01 +00001020 SlotTracker *Machine,
1021 const Module *Context) {
Chris Lattner85b19122009-12-31 02:31:59 +00001022 Out << "!{";
1023 for (unsigned mi = 0, me = Node->getNumOperands(); mi != me; ++mi) {
1024 const Value *V = Node->getOperand(mi);
1025 if (V == 0)
1026 Out << "null";
1027 else {
1028 TypePrinter->print(V->getType(), Out);
1029 Out << ' ';
Andrew Trick18801ec2011-09-30 19:48:58 +00001030 WriteAsOperandInternal(Out, Node->getOperand(mi),
Dan Gohman3bdfbf52010-07-20 23:55:01 +00001031 TypePrinter, Machine, Context);
Chris Lattner85b19122009-12-31 02:31:59 +00001032 }
1033 if (mi + 1 != me)
1034 Out << ", ";
1035 }
Andrew Trick18801ec2011-09-30 19:48:58 +00001036
Chris Lattner85b19122009-12-31 02:31:59 +00001037 Out << "}";
1038}
1039
Chris Lattner7a716ad2002-04-16 21:36:08 +00001040
Misha Brukmanab5c6002004-03-02 00:22:19 +00001041/// WriteAsOperand - Write the name of the specified value out to the specified
1042/// ostream. This can be useful when you just want to print int %reg126, not
1043/// the whole instruction that generated it.
1044///
Dan Gohman1220e102009-08-12 20:56:03 +00001045static void WriteAsOperandInternal(raw_ostream &Out, const Value *V,
Dan Gohmand6c0f652009-08-13 15:27:57 +00001046 TypePrinting *TypePrinter,
Dan Gohman3bdfbf52010-07-20 23:55:01 +00001047 SlotTracker *Machine,
1048 const Module *Context) {
Chris Lattnerc97536e2008-08-17 04:40:13 +00001049 if (V->hasName()) {
1050 PrintLLVMName(Out, V);
1051 return;
1052 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001053
Chris Lattnerc97536e2008-08-17 04:40:13 +00001054 const Constant *CV = dyn_cast<Constant>(V);
1055 if (CV && !isa<GlobalValue>(CV)) {
Dan Gohmand6c0f652009-08-13 15:27:57 +00001056 assert(TypePrinter && "Constants require TypePrinting!");
Dan Gohman3bdfbf52010-07-20 23:55:01 +00001057 WriteConstantInternal(Out, CV, *TypePrinter, Machine, Context);
Chris Lattnercfb5a202008-08-19 05:06:27 +00001058 return;
1059 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001060
Chris Lattnercfb5a202008-08-19 05:06:27 +00001061 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
Chris Lattnerc97536e2008-08-17 04:40:13 +00001062 Out << "asm ";
1063 if (IA->hasSideEffects())
1064 Out << "sideeffect ";
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00001065 if (IA->isAlignStack())
1066 Out << "alignstack ";
Chad Rosier581600b2012-09-05 19:00:49 +00001067 // We don't emit the AD_ATT dialect as it's the assumed default.
1068 if (IA->getDialect() == InlineAsm::AD_Intel)
1069 Out << "inteldialect ";
Chris Lattnerc97536e2008-08-17 04:40:13 +00001070 Out << '"';
1071 PrintEscapedString(IA->getAsmString(), Out);
1072 Out << "\", \"";
1073 PrintEscapedString(IA->getConstraintString(), Out);
1074 Out << '"';
Chris Lattnercfb5a202008-08-19 05:06:27 +00001075 return;
1076 }
Devang Patele54abc92009-07-22 17:43:22 +00001077
Devang Patel104cf9e2009-07-23 01:07:34 +00001078 if (const MDNode *N = dyn_cast<MDNode>(V)) {
Victor Hernandez5d301622009-12-18 20:09:14 +00001079 if (N->isFunctionLocal()) {
Victor Hernandez97e24502009-12-04 01:35:02 +00001080 // Print metadata inline, not via slot reference number.
Dan Gohman3bdfbf52010-07-20 23:55:01 +00001081 WriteMDNodeBodyInternal(Out, N, TypePrinter, Machine, Context);
Victor Hernandez97e24502009-12-04 01:35:02 +00001082 return;
1083 }
Andrew Trick18801ec2011-09-30 19:48:58 +00001084
Dan Gohman3bdfbf52010-07-20 23:55:01 +00001085 if (!Machine) {
1086 if (N->isFunctionLocal())
1087 Machine = new SlotTracker(N->getFunction());
1088 else
1089 Machine = new SlotTracker(Context);
1090 }
Dan Gohman3da076f2010-09-09 20:53:58 +00001091 int Slot = Machine->getMetadataSlot(N);
1092 if (Slot == -1)
1093 Out << "<badref>";
1094 else
1095 Out << '!' << Slot;
Devang Patel104cf9e2009-07-23 01:07:34 +00001096 return;
1097 }
1098
Devang Patele54abc92009-07-22 17:43:22 +00001099 if (const MDString *MDS = dyn_cast<MDString>(V)) {
Devang Patele54abc92009-07-22 17:43:22 +00001100 Out << "!\"";
Daniel Dunbar03d76512009-07-25 23:55:21 +00001101 PrintEscapedString(MDS->getString(), Out);
Devang Patele54abc92009-07-22 17:43:22 +00001102 Out << '"';
1103 return;
1104 }
1105
Evan Cheng746d5462009-11-16 07:10:36 +00001106 if (V->getValueID() == Value::PseudoSourceValueVal ||
1107 V->getValueID() == Value::FixedStackPseudoSourceValueVal) {
Dan Gohmancd26ec52009-09-23 01:33:16 +00001108 V->print(Out);
1109 return;
1110 }
1111
Chris Lattnercfb5a202008-08-19 05:06:27 +00001112 char Prefix = '%';
1113 int Slot;
Chris Lattnerfb5179a2011-08-03 06:15:41 +00001114 // If we have a SlotTracker, use it.
Chris Lattnercfb5a202008-08-19 05:06:27 +00001115 if (Machine) {
1116 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
1117 Slot = Machine->getGlobalSlot(GV);
1118 Prefix = '@';
1119 } else {
1120 Slot = Machine->getLocalSlot(V);
Andrew Trick18801ec2011-09-30 19:48:58 +00001121
Chris Lattnerfb5179a2011-08-03 06:15:41 +00001122 // If the local value didn't succeed, then we may be referring to a value
1123 // from a different function. Translate it, as this can happen when using
1124 // address of blocks.
1125 if (Slot == -1)
1126 if ((Machine = createSlotTracker(V))) {
1127 Slot = Machine->getLocalSlot(V);
1128 delete Machine;
1129 }
Chris Lattnercfb5a202008-08-19 05:06:27 +00001130 }
Chris Lattnerfb5179a2011-08-03 06:15:41 +00001131 } else if ((Machine = createSlotTracker(V))) {
1132 // Otherwise, create one to get the # and then destroy it.
1133 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
1134 Slot = Machine->getGlobalSlot(GV);
1135 Prefix = '@';
Chris Lattner80cd1152006-01-25 22:26:05 +00001136 } else {
Chris Lattnerfb5179a2011-08-03 06:15:41 +00001137 Slot = Machine->getLocalSlot(V);
Chris Lattner7a716ad2002-04-16 21:36:08 +00001138 }
Chris Lattnerfb5179a2011-08-03 06:15:41 +00001139 delete Machine;
1140 Machine = 0;
1141 } else {
1142 Slot = -1;
Chris Lattner7a716ad2002-04-16 21:36:08 +00001143 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001144
Chris Lattnercfb5a202008-08-19 05:06:27 +00001145 if (Slot != -1)
1146 Out << Prefix << Slot;
1147 else
1148 Out << "<badref>";
Chris Lattner7a716ad2002-04-16 21:36:08 +00001149}
1150
Dan Gohman1220e102009-08-12 20:56:03 +00001151void llvm::WriteAsOperand(raw_ostream &Out, const Value *V,
1152 bool PrintType, const Module *Context) {
Dan Gohmand6c0f652009-08-13 15:27:57 +00001153
1154 // Fast path: Don't construct and populate a TypePrinting object if we
1155 // won't be needing any types printed.
Dan Gohman009fc9e2009-08-13 23:07:11 +00001156 if (!PrintType &&
Dan Gohman3bdfbf52010-07-20 23:55:01 +00001157 ((!isa<Constant>(V) && !isa<MDNode>(V)) ||
1158 V->hasName() || isa<GlobalValue>(V))) {
1159 WriteAsOperandInternal(Out, V, 0, 0, Context);
Dan Gohmand6c0f652009-08-13 15:27:57 +00001160 return;
1161 }
1162
Chris Lattner607dc682002-07-10 16:48:17 +00001163 if (Context == 0) Context = getModuleFromVal(V);
Chris Lattner207b5bc2001-10-29 16:37:48 +00001164
Chris Lattnere9fa33e2009-02-28 23:20:19 +00001165 TypePrinting TypePrinter;
Chris Lattner1afcace2011-07-09 17:41:24 +00001166 if (Context)
1167 TypePrinter.incorporateTypes(*Context);
Dan Gohman8dae1382008-09-14 17:21:12 +00001168 if (PrintType) {
Chris Lattner0f7364b2009-02-28 21:26:53 +00001169 TypePrinter.print(V->getType(), Out);
Dan Gohman8dae1382008-09-14 17:21:12 +00001170 Out << ' ';
1171 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001172
Dan Gohman3bdfbf52010-07-20 23:55:01 +00001173 WriteAsOperandInternal(Out, V, &TypePrinter, 0, Context);
Chris Lattner622f7402001-07-20 19:15:21 +00001174}
1175
Chris Lattnercfb5a202008-08-19 05:06:27 +00001176namespace {
Chris Lattnerd8c2e422001-07-12 23:35:26 +00001177
Chris Lattner007377f2001-09-07 16:36:04 +00001178class AssemblyWriter {
Dan Gohman683e9222009-08-12 17:23:50 +00001179 formatted_raw_ostream &Out;
Chris Lattner0d9574a2008-08-19 04:26:57 +00001180 SlotTracker &Machine;
Chris Lattnerc1824992001-10-29 16:05:51 +00001181 const Module *TheModule;
Chris Lattner9cc34462009-02-28 20:25:14 +00001182 TypePrinting TypePrinter;
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001183 AssemblyAnnotationWriter *AnnotationWriter;
Andrew Trick18801ec2011-09-30 19:48:58 +00001184
Chris Lattner00950542001-06-06 20:29:01 +00001185public:
Dan Gohman683e9222009-08-12 17:23:50 +00001186 inline AssemblyWriter(formatted_raw_ostream &o, SlotTracker &Mac,
1187 const Module *M,
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001188 AssemblyAnnotationWriter *AAW)
Devang Patel3168b792009-09-28 18:31:56 +00001189 : Out(o), Machine(Mac), TheModule(M), AnnotationWriter(AAW) {
Chris Lattner1afcace2011-07-09 17:41:24 +00001190 if (M)
1191 TypePrinter.incorporateTypes(*M);
Chris Lattner00950542001-06-06 20:29:01 +00001192 }
1193
Chris Lattner6e6b1802009-12-31 02:13:35 +00001194 void printMDNodeBody(const MDNode *MD);
Chris Lattnerfdb33562009-12-31 01:54:05 +00001195 void printNamedMDNode(const NamedMDNode *NMD);
Andrew Trick18801ec2011-09-30 19:48:58 +00001196
Chris Lattnerbd72b322009-12-31 02:23:35 +00001197 void printModule(const Module *M);
Chris Lattner00950542001-06-06 20:29:01 +00001198
Chris Lattner2fcfdb72006-12-06 06:24:27 +00001199 void writeOperand(const Value *Op, bool PrintType);
Bill Wendling94e94b32012-12-30 13:50:49 +00001200 void writeParamOperand(const Value *Operand, AttributeSet Attrs,unsigned Idx);
Eli Friedman47f35132011-07-25 23:16:38 +00001201 void writeAtomic(AtomicOrdering Ordering, SynchronizationScope SynchScope);
Chris Lattner66e810b2002-04-18 18:53:13 +00001202
Chris Lattner6e6b1802009-12-31 02:13:35 +00001203 void writeAllMDNodes();
1204
Chris Lattner1afcace2011-07-09 17:41:24 +00001205 void printTypeIdentities();
Chris Lattnerc1824992001-10-29 16:05:51 +00001206 void printGlobal(const GlobalVariable *GV);
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001207 void printAlias(const GlobalAlias *GV);
Chris Lattner79df7c02002-03-26 18:01:55 +00001208 void printFunction(const Function *F);
Bill Wendling94e94b32012-12-30 13:50:49 +00001209 void printArgument(const Argument *FA, AttributeSet Attrs, unsigned Idx);
Chris Lattnerc1824992001-10-29 16:05:51 +00001210 void printBasicBlock(const BasicBlock *BB);
Chris Lattner7e708292002-06-25 16:13:24 +00001211 void printInstruction(const Instruction &I);
Chris Lattner2761e9f2002-04-13 20:53:41 +00001212
Dan Gohman659d1e82010-02-10 20:42:57 +00001213private:
Chris Lattnere02fa852001-10-13 06:42:36 +00001214 // printInfoComment - Print a little comment after the instruction indicating
1215 // which slot it occupies.
Chris Lattner7e708292002-06-25 16:13:24 +00001216 void printInfoComment(const Value &V);
Chris Lattner00950542001-06-06 20:29:01 +00001217};
Chris Lattner413fd232009-03-01 00:03:38 +00001218} // end of anonymous namespace
Chris Lattner00950542001-06-06 20:29:01 +00001219
Chris Lattner2fcfdb72006-12-06 06:24:27 +00001220void AssemblyWriter::writeOperand(const Value *Operand, bool PrintType) {
1221 if (Operand == 0) {
Chris Lattneraab18202005-02-24 16:58:29 +00001222 Out << "<null operand!>";
Chris Lattnerc65b72c2009-12-31 02:33:14 +00001223 return;
Chris Lattneraab18202005-02-24 16:58:29 +00001224 }
Chris Lattnerc65b72c2009-12-31 02:33:14 +00001225 if (PrintType) {
1226 TypePrinter.print(Operand->getType(), Out);
1227 Out << ' ';
1228 }
Dan Gohman3bdfbf52010-07-20 23:55:01 +00001229 WriteAsOperandInternal(Out, Operand, &TypePrinter, &Machine, TheModule);
Chris Lattner00950542001-06-06 20:29:01 +00001230}
1231
Eli Friedman47f35132011-07-25 23:16:38 +00001232void AssemblyWriter::writeAtomic(AtomicOrdering Ordering,
1233 SynchronizationScope SynchScope) {
1234 if (Ordering == NotAtomic)
1235 return;
1236
1237 switch (SynchScope) {
Eli Friedman47f35132011-07-25 23:16:38 +00001238 case SingleThread: Out << " singlethread"; break;
1239 case CrossThread: break;
1240 }
1241
1242 switch (Ordering) {
1243 default: Out << " <bad ordering " << int(Ordering) << ">"; break;
1244 case Unordered: Out << " unordered"; break;
1245 case Monotonic: Out << " monotonic"; break;
1246 case Acquire: Out << " acquire"; break;
1247 case Release: Out << " release"; break;
1248 case AcquireRelease: Out << " acq_rel"; break;
1249 case SequentiallyConsistent: Out << " seq_cst"; break;
1250 }
1251}
1252
Daniel Dunbara279bc32009-09-20 02:20:51 +00001253void AssemblyWriter::writeParamOperand(const Value *Operand,
Bill Wendling94e94b32012-12-30 13:50:49 +00001254 AttributeSet Attrs, unsigned Idx) {
Duncan Sandsdc024672007-11-27 13:23:08 +00001255 if (Operand == 0) {
1256 Out << "<null operand!>";
Chris Lattnerc65b72c2009-12-31 02:33:14 +00001257 return;
Duncan Sandsdc024672007-11-27 13:23:08 +00001258 }
Chris Lattnerc65b72c2009-12-31 02:33:14 +00001259
1260 // Print the type
1261 TypePrinter.print(Operand->getType(), Out);
1262 // Print parameter attributes list
Bill Wendling94e94b32012-12-30 13:50:49 +00001263 if (Attrs.hasAttributes(Idx))
1264 Out << ' ' << Attrs.getAsString(Idx);
Chris Lattnerc65b72c2009-12-31 02:33:14 +00001265 Out << ' ';
1266 // Print the operand
Dan Gohman3bdfbf52010-07-20 23:55:01 +00001267 WriteAsOperandInternal(Out, Operand, &TypePrinter, &Machine, TheModule);
Duncan Sandsdc024672007-11-27 13:23:08 +00001268}
Chris Lattner00950542001-06-06 20:29:01 +00001269
Chris Lattnerc1824992001-10-29 16:05:51 +00001270void AssemblyWriter::printModule(const Module *M) {
Chris Lattner31ab1b32005-03-02 23:12:40 +00001271 if (!M->getModuleIdentifier().empty() &&
Misha Brukmanfd939082005-04-21 23:48:37 +00001272 // Don't print the ID if it will start a new line (which would
Chris Lattner31ab1b32005-03-02 23:12:40 +00001273 // require a comment char before it).
1274 M->getModuleIdentifier().find('\n') == std::string::npos)
1275 Out << "; ModuleID = '" << M->getModuleIdentifier() << "'\n";
1276
Owen Andersoncf7ff2b2006-10-18 02:21:12 +00001277 if (!M->getDataLayout().empty())
Chris Lattnerd2f9e602006-10-22 06:06:56 +00001278 Out << "target datalayout = \"" << M->getDataLayout() << "\"\n";
Reid Spencercddc86f2004-07-25 21:44:54 +00001279 if (!M->getTargetTriple().empty())
Reid Spencerc9a1f0d2004-07-25 21:29:43 +00001280 Out << "target triple = \"" << M->getTargetTriple() << "\"\n";
Misha Brukmanfd939082005-04-21 23:48:37 +00001281
Chris Lattnercc041ba2006-01-24 04:13:11 +00001282 if (!M->getModuleInlineAsm().empty()) {
Chris Lattner42a162e2006-01-24 00:45:30 +00001283 // Split the string into lines, to make it easier to read the .ll file.
Chris Lattnercc041ba2006-01-24 04:13:11 +00001284 std::string Asm = M->getModuleInlineAsm();
Chris Lattner42a162e2006-01-24 00:45:30 +00001285 size_t CurPos = 0;
1286 size_t NewLine = Asm.find_first_of('\n', CurPos);
Dan Gohman9bf0b9b2009-08-12 23:54:22 +00001287 Out << '\n';
Chris Lattner42a162e2006-01-24 00:45:30 +00001288 while (NewLine != std::string::npos) {
1289 // We found a newline, print the portion of the asm string from the
1290 // last newline up to this newline.
1291 Out << "module asm \"";
1292 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
1293 Out);
1294 Out << "\"\n";
1295 CurPos = NewLine+1;
1296 NewLine = Asm.find_first_of('\n', CurPos);
1297 }
Rafael Espindola38c4e532011-03-02 04:14:42 +00001298 std::string rest(Asm.begin()+CurPos, Asm.end());
1299 if (!rest.empty()) {
1300 Out << "module asm \"";
1301 PrintEscapedString(rest, Out);
1302 Out << "\"\n";
1303 }
Chris Lattner18365502006-01-23 23:03:36 +00001304 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001305
Chris Lattner1afcace2011-07-09 17:41:24 +00001306 printTypeIdentities();
Misha Brukmanfd939082005-04-21 23:48:37 +00001307
Dan Gohman9bf0b9b2009-08-12 23:54:22 +00001308 // Output all globals.
1309 if (!M->global_empty()) Out << '\n';
Chris Lattnerd6d826c2006-12-06 04:41:52 +00001310 for (Module::const_global_iterator I = M->global_begin(), E = M->global_end();
Duncan Sands79da6ef2012-09-12 09:55:51 +00001311 I != E; ++I) {
1312 printGlobal(I); Out << '\n';
1313 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001314
Chris Lattner69dacfc2007-04-26 02:24:10 +00001315 // Output all aliases.
1316 if (!M->alias_empty()) Out << "\n";
1317 for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
1318 I != E; ++I)
1319 printAlias(I);
Chris Lattner007377f2001-09-07 16:36:04 +00001320
Chris Lattner44da7d72004-09-14 05:06:58 +00001321 // Output all of the functions.
Chris Lattner7e708292002-06-25 16:13:24 +00001322 for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
1323 printFunction(I);
Devang Patel320671d2009-07-08 21:44:25 +00001324
Devang Patel37c4a2d2009-07-29 22:04:47 +00001325 // Output named metadata.
Dan Gohman9bf0b9b2009-08-12 23:54:22 +00001326 if (!M->named_metadata_empty()) Out << '\n';
Andrew Trick18801ec2011-09-30 19:48:58 +00001327
Devang Patel37c4a2d2009-07-29 22:04:47 +00001328 for (Module::const_named_metadata_iterator I = M->named_metadata_begin(),
Chris Lattner6e6b1802009-12-31 02:13:35 +00001329 E = M->named_metadata_end(); I != E; ++I)
Chris Lattnerfdb33562009-12-31 01:54:05 +00001330 printNamedMDNode(I);
Devang Patel37c4a2d2009-07-29 22:04:47 +00001331
1332 // Output metadata.
Chris Lattner307c9892009-12-31 02:20:11 +00001333 if (!Machine.mdn_empty()) {
Chris Lattner6e6b1802009-12-31 02:13:35 +00001334 Out << '\n';
1335 writeAllMDNodes();
1336 }
Chris Lattner007377f2001-09-07 16:36:04 +00001337}
1338
Chris Lattnerfdb33562009-12-31 01:54:05 +00001339void AssemblyWriter::printNamedMDNode(const NamedMDNode *NMD) {
Nick Lewycky9100a782011-06-15 06:37:58 +00001340 Out << '!';
1341 StringRef Name = NMD->getName();
1342 if (Name.empty()) {
1343 Out << "<empty name> ";
1344 } else {
1345 if (isalpha(Name[0]) || Name[0] == '-' || Name[0] == '$' ||
1346 Name[0] == '.' || Name[0] == '_')
1347 Out << Name[0];
1348 else
1349 Out << '\\' << hexdigit(Name[0] >> 4) << hexdigit(Name[0] & 0x0F);
1350 for (unsigned i = 1, e = Name.size(); i != e; ++i) {
1351 unsigned char C = Name[i];
1352 if (isalnum(C) || C == '-' || C == '$' || C == '.' || C == '_')
1353 Out << C;
1354 else
1355 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
1356 }
1357 }
1358 Out << " = !{";
Chris Lattnerfdb33562009-12-31 01:54:05 +00001359 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
1360 if (i) Out << ", ";
Dan Gohman3da076f2010-09-09 20:53:58 +00001361 int Slot = Machine.getMetadataSlot(NMD->getOperand(i));
1362 if (Slot == -1)
1363 Out << "<badref>";
1364 else
1365 Out << '!' << Slot;
Chris Lattnerfdb33562009-12-31 01:54:05 +00001366 }
1367 Out << "}\n";
1368}
1369
1370
Dan Gohman683e9222009-08-12 17:23:50 +00001371static void PrintLinkage(GlobalValue::LinkageTypes LT,
1372 formatted_raw_ostream &Out) {
Chris Lattnercfb5a202008-08-19 05:06:27 +00001373 switch (LT) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001374 case GlobalValue::ExternalLinkage: break;
1375 case GlobalValue::PrivateLinkage: Out << "private "; break;
1376 case GlobalValue::LinkerPrivateLinkage: Out << "linker_private "; break;
Bill Wendling5e721d72010-07-01 21:55:59 +00001377 case GlobalValue::LinkerPrivateWeakLinkage:
1378 Out << "linker_private_weak ";
1379 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001380 case GlobalValue::InternalLinkage: Out << "internal "; break;
1381 case GlobalValue::LinkOnceAnyLinkage: Out << "linkonce "; break;
1382 case GlobalValue::LinkOnceODRLinkage: Out << "linkonce_odr "; break;
Bill Wendling32811be2012-08-17 18:33:14 +00001383 case GlobalValue::LinkOnceODRAutoHideLinkage:
1384 Out << "linkonce_odr_auto_hide ";
1385 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001386 case GlobalValue::WeakAnyLinkage: Out << "weak "; break;
1387 case GlobalValue::WeakODRLinkage: Out << "weak_odr "; break;
1388 case GlobalValue::CommonLinkage: Out << "common "; break;
1389 case GlobalValue::AppendingLinkage: Out << "appending "; break;
1390 case GlobalValue::DLLImportLinkage: Out << "dllimport "; break;
1391 case GlobalValue::DLLExportLinkage: Out << "dllexport "; break;
1392 case GlobalValue::ExternalWeakLinkage: Out << "extern_weak "; break;
Chris Lattner266c7bb2009-04-13 05:44:34 +00001393 case GlobalValue::AvailableExternallyLinkage:
1394 Out << "available_externally ";
1395 break;
Chris Lattnercfb5a202008-08-19 05:06:27 +00001396 }
1397}
Duncan Sands667d4b82009-03-07 15:45:40 +00001398
Chris Lattnercfb5a202008-08-19 05:06:27 +00001399
1400static void PrintVisibility(GlobalValue::VisibilityTypes Vis,
Dan Gohman683e9222009-08-12 17:23:50 +00001401 formatted_raw_ostream &Out) {
Chris Lattnercfb5a202008-08-19 05:06:27 +00001402 switch (Vis) {
Chris Lattnercfb5a202008-08-19 05:06:27 +00001403 case GlobalValue::DefaultVisibility: break;
1404 case GlobalValue::HiddenVisibility: Out << "hidden "; break;
1405 case GlobalValue::ProtectedVisibility: Out << "protected "; break;
1406 }
1407}
1408
Hans Wennborgce718ff2012-06-23 11:37:03 +00001409static void PrintThreadLocalModel(GlobalVariable::ThreadLocalMode TLM,
1410 formatted_raw_ostream &Out) {
1411 switch (TLM) {
1412 case GlobalVariable::NotThreadLocal:
1413 break;
1414 case GlobalVariable::GeneralDynamicTLSModel:
1415 Out << "thread_local ";
1416 break;
1417 case GlobalVariable::LocalDynamicTLSModel:
1418 Out << "thread_local(localdynamic) ";
1419 break;
1420 case GlobalVariable::InitialExecTLSModel:
1421 Out << "thread_local(initialexec) ";
1422 break;
1423 case GlobalVariable::LocalExecTLSModel:
1424 Out << "thread_local(localexec) ";
1425 break;
1426 }
1427}
1428
Chris Lattnerc1824992001-10-29 16:05:51 +00001429void AssemblyWriter::printGlobal(const GlobalVariable *GV) {
Dan Gohman4483c7b2010-01-29 23:12:36 +00001430 if (GV->isMaterializable())
1431 Out << "; Materializable\n";
1432
Dan Gohman3bdfbf52010-07-20 23:55:01 +00001433 WriteAsOperandInternal(Out, GV, &TypePrinter, &Machine, GV->getParent());
Dan Gohman3845e502009-08-12 23:32:33 +00001434 Out << " = ";
Chris Lattnerd70684f2001-09-18 04:01:05 +00001435
Chris Lattner52b26de2008-08-19 05:16:28 +00001436 if (!GV->hasInitializer() && GV->hasExternalLinkage())
1437 Out << "external ";
Daniel Dunbara279bc32009-09-20 02:20:51 +00001438
Chris Lattner52b26de2008-08-19 05:16:28 +00001439 PrintLinkage(GV->getLinkage(), Out);
1440 PrintVisibility(GV->getVisibility(), Out);
Hans Wennborgce718ff2012-06-23 11:37:03 +00001441 PrintThreadLocalModel(GV->getThreadLocalMode(), Out);
Lauro Ramos Venancioc7635522007-04-12 18:32:50 +00001442
Chris Lattnerdf986172009-01-02 07:01:27 +00001443 if (unsigned AddressSpace = GV->getType()->getAddressSpace())
1444 Out << "addrspace(" << AddressSpace << ") ";
Rafael Espindolabea46262011-01-08 16:42:36 +00001445 if (GV->hasUnnamedAddr()) Out << "unnamed_addr ";
Michael Gottesmana2de37c2013-02-05 05:57:38 +00001446 if (GV->isExternallyInitialized()) Out << "externally_initialized ";
Misha Brukman0313e0b2004-06-21 21:53:56 +00001447 Out << (GV->isConstant() ? "constant " : "global ");
Chris Lattner0f7364b2009-02-28 21:26:53 +00001448 TypePrinter.print(GV->getType()->getElementType(), Out);
Chris Lattnerd70684f2001-09-18 04:01:05 +00001449
Dan Gohman8dae1382008-09-14 17:21:12 +00001450 if (GV->hasInitializer()) {
1451 Out << ' ';
Devang Patel320671d2009-07-08 21:44:25 +00001452 writeOperand(GV->getInitializer(), false);
Dan Gohman8dae1382008-09-14 17:21:12 +00001453 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001454
Chris Lattner8fff1262010-07-07 23:16:37 +00001455 if (GV->hasSection()) {
1456 Out << ", section \"";
1457 PrintEscapedString(GV->getSection(), Out);
1458 Out << '"';
1459 }
Chris Lattner60962db2005-11-12 00:10:19 +00001460 if (GV->getAlignment())
Chris Lattner30caa282005-11-06 06:48:53 +00001461 Out << ", align " << GV->getAlignment();
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001462
Chris Lattner7e708292002-06-25 16:13:24 +00001463 printInfoComment(*GV);
Chris Lattner70cc3392001-09-10 07:58:01 +00001464}
1465
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001466void AssemblyWriter::printAlias(const GlobalAlias *GA) {
Dan Gohman4483c7b2010-01-29 23:12:36 +00001467 if (GA->isMaterializable())
1468 Out << "; Materializable\n";
1469
Dale Johannesen24f07dc2008-06-03 18:14:29 +00001470 // Don't crash when dumping partially built GA
1471 if (!GA->hasName())
1472 Out << "<<nameless>> = ";
Chris Lattnerc97536e2008-08-17 04:40:13 +00001473 else {
1474 PrintLLVMName(Out, GA);
1475 Out << " = ";
1476 }
Chris Lattnercfb5a202008-08-19 05:06:27 +00001477 PrintVisibility(GA->getVisibility(), Out);
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001478
1479 Out << "alias ";
1480
Chris Lattnercfb5a202008-08-19 05:06:27 +00001481 PrintLinkage(GA->getLinkage(), Out);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001482
Anton Korobeynikovc6c98af2007-04-29 18:02:48 +00001483 const Constant *Aliasee = GA->getAliasee();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001484
Chris Lattner1afcace2011-07-09 17:41:24 +00001485 if (Aliasee == 0) {
1486 TypePrinter.print(GA->getType(), Out);
1487 Out << " <<NULL ALIASEE>>";
Jay Foad5cd8ea22011-08-01 12:48:54 +00001488 } else {
Jay Foad8d948652011-08-01 12:29:14 +00001489 writeOperand(Aliasee, !isa<ConstantExpr>(Aliasee));
Jay Foad5cd8ea22011-08-01 12:48:54 +00001490 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001491
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001492 printInfoComment(*GA);
Chris Lattner52b26de2008-08-19 05:16:28 +00001493 Out << '\n';
Anton Korobeynikov8b0a8c82007-04-25 14:27:10 +00001494}
1495
Chris Lattner1afcace2011-07-09 17:41:24 +00001496void AssemblyWriter::printTypeIdentities() {
1497 if (TypePrinter.NumberedTypes.empty() &&
1498 TypePrinter.NamedTypes.empty())
1499 return;
Andrew Trick18801ec2011-09-30 19:48:58 +00001500
Chris Lattner1afcace2011-07-09 17:41:24 +00001501 Out << '\n';
Andrew Trick18801ec2011-09-30 19:48:58 +00001502
Chris Lattner1afcace2011-07-09 17:41:24 +00001503 // We know all the numbers that each type is used and we know that it is a
1504 // dense assignment. Convert the map to an index table.
1505 std::vector<StructType*> NumberedTypes(TypePrinter.NumberedTypes.size());
Andrew Trick18801ec2011-09-30 19:48:58 +00001506 for (DenseMap<StructType*, unsigned>::iterator I =
Chris Lattner1afcace2011-07-09 17:41:24 +00001507 TypePrinter.NumberedTypes.begin(), E = TypePrinter.NumberedTypes.end();
1508 I != E; ++I) {
1509 assert(I->second < NumberedTypes.size() && "Didn't get a dense numbering?");
1510 NumberedTypes[I->second] = I->first;
1511 }
Andrew Trick18801ec2011-09-30 19:48:58 +00001512
Chris Lattner413fd232009-03-01 00:03:38 +00001513 // Emit all numbered types.
1514 for (unsigned i = 0, e = NumberedTypes.size(); i != e; ++i) {
Dan Gohman3845e502009-08-12 23:32:33 +00001515 Out << '%' << i << " = type ";
Andrew Trick18801ec2011-09-30 19:48:58 +00001516
Chris Lattner413fd232009-03-01 00:03:38 +00001517 // Make sure we print out at least one level of the type structure, so
1518 // that we do not get %2 = type %2
Chris Lattner1afcace2011-07-09 17:41:24 +00001519 TypePrinter.printStructBody(NumberedTypes[i], Out);
Dan Gohman9bf0b9b2009-08-12 23:54:22 +00001520 Out << '\n';
Chris Lattner413fd232009-03-01 00:03:38 +00001521 }
Andrew Trick18801ec2011-09-30 19:48:58 +00001522
Chris Lattner1afcace2011-07-09 17:41:24 +00001523 for (unsigned i = 0, e = TypePrinter.NamedTypes.size(); i != e; ++i) {
1524 PrintLLVMName(Out, TypePrinter.NamedTypes[i]->getName(), LocalPrefix);
Chris Lattner52b26de2008-08-19 05:16:28 +00001525 Out << " = type ";
Reid Spencer9231ac82004-05-25 08:53:40 +00001526
1527 // Make sure we print out at least one level of the type structure, so
1528 // that we do not get %FILE = type %FILE
Chris Lattner1afcace2011-07-09 17:41:24 +00001529 TypePrinter.printStructBody(TypePrinter.NamedTypes[i], Out);
Chris Lattnercfb5a202008-08-19 05:06:27 +00001530 Out << '\n';
Reid Spencer9231ac82004-05-25 08:53:40 +00001531 }
Reid Spencer78d033e2007-01-06 07:24:44 +00001532}
1533
Misha Brukmanab5c6002004-03-02 00:22:19 +00001534/// printFunction - Print all aspects of a function.
1535///
Chris Lattner7e708292002-06-25 16:13:24 +00001536void AssemblyWriter::printFunction(const Function *F) {
Chris Lattnercfb5a202008-08-19 05:06:27 +00001537 // Print out the return type and name.
1538 Out << '\n';
Chris Lattner4ad02e72003-04-16 20:28:45 +00001539
Misha Brukman0313e0b2004-06-21 21:53:56 +00001540 if (AnnotationWriter) AnnotationWriter->emitFunctionAnnot(F, Out);
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001541
Dan Gohman4483c7b2010-01-29 23:12:36 +00001542 if (F->isMaterializable())
1543 Out << "; Materializable\n";
1544
Reid Spencer5cbf9852007-01-30 20:08:39 +00001545 if (F->isDeclaration())
Chris Lattner3aa60662007-08-19 22:15:26 +00001546 Out << "declare ";
1547 else
Reid Spencerb951bc02006-12-29 20:29:48 +00001548 Out << "define ";
Daniel Dunbara279bc32009-09-20 02:20:51 +00001549
Chris Lattnercfb5a202008-08-19 05:06:27 +00001550 PrintLinkage(F->getLinkage(), Out);
1551 PrintVisibility(F->getVisibility(), Out);
Chris Lattner4ad02e72003-04-16 20:28:45 +00001552
Chris Lattnerd5118982005-05-06 20:26:43 +00001553 // Print the calling convention.
Micah Villmowd3766df2012-09-13 15:11:12 +00001554 if (F->getCallingConv() != CallingConv::C) {
1555 PrintCallingConv(F->getCallingConv(), Out);
1556 Out << " ";
Chris Lattnerd5118982005-05-06 20:26:43 +00001557 }
1558
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001559 FunctionType *FT = F->getFunctionType();
Bill Wendling99faa3b2012-12-07 23:16:57 +00001560 const AttributeSet &Attrs = F->getAttributes();
Bill Wendling1b0c54f2013-01-18 21:53:16 +00001561 if (Attrs.hasAttributes(AttributeSet::ReturnIndex))
1562 Out << Attrs.getAsString(AttributeSet::ReturnIndex) << ' ';
Chris Lattner0f7364b2009-02-28 21:26:53 +00001563 TypePrinter.print(F->getReturnType(), Out);
Chris Lattner4667b712008-08-19 05:26:17 +00001564 Out << ' ';
Dan Gohman3bdfbf52010-07-20 23:55:01 +00001565 WriteAsOperandInternal(Out, F, &TypePrinter, &Machine, F->getParent());
Misha Brukman0313e0b2004-06-21 21:53:56 +00001566 Out << '(';
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001567 Machine.incorporateFunction(F);
Chris Lattner007377f2001-09-07 16:36:04 +00001568
Chris Lattnerc1824992001-10-29 16:05:51 +00001569 // Loop over the arguments, printing them...
Chris Lattner007377f2001-09-07 16:36:04 +00001570
Reid Spencerbd5db8e2006-12-31 05:24:50 +00001571 unsigned Idx = 1;
Chris Lattner8dcd2f12007-04-18 00:57:22 +00001572 if (!F->isDeclaration()) {
1573 // If this isn't a declaration, print the argument names as well.
1574 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
1575 I != E; ++I) {
1576 // Insert commas as we go... the first arg doesn't get a comma
1577 if (I != F->arg_begin()) Out << ", ";
Bill Wendling94e94b32012-12-30 13:50:49 +00001578 printArgument(I, Attrs, Idx);
Chris Lattner8dcd2f12007-04-18 00:57:22 +00001579 Idx++;
1580 }
1581 } else {
1582 // Otherwise, print the types from the function type.
1583 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
1584 // Insert commas as we go... the first arg doesn't get a comma
1585 if (i) Out << ", ";
Daniel Dunbara279bc32009-09-20 02:20:51 +00001586
Chris Lattner8dcd2f12007-04-18 00:57:22 +00001587 // Output type...
Chris Lattner0f7364b2009-02-28 21:26:53 +00001588 TypePrinter.print(FT->getParamType(i), Out);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001589
Bill Wendling94e94b32012-12-30 13:50:49 +00001590 if (Attrs.hasAttributes(i+1))
1591 Out << ' ' << Attrs.getAsString(i+1);
Chris Lattner8dcd2f12007-04-18 00:57:22 +00001592 }
Reid Spencerbd5db8e2006-12-31 05:24:50 +00001593 }
Chris Lattner007377f2001-09-07 16:36:04 +00001594
1595 // Finish printing arguments...
Chris Lattner7e708292002-06-25 16:13:24 +00001596 if (FT->isVarArg()) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001597 if (FT->getNumParams()) Out << ", ";
1598 Out << "..."; // Output varargs portion of signature!
Chris Lattner007377f2001-09-07 16:36:04 +00001599 }
Misha Brukman0313e0b2004-06-21 21:53:56 +00001600 Out << ')';
Rafael Espindola3971df52011-01-25 19:09:56 +00001601 if (F->hasUnnamedAddr())
1602 Out << " unnamed_addr";
Bill Wendling831737d2012-12-30 10:32:01 +00001603 if (Attrs.hasAttributes(AttributeSet::FunctionIndex))
1604 Out << ' ' << Attrs.getAsString(AttributeSet::FunctionIndex);
Chris Lattner8fff1262010-07-07 23:16:37 +00001605 if (F->hasSection()) {
1606 Out << " section \"";
1607 PrintEscapedString(F->getSection(), Out);
1608 Out << '"';
1609 }
Chris Lattner30caa282005-11-06 06:48:53 +00001610 if (F->getAlignment())
1611 Out << " align " << F->getAlignment();
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001612 if (F->hasGC())
1613 Out << " gc \"" << F->getGC() << '"';
Reid Spencer5cbf9852007-01-30 20:08:39 +00001614 if (F->isDeclaration()) {
Chris Lattner91fb4072010-09-02 22:52:10 +00001615 Out << '\n';
Chris Lattner03e2acb2002-05-06 03:00:40 +00001616 } else {
Chris Lattner91fb4072010-09-02 22:52:10 +00001617 Out << " {";
1618 // Output all of the function's basic blocks.
Chris Lattner7e708292002-06-25 16:13:24 +00001619 for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)
1620 printBasicBlock(I);
Chris Lattner007377f2001-09-07 16:36:04 +00001621
Misha Brukman0313e0b2004-06-21 21:53:56 +00001622 Out << "}\n";
Chris Lattner007377f2001-09-07 16:36:04 +00001623 }
1624
Reid Spencer0d1b77e2004-05-26 07:18:52 +00001625 Machine.purgeFunction();
Chris Lattner00950542001-06-06 20:29:01 +00001626}
1627
Misha Brukmanab5c6002004-03-02 00:22:19 +00001628/// printArgument - This member is called for every argument that is passed into
1629/// the function. Simply print it out
1630///
Daniel Dunbara279bc32009-09-20 02:20:51 +00001631void AssemblyWriter::printArgument(const Argument *Arg,
Bill Wendling94e94b32012-12-30 13:50:49 +00001632 AttributeSet Attrs, unsigned Idx) {
Chris Lattner00950542001-06-06 20:29:01 +00001633 // Output type...
Chris Lattner0f7364b2009-02-28 21:26:53 +00001634 TypePrinter.print(Arg->getType(), Out);
Misha Brukmanfd939082005-04-21 23:48:37 +00001635
Duncan Sandsdc024672007-11-27 13:23:08 +00001636 // Output parameter attributes list
Bill Wendling94e94b32012-12-30 13:50:49 +00001637 if (Attrs.hasAttributes(Idx))
1638 Out << ' ' << Attrs.getAsString(Idx);
Reid Spencerbd5db8e2006-12-31 05:24:50 +00001639
Chris Lattner00950542001-06-06 20:29:01 +00001640 // Output name, if available...
Chris Lattnerc97536e2008-08-17 04:40:13 +00001641 if (Arg->hasName()) {
1642 Out << ' ';
1643 PrintLLVMName(Out, Arg);
1644 }
Chris Lattner00950542001-06-06 20:29:01 +00001645}
1646
Misha Brukmanab5c6002004-03-02 00:22:19 +00001647/// printBasicBlock - This member is called for each basic block in a method.
1648///
Chris Lattnerc1824992001-10-29 16:05:51 +00001649void AssemblyWriter::printBasicBlock(const BasicBlock *BB) {
Nick Lewycky280a6e62008-04-25 16:53:59 +00001650 if (BB->hasName()) { // Print out the label if it exists...
Chris Lattnerc97536e2008-08-17 04:40:13 +00001651 Out << "\n";
Daniel Dunbar03d76512009-07-25 23:55:21 +00001652 PrintLLVMName(Out, BB->getName(), LabelPrefix);
Chris Lattnerc97536e2008-08-17 04:40:13 +00001653 Out << ':';
Nick Lewycky280a6e62008-04-25 16:53:59 +00001654 } else if (!BB->use_empty()) { // Don't print block # of no uses...
Bill Wendling5d7a5a42011-04-10 23:18:04 +00001655 Out << "\n; <label>:";
Chris Lattner22379bc2007-01-11 03:54:27 +00001656 int Slot = Machine.getLocalSlot(BB);
Chris Lattner69566452004-06-09 19:41:19 +00001657 if (Slot != -1)
Misha Brukman0313e0b2004-06-21 21:53:56 +00001658 Out << Slot;
Chris Lattner69566452004-06-09 19:41:19 +00001659 else
Misha Brukman0313e0b2004-06-21 21:53:56 +00001660 Out << "<badref>";
Chris Lattner061269b2002-10-02 19:38:55 +00001661 }
Chris Lattner4e4d8622003-11-20 00:09:43 +00001662
Dan Gohman683e9222009-08-12 17:23:50 +00001663 if (BB->getParent() == 0) {
Chris Lattner8f4b1ec2009-08-17 15:48:08 +00001664 Out.PadToColumn(50);
Dan Gohman683e9222009-08-12 17:23:50 +00001665 Out << "; Error: Block without parent!";
1666 } else if (BB != &BB->getParent()->getEntryBlock()) { // Not the entry block?
Chris Lattner91fb4072010-09-02 22:52:10 +00001667 // Output predecessors for the block.
Chris Lattner8f4b1ec2009-08-17 15:48:08 +00001668 Out.PadToColumn(50);
Dan Gohman683e9222009-08-12 17:23:50 +00001669 Out << ";";
Gabor Greif44424642010-03-25 23:25:28 +00001670 const_pred_iterator PI = pred_begin(BB), PE = pred_end(BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001671
Chris Lattnereb411292008-04-22 02:45:44 +00001672 if (PI == PE) {
1673 Out << " No predecessors!";
1674 } else {
Dan Gohman8dae1382008-09-14 17:21:12 +00001675 Out << " preds = ";
Chris Lattnereb411292008-04-22 02:45:44 +00001676 writeOperand(*PI, false);
1677 for (++PI; PI != PE; ++PI) {
Dan Gohman8dae1382008-09-14 17:21:12 +00001678 Out << ", ";
Chris Lattner2fcfdb72006-12-06 06:24:27 +00001679 writeOperand(*PI, false);
Chris Lattner40efcec2003-11-16 22:59:57 +00001680 }
Chris Lattner061269b2002-10-02 19:38:55 +00001681 }
Chris Lattner00950542001-06-06 20:29:01 +00001682 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001683
Chris Lattnereb411292008-04-22 02:45:44 +00001684 Out << "\n";
Chris Lattner00950542001-06-06 20:29:01 +00001685
Misha Brukman0313e0b2004-06-21 21:53:56 +00001686 if (AnnotationWriter) AnnotationWriter->emitBasicBlockStartAnnot(BB, Out);
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001687
Chris Lattner007377f2001-09-07 16:36:04 +00001688 // Output all of the instructions in the basic block...
Dan Gohmanbeca6892009-07-13 18:27:59 +00001689 for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
Chris Lattner7e708292002-06-25 16:13:24 +00001690 printInstruction(*I);
Dan Gohmanbeca6892009-07-13 18:27:59 +00001691 Out << '\n';
1692 }
Chris Lattner9f717ef2004-03-08 18:51:45 +00001693
Misha Brukman0313e0b2004-06-21 21:53:56 +00001694 if (AnnotationWriter) AnnotationWriter->emitBasicBlockEndAnnot(BB, Out);
Chris Lattner00950542001-06-06 20:29:01 +00001695}
1696
Misha Brukmanab5c6002004-03-02 00:22:19 +00001697/// printInfoComment - Print a little comment after the instruction indicating
1698/// which slot it occupies.
1699///
Chris Lattner7e708292002-06-25 16:13:24 +00001700void AssemblyWriter::printInfoComment(const Value &V) {
Dan Gohman7a5666e2010-02-10 20:41:46 +00001701 if (AnnotationWriter) {
1702 AnnotationWriter->printInfoComment(V, Out);
1703 return;
1704 }
Chris Lattnere02fa852001-10-13 06:42:36 +00001705}
1706
Reid Spencer3a9ec242006-08-28 01:02:49 +00001707// This member is called for each Instruction in a function..
Chris Lattner7e708292002-06-25 16:13:24 +00001708void AssemblyWriter::printInstruction(const Instruction &I) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001709 if (AnnotationWriter) AnnotationWriter->emitInstructionAnnot(&I, Out);
Chris Lattner95e5a2c2003-10-30 23:41:03 +00001710
Dan Gohman3845e502009-08-12 23:32:33 +00001711 // Print out indentation for an instruction.
Dan Gohman01889ca2009-08-13 01:41:52 +00001712 Out << " ";
Chris Lattner00950542001-06-06 20:29:01 +00001713
1714 // Print out name if it exists...
Chris Lattnerc97536e2008-08-17 04:40:13 +00001715 if (I.hasName()) {
1716 PrintLLVMName(Out, &I);
1717 Out << " = ";
Chris Lattner4ee93c42009-12-29 07:25:48 +00001718 } else if (!I.getType()->isVoidTy()) {
Chris Lattner828db8a2008-08-29 17:19:30 +00001719 // Print out the def slot taken.
1720 int SlotNum = Machine.getLocalSlot(&I);
1721 if (SlotNum == -1)
1722 Out << "<badref> = ";
1723 else
1724 Out << '%' << SlotNum << " = ";
Chris Lattnerc97536e2008-08-17 04:40:13 +00001725 }
Andrew Trick18801ec2011-09-30 19:48:58 +00001726
Eli Friedman21006d42011-08-09 23:02:53 +00001727 if (isa<CallInst>(I) && cast<CallInst>(I).isTailCall())
Chris Lattnerddb6db42005-05-06 05:51:46 +00001728 Out << "tail ";
Chris Lattnere5e475e2003-09-08 17:45:59 +00001729
Chris Lattner00950542001-06-06 20:29:01 +00001730 // Print out the opcode...
Misha Brukman0313e0b2004-06-21 21:53:56 +00001731 Out << I.getOpcodeName();
Chris Lattner00950542001-06-06 20:29:01 +00001732
Eli Friedmanf03bb262011-08-12 22:50:01 +00001733 // If this is an atomic load or store, print out the atomic marker.
1734 if ((isa<LoadInst>(I) && cast<LoadInst>(I).isAtomic()) ||
1735 (isa<StoreInst>(I) && cast<StoreInst>(I).isAtomic()))
1736 Out << " atomic";
1737
1738 // If this is a volatile operation, print out the volatile marker.
1739 if ((isa<LoadInst>(I) && cast<LoadInst>(I).isVolatile()) ||
1740 (isa<StoreInst>(I) && cast<StoreInst>(I).isVolatile()) ||
1741 (isa<AtomicCmpXchgInst>(I) && cast<AtomicCmpXchgInst>(I).isVolatile()) ||
1742 (isa<AtomicRMWInst>(I) && cast<AtomicRMWInst>(I).isVolatile()))
1743 Out << " volatile";
1744
Dan Gohman59858cf2009-07-27 16:11:46 +00001745 // Print out optimization information.
1746 WriteOptimizationInfo(Out, &I);
1747
Reid Spencer74f16422006-12-03 06:27:29 +00001748 // Print out the compare instruction predicates
Nate Begemanac80ade2008-05-12 19:01:56 +00001749 if (const CmpInst *CI = dyn_cast<CmpInst>(&I))
Chris Lattnerab49ee72008-08-23 22:52:27 +00001750 Out << ' ' << getPredicateText(CI->getPredicate());
Reid Spencer74f16422006-12-03 06:27:29 +00001751
Eli Friedmanff030482011-07-28 21:48:00 +00001752 // Print out the atomicrmw operation
1753 if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(&I))
1754 writeAtomicRMWOperation(Out, RMWI->getOperation());
1755
Chris Lattner00950542001-06-06 20:29:01 +00001756 // Print out the type of the operands...
Chris Lattner7e708292002-06-25 16:13:24 +00001757 const Value *Operand = I.getNumOperands() ? I.getOperand(0) : 0;
Chris Lattner00950542001-06-06 20:29:01 +00001758
1759 // Special case conditional branches to swizzle the condition out to the front
Gabor Greifccd27fb2009-02-09 15:45:06 +00001760 if (isa<BranchInst>(I) && cast<BranchInst>(I).isConditional()) {
1761 BranchInst &BI(cast<BranchInst>(I));
Dan Gohman8dae1382008-09-14 17:21:12 +00001762 Out << ' ';
Gabor Greifccd27fb2009-02-09 15:45:06 +00001763 writeOperand(BI.getCondition(), true);
Dan Gohman8dae1382008-09-14 17:21:12 +00001764 Out << ", ";
Gabor Greifccd27fb2009-02-09 15:45:06 +00001765 writeOperand(BI.getSuccessor(0), true);
Dan Gohman8dae1382008-09-14 17:21:12 +00001766 Out << ", ";
Gabor Greifccd27fb2009-02-09 15:45:06 +00001767 writeOperand(BI.getSuccessor(1), true);
Chris Lattner00950542001-06-06 20:29:01 +00001768
Chris Lattner94dc1f22002-04-13 18:34:38 +00001769 } else if (isa<SwitchInst>(I)) {
Eli Friedmanbb5a7442011-09-29 20:21:17 +00001770 SwitchInst& SI(cast<SwitchInst>(I));
Chris Lattnerf9be95f2009-10-27 19:13:16 +00001771 // Special case switch instruction to get formatting nice and correct.
Dan Gohman8dae1382008-09-14 17:21:12 +00001772 Out << ' ';
Eli Friedmanbb5a7442011-09-29 20:21:17 +00001773 writeOperand(SI.getCondition(), true);
Dan Gohman8dae1382008-09-14 17:21:12 +00001774 Out << ", ";
Eli Friedmanbb5a7442011-09-29 20:21:17 +00001775 writeOperand(SI.getDefaultDest(), true);
Chris Lattnerab49ee72008-08-23 22:52:27 +00001776 Out << " [";
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +00001777 for (SwitchInst::CaseIt i = SI.case_begin(), e = SI.case_end();
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00001778 i != e; ++i) {
Dan Gohman01889ca2009-08-13 01:41:52 +00001779 Out << "\n ";
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00001780 writeOperand(i.getCaseValue(), true);
Dan Gohman8dae1382008-09-14 17:21:12 +00001781 Out << ", ";
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +00001782 writeOperand(i.getCaseSuccessor(), true);
Chris Lattner00950542001-06-06 20:29:01 +00001783 }
Dan Gohman01889ca2009-08-13 01:41:52 +00001784 Out << "\n ]";
Chris Lattnerab21db72009-10-28 00:19:10 +00001785 } else if (isa<IndirectBrInst>(I)) {
1786 // Special case indirectbr instruction to get formatting nice and correct.
Chris Lattnerf9be95f2009-10-27 19:13:16 +00001787 Out << ' ';
1788 writeOperand(Operand, true);
Dan Gohman0ed1f422009-10-30 02:01:10 +00001789 Out << ", [";
Andrew Trick18801ec2011-09-30 19:48:58 +00001790
Chris Lattnerf9be95f2009-10-27 19:13:16 +00001791 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
1792 if (i != 1)
1793 Out << ", ";
1794 writeOperand(I.getOperand(i), true);
1795 }
1796 Out << ']';
Jay Foadc1371202011-06-20 14:18:48 +00001797 } else if (const PHINode *PN = dyn_cast<PHINode>(&I)) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001798 Out << ' ';
Chris Lattner0f7364b2009-02-28 21:26:53 +00001799 TypePrinter.print(I.getType(), Out);
Misha Brukman0313e0b2004-06-21 21:53:56 +00001800 Out << ' ';
Chris Lattner00950542001-06-06 20:29:01 +00001801
Jay Foadc1371202011-06-20 14:18:48 +00001802 for (unsigned op = 0, Eop = PN->getNumIncomingValues(); op < Eop; ++op) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001803 if (op) Out << ", ";
Dan Gohman8dae1382008-09-14 17:21:12 +00001804 Out << "[ ";
Jay Foadc1371202011-06-20 14:18:48 +00001805 writeOperand(PN->getIncomingValue(op), false); Out << ", ";
1806 writeOperand(PN->getIncomingBlock(op), false); Out << " ]";
Chris Lattnerc24d2082001-06-11 15:04:20 +00001807 }
Dan Gohman995be7d2008-05-31 19:12:39 +00001808 } else if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(&I)) {
Dan Gohman8dae1382008-09-14 17:21:12 +00001809 Out << ' ';
Dan Gohman995be7d2008-05-31 19:12:39 +00001810 writeOperand(I.getOperand(0), true);
1811 for (const unsigned *i = EVI->idx_begin(), *e = EVI->idx_end(); i != e; ++i)
1812 Out << ", " << *i;
1813 } else if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(&I)) {
Dan Gohman8dae1382008-09-14 17:21:12 +00001814 Out << ' ';
1815 writeOperand(I.getOperand(0), true); Out << ", ";
Dan Gohman995be7d2008-05-31 19:12:39 +00001816 writeOperand(I.getOperand(1), true);
1817 for (const unsigned *i = IVI->idx_begin(), *e = IVI->idx_end(); i != e; ++i)
1818 Out << ", " << *i;
Bill Wendlinge6e88262011-08-12 20:24:12 +00001819 } else if (const LandingPadInst *LPI = dyn_cast<LandingPadInst>(&I)) {
1820 Out << ' ';
1821 TypePrinter.print(I.getType(), Out);
1822 Out << " personality ";
1823 writeOperand(I.getOperand(0), true); Out << '\n';
1824
1825 if (LPI->isCleanup())
1826 Out << " cleanup";
1827
1828 for (unsigned i = 0, e = LPI->getNumClauses(); i != e; ++i) {
1829 if (i != 0 || LPI->isCleanup()) Out << "\n";
1830 if (LPI->isCatch(i))
1831 Out << " catch ";
1832 else
1833 Out << " filter ";
1834
1835 writeOperand(LPI->getClause(i), true);
1836 }
Devang Patel57ef4f42008-02-23 00:35:18 +00001837 } else if (isa<ReturnInst>(I) && !Operand) {
1838 Out << " void";
Chris Lattnerd5118982005-05-06 20:26:43 +00001839 } else if (const CallInst *CI = dyn_cast<CallInst>(&I)) {
1840 // Print the calling convention being used.
Micah Villmowd3766df2012-09-13 15:11:12 +00001841 if (CI->getCallingConv() != CallingConv::C) {
1842 Out << " ";
1843 PrintCallingConv(CI->getCallingConv(), Out);
Chris Lattnerd5118982005-05-06 20:26:43 +00001844 }
1845
Gabor Greif7bbdf0c2010-06-23 13:09:06 +00001846 Operand = CI->getCalledValue();
Chris Lattner1afcace2011-07-09 17:41:24 +00001847 PointerType *PTy = cast<PointerType>(Operand->getType());
1848 FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1849 Type *RetTy = FTy->getReturnType();
Bill Wendling99faa3b2012-12-07 23:16:57 +00001850 const AttributeSet &PAL = CI->getAttributes();
Chris Lattner268de042001-11-06 21:28:12 +00001851
Bill Wendling1b0c54f2013-01-18 21:53:16 +00001852 if (PAL.hasAttributes(AttributeSet::ReturnIndex))
1853 Out << ' ' << PAL.getAsString(AttributeSet::ReturnIndex);
Devang Patel652203f2008-09-29 20:49:50 +00001854
Chris Lattner7a012292003-08-05 15:34:45 +00001855 // If possible, print out the short form of the call instruction. We can
Chris Lattnerb5794002002-04-07 22:49:37 +00001856 // only do this if the first argument is a pointer to a nonvararg function,
Chris Lattner7a012292003-08-05 15:34:45 +00001857 // and if the return type is not a pointer to a function.
Chris Lattner268de042001-11-06 21:28:12 +00001858 //
Dan Gohman8dae1382008-09-14 17:21:12 +00001859 Out << ' ';
Chris Lattner7a012292003-08-05 15:34:45 +00001860 if (!FTy->isVarArg() &&
Duncan Sands1df98592010-02-16 11:11:14 +00001861 (!RetTy->isPointerTy() ||
1862 !cast<PointerType>(RetTy)->getElementType()->isFunctionTy())) {
Chris Lattner0f7364b2009-02-28 21:26:53 +00001863 TypePrinter.print(RetTy, Out);
Dan Gohman8dae1382008-09-14 17:21:12 +00001864 Out << ' ';
Chris Lattner268de042001-11-06 21:28:12 +00001865 writeOperand(Operand, false);
1866 } else {
1867 writeOperand(Operand, true);
1868 }
Misha Brukman0313e0b2004-06-21 21:53:56 +00001869 Out << '(';
Gabor Greif7bbdf0c2010-06-23 13:09:06 +00001870 for (unsigned op = 0, Eop = CI->getNumArgOperands(); op < Eop; ++op) {
1871 if (op > 0)
Dan Gohman8dae1382008-09-14 17:21:12 +00001872 Out << ", ";
Bill Wendling94e94b32012-12-30 13:50:49 +00001873 writeParamOperand(CI->getArgOperand(op), PAL, op + 1);
Chris Lattner00950542001-06-06 20:29:01 +00001874 }
Dan Gohman8dae1382008-09-14 17:21:12 +00001875 Out << ')';
Bill Wendling831737d2012-12-30 10:32:01 +00001876 if (PAL.hasAttributes(AttributeSet::FunctionIndex))
1877 Out << ' ' << PAL.getAsString(AttributeSet::FunctionIndex);
Chris Lattner7e708292002-06-25 16:13:24 +00001878 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(&I)) {
Gabor Greifc9f75002010-03-24 13:21:49 +00001879 Operand = II->getCalledValue();
Chris Lattner1afcace2011-07-09 17:41:24 +00001880 PointerType *PTy = cast<PointerType>(Operand->getType());
1881 FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1882 Type *RetTy = FTy->getReturnType();
Bill Wendling99faa3b2012-12-07 23:16:57 +00001883 const AttributeSet &PAL = II->getAttributes();
Chris Lattner7a012292003-08-05 15:34:45 +00001884
Chris Lattnerd5118982005-05-06 20:26:43 +00001885 // Print the calling convention being used.
Micah Villmowd3766df2012-09-13 15:11:12 +00001886 if (II->getCallingConv() != CallingConv::C) {
1887 Out << " ";
1888 PrintCallingConv(II->getCallingConv(), Out);
Chris Lattnerd5118982005-05-06 20:26:43 +00001889 }
1890
Bill Wendling1b0c54f2013-01-18 21:53:16 +00001891 if (PAL.hasAttributes(AttributeSet::ReturnIndex))
1892 Out << ' ' << PAL.getAsString(AttributeSet::ReturnIndex);
Devang Patel652203f2008-09-29 20:49:50 +00001893
Chris Lattner7a012292003-08-05 15:34:45 +00001894 // If possible, print out the short form of the invoke instruction. We can
1895 // only do this if the first argument is a pointer to a nonvararg function,
1896 // and if the return type is not a pointer to a function.
1897 //
Dan Gohman2b6c3d92008-10-15 18:02:08 +00001898 Out << ' ';
Chris Lattner7a012292003-08-05 15:34:45 +00001899 if (!FTy->isVarArg() &&
Duncan Sands1df98592010-02-16 11:11:14 +00001900 (!RetTy->isPointerTy() ||
1901 !cast<PointerType>(RetTy)->getElementType()->isFunctionTy())) {
Chris Lattner0f7364b2009-02-28 21:26:53 +00001902 TypePrinter.print(RetTy, Out);
Dan Gohman2b6c3d92008-10-15 18:02:08 +00001903 Out << ' ';
Chris Lattner7a012292003-08-05 15:34:45 +00001904 writeOperand(Operand, false);
1905 } else {
1906 writeOperand(Operand, true);
1907 }
Misha Brukman0313e0b2004-06-21 21:53:56 +00001908 Out << '(';
Gabor Greif7bbdf0c2010-06-23 13:09:06 +00001909 for (unsigned op = 0, Eop = II->getNumArgOperands(); op < Eop; ++op) {
Gabor Greifc9f75002010-03-24 13:21:49 +00001910 if (op)
Dan Gohman8dae1382008-09-14 17:21:12 +00001911 Out << ", ";
Bill Wendling94e94b32012-12-30 13:50:49 +00001912 writeParamOperand(II->getArgOperand(op), PAL, op + 1);
Chris Lattnere02fa852001-10-13 06:42:36 +00001913 }
1914
Dan Gohman8dae1382008-09-14 17:21:12 +00001915 Out << ')';
Bill Wendling831737d2012-12-30 10:32:01 +00001916 if (PAL.hasAttributes(AttributeSet::FunctionIndex))
1917 Out << ' ' << PAL.getAsString(AttributeSet::FunctionIndex);
Devang Patel19c87462008-09-26 22:53:05 +00001918
Dan Gohman01889ca2009-08-13 01:41:52 +00001919 Out << "\n to ";
Chris Lattnere02fa852001-10-13 06:42:36 +00001920 writeOperand(II->getNormalDest(), true);
Dan Gohman8dae1382008-09-14 17:21:12 +00001921 Out << " unwind ";
Chris Lattneraeb2a1d2004-02-08 21:44:31 +00001922 writeOperand(II->getUnwindDest(), true);
Chris Lattnere02fa852001-10-13 06:42:36 +00001923
Victor Hernandez7b929da2009-10-23 21:09:37 +00001924 } else if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001925 Out << ' ';
Chris Lattner0f7364b2009-02-28 21:26:53 +00001926 TypePrinter.print(AI->getType()->getElementType(), Out);
Dan Gohman69bff072009-07-31 18:23:24 +00001927 if (!AI->getArraySize() || AI->isArrayAllocation()) {
Dan Gohman8dae1382008-09-14 17:21:12 +00001928 Out << ", ";
Chris Lattner94dc1f22002-04-13 18:34:38 +00001929 writeOperand(AI->getArraySize(), true);
Chris Lattner00950542001-06-06 20:29:01 +00001930 }
Nate Begeman14b05292005-11-05 09:21:28 +00001931 if (AI->getAlignment()) {
Chris Lattner9fad0b92005-11-05 21:20:34 +00001932 Out << ", align " << AI->getAlignment();
Nate Begeman14b05292005-11-05 09:21:28 +00001933 }
Chris Lattnere02fa852001-10-13 06:42:36 +00001934 } else if (isa<CastInst>(I)) {
Dan Gohman8dae1382008-09-14 17:21:12 +00001935 if (Operand) {
1936 Out << ' ';
1937 writeOperand(Operand, true); // Work with broken code
1938 }
Misha Brukman0313e0b2004-06-21 21:53:56 +00001939 Out << " to ";
Chris Lattner0f7364b2009-02-28 21:26:53 +00001940 TypePrinter.print(I.getType(), Out);
Chris Lattner4d45bd02003-10-18 05:57:43 +00001941 } else if (isa<VAArgInst>(I)) {
Dan Gohman8dae1382008-09-14 17:21:12 +00001942 if (Operand) {
1943 Out << ' ';
1944 writeOperand(Operand, true); // Work with broken code
1945 }
Misha Brukman0313e0b2004-06-21 21:53:56 +00001946 Out << ", ";
Chris Lattner0f7364b2009-02-28 21:26:53 +00001947 TypePrinter.print(I.getType(), Out);
1948 } else if (Operand) { // Print the normal way.
Chris Lattner00950542001-06-06 20:29:01 +00001949
Misha Brukmanfd939082005-04-21 23:48:37 +00001950 // PrintAllTypes - Instructions who have operands of all the same type
Chris Lattner00950542001-06-06 20:29:01 +00001951 // omit the type from all but the first operand. If the instruction has
1952 // different type operands (for example br), then they are all printed.
1953 bool PrintAllTypes = false;
Chris Lattner1afcace2011-07-09 17:41:24 +00001954 Type *TheType = Operand->getType();
Chris Lattner00950542001-06-06 20:29:01 +00001955
Reid Spencerebe57e32007-02-02 13:54:55 +00001956 // Select, Store and ShuffleVector always print all types.
Devang Patel64947682008-03-04 22:05:14 +00001957 if (isa<SelectInst>(I) || isa<StoreInst>(I) || isa<ShuffleVectorInst>(I)
1958 || isa<ReturnInst>(I)) {
Chris Lattnerffd9bf42003-04-16 20:20:02 +00001959 PrintAllTypes = true;
1960 } else {
1961 for (unsigned i = 1, E = I.getNumOperands(); i != E; ++i) {
1962 Operand = I.getOperand(i);
Nuno Lopes6ad2b2a2009-01-15 18:40:57 +00001963 // note that Operand shouldn't be null, but the test helps make dump()
1964 // more tolerant of malformed IR
Nuno Lopesa8c78a92009-01-14 17:51:41 +00001965 if (Operand && Operand->getType() != TheType) {
Chris Lattnerffd9bf42003-04-16 20:20:02 +00001966 PrintAllTypes = true; // We have differing types! Print them all!
1967 break;
1968 }
Chris Lattner00950542001-06-06 20:29:01 +00001969 }
1970 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001971
Chris Lattnerc1824992001-10-29 16:05:51 +00001972 if (!PrintAllTypes) {
Misha Brukman0313e0b2004-06-21 21:53:56 +00001973 Out << ' ';
Chris Lattner0f7364b2009-02-28 21:26:53 +00001974 TypePrinter.print(TheType, Out);
Chris Lattnerc1824992001-10-29 16:05:51 +00001975 }
Chris Lattner00950542001-06-06 20:29:01 +00001976
Dan Gohman8dae1382008-09-14 17:21:12 +00001977 Out << ' ';
Chris Lattner7e708292002-06-25 16:13:24 +00001978 for (unsigned i = 0, E = I.getNumOperands(); i != E; ++i) {
Dan Gohman8dae1382008-09-14 17:21:12 +00001979 if (i) Out << ", ";
Chris Lattner7e708292002-06-25 16:13:24 +00001980 writeOperand(I.getOperand(i), PrintAllTypes);
Chris Lattner00950542001-06-06 20:29:01 +00001981 }
1982 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001983
Eli Friedman21006d42011-08-09 23:02:53 +00001984 // Print atomic ordering/alignment for memory operations
1985 if (const LoadInst *LI = dyn_cast<LoadInst>(&I)) {
1986 if (LI->isAtomic())
1987 writeAtomic(LI->getOrdering(), LI->getSynchScope());
1988 if (LI->getAlignment())
1989 Out << ", align " << LI->getAlignment();
1990 } else if (const StoreInst *SI = dyn_cast<StoreInst>(&I)) {
1991 if (SI->isAtomic())
1992 writeAtomic(SI->getOrdering(), SI->getSynchScope());
1993 if (SI->getAlignment())
1994 Out << ", align " << SI->getAlignment();
Eli Friedmanff030482011-07-28 21:48:00 +00001995 } else if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(&I)) {
1996 writeAtomic(CXI->getOrdering(), CXI->getSynchScope());
1997 } else if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(&I)) {
1998 writeAtomic(RMWI->getOrdering(), RMWI->getSynchScope());
Eli Friedman47f35132011-07-25 23:16:38 +00001999 } else if (const FenceInst *FI = dyn_cast<FenceInst>(&I)) {
2000 writeAtomic(FI->getOrdering(), FI->getSynchScope());
Christopher Lamb43c7f372007-04-22 19:24:39 +00002001 }
Chris Lattner00950542001-06-06 20:29:01 +00002002
Chris Lattner7d05c462009-12-28 20:10:43 +00002003 // Print Metadata info.
Nick Lewyckyfa0c54e2010-02-25 06:53:04 +00002004 SmallVector<std::pair<unsigned, MDNode*>, 4> InstMD;
2005 I.getAllMetadata(InstMD);
Erick Tryzelaarf3d5c912010-03-02 05:32:52 +00002006 if (!InstMD.empty()) {
2007 SmallVector<StringRef, 8> MDNames;
2008 I.getType()->getContext().getMDKindNames(MDNames);
2009 for (unsigned i = 0, e = InstMD.size(); i != e; ++i) {
2010 unsigned Kind = InstMD[i].first;
2011 if (Kind < MDNames.size()) {
2012 Out << ", !" << MDNames[Kind];
2013 } else {
2014 Out << ", !<unknown kind #" << Kind << ">";
2015 }
Dan Gohman3bdfbf52010-07-20 23:55:01 +00002016 Out << ' ';
2017 WriteAsOperandInternal(Out, InstMD[i].second, &TypePrinter, &Machine,
2018 TheModule);
Nick Lewyckyfa0c54e2010-02-25 06:53:04 +00002019 }
Devang Patel7f93f4d2009-10-07 16:37:55 +00002020 }
Chris Lattnere02fa852001-10-13 06:42:36 +00002021 printInfoComment(I);
Chris Lattner00950542001-06-06 20:29:01 +00002022}
2023
Chris Lattner6e6b1802009-12-31 02:13:35 +00002024static void WriteMDNodeComment(const MDNode *Node,
Duncan Sands34727662010-07-12 08:16:59 +00002025 formatted_raw_ostream &Out) {
Chris Lattner6e6b1802009-12-31 02:13:35 +00002026 if (Node->getNumOperands() < 1)
2027 return;
Bill Wendling58a6cf22012-06-28 00:41:44 +00002028
2029 Value *Op = Node->getOperand(0);
2030 if (!Op || !isa<ConstantInt>(Op) || cast<ConstantInt>(Op)->getBitWidth() < 32)
Chris Lattner6e6b1802009-12-31 02:13:35 +00002031 return;
Andrew Trick18801ec2011-09-30 19:48:58 +00002032
Bill Wendling58a6cf22012-06-28 00:41:44 +00002033 DIDescriptor Desc(Node);
2034 if (Desc.getVersion() < LLVMDebugVersion11)
2035 return;
2036
2037 unsigned Tag = Desc.getTag();
Chris Lattner6e6b1802009-12-31 02:13:35 +00002038 Out.PadToColumn(50);
Bill Wendling86b032b2012-07-03 20:01:02 +00002039 if (dwarf::TagString(Tag)) {
2040 Out << "; ";
2041 Desc.print(Out);
2042 } else if (Tag == dwarf::DW_TAG_user_base) {
Chris Lattner6e6b1802009-12-31 02:13:35 +00002043 Out << "; [ DW_TAG_user_base ]";
Bill Wendling86b032b2012-07-03 20:01:02 +00002044 }
Chris Lattner6e6b1802009-12-31 02:13:35 +00002045}
2046
2047void AssemblyWriter::writeAllMDNodes() {
2048 SmallVector<const MDNode *, 16> Nodes;
Chris Lattner307c9892009-12-31 02:20:11 +00002049 Nodes.resize(Machine.mdn_size());
2050 for (SlotTracker::mdn_iterator I = Machine.mdn_begin(), E = Machine.mdn_end();
2051 I != E; ++I)
Chris Lattner6e6b1802009-12-31 02:13:35 +00002052 Nodes[I->second] = cast<MDNode>(I->first);
Andrew Trick18801ec2011-09-30 19:48:58 +00002053
Chris Lattner6e6b1802009-12-31 02:13:35 +00002054 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
2055 Out << '!' << i << " = metadata ";
Chris Lattner2b4b1e22009-12-31 02:27:30 +00002056 printMDNodeBody(Nodes[i]);
Chris Lattner6e6b1802009-12-31 02:13:35 +00002057 }
2058}
2059
2060void AssemblyWriter::printMDNodeBody(const MDNode *Node) {
Dan Gohman3bdfbf52010-07-20 23:55:01 +00002061 WriteMDNodeBodyInternal(Out, Node, &TypePrinter, &Machine, TheModule);
Chris Lattner6e6b1802009-12-31 02:13:35 +00002062 WriteMDNodeComment(Node, Out);
2063 Out << "\n";
2064}
Chris Lattner00950542001-06-06 20:29:01 +00002065
2066//===----------------------------------------------------------------------===//
2067// External Interface declarations
2068//===----------------------------------------------------------------------===//
2069
Dan Gohman683e9222009-08-12 17:23:50 +00002070void Module::print(raw_ostream &ROS, AssemblyAnnotationWriter *AAW) const {
Chris Lattner0d9574a2008-08-19 04:26:57 +00002071 SlotTracker SlotTable(this);
Dan Gohman683e9222009-08-12 17:23:50 +00002072 formatted_raw_ostream OS(ROS);
Chris Lattner944fac72008-08-23 22:23:09 +00002073 AssemblyWriter W(OS, SlotTable, this, AAW);
Chris Lattnerbd72b322009-12-31 02:23:35 +00002074 W.printModule(this);
Chris Lattner00950542001-06-06 20:29:01 +00002075}
2076
Dan Gohman17aa92c2010-07-21 23:38:33 +00002077void NamedMDNode::print(raw_ostream &ROS, AssemblyAnnotationWriter *AAW) const {
2078 SlotTracker SlotTable(getParent());
2079 formatted_raw_ostream OS(ROS);
2080 AssemblyWriter W(OS, SlotTable, getParent(), AAW);
2081 W.printNamedMDNode(this);
2082}
2083
Chris Lattner6d4306e2009-02-28 21:11:05 +00002084void Type::print(raw_ostream &OS) const {
2085 if (this == 0) {
2086 OS << "<null Type>";
2087 return;
2088 }
Chris Lattner1afcace2011-07-09 17:41:24 +00002089 TypePrinting TP;
2090 TP.print(const_cast<Type*>(this), OS);
Andrew Trick18801ec2011-09-30 19:48:58 +00002091
Chris Lattner1afcace2011-07-09 17:41:24 +00002092 // If the type is a named struct type, print the body as well.
2093 if (StructType *STy = dyn_cast<StructType>(const_cast<Type*>(this)))
Chris Lattnerc4d0e9f2011-08-12 18:07:07 +00002094 if (!STy->isLiteral()) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002095 OS << " = type ";
2096 TP.printStructBody(STy, OS);
2097 }
Chris Lattner75cf7cf2002-04-08 22:03:40 +00002098}
2099
Dan Gohman683e9222009-08-12 17:23:50 +00002100void Value::print(raw_ostream &ROS, AssemblyAnnotationWriter *AAW) const {
Chris Lattner944fac72008-08-23 22:23:09 +00002101 if (this == 0) {
Dan Gohman1220e102009-08-12 20:56:03 +00002102 ROS << "printing a <null> value\n";
Chris Lattner944fac72008-08-23 22:23:09 +00002103 return;
2104 }
Dan Gohman1220e102009-08-12 20:56:03 +00002105 formatted_raw_ostream OS(ROS);
Chris Lattner944fac72008-08-23 22:23:09 +00002106 if (const Instruction *I = dyn_cast<Instruction>(this)) {
2107 const Function *F = I->getParent() ? I->getParent()->getParent() : 0;
2108 SlotTracker SlotTable(F);
Chris Lattnerdbe85bf2009-12-31 08:23:09 +00002109 AssemblyWriter W(OS, SlotTable, getModuleFromVal(I), AAW);
Chris Lattnerbd72b322009-12-31 02:23:35 +00002110 W.printInstruction(*I);
Chris Lattner944fac72008-08-23 22:23:09 +00002111 } else if (const BasicBlock *BB = dyn_cast<BasicBlock>(this)) {
2112 SlotTracker SlotTable(BB->getParent());
Chris Lattner6e6b1802009-12-31 02:13:35 +00002113 AssemblyWriter W(OS, SlotTable, getModuleFromVal(BB), AAW);
Chris Lattnerbd72b322009-12-31 02:23:35 +00002114 W.printBasicBlock(BB);
Chris Lattner944fac72008-08-23 22:23:09 +00002115 } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
2116 SlotTracker SlotTable(GV->getParent());
Dan Gohmanba0941f2009-04-20 16:10:33 +00002117 AssemblyWriter W(OS, SlotTable, GV->getParent(), AAW);
Chris Lattnerbd72b322009-12-31 02:23:35 +00002118 if (const GlobalVariable *V = dyn_cast<GlobalVariable>(GV))
2119 W.printGlobal(V);
2120 else if (const Function *F = dyn_cast<Function>(GV))
2121 W.printFunction(F);
2122 else
2123 W.printAlias(cast<GlobalAlias>(GV));
Devang Patelfcd65ae2009-07-01 20:59:15 +00002124 } else if (const MDNode *N = dyn_cast<MDNode>(this)) {
Victor Hernandez8fffff52010-01-20 04:45:57 +00002125 const Function *F = N->getFunction();
Victor Hernandez559588b2010-01-14 01:47:37 +00002126 SlotTracker SlotTable(F);
Dan Gohman79b78a42010-07-14 21:12:44 +00002127 AssemblyWriter W(OS, SlotTable, F ? F->getParent() : 0, AAW);
Chris Lattner6e6b1802009-12-31 02:13:35 +00002128 W.printMDNodeBody(N);
Chris Lattner944fac72008-08-23 22:23:09 +00002129 } else if (const Constant *C = dyn_cast<Constant>(this)) {
Chris Lattnere9fa33e2009-02-28 23:20:19 +00002130 TypePrinting TypePrinter;
Chris Lattner0f7364b2009-02-28 21:26:53 +00002131 TypePrinter.print(C->getType(), OS);
Chris Lattner6d4306e2009-02-28 21:11:05 +00002132 OS << ' ';
Dan Gohman3bdfbf52010-07-20 23:55:01 +00002133 WriteConstantInternal(OS, C, TypePrinter, 0, 0);
Chris Lattner4a3d3a52009-12-31 01:41:14 +00002134 } else if (isa<InlineAsm>(this) || isa<MDString>(this) ||
2135 isa<Argument>(this)) {
Chris Lattner944fac72008-08-23 22:23:09 +00002136 WriteAsOperand(OS, this, true, 0);
2137 } else {
Dan Gohmancd26ec52009-09-23 01:33:16 +00002138 // Otherwise we don't know what it is. Call the virtual function to
2139 // allow a subclass to print itself.
2140 printCustom(OS);
Chris Lattner944fac72008-08-23 22:23:09 +00002141 }
2142}
2143
Dan Gohmancd26ec52009-09-23 01:33:16 +00002144// Value::printCustom - subclasses should override this to implement printing.
2145void Value::printCustom(raw_ostream &OS) const {
2146 llvm_unreachable("Unknown value to print out!");
2147}
2148
Chris Lattner7059e532008-08-25 17:03:15 +00002149// Value::dump - allow easy printing of Values from the debugger.
David Greened865e022010-01-05 01:29:26 +00002150void Value::dump() const { print(dbgs()); dbgs() << '\n'; }
Reid Spencerfa452c02004-05-25 18:14:38 +00002151
Chris Lattner7059e532008-08-25 17:03:15 +00002152// Type::dump - allow easy printing of Types from the debugger.
Chris Lattner1afcace2011-07-09 17:41:24 +00002153void Type::dump() const { print(dbgs()); }
Chris Lattnerc2871372009-02-28 21:05:51 +00002154
Chris Lattner7059e532008-08-25 17:03:15 +00002155// Module::dump() - Allow printing of Modules from the debugger.
David Greened865e022010-01-05 01:29:26 +00002156void Module::dump() const { print(dbgs(), 0); }
Bill Wendlingf4374e42011-12-09 23:18:34 +00002157
2158// NamedMDNode::dump() - Allow printing of NamedMDNodes from the debugger.
2159void NamedMDNode::dump() const { print(dbgs(), 0); }