forked from OSchip/llvm-project
				
			
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
| //===--- XCore.cpp - Implement XCore target feature support ---------------===//
 | |
| //
 | |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 | |
| // See https://llvm.org/LICENSE.txt for license information.
 | |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| //
 | |
| // This file implements XCore TargetInfo objects.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| 
 | |
| #include "XCore.h"
 | |
| #include "clang/Basic/Builtins.h"
 | |
| #include "clang/Basic/MacroBuilder.h"
 | |
| #include "clang/Basic/TargetBuiltins.h"
 | |
| 
 | |
| using namespace clang;
 | |
| using namespace clang::targets;
 | |
| 
 | |
| const Builtin::Info XCoreTargetInfo::BuiltinInfo[] = {
 | |
| #define BUILTIN(ID, TYPE, ATTRS)                                               \
 | |
|   {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, nullptr},
 | |
| #define LIBBUILTIN(ID, TYPE, ATTRS, HEADER)                                    \
 | |
|   {#ID, TYPE, ATTRS, HEADER, ALL_LANGUAGES, nullptr},
 | |
| #include "clang/Basic/BuiltinsXCore.def"
 | |
| };
 | |
| 
 | |
| void XCoreTargetInfo::getTargetDefines(const LangOptions &Opts,
 | |
|                                        MacroBuilder &Builder) const {
 | |
|   Builder.defineMacro("__XS1B__");
 | |
| }
 | |
| 
 | |
| ArrayRef<Builtin::Info> XCoreTargetInfo::getTargetBuiltins() const {
 | |
|   return llvm::makeArrayRef(BuiltinInfo, clang::XCore::LastTSBuiltin -
 | |
|                                              Builtin::FirstTSBuiltin);
 | |
| }
 |