mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-20 12:31:40 +00:00
remove Type::getVAArgsPromotedType, which is dead, and tidy up a bit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133190 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d61f84ee65
commit
ae5a0b5378
@ -103,7 +103,7 @@ public:
|
|||||||
/// that instance will be returned. Otherwise a new one will be created. Only
|
/// that instance will be returned. Otherwise a new one will be created. Only
|
||||||
/// one instance with a given NumBits value is ever created.
|
/// one instance with a given NumBits value is ever created.
|
||||||
/// @brief Get or create an IntegerType instance.
|
/// @brief Get or create an IntegerType instance.
|
||||||
static const IntegerType* get(LLVMContext &C, unsigned NumBits);
|
static const IntegerType *get(LLVMContext &C, unsigned NumBits);
|
||||||
|
|
||||||
/// @brief Get the number of bits in this IntegerType
|
/// @brief Get the number of bits in this IntegerType
|
||||||
unsigned getBitWidth() const { return getSubclassData(); }
|
unsigned getBitWidth() const { return getSubclassData(); }
|
||||||
|
@ -6,6 +6,11 @@
|
|||||||
// License. See LICENSE.TXT for details.
|
// License. See LICENSE.TXT for details.
|
||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// This file contains the declaration of the Type class. For more "Type"
|
||||||
|
// stuff, look in DerivedTypes.h.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#ifndef LLVM_TYPE_H
|
#ifndef LLVM_TYPE_H
|
||||||
#define LLVM_TYPE_H
|
#define LLVM_TYPE_H
|
||||||
@ -26,9 +31,6 @@ class raw_ostream;
|
|||||||
class Module;
|
class Module;
|
||||||
class LLVMContext;
|
class LLVMContext;
|
||||||
|
|
||||||
/// This file contains the declaration of the Type class. For more "Type" type
|
|
||||||
/// stuff, look in DerivedTypes.h.
|
|
||||||
///
|
|
||||||
/// The instances of the Type class are immutable: once they are created,
|
/// The instances of the Type class are immutable: once they are created,
|
||||||
/// they are never changed. Also note that only one instance of a particular
|
/// they are never changed. Also note that only one instance of a particular
|
||||||
/// type is ever created. Thus seeing if two types are equal is a matter of
|
/// type is ever created. Thus seeing if two types are equal is a matter of
|
||||||
@ -72,7 +74,7 @@ public:
|
|||||||
DoubleTyID, ///< 2: 64 bit floating point type
|
DoubleTyID, ///< 2: 64 bit floating point type
|
||||||
X86_FP80TyID, ///< 3: 80 bit floating point type (X87)
|
X86_FP80TyID, ///< 3: 80 bit floating point type (X87)
|
||||||
FP128TyID, ///< 4: 128 bit floating point type (112-bit mantissa)
|
FP128TyID, ///< 4: 128 bit floating point type (112-bit mantissa)
|
||||||
PPC_FP128TyID, ///< 5: 128 bit floating point type (two 64-bits)
|
PPC_FP128TyID, ///< 5: 128 bit floating point type (two 64-bits, PowerPC)
|
||||||
LabelTyID, ///< 6: Labels
|
LabelTyID, ///< 6: Labels
|
||||||
MetadataTyID, ///< 7: Metadata
|
MetadataTyID, ///< 7: Metadata
|
||||||
X86_MMXTyID, ///< 8: MMX vectors (64 bits)
|
X86_MMXTyID, ///< 8: MMX vectors (64 bits)
|
||||||
@ -359,11 +361,6 @@ public:
|
|||||||
return getForwardedTypeInternal();
|
return getForwardedTypeInternal();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// getVAArgsPromotedType - Return the type an argument of this type
|
|
||||||
/// will be promoted to if passed through a variable argument
|
|
||||||
/// function.
|
|
||||||
const Type *getVAArgsPromotedType(LLVMContext &C) const;
|
|
||||||
|
|
||||||
/// getScalarType - If this is a vector type, return the element type,
|
/// getScalarType - If this is a vector type, return the element type,
|
||||||
/// otherwise return this.
|
/// otherwise return this.
|
||||||
const Type *getScalarType() const;
|
const Type *getScalarType() const;
|
||||||
@ -506,7 +503,7 @@ inline void PATypeHandle::removeUser() {
|
|||||||
/// type we are pointing to is forwarding to a new type. If so, we drop our
|
/// type we are pointing to is forwarding to a new type. If so, we drop our
|
||||||
/// reference to the type.
|
/// reference to the type.
|
||||||
///
|
///
|
||||||
inline Type* PATypeHolder::get() const {
|
inline Type *PATypeHolder::get() const {
|
||||||
if (Ty == 0) return 0;
|
if (Ty == 0) return 0;
|
||||||
const Type *NewTy = Ty->getForwardedType();
|
const Type *NewTy = Ty->getForwardedType();
|
||||||
if (!NewTy) return const_cast<Type*>(Ty);
|
if (!NewTy) return const_cast<Type*>(Ty);
|
||||||
|
@ -116,15 +116,6 @@ const Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const Type *Type::getVAArgsPromotedType(LLVMContext &C) const {
|
|
||||||
if (ID == IntegerTyID && getSubclassData() < 32)
|
|
||||||
return Type::getInt32Ty(C);
|
|
||||||
else if (ID == FloatTyID)
|
|
||||||
return Type::getDoubleTy(C);
|
|
||||||
else
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// getScalarType - If this is a vector type, return the element type,
|
/// getScalarType - If this is a vector type, return the element type,
|
||||||
/// otherwise return this.
|
/// otherwise return this.
|
||||||
const Type *Type::getScalarType() const {
|
const Type *Type::getScalarType() const {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user