blob: e3a8cde9aacc2cfe2a960a3367b3b15d1db087e5 [file] [log] [blame]
Bill Wendlingeb907212009-05-15 01:12:28 +00001//===-- CodeGen/AsmPrinter/DwarfException.cpp - Dwarf Exception Impl ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Bill Wendling28275fd2009-09-10 06:50:01 +000010// This file contains support for writing DWARF exception info into asm files.
Bill Wendlingeb907212009-05-15 01:12:28 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "DwarfException.h"
15#include "llvm/Module.h"
Chris Lattner6d733782010-04-05 05:28:23 +000016#include "llvm/CodeGen/AsmPrinter.h"
Bill Wendlingeb907212009-05-15 01:12:28 +000017#include "llvm/CodeGen/MachineModuleInfo.h"
18#include "llvm/CodeGen/MachineFrameInfo.h"
David Greenefc4da0c2009-08-19 21:55:33 +000019#include "llvm/CodeGen/MachineFunction.h"
Bill Wendlingeb907212009-05-15 01:12:28 +000020#include "llvm/CodeGen/MachineLocation.h"
Chris Lattner8c6ed052009-09-16 01:46:41 +000021#include "llvm/MC/MCAsmInfo.h"
22#include "llvm/MC/MCContext.h"
23#include "llvm/MC/MCExpr.h"
Bill Wendling43e484f2009-09-10 01:12:47 +000024#include "llvm/MC/MCSection.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000025#include "llvm/MC/MCStreamer.h"
Chris Lattner7a2ba942010-01-16 18:37:32 +000026#include "llvm/MC/MCSymbol.h"
Chris Lattner45111d12010-01-16 21:57:06 +000027#include "llvm/Target/Mangler.h"
Bill Wendlingeb907212009-05-15 01:12:28 +000028#include "llvm/Target/TargetData.h"
29#include "llvm/Target/TargetFrameInfo.h"
Chris Lattnerd5bbb072009-08-02 01:34:32 +000030#include "llvm/Target/TargetLoweringObjectFile.h"
Chris Lattner9d1c1ad2010-04-04 18:06:11 +000031#include "llvm/Target/TargetMachine.h"
Bill Wendlingeb907212009-05-15 01:12:28 +000032#include "llvm/Target/TargetOptions.h"
Chris Lattnerd5bbb072009-08-02 01:34:32 +000033#include "llvm/Target/TargetRegisterInfo.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000034#include "llvm/Support/Dwarf.h"
Chris Lattner0ad9c912010-01-22 22:09:00 +000035#include "llvm/Support/FormattedStream.h"
Jim Grosbachc40d9f92009-09-01 18:49:12 +000036#include "llvm/ADT/SmallString.h"
Bill Wendlingeb907212009-05-15 01:12:28 +000037#include "llvm/ADT/StringExtras.h"
Bill Wendling1f8075d2010-02-09 22:49:16 +000038#include "llvm/ADT/Twine.h"
Bill Wendlingeb907212009-05-15 01:12:28 +000039using namespace llvm;
40
Chris Lattner75f50722010-04-04 07:48:20 +000041DwarfException::DwarfException(AsmPrinter *A)
Chris Lattner84ac8b72010-04-05 00:26:50 +000042 : Asm(A), MMI(Asm->MMI), shouldEmitTable(false), shouldEmitMoves(false),
Bill Wendling5f017e82010-04-07 09:28:04 +000043 shouldEmitTableModule(false), shouldEmitMovesModule(false) {}
Bill Wendlingbc0d23a2009-05-15 01:18:50 +000044
Bill Wendling5f017e82010-04-07 09:28:04 +000045DwarfException::~DwarfException() {}
Bill Wendlingbc0d23a2009-05-15 01:18:50 +000046
Bill Wendling7ccda0f2009-08-25 08:08:33 +000047/// EmitCIE - Emit a Common Information Entry (CIE). This holds information that
48/// is shared among many Frame Description Entries. There is at least one CIE
49/// in every non-empty .debug_frame section.
Chris Lattner8c6ed052009-09-16 01:46:41 +000050void DwarfException::EmitCIE(const Function *PersonalityFn, unsigned Index) {
Bill Wendlingeb907212009-05-15 01:12:28 +000051 // Size and sign of stack growth.
Chris Lattner84ac8b72010-04-05 00:26:50 +000052 int stackGrowth = Asm->getTargetData().getPointerSize();
53 if (Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
54 TargetFrameInfo::StackGrowsDown)
55 stackGrowth *= -1;
Bill Wendlingeb907212009-05-15 01:12:28 +000056
Chris Lattner8c6ed052009-09-16 01:46:41 +000057 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
Anton Korobeynikov9184b252010-02-15 22:35:59 +000058
Bill Wendlingeb907212009-05-15 01:12:28 +000059 // Begin eh frame section.
Chris Lattner8c6ed052009-09-16 01:46:41 +000060 Asm->OutStreamer.SwitchSection(TLOF.getEHFrameSection());
Bill Wendlingeb907212009-05-15 01:12:28 +000061
Chris Lattner974c0fb2010-03-10 02:48:06 +000062 MCSymbol *EHFrameSym;
Chris Lattner09d53fe2010-03-10 07:20:42 +000063 if (TLOF.isFunctionEHFrameSymbolPrivate())
Chris Lattnerc0215722010-04-04 19:25:43 +000064 EHFrameSym = Asm->GetTempSymbol("EH_frame", Index);
Chris Lattner974c0fb2010-03-10 02:48:06 +000065 else
66 EHFrameSym = Asm->OutContext.GetOrCreateSymbol(Twine("EH_frame") +
67 Twine(Index));
68 Asm->OutStreamer.EmitLabel(EHFrameSym);
Chris Lattner8c6ed052009-09-16 01:46:41 +000069
Chris Lattnerc0215722010-04-04 19:25:43 +000070 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("section_eh_frame", Index));
Bill Wendlingeb907212009-05-15 01:12:28 +000071
72 // Define base labels.
Chris Lattnerc0215722010-04-04 19:25:43 +000073 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("eh_frame_common", Index));
Bill Wendlingeb907212009-05-15 01:12:28 +000074
75 // Define the eh frame length.
Chris Lattner233f52b2010-03-09 23:52:58 +000076 Asm->OutStreamer.AddComment("Length of Common Information Entry");
Chris Lattnera6437182010-04-04 19:58:12 +000077 Asm->EmitLabelDifference(Asm->GetTempSymbol("eh_frame_common_end", Index),
78 Asm->GetTempSymbol("eh_frame_common_begin", Index),
79 4);
Bill Wendlingeb907212009-05-15 01:12:28 +000080
81 // EH frame header.
Chris Lattnerc0215722010-04-04 19:25:43 +000082 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("eh_frame_common_begin",Index));
Chris Lattner233f52b2010-03-09 23:52:58 +000083 Asm->OutStreamer.AddComment("CIE Identifier Tag");
Chris Lattnerbcb83e52010-01-20 07:41:15 +000084 Asm->OutStreamer.EmitIntValue(0, 4/*size*/, 0/*addrspace*/);
Chris Lattner233f52b2010-03-09 23:52:58 +000085 Asm->OutStreamer.AddComment("DW_CIE_VERSION");
Chris Lattner066c9ac2010-01-22 22:23:57 +000086 Asm->OutStreamer.EmitIntValue(dwarf::DW_CIE_VERSION, 1/*size*/, 0/*addr*/);
Bill Wendlingeb907212009-05-15 01:12:28 +000087
88 // The personality presence indicates that language specific information will
Chris Lattner8c6ed052009-09-16 01:46:41 +000089 // show up in the eh frame. Find out how we are supposed to lower the
90 // personality function reference:
Anton Korobeynikov9184b252010-02-15 22:35:59 +000091
92 unsigned LSDAEncoding = TLOF.getLSDAEncoding();
93 unsigned FDEEncoding = TLOF.getFDEEncoding();
94 unsigned PerEncoding = TLOF.getPersonalityEncoding();
Bill Wendling52783c62009-09-09 23:56:55 +000095
Chris Lattner4cf202b2010-01-23 03:11:46 +000096 char Augmentation[6] = { 0 };
Bill Wendling52783c62009-09-09 23:56:55 +000097 unsigned AugmentationSize = 0;
98 char *APtr = Augmentation + 1;
99
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000100 if (PersonalityFn) {
Bill Wendling52783c62009-09-09 23:56:55 +0000101 // There is a personality function.
102 *APtr++ = 'P';
Chris Lattnerd2af7852010-04-04 20:20:50 +0000103 AugmentationSize += 1 + Asm->GetSizeOfEncodedValue(PerEncoding);
Bill Wendling52783c62009-09-09 23:56:55 +0000104 }
105
106 if (UsesLSDA[Index]) {
107 // An LSDA pointer is in the FDE augmentation.
108 *APtr++ = 'L';
109 ++AugmentationSize;
110 }
111
112 if (FDEEncoding != dwarf::DW_EH_PE_absptr) {
113 // A non-default pointer encoding for the FDE.
114 *APtr++ = 'R';
115 ++AugmentationSize;
116 }
117
118 if (APtr != Augmentation + 1)
119 Augmentation[0] = 'z';
120
Chris Lattner233f52b2010-03-09 23:52:58 +0000121 Asm->OutStreamer.AddComment("CIE Augmentation");
Chris Lattner4cf202b2010-01-23 03:11:46 +0000122 Asm->OutStreamer.EmitBytes(StringRef(Augmentation, strlen(Augmentation)+1),0);
Bill Wendlingeb907212009-05-15 01:12:28 +0000123
124 // Round out reader.
Chris Lattner7e1a8f82010-04-04 19:09:29 +0000125 Asm->EmitULEB128(1, "CIE Code Alignment Factor");
126 Asm->EmitSLEB128(stackGrowth, "CIE Data Alignment Factor");
Chris Lattner233f52b2010-03-09 23:52:58 +0000127 Asm->OutStreamer.AddComment("CIE Return Address Column");
Chris Lattner84ac8b72010-04-05 00:26:50 +0000128
129 const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo();
Anton Korobeynikovd9e33852010-11-18 23:25:52 +0000130 const TargetFrameInfo *TFI = Asm->TM.getFrameInfo();
Bill Wendlingeb907212009-05-15 01:12:28 +0000131 Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister(), true));
Bill Wendlingeb907212009-05-15 01:12:28 +0000132
Anton Korobeynikovac8a3d02010-02-15 22:36:41 +0000133 if (Augmentation[0]) {
Chris Lattner7e1a8f82010-04-04 19:09:29 +0000134 Asm->EmitULEB128(AugmentationSize, "Augmentation Size");
Bill Wendling52783c62009-09-09 23:56:55 +0000135
Anton Korobeynikovac8a3d02010-02-15 22:36:41 +0000136 // If there is a personality, we need to indicate the function's location.
137 if (PersonalityFn) {
Chris Lattnerca6190b2010-04-04 20:04:21 +0000138 Asm->EmitEncodingByte(PerEncoding, "Personality");
Chris Lattner233f52b2010-03-09 23:52:58 +0000139 Asm->OutStreamer.AddComment("Personality");
Chris Lattnerd2af7852010-04-04 20:20:50 +0000140 Asm->EmitReference(PersonalityFn, PerEncoding);
Anton Korobeynikovac8a3d02010-02-15 22:36:41 +0000141 }
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000142 if (UsesLSDA[Index])
Chris Lattnerca6190b2010-04-04 20:04:21 +0000143 Asm->EmitEncodingByte(LSDAEncoding, "LSDA");
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000144 if (FDEEncoding != dwarf::DW_EH_PE_absptr)
Chris Lattnerca6190b2010-04-04 20:04:21 +0000145 Asm->EmitEncodingByte(FDEEncoding, "FDE");
Bill Wendlingeb907212009-05-15 01:12:28 +0000146 }
147
148 // Indicate locations of general callee saved registers in frame.
149 std::vector<MachineMove> Moves;
Anton Korobeynikovd9e33852010-11-18 23:25:52 +0000150 TFI->getInitialFrameState(Moves);
Chris Lattner02b86b92010-04-04 23:41:46 +0000151 Asm->EmitFrameMoves(Moves, 0, true);
Bill Wendlingeb907212009-05-15 01:12:28 +0000152
153 // On Darwin the linker honors the alignment of eh_frame, which means it must
154 // be 8-byte on 64-bit targets to match what gcc does. Otherwise you get
155 // holes which confuse readers of eh_frame.
Chris Lattner059ea132010-04-28 01:05:45 +0000156 Asm->EmitAlignment(Asm->getTargetData().getPointerSize() == 4 ? 2 : 3);
Chris Lattnerc0215722010-04-04 19:25:43 +0000157 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("eh_frame_common_end", Index));
Bill Wendlingeb907212009-05-15 01:12:28 +0000158}
159
Bill Wendling7ccda0f2009-08-25 08:08:33 +0000160/// EmitFDE - Emit the Frame Description Entry (FDE) for the function.
161void DwarfException::EmitFDE(const FunctionEHFrameInfo &EHFrameInfo) {
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000162 assert(!EHFrameInfo.function->hasAvailableExternallyLinkage() &&
Bill Wendlingeb907212009-05-15 01:12:28 +0000163 "Should not emit 'available externally' functions at all");
164
Chris Lattner3e0f60b2009-07-17 21:00:50 +0000165 const Function *TheFunc = EHFrameInfo.function;
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000166 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000167
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000168 unsigned LSDAEncoding = TLOF.getLSDAEncoding();
169 unsigned FDEEncoding = TLOF.getFDEEncoding();
170
171 Asm->OutStreamer.SwitchSection(TLOF.getEHFrameSection());
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000172
Bill Wendlingeb907212009-05-15 01:12:28 +0000173 // Externally visible entry into the functions eh frame info. If the
174 // corresponding function is static, this should not be externally visible.
Chris Lattner09d53fe2010-03-10 07:20:42 +0000175 if (!TheFunc->hasLocalLinkage() && TLOF.isFunctionEHSymbolGlobal())
176 Asm->OutStreamer.EmitSymbolAttribute(EHFrameInfo.FunctionEHSym,MCSA_Global);
Bill Wendlingeb907212009-05-15 01:12:28 +0000177
178 // If corresponding function is weak definition, this should be too.
Chris Lattner84ac8b72010-04-05 00:26:50 +0000179 if (TheFunc->isWeakForLinker() && Asm->MAI->getWeakDefDirective())
Chris Lattner974c0fb2010-03-10 02:48:06 +0000180 Asm->OutStreamer.EmitSymbolAttribute(EHFrameInfo.FunctionEHSym,
181 MCSA_WeakDefinition);
Bill Wendlingee161a62009-11-11 01:24:59 +0000182
183 // If corresponding function is hidden, this should be too.
184 if (TheFunc->hasHiddenVisibility())
Chris Lattner84ac8b72010-04-05 00:26:50 +0000185 if (MCSymbolAttr HiddenAttr = Asm->MAI->getHiddenVisibilityAttr())
Chris Lattner152a29b2010-01-23 06:53:23 +0000186 Asm->OutStreamer.EmitSymbolAttribute(EHFrameInfo.FunctionEHSym,
187 HiddenAttr);
Bill Wendlingeb907212009-05-15 01:12:28 +0000188
189 // If there are no calls then you can't unwind. This may mean we can omit the
190 // EH Frame, but some environments do not handle weak absolute symbols. If
191 // UnwindTablesMandatory is set we cannot do this optimization; the unwind
192 // info is to be available for non-EH uses.
Bill Wendlingb92187a2010-05-14 21:14:32 +0000193 if (!EHFrameInfo.adjustsStack && !UnwindTablesMandatory &&
Chris Lattner3e0f60b2009-07-17 21:00:50 +0000194 (!TheFunc->isWeakForLinker() ||
Chris Lattner84ac8b72010-04-05 00:26:50 +0000195 !Asm->MAI->getWeakDefDirective() ||
Chris Lattner09d53fe2010-03-10 07:20:42 +0000196 TLOF.getSupportsWeakOmittedEHFrame())) {
Chris Lattner974c0fb2010-03-10 02:48:06 +0000197 Asm->OutStreamer.EmitAssignment(EHFrameInfo.FunctionEHSym,
198 MCConstantExpr::Create(0, Asm->OutContext));
Bill Wendlingeb907212009-05-15 01:12:28 +0000199 // This name has no connection to the function, so it might get
200 // dead-stripped when the function is not, erroneously. Prohibit
201 // dead-stripping unconditionally.
Chris Lattner84ac8b72010-04-05 00:26:50 +0000202 if (Asm->MAI->hasNoDeadStrip())
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000203 Asm->OutStreamer.EmitSymbolAttribute(EHFrameInfo.FunctionEHSym,
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000204 MCSA_NoDeadStrip);
Bill Wendlingeb907212009-05-15 01:12:28 +0000205 } else {
Chris Lattner974c0fb2010-03-10 02:48:06 +0000206 Asm->OutStreamer.EmitLabel(EHFrameInfo.FunctionEHSym);
Bill Wendlingeb907212009-05-15 01:12:28 +0000207
208 // EH frame header.
Chris Lattner233f52b2010-03-09 23:52:58 +0000209 Asm->OutStreamer.AddComment("Length of Frame Information Entry");
Chris Lattnera6437182010-04-04 19:58:12 +0000210 Asm->EmitLabelDifference(
211 Asm->GetTempSymbol("eh_frame_end", EHFrameInfo.Number),
212 Asm->GetTempSymbol("eh_frame_begin", EHFrameInfo.Number), 4);
Bill Wendlingeb907212009-05-15 01:12:28 +0000213
Chris Lattnerc0215722010-04-04 19:25:43 +0000214 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("eh_frame_begin",
215 EHFrameInfo.Number));
Bill Wendlingeb907212009-05-15 01:12:28 +0000216
Chris Lattner233f52b2010-03-09 23:52:58 +0000217 Asm->OutStreamer.AddComment("FDE CIE offset");
Chris Lattnerf88dce12010-04-04 21:31:54 +0000218 Asm->EmitLabelDifference(
219 Asm->GetTempSymbol("eh_frame_begin", EHFrameInfo.Number),
220 Asm->GetTempSymbol("eh_frame_common",
221 EHFrameInfo.PersonalityIndex), 4);
Bill Wendlingeb907212009-05-15 01:12:28 +0000222
Chris Lattnerc0215722010-04-04 19:25:43 +0000223 MCSymbol *EHFuncBeginSym =
224 Asm->GetTempSymbol("eh_func_begin", EHFrameInfo.Number);
Bill Wendlingeb907212009-05-15 01:12:28 +0000225
Chris Lattner233f52b2010-03-09 23:52:58 +0000226 Asm->OutStreamer.AddComment("FDE initial location");
Chris Lattnerd2af7852010-04-04 20:20:50 +0000227 Asm->EmitReference(EHFuncBeginSym, FDEEncoding);
Chris Lattnerfb658072010-03-13 07:40:56 +0000228
Chris Lattner233f52b2010-03-09 23:52:58 +0000229 Asm->OutStreamer.AddComment("FDE address range");
Chris Lattnera6437182010-04-04 19:58:12 +0000230 Asm->EmitLabelDifference(Asm->GetTempSymbol("eh_func_end",
231 EHFrameInfo.Number),
Chris Lattnerd2af7852010-04-04 20:20:50 +0000232 EHFuncBeginSym,
233 Asm->GetSizeOfEncodedValue(FDEEncoding));
Bill Wendlingeb907212009-05-15 01:12:28 +0000234
235 // If there is a personality and landing pads then point to the language
236 // specific data area in the exception table.
Eric Christopherd44fff72009-08-26 21:30:49 +0000237 if (MMI->getPersonalities()[0] != NULL) {
Chris Lattnerd2af7852010-04-04 20:20:50 +0000238 unsigned Size = Asm->GetSizeOfEncodedValue(LSDAEncoding);
Duncan Sandsc69d74a2009-08-31 16:45:16 +0000239
Chris Lattner7e1a8f82010-04-04 19:09:29 +0000240 Asm->EmitULEB128(Size, "Augmentation size");
Chris Lattner233f52b2010-03-09 23:52:58 +0000241 Asm->OutStreamer.AddComment("Language Specific Data Area");
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000242 if (EHFrameInfo.hasLandingPads)
Chris Lattnerd2af7852010-04-04 20:20:50 +0000243 Asm->EmitReference(Asm->GetTempSymbol("exception", EHFrameInfo.Number),
244 LSDAEncoding);
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000245 else
246 Asm->OutStreamer.EmitIntValue(0, Size/*size*/, 0/*addrspace*/);
Bill Wendlingd58e9cb2010-01-16 01:40:55 +0000247
Bill Wendlingeb907212009-05-15 01:12:28 +0000248 } else {
Chris Lattner7e1a8f82010-04-04 19:09:29 +0000249 Asm->EmitULEB128(0, "Augmentation size");
Bill Wendlingeb907212009-05-15 01:12:28 +0000250 }
251
252 // Indicate locations of function specific callee saved registers in frame.
Chris Lattner02b86b92010-04-04 23:41:46 +0000253 Asm->EmitFrameMoves(EHFrameInfo.Moves, EHFuncBeginSym, true);
Bill Wendlingeb907212009-05-15 01:12:28 +0000254
255 // On Darwin the linker honors the alignment of eh_frame, which means it
256 // must be 8-byte on 64-bit targets to match what gcc does. Otherwise you
257 // get holes which confuse readers of eh_frame.
Chris Lattner059ea132010-04-28 01:05:45 +0000258 Asm->EmitAlignment(Asm->getTargetData().getPointerSize() == 4 ? 2 : 3);
Chris Lattnerc0215722010-04-04 19:25:43 +0000259 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("eh_frame_end",
260 EHFrameInfo.Number));
Bill Wendlingeb907212009-05-15 01:12:28 +0000261
262 // If the function is marked used, this table should be also. We cannot
263 // make the mark unconditional in this case, since retaining the table also
264 // retains the function in this case, and there is code around that depends
265 // on unused functions (calling undefined externals) being dead-stripped to
266 // link correctly. Yes, there really is.
Chris Lattner401e10c2009-07-20 06:14:25 +0000267 if (MMI->isUsedFunction(EHFrameInfo.function))
Chris Lattner84ac8b72010-04-05 00:26:50 +0000268 if (Asm->MAI->hasNoDeadStrip())
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000269 Asm->OutStreamer.EmitSymbolAttribute(EHFrameInfo.FunctionEHSym,
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000270 MCSA_NoDeadStrip);
Bill Wendlingeb907212009-05-15 01:12:28 +0000271 }
Chris Lattner188a87d2010-03-10 01:04:13 +0000272 Asm->OutStreamer.AddBlankLine();
Bill Wendlingeb907212009-05-15 01:12:28 +0000273}
274
Bill Wendlingeb907212009-05-15 01:12:28 +0000275/// SharedTypeIds - How many leading type ids two landing pads have in common.
276unsigned DwarfException::SharedTypeIds(const LandingPadInfo *L,
277 const LandingPadInfo *R) {
278 const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds;
279 unsigned LSize = LIds.size(), RSize = RIds.size();
280 unsigned MinSize = LSize < RSize ? LSize : RSize;
281 unsigned Count = 0;
282
283 for (; Count != MinSize; ++Count)
284 if (LIds[Count] != RIds[Count])
285 return Count;
286
287 return Count;
288}
289
290/// PadLT - Order landing pads lexicographically by type id.
291bool DwarfException::PadLT(const LandingPadInfo *L, const LandingPadInfo *R) {
292 const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds;
293 unsigned LSize = LIds.size(), RSize = RIds.size();
294 unsigned MinSize = LSize < RSize ? LSize : RSize;
295
296 for (unsigned i = 0; i != MinSize; ++i)
297 if (LIds[i] != RIds[i])
298 return LIds[i] < RIds[i];
299
300 return LSize < RSize;
301}
302
Bill Wendlingd4609622009-07-28 23:23:00 +0000303/// ComputeActionsTable - Compute the actions table and gather the first action
304/// index for each landing pad site.
Bill Wendlingade025c2009-07-29 00:31:35 +0000305unsigned DwarfException::
306ComputeActionsTable(const SmallVectorImpl<const LandingPadInfo*> &LandingPads,
307 SmallVectorImpl<ActionEntry> &Actions,
308 SmallVectorImpl<unsigned> &FirstActions) {
Bill Wendlinga583c552009-08-20 22:02:24 +0000309
310 // The action table follows the call-site table in the LSDA. The individual
311 // records are of two types:
312 //
313 // * Catch clause
314 // * Exception specification
315 //
316 // The two record kinds have the same format, with only small differences.
317 // They are distinguished by the "switch value" field: Catch clauses
318 // (TypeInfos) have strictly positive switch values, and exception
319 // specifications (FilterIds) have strictly negative switch values. Value 0
320 // indicates a catch-all clause.
321 //
Bill Wendling5e953dd2009-07-28 23:22:13 +0000322 // Negative type IDs index into FilterIds. Positive type IDs index into
323 // TypeInfos. The value written for a positive type ID is just the type ID
324 // itself. For a negative type ID, however, the value written is the
Bill Wendlingeb907212009-05-15 01:12:28 +0000325 // (negative) byte offset of the corresponding FilterIds entry. The byte
Bill Wendling5e953dd2009-07-28 23:22:13 +0000326 // offset is usually equal to the type ID (because the FilterIds entries are
327 // written using a variable width encoding, which outputs one byte per entry
328 // as long as the value written is not too large) but can differ. This kind
329 // of complication does not occur for positive type IDs because type infos are
Bill Wendlingeb907212009-05-15 01:12:28 +0000330 // output using a fixed width encoding. FilterOffsets[i] holds the byte
331 // offset corresponding to FilterIds[i].
Bill Wendling409914b2009-07-29 21:19:44 +0000332
333 const std::vector<unsigned> &FilterIds = MMI->getFilterIds();
Bill Wendlingeb907212009-05-15 01:12:28 +0000334 SmallVector<int, 16> FilterOffsets;
335 FilterOffsets.reserve(FilterIds.size());
336 int Offset = -1;
Bill Wendling409914b2009-07-29 21:19:44 +0000337
338 for (std::vector<unsigned>::const_iterator
339 I = FilterIds.begin(), E = FilterIds.end(); I != E; ++I) {
Bill Wendlingeb907212009-05-15 01:12:28 +0000340 FilterOffsets.push_back(Offset);
Chris Lattneraf76e592009-08-22 20:48:53 +0000341 Offset -= MCAsmInfo::getULEB128Size(*I);
Bill Wendlingeb907212009-05-15 01:12:28 +0000342 }
343
Bill Wendlingeb907212009-05-15 01:12:28 +0000344 FirstActions.reserve(LandingPads.size());
345
346 int FirstAction = 0;
347 unsigned SizeActions = 0;
Bill Wendling5e953dd2009-07-28 23:22:13 +0000348 const LandingPadInfo *PrevLPI = 0;
Bill Wendling409914b2009-07-29 21:19:44 +0000349
Bill Wendling5cff4872009-07-28 23:44:43 +0000350 for (SmallVectorImpl<const LandingPadInfo *>::const_iterator
Bill Wendling5e953dd2009-07-28 23:22:13 +0000351 I = LandingPads.begin(), E = LandingPads.end(); I != E; ++I) {
352 const LandingPadInfo *LPI = *I;
353 const std::vector<int> &TypeIds = LPI->TypeIds;
Chris Lattner9be49132010-04-04 20:10:41 +0000354 unsigned NumShared = PrevLPI ? SharedTypeIds(LPI, PrevLPI) : 0;
Bill Wendlingeb907212009-05-15 01:12:28 +0000355 unsigned SizeSiteActions = 0;
356
357 if (NumShared < TypeIds.size()) {
358 unsigned SizeAction = 0;
Bill Wendling0a9abcb2010-02-10 21:41:57 +0000359 unsigned PrevAction = (unsigned)-1;
Bill Wendlingeb907212009-05-15 01:12:28 +0000360
361 if (NumShared) {
Chris Lattner9be49132010-04-04 20:10:41 +0000362 unsigned SizePrevIds = PrevLPI->TypeIds.size();
Bill Wendlingeb907212009-05-15 01:12:28 +0000363 assert(Actions.size());
Bill Wendling0a9abcb2010-02-10 21:41:57 +0000364 PrevAction = Actions.size() - 1;
365 SizeAction =
366 MCAsmInfo::getSLEB128Size(Actions[PrevAction].NextAction) +
367 MCAsmInfo::getSLEB128Size(Actions[PrevAction].ValueForTypeID);
Bill Wendlingeb907212009-05-15 01:12:28 +0000368
369 for (unsigned j = NumShared; j != SizePrevIds; ++j) {
Bill Wendling0a9abcb2010-02-10 21:41:57 +0000370 assert(PrevAction != (unsigned)-1 && "PrevAction is invalid!");
Bill Wendlingeb907212009-05-15 01:12:28 +0000371 SizeAction -=
Bill Wendling0a9abcb2010-02-10 21:41:57 +0000372 MCAsmInfo::getSLEB128Size(Actions[PrevAction].ValueForTypeID);
373 SizeAction += -Actions[PrevAction].NextAction;
374 PrevAction = Actions[PrevAction].Previous;
Bill Wendlingeb907212009-05-15 01:12:28 +0000375 }
376 }
377
378 // Compute the actions.
Bill Wendling5e953dd2009-07-28 23:22:13 +0000379 for (unsigned J = NumShared, M = TypeIds.size(); J != M; ++J) {
380 int TypeID = TypeIds[J];
381 assert(-1 - TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
Bill Wendlingeb907212009-05-15 01:12:28 +0000382 int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID;
Chris Lattneraf76e592009-08-22 20:48:53 +0000383 unsigned SizeTypeID = MCAsmInfo::getSLEB128Size(ValueForTypeID);
Bill Wendlingeb907212009-05-15 01:12:28 +0000384
385 int NextAction = SizeAction ? -(SizeAction + SizeTypeID) : 0;
Chris Lattneraf76e592009-08-22 20:48:53 +0000386 SizeAction = SizeTypeID + MCAsmInfo::getSLEB128Size(NextAction);
Bill Wendlingeb907212009-05-15 01:12:28 +0000387 SizeSiteActions += SizeAction;
388
Bill Wendlinga583c552009-08-20 22:02:24 +0000389 ActionEntry Action = { ValueForTypeID, NextAction, PrevAction };
Bill Wendlingeb907212009-05-15 01:12:28 +0000390 Actions.push_back(Action);
Bill Wendling0a9abcb2010-02-10 21:41:57 +0000391 PrevAction = Actions.size() - 1;
Bill Wendlingeb907212009-05-15 01:12:28 +0000392 }
393
394 // Record the first action of the landing pad site.
395 FirstAction = SizeActions + SizeSiteActions - SizeAction + 1;
396 } // else identical - re-use previous FirstAction
397
Bill Wendlinga583c552009-08-20 22:02:24 +0000398 // Information used when created the call-site table. The action record
399 // field of the call site record is the offset of the first associated
400 // action record, relative to the start of the actions table. This value is
Bill Wendling0a9abcb2010-02-10 21:41:57 +0000401 // biased by 1 (1 indicating the start of the actions table), and 0
Bill Wendlinga583c552009-08-20 22:02:24 +0000402 // indicates that there are no actions.
Bill Wendlingeb907212009-05-15 01:12:28 +0000403 FirstActions.push_back(FirstAction);
404
405 // Compute this sites contribution to size.
406 SizeActions += SizeSiteActions;
Bill Wendling5e953dd2009-07-28 23:22:13 +0000407
408 PrevLPI = LPI;
Bill Wendlingeb907212009-05-15 01:12:28 +0000409 }
410
Bill Wendling5e953dd2009-07-28 23:22:13 +0000411 return SizeActions;
412}
413
Bill Wendlinged060dc2009-11-12 21:59:20 +0000414/// CallToNoUnwindFunction - Return `true' if this is a call to a function
415/// marked `nounwind'. Return `false' otherwise.
416bool DwarfException::CallToNoUnwindFunction(const MachineInstr *MI) {
417 assert(MI->getDesc().isCall() && "This should be a call instruction!");
418
419 bool MarkedNoUnwind = false;
420 bool SawFunc = false;
421
422 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
423 const MachineOperand &MO = MI->getOperand(I);
424
Chris Lattnercfd31882010-03-31 06:09:04 +0000425 if (!MO.isGlobal()) continue;
426
Dan Gohman46510a72010-04-15 01:51:59 +0000427 const Function *F = dyn_cast<Function>(MO.getGlobal());
Chris Lattnercfd31882010-03-31 06:09:04 +0000428 if (F == 0) continue;
Bill Wendlingecc260e2009-11-12 23:13:08 +0000429
Chris Lattnercfd31882010-03-31 06:09:04 +0000430 if (SawFunc) {
431 // Be conservative. If we have more than one function operand for this
432 // call, then we can't make the assumption that it's the callee and
433 // not a parameter to the call.
434 //
435 // FIXME: Determine if there's a way to say that `F' is the callee or
436 // parameter.
437 MarkedNoUnwind = false;
438 break;
Bill Wendlinged060dc2009-11-12 21:59:20 +0000439 }
Chris Lattnercfd31882010-03-31 06:09:04 +0000440
441 MarkedNoUnwind = F->doesNotThrow();
442 SawFunc = true;
Bill Wendlinged060dc2009-11-12 21:59:20 +0000443 }
444
445 return MarkedNoUnwind;
446}
447
Bill Wendlingade025c2009-07-29 00:31:35 +0000448/// ComputeCallSiteTable - Compute the call-site table. The entry for an invoke
Bill Wendlinga583c552009-08-20 22:02:24 +0000449/// has a try-range containing the call, a non-zero landing pad, and an
Bill Wendlingade025c2009-07-29 00:31:35 +0000450/// appropriate action. The entry for an ordinary call has a try-range
451/// containing the call and zero for the landing pad and the action. Calls
452/// marked 'nounwind' have no entry and must not be contained in the try-range
453/// of any entry - they form gaps in the table. Entries must be ordered by
454/// try-range address.
455void DwarfException::
456ComputeCallSiteTable(SmallVectorImpl<CallSiteEntry> &CallSites,
457 const RangeMapType &PadMap,
458 const SmallVectorImpl<const LandingPadInfo *> &LandingPads,
459 const SmallVectorImpl<unsigned> &FirstActions) {
Bill Wendlingeb907212009-05-15 01:12:28 +0000460 // The end label of the previous invoke or nounwind try-range.
Chris Lattner16112732010-03-14 01:41:15 +0000461 MCSymbol *LastLabel = 0;
Bill Wendlingeb907212009-05-15 01:12:28 +0000462
463 // Whether there is a potentially throwing instruction (currently this means
464 // an ordinary call) between the end of the previous try-range and now.
465 bool SawPotentiallyThrowing = false;
466
Bill Wendling5cff4872009-07-28 23:44:43 +0000467 // Whether the last CallSite entry was for an invoke.
Bill Wendlingeb907212009-05-15 01:12:28 +0000468 bool PreviousIsInvoke = false;
469
470 // Visit all instructions in order of address.
Chris Lattner84ac8b72010-04-05 00:26:50 +0000471 for (MachineFunction::const_iterator I = Asm->MF->begin(), E = Asm->MF->end();
Bill Wendlingeb907212009-05-15 01:12:28 +0000472 I != E; ++I) {
473 for (MachineBasicBlock::const_iterator MI = I->begin(), E = I->end();
474 MI != E; ++MI) {
475 if (!MI->isLabel()) {
Bill Wendlinged060dc2009-11-12 21:59:20 +0000476 if (MI->getDesc().isCall())
477 SawPotentiallyThrowing |= !CallToNoUnwindFunction(MI);
Bill Wendlingeb907212009-05-15 01:12:28 +0000478 continue;
479 }
480
Bill Wendlingeb907212009-05-15 01:12:28 +0000481 // End of the previous try-range?
Chris Lattner0397ada2010-03-14 08:17:53 +0000482 MCSymbol *BeginLabel = MI->getOperand(0).getMCSymbol();
Bill Wendlingeb907212009-05-15 01:12:28 +0000483 if (BeginLabel == LastLabel)
484 SawPotentiallyThrowing = false;
485
486 // Beginning of a new try-range?
Jeffrey Yasskin81cf4322009-11-10 01:02:17 +0000487 RangeMapType::const_iterator L = PadMap.find(BeginLabel);
Bill Wendlingeb907212009-05-15 01:12:28 +0000488 if (L == PadMap.end())
489 // Nope, it was just some random label.
490 continue;
491
Bill Wendlinga583c552009-08-20 22:02:24 +0000492 const PadRange &P = L->second;
Bill Wendlingeb907212009-05-15 01:12:28 +0000493 const LandingPadInfo *LandingPad = LandingPads[P.PadIndex];
Bill Wendlingeb907212009-05-15 01:12:28 +0000494 assert(BeginLabel == LandingPad->BeginLabels[P.RangeIndex] &&
495 "Inconsistent landing pad map!");
496
Bill Wendlinga583c552009-08-20 22:02:24 +0000497 // For Dwarf exception handling (SjLj handling doesn't use this). If some
498 // instruction between the previous try-range and this one may throw,
499 // create a call-site entry with no landing pad for the region between the
500 // try-ranges.
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000501 if (SawPotentiallyThrowing &&
Chris Lattner84ac8b72010-04-05 00:26:50 +0000502 Asm->MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf) {
Bill Wendlinga583c552009-08-20 22:02:24 +0000503 CallSiteEntry Site = { LastLabel, BeginLabel, 0, 0 };
Bill Wendlingeb907212009-05-15 01:12:28 +0000504 CallSites.push_back(Site);
505 PreviousIsInvoke = false;
506 }
507
508 LastLabel = LandingPad->EndLabels[P.RangeIndex];
509 assert(BeginLabel && LastLabel && "Invalid landing pad!");
510
Chris Lattnercfd31882010-03-31 06:09:04 +0000511 if (!LandingPad->LandingPadLabel) {
512 // Create a gap.
513 PreviousIsInvoke = false;
514 } else {
Bill Wendlingeb907212009-05-15 01:12:28 +0000515 // This try-range is for an invoke.
Bill Wendlinga583c552009-08-20 22:02:24 +0000516 CallSiteEntry Site = {
517 BeginLabel,
518 LastLabel,
519 LandingPad->LandingPadLabel,
520 FirstActions[P.PadIndex]
521 };
Bill Wendlingeb907212009-05-15 01:12:28 +0000522
Jim Grosbach33668c02009-09-01 17:19:13 +0000523 // Try to merge with the previous call-site. SJLJ doesn't do this
524 if (PreviousIsInvoke &&
Chris Lattner84ac8b72010-04-05 00:26:50 +0000525 Asm->MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf) {
Bill Wendlingeb907212009-05-15 01:12:28 +0000526 CallSiteEntry &Prev = CallSites.back();
527 if (Site.PadLabel == Prev.PadLabel && Site.Action == Prev.Action) {
528 // Extend the range of the previous entry.
529 Prev.EndLabel = Site.EndLabel;
530 continue;
531 }
532 }
533
534 // Otherwise, create a new call-site.
Chris Lattner84ac8b72010-04-05 00:26:50 +0000535 if (Asm->MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf)
Jim Grosbachca752c92010-01-28 01:45:32 +0000536 CallSites.push_back(Site);
537 else {
538 // SjLj EH must maintain the call sites in the order assigned
539 // to them by the SjLjPrepare pass.
540 unsigned SiteNo = MMI->getCallSiteBeginLabel(BeginLabel);
541 if (CallSites.size() < SiteNo)
542 CallSites.resize(SiteNo);
543 CallSites[SiteNo - 1] = Site;
544 }
Bill Wendlingeb907212009-05-15 01:12:28 +0000545 PreviousIsInvoke = true;
Bill Wendlingeb907212009-05-15 01:12:28 +0000546 }
547 }
548 }
549
550 // If some instruction between the previous try-range and the end of the
551 // function may throw, create a call-site entry with no landing pad for the
552 // region following the try-range.
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000553 if (SawPotentiallyThrowing &&
Chris Lattner84ac8b72010-04-05 00:26:50 +0000554 Asm->MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf) {
Bill Wendlinga583c552009-08-20 22:02:24 +0000555 CallSiteEntry Site = { LastLabel, 0, 0, 0 };
Bill Wendlingeb907212009-05-15 01:12:28 +0000556 CallSites.push_back(Site);
557 }
Bill Wendlingade025c2009-07-29 00:31:35 +0000558}
559
Bill Wendling0dafca92009-07-29 00:50:05 +0000560/// EmitExceptionTable - Emit landing pads and actions.
561///
562/// The general organization of the table is complex, but the basic concepts are
563/// easy. First there is a header which describes the location and organization
564/// of the three components that follow.
Eric Christopherdbfcdb92009-08-28 22:33:43 +0000565///
Bill Wendling0dafca92009-07-29 00:50:05 +0000566/// 1. The landing pad site information describes the range of code covered by
567/// the try. In our case it's an accumulation of the ranges covered by the
568/// invokes in the try. There is also a reference to the landing pad that
569/// handles the exception once processed. Finally an index into the actions
570/// table.
Bill Wendlinga583c552009-08-20 22:02:24 +0000571/// 2. The action table, in our case, is composed of pairs of type IDs and next
Bill Wendling0dafca92009-07-29 00:50:05 +0000572/// action offset. Starting with the action index from the landing pad
Bill Wendlinga583c552009-08-20 22:02:24 +0000573/// site, each type ID is checked for a match to the current exception. If
Bill Wendling0dafca92009-07-29 00:50:05 +0000574/// it matches then the exception and type id are passed on to the landing
575/// pad. Otherwise the next action is looked up. This chain is terminated
Bill Wendling28275fd2009-09-10 06:50:01 +0000576/// with a next action of zero. If no type id is found then the frame is
Bill Wendling0dafca92009-07-29 00:50:05 +0000577/// unwound and handling continues.
Bill Wendlinga583c552009-08-20 22:02:24 +0000578/// 3. Type ID table contains references to all the C++ typeinfo for all
Bill Wendling28275fd2009-09-10 06:50:01 +0000579/// catches in the function. This tables is reverse indexed base 1.
Bill Wendlingade025c2009-07-29 00:31:35 +0000580void DwarfException::EmitExceptionTable() {
Dan Gohman46510a72010-04-15 01:51:59 +0000581 const std::vector<const GlobalVariable *> &TypeInfos = MMI->getTypeInfos();
Bill Wendlingade025c2009-07-29 00:31:35 +0000582 const std::vector<unsigned> &FilterIds = MMI->getFilterIds();
583 const std::vector<LandingPadInfo> &PadInfos = MMI->getLandingPads();
Bill Wendlingade025c2009-07-29 00:31:35 +0000584
585 // Sort the landing pads in order of their type ids. This is used to fold
586 // duplicate actions.
587 SmallVector<const LandingPadInfo *, 64> LandingPads;
588 LandingPads.reserve(PadInfos.size());
589
590 for (unsigned i = 0, N = PadInfos.size(); i != N; ++i)
591 LandingPads.push_back(&PadInfos[i]);
592
593 std::sort(LandingPads.begin(), LandingPads.end(), PadLT);
594
595 // Compute the actions table and gather the first action index for each
596 // landing pad site.
597 SmallVector<ActionEntry, 32> Actions;
598 SmallVector<unsigned, 64> FirstActions;
Bill Wendling0a9abcb2010-02-10 21:41:57 +0000599 unsigned SizeActions=ComputeActionsTable(LandingPads, Actions, FirstActions);
Bill Wendlingade025c2009-07-29 00:31:35 +0000600
601 // Invokes and nounwind calls have entries in PadMap (due to being bracketed
602 // by try-range labels when lowered). Ordinary calls do not, so appropriate
Bill Wendling28275fd2009-09-10 06:50:01 +0000603 // try-ranges for them need be deduced when using DWARF exception handling.
Bill Wendlingade025c2009-07-29 00:31:35 +0000604 RangeMapType PadMap;
605 for (unsigned i = 0, N = LandingPads.size(); i != N; ++i) {
606 const LandingPadInfo *LandingPad = LandingPads[i];
607 for (unsigned j = 0, E = LandingPad->BeginLabels.size(); j != E; ++j) {
Chris Lattner16112732010-03-14 01:41:15 +0000608 MCSymbol *BeginLabel = LandingPad->BeginLabels[j];
Bill Wendlingade025c2009-07-29 00:31:35 +0000609 assert(!PadMap.count(BeginLabel) && "Duplicate landing pad labels!");
610 PadRange P = { i, j };
611 PadMap[BeginLabel] = P;
612 }
613 }
614
615 // Compute the call-site table.
616 SmallVector<CallSiteEntry, 64> CallSites;
Jim Grosbach8b818d72009-08-17 16:41:22 +0000617 ComputeCallSiteTable(CallSites, PadMap, LandingPads, FirstActions);
Bill Wendlingeb907212009-05-15 01:12:28 +0000618
619 // Final tallies.
620
621 // Call sites.
Chris Lattner84ac8b72010-04-05 00:26:50 +0000622 bool IsSJLJ = Asm->MAI->getExceptionHandlingType() == ExceptionHandling::SjLj;
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000623 bool HaveTTData = IsSJLJ ? (!TypeInfos.empty() || !FilterIds.empty()) : true;
Chris Lattner9be49132010-04-04 20:10:41 +0000624
Bill Wendling3dc9b482010-02-24 23:34:35 +0000625 unsigned CallSiteTableLength;
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000626 if (IsSJLJ)
Bill Wendling3dc9b482010-02-24 23:34:35 +0000627 CallSiteTableLength = 0;
Chris Lattner9be49132010-04-04 20:10:41 +0000628 else {
629 unsigned SiteStartSize = 4; // dwarf::DW_EH_PE_udata4
630 unsigned SiteLengthSize = 4; // dwarf::DW_EH_PE_udata4
631 unsigned LandingPadSize = 4; // dwarf::DW_EH_PE_udata4
632 CallSiteTableLength =
633 CallSites.size() * (SiteStartSize + SiteLengthSize + LandingPadSize);
634 }
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000635
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000636 for (unsigned i = 0, e = CallSites.size(); i < e; ++i) {
Bill Wendling3dc9b482010-02-24 23:34:35 +0000637 CallSiteTableLength += MCAsmInfo::getULEB128Size(CallSites[i].Action);
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000638 if (IsSJLJ)
Bill Wendling3dc9b482010-02-24 23:34:35 +0000639 CallSiteTableLength += MCAsmInfo::getULEB128Size(i);
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000640 }
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000641
Bill Wendlingeb907212009-05-15 01:12:28 +0000642 // Type infos.
Chris Lattnerd5bbb072009-08-02 01:34:32 +0000643 const MCSection *LSDASection = Asm->getObjFileLowering().getLSDASection();
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000644 unsigned TTypeEncoding;
Bill Wendlinga2f64492009-09-10 06:27:16 +0000645 unsigned TypeFormatSize;
Bill Wendlingeb907212009-05-15 01:12:28 +0000646
Bill Wendling43e484f2009-09-10 01:12:47 +0000647 if (!HaveTTData) {
Bill Wendling28275fd2009-09-10 06:50:01 +0000648 // For SjLj exceptions, if there is no TypeInfo, then we just explicitly say
649 // that we're omitting that bit.
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000650 TTypeEncoding = dwarf::DW_EH_PE_omit;
Chris Lattner84ac8b72010-04-05 00:26:50 +0000651 // dwarf::DW_EH_PE_absptr
652 TypeFormatSize = Asm->getTargetData().getPointerSize();
Chris Lattner81c9a062009-07-31 22:03:47 +0000653 } else {
Chris Lattnerad88bc42009-08-02 03:59:56 +0000654 // Okay, we have actual filters or typeinfos to emit. As such, we need to
655 // pick a type encoding for them. We're about to emit a list of pointers to
656 // typeinfo objects at the end of the LSDA. However, unless we're in static
657 // mode, this reference will require a relocation by the dynamic linker.
Chris Lattner46b754c2009-07-31 22:18:14 +0000658 //
Chris Lattnerad88bc42009-08-02 03:59:56 +0000659 // Because of this, we have a couple of options:
Bill Wendling28275fd2009-09-10 06:50:01 +0000660 //
Chris Lattnerad88bc42009-08-02 03:59:56 +0000661 // 1) If we are in -static mode, we can always use an absolute reference
662 // from the LSDA, because the static linker will resolve it.
Bill Wendling28275fd2009-09-10 06:50:01 +0000663 //
Chris Lattnerad88bc42009-08-02 03:59:56 +0000664 // 2) Otherwise, if the LSDA section is writable, we can output the direct
665 // reference to the typeinfo and allow the dynamic linker to relocate
666 // it. Since it is in a writable section, the dynamic linker won't
667 // have a problem.
Bill Wendling28275fd2009-09-10 06:50:01 +0000668 //
Chris Lattnerad88bc42009-08-02 03:59:56 +0000669 // 3) Finally, if we're in PIC mode and the LDSA section isn't writable,
670 // we need to use some form of indirection. For example, on Darwin,
671 // we can output a statically-relocatable reference to a dyld stub. The
672 // offset to the stub is constant, but the contents are in a section
673 // that is updated by the dynamic linker. This is easy enough, but we
674 // need to tell the personality function of the unwinder to indirect
675 // through the dyld stub.
676 //
Bill Wendling43e484f2009-09-10 01:12:47 +0000677 // FIXME: When (3) is actually implemented, we'll have to emit the stubs
Chris Lattnerad88bc42009-08-02 03:59:56 +0000678 // somewhere. This predicate should be moved to a shared location that is
679 // in target-independent code.
680 //
Anton Korobeynikov9184b252010-02-15 22:35:59 +0000681 TTypeEncoding = Asm->getObjFileLowering().getTTypeEncoding();
Chris Lattnerd2af7852010-04-04 20:20:50 +0000682 TypeFormatSize = Asm->GetSizeOfEncodedValue(TTypeEncoding);
Bill Wendlingfe220282009-09-10 02:07:37 +0000683 }
Bill Wendling43e484f2009-09-10 01:12:47 +0000684
Bill Wendlingfe220282009-09-10 02:07:37 +0000685 // Begin the exception table.
686 Asm->OutStreamer.SwitchSection(LSDASection);
Chris Lattner059ea132010-04-28 01:05:45 +0000687 Asm->EmitAlignment(2);
Bill Wendling43e484f2009-09-10 01:12:47 +0000688
Bill Wendling3dc9b482010-02-24 23:34:35 +0000689 // Emit the LSDA.
Chris Lattner974c0fb2010-03-10 02:48:06 +0000690 MCSymbol *GCCETSym =
691 Asm->OutContext.GetOrCreateSymbol(Twine("GCC_except_table")+
Chris Lattner84ac8b72010-04-05 00:26:50 +0000692 Twine(Asm->getFunctionNumber()));
Chris Lattner974c0fb2010-03-10 02:48:06 +0000693 Asm->OutStreamer.EmitLabel(GCCETSym);
Chris Lattner84ac8b72010-04-05 00:26:50 +0000694 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("exception",
695 Asm->getFunctionNumber()));
Bill Wendlingfe220282009-09-10 02:07:37 +0000696
Chris Lattner974c0fb2010-03-10 02:48:06 +0000697 if (IsSJLJ)
Chris Lattnerc0215722010-04-04 19:25:43 +0000698 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("_LSDA_",
699 Asm->getFunctionNumber()));
Bill Wendlingfe220282009-09-10 02:07:37 +0000700
Bill Wendling3dc9b482010-02-24 23:34:35 +0000701 // Emit the LSDA header.
Chris Lattnerca6190b2010-04-04 20:04:21 +0000702 Asm->EmitEncodingByte(dwarf::DW_EH_PE_omit, "@LPStart");
703 Asm->EmitEncodingByte(TTypeEncoding, "@TType");
Bill Wendlingfe220282009-09-10 02:07:37 +0000704
Bill Wendling3dc9b482010-02-24 23:34:35 +0000705 // The type infos need to be aligned. GCC does this by inserting padding just
706 // before the type infos. However, this changes the size of the exception
707 // table, so you need to take this into account when you output the exception
708 // table size. However, the size is output using a variable length encoding.
709 // So by increasing the size by inserting padding, you may increase the number
710 // of bytes used for writing the size. If it increases, say by one byte, then
711 // you now need to output one less byte of padding to get the type infos
712 // aligned. However this decreases the size of the exception table. This
713 // changes the value you have to output for the exception table size. Due to
714 // the variable length encoding, the number of bytes used for writing the
715 // length may decrease. If so, you then have to increase the amount of
716 // padding. And so on. If you look carefully at the GCC code you will see that
717 // it indeed does this in a loop, going on and on until the values stabilize.
718 // We chose another solution: don't output padding inside the table like GCC
719 // does, instead output it before the table.
720 unsigned SizeTypes = TypeInfos.size() * TypeFormatSize;
721 unsigned CallSiteTableLengthSize =
722 MCAsmInfo::getULEB128Size(CallSiteTableLength);
723 unsigned TTypeBaseOffset =
724 sizeof(int8_t) + // Call site format
725 CallSiteTableLengthSize + // Call site table length size
726 CallSiteTableLength + // Call site table length
727 SizeActions + // Actions size
728 SizeTypes;
729 unsigned TTypeBaseOffsetSize = MCAsmInfo::getULEB128Size(TTypeBaseOffset);
730 unsigned TotalSize =
731 sizeof(int8_t) + // LPStart format
732 sizeof(int8_t) + // TType format
733 (HaveTTData ? TTypeBaseOffsetSize : 0) + // TType base offset size
734 TTypeBaseOffset; // TType base offset
735 unsigned SizeAlign = (4 - TotalSize) & 3;
736
Bill Wendling86f0d332010-02-25 23:52:44 +0000737 if (HaveTTData) {
Bill Wendling6507eca2010-02-26 21:31:01 +0000738 // Account for any extra padding that will be added to the call site table
Bill Wendlingf7e90ae2010-02-25 21:19:47 +0000739 // length.
Chris Lattner7e1a8f82010-04-04 19:09:29 +0000740 Asm->EmitULEB128(TTypeBaseOffset, "@TType base offset", SizeAlign);
Bill Wendling1869ac82010-02-26 22:17:52 +0000741 SizeAlign = 0;
Bill Wendling86f0d332010-02-25 23:52:44 +0000742 }
Bill Wendlingb0d9c3e2009-07-28 22:23:45 +0000743
Bill Wendling28275fd2009-09-10 06:50:01 +0000744 // SjLj Exception handling
Bill Wendlingd1a5b372009-09-10 00:17:04 +0000745 if (IsSJLJ) {
Chris Lattnerca6190b2010-04-04 20:04:21 +0000746 Asm->EmitEncodingByte(dwarf::DW_EH_PE_udata4, "Call site");
Bill Wendling1869ac82010-02-26 22:17:52 +0000747
748 // Add extra padding if it wasn't added to the TType base offset.
Chris Lattner7e1a8f82010-04-04 19:09:29 +0000749 Asm->EmitULEB128(CallSiteTableLength, "Call site table length", SizeAlign);
Bill Wendlingeb907212009-05-15 01:12:28 +0000750
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000751 // Emit the landing pad site information.
Jim Grosbach8b818d72009-08-17 16:41:22 +0000752 unsigned idx = 0;
753 for (SmallVectorImpl<CallSiteEntry>::const_iterator
754 I = CallSites.begin(), E = CallSites.end(); I != E; ++I, ++idx) {
755 const CallSiteEntry &S = *I;
Bill Wendlinga583c552009-08-20 22:02:24 +0000756
757 // Offset of the landing pad, counted in 16-byte bundles relative to the
758 // @LPStart address.
Chris Lattner7e1a8f82010-04-04 19:09:29 +0000759 Asm->EmitULEB128(idx, "Landing pad");
Bill Wendlinga583c552009-08-20 22:02:24 +0000760
761 // Offset of the first associated action record, relative to the start of
762 // the action table. This value is biased by 1 (1 indicates the start of
763 // the action table), and 0 indicates that there are no actions.
Chris Lattner7e1a8f82010-04-04 19:09:29 +0000764 Asm->EmitULEB128(S.Action, "Action");
Bill Wendlingeb907212009-05-15 01:12:28 +0000765 }
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000766 } else {
767 // DWARF Exception handling
Chris Lattner84ac8b72010-04-05 00:26:50 +0000768 assert(Asm->MAI->getExceptionHandlingType() == ExceptionHandling::Dwarf);
Bill Wendlingeb907212009-05-15 01:12:28 +0000769
Bill Wendlinga583c552009-08-20 22:02:24 +0000770 // The call-site table is a list of all call sites that may throw an
771 // exception (including C++ 'throw' statements) in the procedure
772 // fragment. It immediately follows the LSDA header. Each entry indicates,
773 // for a given call, the first corresponding action record and corresponding
774 // landing pad.
775 //
776 // The table begins with the number of bytes, stored as an LEB128
777 // compressed, unsigned integer. The records immediately follow the record
778 // count. They are sorted in increasing call-site address. Each record
779 // indicates:
780 //
781 // * The position of the call-site.
782 // * The position of the landing pad.
783 // * The first action record for that call site.
784 //
785 // A missing entry in the call-site table indicates that a call is not
Bill Wendling28275fd2009-09-10 06:50:01 +0000786 // supposed to throw.
Bill Wendlinga583c552009-08-20 22:02:24 +0000787
788 // Emit the landing pad call site table.
Chris Lattnerca6190b2010-04-04 20:04:21 +0000789 Asm->EmitEncodingByte(dwarf::DW_EH_PE_udata4, "Call site");
Bill Wendling1869ac82010-02-26 22:17:52 +0000790
791 // Add extra padding if it wasn't added to the TType base offset.
Chris Lattner7e1a8f82010-04-04 19:09:29 +0000792 Asm->EmitULEB128(CallSiteTableLength, "Call site table length", SizeAlign);
Bill Wendlingeb907212009-05-15 01:12:28 +0000793
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000794 for (SmallVectorImpl<CallSiteEntry>::const_iterator
795 I = CallSites.begin(), E = CallSites.end(); I != E; ++I) {
796 const CallSiteEntry &S = *I;
Chris Lattner16112732010-03-14 01:41:15 +0000797
Chris Lattnerc0215722010-04-04 19:25:43 +0000798 MCSymbol *EHFuncBeginSym =
Chris Lattner84ac8b72010-04-05 00:26:50 +0000799 Asm->GetTempSymbol("eh_func_begin", Asm->getFunctionNumber());
Chris Lattner16112732010-03-14 01:41:15 +0000800
801 MCSymbol *BeginLabel = S.BeginLabel;
802 if (BeginLabel == 0)
803 BeginLabel = EHFuncBeginSym;
804 MCSymbol *EndLabel = S.EndLabel;
805 if (EndLabel == 0)
Chris Lattner84ac8b72010-04-05 00:26:50 +0000806 EndLabel = Asm->GetTempSymbol("eh_func_end", Asm->getFunctionNumber());
Chris Lattner16112732010-03-14 01:41:15 +0000807
Bill Wendlinga583c552009-08-20 22:02:24 +0000808 // Offset of the call site relative to the previous call site, counted in
809 // number of 16-byte bundles. The first call site is counted relative to
810 // the start of the procedure fragment.
Chris Lattner233f52b2010-03-09 23:52:58 +0000811 Asm->OutStreamer.AddComment("Region start");
Chris Lattnerf88dce12010-04-04 21:31:54 +0000812 Asm->EmitLabelDifference(BeginLabel, EHFuncBeginSym, 4);
Chris Lattner16112732010-03-14 01:41:15 +0000813
Chris Lattner233f52b2010-03-09 23:52:58 +0000814 Asm->OutStreamer.AddComment("Region length");
Chris Lattnera6437182010-04-04 19:58:12 +0000815 Asm->EmitLabelDifference(EndLabel, BeginLabel, 4);
Bill Wendlingeb907212009-05-15 01:12:28 +0000816
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000817
Bill Wendlinga583c552009-08-20 22:02:24 +0000818 // Offset of the landing pad, counted in 16-byte bundles relative to the
819 // @LPStart address.
Chris Lattner233f52b2010-03-09 23:52:58 +0000820 Asm->OutStreamer.AddComment("Landing pad");
Chris Lattner16112732010-03-14 01:41:15 +0000821 if (!S.PadLabel)
Chris Lattnerbcb83e52010-01-20 07:41:15 +0000822 Asm->OutStreamer.EmitIntValue(0, 4/*size*/, 0/*addrspace*/);
Chris Lattner16112732010-03-14 01:41:15 +0000823 else
Chris Lattnerf88dce12010-04-04 21:31:54 +0000824 Asm->EmitLabelDifference(S.PadLabel, EHFuncBeginSym, 4);
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000825
Bill Wendlinga583c552009-08-20 22:02:24 +0000826 // Offset of the first associated action record, relative to the start of
827 // the action table. This value is biased by 1 (1 indicates the start of
828 // the action table), and 0 indicates that there are no actions.
Chris Lattner7e1a8f82010-04-04 19:09:29 +0000829 Asm->EmitULEB128(S.Action, "Action");
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000830 }
Bill Wendlingeb907212009-05-15 01:12:28 +0000831 }
832
Bill Wendlinga583c552009-08-20 22:02:24 +0000833 // Emit the Action Table.
Chris Lattner233f52b2010-03-09 23:52:58 +0000834 if (Actions.size() != 0) {
835 Asm->OutStreamer.AddComment("-- Action Record Table --");
836 Asm->OutStreamer.AddBlankLine();
837 }
838
Bill Wendling5cff4872009-07-28 23:44:43 +0000839 for (SmallVectorImpl<ActionEntry>::const_iterator
840 I = Actions.begin(), E = Actions.end(); I != E; ++I) {
841 const ActionEntry &Action = *I;
Chris Lattner233f52b2010-03-09 23:52:58 +0000842 Asm->OutStreamer.AddComment("Action Record");
843 Asm->OutStreamer.AddBlankLine();
Bill Wendlinga583c552009-08-20 22:02:24 +0000844
845 // Type Filter
846 //
847 // Used by the runtime to match the type of the thrown exception to the
848 // type of the catch clauses or the types in the exception specification.
Chris Lattner7e1a8f82010-04-04 19:09:29 +0000849 Asm->EmitSLEB128(Action.ValueForTypeID, " TypeInfo index");
Bill Wendlinga583c552009-08-20 22:02:24 +0000850
851 // Action Record
852 //
853 // Self-relative signed displacement in bytes of the next action record,
854 // or 0 if there is no next action record.
Chris Lattner7e1a8f82010-04-04 19:09:29 +0000855 Asm->EmitSLEB128(Action.NextAction, " Next action");
Bill Wendlingeb907212009-05-15 01:12:28 +0000856 }
857
Bill Wendling48dc29e2009-10-22 20:48:59 +0000858 // Emit the Catch TypeInfos.
Chris Lattner233f52b2010-03-09 23:52:58 +0000859 if (!TypeInfos.empty()) {
860 Asm->OutStreamer.AddComment("-- Catch TypeInfos --");
861 Asm->OutStreamer.AddBlankLine();
862 }
Dan Gohman46510a72010-04-15 01:51:59 +0000863 for (std::vector<const GlobalVariable *>::const_reverse_iterator
Bill Wendling01c69372009-11-19 00:09:14 +0000864 I = TypeInfos.rbegin(), E = TypeInfos.rend(); I != E; ++I) {
Bill Wendlingfb7634f2009-11-19 19:21:09 +0000865 const GlobalVariable *GV = *I;
Bill Wendlingec044582009-11-18 23:18:46 +0000866
Chris Lattner90e4af72010-03-10 00:09:21 +0000867 Asm->OutStreamer.AddComment("TypeInfo");
868 if (GV)
Chris Lattnerd2af7852010-04-04 20:20:50 +0000869 Asm->EmitReference(GV, TTypeEncoding);
Chris Lattner90e4af72010-03-10 00:09:21 +0000870 else
Chris Lattnerd2af7852010-04-04 20:20:50 +0000871 Asm->OutStreamer.EmitIntValue(0,Asm->GetSizeOfEncodedValue(TTypeEncoding),
872 0);
Bill Wendlingeb907212009-05-15 01:12:28 +0000873 }
874
Bill Wendling48dc29e2009-10-22 20:48:59 +0000875 // Emit the Exception Specifications.
Chris Lattner233f52b2010-03-09 23:52:58 +0000876 if (!FilterIds.empty()) {
877 Asm->OutStreamer.AddComment("-- Filter IDs --");
878 Asm->OutStreamer.AddBlankLine();
879 }
Bill Wendling5cff4872009-07-28 23:44:43 +0000880 for (std::vector<unsigned>::const_iterator
881 I = FilterIds.begin(), E = FilterIds.end(); I < E; ++I) {
882 unsigned TypeID = *I;
Chris Lattner7e1a8f82010-04-04 19:09:29 +0000883 Asm->EmitULEB128(TypeID, TypeID != 0 ? "Exception specification" : 0);
Bill Wendlingeb907212009-05-15 01:12:28 +0000884 }
885
Chris Lattner059ea132010-04-28 01:05:45 +0000886 Asm->EmitAlignment(2);
Bill Wendlingeb907212009-05-15 01:12:28 +0000887}
888
Bill Wendlingeb907212009-05-15 01:12:28 +0000889/// EndModule - Emit all exception information that should come after the
890/// content.
891void DwarfException::EndModule() {
Chris Lattner84ac8b72010-04-05 00:26:50 +0000892 if (Asm->MAI->getExceptionHandlingType() != ExceptionHandling::Dwarf)
Jim Grosbach1b747ad2009-08-11 00:09:57 +0000893 return;
Bill Wendlingb4049fe2009-09-09 21:06:24 +0000894
Bill Wendling52783c62009-09-09 23:56:55 +0000895 if (!shouldEmitMovesModule && !shouldEmitTableModule)
896 return;
897
Bill Wendling57dba1c2010-08-01 01:34:21 +0000898 const std::vector<const Function*> &Personalities = MMI->getPersonalities();
Bill Wendlingb4049fe2009-09-09 21:06:24 +0000899
Bill Wendling28275fd2009-09-10 06:50:01 +0000900 for (unsigned I = 0, E = Personalities.size(); I < E; ++I)
901 EmitCIE(Personalities[I], I);
Bill Wendlingeb907212009-05-15 01:12:28 +0000902
Bill Wendling52783c62009-09-09 23:56:55 +0000903 for (std::vector<FunctionEHFrameInfo>::iterator
904 I = EHFrames.begin(), E = EHFrames.end(); I != E; ++I)
905 EmitFDE(*I);
Bill Wendlingeb907212009-05-15 01:12:28 +0000906}
907
Bill Wendling28275fd2009-09-10 06:50:01 +0000908/// BeginFunction - Gather pre-function exception information. Assumes it's
909/// being emitted immediately after the function entry point.
Chris Lattnereec791a2010-01-26 23:18:02 +0000910void DwarfException::BeginFunction(const MachineFunction *MF) {
Bill Wendlingeb907212009-05-15 01:12:28 +0000911 shouldEmitTable = shouldEmitMoves = false;
912
Bill Wendling73c5a612009-09-10 18:28:06 +0000913 // If any landing pads survive, we need an EH table.
Chris Lattner16112732010-03-14 01:41:15 +0000914 shouldEmitTable = !MMI->getLandingPads().empty();
Bill Wendlingeb907212009-05-15 01:12:28 +0000915
Bill Wendling73c5a612009-09-10 18:28:06 +0000916 // See if we need frame move info.
Chris Lattner84ac8b72010-04-05 00:26:50 +0000917 shouldEmitMoves =
918 !Asm->MF->getFunction()->doesNotThrow() || UnwindTablesMandatory;
Bill Wendlingeb907212009-05-15 01:12:28 +0000919
Bill Wendling73c5a612009-09-10 18:28:06 +0000920 if (shouldEmitMoves || shouldEmitTable)
921 // Assumes in correct section after the entry point.
Chris Lattnerc0215722010-04-04 19:25:43 +0000922 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("eh_func_begin",
Chris Lattner84ac8b72010-04-05 00:26:50 +0000923 Asm->getFunctionNumber()));
Bill Wendlingeb907212009-05-15 01:12:28 +0000924
925 shouldEmitTableModule |= shouldEmitTable;
926 shouldEmitMovesModule |= shouldEmitMoves;
Bill Wendlingeb907212009-05-15 01:12:28 +0000927}
928
929/// EndFunction - Gather and emit post-function exception information.
930///
931void DwarfException::EndFunction() {
Bill Wendling7b09a6c2009-09-09 21:08:12 +0000932 if (!shouldEmitMoves && !shouldEmitTable) return;
933
Chris Lattner84ac8b72010-04-05 00:26:50 +0000934 Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("eh_func_end",
935 Asm->getFunctionNumber()));
Chris Lattner16112732010-03-14 01:41:15 +0000936
937 // Record if this personality index uses a landing pad.
938 bool HasLandingPad = !MMI->getLandingPads().empty();
939 UsesLSDA[MMI->getPersonalityIndex()] |= HasLandingPad;
940
941 // Map all labels and get rid of any dead landing pads.
942 MMI->TidyLandingPads();
943
944 if (HasLandingPad)
945 EmitExceptionTable();
Bill Wendlingeb907212009-05-15 01:12:28 +0000946
Chris Lattner09d53fe2010-03-10 07:20:42 +0000947 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
Chris Lattner3a9be0e2010-01-23 05:51:36 +0000948 MCSymbol *FunctionEHSym =
Chris Lattner84ac8b72010-04-05 00:26:50 +0000949 Asm->GetSymbolWithGlobalValueBase(Asm->MF->getFunction(), ".eh",
Chris Lattner09d53fe2010-03-10 07:20:42 +0000950 TLOF.isFunctionEHFrameSymbolPrivate());
Chris Lattner25d812b2009-09-16 00:35:39 +0000951
Bill Wendling7b09a6c2009-09-09 21:08:12 +0000952 // Save EH frame information
Bill Wendlingb92187a2010-05-14 21:14:32 +0000953 EHFrames.
954 push_back(FunctionEHFrameInfo(FunctionEHSym,
955 Asm->getFunctionNumber(),
956 MMI->getPersonalityIndex(),
957 Asm->MF->getFrameInfo()->adjustsStack(),
958 !MMI->getLandingPads().empty(),
959 MMI->getFrameMoves(),
960 Asm->MF->getFunction()));
Bill Wendlingeb907212009-05-15 01:12:28 +0000961}