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@77835 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
//===-- XCoreTargetObjectFile.cpp - XCore object files --------------------===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file is distributed under the University of Illinois Open Source
 | 
						|
// License. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#include "XCoreTargetObjectFile.h"
 | 
						|
#include "XCoreSubtarget.h"
 | 
						|
#include "llvm/Target/TargetMachine.h"
 | 
						|
using namespace llvm;
 | 
						|
 | 
						|
 | 
						|
void XCoreTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM){
 | 
						|
  TargetLoweringObjectFileELF::Initialize(Ctx, TM);
 | 
						|
 | 
						|
  TextSection = getOrCreateSection("\t.text", true, 
 | 
						|
                                   SectionKind::getText());
 | 
						|
  DataSection = getOrCreateSection("\t.dp.data", false, 
 | 
						|
                                   SectionKind::getDataRel());
 | 
						|
  BSSSection = getOrCreateSection("\t.dp.bss", false, 
 | 
						|
                                  SectionKind::getBSS());
 | 
						|
  
 | 
						|
  // TLS globals are lowered in the backend to arrays indexed by the current
 | 
						|
  // thread id. After lowering they require no special handling by the linker
 | 
						|
  // and can be placed in the standard data / bss sections.
 | 
						|
  TLSDataSection = DataSection;
 | 
						|
  TLSBSSSection = BSSSection;
 | 
						|
  
 | 
						|
  if (TM.getSubtarget<XCoreSubtarget>().isXS1A())
 | 
						|
    // FIXME: Why is this writable ("datarel")???
 | 
						|
    ReadOnlySection = getOrCreateSection("\t.dp.rodata", false,
 | 
						|
                                        SectionKind::getDataRel());
 | 
						|
  else
 | 
						|
    ReadOnlySection = getOrCreateSection("\t.cp.rodata", false,
 | 
						|
                                       SectionKind::getReadOnly());
 | 
						|
}
 |