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

/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DGDBJIT.cpp21 // The LLVM Compiler Infrastructure
32 #include <llvm/Support/Compiler.h>
/frameworks/compile/libbcc/lib/Core/
H A DCompiler.cpp17 #include "bcc/Compiler.h"
39 const char *Compiler::GetErrorString(enum ErrorCode pErrCode) {
52 "TargetMachine. (missing call to Compiler::config()?)";
90 Compiler::Compiler() : mTarget(NULL), mEnableLTO(true) { function in class:Compiler
94 Compiler::Compiler(const CompilerConfig &pConfig) : mTarget(NULL), function in class:Compiler
108 enum Compiler::ErrorCode Compiler::config(const CompilerConfig &pConfig) {
146 Compiler
[all...]
H A DAndroid.mk27 Compiler.cpp \
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSCompilerDriver.cpp26 #include "bcc/Compiler.h"
197 Compiler::ErrorCode
214 return Compiler::kErrInvalidSource;
229 return Compiler::kErrInvalidSource;
244 return Compiler::kErrInvalidSource;
255 return Compiler::kErrInvalidSource;
264 return Compiler::kErrInvalidSource;
268 Compiler::ErrorCode err = mCompiler.config(*mConfig);
269 if (err != Compiler::kSuccess) {
271 Compiler
[all...]
/frameworks/compile/libbcc/include/bcc/Renderscript/
H A DRSCompiler.h20 #include "bcc/Compiler.h"
24 class RSCompiler : public Compiler {
H A DRSCompilerDriver.h56 Compiler::ErrorCode compileScript(RSScript &pScript,
/frameworks/compile/libbcc/include/bcc/
H A DCompiler.h36 // Design of Compiler
47 class Compiler { class in namespace:bcc
85 Compiler();
86 Compiler(const CompilerConfig &pConfig);
107 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/tools/bcc/
H A DMain.cpp32 #include <bcc/Compiler.h>
93 // Compiler Options
148 Compiler::ErrorCode result = RSC->config(*config);
150 if (result != Compiler::kSuccess) {
152 << Compiler::GetErrorString(result) << ")\n";
160 bool CompileScript(Compiler &pCompiler, Script &pScript,
172 Compiler::ErrorCode result = pCompiler.compile(pScript, output_file);
173 if (result != Compiler::kSuccess) {
175 << Compiler::GetErrorString(result) << ".)\n";
/frameworks/compile/libbcc/tools/bcc_compat/
H A DMain.cpp32 #include <bcc/Compiler.h>
79 // Compiler Options
208 Compiler::ErrorCode result = compiler->config(*config);
210 if (result != Compiler::kSuccess) {
212 << Compiler::GetErrorString(result) << ")\n";
269 Compiler compiler;
/frameworks/compile/slang/
H A Dllvm-rs-cc.cpp456 llvm::OwningPtr<slang::SlangRS> Compiler(new slang::SlangRS());
458 Compiler->init(Opts.mTriple, Opts.mCPU, Opts.mFeatures, &DiagEngine,
493 int CompileFailed = !Compiler->compile(IOFiles,
508 Compiler->reset();

Completed in 320 milliseconds