123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770 |
- //===-- RISCVInstrInfoV.td - RISC-V 'V' instructions -------*- tablegen -*-===//
- //
- // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
- // See https://llvm.org/LICENSE.txt for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- //===----------------------------------------------------------------------===//
- ///
- /// This file describes the RISC-V instructions from the standard 'V' Vector
- /// extension, version 1.0.
- ///
- //===----------------------------------------------------------------------===//
- include "RISCVInstrFormatsV.td"
- //===----------------------------------------------------------------------===//
- // Operand and SDNode transformation definitions.
- //===----------------------------------------------------------------------===//
- class VTypeIAsmOperand<int VTypeINum> : AsmOperandClass {
- let Name = "VTypeI" # VTypeINum;
- let ParserMethod = "parseVTypeI";
- let DiagnosticType = "InvalidVTypeI";
- let RenderMethod = "addVTypeIOperands";
- }
- class VTypeIOp<int VTypeINum> : Operand<XLenVT> {
- let ParserMatchClass = VTypeIAsmOperand<VTypeINum>;
- let PrintMethod = "printVTypeI";
- let DecoderMethod = "decodeUImmOperand<"#VTypeINum#">";
- let OperandType = "OPERAND_VTYPEI" # VTypeINum;
- let OperandNamespace = "RISCVOp";
- let MCOperandPredicate = [{
- int64_t Imm;
- if (MCOp.evaluateAsConstantImm(Imm))
- return isUInt<VTypeINum>(Imm);
- return MCOp.isBareSymbolRef();
- }];
- }
- def VTypeIOp10 : VTypeIOp<10>;
- def VTypeIOp11 : VTypeIOp<11>;
- def VMaskAsmOperand : AsmOperandClass {
- let Name = "RVVMaskRegOpOperand";
- let RenderMethod = "addRegOperands";
- let PredicateMethod = "isV0Reg";
- let ParserMethod = "parseMaskReg";
- let IsOptional = 1;
- let DefaultMethod = "defaultMaskRegOp";
- let DiagnosticType = "InvalidVMaskRegister";
- }
- def VMaskOp : RegisterOperand<VMV0> {
- let ParserMatchClass = VMaskAsmOperand;
- let PrintMethod = "printVMaskReg";
- let EncoderMethod = "getVMaskReg";
- let DecoderMethod = "decodeVMaskReg";
- }
- def simm5 : Operand<XLenVT>, ImmLeaf<XLenVT, [{return isInt<5>(Imm);}]> {
- let ParserMatchClass = SImmAsmOperand<5>;
- let EncoderMethod = "getImmOpValue";
- let DecoderMethod = "decodeSImmOperand<5>";
- let OperandType = "OPERAND_SIMM5";
- let OperandNamespace = "RISCVOp";
- let MCOperandPredicate = [{
- int64_t Imm;
- if (MCOp.evaluateAsConstantImm(Imm))
- return isInt<5>(Imm);
- return MCOp.isBareSymbolRef();
- }];
- }
- def SImm5Plus1AsmOperand : AsmOperandClass {
- let Name = "SImm5Plus1";
- let RenderMethod = "addImmOperands";
- let DiagnosticType = "InvalidSImm5Plus1";
- }
- def simm5_plus1 : Operand<XLenVT>, ImmLeaf<XLenVT,
- [{return (isInt<5>(Imm) && Imm != -16) || Imm == 16;}]> {
- let ParserMatchClass = SImm5Plus1AsmOperand;
- let OperandType = "OPERAND_SIMM5_PLUS1";
- let OperandNamespace = "RISCVOp";
- let MCOperandPredicate = [{
- int64_t Imm;
- if (MCOp.evaluateAsConstantImm(Imm))
- return (isInt<5>(Imm) && Imm != -16) || Imm == 16;
- return MCOp.isBareSymbolRef();
- }];
- }
- def simm5_plus1_nonzero : ImmLeaf<XLenVT,
- [{return Imm != 0 && ((isInt<5>(Imm) && Imm != -16) || Imm == 16);}]>;
- //===----------------------------------------------------------------------===//
- // Scheduling definitions.
- //===----------------------------------------------------------------------===//
- class VMVRSched<int n> : Sched<[
- !cast<SchedReadWrite>("WriteVMov" #n #"V"),
- !cast<SchedReadWrite>("ReadVMov" #n #"V")
- ]>;
- class VLESched<string mx> : Sched<[
- !cast<SchedReadWrite>("WriteVLDE_" #mx),
- !cast<SchedReadWrite>("ReadVLDX_" #mx), ReadVMask
- ]>;
- class VSESched<string mx> : Sched<[
- !cast<SchedReadWrite>("WriteVSTE_" #mx),
- !cast<SchedReadWrite>("ReadVSTEV_" #mx),
- !cast<SchedReadWrite>("ReadVSTX_" #mx), ReadVMask
- ]>;
- class VLSSched<int n, string mx> : Sched<[
- !cast<SchedReadWrite>("WriteVLDS" #n #"_" #mx),
- !cast<SchedReadWrite>("ReadVLDX_" #mx),
- !cast<SchedReadWrite>("ReadVLDSX_" #mx), ReadVMask
- ]>;
- class VSSSched<int n, string mx> : Sched<[
- !cast<SchedReadWrite>("WriteVSTS" #n #"_" #mx),
- !cast<SchedReadWrite>("ReadVSTS" #n #"V_" #mx),
- !cast<SchedReadWrite>("ReadVSTX_" #mx),
- !cast<SchedReadWrite>("ReadVSTSX_" #mx), ReadVMask
- ]>;
- class VLXSched<int n, string o, string mx> : Sched<[
- !cast<SchedReadWrite>("WriteVLD" #o #"X" #n #"_" #mx),
- !cast<SchedReadWrite>("ReadVLDX_" #mx),
- !cast<SchedReadWrite>("ReadVLD" #o #"XV_" #mx), ReadVMask
- ]>;
- class VSXSched<int n, string o, string mx> : Sched<[
- !cast<SchedReadWrite>("WriteVST" #o #"X" #n #"_" #mx),
- !cast<SchedReadWrite>("ReadVST" #o #"X" #n #"_" #mx),
- !cast<SchedReadWrite>("ReadVSTX_" #mx),
- !cast<SchedReadWrite>("ReadVST" #o #"XV_" #mx), ReadVMask
- ]>;
- class VLFSched<string mx> : Sched<[
- !cast<SchedReadWrite>("WriteVLDFF_" #mx),
- !cast<SchedReadWrite>("ReadVLDX_" #mx), ReadVMask
- ]>;
- // Unit-Stride Segment Loads and Stores
- class VLSEGSched<int nf, int eew, string mx> : Sched<[
- !cast<SchedReadWrite>("WriteVLSEG" #nf #"e" #eew #"_" #mx),
- !cast<SchedReadWrite>("ReadVLDX_" #mx), ReadVMask
- ]>;
- class VSSEGSched<int nf, int eew, string mx> : Sched<[
- !cast<SchedReadWrite>("WriteVSSEG" #nf #"e" #eew #"_" #mx),
- !cast<SchedReadWrite>("ReadVSTEV_" #mx),
- !cast<SchedReadWrite>("ReadVSTX_" #mx), ReadVMask
- ]>;
- class VLSEGFFSched<int nf, int eew, string mx> : Sched<[
- !cast<SchedReadWrite>("WriteVLSEGFF" #nf #"e" #eew #"_" #mx),
- !cast<SchedReadWrite>("ReadVLDX_" #mx), ReadVMask
- ]>;
- // Strided Segment Loads and Stores
- class VLSSEGSched<int nf, int eew, string mx> : Sched<[
- !cast<SchedReadWrite>("WriteVLSSEG" #nf #"e" #eew #"_" #mx),
- !cast<SchedReadWrite>("ReadVLDX_" #mx),
- !cast<SchedReadWrite>("ReadVLDSX_" #mx), ReadVMask
- ]>;
- class VSSSEGSched<int nf, int eew, string mx> : Sched<[
- !cast<SchedReadWrite>("WriteVSSSEG" #nf #"e" #eew #"_" #mx),
- !cast<SchedReadWrite>("ReadVSTS" #eew #"V" #"_" #mx),
- !cast<SchedReadWrite>("ReadVSTX_" #mx),
- !cast<SchedReadWrite>("ReadVSTSX_" #mx), ReadVMask
- ]>;
- // Indexed Segment Loads and Stores
- class VLXSEGSched<int nf, int eew, string o, string mx> : Sched<[
- !cast<SchedReadWrite>("WriteVL" #o #"XSEG" #nf #"e" #eew #"_" #mx),
- !cast<SchedReadWrite>("ReadVLDX_" #mx),
- !cast<SchedReadWrite>("ReadVLD" #o #"XV" #"_" #mx), ReadVMask
- ]>;
- class VSXSEGSched<int nf, int eew, string o, string mx> : Sched<[
- !cast<SchedReadWrite>("WriteVS" #o #"XSEG" #nf #"e" #eew #"_" #mx),
- !cast<SchedReadWrite>("ReadVST" #o #"X" #eew # "_" # mx),
- !cast<SchedReadWrite>("ReadVSTX_" #mx),
- !cast<SchedReadWrite>("ReadVST" #o #"XV" # "_" # mx), ReadVMask
- ]>;
- //===----------------------------------------------------------------------===//
- // Instruction class templates
- //===----------------------------------------------------------------------===//
- let hasSideEffects = 0, mayLoad = 1, mayStore = 0 in {
- // unit-stride load vd, (rs1), vm
- class VUnitStrideLoad<RISCVWidth width, string opcodestr>
- : RVInstVLU<0b000, width.Value{3}, LUMOPUnitStride, width.Value{2-0},
- (outs VR:$vd),
- (ins GPRMem:$rs1, VMaskOp:$vm), opcodestr, "$vd, (${rs1})$vm">;
- let vm = 1, RVVConstraint = NoConstraint in {
- // unit-stride whole register load vl<nf>r.v vd, (rs1)
- class VWholeLoad<bits<3> nf, RISCVWidth width, string opcodestr, RegisterClass VRC>
- : RVInstVLU<nf, width.Value{3}, LUMOPUnitStrideWholeReg,
- width.Value{2-0}, (outs VRC:$vd), (ins GPRMem:$rs1),
- opcodestr, "$vd, (${rs1})"> {
- let Uses = [];
- }
- // unit-stride mask load vd, (rs1)
- class VUnitStrideLoadMask<string opcodestr>
- : RVInstVLU<0b000, LSWidth8.Value{3}, LUMOPUnitStrideMask, LSWidth8.Value{2-0},
- (outs VR:$vd),
- (ins GPRMem:$rs1), opcodestr, "$vd, (${rs1})">;
- } // vm = 1, RVVConstraint = NoConstraint
- // unit-stride fault-only-first load vd, (rs1), vm
- class VUnitStrideLoadFF<RISCVWidth width, string opcodestr>
- : RVInstVLU<0b000, width.Value{3}, LUMOPUnitStrideFF, width.Value{2-0},
- (outs VR:$vd),
- (ins GPRMem:$rs1, VMaskOp:$vm), opcodestr, "$vd, (${rs1})$vm">;
- // strided load vd, (rs1), rs2, vm
- class VStridedLoad<RISCVWidth width, string opcodestr>
- : RVInstVLS<0b000, width.Value{3}, width.Value{2-0},
- (outs VR:$vd),
- (ins GPRMem:$rs1, GPR:$rs2, VMaskOp:$vm), opcodestr,
- "$vd, (${rs1}), $rs2$vm">;
- // indexed load vd, (rs1), vs2, vm
- class VIndexedLoad<RISCVMOP mop, RISCVWidth width, string opcodestr>
- : RVInstVLX<0b000, width.Value{3}, mop, width.Value{2-0},
- (outs VR:$vd),
- (ins GPRMem:$rs1, VR:$vs2, VMaskOp:$vm), opcodestr,
- "$vd, (${rs1}), $vs2$vm">;
- // unit-stride segment load vd, (rs1), vm
- class VUnitStrideSegmentLoad<bits<3> nf, RISCVWidth width, string opcodestr>
- : RVInstVLU<nf, width.Value{3}, LUMOPUnitStride, width.Value{2-0},
- (outs VR:$vd),
- (ins GPRMem:$rs1, VMaskOp:$vm), opcodestr, "$vd, (${rs1})$vm">;
- // segment fault-only-first load vd, (rs1), vm
- class VUnitStrideSegmentLoadFF<bits<3> nf, RISCVWidth width, string opcodestr>
- : RVInstVLU<nf, width.Value{3}, LUMOPUnitStrideFF, width.Value{2-0},
- (outs VR:$vd),
- (ins GPRMem:$rs1, VMaskOp:$vm), opcodestr, "$vd, (${rs1})$vm">;
- // strided segment load vd, (rs1), rs2, vm
- class VStridedSegmentLoad<bits<3> nf, RISCVWidth width, string opcodestr>
- : RVInstVLS<nf, width.Value{3}, width.Value{2-0},
- (outs VR:$vd),
- (ins GPRMem:$rs1, GPR:$rs2, VMaskOp:$vm), opcodestr,
- "$vd, (${rs1}), $rs2$vm">;
- // indexed segment load vd, (rs1), vs2, vm
- class VIndexedSegmentLoad<bits<3> nf, RISCVMOP mop, RISCVWidth width,
- string opcodestr>
- : RVInstVLX<nf, width.Value{3}, mop, width.Value{2-0},
- (outs VR:$vd),
- (ins GPRMem:$rs1, VR:$vs2, VMaskOp:$vm), opcodestr,
- "$vd, (${rs1}), $vs2$vm">;
- } // hasSideEffects = 0, mayLoad = 1, mayStore = 0
- let hasSideEffects = 0, mayLoad = 0, mayStore = 1 in {
- // unit-stride store vd, vs3, (rs1), vm
- class VUnitStrideStore<RISCVWidth width, string opcodestr>
- : RVInstVSU<0b000, width.Value{3}, SUMOPUnitStride, width.Value{2-0},
- (outs), (ins VR:$vs3, GPRMem:$rs1, VMaskOp:$vm), opcodestr,
- "$vs3, (${rs1})$vm">;
- let vm = 1 in {
- // vs<nf>r.v vd, (rs1)
- class VWholeStore<bits<3> nf, string opcodestr, RegisterClass VRC>
- : RVInstVSU<nf, 0, SUMOPUnitStrideWholeReg,
- 0b000, (outs), (ins VRC:$vs3, GPRMem:$rs1),
- opcodestr, "$vs3, (${rs1})"> {
- let Uses = [];
- }
- // unit-stride mask store vd, vs3, (rs1)
- class VUnitStrideStoreMask<string opcodestr>
- : RVInstVSU<0b000, LSWidth8.Value{3}, SUMOPUnitStrideMask, LSWidth8.Value{2-0},
- (outs), (ins VR:$vs3, GPRMem:$rs1), opcodestr,
- "$vs3, (${rs1})">;
- } // vm = 1
- // strided store vd, vs3, (rs1), rs2, vm
- class VStridedStore<RISCVWidth width, string opcodestr>
- : RVInstVSS<0b000, width.Value{3}, width.Value{2-0}, (outs),
- (ins VR:$vs3, GPRMem:$rs1, GPR:$rs2, VMaskOp:$vm),
- opcodestr, "$vs3, (${rs1}), $rs2$vm">;
- // indexed store vd, vs3, (rs1), vs2, vm
- class VIndexedStore<RISCVMOP mop, RISCVWidth width, string opcodestr>
- : RVInstVSX<0b000, width.Value{3}, mop, width.Value{2-0}, (outs),
- (ins VR:$vs3, GPRMem:$rs1, VR:$vs2, VMaskOp:$vm),
- opcodestr, "$vs3, (${rs1}), $vs2$vm">;
- // segment store vd, vs3, (rs1), vm
- class VUnitStrideSegmentStore<bits<3> nf, RISCVWidth width, string opcodestr>
- : RVInstVSU<nf, width.Value{3}, SUMOPUnitStride, width.Value{2-0},
- (outs), (ins VR:$vs3, GPRMem:$rs1, VMaskOp:$vm), opcodestr,
- "$vs3, (${rs1})$vm">;
- // segment store vd, vs3, (rs1), rs2, vm
- class VStridedSegmentStore<bits<3> nf, RISCVWidth width, string opcodestr>
- : RVInstVSS<nf, width.Value{3}, width.Value{2-0}, (outs),
- (ins VR:$vs3, GPRMem:$rs1, GPR:$rs2, VMaskOp:$vm),
- opcodestr, "$vs3, (${rs1}), $rs2$vm">;
- // segment store vd, vs3, (rs1), vs2, vm
- class VIndexedSegmentStore<bits<3> nf, RISCVMOP mop, RISCVWidth width,
- string opcodestr>
- : RVInstVSX<nf, width.Value{3}, mop, width.Value{2-0}, (outs),
- (ins VR:$vs3, GPRMem:$rs1, VR:$vs2, VMaskOp:$vm),
- opcodestr, "$vs3, (${rs1}), $vs2$vm">;
- } // hasSideEffects = 0, mayLoad = 0, mayStore = 1
- let hasSideEffects = 0, mayLoad = 0, mayStore = 0 in {
- // op vd, vs2, vs1, vm
- class VALUVV<bits<6> funct6, RISCVVFormat opv, string opcodestr>
- : RVInstVV<funct6, opv, (outs VR:$vd),
- (ins VR:$vs2, VR:$vs1, VMaskOp:$vm),
- opcodestr, "$vd, $vs2, $vs1$vm">;
- // op vd, vs2, vs1, v0 (without mask, use v0 as carry input)
- class VALUmVV<bits<6> funct6, RISCVVFormat opv, string opcodestr>
- : RVInstVV<funct6, opv, (outs VR:$vd),
- (ins VR:$vs2, VR:$vs1, VMV0:$v0),
- opcodestr, "$vd, $vs2, $vs1, v0"> {
- let vm = 0;
- }
- // op vd, vs1, vs2, vm (reverse the order of vs1 and vs2)
- class VALUrVV<bits<6> funct6, RISCVVFormat opv, string opcodestr>
- : RVInstVV<funct6, opv, (outs VR:$vd),
- (ins VR:$vs1, VR:$vs2, VMaskOp:$vm),
- opcodestr, "$vd, $vs1, $vs2$vm">;
- // op vd, vs2, vs1
- class VALUVVNoVm<bits<6> funct6, RISCVVFormat opv, string opcodestr>
- : RVInstVV<funct6, opv, (outs VR:$vd),
- (ins VR:$vs2, VR:$vs1),
- opcodestr, "$vd, $vs2, $vs1"> {
- let vm = 1;
- }
- // op vd, vs2, rs1, vm
- class VALUVX<bits<6> funct6, RISCVVFormat opv, string opcodestr>
- : RVInstVX<funct6, opv, (outs VR:$vd),
- (ins VR:$vs2, GPR:$rs1, VMaskOp:$vm),
- opcodestr, "$vd, $vs2, $rs1$vm">;
- // op vd, vs2, rs1, v0 (without mask, use v0 as carry input)
- class VALUmVX<bits<6> funct6, RISCVVFormat opv, string opcodestr>
- : RVInstVX<funct6, opv, (outs VR:$vd),
- (ins VR:$vs2, GPR:$rs1, VMV0:$v0),
- opcodestr, "$vd, $vs2, $rs1, v0"> {
- let vm = 0;
- }
- // op vd, rs1, vs2, vm (reverse the order of rs1 and vs2)
- class VALUrVX<bits<6> funct6, RISCVVFormat opv, string opcodestr>
- : RVInstVX<funct6, opv, (outs VR:$vd),
- (ins GPR:$rs1, VR:$vs2, VMaskOp:$vm),
- opcodestr, "$vd, $rs1, $vs2$vm">;
- // op vd, vs1, vs2
- class VALUVXNoVm<bits<6> funct6, RISCVVFormat opv, string opcodestr>
- : RVInstVX<funct6, opv, (outs VR:$vd),
- (ins VR:$vs2, GPR:$rs1),
- opcodestr, "$vd, $vs2, $rs1"> {
- let vm = 1;
- }
- // op vd, vs2, imm, vm
- class VALUVI<bits<6> funct6, string opcodestr, Operand optype = simm5>
- : RVInstIVI<funct6, (outs VR:$vd),
- (ins VR:$vs2, optype:$imm, VMaskOp:$vm),
- opcodestr, "$vd, $vs2, $imm$vm">;
- // op vd, vs2, imm, v0 (without mask, use v0 as carry input)
- class VALUmVI<bits<6> funct6, string opcodestr, Operand optype = simm5>
- : RVInstIVI<funct6, (outs VR:$vd),
- (ins VR:$vs2, optype:$imm, VMV0:$v0),
- opcodestr, "$vd, $vs2, $imm, v0"> {
- let vm = 0;
- }
- // op vd, vs2, imm, vm
- class VALUVINoVm<bits<6> funct6, string opcodestr, Operand optype = simm5>
- : RVInstIVI<funct6, (outs VR:$vd),
- (ins VR:$vs2, optype:$imm),
- opcodestr, "$vd, $vs2, $imm"> {
- let vm = 1;
- }
- // op vd, vs2, rs1, vm (Float)
- class VALUVF<bits<6> funct6, RISCVVFormat opv, string opcodestr>
- : RVInstVX<funct6, opv, (outs VR:$vd),
- (ins VR:$vs2, FPR32:$rs1, VMaskOp:$vm),
- opcodestr, "$vd, $vs2, $rs1$vm">;
- // op vd, rs1, vs2, vm (Float) (with mask, reverse the order of rs1 and vs2)
- class VALUrVF<bits<6> funct6, RISCVVFormat opv, string opcodestr>
- : RVInstVX<funct6, opv, (outs VR:$vd),
- (ins FPR32:$rs1, VR:$vs2, VMaskOp:$vm),
- opcodestr, "$vd, $rs1, $vs2$vm">;
- // op vd, vs2, vm (use vs1 as instruction encoding)
- class VALUVs2<bits<6> funct6, bits<5> vs1, RISCVVFormat opv, string opcodestr>
- : RVInstV<funct6, vs1, opv, (outs VR:$vd),
- (ins VR:$vs2, VMaskOp:$vm),
- opcodestr, "$vd, $vs2$vm">;
- } // hasSideEffects = 0, mayLoad = 0, mayStore = 0
- //===----------------------------------------------------------------------===//
- // Combination of instruction classes.
- // Use these multiclasses to define instructions more easily.
- //===----------------------------------------------------------------------===//
- multiclass VIndexLoadStore<list<int> EEWList> {
- foreach n = EEWList in {
- defvar w = !cast<RISCVWidth>("LSWidth" # n);
- def VLUXEI # n # _V :
- VIndexedLoad<MOPLDIndexedUnord, w, "vluxei" # n # ".v">,
- VLXSched<n, "U", UpperBoundLMUL>;
- def VLOXEI # n # _V :
- VIndexedLoad<MOPLDIndexedOrder, w, "vloxei" # n # ".v">,
- VLXSched<n, "O", UpperBoundLMUL>;
- def VSUXEI # n # _V :
- VIndexedStore<MOPSTIndexedUnord, w, "vsuxei" # n # ".v">,
- VSXSched<n, "U", UpperBoundLMUL>;
- def VSOXEI # n # _V :
- VIndexedStore<MOPSTIndexedOrder, w, "vsoxei" # n # ".v">,
- VSXSched<n, "O", UpperBoundLMUL>;
- }
- }
- multiclass VALU_IV_V_X_I<string opcodestr, bits<6> funct6, Operand optype = simm5, string vw = "v"> {
- def V : VALUVV<funct6, OPIVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVIALUV_UpperBound, ReadVIALUV_UpperBound,
- ReadVIALUV_UpperBound, ReadVMask]>;
- def X : VALUVX<funct6, OPIVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVIALUX_UpperBound, ReadVIALUV_UpperBound,
- ReadVIALUX_UpperBound, ReadVMask]>;
- def I : VALUVI<funct6, opcodestr # "." # vw # "i", optype>,
- Sched<[WriteVIALUI_UpperBound, ReadVIALUV_UpperBound,
- ReadVMask]>;
- }
- multiclass VALU_IV_V_X<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUVV<funct6, OPIVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVIALUV_UpperBound, ReadVIALUV_UpperBound,
- ReadVIALUV_UpperBound, ReadVMask]>;
- def X : VALUVX<funct6, OPIVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVIALUX_UpperBound, ReadVIALUV_UpperBound,
- ReadVIALUX_UpperBound, ReadVMask]>;
- }
- multiclass VALU_IV_X_I<string opcodestr, bits<6> funct6, Operand optype = simm5, string vw = "v"> {
- def X : VALUVX<funct6, OPIVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVIALUV_UpperBound, ReadVIALUV_UpperBound,
- ReadVIALUX_UpperBound, ReadVMask]>;
- def I : VALUVI<funct6, opcodestr # "." # vw # "i", optype>,
- Sched<[WriteVIALUI_UpperBound, ReadVIALUV_UpperBound,
- ReadVMask]>;
- }
- multiclass VALU_MV_V_X<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUVV<funct6, OPMVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVIWALUV_UpperBound, ReadVIWALUV_UpperBound,
- ReadVIWALUV_UpperBound, ReadVMask]>;
- def X : VALUVX<funct6, OPMVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVIWALUX_UpperBound, ReadVIWALUV_UpperBound,
- ReadVIWALUX_UpperBound, ReadVMask]>;
- }
- multiclass VMAC_MV_V_X<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUrVV<funct6, OPMVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVIMulAddV_UpperBound, ReadVIMulAddV_UpperBound,
- ReadVIMulAddV_UpperBound, ReadVMask]>;
- def X : VALUrVX<funct6, OPMVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVIMulAddX_UpperBound, ReadVIMulAddV_UpperBound,
- ReadVIMulAddX_UpperBound, ReadVMask]>;
- }
- multiclass VWMAC_MV_V_X<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUrVV<funct6, OPMVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVIWMulAddV_UpperBound, ReadVIWMulAddV_UpperBound,
- ReadVIWMulAddV_UpperBound, ReadVMask]>;
- def X : VALUrVX<funct6, OPMVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVIWMulAddX_UpperBound, ReadVIWMulAddV_UpperBound,
- ReadVIWMulAddX_UpperBound, ReadVMask]>;
- }
- multiclass VWMAC_MV_X<string opcodestr, bits<6> funct6, string vw = "v"> {
- def X : VALUrVX<funct6, OPMVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVIWMulAddX_UpperBound, ReadVIWMulAddV_UpperBound,
- ReadVIWMulAddX_UpperBound, ReadVMask]>;
- }
- multiclass VALU_MV_VS2<string opcodestr, bits<6> funct6, bits<5> vs1> {
- def "" : VALUVs2<funct6, vs1, OPMVV, opcodestr>,
- Sched<[WriteVExtV_UpperBound, ReadVExtV_UpperBound, ReadVMask]>;
- }
- multiclass VALUm_IV_V_X_I<string opcodestr, bits<6> funct6> {
- def VM : VALUmVV<funct6, OPIVV, opcodestr # ".vvm">,
- Sched<[WriteVICALUV_UpperBound, ReadVICALUV_UpperBound,
- ReadVICALUV_UpperBound, ReadVMask]>;
- def XM : VALUmVX<funct6, OPIVX, opcodestr # ".vxm">,
- Sched<[WriteVICALUX_UpperBound, ReadVICALUV_UpperBound,
- ReadVICALUX_UpperBound, ReadVMask]>;
- def IM : VALUmVI<funct6, opcodestr # ".vim">,
- Sched<[WriteVICALUI_UpperBound, ReadVICALUV_UpperBound,
- ReadVMask]>;
- }
- multiclass VMRG_IV_V_X_I<string opcodestr, bits<6> funct6> {
- def VM : VALUmVV<funct6, OPIVV, opcodestr # ".vvm">,
- Sched<[WriteVIMergeV_UpperBound, ReadVIMergeV_UpperBound,
- ReadVIMergeV_UpperBound, ReadVMask]>;
- def XM : VALUmVX<funct6, OPIVX, opcodestr # ".vxm">,
- Sched<[WriteVIMergeX_UpperBound, ReadVIMergeV_UpperBound,
- ReadVIMergeX_UpperBound, ReadVMask]>;
- def IM : VALUmVI<funct6, opcodestr # ".vim">,
- Sched<[WriteVIMergeI_UpperBound, ReadVIMergeV_UpperBound,
- ReadVMask]>;
- }
- multiclass VALUm_IV_V_X<string opcodestr, bits<6> funct6> {
- def VM : VALUmVV<funct6, OPIVV, opcodestr # ".vvm">,
- Sched<[WriteVICALUV_UpperBound, ReadVICALUV_UpperBound,
- ReadVICALUV_UpperBound, ReadVMask]>;
- def XM : VALUmVX<funct6, OPIVX, opcodestr # ".vxm">,
- Sched<[WriteVICALUX_UpperBound, ReadVICALUV_UpperBound,
- ReadVICALUX_UpperBound, ReadVMask]>;
- }
- multiclass VALUNoVm_IV_V_X_I<string opcodestr, bits<6> funct6, Operand optype = simm5> {
- def V : VALUVVNoVm<funct6, OPIVV, opcodestr # ".vv">,
- Sched<[WriteVICALUV_UpperBound, ReadVICALUV_UpperBound,
- ReadVICALUV_UpperBound]>;
- def X : VALUVXNoVm<funct6, OPIVX, opcodestr # ".vx">,
- Sched<[WriteVICALUX_UpperBound, ReadVICALUV_UpperBound,
- ReadVICALUX_UpperBound]>;
- def I : VALUVINoVm<funct6, opcodestr # ".vi", optype>,
- Sched<[WriteVICALUI_UpperBound, ReadVICALUV_UpperBound]>;
- }
- multiclass VALUNoVm_IV_V_X<string opcodestr, bits<6> funct6> {
- def V : VALUVVNoVm<funct6, OPIVV, opcodestr # ".vv">,
- Sched<[WriteVICALUV_UpperBound, ReadVICALUV_UpperBound,
- ReadVICALUV_UpperBound]>;
- def X : VALUVXNoVm<funct6, OPIVX, opcodestr # ".vx">,
- Sched<[WriteVICALUX_UpperBound, ReadVICALUV_UpperBound,
- ReadVICALUX_UpperBound]>;
- }
- multiclass VALU_FV_V_F<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUVV<funct6, OPFVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVFALUV_UpperBound, ReadVFALUV_UpperBound,
- ReadVFALUV_UpperBound, ReadVMask]>;
- def F : VALUVF<funct6, OPFVF, opcodestr # "." # vw # "f">,
- Sched<[WriteVFALUF_UpperBound, ReadVFALUV_UpperBound,
- ReadVFALUF_UpperBound, ReadVMask]>;
- }
- multiclass VALU_FV_F<string opcodestr, bits<6> funct6, string vw = "v"> {
- def F : VALUVF<funct6, OPFVF, opcodestr # "." # vw # "f">,
- Sched<[WriteVFALUF_UpperBound, ReadVFALUV_UpperBound,
- ReadVFALUF_UpperBound, ReadVMask]>;
- }
- multiclass VWALU_FV_V_F<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUVV<funct6, OPFVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVFWALUV_UpperBound, ReadVFWALUV_UpperBound,
- ReadVFWALUV_UpperBound, ReadVMask]>;
- def F : VALUVF<funct6, OPFVF, opcodestr # "." # vw # "f">,
- Sched<[WriteVFWALUF_UpperBound, ReadVFWALUV_UpperBound,
- ReadVFWALUF_UpperBound, ReadVMask]>;
- }
- multiclass VMUL_FV_V_F<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUVV<funct6, OPFVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVFMulV_UpperBound, ReadVFMulV_UpperBound,
- ReadVFMulV_UpperBound, ReadVMask]>;
- def F : VALUVF<funct6, OPFVF, opcodestr # "." # vw # "f">,
- Sched<[WriteVFMulF_UpperBound, ReadVFMulV_UpperBound,
- ReadVFMulF_UpperBound, ReadVMask]>;
- }
- multiclass VDIV_FV_V_F<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUVV<funct6, OPFVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVFDivV_UpperBound, ReadVFDivV_UpperBound,
- ReadVFDivV_UpperBound, ReadVMask]>;
- def F : VALUVF<funct6, OPFVF, opcodestr # "." # vw # "f">,
- Sched<[WriteVFDivF_UpperBound, ReadVFDivV_UpperBound,
- ReadVFDivF_UpperBound, ReadVMask]>;
- }
- multiclass VRDIV_FV_F<string opcodestr, bits<6> funct6, string vw = "v"> {
- def F : VALUVF<funct6, OPFVF, opcodestr # "." # vw # "f">,
- Sched<[WriteVFDivF_UpperBound, ReadVFDivV_UpperBound,
- ReadVFDivF_UpperBound, ReadVMask]>;
- }
- multiclass VWMUL_FV_V_F<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUVV<funct6, OPFVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVFWMulV_UpperBound, ReadVFWMulV_UpperBound,
- ReadVFWMulV_UpperBound, ReadVMask]>;
- def F : VALUVF<funct6, OPFVF, opcodestr # "." # vw # "f">,
- Sched<[WriteVFWMulF_UpperBound, ReadVFWMulV_UpperBound,
- ReadVFWMulF_UpperBound, ReadVMask]>;
- }
- multiclass VMAC_FV_V_F<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUrVV<funct6, OPFVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVFMulAddV_UpperBound, ReadVFMulAddV_UpperBound,
- ReadVFMulAddV_UpperBound, ReadVMask]>;
- def F : VALUrVF<funct6, OPFVF, opcodestr # "." # vw # "f">,
- Sched<[WriteVFMulAddF_UpperBound, ReadVFMulAddV_UpperBound,
- ReadVFMulAddF_UpperBound, ReadVMask]>;
- }
- multiclass VWMAC_FV_V_F<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUrVV<funct6, OPFVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVFWMulAddV_UpperBound, ReadVFWMulAddV_UpperBound,
- ReadVFWMulAddV_UpperBound, ReadVMask]>;
- def F : VALUrVF<funct6, OPFVF, opcodestr # "." # vw # "f">,
- Sched<[WriteVFWMulAddF_UpperBound, ReadVFWMulAddV_UpperBound,
- ReadVFWMulAddF_UpperBound, ReadVMask]>;
- }
- multiclass VSQR_FV_VS2<string opcodestr, bits<6> funct6, bits<5> vs1> {
- def "" : VALUVs2<funct6, vs1, OPFVV, opcodestr>,
- Sched<[WriteVFSqrtV_UpperBound, ReadVFSqrtV_UpperBound,
- ReadVMask]>;
- }
- multiclass VRCP_FV_VS2<string opcodestr, bits<6> funct6, bits<5> vs1> {
- def "" : VALUVs2<funct6, vs1, OPFVV, opcodestr>,
- Sched<[WriteVFRecpV_UpperBound, ReadVFRecpV_UpperBound,
- ReadVMask]>;
- }
- multiclass VCMP_FV_V_F<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUVV<funct6, OPFVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVFCmpV_UpperBound, ReadVFCmpV_UpperBound,
- ReadVFCmpV_UpperBound, ReadVMask]>;
- def F : VALUVF<funct6, OPFVF, opcodestr # "." # vw # "f">,
- Sched<[WriteVFCmpF_UpperBound, ReadVFCmpV_UpperBound,
- ReadVFCmpF_UpperBound, ReadVMask]>;
- }
- multiclass VCMP_FV_F<string opcodestr, bits<6> funct6, string vw = "v"> {
- def F : VALUVF<funct6, OPFVF, opcodestr # "." # vw # "f">,
- Sched<[WriteVFCmpF_UpperBound, ReadVFCmpV_UpperBound,
- ReadVFCmpF_UpperBound, ReadVMask]>;
- }
- multiclass VSGNJ_FV_V_F<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUVV<funct6, OPFVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVFSgnjV_UpperBound, ReadVFSgnjV_UpperBound,
- ReadVFSgnjV_UpperBound, ReadVMask]>;
- def F : VALUVF<funct6, OPFVF, opcodestr # "." # vw # "f">,
- Sched<[WriteVFSgnjF_UpperBound, ReadVFSgnjV_UpperBound,
- ReadVFSgnjF_UpperBound, ReadVMask]>;
- }
- multiclass VCLS_FV_VS2<string opcodestr, bits<6> funct6, bits<5> vs1> {
- def "" : VALUVs2<funct6, vs1, OPFVV, opcodestr>,
- Sched<[WriteVFClassV_UpperBound, ReadVFClassV_UpperBound,
- ReadVMask]>;
- }
- multiclass VCVTF_IV_VS2<string opcodestr, bits<6> funct6, bits<5> vs1> {
- def "" : VALUVs2<funct6, vs1, OPFVV, opcodestr>,
- Sched<[WriteVFCvtIToFV_UpperBound, ReadVFCvtIToFV_UpperBound,
- ReadVMask]>;
- }
- multiclass VCVTI_FV_VS2<string opcodestr, bits<6> funct6, bits<5> vs1> {
- def "" : VALUVs2<funct6, vs1, OPFVV, opcodestr>,
- Sched<[WriteVFCvtFToIV_UpperBound, ReadVFCvtFToIV_UpperBound,
- ReadVMask]>;
- }
- multiclass VWCVTF_IV_VS2<string opcodestr, bits<6> funct6, bits<5> vs1> {
- def "" : VALUVs2<funct6, vs1, OPFVV, opcodestr>,
- Sched<[WriteVFWCvtIToFV_UpperBound, ReadVFWCvtIToFV_UpperBound,
- ReadVMask]>;
- }
- multiclass VWCVTI_FV_VS2<string opcodestr, bits<6> funct6, bits<5> vs1> {
- def "" : VALUVs2<funct6, vs1, OPFVV, opcodestr>,
- Sched<[WriteVFWCvtFToIV_UpperBound, ReadVFWCvtFToIV_UpperBound,
- ReadVMask]>;
- }
- multiclass VWCVTF_FV_VS2<string opcodestr, bits<6> funct6, bits<5> vs1> {
- def "" : VALUVs2<funct6, vs1, OPFVV, opcodestr>,
- Sched<[WriteVFWCvtFToFV_UpperBound, ReadVFWCvtFToFV_UpperBound,
- ReadVMask]>;
- }
- multiclass VNCVTF_IV_VS2<string opcodestr, bits<6> funct6, bits<5> vs1> {
- def "" : VALUVs2<funct6, vs1, OPFVV, opcodestr>,
- Sched<[WriteVFNCvtIToFV_UpperBound, ReadVFNCvtIToFV_UpperBound,
- ReadVMask]>;
- }
- multiclass VNCVTI_FV_VS2<string opcodestr, bits<6> funct6, bits<5> vs1> {
- def "" : VALUVs2<funct6, vs1, OPFVV, opcodestr>,
- Sched<[WriteVFNCvtFToIV_UpperBound, ReadVFNCvtFToIV_UpperBound,
- ReadVMask]>;
- }
- multiclass VNCVTF_FV_VS2<string opcodestr, bits<6> funct6, bits<5> vs1> {
- def "" : VALUVs2<funct6, vs1, OPFVV, opcodestr>,
- Sched<[WriteVFNCvtFToFV_UpperBound, ReadVFNCvtFToFV_UpperBound,
- ReadVMask]>;
- }
- multiclass VRED_MV_V<string opcodestr, bits<6> funct6> {
- def _VS : VALUVV<funct6, OPMVV, opcodestr # ".vs">,
- Sched<[WriteVIRedV, ReadVIRedV, ReadVIRedV0, ReadVMask]>;
- }
- multiclass VWRED_IV_V<string opcodestr, bits<6> funct6> {
- def _VS : VALUVV<funct6, OPIVV, opcodestr # ".vs">,
- Sched<[WriteVIWRedV, ReadVIWRedV, ReadVIWRedV0, ReadVMask]>;
- }
- multiclass VRED_FV_V<string opcodestr, bits<6> funct6> {
- def _VS : VALUVV<funct6, OPFVV, opcodestr # ".vs">,
- Sched<[WriteVFRedV, ReadVFRedV, ReadVFRedV0, ReadVMask]>;
- }
- multiclass VREDO_FV_V<string opcodestr, bits<6> funct6> {
- def _VS : VALUVV<funct6, OPFVV, opcodestr # ".vs">,
- Sched<[WriteVFRedOV, ReadVFRedOV, ReadVFRedOV0, ReadVMask]>;
- }
- multiclass VWRED_FV_V<string opcodestr, bits<6> funct6> {
- def _VS : VALUVV<funct6, OPFVV, opcodestr # ".vs">,
- Sched<[WriteVFWRedV, ReadVFWRedV, ReadVFWRedV0, ReadVMask]>;
- }
- multiclass VWREDO_FV_V<string opcodestr, bits<6> funct6> {
- def _VS : VALUVV<funct6, OPFVV, opcodestr # ".vs">,
- Sched<[WriteVFWRedOV, ReadVFWRedOV, ReadVFWRedOV0, ReadVMask]>;
- }
- multiclass VMALU_MV_Mask<string opcodestr, bits<6> funct6, string vm = "v"> {
- def M : VALUVVNoVm<funct6, OPMVV, opcodestr #"." #vm #"m">,
- Sched<[WriteVMALUV_UpperBound, ReadVMALUV_UpperBound,
- ReadVMALUV_UpperBound]>;
- }
- multiclass VMSFS_MV_V<string opcodestr, bits<6> funct6, bits<5> vs1> {
- def "" : VALUVs2<funct6, vs1, OPMVV, opcodestr>,
- Sched<[WriteVMSFSV_UpperBound, ReadVMSFSV_UpperBound, ReadVMask]>;
- }
- multiclass VMIOT_MV_V<string opcodestr, bits<6> funct6, bits<5> vs1> {
- def "" : VALUVs2<funct6, vs1, OPMVV, opcodestr>,
- Sched<[WriteVMIotV_UpperBound, ReadVMIotV_UpperBound, ReadVMask]>;
- }
- multiclass VSHT_IV_V_X_I<string opcodestr, bits<6> funct6, Operand optype = simm5, string vw = "v"> {
- def V : VALUVV<funct6, OPIVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVShiftV_UpperBound, ReadVShiftV_UpperBound,
- ReadVShiftV_UpperBound, ReadVMask]>;
- def X : VALUVX<funct6, OPIVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVShiftX_UpperBound, ReadVShiftV_UpperBound,
- ReadVShiftX_UpperBound, ReadVMask]>;
- def I : VALUVI<funct6, opcodestr # "." # vw # "i", optype>,
- Sched<[WriteVShiftI_UpperBound, ReadVShiftV_UpperBound,
- ReadVMask]>;
- }
- multiclass VNSHT_IV_V_X_I<string opcodestr, bits<6> funct6, Operand optype = simm5, string vw = "v"> {
- def V : VALUVV<funct6, OPIVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVNShiftV_UpperBound, ReadVNShiftV_UpperBound,
- ReadVNShiftV_UpperBound, ReadVMask]>;
- def X : VALUVX<funct6, OPIVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVNShiftX_UpperBound, ReadVNShiftV_UpperBound,
- ReadVNShiftX_UpperBound, ReadVMask]>;
- def I : VALUVI<funct6, opcodestr # "." # vw # "i", optype>,
- Sched<[WriteVNShiftI_UpperBound, ReadVNShiftV_UpperBound,
- ReadVMask]>;
- }
- multiclass VCMP_IV_V_X_I<string opcodestr, bits<6> funct6, Operand optype = simm5, string vw = "v"> {
- def V : VALUVV<funct6, OPIVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVICmpV_UpperBound, ReadVICmpV_UpperBound,
- ReadVICmpV_UpperBound, ReadVMask]>;
- def X : VALUVX<funct6, OPIVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVICmpX_UpperBound, ReadVICmpV_UpperBound,
- ReadVICmpX_UpperBound, ReadVMask]>;
- def I : VALUVI<funct6, opcodestr # "." # vw # "i", optype>,
- Sched<[WriteVICmpI_UpperBound, ReadVICmpV_UpperBound,
- ReadVMask]>;
- }
- multiclass VCMP_IV_X_I<string opcodestr, bits<6> funct6, Operand optype = simm5, string vw = "v"> {
- def X : VALUVX<funct6, OPIVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVICmpV_UpperBound, ReadVICmpV_UpperBound,
- ReadVICmpX_UpperBound, ReadVMask]>;
- def I : VALUVI<funct6, opcodestr # "." # vw # "i", optype>,
- Sched<[WriteVICmpI_UpperBound, ReadVICmpV_UpperBound,
- ReadVMask]>;
- }
- multiclass VCMP_IV_V_X<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUVV<funct6, OPIVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVICmpV_UpperBound, ReadVICmpV_UpperBound,
- ReadVICmpV_UpperBound, ReadVMask]>;
- def X : VALUVX<funct6, OPIVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVICmpX_UpperBound, ReadVICmpV_UpperBound,
- ReadVICmpX_UpperBound, ReadVMask]>;
- }
- multiclass VMUL_MV_V_X<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUVV<funct6, OPMVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVIMulV_UpperBound, ReadVIMulV_UpperBound,
- ReadVIMulV_UpperBound, ReadVMask]>;
- def X : VALUVX<funct6, OPMVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVIMulX_UpperBound, ReadVIMulV_UpperBound,
- ReadVIMulX_UpperBound, ReadVMask]>;
- }
- multiclass VWMUL_MV_V_X<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUVV<funct6, OPMVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVIWMulV_UpperBound, ReadVIWMulV_UpperBound,
- ReadVIWMulV_UpperBound, ReadVMask]>;
- def X : VALUVX<funct6, OPMVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVIWMulX_UpperBound, ReadVIWMulV_UpperBound,
- ReadVIWMulX_UpperBound, ReadVMask]>;
- }
- multiclass VDIV_MV_V_X<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUVV<funct6, OPMVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVIDivV_UpperBound, ReadVIDivV_UpperBound,
- ReadVIDivV_UpperBound, ReadVMask]>;
- def X : VALUVX<funct6, OPMVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVIDivX_UpperBound, ReadVIDivV_UpperBound,
- ReadVIDivX_UpperBound, ReadVMask]>;
- }
- multiclass VSALU_IV_V_X_I<string opcodestr, bits<6> funct6, Operand optype = simm5, string vw = "v"> {
- def V : VALUVV<funct6, OPIVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVSALUV_UpperBound, ReadVSALUV_UpperBound,
- ReadVSALUV_UpperBound, ReadVMask]>;
- def X : VALUVX<funct6, OPIVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVSALUX_UpperBound, ReadVSALUV_UpperBound,
- ReadVSALUX_UpperBound, ReadVMask]>;
- def I : VALUVI<funct6, opcodestr # "." # vw # "i", optype>,
- Sched<[WriteVSALUI_UpperBound, ReadVSALUV_UpperBound,
- ReadVMask]>;
- }
- multiclass VSALU_IV_V_X<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUVV<funct6, OPIVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVSALUV_UpperBound, ReadVSALUV_UpperBound,
- ReadVSALUV_UpperBound, ReadVMask]>;
- def X : VALUVX<funct6, OPIVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVSALUX_UpperBound, ReadVSALUV_UpperBound,
- ReadVSALUX_UpperBound, ReadVMask]>;
- }
- multiclass VAALU_MV_V_X<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUVV<funct6, OPMVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVAALUV_UpperBound, ReadVAALUV_UpperBound,
- ReadVAALUV_UpperBound, ReadVMask]>;
- def X : VALUVX<funct6, OPMVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVAALUX_UpperBound, ReadVAALUV_UpperBound,
- ReadVAALUX_UpperBound, ReadVMask]>;
- }
- multiclass VSMUL_IV_V_X<string opcodestr, bits<6> funct6, string vw = "v"> {
- def V : VALUVV<funct6, OPIVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVSMulV_UpperBound, ReadVSMulV_UpperBound,
- ReadVSMulV_UpperBound, ReadVMask]>;
- def X : VALUVX<funct6, OPIVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVSMulX_UpperBound, ReadVSMulV_UpperBound,
- ReadVSMulX_UpperBound, ReadVMask]>;
- }
- multiclass VSSHF_IV_V_X_I<string opcodestr, bits<6> funct6, Operand optype = simm5, string vw = "v"> {
- def V : VALUVV<funct6, OPIVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVSShiftV_UpperBound, ReadVSShiftV_UpperBound,
- ReadVSShiftV_UpperBound, ReadVMask]>;
- def X : VALUVX<funct6, OPIVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVSShiftX_UpperBound, ReadVSShiftV_UpperBound,
- ReadVSShiftX_UpperBound, ReadVMask]>;
- def I : VALUVI<funct6, opcodestr # "." # vw # "i", optype>,
- Sched<[WriteVSShiftI_UpperBound, ReadVSShiftV_UpperBound,
- ReadVMask]>;
- }
- multiclass VNCLP_IV_V_X_I<string opcodestr, bits<6> funct6, Operand optype = simm5, string vw = "v"> {
- def V : VALUVV<funct6, OPIVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVNClipV_UpperBound, ReadVNClipV_UpperBound,
- ReadVNClipV_UpperBound, ReadVMask]>;
- def X : VALUVX<funct6, OPIVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVNClipX_UpperBound, ReadVNClipV_UpperBound,
- ReadVNClipX_UpperBound, ReadVMask]>;
- def I : VALUVI<funct6, opcodestr # "." # vw # "i", optype>,
- Sched<[WriteVNClipI_UpperBound, ReadVNClipV_UpperBound,
- ReadVMask]>;
- }
- multiclass VSLD_IV_X_I<string opcodestr, bits<6> funct6, Operand optype = simm5, string vw = "v"> {
- def X : VALUVX<funct6, OPIVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVISlideX_UpperBound, ReadVISlideV_UpperBound,
- ReadVISlideX_UpperBound, ReadVMask]>;
- def I : VALUVI<funct6, opcodestr # "." # vw # "i", optype>,
- Sched<[WriteVISlideI_UpperBound, ReadVISlideV_UpperBound,
- ReadVMask]>;
- }
- multiclass VSLD1_MV_X<string opcodestr, bits<6> funct6, string vw = "v"> {
- def X : VALUVX<funct6, OPMVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVISlide1X_UpperBound, ReadVISlideV_UpperBound,
- ReadVISlideX_UpperBound, ReadVMask]>;
- }
- multiclass VSLD1_FV_F<string opcodestr, bits<6> funct6, string vw = "v"> {
- def F : VALUVF<funct6, OPFVF, opcodestr # "." # vw # "f">,
- Sched<[WriteVFSlide1F_UpperBound, ReadVFSlideV_UpperBound,
- ReadVFSlideF_UpperBound, ReadVMask]>;
- }
- multiclass VGTR_IV_V_X_I<string opcodestr, bits<6> funct6, Operand optype = simm5, string vw = "v"> {
- def V : VALUVV<funct6, OPIVV, opcodestr # "." # vw # "v">,
- Sched<[WriteVGatherV_UpperBound, ReadVGatherV_UpperBound,
- ReadVGatherV_UpperBound, ReadVMask]>;
- def X : VALUVX<funct6, OPIVX, opcodestr # "." # vw # "x">,
- Sched<[WriteVGatherX_UpperBound, ReadVGatherV_UpperBound,
- ReadVGatherX_UpperBound, ReadVMask]>;
- def I : VALUVI<funct6, opcodestr # "." # vw # "i", optype>,
- Sched<[WriteVGatherI_UpperBound, ReadVGatherV_UpperBound,
- ReadVMask]>;
- }
- multiclass VCPR_MV_Mask<string opcodestr, bits<6> funct6, string vm = "v"> {
- def M : VALUVVNoVm<funct6, OPMVV, opcodestr # "." # vm # "m">,
- Sched<[WriteVCompressV_UpperBound, ReadVCompressV_UpperBound,
- ReadVCompressV_UpperBound]>;
- }
- multiclass VWholeLoadN<bits<3> nf, string opcodestr, RegisterClass VRC> {
- foreach l = [8, 16, 32] in {
- defvar w = !cast<RISCVWidth>("LSWidth" # l);
- defvar s = !cast<SchedWrite>("WriteVLD" # !add(nf, 1) # "R");
- def E # l # _V : VWholeLoad<nf, w, opcodestr # "e" # l # ".v", VRC>,
- Sched<[s, ReadVLDX_UpperBound]>;
- }
- }
- multiclass VWholeLoadEEW64<bits<3> nf, string opcodestr, RegisterClass VRC, SchedReadWrite schedrw> {
- def E64_V : VWholeLoad<nf, LSWidth64, opcodestr # "e64.v", VRC>,
- Sched<[schedrw, ReadVLDX_UpperBound]>;
- }
- //===----------------------------------------------------------------------===//
- // Instructions
- //===----------------------------------------------------------------------===//
- let Predicates = [HasVInstructions] in {
- let hasSideEffects = 1, mayLoad = 0, mayStore = 0 in {
- def VSETVLI : RVInstSetVLi<(outs GPR:$rd), (ins GPR:$rs1, VTypeIOp11:$vtypei),
- "vsetvli", "$rd, $rs1, $vtypei">,
- Sched<[WriteVSETVLI, ReadVSETVLI]>;
- def VSETIVLI : RVInstSetiVLi<(outs GPR:$rd), (ins uimm5:$uimm, VTypeIOp10:$vtypei),
- "vsetivli", "$rd, $uimm, $vtypei">,
- Sched<[WriteVSETIVLI]>;
- def VSETVL : RVInstSetVL<(outs GPR:$rd), (ins GPR:$rs1, GPR:$rs2),
- "vsetvl", "$rd, $rs1, $rs2">,
- Sched<[WriteVSETVL, ReadVSETVL, ReadVSETVL]>;
- } // hasSideEffects = 1, mayLoad = 0, mayStore = 0
- foreach eew = [8, 16, 32] in {
- defvar w = !cast<RISCVWidth>("LSWidth" # eew);
- // Vector Unit-Stride Instructions
- def VLE#eew#_V : VUnitStrideLoad<w, "vle"#eew#".v">, VLESched<UpperBoundLMUL>;
- def VSE#eew#_V : VUnitStrideStore<w, "vse"#eew#".v">, VSESched<UpperBoundLMUL>;
- // Vector Unit-Stride Fault-only-First Loads
- def VLE#eew#FF_V : VUnitStrideLoadFF<w, "vle"#eew#"ff.v">, VLFSched<UpperBoundLMUL>;
- // Vector Strided Instructions
- def VLSE#eew#_V : VStridedLoad<w, "vlse"#eew#".v">, VLSSched<eew, UpperBoundLMUL>;
- def VSSE#eew#_V : VStridedStore<w, "vsse"#eew#".v">, VSSSched<eew, UpperBoundLMUL>;
- }
- defm "" : VIndexLoadStore<[8, 16, 32]>;
- } // Predicates = [HasVInstructions]
- let Predicates = [HasVInstructions] in {
- def VLM_V : VUnitStrideLoadMask<"vlm.v">,
- Sched<[WriteVLDM_UpperBound, ReadVLDX_UpperBound]>;
- def VSM_V : VUnitStrideStoreMask<"vsm.v">,
- Sched<[WriteVSTM_UpperBound, ReadVSTM_UpperBound, ReadVSTX_UpperBound]>;
- def : InstAlias<"vle1.v $vd, (${rs1})",
- (VLM_V VR:$vd, GPR:$rs1), 0>;
- def : InstAlias<"vse1.v $vs3, (${rs1})",
- (VSM_V VR:$vs3, GPR:$rs1), 0>;
- defm VL1R : VWholeLoadN<0, "vl1r", VR>;
- defm VL2R : VWholeLoadN<1, "vl2r", VRM2>;
- defm VL4R : VWholeLoadN<3, "vl4r", VRM4>;
- defm VL8R : VWholeLoadN<7, "vl8r", VRM8>;
- def VS1R_V : VWholeStore<0, "vs1r.v", VR>,
- Sched<[WriteVST1R, ReadVST1R, ReadVSTX_UpperBound]>;
- def VS2R_V : VWholeStore<1, "vs2r.v", VRM2>,
- Sched<[WriteVST2R, ReadVST2R, ReadVSTX_UpperBound]>;
- def VS4R_V : VWholeStore<3, "vs4r.v", VRM4>,
- Sched<[WriteVST4R, ReadVST4R, ReadVSTX_UpperBound]>;
- def VS8R_V : VWholeStore<7, "vs8r.v", VRM8>,
- Sched<[WriteVST8R, ReadVST8R, ReadVSTX_UpperBound]>;
- def : InstAlias<"vl1r.v $vd, (${rs1})", (VL1RE8_V VR:$vd, GPR:$rs1)>;
- def : InstAlias<"vl2r.v $vd, (${rs1})", (VL2RE8_V VRM2:$vd, GPR:$rs1)>;
- def : InstAlias<"vl4r.v $vd, (${rs1})", (VL4RE8_V VRM4:$vd, GPR:$rs1)>;
- def : InstAlias<"vl8r.v $vd, (${rs1})", (VL8RE8_V VRM8:$vd, GPR:$rs1)>;
- } // Predicates = [HasVInstructions]
- let Predicates = [HasVInstructionsI64] in {
- // Vector Unit-Stride Instructions
- def VLE64_V : VUnitStrideLoad<LSWidth64, "vle64.v">,
- VLESched<UpperBoundLMUL>;
- def VLE64FF_V : VUnitStrideLoadFF<LSWidth64, "vle64ff.v">,
- VLFSched<UpperBoundLMUL>;
- def VSE64_V : VUnitStrideStore<LSWidth64, "vse64.v">,
- VSESched<UpperBoundLMUL>;
- // Vector Strided Instructions
- def VLSE64_V : VStridedLoad<LSWidth64, "vlse64.v">,
- VLSSched<32, UpperBoundLMUL>;
- def VSSE64_V : VStridedStore<LSWidth64, "vsse64.v">,
- VSSSched<64, UpperBoundLMUL>;
- defm VL1R: VWholeLoadEEW64<0, "vl1r", VR, WriteVLD1R>;
- defm VL2R: VWholeLoadEEW64<1, "vl2r", VRM2, WriteVLD2R>;
- defm VL4R: VWholeLoadEEW64<3, "vl4r", VRM4, WriteVLD4R>;
- defm VL8R: VWholeLoadEEW64<7, "vl8r", VRM8, WriteVLD8R>;
- } // Predicates = [HasVInstructionsI64]
- let Predicates = [IsRV64, HasVInstructionsI64] in {
- // Vector Indexed Instructions
- defm "" : VIndexLoadStore<[64]>;
- } // [IsRV64, HasVInstructionsI64]
- let Predicates = [HasVInstructions] in {
- // Vector Single-Width Integer Add and Subtract
- defm VADD_V : VALU_IV_V_X_I<"vadd", 0b000000>;
- defm VSUB_V : VALU_IV_V_X<"vsub", 0b000010>;
- defm VRSUB_V : VALU_IV_X_I<"vrsub", 0b000011>;
- def : InstAlias<"vneg.v $vd, $vs$vm", (VRSUB_VX VR:$vd, VR:$vs, X0, VMaskOp:$vm)>;
- def : InstAlias<"vneg.v $vd, $vs", (VRSUB_VX VR:$vd, VR:$vs, X0, zero_reg)>;
- // Vector Widening Integer Add/Subtract
- // Refer to 11.2 Widening Vector Arithmetic Instructions
- // The destination vector register group cannot overlap a source vector
- // register group of a different element width (including the mask register
- // if masked), otherwise an illegal instruction exception is raised.
- let Constraints = "@earlyclobber $vd" in {
- let RVVConstraint = WidenV in {
- defm VWADDU_V : VALU_MV_V_X<"vwaddu", 0b110000>;
- defm VWSUBU_V : VALU_MV_V_X<"vwsubu", 0b110010>;
- defm VWADD_V : VALU_MV_V_X<"vwadd", 0b110001>;
- defm VWSUB_V : VALU_MV_V_X<"vwsub", 0b110011>;
- } // RVVConstraint = WidenV
- // Set earlyclobber for following instructions for second and mask operands.
- // This has the downside that the earlyclobber constraint is too coarse and
- // will impose unnecessary restrictions by not allowing the destination to
- // overlap with the first (wide) operand.
- let RVVConstraint = WidenW in {
- defm VWADDU_W : VALU_MV_V_X<"vwaddu", 0b110100, "w">;
- defm VWSUBU_W : VALU_MV_V_X<"vwsubu", 0b110110, "w">;
- defm VWADD_W : VALU_MV_V_X<"vwadd", 0b110101, "w">;
- defm VWSUB_W : VALU_MV_V_X<"vwsub", 0b110111, "w">;
- } // RVVConstraint = WidenW
- } // Constraints = "@earlyclobber $vd"
- def : InstAlias<"vwcvt.x.x.v $vd, $vs$vm",
- (VWADD_VX VR:$vd, VR:$vs, X0, VMaskOp:$vm)>;
- def : InstAlias<"vwcvt.x.x.v $vd, $vs",
- (VWADD_VX VR:$vd, VR:$vs, X0, zero_reg)>;
- def : InstAlias<"vwcvtu.x.x.v $vd, $vs$vm",
- (VWADDU_VX VR:$vd, VR:$vs, X0, VMaskOp:$vm)>;
- def : InstAlias<"vwcvtu.x.x.v $vd, $vs",
- (VWADDU_VX VR:$vd, VR:$vs, X0, zero_reg)>;
- // Vector Integer Extension
- defm VZEXT_VF8 : VALU_MV_VS2<"vzext.vf8", 0b010010, 0b00010>;
- defm VSEXT_VF8 : VALU_MV_VS2<"vsext.vf8", 0b010010, 0b00011>;
- defm VZEXT_VF4 : VALU_MV_VS2<"vzext.vf4", 0b010010, 0b00100>;
- defm VSEXT_VF4 : VALU_MV_VS2<"vsext.vf4", 0b010010, 0b00101>;
- defm VZEXT_VF2 : VALU_MV_VS2<"vzext.vf2", 0b010010, 0b00110>;
- defm VSEXT_VF2 : VALU_MV_VS2<"vsext.vf2", 0b010010, 0b00111>;
- // Vector Integer Add-with-Carry / Subtract-with-Borrow Instructions
- defm VADC_V : VALUm_IV_V_X_I<"vadc", 0b010000>;
- let Constraints = "@earlyclobber $vd", RVVConstraint = NoConstraint in {
- defm VMADC_V : VALUm_IV_V_X_I<"vmadc", 0b010001>;
- defm VMADC_V : VALUNoVm_IV_V_X_I<"vmadc", 0b010001>;
- } // Constraints = "@earlyclobber $vd", RVVConstraint = NoConstraint
- defm VSBC_V : VALUm_IV_V_X<"vsbc", 0b010010>;
- let Constraints = "@earlyclobber $vd", RVVConstraint = NoConstraint in {
- defm VMSBC_V : VALUm_IV_V_X<"vmsbc", 0b010011>;
- defm VMSBC_V : VALUNoVm_IV_V_X<"vmsbc", 0b010011>;
- } // Constraints = "@earlyclobber $vd", RVVConstraint = NoConstraint
- // Vector Bitwise Logical Instructions
- defm VAND_V : VALU_IV_V_X_I<"vand", 0b001001>;
- defm VOR_V : VALU_IV_V_X_I<"vor", 0b001010>;
- defm VXOR_V : VALU_IV_V_X_I<"vxor", 0b001011>;
- def : InstAlias<"vnot.v $vd, $vs$vm",
- (VXOR_VI VR:$vd, VR:$vs, -1, VMaskOp:$vm)>;
- def : InstAlias<"vnot.v $vd, $vs",
- (VXOR_VI VR:$vd, VR:$vs, -1, zero_reg)>;
- // Vector Single-Width Bit Shift Instructions
- defm VSLL_V : VSHT_IV_V_X_I<"vsll", 0b100101, uimm5>;
- defm VSRL_V : VSHT_IV_V_X_I<"vsrl", 0b101000, uimm5>;
- defm VSRA_V : VSHT_IV_V_X_I<"vsra", 0b101001, uimm5>;
- // Vector Narrowing Integer Right Shift Instructions
- // Refer to 11.3. Narrowing Vector Arithmetic Instructions
- // The destination vector register group cannot overlap the first source
- // vector register group (specified by vs2). The destination vector register
- // group cannot overlap the mask register if used, unless LMUL=1.
- let Constraints = "@earlyclobber $vd" in {
- defm VNSRL_W : VNSHT_IV_V_X_I<"vnsrl", 0b101100, uimm5, "w">;
- defm VNSRA_W : VNSHT_IV_V_X_I<"vnsra", 0b101101, uimm5, "w">;
- } // Constraints = "@earlyclobber $vd"
- def : InstAlias<"vncvt.x.x.w $vd, $vs$vm",
- (VNSRL_WX VR:$vd, VR:$vs, X0, VMaskOp:$vm)>;
- def : InstAlias<"vncvt.x.x.w $vd, $vs",
- (VNSRL_WX VR:$vd, VR:$vs, X0, zero_reg)>;
- // Vector Integer Comparison Instructions
- let RVVConstraint = NoConstraint in {
- defm VMSEQ_V : VCMP_IV_V_X_I<"vmseq", 0b011000>;
- defm VMSNE_V : VCMP_IV_V_X_I<"vmsne", 0b011001>;
- defm VMSLTU_V : VCMP_IV_V_X<"vmsltu", 0b011010>;
- defm VMSLT_V : VCMP_IV_V_X<"vmslt", 0b011011>;
- defm VMSLEU_V : VCMP_IV_V_X_I<"vmsleu", 0b011100>;
- defm VMSLE_V : VCMP_IV_V_X_I<"vmsle", 0b011101>;
- defm VMSGTU_V : VCMP_IV_X_I<"vmsgtu", 0b011110>;
- defm VMSGT_V : VCMP_IV_X_I<"vmsgt", 0b011111>;
- } // RVVConstraint = NoConstraint
- def : InstAlias<"vmsgtu.vv $vd, $va, $vb$vm",
- (VMSLTU_VV VR:$vd, VR:$vb, VR:$va, VMaskOp:$vm), 0>;
- def : InstAlias<"vmsgt.vv $vd, $va, $vb$vm",
- (VMSLT_VV VR:$vd, VR:$vb, VR:$va, VMaskOp:$vm), 0>;
- def : InstAlias<"vmsgeu.vv $vd, $va, $vb$vm",
- (VMSLEU_VV VR:$vd, VR:$vb, VR:$va, VMaskOp:$vm), 0>;
- def : InstAlias<"vmsge.vv $vd, $va, $vb$vm",
- (VMSLE_VV VR:$vd, VR:$vb, VR:$va, VMaskOp:$vm), 0>;
- let isCodeGenOnly = 0, isAsmParserOnly = 1, hasSideEffects = 0, mayLoad = 0,
- mayStore = 0 in {
- // For unsigned comparisons we need to special case 0 immediate to maintain
- // the always true/false semantics we would invert if we just decremented the
- // immediate like we do for signed. To match the GNU assembler we will use
- // vmseq/vmsne.vv with the same register for both operands which we can't do
- // from an InstAlias.
- def PseudoVMSGEU_VI : Pseudo<(outs VR:$vd),
- (ins VR:$vs2, simm5_plus1:$imm, VMaskOp:$vm),
- [], "vmsgeu.vi", "$vd, $vs2, $imm$vm">;
- def PseudoVMSLTU_VI : Pseudo<(outs VR:$vd),
- (ins VR:$vs2, simm5_plus1:$imm, VMaskOp:$vm),
- [], "vmsltu.vi", "$vd, $vs2, $imm$vm">;
- // Handle signed with pseudos as well for more consistency in the
- // implementation.
- def PseudoVMSGE_VI : Pseudo<(outs VR:$vd),
- (ins VR:$vs2, simm5_plus1:$imm, VMaskOp:$vm),
- [], "vmsge.vi", "$vd, $vs2, $imm$vm">;
- def PseudoVMSLT_VI : Pseudo<(outs VR:$vd),
- (ins VR:$vs2, simm5_plus1:$imm, VMaskOp:$vm),
- [], "vmslt.vi", "$vd, $vs2, $imm$vm">;
- }
- let isCodeGenOnly = 0, isAsmParserOnly = 1, hasSideEffects = 0, mayLoad = 0,
- mayStore = 0 in {
- def PseudoVMSGEU_VX : Pseudo<(outs VR:$vd),
- (ins VR:$vs2, GPR:$rs1),
- [], "vmsgeu.vx", "$vd, $vs2, $rs1">;
- def PseudoVMSGE_VX : Pseudo<(outs VR:$vd),
- (ins VR:$vs2, GPR:$rs1),
- [], "vmsge.vx", "$vd, $vs2, $rs1">;
- def PseudoVMSGEU_VX_M : Pseudo<(outs VRNoV0:$vd),
- (ins VR:$vs2, GPR:$rs1, VMaskOp:$vm),
- [], "vmsgeu.vx", "$vd, $vs2, $rs1$vm">;
- def PseudoVMSGE_VX_M : Pseudo<(outs VRNoV0:$vd),
- (ins VR:$vs2, GPR:$rs1, VMaskOp:$vm),
- [], "vmsge.vx", "$vd, $vs2, $rs1$vm">;
- def PseudoVMSGEU_VX_M_T : Pseudo<(outs VR:$vd, VRNoV0:$scratch),
- (ins VR:$vs2, GPR:$rs1, VMaskOp:$vm),
- [], "vmsgeu.vx", "$vd, $vs2, $rs1$vm, $scratch">;
- def PseudoVMSGE_VX_M_T : Pseudo<(outs VR:$vd, VRNoV0:$scratch),
- (ins VR:$vs2, GPR:$rs1, VMaskOp:$vm),
- [], "vmsge.vx", "$vd, $vs2, $rs1$vm, $scratch">;
- }
- // Vector Integer Min/Max Instructions
- defm VMINU_V : VCMP_IV_V_X<"vminu", 0b000100>;
- defm VMIN_V : VCMP_IV_V_X<"vmin", 0b000101>;
- defm VMAXU_V : VCMP_IV_V_X<"vmaxu", 0b000110>;
- defm VMAX_V : VCMP_IV_V_X<"vmax", 0b000111>;
- // Vector Single-Width Integer Multiply Instructions
- defm VMUL_V : VMUL_MV_V_X<"vmul", 0b100101>;
- defm VMULH_V : VMUL_MV_V_X<"vmulh", 0b100111>;
- defm VMULHU_V : VMUL_MV_V_X<"vmulhu", 0b100100>;
- defm VMULHSU_V : VMUL_MV_V_X<"vmulhsu", 0b100110>;
- // Vector Integer Divide Instructions
- defm VDIVU_V : VDIV_MV_V_X<"vdivu", 0b100000>;
- defm VDIV_V : VDIV_MV_V_X<"vdiv", 0b100001>;
- defm VREMU_V : VDIV_MV_V_X<"vremu", 0b100010>;
- defm VREM_V : VDIV_MV_V_X<"vrem", 0b100011>;
- // Vector Widening Integer Multiply Instructions
- let Constraints = "@earlyclobber $vd", RVVConstraint = WidenV in {
- defm VWMUL_V : VWMUL_MV_V_X<"vwmul", 0b111011>;
- defm VWMULU_V : VWMUL_MV_V_X<"vwmulu", 0b111000>;
- defm VWMULSU_V : VWMUL_MV_V_X<"vwmulsu", 0b111010>;
- } // Constraints = "@earlyclobber $vd", RVVConstraint = WidenV
- // Vector Single-Width Integer Multiply-Add Instructions
- defm VMACC_V : VMAC_MV_V_X<"vmacc", 0b101101>;
- defm VNMSAC_V : VMAC_MV_V_X<"vnmsac", 0b101111>;
- defm VMADD_V : VMAC_MV_V_X<"vmadd", 0b101001>;
- defm VNMSUB_V : VMAC_MV_V_X<"vnmsub", 0b101011>;
- // Vector Widening Integer Multiply-Add Instructions
- let Constraints = "@earlyclobber $vd", RVVConstraint = WidenV in {
- defm VWMACCU_V : VWMAC_MV_V_X<"vwmaccu", 0b111100>;
- defm VWMACC_V : VWMAC_MV_V_X<"vwmacc", 0b111101>;
- defm VWMACCSU_V : VWMAC_MV_V_X<"vwmaccsu", 0b111111>;
- defm VWMACCUS_V : VWMAC_MV_X<"vwmaccus", 0b111110>;
- } // Constraints = "@earlyclobber $vd", RVVConstraint = WidenV
- // Vector Integer Merge Instructions
- defm VMERGE_V : VMRG_IV_V_X_I<"vmerge", 0b010111>;
- // Vector Integer Move Instructions
- let hasSideEffects = 0, mayLoad = 0, mayStore = 0, vs2 = 0, vm = 1,
- RVVConstraint = NoConstraint in {
- // op vd, vs1
- def VMV_V_V : RVInstVV<0b010111, OPIVV, (outs VR:$vd),
- (ins VR:$vs1), "vmv.v.v", "$vd, $vs1">,
- Sched<[WriteVIMovV_UpperBound, ReadVIMovV_UpperBound]>;
- // op vd, rs1
- def VMV_V_X : RVInstVX<0b010111, OPIVX, (outs VR:$vd),
- (ins GPR:$rs1), "vmv.v.x", "$vd, $rs1">,
- Sched<[WriteVIMovX_UpperBound, ReadVIMovX_UpperBound]>;
- // op vd, imm
- def VMV_V_I : RVInstIVI<0b010111, (outs VR:$vd),
- (ins simm5:$imm), "vmv.v.i", "$vd, $imm">,
- Sched<[WriteVIMovI_UpperBound]>;
- } // hasSideEffects = 0, mayLoad = 0, mayStore = 0
- // Vector Fixed-Point Arithmetic Instructions
- defm VSADDU_V : VSALU_IV_V_X_I<"vsaddu", 0b100000>;
- defm VSADD_V : VSALU_IV_V_X_I<"vsadd", 0b100001>;
- defm VSSUBU_V : VSALU_IV_V_X<"vssubu", 0b100010>;
- defm VSSUB_V : VSALU_IV_V_X<"vssub", 0b100011>;
- // Vector Single-Width Averaging Add and Subtract
- defm VAADDU_V : VAALU_MV_V_X<"vaaddu", 0b001000>;
- defm VAADD_V : VAALU_MV_V_X<"vaadd", 0b001001>;
- defm VASUBU_V : VAALU_MV_V_X<"vasubu", 0b001010>;
- defm VASUB_V : VAALU_MV_V_X<"vasub", 0b001011>;
- // Vector Single-Width Fractional Multiply with Rounding and Saturation
- defm VSMUL_V : VSMUL_IV_V_X<"vsmul", 0b100111>;
- // Vector Single-Width Scaling Shift Instructions
- defm VSSRL_V : VSSHF_IV_V_X_I<"vssrl", 0b101010, uimm5>;
- defm VSSRA_V : VSSHF_IV_V_X_I<"vssra", 0b101011, uimm5>;
- // Vector Narrowing Fixed-Point Clip Instructions
- let Constraints = "@earlyclobber $vd" in {
- defm VNCLIPU_W : VNCLP_IV_V_X_I<"vnclipu", 0b101110, uimm5, "w">;
- defm VNCLIP_W : VNCLP_IV_V_X_I<"vnclip", 0b101111, uimm5, "w">;
- } // Constraints = "@earlyclobber $vd"
- } // Predicates = [HasVInstructions]
- let Predicates = [HasVInstructionsAnyF] in {
- // Vector Single-Width Floating-Point Add/Subtract Instructions
- let Uses = [FRM], mayRaiseFPException = true in {
- defm VFADD_V : VALU_FV_V_F<"vfadd", 0b000000>;
- defm VFSUB_V : VALU_FV_V_F<"vfsub", 0b000010>;
- defm VFRSUB_V : VALU_FV_F<"vfrsub", 0b100111>;
- }
- // Vector Widening Floating-Point Add/Subtract Instructions
- let Constraints = "@earlyclobber $vd",
- Uses = [FRM],
- mayRaiseFPException = true in {
- let RVVConstraint = WidenV in {
- defm VFWADD_V : VWALU_FV_V_F<"vfwadd", 0b110000>;
- defm VFWSUB_V : VWALU_FV_V_F<"vfwsub", 0b110010>;
- } // RVVConstraint = WidenV
- // Set earlyclobber for following instructions for second and mask operands.
- // This has the downside that the earlyclobber constraint is too coarse and
- // will impose unnecessary restrictions by not allowing the destination to
- // overlap with the first (wide) operand.
- let RVVConstraint = WidenW in {
- defm VFWADD_W : VWALU_FV_V_F<"vfwadd", 0b110100, "w">;
- defm VFWSUB_W : VWALU_FV_V_F<"vfwsub", 0b110110, "w">;
- } // RVVConstraint = WidenW
- } // Constraints = "@earlyclobber $vd", Uses = [FRM], mayRaiseFPException = true
- // Vector Single-Width Floating-Point Multiply/Divide Instructions
- let Uses = [FRM], mayRaiseFPException = true in {
- defm VFMUL_V : VMUL_FV_V_F<"vfmul", 0b100100>;
- defm VFDIV_V : VDIV_FV_V_F<"vfdiv", 0b100000>;
- defm VFRDIV_V : VRDIV_FV_F<"vfrdiv", 0b100001>;
- }
- // Vector Widening Floating-Point Multiply
- let Constraints = "@earlyclobber $vd", RVVConstraint = WidenV,
- Uses = [FRM], mayRaiseFPException = true in {
- defm VFWMUL_V : VWMUL_FV_V_F<"vfwmul", 0b111000>;
- } // Constraints = "@earlyclobber $vd", RVVConstraint = WidenV, Uses = [FRM], mayRaiseFPException = true
- // Vector Single-Width Floating-Point Fused Multiply-Add Instructions
- let Uses = [FRM], mayRaiseFPException = true in {
- defm VFMACC_V : VMAC_FV_V_F<"vfmacc", 0b101100>;
- defm VFNMACC_V : VMAC_FV_V_F<"vfnmacc", 0b101101>;
- defm VFMSAC_V : VMAC_FV_V_F<"vfmsac", 0b101110>;
- defm VFNMSAC_V : VMAC_FV_V_F<"vfnmsac", 0b101111>;
- defm VFMADD_V : VMAC_FV_V_F<"vfmadd", 0b101000>;
- defm VFNMADD_V : VMAC_FV_V_F<"vfnmadd", 0b101001>;
- defm VFMSUB_V : VMAC_FV_V_F<"vfmsub", 0b101010>;
- defm VFNMSUB_V : VMAC_FV_V_F<"vfnmsub", 0b101011>;
- }
- // Vector Widening Floating-Point Fused Multiply-Add Instructions
- let Constraints = "@earlyclobber $vd", RVVConstraint = WidenV,
- Uses = [FRM], mayRaiseFPException = true in {
- defm VFWMACC_V : VWMAC_FV_V_F<"vfwmacc", 0b111100>;
- defm VFWNMACC_V : VWMAC_FV_V_F<"vfwnmacc", 0b111101>;
- defm VFWMSAC_V : VWMAC_FV_V_F<"vfwmsac", 0b111110>;
- defm VFWNMSAC_V : VWMAC_FV_V_F<"vfwnmsac", 0b111111>;
- } // Constraints = "@earlyclobber $vd", RVVConstraint = WidenV, Uses = [FRM], mayRaiseFPException = true
- // Vector Floating-Point Square-Root Instruction
- let Uses = [FRM], mayRaiseFPException = true in {
- defm VFSQRT_V : VSQR_FV_VS2<"vfsqrt.v", 0b010011, 0b00000>;
- defm VFREC7_V : VRCP_FV_VS2<"vfrec7.v", 0b010011, 0b00101>;
- }
- let mayRaiseFPException = true in
- defm VFRSQRT7_V : VRCP_FV_VS2<"vfrsqrt7.v", 0b010011, 0b00100>;
- // Vector Floating-Point MIN/MAX Instructions
- let mayRaiseFPException = true in {
- defm VFMIN_V : VCMP_FV_V_F<"vfmin", 0b000100>;
- defm VFMAX_V : VCMP_FV_V_F<"vfmax", 0b000110>;
- }
- // Vector Floating-Point Sign-Injection Instructions
- defm VFSGNJ_V : VSGNJ_FV_V_F<"vfsgnj", 0b001000>;
- defm VFSGNJN_V : VSGNJ_FV_V_F<"vfsgnjn", 0b001001>;
- defm VFSGNJX_V : VSGNJ_FV_V_F<"vfsgnjx", 0b001010>;
- def : InstAlias<"vfneg.v $vd, $vs$vm",
- (VFSGNJN_VV VR:$vd, VR:$vs, VR:$vs, VMaskOp:$vm)>;
- def : InstAlias<"vfneg.v $vd, $vs",
- (VFSGNJN_VV VR:$vd, VR:$vs, VR:$vs, zero_reg)>;
- def : InstAlias<"vfabs.v $vd, $vs$vm",
- (VFSGNJX_VV VR:$vd, VR:$vs, VR:$vs, VMaskOp:$vm)>;
- def : InstAlias<"vfabs.v $vd, $vs",
- (VFSGNJX_VV VR:$vd, VR:$vs, VR:$vs, zero_reg)>;
- // Vector Floating-Point Compare Instructions
- let RVVConstraint = NoConstraint, mayRaiseFPException = true in {
- defm VMFEQ_V : VCMP_FV_V_F<"vmfeq", 0b011000>;
- defm VMFNE_V : VCMP_FV_V_F<"vmfne", 0b011100>;
- defm VMFLT_V : VCMP_FV_V_F<"vmflt", 0b011011>;
- defm VMFLE_V : VCMP_FV_V_F<"vmfle", 0b011001>;
- defm VMFGT_V : VCMP_FV_F<"vmfgt", 0b011101>;
- defm VMFGE_V : VCMP_FV_F<"vmfge", 0b011111>;
- } // RVVConstraint = NoConstraint, mayRaiseFPException = true
- def : InstAlias<"vmfgt.vv $vd, $va, $vb$vm",
- (VMFLT_VV VR:$vd, VR:$vb, VR:$va, VMaskOp:$vm), 0>;
- def : InstAlias<"vmfge.vv $vd, $va, $vb$vm",
- (VMFLE_VV VR:$vd, VR:$vb, VR:$va, VMaskOp:$vm), 0>;
- // Vector Floating-Point Classify Instruction
- defm VFCLASS_V : VCLS_FV_VS2<"vfclass.v", 0b010011, 0b10000>;
- let hasSideEffects = 0, mayLoad = 0, mayStore = 0 in {
- // Vector Floating-Point Merge Instruction
- let vm = 0 in
- def VFMERGE_VFM : RVInstVX<0b010111, OPFVF, (outs VR:$vd),
- (ins VR:$vs2, FPR32:$rs1, VMV0:$v0),
- "vfmerge.vfm", "$vd, $vs2, $rs1, v0">,
- Sched<[WriteVFMergeV_UpperBound, ReadVFMergeV_UpperBound,
- ReadVFMergeF_UpperBound, ReadVMask]>;
- // Vector Floating-Point Move Instruction
- let RVVConstraint = NoConstraint in
- let vm = 1, vs2 = 0 in
- def VFMV_V_F : RVInstVX<0b010111, OPFVF, (outs VR:$vd),
- (ins FPR32:$rs1), "vfmv.v.f", "$vd, $rs1">,
- Sched<[WriteVFMovV_UpperBound, ReadVFMovF_UpperBound]>;
- } // hasSideEffects = 0, mayLoad = 0, mayStore = 0
- // Single-Width Floating-Point/Integer Type-Convert Instructions
- let mayRaiseFPException = true in {
- let Uses = [FRM] in {
- defm VFCVT_XU_F_V : VCVTI_FV_VS2<"vfcvt.xu.f.v", 0b010010, 0b00000>;
- defm VFCVT_X_F_V : VCVTI_FV_VS2<"vfcvt.x.f.v", 0b010010, 0b00001>;
- }
- defm VFCVT_RTZ_XU_F_V : VCVTI_FV_VS2<"vfcvt.rtz.xu.f.v", 0b010010, 0b00110>;
- defm VFCVT_RTZ_X_F_V : VCVTI_FV_VS2<"vfcvt.rtz.x.f.v", 0b010010, 0b00111>;
- let Uses = [FRM] in {
- defm VFCVT_F_XU_V : VCVTF_IV_VS2<"vfcvt.f.xu.v", 0b010010, 0b00010>;
- defm VFCVT_F_X_V : VCVTF_IV_VS2<"vfcvt.f.x.v", 0b010010, 0b00011>;
- }
- } // mayRaiseFPException = true
- // Widening Floating-Point/Integer Type-Convert Instructions
- let Constraints = "@earlyclobber $vd", RVVConstraint = WidenCvt,
- mayRaiseFPException = true in {
- let Uses = [FRM] in {
- defm VFWCVT_XU_F_V : VWCVTI_FV_VS2<"vfwcvt.xu.f.v", 0b010010, 0b01000>;
- defm VFWCVT_X_F_V : VWCVTI_FV_VS2<"vfwcvt.x.f.v", 0b010010, 0b01001>;
- }
- defm VFWCVT_RTZ_XU_F_V : VWCVTI_FV_VS2<"vfwcvt.rtz.xu.f.v", 0b010010, 0b01110>;
- defm VFWCVT_RTZ_X_F_V : VWCVTI_FV_VS2<"vfwcvt.rtz.x.f.v", 0b010010, 0b01111>;
- defm VFWCVT_F_XU_V : VWCVTF_IV_VS2<"vfwcvt.f.xu.v", 0b010010, 0b01010>;
- defm VFWCVT_F_X_V : VWCVTF_IV_VS2<"vfwcvt.f.x.v", 0b010010, 0b01011>;
- defm VFWCVT_F_F_V : VWCVTF_FV_VS2<"vfwcvt.f.f.v", 0b010010, 0b01100>;
- } // Constraints = "@earlyclobber $vd", RVVConstraint = WidenCvt
- // Narrowing Floating-Point/Integer Type-Convert Instructions
- let Constraints = "@earlyclobber $vd", mayRaiseFPException = true in {
- let Uses = [FRM] in {
- defm VFNCVT_XU_F_W : VNCVTI_FV_VS2<"vfncvt.xu.f.w", 0b010010, 0b10000>;
- defm VFNCVT_X_F_W : VNCVTI_FV_VS2<"vfncvt.x.f.w", 0b010010, 0b10001>;
- }
- defm VFNCVT_RTZ_XU_F_W : VNCVTI_FV_VS2<"vfncvt.rtz.xu.f.w", 0b010010, 0b10110>;
- defm VFNCVT_RTZ_X_F_W : VNCVTI_FV_VS2<"vfncvt.rtz.x.f.w", 0b010010, 0b10111>;
- let Uses = [FRM] in {
- defm VFNCVT_F_XU_W : VNCVTF_IV_VS2<"vfncvt.f.xu.w", 0b010010, 0b10010>;
- defm VFNCVT_F_X_W : VNCVTF_IV_VS2<"vfncvt.f.x.w", 0b010010, 0b10011>;
- defm VFNCVT_F_F_W : VNCVTF_FV_VS2<"vfncvt.f.f.w", 0b010010, 0b10100>;
- }
- defm VFNCVT_ROD_F_F_W : VNCVTF_FV_VS2<"vfncvt.rod.f.f.w", 0b010010, 0b10101>;
- } // Constraints = "@earlyclobber $vd", mayRaiseFPException = true
- } // Predicates = HasVInstructionsAnyF]
- let Predicates = [HasVInstructions] in {
- // Vector Single-Width Integer Reduction Instructions
- let RVVConstraint = NoConstraint in {
- defm VREDSUM : VRED_MV_V<"vredsum", 0b000000>;
- defm VREDMAXU : VRED_MV_V<"vredmaxu", 0b000110>;
- defm VREDMAX : VRED_MV_V<"vredmax", 0b000111>;
- defm VREDMINU : VRED_MV_V<"vredminu", 0b000100>;
- defm VREDMIN : VRED_MV_V<"vredmin", 0b000101>;
- defm VREDAND : VRED_MV_V<"vredand", 0b000001>;
- defm VREDOR : VRED_MV_V<"vredor", 0b000010>;
- defm VREDXOR : VRED_MV_V<"vredxor", 0b000011>;
- } // RVVConstraint = NoConstraint
- // Vector Widening Integer Reduction Instructions
- let Constraints = "@earlyclobber $vd", RVVConstraint = NoConstraint in {
- // Set earlyclobber for following instructions for second and mask operands.
- // This has the downside that the earlyclobber constraint is too coarse and
- // will impose unnecessary restrictions by not allowing the destination to
- // overlap with the first (wide) operand.
- defm VWREDSUMU : VWRED_IV_V<"vwredsumu", 0b110000>;
- defm VWREDSUM : VWRED_IV_V<"vwredsum", 0b110001>;
- } // Constraints = "@earlyclobber $vd", RVVConstraint = NoConstraint
- } // Predicates = [HasVInstructions]
- let Predicates = [HasVInstructionsAnyF] in {
- // Vector Single-Width Floating-Point Reduction Instructions
- let RVVConstraint = NoConstraint in {
- let Uses = [FRM], mayRaiseFPException = true in {
- defm VFREDOSUM : VREDO_FV_V<"vfredosum", 0b000011>;
- defm VFREDUSUM : VRED_FV_V<"vfredusum", 0b000001>;
- }
- let mayRaiseFPException = true in {
- defm VFREDMAX : VRED_FV_V<"vfredmax", 0b000111>;
- defm VFREDMIN : VRED_FV_V<"vfredmin", 0b000101>;
- }
- } // RVVConstraint = NoConstraint
- def : InstAlias<"vfredsum.vs $vd, $vs2, $vs1$vm",
- (VFREDUSUM_VS VR:$vd, VR:$vs2, VR:$vs1, VMaskOp:$vm), 0>;
- // Vector Widening Floating-Point Reduction Instructions
- let Constraints = "@earlyclobber $vd", RVVConstraint = NoConstraint in {
- // Set earlyclobber for following instructions for second and mask operands.
- // This has the downside that the earlyclobber constraint is too coarse and
- // will impose unnecessary restrictions by not allowing the destination to
- // overlap with the first (wide) operand.
- let Uses = [FRM], mayRaiseFPException = true in {
- defm VFWREDOSUM : VWREDO_FV_V<"vfwredosum", 0b110011>;
- defm VFWREDUSUM : VWRED_FV_V<"vfwredusum", 0b110001>;
- }
- } // Constraints = "@earlyclobber $vd", RVVConstraint = NoConstraint
- def : InstAlias<"vfwredsum.vs $vd, $vs2, $vs1$vm",
- (VFWREDUSUM_VS VR:$vd, VR:$vs2, VR:$vs1, VMaskOp:$vm), 0>;
- } // Predicates = [HasVInstructionsAnyF]
- let Predicates = [HasVInstructions] in {
- // Vector Mask-Register Logical Instructions
- let RVVConstraint = NoConstraint in {
- defm VMAND_M : VMALU_MV_Mask<"vmand", 0b011001, "m">;
- defm VMNAND_M : VMALU_MV_Mask<"vmnand", 0b011101, "m">;
- defm VMANDN_M : VMALU_MV_Mask<"vmandn", 0b011000, "m">;
- defm VMXOR_M : VMALU_MV_Mask<"vmxor", 0b011011, "m">;
- defm VMOR_M : VMALU_MV_Mask<"vmor", 0b011010, "m">;
- defm VMNOR_M : VMALU_MV_Mask<"vmnor", 0b011110, "m">;
- defm VMORN_M : VMALU_MV_Mask<"vmorn", 0b011100, "m">;
- defm VMXNOR_M : VMALU_MV_Mask<"vmxnor", 0b011111, "m">;
- }
- def : InstAlias<"vmmv.m $vd, $vs",
- (VMAND_MM VR:$vd, VR:$vs, VR:$vs)>;
- def : InstAlias<"vmclr.m $vd",
- (VMXOR_MM VR:$vd, VR:$vd, VR:$vd)>;
- def : InstAlias<"vmset.m $vd",
- (VMXNOR_MM VR:$vd, VR:$vd, VR:$vd)>;
- def : InstAlias<"vmnot.m $vd, $vs",
- (VMNAND_MM VR:$vd, VR:$vs, VR:$vs)>;
- def : InstAlias<"vmandnot.mm $vd, $vs2, $vs1",
- (VMANDN_MM VR:$vd, VR:$vs2, VR:$vs1), 0>;
- def : InstAlias<"vmornot.mm $vd, $vs2, $vs1",
- (VMORN_MM VR:$vd, VR:$vs2, VR:$vs1), 0>;
- let hasSideEffects = 0, mayLoad = 0, mayStore = 0,
- RVVConstraint = NoConstraint in {
- // Vector mask population count vcpop
- def VCPOP_M : RVInstV<0b010000, 0b10000, OPMVV, (outs GPR:$vd),
- (ins VR:$vs2, VMaskOp:$vm),
- "vcpop.m", "$vd, $vs2$vm">,
- Sched<[WriteVMPopV_UpperBound, ReadVMPopV_UpperBound,
- ReadVMask]>;
- // vfirst find-first-set mask bit
- def VFIRST_M : RVInstV<0b010000, 0b10001, OPMVV, (outs GPR:$vd),
- (ins VR:$vs2, VMaskOp:$vm),
- "vfirst.m", "$vd, $vs2$vm">,
- Sched<[WriteVMFFSV_UpperBound, ReadVMFFSV_UpperBound,
- ReadVMask]>;
- } // hasSideEffects = 0, mayLoad = 0, mayStore = 0
- def : InstAlias<"vpopc.m $vd, $vs2$vm",
- (VCPOP_M GPR:$vd, VR:$vs2, VMaskOp:$vm), 0>;
- let Constraints = "@earlyclobber $vd", RVVConstraint = Iota in {
- // vmsbf.m set-before-first mask bit
- defm VMSBF_M : VMSFS_MV_V<"vmsbf.m", 0b010100, 0b00001>;
- // vmsif.m set-including-first mask bit
- defm VMSIF_M : VMSFS_MV_V<"vmsif.m", 0b010100, 0b00011>;
- // vmsof.m set-only-first mask bit
- defm VMSOF_M : VMSFS_MV_V<"vmsof.m", 0b010100, 0b00010>;
- // Vector Iota Instruction
- defm VIOTA_M : VMIOT_MV_V<"viota.m", 0b010100, 0b10000>;
- } // Constraints = "@earlyclobber $vd", RVVConstraint = Iota
- // Vector Element Index Instruction
- let hasSideEffects = 0, mayLoad = 0, mayStore = 0 in {
- let vs2 = 0 in
- def VID_V : RVInstV<0b010100, 0b10001, OPMVV, (outs VR:$vd),
- (ins VMaskOp:$vm), "vid.v", "$vd$vm">,
- Sched<[WriteVMIdxV_UpperBound, ReadVMask]>;
- // Integer Scalar Move Instructions
- let vm = 1, RVVConstraint = NoConstraint in {
- def VMV_X_S : RVInstV<0b010000, 0b00000, OPMVV, (outs GPR:$vd),
- (ins VR:$vs2), "vmv.x.s", "$vd, $vs2">,
- Sched<[WriteVIMovVX_UpperBound, ReadVIMovVX_UpperBound]>;
- let Constraints = "$vd = $vd_wb" in
- def VMV_S_X : RVInstV2<0b010000, 0b00000, OPMVX, (outs VR:$vd_wb),
- (ins VR:$vd, GPR:$rs1), "vmv.s.x", "$vd, $rs1">,
- Sched<[WriteVIMovXV_UpperBound, ReadVIMovXV_UpperBound,
- ReadVIMovXX_UpperBound]>;
- }
- } // hasSideEffects = 0, mayLoad = 0, mayStore = 0
- } // Predicates = [HasVInstructions]
- let Predicates = [HasVInstructionsAnyF] in {
- let hasSideEffects = 0, mayLoad = 0, mayStore = 0, vm = 1,
- RVVConstraint = NoConstraint in {
- // Floating-Point Scalar Move Instructions
- def VFMV_F_S : RVInstV<0b010000, 0b00000, OPFVV, (outs FPR32:$vd),
- (ins VR:$vs2), "vfmv.f.s", "$vd, $vs2">,
- Sched<[WriteVFMovVF_UpperBound, ReadVFMovVF_UpperBound]>;
- let Constraints = "$vd = $vd_wb" in
- def VFMV_S_F : RVInstV2<0b010000, 0b00000, OPFVF, (outs VR:$vd_wb),
- (ins VR:$vd, FPR32:$rs1), "vfmv.s.f", "$vd, $rs1">,
- Sched<[WriteVFMovFV_UpperBound, ReadVFMovFV_UpperBound,
- ReadVFMovFX_UpperBound]>;
- } // hasSideEffects = 0, mayLoad = 0, mayStore = 0, vm = 1
- } // Predicates = [HasVInstructionsAnyF]
- let Predicates = [HasVInstructions] in {
- // Vector Slide Instructions
- let Constraints = "@earlyclobber $vd", RVVConstraint = SlideUp in {
- defm VSLIDEUP_V : VSLD_IV_X_I<"vslideup", 0b001110, uimm5>;
- defm VSLIDE1UP_V : VSLD1_MV_X<"vslide1up", 0b001110>;
- } // Constraints = "@earlyclobber $vd", RVVConstraint = SlideUp
- defm VSLIDEDOWN_V : VSLD_IV_X_I<"vslidedown", 0b001111, uimm5>;
- defm VSLIDE1DOWN_V : VSLD1_MV_X<"vslide1down", 0b001111>;
- } // Predicates = [HasVInstructions]
- let Predicates = [HasVInstructionsAnyF] in {
- let Constraints = "@earlyclobber $vd", RVVConstraint = SlideUp in {
- defm VFSLIDE1UP_V : VSLD1_FV_F<"vfslide1up", 0b001110>;
- } // Constraints = "@earlyclobber $vd", RVVConstraint = SlideUp
- defm VFSLIDE1DOWN_V : VSLD1_FV_F<"vfslide1down", 0b001111>;
- } // Predicates = [HasVInstructionsAnyF]
- let Predicates = [HasVInstructions] in {
- // Vector Register Gather Instruction
- let Constraints = "@earlyclobber $vd", RVVConstraint = Vrgather in {
- defm VRGATHER_V : VGTR_IV_V_X_I<"vrgather", 0b001100, uimm5>;
- def VRGATHEREI16_VV : VALUVV<0b001110, OPIVV, "vrgatherei16.vv">,
- Sched<[WriteVGatherV_UpperBound, ReadVGatherV_UpperBound,
- ReadVGatherV_UpperBound]>;
- } // Constraints = "@earlyclobber $vd", RVVConstraint = Vrgather
- // Vector Compress Instruction
- let Constraints = "@earlyclobber $vd", RVVConstraint = Vcompress in {
- defm VCOMPRESS_V : VCPR_MV_Mask<"vcompress", 0b010111>;
- } // Constraints = "@earlyclobber $vd", RVVConstraint = Vcompress
- let hasSideEffects = 0, mayLoad = 0, mayStore = 0,
- RVVConstraint = NoConstraint in {
- // A future extension may relax the vector register alignment restrictions.
- foreach n = [1, 2, 4, 8] in {
- defvar vrc = !cast<VReg>(!if(!eq(n, 1), "VR", "VRM"#n));
- def VMV#n#R_V : RVInstV<0b100111, !add(n, -1), OPIVI, (outs vrc:$vd),
- (ins vrc:$vs2), "vmv" # n # "r.v", "$vd, $vs2">,
- VMVRSched<n> {
- let Uses = [];
- let vm = 1;
- }
- }
- } // hasSideEffects = 0, mayLoad = 0, mayStore = 0
- } // Predicates = [HasVInstructions]
- let Predicates = [HasVInstructions] in {
- foreach nf=2-8 in {
- foreach eew = [8, 16, 32] in {
- defvar w = !cast<RISCVWidth>("LSWidth"#eew);
- def VLSEG#nf#E#eew#_V :
- VUnitStrideSegmentLoad<!add(nf, -1), w, "vlseg"#nf#"e"#eew#".v">,
- VLSEGSched<nf, eew, UpperBoundLMUL>;
- def VLSEG#nf#E#eew#FF_V :
- VUnitStrideSegmentLoadFF<!add(nf, -1), w, "vlseg"#nf#"e"#eew#"ff.v">,
- VLSEGFFSched<nf, eew, UpperBoundLMUL>;
- def VSSEG#nf#E#eew#_V :
- VUnitStrideSegmentStore<!add(nf, -1), w, "vsseg"#nf#"e"#eew#".v">,
- VSSEGSched<nf, eew, UpperBoundLMUL>;
- // Vector Strided Instructions
- def VLSSEG#nf#E#eew#_V :
- VStridedSegmentLoad<!add(nf, -1), w, "vlsseg"#nf#"e"#eew#".v">,
- VLSSEGSched<nf, eew, UpperBoundLMUL>;
- def VSSSEG#nf#E#eew#_V :
- VStridedSegmentStore<!add(nf, -1), w, "vssseg"#nf#"e"#eew#".v">,
- VSSSEGSched<nf, eew, UpperBoundLMUL>;
- // Vector Indexed Instructions
- def VLUXSEG#nf#EI#eew#_V :
- VIndexedSegmentLoad<!add(nf, -1), MOPLDIndexedUnord, w,
- "vluxseg"#nf#"ei"#eew#".v">,
- VLXSEGSched<nf, eew, "U", UpperBoundLMUL>;
- def VLOXSEG#nf#EI#eew#_V :
- VIndexedSegmentLoad<!add(nf, -1), MOPLDIndexedOrder, w,
- "vloxseg"#nf#"ei"#eew#".v">,
- VLXSEGSched<nf, eew, "O", UpperBoundLMUL>;
- def VSUXSEG#nf#EI#eew#_V :
- VIndexedSegmentStore<!add(nf, -1), MOPSTIndexedUnord, w,
- "vsuxseg"#nf#"ei"#eew#".v">,
- VSXSEGSched<nf, eew, "U", UpperBoundLMUL>;
- def VSOXSEG#nf#EI#eew#_V :
- VIndexedSegmentStore<!add(nf, -1), MOPSTIndexedOrder, w,
- "vsoxseg"#nf#"ei"#eew#".v">,
- VSXSEGSched<nf, eew, "O", UpperBoundLMUL>;
- }
- }
- } // Predicates = [HasVInstructions]
- let Predicates = [HasVInstructionsI64] in {
- foreach nf=2-8 in {
- // Vector Unit-strided Segment Instructions
- def VLSEG#nf#E64_V :
- VUnitStrideSegmentLoad<!add(nf, -1), LSWidth64, "vlseg"#nf#"e64.v">,
- VLSEGSched<nf, 64, UpperBoundLMUL>;
- def VLSEG#nf#E64FF_V :
- VUnitStrideSegmentLoadFF<!add(nf, -1), LSWidth64, "vlseg"#nf#"e64ff.v">,
- VLSEGFFSched<nf, 64, UpperBoundLMUL>;
- def VSSEG#nf#E64_V :
- VUnitStrideSegmentStore<!add(nf, -1), LSWidth64, "vsseg"#nf#"e64.v">,
- VSSEGSched<nf, 64, UpperBoundLMUL>;
- // Vector Strided Segment Instructions
- def VLSSEG#nf#E64_V :
- VStridedSegmentLoad<!add(nf, -1), LSWidth64, "vlsseg"#nf#"e64.v">,
- VLSSEGSched<nf, 64, UpperBoundLMUL>;
- def VSSSEG#nf#E64_V :
- VStridedSegmentStore<!add(nf, -1), LSWidth64, "vssseg"#nf#"e64.v">,
- VSSSEGSched<nf, 64, UpperBoundLMUL>;
- }
- } // Predicates = [HasVInstructionsI64]
- let Predicates = [HasVInstructionsI64, IsRV64] in {
- foreach nf = 2 - 8 in {
- // Vector Indexed Segment Instructions
- def VLUXSEG #nf #EI64_V
- : VIndexedSegmentLoad<!add(nf, -1), MOPLDIndexedUnord, LSWidth64,
- "vluxseg" #nf #"ei64.v">,
- VLXSEGSched<nf, 64, "U", UpperBoundLMUL>;
- def VLOXSEG #nf #EI64_V
- : VIndexedSegmentLoad<!add(nf, -1), MOPLDIndexedOrder, LSWidth64,
- "vloxseg" #nf #"ei64.v">,
- VLXSEGSched<nf, 64, "O", UpperBoundLMUL>;
- def VSUXSEG #nf #EI64_V
- : VIndexedSegmentStore<!add(nf, -1), MOPSTIndexedUnord, LSWidth64,
- "vsuxseg" #nf #"ei64.v">,
- VSXSEGSched<nf, 64, "U", UpperBoundLMUL>;
- def VSOXSEG #nf #EI64_V
- : VIndexedSegmentStore<!add(nf, -1), MOPSTIndexedOrder, LSWidth64,
- "vsoxseg" #nf #"ei64.v">,
- VSXSEGSched<nf, 64, "O", UpperBoundLMUL>;
- }
- } // Predicates = [HasVInstructionsI64, IsRV64]
- include "RISCVInstrInfoVPseudos.td"
|