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"
41 const char *Compiler::GetErrorString(enum ErrorCode pErrCode) {
54 "TargetMachine. (missing call to Compiler::config()?)";
92 Compiler::Compiler() : mTarget(NULL), mEnableLTO(true) { function in class:Compiler
96 Compiler::Compiler(const CompilerConfig &pConfig) : mTarget(NULL), function in class:Compiler
110 enum Compiler::ErrorCode Compiler::config(const CompilerConfig &pConfig) {
145 Compiler
[all...]
H A DAndroid.mk27 Compiler.cpp \
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSCompilerDriver.cpp26 #include "bcc/Compiler.h"
218 Compiler::ErrorCode RSCompilerDriver::compileScript(RSScript& pScript, const char* pScriptName,
235 return Compiler::kErrInvalidSource;
250 return Compiler::kErrInvalidSource;
265 return Compiler::kErrInvalidSource;
276 return Compiler::kErrInvalidSource;
285 return Compiler::kErrInvalidSource;
289 Compiler::ErrorCode err = mCompiler.config(*mConfig);
290 if (err != Compiler::kSuccess) {
292 Compiler
[all...]
/frameworks/compile/libbcc/include/bcc/Renderscript/
H A DRSCompiler.h20 #include "bcc/Compiler.h"
24 class RSCompiler : public Compiler {
H A DRSCompilerDriver.h67 Compiler::ErrorCode compileScript(RSScript& pScript, const char* pScriptName,
/frameworks/compile/libbcc/include/bcc/
H A DCompiler.h41 // Design of Compiler
52 class Compiler { class in namespace:bcc
90 Compiler();
91 Compiler(const CompilerConfig &pConfig);
112 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_compat/
H A DMain.cpp31 #include <bcc/Compiler.h>
74 // Compiler Options
194 Compiler::ErrorCode result = compiler->config(*config);
196 if (result != Compiler::kSuccess) {
198 << Compiler::GetErrorString(result) << ")\n";
255 Compiler compiler;
/frameworks/compile/libbcc/tools/bcc/
H A DMain.cpp33 #include <bcc/Compiler.h>
95 // Compiler Options
164 Compiler::ErrorCode result = RSC->config(*config);
170 if (result != Compiler::kSuccess) {
172 << Compiler::GetErrorString(result) << ")\n";
/frameworks/compile/slang/
H A Dllvm-rs-cc.cpp184 std::unique_ptr<slang::SlangRS> Compiler(new slang::SlangRS());
185 Compiler->init(Opts.mBitWidth, DiagEngine, DiagClient);
186 int CompileFailed = !Compiler->compile(*IOFiles, *IOFiles32, DepFiles, Opts);
188 Compiler->reset(CompileSecondTimeFor64Bit);

Completed in 591 milliseconds