blob: 6039ef56f2eb90d570cfad4e3af029f0fd360828 [file] [log] [blame]
Dan Gohmanf0cbcd42008-09-03 16:12:24 +00001//===-- SelectionDAGBuild.h - Selection-DAG building ----------------------===//
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//
10// This implements routines for translating from LLVM IR into SelectionDAG IR.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef SELECTIONDAGBUILD_H
15#define SELECTIONDAGBUILD_H
16
17#include "llvm/Constants.h"
18#include "llvm/ADT/APInt.h"
19#include "llvm/ADT/DenseMap.h"
20#ifndef NDEBUG
21#include "llvm/ADT/SmallSet.h"
22#endif
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000023#include "llvm/CodeGen/SelectionDAGNodes.h"
Bill Wendling0eb96fd2009-02-03 01:32:22 +000024#include "llvm/CodeGen/ValueTypes.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000025#include "llvm/Support/CallSite.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000026#include "llvm/Support/ErrorHandling.h"
Bill Wendling98a366d2009-04-29 23:29:43 +000027#include "llvm/Target/TargetMachine.h"
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000028#include <vector>
29#include <set>
30
31namespace llvm {
32
33class AliasAnalysis;
34class AllocaInst;
35class BasicBlock;
36class BitCastInst;
37class BranchInst;
38class CallInst;
39class ExtractElementInst;
40class ExtractValueInst;
41class FCmpInst;
42class FPExtInst;
43class FPToSIInst;
44class FPToUIInst;
45class FPTruncInst;
46class FreeInst;
47class Function;
48class GetElementPtrInst;
49class GCFunctionInfo;
50class ICmpInst;
51class IntToPtrInst;
52class InvokeInst;
53class InsertElementInst;
54class InsertValueInst;
55class Instruction;
56class LoadInst;
57class MachineBasicBlock;
58class MachineFunction;
59class MachineInstr;
60class MachineModuleInfo;
61class MachineRegisterInfo;
62class MallocInst;
63class PHINode;
64class PtrToIntInst;
65class ReturnInst;
66class SDISelAsmOperandInfo;
67class SExtInst;
68class SelectInst;
69class ShuffleVectorInst;
70class SIToFPInst;
71class StoreInst;
72class SwitchInst;
73class TargetData;
74class TargetLowering;
75class TruncInst;
76class UIToFPInst;
77class UnreachableInst;
78class UnwindInst;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +000079class VAArgInst;
80class ZExtInst;
81
82//===--------------------------------------------------------------------===//
83/// FunctionLoweringInfo - This contains information that is global to a
84/// function that is used when lowering a region of the function.
85///
86class FunctionLoweringInfo {
87public:
88 TargetLowering &TLI;
89 Function *Fn;
90 MachineFunction *MF;
91 MachineRegisterInfo *RegInfo;
92
93 explicit FunctionLoweringInfo(TargetLowering &TLI);
94
95 /// set - Initialize this FunctionLoweringInfo with the given Function
96 /// and its associated MachineFunction.
97 ///
Bill Wendling6a8a0d72009-02-03 02:20:52 +000098 void set(Function &Fn, MachineFunction &MF, SelectionDAG &DAG,
99 bool EnableFastISel);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000100
101 /// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
102 DenseMap<const BasicBlock*, MachineBasicBlock *> MBBMap;
103
104 /// ValueMap - Since we emit code for the function a basic block at a time,
105 /// we must remember which virtual registers hold the values for
106 /// cross-basic-block values.
107 DenseMap<const Value*, unsigned> ValueMap;
108
109 /// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
110 /// the entry block. This allows the allocas to be efficiently referenced
111 /// anywhere in the function.
112 DenseMap<const AllocaInst*, int> StaticAllocaMap;
113
114#ifndef NDEBUG
115 SmallSet<Instruction*, 8> CatchInfoLost;
116 SmallSet<Instruction*, 8> CatchInfoFound;
117#endif
118
119 unsigned MakeReg(MVT VT);
120
121 /// isExportedInst - Return true if the specified value is an instruction
122 /// exported from its block.
123 bool isExportedInst(const Value *V) {
124 return ValueMap.count(V);
125 }
126
127 unsigned CreateRegForValue(const Value *V);
128
129 unsigned InitializeRegForValue(const Value *V) {
130 unsigned &R = ValueMap[V];
131 assert(R == 0 && "Already initialized this value register!");
132 return R = CreateRegForValue(V);
133 }
134
135 struct LiveOutInfo {
136 unsigned NumSignBits;
137 APInt KnownOne, KnownZero;
Dan Gohman84d08db2009-03-27 23:51:02 +0000138 LiveOutInfo() : NumSignBits(0), KnownOne(1, 0), KnownZero(1, 0) {}
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000139 };
140
141 /// LiveOutRegInfo - Information about live out vregs, indexed by their
142 /// register number offset by 'FirstVirtualRegister'.
143 std::vector<LiveOutInfo> LiveOutRegInfo;
144
145 /// clear - Clear out all the function-specific state. This returns this
146 /// FunctionLoweringInfo to an empty state, ready to be used for a
147 /// different function.
148 void clear() {
149 MBBMap.clear();
150 ValueMap.clear();
151 StaticAllocaMap.clear();
152#ifndef NDEBUG
153 CatchInfoLost.clear();
154 CatchInfoFound.clear();
155#endif
156 LiveOutRegInfo.clear();
157 }
158};
159
160//===----------------------------------------------------------------------===//
161/// SelectionDAGLowering - This is the common target-independent lowering
162/// implementation that is parameterized by a TargetLowering object.
163/// Also, targets can overload any lowering method.
164///
165class SelectionDAGLowering {
166 MachineBasicBlock *CurMBB;
167
Dale Johannesen66978ee2009-01-31 02:22:37 +0000168 /// CurDebugLoc - current file + line number. Changes as we build the DAG.
169 DebugLoc CurDebugLoc;
170
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000171 DenseMap<const Value*, SDValue> NodeMap;
172
173 /// PendingLoads - Loads are not emitted to the program immediately. We bunch
174 /// them up and then emit token factor nodes when possible. This allows us to
175 /// get simple disambiguation between loads without worrying about alias
176 /// analysis.
177 SmallVector<SDValue, 8> PendingLoads;
178
179 /// PendingExports - CopyToReg nodes that copy values to virtual registers
180 /// for export to other blocks need to be emitted before any terminator
181 /// instruction, but they have no other ordering requirements. We bunch them
182 /// up and the emit a single tokenfactor for them just before terminator
183 /// instructions.
184 SmallVector<SDValue, 8> PendingExports;
185
186 /// Case - A struct to record the Value for a switch case, and the
187 /// case's target basic block.
188 struct Case {
189 Constant* Low;
190 Constant* High;
191 MachineBasicBlock* BB;
192
193 Case() : Low(0), High(0), BB(0) { }
194 Case(Constant* low, Constant* high, MachineBasicBlock* bb) :
195 Low(low), High(high), BB(bb) { }
196 uint64_t size() const {
197 uint64_t rHigh = cast<ConstantInt>(High)->getSExtValue();
198 uint64_t rLow = cast<ConstantInt>(Low)->getSExtValue();
199 return (rHigh - rLow + 1ULL);
200 }
201 };
202
203 struct CaseBits {
204 uint64_t Mask;
205 MachineBasicBlock* BB;
206 unsigned Bits;
207
208 CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits):
209 Mask(mask), BB(bb), Bits(bits) { }
210 };
211
212 typedef std::vector<Case> CaseVector;
213 typedef std::vector<CaseBits> CaseBitsVector;
214 typedef CaseVector::iterator CaseItr;
215 typedef std::pair<CaseItr, CaseItr> CaseRange;
216
217 /// CaseRec - A struct with ctor used in lowering switches to a binary tree
218 /// of conditional branches.
219 struct CaseRec {
220 CaseRec(MachineBasicBlock *bb, Constant *lt, Constant *ge, CaseRange r) :
221 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
222
223 /// CaseBB - The MBB in which to emit the compare and branch
224 MachineBasicBlock *CaseBB;
225 /// LT, GE - If nonzero, we know the current case value must be less-than or
226 /// greater-than-or-equal-to these Constants.
227 Constant *LT;
228 Constant *GE;
229 /// Range - A pair of iterators representing the range of case values to be
230 /// processed at this point in the binary search tree.
231 CaseRange Range;
232 };
233
234 typedef std::vector<CaseRec> CaseRecVector;
235
236 /// The comparison function for sorting the switch case values in the vector.
237 /// WARNING: Case ranges should be disjoint!
238 struct CaseCmp {
239 bool operator () (const Case& C1, const Case& C2) {
240 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
241 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
242 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
243 return CI1->getValue().slt(CI2->getValue());
244 }
245 };
246
247 struct CaseBitsCmp {
248 bool operator () (const CaseBits& C1, const CaseBits& C2) {
249 return C1.Bits > C2.Bits;
250 }
251 };
252
Anton Korobeynikov23218582008-12-23 22:25:27 +0000253 size_t Clusterify(CaseVector& Cases, const SwitchInst &SI);
254
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000255 /// CaseBlock - This structure is used to communicate between SDLowering and
256 /// SDISel for the code generation of additional basic blocks needed by multi-
257 /// case switch statements.
258 struct CaseBlock {
259 CaseBlock(ISD::CondCode cc, Value *cmplhs, Value *cmprhs, Value *cmpmiddle,
260 MachineBasicBlock *truebb, MachineBasicBlock *falsebb,
261 MachineBasicBlock *me)
262 : CC(cc), CmpLHS(cmplhs), CmpMHS(cmpmiddle), CmpRHS(cmprhs),
263 TrueBB(truebb), FalseBB(falsebb), ThisBB(me) {}
264 // CC - the condition code to use for the case block's setcc node
265 ISD::CondCode CC;
266 // CmpLHS/CmpRHS/CmpMHS - The LHS/MHS/RHS of the comparison to emit.
267 // Emit by default LHS op RHS. MHS is used for range comparisons:
268 // If MHS is not null: (LHS <= MHS) and (MHS <= RHS).
269 Value *CmpLHS, *CmpMHS, *CmpRHS;
270 // TrueBB/FalseBB - the block to branch to if the setcc is true/false.
271 MachineBasicBlock *TrueBB, *FalseBB;
272 // ThisBB - the block into which to emit the code for the setcc and branches
273 MachineBasicBlock *ThisBB;
274 };
275 struct JumpTable {
276 JumpTable(unsigned R, unsigned J, MachineBasicBlock *M,
277 MachineBasicBlock *D): Reg(R), JTI(J), MBB(M), Default(D) {}
278
279 /// Reg - the virtual register containing the index of the jump table entry
280 //. to jump to.
281 unsigned Reg;
282 /// JTI - the JumpTableIndex for this jump table in the function.
283 unsigned JTI;
284 /// MBB - the MBB into which to emit the code for the indirect jump.
285 MachineBasicBlock *MBB;
286 /// Default - the MBB of the default bb, which is a successor of the range
287 /// check MBB. This is when updating PHI nodes in successors.
288 MachineBasicBlock *Default;
289 };
290 struct JumpTableHeader {
Anton Korobeynikov23218582008-12-23 22:25:27 +0000291 JumpTableHeader(APInt F, APInt L, Value* SV, MachineBasicBlock* H,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000292 bool E = false):
293 First(F), Last(L), SValue(SV), HeaderBB(H), Emitted(E) {}
Anton Korobeynikov23218582008-12-23 22:25:27 +0000294 APInt First;
295 APInt Last;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000296 Value *SValue;
297 MachineBasicBlock *HeaderBB;
298 bool Emitted;
299 };
300 typedef std::pair<JumpTableHeader, JumpTable> JumpTableBlock;
301
302 struct BitTestCase {
303 BitTestCase(uint64_t M, MachineBasicBlock* T, MachineBasicBlock* Tr):
304 Mask(M), ThisBB(T), TargetBB(Tr) { }
305 uint64_t Mask;
306 MachineBasicBlock* ThisBB;
307 MachineBasicBlock* TargetBB;
308 };
309
310 typedef SmallVector<BitTestCase, 3> BitTestInfo;
311
312 struct BitTestBlock {
Anton Korobeynikov23218582008-12-23 22:25:27 +0000313 BitTestBlock(APInt F, APInt R, Value* SV,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000314 unsigned Rg, bool E,
315 MachineBasicBlock* P, MachineBasicBlock* D,
316 const BitTestInfo& C):
317 First(F), Range(R), SValue(SV), Reg(Rg), Emitted(E),
318 Parent(P), Default(D), Cases(C) { }
Anton Korobeynikov23218582008-12-23 22:25:27 +0000319 APInt First;
320 APInt Range;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000321 Value *SValue;
322 unsigned Reg;
323 bool Emitted;
324 MachineBasicBlock *Parent;
325 MachineBasicBlock *Default;
326 BitTestInfo Cases;
327 };
328
329public:
330 // TLI - This is information that describes the available target features we
331 // need for lowering. This indicates when operations are unavailable,
332 // implemented with a libcall, etc.
333 TargetLowering &TLI;
334 SelectionDAG &DAG;
335 const TargetData *TD;
336 AliasAnalysis *AA;
337
338 /// SwitchCases - Vector of CaseBlock structures used to communicate
339 /// SwitchInst code generation information.
340 std::vector<CaseBlock> SwitchCases;
341 /// JTCases - Vector of JumpTable structures used to communicate
342 /// SwitchInst code generation information.
343 std::vector<JumpTableBlock> JTCases;
344 /// BitTestCases - Vector of BitTestBlock structures used to communicate
345 /// SwitchInst code generation information.
346 std::vector<BitTestBlock> BitTestCases;
347
348 std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
349
350 // Emit PHI-node-operand constants only once even if used by multiple
351 // PHI nodes.
352 DenseMap<Constant*, unsigned> ConstantsOut;
353
354 /// FuncInfo - Information about the function as a whole.
355 ///
356 FunctionLoweringInfo &FuncInfo;
Bill Wendlingdfdacee2009-02-19 21:12:54 +0000357
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000358 /// OptLevel - What optimization level we're generating code for.
Bill Wendlingdfdacee2009-02-19 21:12:54 +0000359 ///
Bill Wendling98a366d2009-04-29 23:29:43 +0000360 CodeGenOpt::Level OptLevel;
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000361
362 /// GFI - Garbage collection metadata for the function.
363 GCFunctionInfo *GFI;
364
365 SelectionDAGLowering(SelectionDAG &dag, TargetLowering &tli,
Bill Wendling98a366d2009-04-29 23:29:43 +0000366 FunctionLoweringInfo &funcinfo,
367 CodeGenOpt::Level ol)
Dale Johannesen66978ee2009-01-31 02:22:37 +0000368 : CurDebugLoc(DebugLoc::getUnknownLoc()),
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000369 TLI(tli), DAG(dag), FuncInfo(funcinfo), OptLevel(ol) {
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000370 }
371
372 void init(GCFunctionInfo *gfi, AliasAnalysis &aa);
373
374 /// clear - Clear out the curret SelectionDAG and the associated
375 /// state and prepare this SelectionDAGLowering object to be used
376 /// for a new block. This doesn't clear out information about
377 /// additional blocks that are needed to complete switch lowering
378 /// or PHI node updating; that information is cleared out as it is
379 /// consumed.
380 void clear();
381
382 /// getRoot - Return the current virtual root of the Selection DAG,
383 /// flushing any PendingLoad items. This must be done before emitting
384 /// a store or any other node that may need to be ordered after any
385 /// prior load instructions.
386 ///
387 SDValue getRoot();
388
389 /// getControlRoot - Similar to getRoot, but instead of flushing all the
390 /// PendingLoad items, flush all the PendingExports items. It is necessary
391 /// to do this before emitting a terminator instruction.
392 ///
393 SDValue getControlRoot();
394
Dale Johannesen66978ee2009-01-31 02:22:37 +0000395 DebugLoc getCurDebugLoc() const { return CurDebugLoc; }
Devang Patel390f3ac2009-04-16 01:33:10 +0000396 void setCurDebugLoc(DebugLoc dl) { CurDebugLoc = dl; }
Dale Johannesen66978ee2009-01-31 02:22:37 +0000397
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000398 void CopyValueToVirtualRegister(Value *V, unsigned Reg);
399
400 void visit(Instruction &I);
401
402 void visit(unsigned Opcode, User &I);
403
404 void setCurrentBasicBlock(MachineBasicBlock *MBB) { CurMBB = MBB; }
405
406 SDValue getValue(const Value *V);
407
408 void setValue(const Value *V, SDValue NewN) {
409 SDValue &N = NodeMap[V];
410 assert(N.getNode() == 0 && "Already set a value for this node!");
411 N = NewN;
412 }
413
Dale Johannesen8e3455b2008-09-24 23:13:09 +0000414 void GetRegistersForValue(SDISelAsmOperandInfo &OpInfo,
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000415 std::set<unsigned> &OutputRegs,
416 std::set<unsigned> &InputRegs);
417
418 void FindMergedConditions(Value *Cond, MachineBasicBlock *TBB,
419 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
420 unsigned Opc);
Dan Gohmanc2277342008-10-17 21:16:08 +0000421 void EmitBranchForMergedCondition(Value *Cond, MachineBasicBlock *TBB,
422 MachineBasicBlock *FBB,
423 MachineBasicBlock *CurBB);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000424 bool ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases);
425 bool isExportableFromCurrentBlock(Value *V, const BasicBlock *FromBB);
Dan Gohmanad62f532009-04-23 23:13:24 +0000426 void CopyToExportRegsIfNeeded(Value *V);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000427 void ExportFromCurrentBlock(Value *V);
428 void LowerCallTo(CallSite CS, SDValue Callee, bool IsTailCall,
429 MachineBasicBlock *LandingPad = NULL);
430
431private:
432 // Terminator instructions.
433 void visitRet(ReturnInst &I);
434 void visitBr(BranchInst &I);
435 void visitSwitch(SwitchInst &I);
436 void visitUnreachable(UnreachableInst &I) { /* noop */ }
437
438 // Helpers for visitSwitch
439 bool handleSmallSwitchRange(CaseRec& CR,
440 CaseRecVector& WorkList,
441 Value* SV,
442 MachineBasicBlock* Default);
443 bool handleJTSwitchCase(CaseRec& CR,
444 CaseRecVector& WorkList,
445 Value* SV,
446 MachineBasicBlock* Default);
447 bool handleBTSplitSwitchCase(CaseRec& CR,
448 CaseRecVector& WorkList,
449 Value* SV,
450 MachineBasicBlock* Default);
451 bool handleBitTestsSwitchCase(CaseRec& CR,
452 CaseRecVector& WorkList,
453 Value* SV,
454 MachineBasicBlock* Default);
455public:
456 void visitSwitchCase(CaseBlock &CB);
457 void visitBitTestHeader(BitTestBlock &B);
458 void visitBitTestCase(MachineBasicBlock* NextMBB,
459 unsigned Reg,
460 BitTestCase &B);
461 void visitJumpTable(JumpTable &JT);
462 void visitJumpTableHeader(JumpTable &JT, JumpTableHeader &JTH);
463
464private:
465 // These all get lowered before this pass.
466 void visitInvoke(InvokeInst &I);
467 void visitUnwind(UnwindInst &I);
468
469 void visitBinary(User &I, unsigned OpCode);
470 void visitShift(User &I, unsigned Opcode);
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000471 void visitAdd(User &I) { visitBinary(I, ISD::ADD); }
472 void visitFAdd(User &I) { visitBinary(I, ISD::FADD); }
473 void visitSub(User &I) { visitBinary(I, ISD::SUB); }
474 void visitFSub(User &I);
475 void visitMul(User &I) { visitBinary(I, ISD::MUL); }
476 void visitFMul(User &I) { visitBinary(I, ISD::FMUL); }
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000477 void visitURem(User &I) { visitBinary(I, ISD::UREM); }
478 void visitSRem(User &I) { visitBinary(I, ISD::SREM); }
479 void visitFRem(User &I) { visitBinary(I, ISD::FREM); }
480 void visitUDiv(User &I) { visitBinary(I, ISD::UDIV); }
481 void visitSDiv(User &I) { visitBinary(I, ISD::SDIV); }
482 void visitFDiv(User &I) { visitBinary(I, ISD::FDIV); }
483 void visitAnd (User &I) { visitBinary(I, ISD::AND); }
484 void visitOr (User &I) { visitBinary(I, ISD::OR); }
485 void visitXor (User &I) { visitBinary(I, ISD::XOR); }
486 void visitShl (User &I) { visitShift(I, ISD::SHL); }
487 void visitLShr(User &I) { visitShift(I, ISD::SRL); }
488 void visitAShr(User &I) { visitShift(I, ISD::SRA); }
489 void visitICmp(User &I);
490 void visitFCmp(User &I);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000491 // Visit the conversion instructions
492 void visitTrunc(User &I);
493 void visitZExt(User &I);
494 void visitSExt(User &I);
495 void visitFPTrunc(User &I);
496 void visitFPExt(User &I);
497 void visitFPToUI(User &I);
498 void visitFPToSI(User &I);
499 void visitUIToFP(User &I);
500 void visitSIToFP(User &I);
501 void visitPtrToInt(User &I);
502 void visitIntToPtr(User &I);
503 void visitBitCast(User &I);
504
505 void visitExtractElement(User &I);
506 void visitInsertElement(User &I);
507 void visitShuffleVector(User &I);
508
509 void visitExtractValue(ExtractValueInst &I);
510 void visitInsertValue(InsertValueInst &I);
511
512 void visitGetElementPtr(User &I);
513 void visitSelect(User &I);
514
515 void visitMalloc(MallocInst &I);
516 void visitFree(FreeInst &I);
517 void visitAlloca(AllocaInst &I);
518 void visitLoad(LoadInst &I);
519 void visitStore(StoreInst &I);
520 void visitPHI(PHINode &I) { } // PHI nodes are handled specially.
521 void visitCall(CallInst &I);
522 void visitInlineAsm(CallSite CS);
523 const char *visitIntrinsicCall(CallInst &I, unsigned Intrinsic);
524 void visitTargetIntrinsic(CallInst &I, unsigned Intrinsic);
525
Bill Wendlingaeb5c7b2008-09-10 00:20:20 +0000526 void visitPow(CallInst &I);
Dale Johannesen601d3c02008-09-05 01:48:15 +0000527 void visitExp2(CallInst &I);
Dale Johannesen59e577f2008-09-05 18:38:42 +0000528 void visitExp(CallInst &I);
529 void visitLog(CallInst &I);
530 void visitLog2(CallInst &I);
531 void visitLog10(CallInst &I);
Dale Johannesen601d3c02008-09-05 01:48:15 +0000532
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000533 void visitVAStart(CallInst &I);
534 void visitVAArg(VAArgInst &I);
535 void visitVAEnd(CallInst &I);
536 void visitVACopy(CallInst &I);
537
538 void visitUserOp1(Instruction &I) {
Torok Edwinc25e7582009-07-11 20:10:48 +0000539 LLVM_UNREACHABLE("UserOp1 should not exist at instruction selection time!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000540 }
541 void visitUserOp2(Instruction &I) {
Torok Edwinc25e7582009-07-11 20:10:48 +0000542 LLVM_UNREACHABLE("UserOp2 should not exist at instruction selection time!");
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000543 }
544
545 const char *implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op);
Bill Wendling74c37652008-12-09 22:08:41 +0000546 const char *implVisitAluOverflow(CallInst &I, ISD::NodeType Op);
Dan Gohmanf0cbcd42008-09-03 16:12:24 +0000547};
548
549/// AddCatchInfo - Extract the personality and type infos from an eh.selector
550/// call, and add them to the specified machine basic block.
551void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI,
552 MachineBasicBlock *MBB);
553
554} // end namespace llvm
555
556#endif