| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125 |
- //===-- llvm/Instructions.h - Instruction subclass definitions --*- C++ -*-===//
- //
- // The LLVM Compiler Infrastructure
- //
- // This file is distributed under the University of Illinois Open Source
- // License. See LICENSE.TXT for details.
- //
- //===----------------------------------------------------------------------===//
- //
- // This file exposes the class definitions of all of the subclasses of the
- // Instruction class. This is meant to be an easy way to get access to all
- // instruction subclasses.
- //
- //===----------------------------------------------------------------------===//
- #ifndef LLVM_IR_INSTRUCTIONS_H
- #define LLVM_IR_INSTRUCTIONS_H
- #include "llvm/ADT/ArrayRef.h"
- #include "llvm/ADT/SmallVector.h"
- #include "llvm/ADT/iterator_range.h"
- #include "llvm/IR/Attributes.h"
- #include "llvm/IR/CallingConv.h"
- #include "llvm/IR/DerivedTypes.h"
- #include "llvm/IR/Function.h"
- #include "llvm/IR/InstrTypes.h"
- #include "llvm/Support/ErrorHandling.h"
- #include <iterator>
- namespace llvm {
- class APInt;
- class ConstantInt;
- class ConstantRange;
- class DataLayout;
- class LLVMContext;
- enum AtomicOrdering {
- NotAtomic = 0,
- Unordered = 1,
- Monotonic = 2,
- // Consume = 3, // Not specified yet.
- Acquire = 4,
- Release = 5,
- AcquireRelease = 6,
- SequentiallyConsistent = 7
- };
- enum SynchronizationScope {
- SingleThread = 0,
- CrossThread = 1
- };
- /// Returns true if the ordering is at least as strong as acquire
- /// (i.e. acquire, acq_rel or seq_cst)
- inline bool isAtLeastAcquire(AtomicOrdering Ord) {
- return (Ord == Acquire ||
- Ord == AcquireRelease ||
- Ord == SequentiallyConsistent);
- }
- /// Returns true if the ordering is at least as strong as release
- /// (i.e. release, acq_rel or seq_cst)
- inline bool isAtLeastRelease(AtomicOrdering Ord) {
- return (Ord == Release ||
- Ord == AcquireRelease ||
- Ord == SequentiallyConsistent);
- }
- //===----------------------------------------------------------------------===//
- // AllocaInst Class
- //===----------------------------------------------------------------------===//
- /// AllocaInst - an instruction to allocate memory on the stack
- ///
- class AllocaInst : public UnaryInstruction {
- Type *AllocatedType;
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- AllocaInst *cloneImpl() const;
- public:
- explicit AllocaInst(Type *Ty, Value *ArraySize = nullptr,
- const Twine &Name = "",
- Instruction *InsertBefore = nullptr);
- AllocaInst(Type *Ty, Value *ArraySize,
- const Twine &Name, BasicBlock *InsertAtEnd);
- AllocaInst(Type *Ty, const Twine &Name, Instruction *InsertBefore = nullptr);
- AllocaInst(Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd);
- AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
- const Twine &Name = "", Instruction *InsertBefore = nullptr);
- AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
- const Twine &Name, BasicBlock *InsertAtEnd);
- // Out of line virtual method, so the vtable, etc. has a home.
- ~AllocaInst() override;
- /// isArrayAllocation - Return true if there is an allocation size parameter
- /// to the allocation instruction that is not 1.
- ///
- bool isArrayAllocation() const;
- /// getArraySize - Get the number of elements allocated. For a simple
- /// allocation of a single element, this will return a constant 1 value.
- ///
- const Value *getArraySize() const { return getOperand(0); }
- Value *getArraySize() { return getOperand(0); }
- /// getType - Overload to return most specific pointer type
- ///
- PointerType *getType() const {
- return cast<PointerType>(Instruction::getType());
- }
- /// getAllocatedType - Return the type that is being allocated by the
- /// instruction.
- ///
- Type *getAllocatedType() const { return AllocatedType; }
- /// \brief for use only in special circumstances that need to generically
- /// transform a whole instruction (eg: IR linking and vectorization).
- void setAllocatedType(Type *Ty) { AllocatedType = Ty; }
- /// getAlignment - Return the alignment of the memory that is being allocated
- /// by the instruction.
- ///
- unsigned getAlignment() const {
- return (1u << (getSubclassDataFromInstruction() & 31)) >> 1;
- }
- void setAlignment(unsigned Align);
- /// isStaticAlloca - Return true if this alloca is in the entry block of the
- /// function and is a constant size. If so, the code generator will fold it
- /// into the prolog/epilog code, so it is basically free.
- bool isStaticAlloca() const;
- /// \brief Return true if this alloca is used as an inalloca argument to a
- /// call. Such allocas are never considered static even if they are in the
- /// entry block.
- bool isUsedWithInAlloca() const {
- return getSubclassDataFromInstruction() & 32;
- }
- /// \brief Specify whether this alloca is used to represent the arguments to
- /// a call.
- void setUsedWithInAlloca(bool V) {
- setInstructionSubclassData((getSubclassDataFromInstruction() & ~32) |
- (V ? 32 : 0));
- }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return (I->getOpcode() == Instruction::Alloca);
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- private:
- // Shadow Instruction::setInstructionSubclassData with a private forwarding
- // method so that subclasses cannot accidentally use it.
- void setInstructionSubclassData(unsigned short D) {
- Instruction::setInstructionSubclassData(D);
- }
- };
- //===----------------------------------------------------------------------===//
- // LoadInst Class
- //===----------------------------------------------------------------------===//
- /// LoadInst - an instruction for reading from memory. This uses the
- /// SubclassData field in Value to store whether or not the load is volatile.
- ///
- class LoadInst : public UnaryInstruction {
- void AssertOK();
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- LoadInst *cloneImpl() const;
- public:
- LoadInst(Value *Ptr, const Twine &NameStr, Instruction *InsertBefore);
- LoadInst(Value *Ptr, const Twine &NameStr, BasicBlock *InsertAtEnd);
- LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile = false,
- Instruction *InsertBefore = nullptr);
- LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile = false,
- Instruction *InsertBefore = nullptr)
- : LoadInst(cast<PointerType>(Ptr->getType())->getElementType(), Ptr,
- NameStr, isVolatile, InsertBefore) {}
- LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile,
- BasicBlock *InsertAtEnd);
- LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile, unsigned Align,
- Instruction *InsertBefore = nullptr)
- : LoadInst(cast<PointerType>(Ptr->getType())->getElementType(), Ptr,
- NameStr, isVolatile, Align, InsertBefore) {}
- LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
- unsigned Align, Instruction *InsertBefore = nullptr);
- LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile,
- unsigned Align, BasicBlock *InsertAtEnd);
- LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile, unsigned Align,
- AtomicOrdering Order, SynchronizationScope SynchScope = CrossThread,
- Instruction *InsertBefore = nullptr)
- : LoadInst(cast<PointerType>(Ptr->getType())->getElementType(), Ptr,
- NameStr, isVolatile, Align, Order, SynchScope, InsertBefore) {}
- LoadInst(Type *Ty, Value *Ptr, const Twine &NameStr, bool isVolatile,
- unsigned Align, AtomicOrdering Order,
- SynchronizationScope SynchScope = CrossThread,
- Instruction *InsertBefore = nullptr);
- LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile,
- unsigned Align, AtomicOrdering Order,
- SynchronizationScope SynchScope,
- BasicBlock *InsertAtEnd);
- LoadInst(Value *Ptr, const char *NameStr, Instruction *InsertBefore);
- LoadInst(Value *Ptr, const char *NameStr, BasicBlock *InsertAtEnd);
- LoadInst(Type *Ty, Value *Ptr, const char *NameStr = nullptr,
- bool isVolatile = false, Instruction *InsertBefore = nullptr);
- explicit LoadInst(Value *Ptr, const char *NameStr = nullptr,
- bool isVolatile = false,
- Instruction *InsertBefore = nullptr)
- : LoadInst(cast<PointerType>(Ptr->getType())->getElementType(), Ptr,
- NameStr, isVolatile, InsertBefore) {}
- LoadInst(Value *Ptr, const char *NameStr, bool isVolatile,
- BasicBlock *InsertAtEnd);
- /// isVolatile - Return true if this is a load from a volatile memory
- /// location.
- ///
- bool isVolatile() const { return getSubclassDataFromInstruction() & 1; }
- /// setVolatile - Specify whether this is a volatile load or not.
- ///
- void setVolatile(bool V) {
- setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
- (V ? 1 : 0));
- }
- /// getAlignment - Return the alignment of the access that is being performed
- ///
- unsigned getAlignment() const {
- return (1 << ((getSubclassDataFromInstruction() >> 1) & 31)) >> 1;
- }
- void setAlignment(unsigned Align);
- /// Returns the ordering effect of this fence.
- AtomicOrdering getOrdering() const {
- return AtomicOrdering((getSubclassDataFromInstruction() >> 7) & 7);
- }
- /// Set the ordering constraint on this load. May not be Release or
- /// AcquireRelease.
- void setOrdering(AtomicOrdering Ordering) {
- setInstructionSubclassData((getSubclassDataFromInstruction() & ~(7 << 7)) |
- (Ordering << 7));
- }
- SynchronizationScope getSynchScope() const {
- return SynchronizationScope((getSubclassDataFromInstruction() >> 6) & 1);
- }
- /// Specify whether this load is ordered with respect to all
- /// concurrently executing threads, or only with respect to signal handlers
- /// executing in the same thread.
- void setSynchScope(SynchronizationScope xthread) {
- setInstructionSubclassData((getSubclassDataFromInstruction() & ~(1 << 6)) |
- (xthread << 6));
- }
- void setAtomic(AtomicOrdering Ordering,
- SynchronizationScope SynchScope = CrossThread) {
- setOrdering(Ordering);
- setSynchScope(SynchScope);
- }
- bool isSimple() const { return !isAtomic() && !isVolatile(); }
- bool isUnordered() const {
- return getOrdering() <= Unordered && !isVolatile();
- }
- Value *getPointerOperand() { return getOperand(0); }
- const Value *getPointerOperand() const { return getOperand(0); }
- static unsigned getPointerOperandIndex() { return 0U; }
- /// \brief Returns the address space of the pointer operand.
- unsigned getPointerAddressSpace() const {
- return getPointerOperand()->getType()->getPointerAddressSpace();
- }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::Load;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- private:
- // Shadow Instruction::setInstructionSubclassData with a private forwarding
- // method so that subclasses cannot accidentally use it.
- void setInstructionSubclassData(unsigned short D) {
- Instruction::setInstructionSubclassData(D);
- }
- };
- //===----------------------------------------------------------------------===//
- // StoreInst Class
- //===----------------------------------------------------------------------===//
- /// StoreInst - an instruction for storing to memory
- ///
- class StoreInst : public Instruction {
- void *operator new(size_t, unsigned) = delete;
- void AssertOK();
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- StoreInst *cloneImpl() const;
- public:
- // allocate space for exactly two operands
- void *operator new(size_t s) {
- return User::operator new(s, 2);
- }
- StoreInst(Value *Val, Value *Ptr, Instruction *InsertBefore);
- StoreInst(Value *Val, Value *Ptr, BasicBlock *InsertAtEnd);
- StoreInst(Value *Val, Value *Ptr, bool isVolatile = false,
- Instruction *InsertBefore = nullptr);
- StoreInst(Value *Val, Value *Ptr, bool isVolatile, BasicBlock *InsertAtEnd);
- StoreInst(Value *Val, Value *Ptr, bool isVolatile,
- unsigned Align, Instruction *InsertBefore = nullptr);
- StoreInst(Value *Val, Value *Ptr, bool isVolatile,
- unsigned Align, BasicBlock *InsertAtEnd);
- StoreInst(Value *Val, Value *Ptr, bool isVolatile,
- unsigned Align, AtomicOrdering Order,
- SynchronizationScope SynchScope = CrossThread,
- Instruction *InsertBefore = nullptr);
- StoreInst(Value *Val, Value *Ptr, bool isVolatile,
- unsigned Align, AtomicOrdering Order,
- SynchronizationScope SynchScope,
- BasicBlock *InsertAtEnd);
- /// isVolatile - Return true if this is a store to a volatile memory
- /// location.
- ///
- bool isVolatile() const { return getSubclassDataFromInstruction() & 1; }
- /// setVolatile - Specify whether this is a volatile store or not.
- ///
- void setVolatile(bool V) {
- setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
- (V ? 1 : 0));
- }
- /// Transparently provide more efficient getOperand methods.
- DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
- /// getAlignment - Return the alignment of the access that is being performed
- ///
- unsigned getAlignment() const {
- return (1 << ((getSubclassDataFromInstruction() >> 1) & 31)) >> 1;
- }
- void setAlignment(unsigned Align);
- /// Returns the ordering effect of this store.
- AtomicOrdering getOrdering() const {
- return AtomicOrdering((getSubclassDataFromInstruction() >> 7) & 7);
- }
- /// Set the ordering constraint on this store. May not be Acquire or
- /// AcquireRelease.
- void setOrdering(AtomicOrdering Ordering) {
- setInstructionSubclassData((getSubclassDataFromInstruction() & ~(7 << 7)) |
- (Ordering << 7));
- }
- SynchronizationScope getSynchScope() const {
- return SynchronizationScope((getSubclassDataFromInstruction() >> 6) & 1);
- }
- /// Specify whether this store instruction is ordered with respect to all
- /// concurrently executing threads, or only with respect to signal handlers
- /// executing in the same thread.
- void setSynchScope(SynchronizationScope xthread) {
- setInstructionSubclassData((getSubclassDataFromInstruction() & ~(1 << 6)) |
- (xthread << 6));
- }
- void setAtomic(AtomicOrdering Ordering,
- SynchronizationScope SynchScope = CrossThread) {
- setOrdering(Ordering);
- setSynchScope(SynchScope);
- }
- bool isSimple() const { return !isAtomic() && !isVolatile(); }
- bool isUnordered() const {
- return getOrdering() <= Unordered && !isVolatile();
- }
- Value *getValueOperand() { return getOperand(0); }
- const Value *getValueOperand() const { return getOperand(0); }
- Value *getPointerOperand() { return getOperand(1); }
- const Value *getPointerOperand() const { return getOperand(1); }
- static unsigned getPointerOperandIndex() { return 1U; }
- /// \brief Returns the address space of the pointer operand.
- unsigned getPointerAddressSpace() const {
- return getPointerOperand()->getType()->getPointerAddressSpace();
- }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::Store;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- private:
- // Shadow Instruction::setInstructionSubclassData with a private forwarding
- // method so that subclasses cannot accidentally use it.
- void setInstructionSubclassData(unsigned short D) {
- Instruction::setInstructionSubclassData(D);
- }
- };
- template <>
- struct OperandTraits<StoreInst> : public FixedNumOperandTraits<StoreInst, 2> {
- };
- DEFINE_TRANSPARENT_OPERAND_ACCESSORS(StoreInst, Value)
- //===----------------------------------------------------------------------===//
- // FenceInst Class
- //===----------------------------------------------------------------------===//
- /// FenceInst - an instruction for ordering other memory operations
- ///
- class FenceInst : public Instruction {
- void *operator new(size_t, unsigned) = delete;
- void Init(AtomicOrdering Ordering, SynchronizationScope SynchScope);
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- FenceInst *cloneImpl() const;
- public:
- // allocate space for exactly zero operands
- void *operator new(size_t s) {
- return User::operator new(s, 0);
- }
- // Ordering may only be Acquire, Release, AcquireRelease, or
- // SequentiallyConsistent.
- FenceInst(LLVMContext &C, AtomicOrdering Ordering,
- SynchronizationScope SynchScope = CrossThread,
- Instruction *InsertBefore = nullptr);
- FenceInst(LLVMContext &C, AtomicOrdering Ordering,
- SynchronizationScope SynchScope,
- BasicBlock *InsertAtEnd);
- /// Returns the ordering effect of this fence.
- AtomicOrdering getOrdering() const {
- return AtomicOrdering(getSubclassDataFromInstruction() >> 1);
- }
- /// Set the ordering constraint on this fence. May only be Acquire, Release,
- /// AcquireRelease, or SequentiallyConsistent.
- void setOrdering(AtomicOrdering Ordering) {
- setInstructionSubclassData((getSubclassDataFromInstruction() & 1) |
- (Ordering << 1));
- }
- SynchronizationScope getSynchScope() const {
- return SynchronizationScope(getSubclassDataFromInstruction() & 1);
- }
- /// Specify whether this fence orders other operations with respect to all
- /// concurrently executing threads, or only with respect to signal handlers
- /// executing in the same thread.
- void setSynchScope(SynchronizationScope xthread) {
- setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
- xthread);
- }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::Fence;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- private:
- // Shadow Instruction::setInstructionSubclassData with a private forwarding
- // method so that subclasses cannot accidentally use it.
- void setInstructionSubclassData(unsigned short D) {
- Instruction::setInstructionSubclassData(D);
- }
- };
- //===----------------------------------------------------------------------===//
- // AtomicCmpXchgInst Class
- //===----------------------------------------------------------------------===//
- /// AtomicCmpXchgInst - an instruction that atomically checks whether a
- /// specified value is in a memory location, and, if it is, stores a new value
- /// there. Returns the value that was loaded.
- ///
- class AtomicCmpXchgInst : public Instruction {
- void *operator new(size_t, unsigned) = delete;
- void Init(Value *Ptr, Value *Cmp, Value *NewVal,
- AtomicOrdering SuccessOrdering, AtomicOrdering FailureOrdering,
- SynchronizationScope SynchScope);
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- AtomicCmpXchgInst *cloneImpl() const;
- public:
- // allocate space for exactly three operands
- void *operator new(size_t s) {
- return User::operator new(s, 3);
- }
- AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
- AtomicOrdering SuccessOrdering,
- AtomicOrdering FailureOrdering,
- SynchronizationScope SynchScope,
- Instruction *InsertBefore = nullptr);
- AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal,
- AtomicOrdering SuccessOrdering,
- AtomicOrdering FailureOrdering,
- SynchronizationScope SynchScope,
- BasicBlock *InsertAtEnd);
- /// isVolatile - Return true if this is a cmpxchg from a volatile memory
- /// location.
- ///
- bool isVolatile() const {
- return getSubclassDataFromInstruction() & 1;
- }
- /// setVolatile - Specify whether this is a volatile cmpxchg.
- ///
- void setVolatile(bool V) {
- setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
- (unsigned)V);
- }
- /// Return true if this cmpxchg may spuriously fail.
- bool isWeak() const {
- return getSubclassDataFromInstruction() & 0x100;
- }
- void setWeak(bool IsWeak) {
- setInstructionSubclassData((getSubclassDataFromInstruction() & ~0x100) |
- (IsWeak << 8));
- }
- /// Transparently provide more efficient getOperand methods.
- DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
- /// Set the ordering constraint on this cmpxchg.
- void setSuccessOrdering(AtomicOrdering Ordering) {
- assert(Ordering != NotAtomic &&
- "CmpXchg instructions can only be atomic.");
- setInstructionSubclassData((getSubclassDataFromInstruction() & ~0x1c) |
- (Ordering << 2));
- }
- void setFailureOrdering(AtomicOrdering Ordering) {
- assert(Ordering != NotAtomic &&
- "CmpXchg instructions can only be atomic.");
- setInstructionSubclassData((getSubclassDataFromInstruction() & ~0xe0) |
- (Ordering << 5));
- }
- /// Specify whether this cmpxchg is atomic and orders other operations with
- /// respect to all concurrently executing threads, or only with respect to
- /// signal handlers executing in the same thread.
- void setSynchScope(SynchronizationScope SynchScope) {
- setInstructionSubclassData((getSubclassDataFromInstruction() & ~2) |
- (SynchScope << 1));
- }
- /// Returns the ordering constraint on this cmpxchg.
- AtomicOrdering getSuccessOrdering() const {
- return AtomicOrdering((getSubclassDataFromInstruction() >> 2) & 7);
- }
- /// Returns the ordering constraint on this cmpxchg.
- AtomicOrdering getFailureOrdering() const {
- return AtomicOrdering((getSubclassDataFromInstruction() >> 5) & 7);
- }
- /// Returns whether this cmpxchg is atomic between threads or only within a
- /// single thread.
- SynchronizationScope getSynchScope() const {
- return SynchronizationScope((getSubclassDataFromInstruction() & 2) >> 1);
- }
- Value *getPointerOperand() { return getOperand(0); }
- const Value *getPointerOperand() const { return getOperand(0); }
- static unsigned getPointerOperandIndex() { return 0U; }
- Value *getCompareOperand() { return getOperand(1); }
- const Value *getCompareOperand() const { return getOperand(1); }
- Value *getNewValOperand() { return getOperand(2); }
- const Value *getNewValOperand() const { return getOperand(2); }
- /// \brief Returns the address space of the pointer operand.
- unsigned getPointerAddressSpace() const {
- return getPointerOperand()->getType()->getPointerAddressSpace();
- }
- /// \brief Returns the strongest permitted ordering on failure, given the
- /// desired ordering on success.
- ///
- /// If the comparison in a cmpxchg operation fails, there is no atomic store
- /// so release semantics cannot be provided. So this function drops explicit
- /// Release requests from the AtomicOrdering. A SequentiallyConsistent
- /// operation would remain SequentiallyConsistent.
- static AtomicOrdering
- getStrongestFailureOrdering(AtomicOrdering SuccessOrdering) {
- switch (SuccessOrdering) {
- default: llvm_unreachable("invalid cmpxchg success ordering");
- case Release:
- case Monotonic:
- return Monotonic;
- case AcquireRelease:
- case Acquire:
- return Acquire;
- case SequentiallyConsistent:
- return SequentiallyConsistent;
- }
- }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::AtomicCmpXchg;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- private:
- // Shadow Instruction::setInstructionSubclassData with a private forwarding
- // method so that subclasses cannot accidentally use it.
- void setInstructionSubclassData(unsigned short D) {
- Instruction::setInstructionSubclassData(D);
- }
- };
- template <>
- struct OperandTraits<AtomicCmpXchgInst> :
- public FixedNumOperandTraits<AtomicCmpXchgInst, 3> {
- };
- DEFINE_TRANSPARENT_OPERAND_ACCESSORS(AtomicCmpXchgInst, Value)
- //===----------------------------------------------------------------------===//
- // AtomicRMWInst Class
- //===----------------------------------------------------------------------===//
- /// AtomicRMWInst - an instruction that atomically reads a memory location,
- /// combines it with another value, and then stores the result back. Returns
- /// the old value.
- ///
- class AtomicRMWInst : public Instruction {
- void *operator new(size_t, unsigned) = delete;
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- AtomicRMWInst *cloneImpl() const;
- public:
- /// This enumeration lists the possible modifications atomicrmw can make. In
- /// the descriptions, 'p' is the pointer to the instruction's memory location,
- /// 'old' is the initial value of *p, and 'v' is the other value passed to the
- /// instruction. These instructions always return 'old'.
- enum BinOp {
- /// *p = v
- Xchg,
- /// *p = old + v
- Add,
- /// *p = old - v
- Sub,
- /// *p = old & v
- And,
- /// *p = ~(old & v)
- Nand,
- /// *p = old | v
- Or,
- /// *p = old ^ v
- Xor,
- /// *p = old >signed v ? old : v
- Max,
- /// *p = old <signed v ? old : v
- Min,
- /// *p = old >unsigned v ? old : v
- UMax,
- /// *p = old <unsigned v ? old : v
- UMin,
- FIRST_BINOP = Xchg,
- LAST_BINOP = UMin,
- BAD_BINOP
- };
- // allocate space for exactly two operands
- void *operator new(size_t s) {
- return User::operator new(s, 2);
- }
- AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
- AtomicOrdering Ordering, SynchronizationScope SynchScope,
- Instruction *InsertBefore = nullptr);
- AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val,
- AtomicOrdering Ordering, SynchronizationScope SynchScope,
- BasicBlock *InsertAtEnd);
- BinOp getOperation() const {
- return static_cast<BinOp>(getSubclassDataFromInstruction() >> 5);
- }
- void setOperation(BinOp Operation) {
- unsigned short SubclassData = getSubclassDataFromInstruction();
- setInstructionSubclassData((SubclassData & 31) |
- (Operation << 5));
- }
- /// isVolatile - Return true if this is a RMW on a volatile memory location.
- ///
- bool isVolatile() const {
- return getSubclassDataFromInstruction() & 1;
- }
- /// setVolatile - Specify whether this is a volatile RMW or not.
- ///
- void setVolatile(bool V) {
- setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
- (unsigned)V);
- }
- /// Transparently provide more efficient getOperand methods.
- DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
- /// Set the ordering constraint on this RMW.
- void setOrdering(AtomicOrdering Ordering) {
- assert(Ordering != NotAtomic &&
- "atomicrmw instructions can only be atomic.");
- setInstructionSubclassData((getSubclassDataFromInstruction() & ~(7 << 2)) |
- (Ordering << 2));
- }
- /// Specify whether this RMW orders other operations with respect to all
- /// concurrently executing threads, or only with respect to signal handlers
- /// executing in the same thread.
- void setSynchScope(SynchronizationScope SynchScope) {
- setInstructionSubclassData((getSubclassDataFromInstruction() & ~2) |
- (SynchScope << 1));
- }
- /// Returns the ordering constraint on this RMW.
- AtomicOrdering getOrdering() const {
- return AtomicOrdering((getSubclassDataFromInstruction() >> 2) & 7);
- }
- /// Returns whether this RMW is atomic between threads or only within a
- /// single thread.
- SynchronizationScope getSynchScope() const {
- return SynchronizationScope((getSubclassDataFromInstruction() & 2) >> 1);
- }
- Value *getPointerOperand() { return getOperand(0); }
- const Value *getPointerOperand() const { return getOperand(0); }
- static unsigned getPointerOperandIndex() { return 0U; }
- Value *getValOperand() { return getOperand(1); }
- const Value *getValOperand() const { return getOperand(1); }
- /// \brief Returns the address space of the pointer operand.
- unsigned getPointerAddressSpace() const {
- return getPointerOperand()->getType()->getPointerAddressSpace();
- }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::AtomicRMW;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- private:
- void Init(BinOp Operation, Value *Ptr, Value *Val,
- AtomicOrdering Ordering, SynchronizationScope SynchScope);
- // Shadow Instruction::setInstructionSubclassData with a private forwarding
- // method so that subclasses cannot accidentally use it.
- void setInstructionSubclassData(unsigned short D) {
- Instruction::setInstructionSubclassData(D);
- }
- };
- template <>
- struct OperandTraits<AtomicRMWInst>
- : public FixedNumOperandTraits<AtomicRMWInst,2> {
- };
- DEFINE_TRANSPARENT_OPERAND_ACCESSORS(AtomicRMWInst, Value)
- //===----------------------------------------------------------------------===//
- // GetElementPtrInst Class
- //===----------------------------------------------------------------------===//
- // checkGEPType - Simple wrapper function to give a better assertion failure
- // message on bad indexes for a gep instruction.
- //
- inline Type *checkGEPType(Type *Ty) {
- assert(Ty && "Invalid GetElementPtrInst indices for type!");
- return Ty;
- }
- /// GetElementPtrInst - an instruction for type-safe pointer arithmetic to
- /// access elements of arrays and structs
- ///
- class GetElementPtrInst : public Instruction {
- Type *SourceElementType;
- Type *ResultElementType;
- GetElementPtrInst(const GetElementPtrInst &GEPI);
- void init(Value *Ptr, ArrayRef<Value *> IdxList, const Twine &NameStr);
- /// Constructors - Create a getelementptr instruction with a base pointer an
- /// list of indices. The first ctor can optionally insert before an existing
- /// instruction, the second appends the new instruction to the specified
- /// BasicBlock.
- inline GetElementPtrInst(Type *PointeeType, Value *Ptr,
- ArrayRef<Value *> IdxList, unsigned Values,
- const Twine &NameStr, Instruction *InsertBefore);
- inline GetElementPtrInst(Type *PointeeType, Value *Ptr,
- ArrayRef<Value *> IdxList, unsigned Values,
- const Twine &NameStr, BasicBlock *InsertAtEnd);
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- GetElementPtrInst *cloneImpl() const;
- public:
- static GetElementPtrInst *Create(Type *PointeeType, Value *Ptr,
- ArrayRef<Value *> IdxList,
- const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr) {
- unsigned Values = 1 + unsigned(IdxList.size());
- if (!PointeeType)
- PointeeType =
- cast<PointerType>(Ptr->getType()->getScalarType())->getElementType();
- else
- assert(
- PointeeType ==
- cast<PointerType>(Ptr->getType()->getScalarType())->getElementType());
- return new (Values) GetElementPtrInst(PointeeType, Ptr, IdxList, Values,
- NameStr, InsertBefore);
- }
- static GetElementPtrInst *Create(Type *PointeeType, Value *Ptr,
- ArrayRef<Value *> IdxList,
- const Twine &NameStr,
- BasicBlock *InsertAtEnd) {
- unsigned Values = 1 + unsigned(IdxList.size());
- if (!PointeeType)
- PointeeType =
- cast<PointerType>(Ptr->getType()->getScalarType())->getElementType();
- else
- assert(
- PointeeType ==
- cast<PointerType>(Ptr->getType()->getScalarType())->getElementType());
- return new (Values) GetElementPtrInst(PointeeType, Ptr, IdxList, Values,
- NameStr, InsertAtEnd);
- }
- /// Create an "inbounds" getelementptr. See the documentation for the
- /// "inbounds" flag in LangRef.html for details.
- static GetElementPtrInst *CreateInBounds(Value *Ptr,
- ArrayRef<Value *> IdxList,
- const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr){
- return CreateInBounds(nullptr, Ptr, IdxList, NameStr, InsertBefore);
- }
- static GetElementPtrInst *
- CreateInBounds(Type *PointeeType, Value *Ptr, ArrayRef<Value *> IdxList,
- const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr) {
- GetElementPtrInst *GEP =
- Create(PointeeType, Ptr, IdxList, NameStr, InsertBefore);
- GEP->setIsInBounds(true);
- return GEP;
- }
- static GetElementPtrInst *CreateInBounds(Value *Ptr,
- ArrayRef<Value *> IdxList,
- const Twine &NameStr,
- BasicBlock *InsertAtEnd) {
- return CreateInBounds(nullptr, Ptr, IdxList, NameStr, InsertAtEnd);
- }
- static GetElementPtrInst *CreateInBounds(Type *PointeeType, Value *Ptr,
- ArrayRef<Value *> IdxList,
- const Twine &NameStr,
- BasicBlock *InsertAtEnd) {
- GetElementPtrInst *GEP =
- Create(PointeeType, Ptr, IdxList, NameStr, InsertAtEnd);
- GEP->setIsInBounds(true);
- return GEP;
- }
- /// Transparently provide more efficient getOperand methods.
- DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
- // getType - Overload to return most specific sequential type.
- SequentialType *getType() const {
- return cast<SequentialType>(Instruction::getType());
- }
- Type *getSourceElementType() const { return SourceElementType; }
- void setSourceElementType(Type *Ty) { SourceElementType = Ty; }
- void setResultElementType(Type *Ty) { ResultElementType = Ty; }
- Type *getResultElementType() const {
- assert(ResultElementType ==
- cast<PointerType>(getType()->getScalarType())->getElementType());
- return ResultElementType;
- }
- /// \brief Returns the address space of this instruction's pointer type.
- unsigned getAddressSpace() const {
- // Note that this is always the same as the pointer operand's address space
- // and that is cheaper to compute, so cheat here.
- return getPointerAddressSpace();
- }
- /// getIndexedType - Returns the type of the element that would be loaded with
- /// a load instruction with the specified parameters.
- ///
- /// Null is returned if the indices are invalid for the specified
- /// pointer type.
- ///
- static Type *getIndexedType(Type *Ty, ArrayRef<Value *> IdxList);
- static Type *getIndexedType(Type *Ty, ArrayRef<Constant *> IdxList);
- static Type *getIndexedType(Type *Ty, ArrayRef<uint64_t> IdxList);
- inline op_iterator idx_begin() { return op_begin()+1; }
- inline const_op_iterator idx_begin() const { return op_begin()+1; }
- inline op_iterator idx_end() { return op_end(); }
- inline const_op_iterator idx_end() const { return op_end(); }
- Value *getPointerOperand() {
- return getOperand(0);
- }
- const Value *getPointerOperand() const {
- return getOperand(0);
- }
- static unsigned getPointerOperandIndex() {
- return 0U; // get index for modifying correct operand.
- }
- /// getPointerOperandType - Method to return the pointer operand as a
- /// PointerType.
- Type *getPointerOperandType() const {
- return getPointerOperand()->getType();
- }
- /// \brief Returns the address space of the pointer operand.
- unsigned getPointerAddressSpace() const {
- return getPointerOperandType()->getPointerAddressSpace();
- }
- /// GetGEPReturnType - Returns the pointer type returned by the GEP
- /// instruction, which may be a vector of pointers.
- static Type *getGEPReturnType(Value *Ptr, ArrayRef<Value *> IdxList) {
- return getGEPReturnType(
- cast<PointerType>(Ptr->getType()->getScalarType())->getElementType(),
- Ptr, IdxList);
- }
- static Type *getGEPReturnType(Type *ElTy, Value *Ptr,
- ArrayRef<Value *> IdxList) {
- Type *PtrTy = PointerType::get(checkGEPType(getIndexedType(ElTy, IdxList)),
- Ptr->getType()->getPointerAddressSpace());
- // Vector GEP
- if (Ptr->getType()->isVectorTy()) {
- unsigned NumElem = Ptr->getType()->getVectorNumElements();
- return VectorType::get(PtrTy, NumElem);
- }
- for (Value *Index : IdxList)
- if (Index->getType()->isVectorTy()) {
- unsigned NumElem = Index->getType()->getVectorNumElements();
- return VectorType::get(PtrTy, NumElem);
- }
- // Scalar GEP
- return PtrTy;
- }
- unsigned getNumIndices() const { // Note: always non-negative
- return getNumOperands() - 1;
- }
- bool hasIndices() const {
- return getNumOperands() > 1;
- }
- /// hasAllZeroIndices - Return true if all of the indices of this GEP are
- /// zeros. If so, the result pointer and the first operand have the same
- /// value, just potentially different types.
- bool hasAllZeroIndices() const;
- /// hasAllConstantIndices - Return true if all of the indices of this GEP are
- /// constant integers. If so, the result pointer and the first operand have
- /// a constant offset between them.
- bool hasAllConstantIndices() const;
- /// setIsInBounds - Set or clear the inbounds flag on this GEP instruction.
- /// See LangRef.html for the meaning of inbounds on a getelementptr.
- void setIsInBounds(bool b = true);
- /// isInBounds - Determine whether the GEP has the inbounds flag.
- bool isInBounds() const;
- /// \brief Accumulate the constant address offset of this GEP if possible.
- ///
- /// This routine accepts an APInt into which it will accumulate the constant
- /// offset of this GEP if the GEP is in fact constant. If the GEP is not
- /// all-constant, it returns false and the value of the offset APInt is
- /// undefined (it is *not* preserved!). The APInt passed into this routine
- /// must be at least as wide as the IntPtr type for the address space of
- /// the base GEP pointer.
- bool accumulateConstantOffset(const DataLayout &DL, APInt &Offset) const;
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return (I->getOpcode() == Instruction::GetElementPtr);
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- template <>
- struct OperandTraits<GetElementPtrInst> :
- public VariadicOperandTraits<GetElementPtrInst, 1> {
- };
- GetElementPtrInst::GetElementPtrInst(Type *PointeeType, Value *Ptr,
- ArrayRef<Value *> IdxList, unsigned Values,
- const Twine &NameStr,
- Instruction *InsertBefore)
- : Instruction(getGEPReturnType(PointeeType, Ptr, IdxList), GetElementPtr,
- OperandTraits<GetElementPtrInst>::op_end(this) - Values,
- Values, InsertBefore),
- SourceElementType(PointeeType),
- ResultElementType(getIndexedType(PointeeType, IdxList)) {
- assert(ResultElementType ==
- cast<PointerType>(getType()->getScalarType())->getElementType());
- init(Ptr, IdxList, NameStr);
- }
- GetElementPtrInst::GetElementPtrInst(Type *PointeeType, Value *Ptr,
- ArrayRef<Value *> IdxList, unsigned Values,
- const Twine &NameStr,
- BasicBlock *InsertAtEnd)
- : Instruction(getGEPReturnType(PointeeType, Ptr, IdxList), GetElementPtr,
- OperandTraits<GetElementPtrInst>::op_end(this) - Values,
- Values, InsertAtEnd),
- SourceElementType(PointeeType),
- ResultElementType(getIndexedType(PointeeType, IdxList)) {
- assert(ResultElementType ==
- cast<PointerType>(getType()->getScalarType())->getElementType());
- init(Ptr, IdxList, NameStr);
- }
- DEFINE_TRANSPARENT_OPERAND_ACCESSORS(GetElementPtrInst, Value)
- //===----------------------------------------------------------------------===//
- // ICmpInst Class
- //===----------------------------------------------------------------------===//
- /// This instruction compares its operands according to the predicate given
- /// to the constructor. It only operates on integers or pointers. The operands
- /// must be identical types.
- /// \brief Represent an integer comparison operator.
- class ICmpInst: public CmpInst {
- void AssertOK() {
- assert(getPredicate() >= CmpInst::FIRST_ICMP_PREDICATE &&
- getPredicate() <= CmpInst::LAST_ICMP_PREDICATE &&
- "Invalid ICmp predicate value");
- assert(getOperand(0)->getType() == getOperand(1)->getType() &&
- "Both operands to ICmp instruction are not of the same type!");
- // Check that the operands are the right type
- assert((getOperand(0)->getType()->isIntOrIntVectorTy() ||
- getOperand(0)->getType()->isPtrOrPtrVectorTy()) &&
- "Invalid operand types for ICmp instruction");
- }
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- /// \brief Clone an identical ICmpInst
- ICmpInst *cloneImpl() const;
- public:
- /// \brief Constructor with insert-before-instruction semantics.
- ICmpInst(
- Instruction *InsertBefore, ///< Where to insert
- Predicate pred, ///< The predicate to use for the comparison
- Value *LHS, ///< The left-hand-side of the expression
- Value *RHS, ///< The right-hand-side of the expression
- const Twine &NameStr = "" ///< Name of the instruction
- ) : CmpInst(makeCmpResultType(LHS->getType()),
- Instruction::ICmp, pred, LHS, RHS, NameStr,
- InsertBefore) {
- #ifndef NDEBUG
- AssertOK();
- #endif
- }
- /// \brief Constructor with insert-at-end semantics.
- ICmpInst(
- BasicBlock &InsertAtEnd, ///< Block to insert into.
- Predicate pred, ///< The predicate to use for the comparison
- Value *LHS, ///< The left-hand-side of the expression
- Value *RHS, ///< The right-hand-side of the expression
- const Twine &NameStr = "" ///< Name of the instruction
- ) : CmpInst(makeCmpResultType(LHS->getType()),
- Instruction::ICmp, pred, LHS, RHS, NameStr,
- &InsertAtEnd) {
- #ifndef NDEBUG
- AssertOK();
- #endif
- }
- /// \brief Constructor with no-insertion semantics
- ICmpInst(
- Predicate pred, ///< The predicate to use for the comparison
- Value *LHS, ///< The left-hand-side of the expression
- Value *RHS, ///< The right-hand-side of the expression
- const Twine &NameStr = "" ///< Name of the instruction
- ) : CmpInst(makeCmpResultType(LHS->getType()),
- Instruction::ICmp, pred, LHS, RHS, NameStr) {
- #ifndef NDEBUG
- AssertOK();
- #endif
- }
- /// For example, EQ->EQ, SLE->SLE, UGT->SGT, etc.
- /// @returns the predicate that would be the result if the operand were
- /// regarded as signed.
- /// \brief Return the signed version of the predicate
- Predicate getSignedPredicate() const {
- return getSignedPredicate(getPredicate());
- }
- /// This is a static version that you can use without an instruction.
- /// \brief Return the signed version of the predicate.
- static Predicate getSignedPredicate(Predicate pred);
- /// For example, EQ->EQ, SLE->ULE, UGT->UGT, etc.
- /// @returns the predicate that would be the result if the operand were
- /// regarded as unsigned.
- /// \brief Return the unsigned version of the predicate
- Predicate getUnsignedPredicate() const {
- return getUnsignedPredicate(getPredicate());
- }
- /// This is a static version that you can use without an instruction.
- /// \brief Return the unsigned version of the predicate.
- static Predicate getUnsignedPredicate(Predicate pred);
- /// isEquality - Return true if this predicate is either EQ or NE. This also
- /// tests for commutativity.
- static bool isEquality(Predicate P) {
- return P == ICMP_EQ || P == ICMP_NE;
- }
- /// isEquality - Return true if this predicate is either EQ or NE. This also
- /// tests for commutativity.
- bool isEquality() const {
- return isEquality(getPredicate());
- }
- /// @returns true if the predicate of this ICmpInst is commutative
- /// \brief Determine if this relation is commutative.
- bool isCommutative() const { return isEquality(); }
- /// isRelational - Return true if the predicate is relational (not EQ or NE).
- ///
- bool isRelational() const {
- return !isEquality();
- }
- /// isRelational - Return true if the predicate is relational (not EQ or NE).
- ///
- static bool isRelational(Predicate P) {
- return !isEquality(P);
- }
- /// Initialize a set of values that all satisfy the predicate with C.
- /// \brief Make a ConstantRange for a relation with a constant value.
- static ConstantRange makeConstantRange(Predicate pred, const APInt &C);
- /// Exchange the two operands to this instruction in such a way that it does
- /// not modify the semantics of the instruction. The predicate value may be
- /// changed to retain the same result if the predicate is order dependent
- /// (e.g. ult).
- /// \brief Swap operands and adjust predicate.
- void swapOperands() {
- setPredicate(getSwappedPredicate());
- Op<0>().swap(Op<1>());
- }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::ICmp;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- //===----------------------------------------------------------------------===//
- // FCmpInst Class
- //===----------------------------------------------------------------------===//
- /// This instruction compares its operands according to the predicate given
- /// to the constructor. It only operates on floating point values or packed
- /// vectors of floating point values. The operands must be identical types.
- /// \brief Represents a floating point comparison operator.
- class FCmpInst: public CmpInst {
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- /// \brief Clone an identical FCmpInst
- FCmpInst *cloneImpl() const;
- public:
- /// \brief Constructor with insert-before-instruction semantics.
- FCmpInst(
- Instruction *InsertBefore, ///< Where to insert
- Predicate pred, ///< The predicate to use for the comparison
- Value *LHS, ///< The left-hand-side of the expression
- Value *RHS, ///< The right-hand-side of the expression
- const Twine &NameStr = "" ///< Name of the instruction
- ) : CmpInst(makeCmpResultType(LHS->getType()),
- Instruction::FCmp, pred, LHS, RHS, NameStr,
- InsertBefore) {
- assert(pred <= FCmpInst::LAST_FCMP_PREDICATE &&
- "Invalid FCmp predicate value");
- assert(getOperand(0)->getType() == getOperand(1)->getType() &&
- "Both operands to FCmp instruction are not of the same type!");
- // Check that the operands are the right type
- assert(getOperand(0)->getType()->isFPOrFPVectorTy() &&
- "Invalid operand types for FCmp instruction");
- }
- /// \brief Constructor with insert-at-end semantics.
- FCmpInst(
- BasicBlock &InsertAtEnd, ///< Block to insert into.
- Predicate pred, ///< The predicate to use for the comparison
- Value *LHS, ///< The left-hand-side of the expression
- Value *RHS, ///< The right-hand-side of the expression
- const Twine &NameStr = "" ///< Name of the instruction
- ) : CmpInst(makeCmpResultType(LHS->getType()),
- Instruction::FCmp, pred, LHS, RHS, NameStr,
- &InsertAtEnd) {
- assert(pred <= FCmpInst::LAST_FCMP_PREDICATE &&
- "Invalid FCmp predicate value");
- assert(getOperand(0)->getType() == getOperand(1)->getType() &&
- "Both operands to FCmp instruction are not of the same type!");
- // Check that the operands are the right type
- assert(getOperand(0)->getType()->isFPOrFPVectorTy() &&
- "Invalid operand types for FCmp instruction");
- }
- /// \brief Constructor with no-insertion semantics
- FCmpInst(
- Predicate pred, ///< The predicate to use for the comparison
- Value *LHS, ///< The left-hand-side of the expression
- Value *RHS, ///< The right-hand-side of the expression
- const Twine &NameStr = "" ///< Name of the instruction
- ) : CmpInst(makeCmpResultType(LHS->getType()),
- Instruction::FCmp, pred, LHS, RHS, NameStr) {
- assert(pred <= FCmpInst::LAST_FCMP_PREDICATE &&
- "Invalid FCmp predicate value");
- assert(getOperand(0)->getType() == getOperand(1)->getType() &&
- "Both operands to FCmp instruction are not of the same type!");
- // Check that the operands are the right type
- assert(getOperand(0)->getType()->isFPOrFPVectorTy() &&
- "Invalid operand types for FCmp instruction");
- }
- /// @returns true if the predicate of this instruction is EQ or NE.
- /// \brief Determine if this is an equality predicate.
- static bool isEquality(Predicate Pred) {
- return Pred == FCMP_OEQ || Pred == FCMP_ONE || Pred == FCMP_UEQ ||
- Pred == FCMP_UNE;
- }
- /// @returns true if the predicate of this instruction is EQ or NE.
- /// \brief Determine if this is an equality predicate.
- bool isEquality() const { return isEquality(getPredicate()); }
- /// @returns true if the predicate of this instruction is commutative.
- /// \brief Determine if this is a commutative predicate.
- bool isCommutative() const {
- return isEquality() ||
- getPredicate() == FCMP_FALSE ||
- getPredicate() == FCMP_TRUE ||
- getPredicate() == FCMP_ORD ||
- getPredicate() == FCMP_UNO;
- }
- /// @returns true if the predicate is relational (not EQ or NE).
- /// \brief Determine if this a relational predicate.
- bool isRelational() const { return !isEquality(); }
- /// Exchange the two operands to this instruction in such a way that it does
- /// not modify the semantics of the instruction. The predicate value may be
- /// changed to retain the same result if the predicate is order dependent
- /// (e.g. ult).
- /// \brief Swap operands and adjust predicate.
- void swapOperands() {
- setPredicate(getSwappedPredicate());
- Op<0>().swap(Op<1>());
- }
- /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::FCmp;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- //===----------------------------------------------------------------------===//
- /// CallInst - This class represents a function call, abstracting a target
- /// machine's calling convention. This class uses low bit of the SubClassData
- /// field to indicate whether or not this is a tail call. The rest of the bits
- /// hold the calling convention of the call.
- ///
- class CallInst : public Instruction {
- AttributeSet AttributeList; ///< parameter attributes for call
- FunctionType *FTy;
- CallInst(const CallInst &CI);
- void init(Value *Func, ArrayRef<Value *> Args, const Twine &NameStr) {
- init(cast<FunctionType>(
- cast<PointerType>(Func->getType())->getElementType()),
- Func, Args, NameStr);
- }
- void init(FunctionType *FTy, Value *Func, ArrayRef<Value *> Args,
- const Twine &NameStr);
- void init(Value *Func, const Twine &NameStr);
- /// Construct a CallInst given a range of arguments.
- /// \brief Construct a CallInst from a range of arguments
- inline CallInst(FunctionType *Ty, Value *Func, ArrayRef<Value *> Args,
- const Twine &NameStr, Instruction *InsertBefore);
- inline CallInst(Value *Func, ArrayRef<Value *> Args, const Twine &NameStr,
- Instruction *InsertBefore)
- : CallInst(cast<FunctionType>(
- cast<PointerType>(Func->getType())->getElementType()),
- Func, Args, NameStr, InsertBefore) {}
- /// Construct a CallInst given a range of arguments.
- /// \brief Construct a CallInst from a range of arguments
- inline CallInst(Value *Func, ArrayRef<Value *> Args,
- const Twine &NameStr, BasicBlock *InsertAtEnd);
- explicit CallInst(Value *F, const Twine &NameStr,
- Instruction *InsertBefore);
- CallInst(Value *F, const Twine &NameStr, BasicBlock *InsertAtEnd);
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- CallInst *cloneImpl() const;
- public:
- static CallInst *Create(Value *Func,
- ArrayRef<Value *> Args,
- const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr) {
- return Create(cast<FunctionType>(
- cast<PointerType>(Func->getType())->getElementType()),
- Func, Args, NameStr, InsertBefore);
- }
- static CallInst *Create(FunctionType *Ty, Value *Func, ArrayRef<Value *> Args,
- const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr) {
- return new (unsigned(Args.size() + 1))
- CallInst(Ty, Func, Args, NameStr, InsertBefore);
- }
- static CallInst *Create(Value *Func,
- ArrayRef<Value *> Args,
- const Twine &NameStr, BasicBlock *InsertAtEnd) {
- return new(unsigned(Args.size() + 1))
- CallInst(Func, Args, NameStr, InsertAtEnd);
- }
- static CallInst *Create(Value *F, const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr) {
- return new(1) CallInst(F, NameStr, InsertBefore);
- }
- static CallInst *Create(Value *F, const Twine &NameStr,
- BasicBlock *InsertAtEnd) {
- return new(1) CallInst(F, NameStr, InsertAtEnd);
- }
- /// CreateMalloc - Generate the IR for a call to malloc:
- /// 1. Compute the malloc call's argument as the specified type's size,
- /// possibly multiplied by the array size if the array size is not
- /// constant 1.
- /// 2. Call malloc with that argument.
- /// 3. Bitcast the result of the malloc call to the specified type.
- static Instruction *CreateMalloc(Instruction *InsertBefore,
- Type *IntPtrTy, Type *AllocTy,
- Value *AllocSize, Value *ArraySize = nullptr,
- Function* MallocF = nullptr,
- const Twine &Name = "");
- static Instruction *CreateMalloc(BasicBlock *InsertAtEnd,
- Type *IntPtrTy, Type *AllocTy,
- Value *AllocSize, Value *ArraySize = nullptr,
- Function* MallocF = nullptr,
- const Twine &Name = "");
- /// CreateFree - Generate the IR for a call to the builtin free function.
- static Instruction* CreateFree(Value* Source, Instruction *InsertBefore);
- static Instruction* CreateFree(Value* Source, BasicBlock *InsertAtEnd);
- ~CallInst() override;
- FunctionType *getFunctionType() const { return FTy; }
- void mutateFunctionType(FunctionType *FTy) {
- mutateType(FTy->getReturnType());
- this->FTy = FTy;
- }
- // Note that 'musttail' implies 'tail'.
- enum TailCallKind { TCK_None = 0, TCK_Tail = 1, TCK_MustTail = 2 };
- TailCallKind getTailCallKind() const {
- return TailCallKind(getSubclassDataFromInstruction() & 3);
- }
- bool isTailCall() const {
- return (getSubclassDataFromInstruction() & 3) != TCK_None;
- }
- bool isMustTailCall() const {
- return (getSubclassDataFromInstruction() & 3) == TCK_MustTail;
- }
- void setTailCall(bool isTC = true) {
- setInstructionSubclassData((getSubclassDataFromInstruction() & ~3) |
- unsigned(isTC ? TCK_Tail : TCK_None));
- }
- void setTailCallKind(TailCallKind TCK) {
- setInstructionSubclassData((getSubclassDataFromInstruction() & ~3) |
- unsigned(TCK));
- }
- /// Provide fast operand accessors
- DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
- /// getNumArgOperands - Return the number of call arguments.
- ///
- unsigned getNumArgOperands() const { return getNumOperands() - 1; }
- /// getArgOperand/setArgOperand - Return/set the i-th call argument.
- ///
- Value *getArgOperand(unsigned i) const { return getOperand(i); }
- void setArgOperand(unsigned i, Value *v) { setOperand(i, v); }
- /// arg_operands - iteration adapter for range-for loops.
- iterator_range<op_iterator> arg_operands() {
- // The last operand in the op list is the callee - it's not one of the args
- // so we don't want to iterate over it.
- return iterator_range<op_iterator>(op_begin(), op_end() - 1);
- }
- /// arg_operands - iteration adapter for range-for loops.
- iterator_range<const_op_iterator> arg_operands() const {
- return iterator_range<const_op_iterator>(op_begin(), op_end() - 1);
- }
- /// \brief Wrappers for getting the \c Use of a call argument.
- const Use &getArgOperandUse(unsigned i) const { return getOperandUse(i); }
- Use &getArgOperandUse(unsigned i) { return getOperandUse(i); }
- /// getCallingConv/setCallingConv - Get or set the calling convention of this
- /// function call.
- CallingConv::ID getCallingConv() const {
- return static_cast<CallingConv::ID>(getSubclassDataFromInstruction() >> 2);
- }
- void setCallingConv(CallingConv::ID CC) {
- setInstructionSubclassData((getSubclassDataFromInstruction() & 3) |
- (static_cast<unsigned>(CC) << 2));
- }
- /// getAttributes - Return the parameter attributes for this call.
- ///
- const AttributeSet &getAttributes() const { return AttributeList; }
- /// setAttributes - Set the parameter attributes for this call.
- ///
- void setAttributes(const AttributeSet &Attrs) { AttributeList = Attrs; }
- /// addAttribute - adds the attribute to the list of attributes.
- void addAttribute(unsigned i, Attribute::AttrKind attr);
- /// addAttribute - adds the attribute to the list of attributes.
- void addAttribute(unsigned i, StringRef Kind, StringRef Value);
- /// removeAttribute - removes the attribute from the list of attributes.
- void removeAttribute(unsigned i, Attribute attr);
- /// \brief adds the dereferenceable attribute to the list of attributes.
- void addDereferenceableAttr(unsigned i, uint64_t Bytes);
- /// \brief adds the dereferenceable_or_null attribute to the list of
- /// attributes.
- void addDereferenceableOrNullAttr(unsigned i, uint64_t Bytes);
- /// \brief Determine whether this call has the given attribute.
- bool hasFnAttr(Attribute::AttrKind A) const {
- assert(A != Attribute::NoBuiltin &&
- "Use CallInst::isNoBuiltin() to check for Attribute::NoBuiltin");
- return hasFnAttrImpl(A);
- }
- /// \brief Determine whether this call has the given attribute.
- bool hasFnAttr(StringRef A) const {
- return hasFnAttrImpl(A);
- }
- /// \brief Determine whether the call or the callee has the given attributes.
- bool paramHasAttr(unsigned i, Attribute::AttrKind A) const;
- /// \brief Extract the alignment for a call or parameter (0=unknown).
- unsigned getParamAlignment(unsigned i) const {
- return AttributeList.getParamAlignment(i);
- }
- /// \brief Extract the number of dereferenceable bytes for a call or
- /// parameter (0=unknown).
- uint64_t getDereferenceableBytes(unsigned i) const {
- return AttributeList.getDereferenceableBytes(i);
- }
- /// \brief Extract the number of dereferenceable_or_null bytes for a call or
- /// parameter (0=unknown).
- uint64_t getDereferenceableOrNullBytes(unsigned i) const {
- return AttributeList.getDereferenceableOrNullBytes(i);
- }
-
- /// \brief Return true if the call should not be treated as a call to a
- /// builtin.
- bool isNoBuiltin() const {
- return hasFnAttrImpl(Attribute::NoBuiltin) &&
- !hasFnAttrImpl(Attribute::Builtin);
- }
- /// \brief Return true if the call should not be inlined.
- bool isNoInline() const { return hasFnAttr(Attribute::NoInline); }
- void setIsNoInline() {
- addAttribute(AttributeSet::FunctionIndex, Attribute::NoInline);
- }
- /// \brief Return true if the call can return twice
- bool canReturnTwice() const {
- return hasFnAttr(Attribute::ReturnsTwice);
- }
- void setCanReturnTwice() {
- addAttribute(AttributeSet::FunctionIndex, Attribute::ReturnsTwice);
- }
- /// \brief Determine if the call does not access memory.
- bool doesNotAccessMemory() const {
- return hasFnAttr(Attribute::ReadNone);
- }
- void setDoesNotAccessMemory() {
- addAttribute(AttributeSet::FunctionIndex, Attribute::ReadNone);
- }
- /// \brief Determine if the call does not access or only reads memory.
- bool onlyReadsMemory() const {
- return doesNotAccessMemory() || hasFnAttr(Attribute::ReadOnly);
- }
- void setOnlyReadsMemory() {
- addAttribute(AttributeSet::FunctionIndex, Attribute::ReadOnly);
- }
- /// @brief Determine if the call can access memmory only using pointers based
- /// on its arguments.
- bool onlyAccessesArgMemory() const {
- return hasFnAttr(Attribute::ArgMemOnly);
- }
- void setOnlyAccessesArgMemory() {
- addAttribute(AttributeSet::FunctionIndex, Attribute::ArgMemOnly);
- }
- /// \brief Determine if the call cannot return.
- bool doesNotReturn() const { return hasFnAttr(Attribute::NoReturn); }
- void setDoesNotReturn() {
- addAttribute(AttributeSet::FunctionIndex, Attribute::NoReturn);
- }
- /// \brief Determine if the call cannot unwind.
- bool doesNotThrow() const { return hasFnAttr(Attribute::NoUnwind); }
- void setDoesNotThrow() {
- addAttribute(AttributeSet::FunctionIndex, Attribute::NoUnwind);
- }
- /// \brief Determine if the call cannot be duplicated.
- bool cannotDuplicate() const {return hasFnAttr(Attribute::NoDuplicate); }
- void setCannotDuplicate() {
- addAttribute(AttributeSet::FunctionIndex, Attribute::NoDuplicate);
- }
- /// \brief Determine if the call returns a structure through first
- /// pointer argument.
- bool hasStructRetAttr() const {
- // Be friendly and also check the callee.
- return paramHasAttr(1, Attribute::StructRet);
- }
- /// \brief Determine if any call argument is an aggregate passed by value.
- bool hasByValArgument() const {
- return AttributeList.hasAttrSomewhere(Attribute::ByVal);
- }
- /// getCalledFunction - Return the function called, or null if this is an
- /// indirect function invocation.
- ///
- Function *getCalledFunction() const {
- return dyn_cast<Function>(Op<-1>());
- }
- /// getCalledValue - Get a pointer to the function that is invoked by this
- /// instruction.
- const Value *getCalledValue() const { return Op<-1>(); }
- Value *getCalledValue() { return Op<-1>(); }
- /// setCalledFunction - Set the function called.
- void setCalledFunction(Value* Fn) {
- setCalledFunction(
- cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType()),
- Fn);
- }
- void setCalledFunction(FunctionType *FTy, Value *Fn) {
- this->FTy = FTy;
- assert(FTy == cast<FunctionType>(
- cast<PointerType>(Fn->getType())->getElementType()));
- Op<-1>() = Fn;
- }
- /// isInlineAsm - Check if this call is an inline asm statement.
- bool isInlineAsm() const {
- return isa<InlineAsm>(Op<-1>());
- }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::Call;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- private:
- template<typename AttrKind>
- bool hasFnAttrImpl(AttrKind A) const {
- if (AttributeList.hasAttribute(AttributeSet::FunctionIndex, A))
- return true;
- if (const Function *F = getCalledFunction())
- return F->getAttributes().hasAttribute(AttributeSet::FunctionIndex, A);
- return false;
- }
- // Shadow Instruction::setInstructionSubclassData with a private forwarding
- // method so that subclasses cannot accidentally use it.
- void setInstructionSubclassData(unsigned short D) {
- Instruction::setInstructionSubclassData(D);
- }
- };
- template <>
- struct OperandTraits<CallInst> : public VariadicOperandTraits<CallInst, 1> {
- };
- CallInst::CallInst(Value *Func, ArrayRef<Value *> Args,
- const Twine &NameStr, BasicBlock *InsertAtEnd)
- : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
- ->getElementType())->getReturnType(),
- Instruction::Call,
- OperandTraits<CallInst>::op_end(this) - (Args.size() + 1),
- unsigned(Args.size() + 1), InsertAtEnd) {
- init(Func, Args, NameStr);
- }
- CallInst::CallInst(FunctionType *Ty, Value *Func, ArrayRef<Value *> Args,
- const Twine &NameStr, Instruction *InsertBefore)
- : Instruction(Ty->getReturnType(), Instruction::Call,
- OperandTraits<CallInst>::op_end(this) - (Args.size() + 1),
- unsigned(Args.size() + 1), InsertBefore) {
- init(Ty, Func, Args, NameStr);
- }
- // Note: if you get compile errors about private methods then
- // please update your code to use the high-level operand
- // interfaces. See line 943 above.
- DEFINE_TRANSPARENT_OPERAND_ACCESSORS(CallInst, Value)
- //===----------------------------------------------------------------------===//
- // SelectInst Class
- //===----------------------------------------------------------------------===//
- /// SelectInst - This class represents the LLVM 'select' instruction.
- ///
- class SelectInst : public Instruction {
- void init(Value *C, Value *S1, Value *S2) {
- assert(!areInvalidOperands(C, S1, S2) && "Invalid operands for select");
- Op<0>() = C;
- Op<1>() = S1;
- Op<2>() = S2;
- }
- SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr,
- Instruction *InsertBefore)
- : Instruction(S1->getType(), Instruction::Select,
- &Op<0>(), 3, InsertBefore) {
- init(C, S1, S2);
- setName(NameStr);
- }
- SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr,
- BasicBlock *InsertAtEnd)
- : Instruction(S1->getType(), Instruction::Select,
- &Op<0>(), 3, InsertAtEnd) {
- init(C, S1, S2);
- setName(NameStr);
- }
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- SelectInst *cloneImpl() const;
- public:
- static SelectInst *Create(Value *C, Value *S1, Value *S2,
- const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr) {
- return new(3) SelectInst(C, S1, S2, NameStr, InsertBefore);
- }
- static SelectInst *Create(Value *C, Value *S1, Value *S2,
- const Twine &NameStr,
- BasicBlock *InsertAtEnd) {
- return new(3) SelectInst(C, S1, S2, NameStr, InsertAtEnd);
- }
- const Value *getCondition() const { return Op<0>(); }
- const Value *getTrueValue() const { return Op<1>(); }
- const Value *getFalseValue() const { return Op<2>(); }
- Value *getCondition() { return Op<0>(); }
- Value *getTrueValue() { return Op<1>(); }
- Value *getFalseValue() { return Op<2>(); }
- /// areInvalidOperands - Return a string if the specified operands are invalid
- /// for a select operation, otherwise return null.
- static const char *areInvalidOperands(Value *Cond, Value *True, Value *False);
- /// Transparently provide more efficient getOperand methods.
- DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
- OtherOps getOpcode() const {
- return static_cast<OtherOps>(Instruction::getOpcode());
- }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::Select;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- template <>
- struct OperandTraits<SelectInst> : public FixedNumOperandTraits<SelectInst, 3> {
- };
- DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SelectInst, Value)
- //===----------------------------------------------------------------------===//
- // VAArgInst Class
- //===----------------------------------------------------------------------===//
- /// VAArgInst - This class represents the va_arg llvm instruction, which returns
- /// an argument of the specified type given a va_list and increments that list
- ///
- class VAArgInst : public UnaryInstruction {
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- VAArgInst *cloneImpl() const;
- public:
- VAArgInst(Value *List, Type *Ty, const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr)
- : UnaryInstruction(Ty, VAArg, List, InsertBefore) {
- setName(NameStr);
- }
- VAArgInst(Value *List, Type *Ty, const Twine &NameStr,
- BasicBlock *InsertAtEnd)
- : UnaryInstruction(Ty, VAArg, List, InsertAtEnd) {
- setName(NameStr);
- }
- Value *getPointerOperand() { return getOperand(0); }
- const Value *getPointerOperand() const { return getOperand(0); }
- static unsigned getPointerOperandIndex() { return 0U; }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == VAArg;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- //===----------------------------------------------------------------------===//
- // ExtractElementInst Class
- //===----------------------------------------------------------------------===//
- /// ExtractElementInst - This instruction extracts a single (scalar)
- /// element from a VectorType value
- ///
- class ExtractElementInst : public Instruction {
- ExtractElementInst(Value *Vec, Value *Idx, const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr);
- ExtractElementInst(Value *Vec, Value *Idx, const Twine &NameStr,
- BasicBlock *InsertAtEnd);
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- ExtractElementInst *cloneImpl() const;
- public:
- static ExtractElementInst *Create(Value *Vec, Value *Idx,
- const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr) {
- return new(2) ExtractElementInst(Vec, Idx, NameStr, InsertBefore);
- }
- static ExtractElementInst *Create(Value *Vec, Value *Idx,
- const Twine &NameStr,
- BasicBlock *InsertAtEnd) {
- return new(2) ExtractElementInst(Vec, Idx, NameStr, InsertAtEnd);
- }
- /// isValidOperands - Return true if an extractelement instruction can be
- /// formed with the specified operands.
- static bool isValidOperands(const Value *Vec, const Value *Idx);
- Value *getVectorOperand() { return Op<0>(); }
- Value *getIndexOperand() { return Op<1>(); }
- const Value *getVectorOperand() const { return Op<0>(); }
- const Value *getIndexOperand() const { return Op<1>(); }
- VectorType *getVectorOperandType() const {
- return cast<VectorType>(getVectorOperand()->getType());
- }
- /// Transparently provide more efficient getOperand methods.
- DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::ExtractElement;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- template <>
- struct OperandTraits<ExtractElementInst> :
- public FixedNumOperandTraits<ExtractElementInst, 2> {
- };
- DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ExtractElementInst, Value)
- //===----------------------------------------------------------------------===//
- // InsertElementInst Class
- //===----------------------------------------------------------------------===//
- /// InsertElementInst - This instruction inserts a single (scalar)
- /// element into a VectorType value
- ///
- class InsertElementInst : public Instruction {
- InsertElementInst(Value *Vec, Value *NewElt, Value *Idx,
- const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr);
- InsertElementInst(Value *Vec, Value *NewElt, Value *Idx,
- const Twine &NameStr, BasicBlock *InsertAtEnd);
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- InsertElementInst *cloneImpl() const;
- public:
- static InsertElementInst *Create(Value *Vec, Value *NewElt, Value *Idx,
- const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr) {
- return new(3) InsertElementInst(Vec, NewElt, Idx, NameStr, InsertBefore);
- }
- static InsertElementInst *Create(Value *Vec, Value *NewElt, Value *Idx,
- const Twine &NameStr,
- BasicBlock *InsertAtEnd) {
- return new(3) InsertElementInst(Vec, NewElt, Idx, NameStr, InsertAtEnd);
- }
- /// isValidOperands - Return true if an insertelement instruction can be
- /// formed with the specified operands.
- static bool isValidOperands(const Value *Vec, const Value *NewElt,
- const Value *Idx);
- /// getType - Overload to return most specific vector type.
- ///
- VectorType *getType() const {
- return cast<VectorType>(Instruction::getType());
- }
- /// Transparently provide more efficient getOperand methods.
- DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::InsertElement;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- template <>
- struct OperandTraits<InsertElementInst> :
- public FixedNumOperandTraits<InsertElementInst, 3> {
- };
- DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertElementInst, Value)
- //===----------------------------------------------------------------------===//
- // ShuffleVectorInst Class
- //===----------------------------------------------------------------------===//
- /// ShuffleVectorInst - This instruction constructs a fixed permutation of two
- /// input vectors.
- ///
- class ShuffleVectorInst : public Instruction {
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- ShuffleVectorInst *cloneImpl() const;
- public:
- // allocate space for exactly three operands
- void *operator new(size_t s) {
- return User::operator new(s, 3);
- }
- ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
- const Twine &NameStr = "",
- Instruction *InsertBefor = nullptr);
- ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
- const Twine &NameStr, BasicBlock *InsertAtEnd);
- /// isValidOperands - Return true if a shufflevector instruction can be
- /// formed with the specified operands.
- static bool isValidOperands(const Value *V1, const Value *V2,
- const Value *Mask);
- /// getType - Overload to return most specific vector type.
- ///
- VectorType *getType() const {
- return cast<VectorType>(Instruction::getType());
- }
- /// Transparently provide more efficient getOperand methods.
- DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
- Constant *getMask() const {
- return cast<Constant>(getOperand(2));
- }
- /// getMaskValue - Return the index from the shuffle mask for the specified
- /// output result. This is either -1 if the element is undef or a number less
- /// than 2*numelements.
- static int getMaskValue(Constant *Mask, unsigned i);
- int getMaskValue(unsigned i) const {
- return getMaskValue(getMask(), i);
- }
- /// getShuffleMask - Return the full mask for this instruction, where each
- /// element is the element number and undef's are returned as -1.
- static void getShuffleMask(Constant *Mask, SmallVectorImpl<int> &Result);
- void getShuffleMask(SmallVectorImpl<int> &Result) const {
- return getShuffleMask(getMask(), Result);
- }
- SmallVector<int, 16> getShuffleMask() const {
- SmallVector<int, 16> Mask;
- getShuffleMask(Mask);
- return Mask;
- }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::ShuffleVector;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- template <>
- struct OperandTraits<ShuffleVectorInst> :
- public FixedNumOperandTraits<ShuffleVectorInst, 3> {
- };
- DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ShuffleVectorInst, Value)
- //===----------------------------------------------------------------------===//
- // ExtractValueInst Class
- //===----------------------------------------------------------------------===//
- /// ExtractValueInst - This instruction extracts a struct member or array
- /// element value from an aggregate value.
- ///
- class ExtractValueInst : public UnaryInstruction {
- SmallVector<unsigned, 4> Indices;
- ExtractValueInst(const ExtractValueInst &EVI);
- void init(ArrayRef<unsigned> Idxs, const Twine &NameStr);
- /// Constructors - Create a extractvalue instruction with a base aggregate
- /// value and a list of indices. The first ctor can optionally insert before
- /// an existing instruction, the second appends the new instruction to the
- /// specified BasicBlock.
- inline ExtractValueInst(Value *Agg,
- ArrayRef<unsigned> Idxs,
- const Twine &NameStr,
- Instruction *InsertBefore);
- inline ExtractValueInst(Value *Agg,
- ArrayRef<unsigned> Idxs,
- const Twine &NameStr, BasicBlock *InsertAtEnd);
- // allocate space for exactly one operand
- void *operator new(size_t s) {
- return User::operator new(s, 1);
- }
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- ExtractValueInst *cloneImpl() const;
- public:
- static ExtractValueInst *Create(Value *Agg,
- ArrayRef<unsigned> Idxs,
- const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr) {
- return new
- ExtractValueInst(Agg, Idxs, NameStr, InsertBefore);
- }
- static ExtractValueInst *Create(Value *Agg,
- ArrayRef<unsigned> Idxs,
- const Twine &NameStr,
- BasicBlock *InsertAtEnd) {
- return new ExtractValueInst(Agg, Idxs, NameStr, InsertAtEnd);
- }
- /// getIndexedType - Returns the type of the element that would be extracted
- /// with an extractvalue instruction with the specified parameters.
- ///
- /// Null is returned if the indices are invalid for the specified type.
- static Type *getIndexedType(Type *Agg, ArrayRef<unsigned> Idxs);
- typedef const unsigned* idx_iterator;
- inline idx_iterator idx_begin() const { return Indices.begin(); }
- inline idx_iterator idx_end() const { return Indices.end(); }
- inline iterator_range<idx_iterator> indices() const {
- return iterator_range<idx_iterator>(idx_begin(), idx_end());
- }
- Value *getAggregateOperand() {
- return getOperand(0);
- }
- const Value *getAggregateOperand() const {
- return getOperand(0);
- }
- static unsigned getAggregateOperandIndex() {
- return 0U; // get index for modifying correct operand
- }
- ArrayRef<unsigned> getIndices() const {
- return Indices;
- }
- unsigned getNumIndices() const {
- return (unsigned)Indices.size();
- }
- bool hasIndices() const {
- return true;
- }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::ExtractValue;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- ExtractValueInst::ExtractValueInst(Value *Agg,
- ArrayRef<unsigned> Idxs,
- const Twine &NameStr,
- Instruction *InsertBefore)
- : UnaryInstruction(checkGEPType(getIndexedType(Agg->getType(), Idxs)),
- ExtractValue, Agg, InsertBefore) {
- init(Idxs, NameStr);
- }
- ExtractValueInst::ExtractValueInst(Value *Agg,
- ArrayRef<unsigned> Idxs,
- const Twine &NameStr,
- BasicBlock *InsertAtEnd)
- : UnaryInstruction(checkGEPType(getIndexedType(Agg->getType(), Idxs)),
- ExtractValue, Agg, InsertAtEnd) {
- init(Idxs, NameStr);
- }
- //===----------------------------------------------------------------------===//
- // InsertValueInst Class
- //===----------------------------------------------------------------------===//
- /// InsertValueInst - This instruction inserts a struct field of array element
- /// value into an aggregate value.
- ///
- class InsertValueInst : public Instruction {
- SmallVector<unsigned, 4> Indices;
- void *operator new(size_t, unsigned) = delete;
- InsertValueInst(const InsertValueInst &IVI);
- void init(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs,
- const Twine &NameStr);
- /// Constructors - Create a insertvalue instruction with a base aggregate
- /// value, a value to insert, and a list of indices. The first ctor can
- /// optionally insert before an existing instruction, the second appends
- /// the new instruction to the specified BasicBlock.
- inline InsertValueInst(Value *Agg, Value *Val,
- ArrayRef<unsigned> Idxs,
- const Twine &NameStr,
- Instruction *InsertBefore);
- inline InsertValueInst(Value *Agg, Value *Val,
- ArrayRef<unsigned> Idxs,
- const Twine &NameStr, BasicBlock *InsertAtEnd);
- /// Constructors - These two constructors are convenience methods because one
- /// and two index insertvalue instructions are so common.
- InsertValueInst(Value *Agg, Value *Val,
- unsigned Idx, const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr);
- InsertValueInst(Value *Agg, Value *Val, unsigned Idx,
- const Twine &NameStr, BasicBlock *InsertAtEnd);
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- InsertValueInst *cloneImpl() const;
- public:
- // allocate space for exactly two operands
- void *operator new(size_t s) {
- return User::operator new(s, 2);
- }
- static InsertValueInst *Create(Value *Agg, Value *Val,
- ArrayRef<unsigned> Idxs,
- const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr) {
- return new InsertValueInst(Agg, Val, Idxs, NameStr, InsertBefore);
- }
- static InsertValueInst *Create(Value *Agg, Value *Val,
- ArrayRef<unsigned> Idxs,
- const Twine &NameStr,
- BasicBlock *InsertAtEnd) {
- return new InsertValueInst(Agg, Val, Idxs, NameStr, InsertAtEnd);
- }
- /// Transparently provide more efficient getOperand methods.
- DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
- typedef const unsigned* idx_iterator;
- inline idx_iterator idx_begin() const { return Indices.begin(); }
- inline idx_iterator idx_end() const { return Indices.end(); }
- inline iterator_range<idx_iterator> indices() const {
- return iterator_range<idx_iterator>(idx_begin(), idx_end());
- }
- Value *getAggregateOperand() {
- return getOperand(0);
- }
- const Value *getAggregateOperand() const {
- return getOperand(0);
- }
- static unsigned getAggregateOperandIndex() {
- return 0U; // get index for modifying correct operand
- }
- Value *getInsertedValueOperand() {
- return getOperand(1);
- }
- const Value *getInsertedValueOperand() const {
- return getOperand(1);
- }
- static unsigned getInsertedValueOperandIndex() {
- return 1U; // get index for modifying correct operand
- }
- ArrayRef<unsigned> getIndices() const {
- return Indices;
- }
- unsigned getNumIndices() const {
- return (unsigned)Indices.size();
- }
- bool hasIndices() const {
- return true;
- }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::InsertValue;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- template <>
- struct OperandTraits<InsertValueInst> :
- public FixedNumOperandTraits<InsertValueInst, 2> {
- };
- InsertValueInst::InsertValueInst(Value *Agg,
- Value *Val,
- ArrayRef<unsigned> Idxs,
- const Twine &NameStr,
- Instruction *InsertBefore)
- : Instruction(Agg->getType(), InsertValue,
- OperandTraits<InsertValueInst>::op_begin(this),
- 2, InsertBefore) {
- init(Agg, Val, Idxs, NameStr);
- }
- InsertValueInst::InsertValueInst(Value *Agg,
- Value *Val,
- ArrayRef<unsigned> Idxs,
- const Twine &NameStr,
- BasicBlock *InsertAtEnd)
- : Instruction(Agg->getType(), InsertValue,
- OperandTraits<InsertValueInst>::op_begin(this),
- 2, InsertAtEnd) {
- init(Agg, Val, Idxs, NameStr);
- }
- DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertValueInst, Value)
- //===----------------------------------------------------------------------===//
- // PHINode Class
- //===----------------------------------------------------------------------===//
- // PHINode - The PHINode class is used to represent the magical mystical PHI
- // node, that can not exist in nature, but can be synthesized in a computer
- // scientist's overactive imagination.
- //
- class PHINode : public Instruction {
- void *operator new(size_t, unsigned) = delete;
- /// ReservedSpace - The number of operands actually allocated. NumOperands is
- /// the number actually in use.
- unsigned ReservedSpace;
- PHINode(const PHINode &PN);
- // allocate space for exactly zero operands
- void *operator new(size_t s) {
- return User::operator new(s);
- }
- explicit PHINode(Type *Ty, unsigned NumReservedValues,
- const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr)
- : Instruction(Ty, Instruction::PHI, nullptr, 0, InsertBefore),
- ReservedSpace(NumReservedValues) {
- setName(NameStr);
- allocHungoffUses(ReservedSpace);
- }
- PHINode(Type *Ty, unsigned NumReservedValues, const Twine &NameStr,
- BasicBlock *InsertAtEnd)
- : Instruction(Ty, Instruction::PHI, nullptr, 0, InsertAtEnd),
- ReservedSpace(NumReservedValues) {
- setName(NameStr);
- allocHungoffUses(ReservedSpace);
- }
- protected:
- // allocHungoffUses - this is more complicated than the generic
- // User::allocHungoffUses, because we have to allocate Uses for the incoming
- // values and pointers to the incoming blocks, all in one allocation.
- void allocHungoffUses(unsigned N) {
- User::allocHungoffUses(N, /* IsPhi */ true);
- }
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- PHINode *cloneImpl() const;
- public:
- /// Constructors - NumReservedValues is a hint for the number of incoming
- /// edges that this phi node will have (use 0 if you really have no idea).
- static PHINode *Create(Type *Ty, unsigned NumReservedValues,
- const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr) {
- return new PHINode(Ty, NumReservedValues, NameStr, InsertBefore);
- }
- static PHINode *Create(Type *Ty, unsigned NumReservedValues,
- const Twine &NameStr, BasicBlock *InsertAtEnd) {
- return new PHINode(Ty, NumReservedValues, NameStr, InsertAtEnd);
- }
- /// Provide fast operand accessors
- DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
- // Block iterator interface. This provides access to the list of incoming
- // basic blocks, which parallels the list of incoming values.
- typedef BasicBlock **block_iterator;
- typedef BasicBlock * const *const_block_iterator;
- block_iterator block_begin() {
- Use::UserRef *ref =
- reinterpret_cast<Use::UserRef*>(op_begin() + ReservedSpace);
- return reinterpret_cast<block_iterator>(ref + 1);
- }
- const_block_iterator block_begin() const {
- const Use::UserRef *ref =
- reinterpret_cast<const Use::UserRef*>(op_begin() + ReservedSpace);
- return reinterpret_cast<const_block_iterator>(ref + 1);
- }
- block_iterator block_end() {
- return block_begin() + getNumOperands();
- }
- const_block_iterator block_end() const {
- return block_begin() + getNumOperands();
- }
- op_range incoming_values() { return operands(); }
- const_op_range incoming_values() const { return operands(); }
- /// getNumIncomingValues - Return the number of incoming edges
- ///
- unsigned getNumIncomingValues() const { return getNumOperands(); }
- /// getIncomingValue - Return incoming value number x
- ///
- Value *getIncomingValue(unsigned i) const {
- return getOperand(i);
- }
- void setIncomingValue(unsigned i, Value *V) {
- setOperand(i, V);
- }
- static unsigned getOperandNumForIncomingValue(unsigned i) {
- return i;
- }
- static unsigned getIncomingValueNumForOperand(unsigned i) {
- return i;
- }
- /// getIncomingBlock - Return incoming basic block number @p i.
- ///
- BasicBlock *getIncomingBlock(unsigned i) const {
- return block_begin()[i];
- }
- /// getIncomingBlock - Return incoming basic block corresponding
- /// to an operand of the PHI.
- ///
- BasicBlock *getIncomingBlock(const Use &U) const {
- assert(this == U.getUser() && "Iterator doesn't point to PHI's Uses?");
- return getIncomingBlock(unsigned(&U - op_begin()));
- }
- /// getIncomingBlock - Return incoming basic block corresponding
- /// to value use iterator.
- ///
- BasicBlock *getIncomingBlock(Value::const_user_iterator I) const {
- return getIncomingBlock(I.getUse());
- }
- void setIncomingBlock(unsigned i, BasicBlock *BB) {
- block_begin()[i] = BB;
- }
- /// addIncoming - Add an incoming value to the end of the PHI list
- ///
- void addIncoming(Value *V, BasicBlock *BB) {
- assert(V && "PHI node got a null value!");
- assert(BB && "PHI node got a null basic block!");
- assert(getType() == V->getType() &&
- "All operands to PHI node must be the same type as the PHI node!");
- if (getNumOperands() == ReservedSpace)
- growOperands(); // Get more space!
- // Initialize some new operands.
- setNumHungOffUseOperands(getNumOperands() + 1);
- setIncomingValue(getNumOperands() - 1, V);
- setIncomingBlock(getNumOperands() - 1, BB);
- }
- /// removeIncomingValue - Remove an incoming value. This is useful if a
- /// predecessor basic block is deleted. The value removed is returned.
- ///
- /// If the last incoming value for a PHI node is removed (and DeletePHIIfEmpty
- /// is true), the PHI node is destroyed and any uses of it are replaced with
- /// dummy values. The only time there should be zero incoming values to a PHI
- /// node is when the block is dead, so this strategy is sound.
- ///
- Value *removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty = true);
- Value *removeIncomingValue(const BasicBlock *BB, bool DeletePHIIfEmpty=true) {
- int Idx = getBasicBlockIndex(BB);
- assert(Idx >= 0 && "Invalid basic block argument to remove!");
- return removeIncomingValue(Idx, DeletePHIIfEmpty);
- }
- /// getBasicBlockIndex - Return the first index of the specified basic
- /// block in the value list for this PHI. Returns -1 if no instance.
- ///
- int getBasicBlockIndex(const BasicBlock *BB) const {
- for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
- if (block_begin()[i] == BB)
- return i;
- return -1;
- }
- Value *getIncomingValueForBlock(const BasicBlock *BB) const {
- int Idx = getBasicBlockIndex(BB);
- assert(Idx >= 0 && "Invalid basic block argument!");
- return getIncomingValue(Idx);
- }
- /// hasConstantValue - If the specified PHI node always merges together the
- /// same value, return the value, otherwise return null.
- Value *hasConstantValue() const;
- /// Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::PHI;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- private:
- void growOperands();
- };
- template <>
- struct OperandTraits<PHINode> : public HungoffOperandTraits<2> {
- };
- DEFINE_TRANSPARENT_OPERAND_ACCESSORS(PHINode, Value)
- //===----------------------------------------------------------------------===//
- // LandingPadInst Class
- //===----------------------------------------------------------------------===//
- //===---------------------------------------------------------------------------
- /// LandingPadInst - The landingpad instruction holds all of the information
- /// necessary to generate correct exception handling. The landingpad instruction
- /// cannot be moved from the top of a landing pad block, which itself is
- /// accessible only from the 'unwind' edge of an invoke. This uses the
- /// SubclassData field in Value to store whether or not the landingpad is a
- /// cleanup.
- ///
- class LandingPadInst : public Instruction {
- /// ReservedSpace - The number of operands actually allocated. NumOperands is
- /// the number actually in use.
- unsigned ReservedSpace;
- LandingPadInst(const LandingPadInst &LP);
- public:
- enum ClauseType { Catch, Filter };
- private:
- void *operator new(size_t, unsigned) = delete;
- // Allocate space for exactly zero operands.
- void *operator new(size_t s) {
- return User::operator new(s);
- }
- void growOperands(unsigned Size);
- void init(unsigned NumReservedValues, const Twine &NameStr);
- explicit LandingPadInst(Type *RetTy, unsigned NumReservedValues,
- const Twine &NameStr, Instruction *InsertBefore);
- explicit LandingPadInst(Type *RetTy, unsigned NumReservedValues,
- const Twine &NameStr, BasicBlock *InsertAtEnd);
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- LandingPadInst *cloneImpl() const;
- public:
- /// Constructors - NumReservedClauses is a hint for the number of incoming
- /// clauses that this landingpad will have (use 0 if you really have no idea).
- static LandingPadInst *Create(Type *RetTy, unsigned NumReservedClauses,
- const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr);
- static LandingPadInst *Create(Type *RetTy, unsigned NumReservedClauses,
- const Twine &NameStr, BasicBlock *InsertAtEnd);
- /// Provide fast operand accessors
- DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
- /// isCleanup - Return 'true' if this landingpad instruction is a
- /// cleanup. I.e., it should be run when unwinding even if its landing pad
- /// doesn't catch the exception.
- bool isCleanup() const { return getSubclassDataFromInstruction() & 1; }
- /// setCleanup - Indicate that this landingpad instruction is a cleanup.
- void setCleanup(bool V) {
- setInstructionSubclassData((getSubclassDataFromInstruction() & ~1) |
- (V ? 1 : 0));
- }
- /// Add a catch or filter clause to the landing pad.
- void addClause(Constant *ClauseVal);
- /// Get the value of the clause at index Idx. Use isCatch/isFilter to
- /// determine what type of clause this is.
- Constant *getClause(unsigned Idx) const {
- return cast<Constant>(getOperandList()[Idx]);
- }
- /// isCatch - Return 'true' if the clause and index Idx is a catch clause.
- bool isCatch(unsigned Idx) const {
- return !isa<ArrayType>(getOperandList()[Idx]->getType());
- }
- /// isFilter - Return 'true' if the clause and index Idx is a filter clause.
- bool isFilter(unsigned Idx) const {
- return isa<ArrayType>(getOperandList()[Idx]->getType());
- }
- /// getNumClauses - Get the number of clauses for this landing pad.
- unsigned getNumClauses() const { return getNumOperands(); }
- /// reserveClauses - Grow the size of the operand list to accommodate the new
- /// number of clauses.
- void reserveClauses(unsigned Size) { growOperands(Size); }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::LandingPad;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- template <>
- struct OperandTraits<LandingPadInst> : public HungoffOperandTraits<1> {
- };
- DEFINE_TRANSPARENT_OPERAND_ACCESSORS(LandingPadInst, Value)
- //===----------------------------------------------------------------------===//
- // ReturnInst Class
- //===----------------------------------------------------------------------===//
- //===---------------------------------------------------------------------------
- /// ReturnInst - Return a value (possibly void), from a function. Execution
- /// does not continue in this function any longer.
- ///
- class ReturnInst : public TerminatorInst {
- ReturnInst(const ReturnInst &RI);
- private:
- // ReturnInst constructors:
- // ReturnInst() - 'ret void' instruction
- // ReturnInst( null) - 'ret void' instruction
- // ReturnInst(Value* X) - 'ret X' instruction
- // ReturnInst( null, Inst *I) - 'ret void' instruction, insert before I
- // ReturnInst(Value* X, Inst *I) - 'ret X' instruction, insert before I
- // ReturnInst( null, BB *B) - 'ret void' instruction, insert @ end of B
- // ReturnInst(Value* X, BB *B) - 'ret X' instruction, insert @ end of B
- //
- // NOTE: If the Value* passed is of type void then the constructor behaves as
- // if it was passed NULL.
- explicit ReturnInst(LLVMContext &C, Value *retVal = nullptr,
- Instruction *InsertBefore = nullptr);
- ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd);
- explicit ReturnInst(LLVMContext &C, BasicBlock *InsertAtEnd);
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- ReturnInst *cloneImpl() const;
- public:
- static ReturnInst* Create(LLVMContext &C, Value *retVal = nullptr,
- Instruction *InsertBefore = nullptr) {
- return new(!!retVal) ReturnInst(C, retVal, InsertBefore);
- }
- static ReturnInst* Create(LLVMContext &C, Value *retVal,
- BasicBlock *InsertAtEnd) {
- return new(!!retVal) ReturnInst(C, retVal, InsertAtEnd);
- }
- static ReturnInst* Create(LLVMContext &C, BasicBlock *InsertAtEnd) {
- return new(0) ReturnInst(C, InsertAtEnd);
- }
- ~ReturnInst() override;
- /// Provide fast operand accessors
- DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
- /// Convenience accessor. Returns null if there is no return value.
- Value *getReturnValue() const {
- return getNumOperands() != 0 ? getOperand(0) : nullptr;
- }
- unsigned getNumSuccessors() const { return 0; }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return (I->getOpcode() == Instruction::Ret);
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- private:
- BasicBlock *getSuccessorV(unsigned idx) const override;
- unsigned getNumSuccessorsV() const override;
- void setSuccessorV(unsigned idx, BasicBlock *B) override;
- };
- template <>
- struct OperandTraits<ReturnInst> : public VariadicOperandTraits<ReturnInst> {
- };
- DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ReturnInst, Value)
- //===----------------------------------------------------------------------===//
- // BranchInst Class
- //===----------------------------------------------------------------------===//
- //===---------------------------------------------------------------------------
- /// BranchInst - Conditional or Unconditional Branch instruction.
- ///
- class BranchInst : public TerminatorInst {
- /// Ops list - Branches are strange. The operands are ordered:
- /// [Cond, FalseDest,] TrueDest. This makes some accessors faster because
- /// they don't have to check for cond/uncond branchness. These are mostly
- /// accessed relative from op_end().
- BranchInst(const BranchInst &BI);
- void AssertOK();
- // BranchInst constructors (where {B, T, F} are blocks, and C is a condition):
- // BranchInst(BB *B) - 'br B'
- // BranchInst(BB* T, BB *F, Value *C) - 'br C, T, F'
- // BranchInst(BB* B, Inst *I) - 'br B' insert before I
- // BranchInst(BB* T, BB *F, Value *C, Inst *I) - 'br C, T, F', insert before I
- // BranchInst(BB* B, BB *I) - 'br B' insert at end
- // BranchInst(BB* T, BB *F, Value *C, BB *I) - 'br C, T, F', insert at end
- explicit BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore = nullptr);
- BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
- Instruction *InsertBefore = nullptr);
- BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd);
- BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
- BasicBlock *InsertAtEnd);
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- BranchInst *cloneImpl() const;
- public:
- static BranchInst *Create(BasicBlock *IfTrue,
- Instruction *InsertBefore = nullptr) {
- return new(1) BranchInst(IfTrue, InsertBefore);
- }
- static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse,
- Value *Cond, Instruction *InsertBefore = nullptr) {
- return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertBefore);
- }
- static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *InsertAtEnd) {
- return new(1) BranchInst(IfTrue, InsertAtEnd);
- }
- static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse,
- Value *Cond, BasicBlock *InsertAtEnd) {
- return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertAtEnd);
- }
- /// Transparently provide more efficient getOperand methods.
- DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
- bool isUnconditional() const { return getNumOperands() == 1; }
- bool isConditional() const { return getNumOperands() == 3; }
- Value *getCondition() const {
- assert(isConditional() && "Cannot get condition of an uncond branch!");
- return Op<-3>();
- }
- void setCondition(Value *V) {
- assert(isConditional() && "Cannot set condition of unconditional branch!");
- Op<-3>() = V;
- }
- unsigned getNumSuccessors() const { return 1+isConditional(); }
- BasicBlock *getSuccessor(unsigned i) const {
- assert(i < getNumSuccessors() && "Successor # out of range for Branch!");
- return cast_or_null<BasicBlock>((&Op<-1>() - i)->get());
- }
- void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
- assert(idx < getNumSuccessors() && "Successor # out of range for Branch!");
- *(&Op<-1>() - idx) = (Value*)NewSucc;
- }
- /// \brief Swap the successors of this branch instruction.
- ///
- /// Swaps the successors of the branch instruction. This also swaps any
- /// branch weight metadata associated with the instruction so that it
- /// continues to map correctly to each operand.
- void swapSuccessors();
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return (I->getOpcode() == Instruction::Br);
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- private:
- BasicBlock *getSuccessorV(unsigned idx) const override;
- unsigned getNumSuccessorsV() const override;
- void setSuccessorV(unsigned idx, BasicBlock *B) override;
- };
- template <>
- struct OperandTraits<BranchInst> : public VariadicOperandTraits<BranchInst, 1> {
- };
- DEFINE_TRANSPARENT_OPERAND_ACCESSORS(BranchInst, Value)
- //===----------------------------------------------------------------------===//
- // SwitchInst Class
- //===----------------------------------------------------------------------===//
- //===---------------------------------------------------------------------------
- /// SwitchInst - Multiway switch
- ///
- class SwitchInst : public TerminatorInst {
- void *operator new(size_t, unsigned) = delete;
- unsigned ReservedSpace;
- // Operand[0] = Value to switch on
- // Operand[1] = Default basic block destination
- // Operand[2n ] = Value to match
- // Operand[2n+1] = BasicBlock to go to on match
- SwitchInst(const SwitchInst &SI);
- void init(Value *Value, BasicBlock *Default, unsigned NumReserved);
- void growOperands();
- // allocate space for exactly zero operands
- void *operator new(size_t s) {
- return User::operator new(s);
- }
- /// SwitchInst ctor - Create a new switch instruction, specifying a value to
- /// switch on and a default destination. The number of additional cases can
- /// be specified here to make memory allocation more efficient. This
- /// constructor can also autoinsert before another instruction.
- SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
- Instruction *InsertBefore);
- /// SwitchInst ctor - Create a new switch instruction, specifying a value to
- /// switch on and a default destination. The number of additional cases can
- /// be specified here to make memory allocation more efficient. This
- /// constructor also autoinserts at the end of the specified BasicBlock.
- SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
- BasicBlock *InsertAtEnd);
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- SwitchInst *cloneImpl() const;
- public:
- // -2
- static const unsigned DefaultPseudoIndex = static_cast<unsigned>(~0L-1);
- template <class SwitchInstTy, class ConstantIntTy, class BasicBlockTy>
- class CaseIteratorT {
- protected:
- SwitchInstTy *SI;
- unsigned Index;
- public:
- typedef CaseIteratorT<SwitchInstTy, ConstantIntTy, BasicBlockTy> Self;
- /// Initializes case iterator for given SwitchInst and for given
- /// case number.
- CaseIteratorT(SwitchInstTy *SI, unsigned CaseNum) {
- this->SI = SI;
- Index = CaseNum;
- }
- /// Initializes case iterator for given SwitchInst and for given
- /// TerminatorInst's successor index.
- static Self fromSuccessorIndex(SwitchInstTy *SI, unsigned SuccessorIndex) {
- assert(SuccessorIndex < SI->getNumSuccessors() &&
- "Successor index # out of range!");
- return SuccessorIndex != 0 ?
- Self(SI, SuccessorIndex - 1) :
- Self(SI, DefaultPseudoIndex);
- }
- /// Resolves case value for current case.
- ConstantIntTy *getCaseValue() {
- assert(Index < SI->getNumCases() && "Index out the number of cases.");
- return reinterpret_cast<ConstantIntTy*>(SI->getOperand(2 + Index*2));
- }
- /// Resolves successor for current case.
- BasicBlockTy *getCaseSuccessor() {
- assert((Index < SI->getNumCases() ||
- Index == DefaultPseudoIndex) &&
- "Index out the number of cases.");
- return SI->getSuccessor(getSuccessorIndex());
- }
- /// Returns number of current case.
- unsigned getCaseIndex() const { return Index; }
- /// Returns TerminatorInst's successor index for current case successor.
- unsigned getSuccessorIndex() const {
- assert((Index == DefaultPseudoIndex || Index < SI->getNumCases()) &&
- "Index out the number of cases.");
- return Index != DefaultPseudoIndex ? Index + 1 : 0;
- }
- Self operator++() {
- // Check index correctness after increment.
- // Note: Index == getNumCases() means end().
- assert(Index+1 <= SI->getNumCases() && "Index out the number of cases.");
- ++Index;
- return *this;
- }
- Self operator++(int) {
- Self tmp = *this;
- ++(*this);
- return tmp;
- }
- Self operator--() {
- // Check index correctness after decrement.
- // Note: Index == getNumCases() means end().
- // Also allow "-1" iterator here. That will became valid after ++.
- assert((Index == 0 || Index-1 <= SI->getNumCases()) &&
- "Index out the number of cases.");
- --Index;
- return *this;
- }
- Self operator--(int) {
- Self tmp = *this;
- --(*this);
- return tmp;
- }
- bool operator==(const Self& RHS) const {
- assert(RHS.SI == SI && "Incompatible operators.");
- return RHS.Index == Index;
- }
- bool operator!=(const Self& RHS) const {
- assert(RHS.SI == SI && "Incompatible operators.");
- return RHS.Index != Index;
- }
- Self &operator*() {
- return *this;
- }
- };
- typedef CaseIteratorT<const SwitchInst, const ConstantInt, const BasicBlock>
- ConstCaseIt;
- class CaseIt : public CaseIteratorT<SwitchInst, ConstantInt, BasicBlock> {
- typedef CaseIteratorT<SwitchInst, ConstantInt, BasicBlock> ParentTy;
- public:
- CaseIt(const ParentTy& Src) : ParentTy(Src) {}
- CaseIt(SwitchInst *SI, unsigned CaseNum) : ParentTy(SI, CaseNum) {}
- /// Sets the new value for current case.
- void setValue(ConstantInt *V) {
- assert(Index < SI->getNumCases() && "Index out the number of cases.");
- SI->setOperand(2 + Index*2, reinterpret_cast<Value*>(V));
- }
- /// Sets the new successor for current case.
- void setSuccessor(BasicBlock *S) {
- SI->setSuccessor(getSuccessorIndex(), S);
- }
- };
- static SwitchInst *Create(Value *Value, BasicBlock *Default,
- unsigned NumCases,
- Instruction *InsertBefore = nullptr) {
- return new SwitchInst(Value, Default, NumCases, InsertBefore);
- }
- static SwitchInst *Create(Value *Value, BasicBlock *Default,
- unsigned NumCases, BasicBlock *InsertAtEnd) {
- return new SwitchInst(Value, Default, NumCases, InsertAtEnd);
- }
- /// Provide fast operand accessors
- DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
- // Accessor Methods for Switch stmt
- Value *getCondition() const { return getOperand(0); }
- void setCondition(Value *V) { setOperand(0, V); }
- BasicBlock *getDefaultDest() const {
- return cast<BasicBlock>(getOperand(1));
- }
- void setDefaultDest(BasicBlock *DefaultCase) {
- setOperand(1, reinterpret_cast<Value*>(DefaultCase));
- }
- /// getNumCases - return the number of 'cases' in this switch instruction,
- /// except the default case
- unsigned getNumCases() const {
- return getNumOperands()/2 - 1;
- }
- /// Returns a read/write iterator that points to the first
- /// case in SwitchInst.
- CaseIt case_begin() {
- return CaseIt(this, 0);
- }
- /// Returns a read-only iterator that points to the first
- /// case in the SwitchInst.
- ConstCaseIt case_begin() const {
- return ConstCaseIt(this, 0);
- }
- /// Returns a read/write iterator that points one past the last
- /// in the SwitchInst.
- CaseIt case_end() {
- return CaseIt(this, getNumCases());
- }
- /// Returns a read-only iterator that points one past the last
- /// in the SwitchInst.
- ConstCaseIt case_end() const {
- return ConstCaseIt(this, getNumCases());
- }
- /// cases - iteration adapter for range-for loops.
- iterator_range<CaseIt> cases() {
- return iterator_range<CaseIt>(case_begin(), case_end());
- }
- /// cases - iteration adapter for range-for loops.
- iterator_range<ConstCaseIt> cases() const {
- return iterator_range<ConstCaseIt>(case_begin(), case_end());
- }
- /// Returns an iterator that points to the default case.
- /// Note: this iterator allows to resolve successor only. Attempt
- /// to resolve case value causes an assertion.
- /// Also note, that increment and decrement also causes an assertion and
- /// makes iterator invalid.
- CaseIt case_default() {
- return CaseIt(this, DefaultPseudoIndex);
- }
- ConstCaseIt case_default() const {
- return ConstCaseIt(this, DefaultPseudoIndex);
- }
- /// findCaseValue - Search all of the case values for the specified constant.
- /// If it is explicitly handled, return the case iterator of it, otherwise
- /// return default case iterator to indicate
- /// that it is handled by the default handler.
- CaseIt findCaseValue(const ConstantInt *C) {
- for (CaseIt i = case_begin(), e = case_end(); i != e; ++i)
- if (i.getCaseValue() == C)
- return i;
- return case_default();
- }
- ConstCaseIt findCaseValue(const ConstantInt *C) const {
- for (ConstCaseIt i = case_begin(), e = case_end(); i != e; ++i)
- if (i.getCaseValue() == C)
- return i;
- return case_default();
- }
- /// findCaseDest - Finds the unique case value for a given successor. Returns
- /// null if the successor is not found, not unique, or is the default case.
- ConstantInt *findCaseDest(BasicBlock *BB) {
- if (BB == getDefaultDest()) return nullptr;
- ConstantInt *CI = nullptr;
- for (CaseIt i = case_begin(), e = case_end(); i != e; ++i) {
- if (i.getCaseSuccessor() == BB) {
- if (CI) return nullptr; // Multiple cases lead to BB.
- else CI = i.getCaseValue();
- }
- }
- return CI;
- }
- /// addCase - Add an entry to the switch instruction...
- /// Note:
- /// This action invalidates case_end(). Old case_end() iterator will
- /// point to the added case.
- void addCase(ConstantInt *OnVal, BasicBlock *Dest);
- /// removeCase - This method removes the specified case and its successor
- /// from the switch instruction. Note that this operation may reorder the
- /// remaining cases at index idx and above.
- /// Note:
- /// This action invalidates iterators for all cases following the one removed,
- /// including the case_end() iterator.
- void removeCase(CaseIt i);
- unsigned getNumSuccessors() const { return getNumOperands()/2; }
- BasicBlock *getSuccessor(unsigned idx) const {
- assert(idx < getNumSuccessors() &&"Successor idx out of range for switch!");
- return cast<BasicBlock>(getOperand(idx*2+1));
- }
- void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
- assert(idx < getNumSuccessors() && "Successor # out of range for switch!");
- setOperand(idx*2+1, (Value*)NewSucc);
- }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::Switch;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- private:
- BasicBlock *getSuccessorV(unsigned idx) const override;
- unsigned getNumSuccessorsV() const override;
- void setSuccessorV(unsigned idx, BasicBlock *B) override;
- };
- template <>
- struct OperandTraits<SwitchInst> : public HungoffOperandTraits<2> {
- };
- DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SwitchInst, Value)
- //===----------------------------------------------------------------------===//
- // IndirectBrInst Class
- //===----------------------------------------------------------------------===//
- //===---------------------------------------------------------------------------
- /// IndirectBrInst - Indirect Branch Instruction.
- ///
- class IndirectBrInst : public TerminatorInst {
- void *operator new(size_t, unsigned) = delete;
- unsigned ReservedSpace;
- // Operand[0] = Value to switch on
- // Operand[1] = Default basic block destination
- // Operand[2n ] = Value to match
- // Operand[2n+1] = BasicBlock to go to on match
- IndirectBrInst(const IndirectBrInst &IBI);
- void init(Value *Address, unsigned NumDests);
- void growOperands();
- // allocate space for exactly zero operands
- void *operator new(size_t s) {
- return User::operator new(s);
- }
- /// IndirectBrInst ctor - Create a new indirectbr instruction, specifying an
- /// Address to jump to. The number of expected destinations can be specified
- /// here to make memory allocation more efficient. This constructor can also
- /// autoinsert before another instruction.
- IndirectBrInst(Value *Address, unsigned NumDests, Instruction *InsertBefore);
- /// IndirectBrInst ctor - Create a new indirectbr instruction, specifying an
- /// Address to jump to. The number of expected destinations can be specified
- /// here to make memory allocation more efficient. This constructor also
- /// autoinserts at the end of the specified BasicBlock.
- IndirectBrInst(Value *Address, unsigned NumDests, BasicBlock *InsertAtEnd);
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- IndirectBrInst *cloneImpl() const;
- public:
- static IndirectBrInst *Create(Value *Address, unsigned NumDests,
- Instruction *InsertBefore = nullptr) {
- return new IndirectBrInst(Address, NumDests, InsertBefore);
- }
- static IndirectBrInst *Create(Value *Address, unsigned NumDests,
- BasicBlock *InsertAtEnd) {
- return new IndirectBrInst(Address, NumDests, InsertAtEnd);
- }
- /// Provide fast operand accessors.
- DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
- // Accessor Methods for IndirectBrInst instruction.
- Value *getAddress() { return getOperand(0); }
- const Value *getAddress() const { return getOperand(0); }
- void setAddress(Value *V) { setOperand(0, V); }
- /// getNumDestinations - return the number of possible destinations in this
- /// indirectbr instruction.
- unsigned getNumDestinations() const { return getNumOperands()-1; }
- /// getDestination - Return the specified destination.
- BasicBlock *getDestination(unsigned i) { return getSuccessor(i); }
- const BasicBlock *getDestination(unsigned i) const { return getSuccessor(i); }
- /// addDestination - Add a destination.
- ///
- void addDestination(BasicBlock *Dest);
- /// removeDestination - This method removes the specified successor from the
- /// indirectbr instruction.
- void removeDestination(unsigned i);
- unsigned getNumSuccessors() const { return getNumOperands()-1; }
- BasicBlock *getSuccessor(unsigned i) const {
- return cast<BasicBlock>(getOperand(i+1));
- }
- void setSuccessor(unsigned i, BasicBlock *NewSucc) {
- setOperand(i+1, (Value*)NewSucc);
- }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::IndirectBr;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- private:
- BasicBlock *getSuccessorV(unsigned idx) const override;
- unsigned getNumSuccessorsV() const override;
- void setSuccessorV(unsigned idx, BasicBlock *B) override;
- };
- template <>
- struct OperandTraits<IndirectBrInst> : public HungoffOperandTraits<1> {
- };
- DEFINE_TRANSPARENT_OPERAND_ACCESSORS(IndirectBrInst, Value)
- //===----------------------------------------------------------------------===//
- // InvokeInst Class
- //===----------------------------------------------------------------------===//
- /// InvokeInst - Invoke instruction. The SubclassData field is used to hold the
- /// calling convention of the call.
- ///
- class InvokeInst : public TerminatorInst {
- AttributeSet AttributeList;
- FunctionType *FTy;
- InvokeInst(const InvokeInst &BI);
- void init(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException,
- ArrayRef<Value *> Args, const Twine &NameStr) {
- init(cast<FunctionType>(
- cast<PointerType>(Func->getType())->getElementType()),
- Func, IfNormal, IfException, Args, NameStr);
- }
- void init(FunctionType *FTy, Value *Func, BasicBlock *IfNormal,
- BasicBlock *IfException, ArrayRef<Value *> Args,
- const Twine &NameStr);
- /// Construct an InvokeInst given a range of arguments.
- ///
- /// \brief Construct an InvokeInst from a range of arguments
- inline InvokeInst(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException,
- ArrayRef<Value *> Args, unsigned Values,
- const Twine &NameStr, Instruction *InsertBefore)
- : InvokeInst(cast<FunctionType>(
- cast<PointerType>(Func->getType())->getElementType()),
- Func, IfNormal, IfException, Args, Values, NameStr,
- InsertBefore) {}
- inline InvokeInst(FunctionType *Ty, Value *Func, BasicBlock *IfNormal,
- BasicBlock *IfException, ArrayRef<Value *> Args,
- unsigned Values, const Twine &NameStr,
- Instruction *InsertBefore);
- /// Construct an InvokeInst given a range of arguments.
- ///
- /// \brief Construct an InvokeInst from a range of arguments
- inline InvokeInst(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException,
- ArrayRef<Value *> Args, unsigned Values,
- const Twine &NameStr, BasicBlock *InsertAtEnd);
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- InvokeInst *cloneImpl() const;
- public:
- static InvokeInst *Create(Value *Func,
- BasicBlock *IfNormal, BasicBlock *IfException,
- ArrayRef<Value *> Args, const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr) {
- return Create(cast<FunctionType>(
- cast<PointerType>(Func->getType())->getElementType()),
- Func, IfNormal, IfException, Args, NameStr, InsertBefore);
- }
- static InvokeInst *Create(FunctionType *Ty, Value *Func, BasicBlock *IfNormal,
- BasicBlock *IfException, ArrayRef<Value *> Args,
- const Twine &NameStr = "",
- Instruction *InsertBefore = nullptr) {
- unsigned Values = unsigned(Args.size()) + 3;
- return new (Values) InvokeInst(Ty, Func, IfNormal, IfException, Args,
- Values, NameStr, InsertBefore);
- }
- static InvokeInst *Create(Value *Func,
- BasicBlock *IfNormal, BasicBlock *IfException,
- ArrayRef<Value *> Args, const Twine &NameStr,
- BasicBlock *InsertAtEnd) {
- unsigned Values = unsigned(Args.size()) + 3;
- return new(Values) InvokeInst(Func, IfNormal, IfException, Args,
- Values, NameStr, InsertAtEnd);
- }
- /// Provide fast operand accessors
- DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
- FunctionType *getFunctionType() const { return FTy; }
- void mutateFunctionType(FunctionType *FTy) {
- mutateType(FTy->getReturnType());
- this->FTy = FTy;
- }
- /// getNumArgOperands - Return the number of invoke arguments.
- ///
- unsigned getNumArgOperands() const { return getNumOperands() - 3; }
- /// getArgOperand/setArgOperand - Return/set the i-th invoke argument.
- ///
- Value *getArgOperand(unsigned i) const { return getOperand(i); }
- void setArgOperand(unsigned i, Value *v) { setOperand(i, v); }
- /// arg_operands - iteration adapter for range-for loops.
- iterator_range<op_iterator> arg_operands() {
- return iterator_range<op_iterator>(op_begin(), op_end() - 3);
- }
- /// arg_operands - iteration adapter for range-for loops.
- iterator_range<const_op_iterator> arg_operands() const {
- return iterator_range<const_op_iterator>(op_begin(), op_end() - 3);
- }
- /// \brief Wrappers for getting the \c Use of a invoke argument.
- const Use &getArgOperandUse(unsigned i) const { return getOperandUse(i); }
- Use &getArgOperandUse(unsigned i) { return getOperandUse(i); }
- /// getCallingConv/setCallingConv - Get or set the calling convention of this
- /// function call.
- CallingConv::ID getCallingConv() const {
- return static_cast<CallingConv::ID>(getSubclassDataFromInstruction());
- }
- void setCallingConv(CallingConv::ID CC) {
- setInstructionSubclassData(static_cast<unsigned>(CC));
- }
- /// getAttributes - Return the parameter attributes for this invoke.
- ///
- const AttributeSet &getAttributes() const { return AttributeList; }
- /// setAttributes - Set the parameter attributes for this invoke.
- ///
- void setAttributes(const AttributeSet &Attrs) { AttributeList = Attrs; }
- /// addAttribute - adds the attribute to the list of attributes.
- void addAttribute(unsigned i, Attribute::AttrKind attr);
- /// removeAttribute - removes the attribute from the list of attributes.
- void removeAttribute(unsigned i, Attribute attr);
- /// \brief adds the dereferenceable attribute to the list of attributes.
- void addDereferenceableAttr(unsigned i, uint64_t Bytes);
- /// \brief adds the dereferenceable_or_null attribute to the list of
- /// attributes.
- void addDereferenceableOrNullAttr(unsigned i, uint64_t Bytes);
- /// \brief Determine whether this call has the given attribute.
- bool hasFnAttr(Attribute::AttrKind A) const {
- assert(A != Attribute::NoBuiltin &&
- "Use CallInst::isNoBuiltin() to check for Attribute::NoBuiltin");
- return hasFnAttrImpl(A);
- }
- /// \brief Determine whether the call or the callee has the given attributes.
- bool paramHasAttr(unsigned i, Attribute::AttrKind A) const;
- /// \brief Extract the alignment for a call or parameter (0=unknown).
- unsigned getParamAlignment(unsigned i) const {
- return AttributeList.getParamAlignment(i);
- }
- /// \brief Extract the number of dereferenceable bytes for a call or
- /// parameter (0=unknown).
- uint64_t getDereferenceableBytes(unsigned i) const {
- return AttributeList.getDereferenceableBytes(i);
- }
-
- /// \brief Extract the number of dereferenceable_or_null bytes for a call or
- /// parameter (0=unknown).
- uint64_t getDereferenceableOrNullBytes(unsigned i) const {
- return AttributeList.getDereferenceableOrNullBytes(i);
- }
- /// \brief Return true if the call should not be treated as a call to a
- /// builtin.
- bool isNoBuiltin() const {
- // We assert in hasFnAttr if one passes in Attribute::NoBuiltin, so we have
- // to check it by hand.
- return hasFnAttrImpl(Attribute::NoBuiltin) &&
- !hasFnAttrImpl(Attribute::Builtin);
- }
- /// \brief Return true if the call should not be inlined.
- bool isNoInline() const { return hasFnAttr(Attribute::NoInline); }
- void setIsNoInline() {
- addAttribute(AttributeSet::FunctionIndex, Attribute::NoInline);
- }
- /// \brief Determine if the call does not access memory.
- bool doesNotAccessMemory() const {
- return hasFnAttr(Attribute::ReadNone);
- }
- void setDoesNotAccessMemory() {
- addAttribute(AttributeSet::FunctionIndex, Attribute::ReadNone);
- }
- /// \brief Determine if the call does not access or only reads memory.
- bool onlyReadsMemory() const {
- return doesNotAccessMemory() || hasFnAttr(Attribute::ReadOnly);
- }
- void setOnlyReadsMemory() {
- addAttribute(AttributeSet::FunctionIndex, Attribute::ReadOnly);
- }
- /// @brief Determine if the call access memmory only using it's pointer
- /// arguments.
- bool onlyAccessesArgMemory() const {
- return hasFnAttr(Attribute::ArgMemOnly);
- }
- void setOnlyAccessesArgMemory() {
- addAttribute(AttributeSet::FunctionIndex, Attribute::ArgMemOnly);
- }
- /// \brief Determine if the call cannot return.
- bool doesNotReturn() const { return hasFnAttr(Attribute::NoReturn); }
- void setDoesNotReturn() {
- addAttribute(AttributeSet::FunctionIndex, Attribute::NoReturn);
- }
- /// \brief Determine if the call cannot unwind.
- bool doesNotThrow() const { return hasFnAttr(Attribute::NoUnwind); }
- void setDoesNotThrow() {
- addAttribute(AttributeSet::FunctionIndex, Attribute::NoUnwind);
- }
- /// \brief Determine if the invoke cannot be duplicated.
- bool cannotDuplicate() const {return hasFnAttr(Attribute::NoDuplicate); }
- void setCannotDuplicate() {
- addAttribute(AttributeSet::FunctionIndex, Attribute::NoDuplicate);
- }
- /// \brief Determine if the call returns a structure through first
- /// pointer argument.
- bool hasStructRetAttr() const {
- // Be friendly and also check the callee.
- return paramHasAttr(1, Attribute::StructRet);
- }
- /// \brief Determine if any call argument is an aggregate passed by value.
- bool hasByValArgument() const {
- return AttributeList.hasAttrSomewhere(Attribute::ByVal);
- }
- /// getCalledFunction - Return the function called, or null if this is an
- /// indirect function invocation.
- ///
- Function *getCalledFunction() const {
- return dyn_cast<Function>(Op<-3>());
- }
- /// getCalledValue - Get a pointer to the function that is invoked by this
- /// instruction
- const Value *getCalledValue() const { return Op<-3>(); }
- Value *getCalledValue() { return Op<-3>(); }
- /// setCalledFunction - Set the function called.
- void setCalledFunction(Value* Fn) {
- setCalledFunction(
- cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType()),
- Fn);
- }
- void setCalledFunction(FunctionType *FTy, Value *Fn) {
- this->FTy = FTy;
- assert(FTy == cast<FunctionType>(
- cast<PointerType>(Fn->getType())->getElementType()));
- Op<-3>() = Fn;
- }
- // get*Dest - Return the destination basic blocks...
- BasicBlock *getNormalDest() const {
- return cast<BasicBlock>(Op<-2>());
- }
- BasicBlock *getUnwindDest() const {
- return cast<BasicBlock>(Op<-1>());
- }
- void setNormalDest(BasicBlock *B) {
- Op<-2>() = reinterpret_cast<Value*>(B);
- }
- void setUnwindDest(BasicBlock *B) {
- Op<-1>() = reinterpret_cast<Value*>(B);
- }
- /// getLandingPadInst - Get the landingpad instruction from the landing pad
- /// block (the unwind destination).
- LandingPadInst *getLandingPadInst() const;
- BasicBlock *getSuccessor(unsigned i) const {
- assert(i < 2 && "Successor # out of range for invoke!");
- return i == 0 ? getNormalDest() : getUnwindDest();
- }
- void setSuccessor(unsigned idx, BasicBlock *NewSucc) {
- assert(idx < 2 && "Successor # out of range for invoke!");
- *(&Op<-2>() + idx) = reinterpret_cast<Value*>(NewSucc);
- }
- unsigned getNumSuccessors() const { return 2; }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return (I->getOpcode() == Instruction::Invoke);
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- private:
- BasicBlock *getSuccessorV(unsigned idx) const override;
- unsigned getNumSuccessorsV() const override;
- void setSuccessorV(unsigned idx, BasicBlock *B) override;
- bool hasFnAttrImpl(Attribute::AttrKind A) const;
- // Shadow Instruction::setInstructionSubclassData with a private forwarding
- // method so that subclasses cannot accidentally use it.
- void setInstructionSubclassData(unsigned short D) {
- Instruction::setInstructionSubclassData(D);
- }
- };
- template <>
- struct OperandTraits<InvokeInst> : public VariadicOperandTraits<InvokeInst, 3> {
- };
- InvokeInst::InvokeInst(FunctionType *Ty, Value *Func, BasicBlock *IfNormal,
- BasicBlock *IfException, ArrayRef<Value *> Args,
- unsigned Values, const Twine &NameStr,
- Instruction *InsertBefore)
- : TerminatorInst(Ty->getReturnType(), Instruction::Invoke,
- OperandTraits<InvokeInst>::op_end(this) - Values, Values,
- InsertBefore) {
- init(Ty, Func, IfNormal, IfException, Args, NameStr);
- }
- InvokeInst::InvokeInst(Value *Func,
- BasicBlock *IfNormal, BasicBlock *IfException,
- ArrayRef<Value *> Args, unsigned Values,
- const Twine &NameStr, BasicBlock *InsertAtEnd)
- : TerminatorInst(cast<FunctionType>(cast<PointerType>(Func->getType())
- ->getElementType())->getReturnType(),
- Instruction::Invoke,
- OperandTraits<InvokeInst>::op_end(this) - Values,
- Values, InsertAtEnd) {
- init(Func, IfNormal, IfException, Args, NameStr);
- }
- DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InvokeInst, Value)
- //===----------------------------------------------------------------------===//
- // ResumeInst Class
- //===----------------------------------------------------------------------===//
- //===---------------------------------------------------------------------------
- /// ResumeInst - Resume the propagation of an exception.
- ///
- class ResumeInst : public TerminatorInst {
- ResumeInst(const ResumeInst &RI);
- explicit ResumeInst(Value *Exn, Instruction *InsertBefore=nullptr);
- ResumeInst(Value *Exn, BasicBlock *InsertAtEnd);
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- ResumeInst *cloneImpl() const;
- public:
- static ResumeInst *Create(Value *Exn, Instruction *InsertBefore = nullptr) {
- return new(1) ResumeInst(Exn, InsertBefore);
- }
- static ResumeInst *Create(Value *Exn, BasicBlock *InsertAtEnd) {
- return new(1) ResumeInst(Exn, InsertAtEnd);
- }
- /// Provide fast operand accessors
- DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
- /// Convenience accessor.
- Value *getValue() const { return Op<0>(); }
- unsigned getNumSuccessors() const { return 0; }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::Resume;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- private:
- BasicBlock *getSuccessorV(unsigned idx) const override;
- unsigned getNumSuccessorsV() const override;
- void setSuccessorV(unsigned idx, BasicBlock *B) override;
- };
- template <>
- struct OperandTraits<ResumeInst> :
- public FixedNumOperandTraits<ResumeInst, 1> {
- };
- DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ResumeInst, Value)
- //===----------------------------------------------------------------------===//
- // UnreachableInst Class
- //===----------------------------------------------------------------------===//
- //===---------------------------------------------------------------------------
- /// UnreachableInst - This function has undefined behavior. In particular, the
- /// presence of this instruction indicates some higher level knowledge that the
- /// end of the block cannot be reached.
- ///
- class UnreachableInst : public TerminatorInst {
- void *operator new(size_t, unsigned) = delete;
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- UnreachableInst *cloneImpl() const;
- public:
- // allocate space for exactly zero operands
- void *operator new(size_t s) {
- return User::operator new(s, 0);
- }
- explicit UnreachableInst(LLVMContext &C, Instruction *InsertBefore = nullptr);
- explicit UnreachableInst(LLVMContext &C, BasicBlock *InsertAtEnd);
- unsigned getNumSuccessors() const { return 0; }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Instruction::Unreachable;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- private:
- BasicBlock *getSuccessorV(unsigned idx) const override;
- unsigned getNumSuccessorsV() const override;
- void setSuccessorV(unsigned idx, BasicBlock *B) override;
- };
- //===----------------------------------------------------------------------===//
- // TruncInst Class
- //===----------------------------------------------------------------------===//
- /// \brief This class represents a truncation of integer types.
- class TruncInst : public CastInst {
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- /// \brief Clone an identical TruncInst
- TruncInst *cloneImpl() const;
- public:
- /// \brief Constructor with insert-before-instruction semantics
- TruncInst(
- Value *S, ///< The value to be truncated
- Type *Ty, ///< The (smaller) type to truncate to
- const Twine &NameStr = "", ///< A name for the new instruction
- Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
- );
- /// \brief Constructor with insert-at-end-of-block semantics
- TruncInst(
- Value *S, ///< The value to be truncated
- Type *Ty, ///< The (smaller) type to truncate to
- const Twine &NameStr, ///< A name for the new instruction
- BasicBlock *InsertAtEnd ///< The block to insert the instruction into
- );
- /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == Trunc;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- //===----------------------------------------------------------------------===//
- // ZExtInst Class
- //===----------------------------------------------------------------------===//
- /// \brief This class represents zero extension of integer types.
- class ZExtInst : public CastInst {
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- /// \brief Clone an identical ZExtInst
- ZExtInst *cloneImpl() const;
- public:
- /// \brief Constructor with insert-before-instruction semantics
- ZExtInst(
- Value *S, ///< The value to be zero extended
- Type *Ty, ///< The type to zero extend to
- const Twine &NameStr = "", ///< A name for the new instruction
- Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
- );
- /// \brief Constructor with insert-at-end semantics.
- ZExtInst(
- Value *S, ///< The value to be zero extended
- Type *Ty, ///< The type to zero extend to
- const Twine &NameStr, ///< A name for the new instruction
- BasicBlock *InsertAtEnd ///< The block to insert the instruction into
- );
- /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == ZExt;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- //===----------------------------------------------------------------------===//
- // SExtInst Class
- //===----------------------------------------------------------------------===//
- /// \brief This class represents a sign extension of integer types.
- class SExtInst : public CastInst {
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- /// \brief Clone an identical SExtInst
- SExtInst *cloneImpl() const;
- public:
- /// \brief Constructor with insert-before-instruction semantics
- SExtInst(
- Value *S, ///< The value to be sign extended
- Type *Ty, ///< The type to sign extend to
- const Twine &NameStr = "", ///< A name for the new instruction
- Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
- );
- /// \brief Constructor with insert-at-end-of-block semantics
- SExtInst(
- Value *S, ///< The value to be sign extended
- Type *Ty, ///< The type to sign extend to
- const Twine &NameStr, ///< A name for the new instruction
- BasicBlock *InsertAtEnd ///< The block to insert the instruction into
- );
- /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == SExt;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- //===----------------------------------------------------------------------===//
- // FPTruncInst Class
- //===----------------------------------------------------------------------===//
- /// \brief This class represents a truncation of floating point types.
- class FPTruncInst : public CastInst {
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- /// \brief Clone an identical FPTruncInst
- FPTruncInst *cloneImpl() const;
- public:
- /// \brief Constructor with insert-before-instruction semantics
- FPTruncInst(
- Value *S, ///< The value to be truncated
- Type *Ty, ///< The type to truncate to
- const Twine &NameStr = "", ///< A name for the new instruction
- Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
- );
- /// \brief Constructor with insert-before-instruction semantics
- FPTruncInst(
- Value *S, ///< The value to be truncated
- Type *Ty, ///< The type to truncate to
- const Twine &NameStr, ///< A name for the new instruction
- BasicBlock *InsertAtEnd ///< The block to insert the instruction into
- );
- /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == FPTrunc;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- //===----------------------------------------------------------------------===//
- // FPExtInst Class
- //===----------------------------------------------------------------------===//
- /// \brief This class represents an extension of floating point types.
- class FPExtInst : public CastInst {
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- /// \brief Clone an identical FPExtInst
- FPExtInst *cloneImpl() const;
- public:
- /// \brief Constructor with insert-before-instruction semantics
- FPExtInst(
- Value *S, ///< The value to be extended
- Type *Ty, ///< The type to extend to
- const Twine &NameStr = "", ///< A name for the new instruction
- Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
- );
- /// \brief Constructor with insert-at-end-of-block semantics
- FPExtInst(
- Value *S, ///< The value to be extended
- Type *Ty, ///< The type to extend to
- const Twine &NameStr, ///< A name for the new instruction
- BasicBlock *InsertAtEnd ///< The block to insert the instruction into
- );
- /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == FPExt;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- //===----------------------------------------------------------------------===//
- // UIToFPInst Class
- //===----------------------------------------------------------------------===//
- /// \brief This class represents a cast unsigned integer to floating point.
- class UIToFPInst : public CastInst {
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- /// \brief Clone an identical UIToFPInst
- UIToFPInst *cloneImpl() const;
- public:
- /// \brief Constructor with insert-before-instruction semantics
- UIToFPInst(
- Value *S, ///< The value to be converted
- Type *Ty, ///< The type to convert to
- const Twine &NameStr = "", ///< A name for the new instruction
- Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
- );
- /// \brief Constructor with insert-at-end-of-block semantics
- UIToFPInst(
- Value *S, ///< The value to be converted
- Type *Ty, ///< The type to convert to
- const Twine &NameStr, ///< A name for the new instruction
- BasicBlock *InsertAtEnd ///< The block to insert the instruction into
- );
- /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == UIToFP;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- //===----------------------------------------------------------------------===//
- // SIToFPInst Class
- //===----------------------------------------------------------------------===//
- /// \brief This class represents a cast from signed integer to floating point.
- class SIToFPInst : public CastInst {
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- /// \brief Clone an identical SIToFPInst
- SIToFPInst *cloneImpl() const;
- public:
- /// \brief Constructor with insert-before-instruction semantics
- SIToFPInst(
- Value *S, ///< The value to be converted
- Type *Ty, ///< The type to convert to
- const Twine &NameStr = "", ///< A name for the new instruction
- Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
- );
- /// \brief Constructor with insert-at-end-of-block semantics
- SIToFPInst(
- Value *S, ///< The value to be converted
- Type *Ty, ///< The type to convert to
- const Twine &NameStr, ///< A name for the new instruction
- BasicBlock *InsertAtEnd ///< The block to insert the instruction into
- );
- /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == SIToFP;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- //===----------------------------------------------------------------------===//
- // FPToUIInst Class
- //===----------------------------------------------------------------------===//
- /// \brief This class represents a cast from floating point to unsigned integer
- class FPToUIInst : public CastInst {
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- /// \brief Clone an identical FPToUIInst
- FPToUIInst *cloneImpl() const;
- public:
- /// \brief Constructor with insert-before-instruction semantics
- FPToUIInst(
- Value *S, ///< The value to be converted
- Type *Ty, ///< The type to convert to
- const Twine &NameStr = "", ///< A name for the new instruction
- Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
- );
- /// \brief Constructor with insert-at-end-of-block semantics
- FPToUIInst(
- Value *S, ///< The value to be converted
- Type *Ty, ///< The type to convert to
- const Twine &NameStr, ///< A name for the new instruction
- BasicBlock *InsertAtEnd ///< Where to insert the new instruction
- );
- /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == FPToUI;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- //===----------------------------------------------------------------------===//
- // FPToSIInst Class
- //===----------------------------------------------------------------------===//
- /// \brief This class represents a cast from floating point to signed integer.
- class FPToSIInst : public CastInst {
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- /// \brief Clone an identical FPToSIInst
- FPToSIInst *cloneImpl() const;
- public:
- /// \brief Constructor with insert-before-instruction semantics
- FPToSIInst(
- Value *S, ///< The value to be converted
- Type *Ty, ///< The type to convert to
- const Twine &NameStr = "", ///< A name for the new instruction
- Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
- );
- /// \brief Constructor with insert-at-end-of-block semantics
- FPToSIInst(
- Value *S, ///< The value to be converted
- Type *Ty, ///< The type to convert to
- const Twine &NameStr, ///< A name for the new instruction
- BasicBlock *InsertAtEnd ///< The block to insert the instruction into
- );
- /// \brief Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == FPToSI;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- //===----------------------------------------------------------------------===//
- // IntToPtrInst Class
- //===----------------------------------------------------------------------===//
- /// \brief This class represents a cast from an integer to a pointer.
- class IntToPtrInst : public CastInst {
- public:
- /// \brief Constructor with insert-before-instruction semantics
- IntToPtrInst(
- Value *S, ///< The value to be converted
- Type *Ty, ///< The type to convert to
- const Twine &NameStr = "", ///< A name for the new instruction
- Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
- );
- /// \brief Constructor with insert-at-end-of-block semantics
- IntToPtrInst(
- Value *S, ///< The value to be converted
- Type *Ty, ///< The type to convert to
- const Twine &NameStr, ///< A name for the new instruction
- BasicBlock *InsertAtEnd ///< The block to insert the instruction into
- );
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- /// \brief Clone an identical IntToPtrInst
- IntToPtrInst *cloneImpl() const;
- /// \brief Returns the address space of this instruction's pointer type.
- unsigned getAddressSpace() const {
- return getType()->getPointerAddressSpace();
- }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == IntToPtr;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- //===----------------------------------------------------------------------===//
- // PtrToIntInst Class
- //===----------------------------------------------------------------------===//
- /// \brief This class represents a cast from a pointer to an integer
- class PtrToIntInst : public CastInst {
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- /// \brief Clone an identical PtrToIntInst
- PtrToIntInst *cloneImpl() const;
- public:
- /// \brief Constructor with insert-before-instruction semantics
- PtrToIntInst(
- Value *S, ///< The value to be converted
- Type *Ty, ///< The type to convert to
- const Twine &NameStr = "", ///< A name for the new instruction
- Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
- );
- /// \brief Constructor with insert-at-end-of-block semantics
- PtrToIntInst(
- Value *S, ///< The value to be converted
- Type *Ty, ///< The type to convert to
- const Twine &NameStr, ///< A name for the new instruction
- BasicBlock *InsertAtEnd ///< The block to insert the instruction into
- );
- /// \brief Gets the pointer operand.
- Value *getPointerOperand() { return getOperand(0); }
- /// \brief Gets the pointer operand.
- const Value *getPointerOperand() const { return getOperand(0); }
- /// \brief Gets the operand index of the pointer operand.
- static unsigned getPointerOperandIndex() { return 0U; }
- /// \brief Returns the address space of the pointer operand.
- unsigned getPointerAddressSpace() const {
- return getPointerOperand()->getType()->getPointerAddressSpace();
- }
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == PtrToInt;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- //===----------------------------------------------------------------------===//
- // BitCastInst Class
- //===----------------------------------------------------------------------===//
- /// \brief This class represents a no-op cast from one type to another.
- class BitCastInst : public CastInst {
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- /// \brief Clone an identical BitCastInst
- BitCastInst *cloneImpl() const;
- public:
- /// \brief Constructor with insert-before-instruction semantics
- BitCastInst(
- Value *S, ///< The value to be casted
- Type *Ty, ///< The type to casted to
- const Twine &NameStr = "", ///< A name for the new instruction
- Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
- );
- /// \brief Constructor with insert-at-end-of-block semantics
- BitCastInst(
- Value *S, ///< The value to be casted
- Type *Ty, ///< The type to casted to
- const Twine &NameStr, ///< A name for the new instruction
- BasicBlock *InsertAtEnd ///< The block to insert the instruction into
- );
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == BitCast;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- //===----------------------------------------------------------------------===//
- // AddrSpaceCastInst Class
- // //
- ///////////////////////////////////////////////////////////////////////////////
- /// \brief This class represents a conversion between pointers from
- /// one address space to another.
- class AddrSpaceCastInst : public CastInst {
- protected:
- // Note: Instruction needs to be a friend here to call cloneImpl.
- friend class Instruction;
- /// \brief Clone an identical AddrSpaceCastInst
- AddrSpaceCastInst *cloneImpl() const;
- public:
- /// \brief Constructor with insert-before-instruction semantics
- AddrSpaceCastInst(
- Value *S, ///< The value to be casted
- Type *Ty, ///< The type to casted to
- const Twine &NameStr = "", ///< A name for the new instruction
- Instruction *InsertBefore = nullptr ///< Where to insert the new instruction
- );
- /// \brief Constructor with insert-at-end-of-block semantics
- AddrSpaceCastInst(
- Value *S, ///< The value to be casted
- Type *Ty, ///< The type to casted to
- const Twine &NameStr, ///< A name for the new instruction
- BasicBlock *InsertAtEnd ///< The block to insert the instruction into
- );
- // Methods for support type inquiry through isa, cast, and dyn_cast:
- static inline bool classof(const Instruction *I) {
- return I->getOpcode() == AddrSpaceCast;
- }
- static inline bool classof(const Value *V) {
- return isa<Instruction>(V) && classof(cast<Instruction>(V));
- }
- };
- } // End llvm namespace
- #endif
|