mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165902 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
//===-- AttributesImpl.h - Attributes Internals -----------------*- C++ -*-===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file is distributed under the University of Illinois Open Source
 | 
						|
// License. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
//
 | 
						|
// This file defines various helper methods and classes used by LLVMContextImpl
 | 
						|
// for creating and managing attributes.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#ifndef LLVM_ATTRIBUTESIMPL_H
 | 
						|
#define LLVM_ATTRIBUTESIMPL_H
 | 
						|
 | 
						|
#include "llvm/ADT/FoldingSet.h"
 | 
						|
 | 
						|
namespace llvm {
 | 
						|
 | 
						|
class Attributes;
 | 
						|
 | 
						|
class AttributesImpl : public FoldingSetNode {
 | 
						|
  friend class Attributes;
 | 
						|
  uint64_t Bits;                // FIXME: We will be expanding this.
 | 
						|
 | 
						|
public:
 | 
						|
  AttributesImpl(uint64_t bits) : Bits(bits) {}
 | 
						|
 | 
						|
  bool hasAttribute(uint64_t A) const;
 | 
						|
 | 
						|
  bool hasAttributes() const;
 | 
						|
  bool hasAttributes(const Attributes &A) const;
 | 
						|
 | 
						|
  uint64_t getAlignment() const;
 | 
						|
  uint64_t getStackAlignment() const;
 | 
						|
 | 
						|
  static uint64_t getAttrMask(uint64_t Val);
 | 
						|
 | 
						|
  void Profile(FoldingSetNodeID &ID) const {
 | 
						|
    Profile(ID, Bits);
 | 
						|
  }
 | 
						|
  static void Profile(FoldingSetNodeID &ID, uint64_t Bits) {
 | 
						|
    ID.AddInteger(Bits);
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
} // end llvm namespace
 | 
						|
 | 
						|
#endif
 |