Searched refs:Compiler (Results 1 - 23 of 23) sorted by relevance

/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DGDBJIT.cpp21 // The LLVM Compiler Infrastructure
32 #include <llvm/Support/Compiler.h>
/frameworks/compile/llvm-ndk-cc/
H A DCompiler.cpp1 #include "Compiler.h"
69 void Compiler::LLVMErrorHandler(void *UserData, const std::string &Message) {
75 void Compiler::createDiagnostic() {
84 void Compiler::createTarget(const std::string &Triple, const std::string &CPU,
103 void Compiler::createFileManager() {
108 void Compiler::createSourceManager() {
113 void Compiler::createPreprocessor() {
148 void Compiler::createASTContext() {
162 *Compiler::createBackend(const clang::CodeGenOptions& CodeGenOpts,
172 Compiler function in class:ndkpc::Compiler
[all...]
H A Dllvm-ndk-cc.cpp30 #include "Compiler.h"
90 ndkpc::Compiler Compiler; local
91 Compiler.init(std::string(),
95 Compiler.setInputSource(InputFilename);
96 Compiler.setIncludePaths(IncludePaths);
97 Compiler.setOutput(OutputFilename.c_str());
98 Compiler.setPreDefinedSymbol(PreDefinedSymbolMap);
100 int ret = Compiler.compile();
H A DBackend.cpp86 if ((mOT != Compiler::OT_Assembly) && (mOT != Compiler::OT_Object))
171 if (mOT == Compiler::OT_Object)
186 Compiler::OutputType OT)
275 case Compiler::OT_Assembly:
276 case Compiler::OT_Object: {
291 case Compiler::OT_LLVMAssembly: {
297 case Compiler::OT_Bitcode: {
303 case Compiler::OT_Nothing: {
H A DBackend.h11 #include "Compiler.h"
38 Compiler::OutputType OT);
78 Compiler::OutputType mOT;
H A DCompiler.h43 class Compiler { class in namespace:ndkpc
56 Compiler();
57 ~Compiler();
H A DAndroid.mk81 Compiler.cpp \
/frameworks/compile/libbcc/lib/Core/
H A DCompiler.cpp17 #include "bcc/Compiler.h"
38 const char *Compiler::GetErrorString(enum ErrorCode pErrCode) {
51 " (missing call to Compiler::config()?)",
95 Compiler::Compiler() : mTarget(NULL), mEnableLTO(true) { function in class:Compiler
99 Compiler::Compiler(const CompilerConfig &pConfig) : mTarget(NULL), function in class:Compiler
113 enum Compiler::ErrorCode Compiler::config(const CompilerConfig &pConfig) {
151 Compiler
[all...]
H A DAndroid.mk27 Compiler.cpp \
/frameworks/compile/libbcc/include/bcc/AndroidBitcode/
H A DABCCompiler.h20 #include "bcc/Compiler.h"
26 class ABCCompiler : public Compiler {
/frameworks/compile/libbcc/include/bcc/Renderscript/
H A DRSCompiler.h20 #include "bcc/Compiler.h"
24 class RSCompiler : public Compiler {
/frameworks/compile/libbcc/include/bcc/
H A DCompiler.h36 // Design of Compiler
47 class Compiler { class in namespace:bcc
86 Compiler();
87 Compiler(const CompilerConfig &pConfig);
103 virtual ~Compiler();
/frameworks/compile/libbcc/include/bcc/ExecutionEngine/
H A DGDBJIT.h21 // The LLVM Compiler Infrastructure
37 #include <llvm/Support/Compiler.h>
/frameworks/compile/libbcc/runtime/lib/
H A DMakefile.mk3 # The LLVM Compiler Infrastructure
/frameworks/compile/libbcc/runtime/lib/arm/
H A DMakefile.mk3 # The LLVM Compiler Infrastructure
/frameworks/compile/libbcc/runtime/lib/i386/
H A DMakefile.mk3 # The LLVM Compiler Infrastructure
/frameworks/compile/libbcc/runtime/lib/ppc/
H A DMakefile.mk3 # The LLVM Compiler Infrastructure
/frameworks/compile/libbcc/runtime/lib/x86_64/
H A DMakefile.mk3 # The LLVM Compiler Infrastructure
/frameworks/compile/libbcc/lib/AndroidBitcode/
H A DABCCompilerDriver.cpp75 Compiler::ErrorCode result = mCompiler.config(*mCompilerConfig);
77 if (result != Compiler::kSuccess) {
79 Compiler::GetErrorString(result));
159 Compiler::ErrorCode result = mCompiler.compile(pScript, pOutput);
160 if (result != Compiler::kSuccess) {
162 Compiler::GetErrorString(result));
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSCompilerDriver.cpp254 // Compiler need to re-config if it's haven't run the config() yet or the
257 Compiler::ErrorCode err = mCompiler.config(*mConfig);
258 if (err != Compiler::kSuccess) {
260 Compiler::GetErrorString(err));
270 Compiler::ErrorCode compile_result = mCompiler.compile(pScript, *output_file);
271 if (compile_result != Compiler::kSuccess) {
273 Compiler::GetErrorString(compile_result));
/frameworks/compile/libbcc/tools/bcc/
H A DMain.cpp32 #include <bcc/Compiler.h>
78 // Compiler Options
186 bool ConfigCompiler(Compiler &pCompiler) {
214 Compiler::ErrorCode result = pCompiler.config(*config);
218 if (result != Compiler::kSuccess) {
220 << Compiler::GetErrorString(result) << ")\n";
265 bool CompileScript(Compiler &pCompiler, Script &pScript,
277 Compiler::ErrorCode result = pCompiler.compile(pScript, output_file);
278 if (result != Compiler::kSuccess) {
280 << Compiler
[all...]
/frameworks/compile/slang/
H A Dllvm-rs-cc.cpp437 llvm::OwningPtr<slang::SlangRS> Compiler(new slang::SlangRS());
439 Compiler->init(Opts.mTriple, Opts.mCPU, Opts.mFeatures, &DiagEngine,
474 int CompileFailed = !Compiler->compile(IOFiles,
489 Compiler->reset();
/frameworks/compile/libbcc/runtime/BlocksRuntime/
H A Druntime.c487 // Old Compiler SPI point to release a copied Block used by the compiler in dispose helpers
520 #pragma mark Compiler SPI entry points

Completed in 276 milliseconds