Home
last modified time | relevance | path

Searched refs:IsStore (Results 1 – 24 of 24) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsNaClELFStreamer.cpp158 bool IsStore = false; in emitInstruction() local
160 &IsStore); in emitInstruction()
166 bool MaskAfter = IsSPFirstOperand && !IsStore; in emitInstruction()
211 bool *IsStore) { in isBasePlusOffsetMemoryAccess() argument
212 if (IsStore) in isBasePlusOffsetMemoryAccess()
213 *IsStore = false; in isBasePlusOffsetMemoryAccess()
243 if (IsStore) in isBasePlusOffsetMemoryAccess()
244 *IsStore = true; in isBasePlusOffsetMemoryAccess()
251 if (IsStore) in isBasePlusOffsetMemoryAccess()
252 *IsStore = true; in isBasePlusOffsetMemoryAccess()
H A DMipsMCNaCl.h21 bool *IsStore = nullptr);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCOptAddrMode.cpp395 bool IsStore = Ldst->mayStore(); in canHoistLoadStoreTo() local
402 if (IsStore && MI->mayLoad()) in canHoistLoadStoreTo()
423 bool IsStore = Ldst->mayStore(); in canSinkLoadStoreTo() local
433 if (IsStore && MI->mayLoad()) in canSinkLoadStoreTo()
444 bool IsStore = Ldst.mayStore(); in changeToAddrMode() local
454 if (IsStore) { in changeToAddrMode()
461 if (IsStore) in changeToAddrMode()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCVSXSwapRemoval.cpp75 unsigned int IsStore : 1; member
367 SwapVector[VecIdx].IsStore = 1; in gatherVectorInstructions()
373 SwapVector[VecIdx].IsStore = 1; in gatherVectorInstructions()
681 SwapVector[UseIdx].IsStore) { in recordUnoptimizableWebs()
698 !SwapVector[UseIdx].IsStore) { in recordUnoptimizableWebs()
703 if (SwapVector[UseOfUseIdx].IsStore) { in recordUnoptimizableWebs()
720 } else if (SwapVector[EntryIdx].IsStore && SwapVector[EntryIdx].IsSwap) { in recordUnoptimizableWebs()
728 SwapVector[DefIdx].IsStore) { in recordUnoptimizableWebs()
794 } else if (SwapVector[EntryIdx].IsStore && SwapVector[EntryIdx].IsSwap) { in markSwapsForRemoval()
1006 if (SwapVector[EntryIdx].IsStore) in dumpSwapVector()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kCollapseMOVEMPass.cpp204 bool IsStore = false) { in ProcessMI() argument
209 if (State.isStore() == IsStore && State.getBase() == Reg && in ProcessMI()
218 return ProcessMI(MBB, MI, State, Mask, Offset, Reg, IsStore); in ProcessMI()
227 IsStore ? State.setStore() : State.setLoad(); in ProcessMI()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXInstrFormats.td36 bit IsStore = false;
52 let TSFlags{6...6} = IsStore;
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetSelectionDAG.td795 bit IsStore = ?;
1099 let IsStore = true;
1104 let IsStore = true;
1111 let IsStore = true;
1116 let IsStore = true;
1122 let IsStore = true;
1128 let IsStore = true;
1134 let IsStore = true;
1139 let IsStore = true;
1144 let IsStore = true;
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIRegisterInfo.cpp949 bool IsStore = MI->mayStore(); in spillVGPRtoAGPR() local
953 unsigned Dst = IsStore ? Reg : ValueReg; in spillVGPRtoAGPR()
954 unsigned Src = IsStore ? ValueReg : Reg; in spillVGPRtoAGPR()
974 bool IsStore = MI->mayStore(); in buildMUBUFOffsetLoadStore() local
977 int LoadStoreOp = IsStore ? in buildMUBUFOffsetLoadStore()
1007 bool IsStore = TII->get(LoadStoreOp).mayStore(); in getFlatScratchSpillOpcode() local
1053 bool IsStore = Desc->mayStore(); in buildSpillLoadStore() local
1168 unsigned SrcDstRegState = getDefRegState(!IsStore); in buildSpillLoadStore()
1177 bool NeedSuperRegDef = e > 1 && IsStore && i == 0; in buildSpillLoadStore()
1232 if (IsStore) { in buildSpillLoadStore()
[all …]
H A DAMDGPUInstructions.td364 let IsStore = 1;
442 let IsStore = 1;
449 let IsStore = 1;
459 let IsStore = 1;
465 let IsStore = 1;
524 let IsStore = 1;
530 let IsStore = 1;
H A DSIInstrInfo.td448 let IsStore = 1;
454 let IsStore = 1;
460 let IsStore = 1;
466 let IsStore = 1;
472 let IsStore = 1;
479 let IsStore = 1;
485 let IsStore = 1;
491 let IsStore = 1;
499 let IsStore = 1;
506 let IsStore = 1;
[all …]
H A DAMDGPULegalizerInfo.cpp1096 const bool IsStore = Op == G_STORE; in AMDGPULegalizerInfo() local
1151 if (!IsStore) { in AMDGPULegalizerInfo()
/freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DX86FoldTablesEmitter.cpp104 bool IsStore = false; member in __anonf081826f0111::X86FoldTablesEmitter::X86FoldTableEntry
121 if (IsStore) in print()
479 Result.IsStore = true; in addEntryWithFlags()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DThumb2SizeReduction.cpp466 bool IsStore = Entry.WideOpc == ARM::t2STR_POST; in ReduceLoadStore() local
467 Register Rt = MI->getOperand(IsStore ? 1 : 0).getReg(); in ReduceLoadStore()
468 Register Rn = MI->getOperand(IsStore ? 0 : 1).getReg(); in ReduceLoadStore()
485 .addReg(Rt, IsStore ? 0 : RegState::Define); in ReduceLoadStore()
H A DARMLoadStoreOptimizer.cpp500 bool IsStore = in UpdateBaseRegUses() local
503 if (IsLoad || IsStore) { in UpdateBaseRegUses()
516 if (Offset >= 0 && !(IsStore && InstrSrcReg == Base)) in UpdateBaseRegUses()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A Darm_sve.td186 def IsStore : FlagType<0x00004000>;
549 def SVST1 : MInst<"svst1[_{d}]", "vPpd", "csilUcUsUiUlhfd", [IsStore], MemEltTyDefault, "aarch6…
550 def SVST1B_S : MInst<"svst1b[_{d}]", "vPAd", "sil", [IsStore], MemEltTyInt8, "aarch6…
551 def SVST1B_U : MInst<"svst1b[_{d}]", "vPEd", "UsUiUl", [IsStore], MemEltTyInt8, "aarch6…
552 def SVST1H_S : MInst<"svst1h[_{d}]", "vPBd", "il", [IsStore], MemEltTyInt16, "aarch6…
553 def SVST1H_U : MInst<"svst1h[_{d}]", "vPFd", "UiUl", [IsStore], MemEltTyInt16, "aarch6…
554 def SVST1W_S : MInst<"svst1w[_{d}]", "vPCd", "l", [IsStore], MemEltTyInt32, "aarch6…
555 def SVST1W_U : MInst<"svst1w[_{d}]", "vPGd", "Ul", [IsStore], MemEltTyInt32, "aarch6…
567 …def SVST1_BF : MInst<"svst1[_{d}]", "vPpd", "b", [IsStore], MemEltTyDefault, "aarch64_s…
568 …def SVST1_VNUM_BF : MInst<"svst1_vnum[_{d}]", "vPpld", "b", [IsStore], MemEltTyDefault, "aarch64_s…
[all …]
H A DTargetBuiltins.h246 bool isStore() const { return Flags & IsStore; } in isStore()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGAtomic.cpp1288 bool IsStore = E->getOp() == AtomicExpr::AO__c11_atomic_store || in EmitAtomicExpr() local
1309 if (IsStore) in EmitAtomicExpr()
1321 if (IsLoad || IsStore) in EmitAtomicExpr()
1347 if (!IsStore) in EmitAtomicExpr()
1351 if (!IsLoad && !IsStore) in EmitAtomicExpr()
1368 if (!IsStore) { in EmitAtomicExpr()
1386 if (!IsLoad && !IsStore) { in EmitAtomicExpr()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonExpandCondsets.cpp823 bool IsLoad = TheI.mayLoad(), IsStore = TheI.mayStore(); in canMoveMemTo() local
824 if (!IsLoad && !IsStore) in canMoveMemTo()
846 bool Conflict = (L && IsStore) || S; in canMoveMemTo()
H A DHexagonConstExtenders.cpp1146 bool IsStore = MI.mayStore(); in recordExtender() local
1155 if (IsLoad || IsStore) { in recordExtender()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp376 bool IsStore = Inst.getOperand(0).isReg() && Inst.getOperand(1).isReg(); in SimplifyShortMoveForm() local
377 unsigned AddrBase = IsStore; in SimplifyShortMoveForm()
378 unsigned RegOp = IsStore ? 0 : 5; in SimplifyShortMoveForm()
H A DX86TargetTransformInfo.cpp3667 bool IsStore = (Instruction::Store == Opcode); in getMaskedMemoryOpCost() local
3678 (IsStore && !isLegalMaskedStore(SrcVTy, Alignment))) { in getMaskedMemoryOpCost()
3689 getScalarizationOverhead(SrcVTy, DemandedElts, IsLoad, IsStore); in getMaskedMemoryOpCost()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp15302 bool IsStore = false; in performNEONPostLDSTCombine() local
15317 NumVecs = 2; IsStore = true; break; in performNEONPostLDSTCombine()
15319 NumVecs = 3; IsStore = true; break; in performNEONPostLDSTCombine()
15321 NumVecs = 4; IsStore = true; break; in performNEONPostLDSTCombine()
15329 NumVecs = 2; IsStore = true; break; in performNEONPostLDSTCombine()
15331 NumVecs = 3; IsStore = true; break; in performNEONPostLDSTCombine()
15333 NumVecs = 4; IsStore = true; break; in performNEONPostLDSTCombine()
15347 NumVecs = 2; IsStore = true; IsLaneOp = true; break; in performNEONPostLDSTCombine()
15355 if (IsStore) in performNEONPostLDSTCombine()
15374 if (IsLaneOp || IsStore) in performNEONPostLDSTCombine()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp906 bool IsStore = Opcode == TargetOpcode::G_STORE; in applyCombineIndexedLoadStore() local
926 if (IsStore) { in applyCombineIndexedLoadStore()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp2755 bool IsStore = I.getOpcode() == TargetOpcode::G_STORE; in select() local
2772 IsStore ? NewInst.addUse(ValReg) : NewInst.addDef(ValReg); in select()