mirror of
https://github.com/intel/llvm.git
synced 2026-01-29 21:26:59 +08:00
t.c:3322:5: warning: cannot codegen this yet
__asm__ ("bswap %0" : "+r" (_data));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
instead of:
Unimplemented stmt!
(AsmStmt 0x80eaa0 <t.c:3331:5, line:3334:28>)
llvm-svn: 44501
48 lines
1.5 KiB
C++
48 lines
1.5 KiB
C++
//===--- ModuleBuilder.cpp - Emit LLVM Code from ASTs ---------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file was developed by Chris Lattner and is distributed under
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This builds an AST and converts it to LLVM Code.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "clang/CodeGen/ModuleBuilder.h"
|
|
#include "CodeGenModule.h"
|
|
using namespace clang;
|
|
|
|
|
|
/// Init - Create an ModuleBuilder with the specified ASTContext.
|
|
clang::CodeGen::CodeGenModule *
|
|
clang::CodeGen::Init(ASTContext &Context, const LangOptions &Features,
|
|
llvm::Module &M, const llvm::TargetData &TD,
|
|
Diagnostic &Diags) {
|
|
return new CodeGenModule(Context, Features, M, TD, Diags);
|
|
}
|
|
|
|
void clang::CodeGen::Terminate(CodeGenModule *B) {
|
|
delete B;
|
|
}
|
|
|
|
/// CodeGenFunction - Convert the AST node for a FunctionDecl into LLVM.
|
|
///
|
|
void clang::CodeGen::CodeGenFunction(CodeGenModule *B, FunctionDecl *D) {
|
|
B->EmitFunction(D);
|
|
}
|
|
|
|
/// CodeGenGlobalVar - Emit the specified global variable to LLVM.
|
|
void clang::CodeGen::CodeGenGlobalVar(CodeGenModule *Builder, FileVarDecl *D) {
|
|
Builder->EmitGlobalVarDeclarator(D);
|
|
}
|
|
|
|
|
|
/// PrintStats - Emit statistic information to stderr.
|
|
///
|
|
void clang::CodeGen::PrintStats(CodeGenModule *B) {
|
|
B->PrintStats();
|
|
}
|