HomeSort by: relevance | last modified time | path
    Searched refs:isLegalAddImmediate (Results 1 - 22 of 22) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVTargetTransformInfo.cpp 78 getTLI()->isLegalAddImmediate(Imm.getSExtValue())) {
RISCVISelLowering.h 285 bool isLegalAddImmediate(int64_t Imm) const override;
RISCVISelLowering.cpp 892 bool RISCVTargetLowering::isLegalAddImmediate(int64_t Imm) const {
5948 isLegalAddImmediate(ShiftedC1Int.getSExtValue()))
5954 isLegalAddImmediate(C1Int.getSExtValue()))
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
TargetTransformInfo.h 591 bool isLegalAddImmediate(int64_t Imm) const;
1495 virtual bool isLegalAddImmediate(int64_t Imm) = 0;
1843 bool isLegalAddImmediate(int64_t Imm) override {
1844 return Impl.isLegalAddImmediate(Imm);
TargetTransformInfoImpl.h 195 bool isLegalAddImmediate(int64_t Imm) const { return false; }
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZISelLowering.h 434 bool isLegalAddImmediate(int64_t Imm) const override;
SystemZISelLowering.cpp 850 bool SystemZTargetLowering::isLegalAddImmediate(int64_t Imm) const {
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
TargetTransformInfo.cpp 329 bool TargetTransformInfo::isLegalAddImmediate(int64_t Imm) const {
330 return TTIImpl->isLegalAddImmediate(Imm);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.h 594 bool isLegalAddImmediate(int64_t) const override;
AArch64ISelLowering.cpp 11680 bool AArch64TargetLowering::isLegalAddImmediate(int64_t Immed) const {
11698 return isLegalAddImmediate(Immed);
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMISelLowering.h 479 /// isLegalAddImmediate - Return true if the specified immediate is legal
483 bool isLegalAddImmediate(int64_t Imm) const override;
ARMLoadStoreOptimizer.cpp 530 if (Offset >= 0 && TL->isLegalAddImmediate(Offset)) {
720 if (!TL->isLegalAddImmediate(Offset))
ARMISelLowering.cpp 17778 /// isLegalAddImmediate - Return true if the specified immediate is a legal add
17782 bool ARMTargetLowering::isLegalAddImmediate(int64_t Imm) const {
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.h 957 /// isLegalAddImmediate - Return true if the specified immediate is legal
961 bool isLegalAddImmediate(int64_t Imm) const override;
PPCISelLowering.cpp 16135 bool PPCTargetLowering::isLegalAddImmediate(int64_t Imm) const {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
ConstantHoisting.cpp 699 TTI->isLegalAddImmediate(Diff.getSExtValue()) &&
LoopStrengthReduce.cpp 3637 TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
3653 TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
4258 if (!TTI.isLegalAddImmediate((uint64_t)NewF.UnfoldedOffset + Imm))
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
BasicTTIImpl.h 290 bool isLegalAddImmediate(int64_t imm) {
291 return getTLI()->isLegalAddImmediate(imm);
TargetLowering.h 2377 virtual bool isLegalAddImmediate(int64_t) const {
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.h 1176 bool isLegalAddImmediate(int64_t Imm) const override;
X86ISelLowering.cpp     [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 5119 !TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
5124 if (TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
15947 if (!TLI.isLegalAddImmediate(getOffsetFromBase()))

Completed in 158 milliseconds