LLVM 19.0.0git
XtensaUtils.h
Go to the documentation of this file.
1//===--- XtensaUtils.h ---- Xtensa Utility Functions ------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file contains miscellaneous utility functions.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_LIB_TARGET_XTENSA_XTENSAUTILS_H
14#define LLVM_LIB_TARGET_XTENSA_XTENSAUTILS_H
15
16#include "XtensaInstrInfo.h"
18
19namespace llvm {
20// Check address offset for load/store instructions.
21// The offset should be multiple of scale.
22bool isValidAddrOffset(int Scale, int64_t OffsetVal);
23
24// Check address offset for load/store instructions.
25bool isValidAddrOffset(MachineInstr &MI, int64_t Offset);
26} // namespace llvm
27#endif // LLVM_LIB_TARGET_XTENSA_XTENSAUTILS_H
IRTranslator LLVM IR MI
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
@ Offset
Definition: DWP.cpp:456
bool isValidAddrOffset(int Scale, int64_t OffsetVal)
Definition: XtensaUtils.cpp:17