mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	* Make file description more readable * Make code layout more consistent, include comment in assert so it's visible during execution if it hits git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9430 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			59 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| //===-- IGNode.cpp --------------------------------------------------------===//
 | |
| // 
 | |
| //                     The LLVM Compiler Infrastructure
 | |
| //
 | |
| // This file was developed by the LLVM research group and is distributed under
 | |
| // the University of Illinois Open Source License. See LICENSE.TXT for details.
 | |
| // 
 | |
| //===----------------------------------------------------------------------===//
 | |
| // 
 | |
| // This file implements an Interference graph node for coloring-based register
 | |
| // allocation.
 | |
| // 
 | |
| //===----------------------------------------------------------------------===//
 | |
| 
 | |
| #include "IGNode.h"
 | |
| #include <algorithm>
 | |
| #include <iostream>
 | |
| 
 | |
| //-----------------------------------------------------------------------------
 | |
| // Sets this IGNode on stack and reduce the degree of neighbors  
 | |
| //-----------------------------------------------------------------------------
 | |
| 
 | |
| void IGNode::pushOnStack() {
 | |
|   OnStack = true; 
 | |
|   int neighs = AdjList.size();
 | |
| 
 | |
|   if (neighs < 0) {
 | |
|     std::cerr << "\nAdj List size = " << neighs;
 | |
|     assert(0 && "Invalid adj list size");
 | |
|   }
 | |
| 
 | |
|   for (int i=0; i < neighs; i++)
 | |
|     AdjList[i]->decCurDegree();
 | |
| }
 | |
|  
 | |
| //-----------------------------------------------------------------------------
 | |
| // Deletes an adjacency node. IGNodes are deleted when coalescing merges
 | |
| // two IGNodes together.
 | |
| //-----------------------------------------------------------------------------
 | |
| 
 | |
| void IGNode::delAdjIGNode(const IGNode *Node) {
 | |
|   std::vector<IGNode *>::iterator It=find(AdjList.begin(), AdjList.end(), Node);
 | |
|   assert(It != AdjList.end() && "The node must be there!");
 | |
|   AdjList.erase(It);
 | |
| }
 | |
| 
 | |
| //-----------------------------------------------------------------------------
 | |
| // Get the number of unique neighbors if these two nodes are merged
 | |
| //-----------------------------------------------------------------------------
 | |
| 
 | |
| unsigned
 | |
| IGNode::getCombinedDegree(const IGNode* otherNode) const {
 | |
|   std::vector<IGNode*> nbrs(AdjList);
 | |
|   nbrs.insert(nbrs.end(), otherNode->AdjList.begin(), otherNode->AdjList.end());
 | |
|   sort(nbrs.begin(), nbrs.end());
 | |
|   std::vector<IGNode*>::iterator new_end = unique(nbrs.begin(), nbrs.end());
 | |
|   return new_end - nbrs.begin();
 | |
| }
 |