mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31207 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			54 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| //===-- PPCTargetAsmInfo.cpp - PPC asm properties ---------------*- C++ -*-===//
 | |
| //
 | |
| //                     The LLVM Compiler Infrastructure
 | |
| //
 | |
| // This file was developed by James M. Laskey and is distributed under the
 | |
| // University of Illinois Open Source License. See LICENSE.TXT for details.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| //
 | |
| // This file contains the declarations of the DarwinTargetAsmInfo properties.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| 
 | |
| #include "PPCTargetAsmInfo.h"
 | |
| #include "PPCTargetMachine.h"
 | |
| #include "llvm/Function.h"
 | |
| using namespace llvm;
 | |
| 
 | |
| DarwinTargetAsmInfo::DarwinTargetAsmInfo(const PPCTargetMachine &TM) {
 | |
|   bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
 | |
| 
 | |
|   CommentString = ";";
 | |
|   GlobalPrefix = "_";
 | |
|   PrivateGlobalPrefix = "L";
 | |
|   ZeroDirective = "\t.space\t";
 | |
|   SetDirective = "\t.set";
 | |
|   Data64bitsDirective = isPPC64 ? "\t.quad\t" : 0;  
 | |
|   AlignmentIsInBytes = false;
 | |
|   ConstantPoolSection = "\t.const\t";
 | |
|   JumpTableDataSection = ".const";
 | |
|   CStringSection = "\t.cstring";
 | |
|   LCOMMDirective = "\t.lcomm\t";
 | |
|   StaticCtorsSection = ".mod_init_func";
 | |
|   StaticDtorsSection = ".mod_term_func";
 | |
|   UsedDirective = "\t.no_dead_strip\t";
 | |
|   InlineAsmStart = "# InlineAsm Start";
 | |
|   InlineAsmEnd = "# InlineAsm End";
 | |
|   
 | |
|   NeedsSet = true;
 | |
|   AddressSize = isPPC64 ? 8 : 4;
 | |
|   DwarfAbbrevSection = ".section __DWARF,__debug_abbrev,regular,debug";
 | |
|   DwarfInfoSection = ".section __DWARF,__debug_info,regular,debug";
 | |
|   DwarfLineSection = ".section __DWARF,__debug_line,regular,debug";
 | |
|   DwarfFrameSection = ".section __DWARF,__debug_frame,regular,debug";
 | |
|   DwarfPubNamesSection = ".section __DWARF,__debug_pubnames,regular,debug";
 | |
|   DwarfPubTypesSection = ".section __DWARF,__debug_pubtypes,regular,debug";
 | |
|   DwarfStrSection = ".section __DWARF,__debug_str,regular,debug";
 | |
|   DwarfLocSection = ".section __DWARF,__debug_loc,regular,debug";
 | |
|   DwarfARangesSection = ".section __DWARF,__debug_aranges,regular,debug";
 | |
|   DwarfRangesSection = ".section __DWARF,__debug_ranges,regular,debug";
 | |
|   DwarfMacInfoSection = ".section __DWARF,__debug_macinfo,regular,debug";
 | |
| }
 | |
| 
 |