mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-22 07:24:47 +00:00
test commit to use consistent comment notation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176353 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -84,7 +84,7 @@ public:
|
|||||||
/// @brief Is this a power-of-2 byte-width IntegerType ?
|
/// @brief Is this a power-of-2 byte-width IntegerType ?
|
||||||
bool isPowerOf2ByteWidth() const;
|
bool isPowerOf2ByteWidth() const;
|
||||||
|
|
||||||
// Methods for support type inquiry through isa, cast, and dyn_cast.
|
/// Methods for support type inquiry through isa, cast, and dyn_cast.
|
||||||
static inline bool classof(const Type *T) {
|
static inline bool classof(const Type *T) {
|
||||||
return T->getTypeID() == IntegerTyID;
|
return T->getTypeID() == IntegerTyID;
|
||||||
}
|
}
|
||||||
@@ -124,7 +124,7 @@ public:
|
|||||||
param_iterator param_begin() const { return ContainedTys + 1; }
|
param_iterator param_begin() const { return ContainedTys + 1; }
|
||||||
param_iterator param_end() const { return &ContainedTys[NumContainedTys]; }
|
param_iterator param_end() const { return &ContainedTys[NumContainedTys]; }
|
||||||
|
|
||||||
// Parameter type accessors.
|
/// Parameter type accessors.
|
||||||
Type *getParamType(unsigned i) const { return ContainedTys[i+1]; }
|
Type *getParamType(unsigned i) const { return ContainedTys[i+1]; }
|
||||||
|
|
||||||
/// getNumParams - Return the number of fixed parameters this function type
|
/// getNumParams - Return the number of fixed parameters this function type
|
||||||
@@ -132,7 +132,7 @@ public:
|
|||||||
///
|
///
|
||||||
unsigned getNumParams() const { return NumContainedTys - 1; }
|
unsigned getNumParams() const { return NumContainedTys - 1; }
|
||||||
|
|
||||||
// Methods for support type inquiry through isa, cast, and dyn_cast.
|
/// Methods for support type inquiry through isa, cast, and dyn_cast.
|
||||||
static inline bool classof(const Type *T) {
|
static inline bool classof(const Type *T) {
|
||||||
return T->getTypeID() == FunctionTyID;
|
return T->getTypeID() == FunctionTyID;
|
||||||
}
|
}
|
||||||
@@ -154,7 +154,7 @@ public:
|
|||||||
bool indexValid(const Value *V) const;
|
bool indexValid(const Value *V) const;
|
||||||
bool indexValid(unsigned Idx) const;
|
bool indexValid(unsigned Idx) const;
|
||||||
|
|
||||||
// Methods for support type inquiry through isa, cast, and dyn_cast.
|
/// Methods for support type inquiry through isa, cast, and dyn_cast.
|
||||||
static inline bool classof(const Type *T) {
|
static inline bool classof(const Type *T) {
|
||||||
return T->getTypeID() == ArrayTyID ||
|
return T->getTypeID() == ArrayTyID ||
|
||||||
T->getTypeID() == StructTyID ||
|
T->getTypeID() == StructTyID ||
|
||||||
@@ -190,7 +190,7 @@ class StructType : public CompositeType {
|
|||||||
StructType(LLVMContext &C)
|
StructType(LLVMContext &C)
|
||||||
: CompositeType(C, StructTyID), SymbolTableEntry(0) {}
|
: CompositeType(C, StructTyID), SymbolTableEntry(0) {}
|
||||||
enum {
|
enum {
|
||||||
// This is the contents of the SubClassData field.
|
/// This is the contents of the SubClassData field.
|
||||||
SCDB_HasBody = 1,
|
SCDB_HasBody = 1,
|
||||||
SCDB_Packed = 2,
|
SCDB_Packed = 2,
|
||||||
SCDB_IsLiteral = 4,
|
SCDB_IsLiteral = 4,
|
||||||
@@ -282,14 +282,14 @@ public:
|
|||||||
/// specified struct.
|
/// specified struct.
|
||||||
bool isLayoutIdentical(StructType *Other) const;
|
bool isLayoutIdentical(StructType *Other) const;
|
||||||
|
|
||||||
// Random access to the elements
|
/// Random access to the elements
|
||||||
unsigned getNumElements() const { return NumContainedTys; }
|
unsigned getNumElements() const { return NumContainedTys; }
|
||||||
Type *getElementType(unsigned N) const {
|
Type *getElementType(unsigned N) const {
|
||||||
assert(N < NumContainedTys && "Element number out of range!");
|
assert(N < NumContainedTys && "Element number out of range!");
|
||||||
return ContainedTys[N];
|
return ContainedTys[N];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Methods for support type inquiry through isa, cast, and dyn_cast.
|
/// Methods for support type inquiry through isa, cast, and dyn_cast.
|
||||||
static inline bool classof(const Type *T) {
|
static inline bool classof(const Type *T) {
|
||||||
return T->getTypeID() == StructTyID;
|
return T->getTypeID() == StructTyID;
|
||||||
}
|
}
|
||||||
@@ -318,7 +318,7 @@ protected:
|
|||||||
public:
|
public:
|
||||||
Type *getElementType() const { return ContainedTys[0]; }
|
Type *getElementType() const { return ContainedTys[0]; }
|
||||||
|
|
||||||
// Methods for support type inquiry through isa, cast, and dyn_cast.
|
/// Methods for support type inquiry through isa, cast, and dyn_cast.
|
||||||
static inline bool classof(const Type *T) {
|
static inline bool classof(const Type *T) {
|
||||||
return T->getTypeID() == ArrayTyID ||
|
return T->getTypeID() == ArrayTyID ||
|
||||||
T->getTypeID() == PointerTyID ||
|
T->getTypeID() == PointerTyID ||
|
||||||
@@ -347,7 +347,7 @@ public:
|
|||||||
|
|
||||||
uint64_t getNumElements() const { return NumElements; }
|
uint64_t getNumElements() const { return NumElements; }
|
||||||
|
|
||||||
// Methods for support type inquiry through isa, cast, and dyn_cast.
|
/// Methods for support type inquiry through isa, cast, and dyn_cast.
|
||||||
static inline bool classof(const Type *T) {
|
static inline bool classof(const Type *T) {
|
||||||
return T->getTypeID() == ArrayTyID;
|
return T->getTypeID() == ArrayTyID;
|
||||||
}
|
}
|
||||||
@@ -413,7 +413,7 @@ public:
|
|||||||
return NumElements * getElementType()->getPrimitiveSizeInBits();
|
return NumElements * getElementType()->getPrimitiveSizeInBits();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Methods for support type inquiry through isa, cast, and dyn_cast.
|
/// Methods for support type inquiry through isa, cast, and dyn_cast.
|
||||||
static inline bool classof(const Type *T) {
|
static inline bool classof(const Type *T) {
|
||||||
return T->getTypeID() == VectorTyID;
|
return T->getTypeID() == VectorTyID;
|
||||||
}
|
}
|
||||||
@@ -444,7 +444,7 @@ public:
|
|||||||
/// @brief Return the address space of the Pointer type.
|
/// @brief Return the address space of the Pointer type.
|
||||||
inline unsigned getAddressSpace() const { return getSubclassData(); }
|
inline unsigned getAddressSpace() const { return getSubclassData(); }
|
||||||
|
|
||||||
// Implement support type inquiry through isa, cast, and dyn_cast.
|
/// Implement support type inquiry through isa, cast, and dyn_cast.
|
||||||
static inline bool classof(const Type *T) {
|
static inline bool classof(const Type *T) {
|
||||||
return T->getTypeID() == PointerTyID;
|
return T->getTypeID() == PointerTyID;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user