mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
Add helpers for getting scalar sizes of vector value types.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203526 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7a37166a7a
commit
67ad03b1ef
@ -145,6 +145,10 @@ public:
|
||||
return getValueType().getSizeInBits();
|
||||
}
|
||||
|
||||
unsigned getScalarValueSizeInBits() const {
|
||||
return getValueType().getScalarType().getSizeInBits();
|
||||
}
|
||||
|
||||
// Forwarding methods - These forward to the corresponding methods in SDNode.
|
||||
inline unsigned getOpcode() const;
|
||||
inline unsigned getNumOperands() const;
|
||||
|
@ -434,6 +434,10 @@ namespace llvm {
|
||||
}
|
||||
}
|
||||
|
||||
unsigned getScalarSizeInBits() const {
|
||||
return getScalarType().getSizeInBits();
|
||||
}
|
||||
|
||||
/// getStoreSize - Return the number of bytes overwritten by a store
|
||||
/// of the specified value type.
|
||||
unsigned getStoreSize() const {
|
||||
@ -788,6 +792,10 @@ namespace llvm {
|
||||
return getExtendedSizeInBits();
|
||||
}
|
||||
|
||||
unsigned getScalarSizeInBits() const {
|
||||
return getScalarType().getSizeInBits();
|
||||
}
|
||||
|
||||
/// getStoreSize - Return the number of bytes overwritten by a store
|
||||
/// of the specified value type.
|
||||
unsigned getStoreSize() const {
|
||||
|
Loading…
x
Reference in New Issue
Block a user