Searched refs:Compiler (Results 1 - 12 of 12) 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"
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/lib/AndroidBitcode/
H A DABCCompilerDriver.cpp74 Compiler::ErrorCode result = mCompiler.config(*mCompilerConfig);
76 if (result != Compiler::kSuccess) {
78 Compiler::GetErrorString(result));
163 Compiler::ErrorCode result = mCompiler.compile(pScript, pOutput);
164 if (result != Compiler::kSuccess) {
166 Compiler::GetErrorString(result));
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSCompilerDriver.cpp265 // Compiler need to re-config if it's haven't run the config() yet or the
268 Compiler::ErrorCode err = mCompiler.config(*mConfig);
269 if (err != Compiler::kSuccess) {
271 Compiler::GetErrorString(err));
281 Compiler::ErrorCode compile_result = mCompiler.compile(pScript, *output_file);
282 if (compile_result != Compiler::kSuccess) {
284 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/libbcc/tools/bcc_compat/
H A DMain.cpp32 #include <bcc/Compiler.h>
80 // Compiler Options
209 Compiler::ErrorCode result = compiler->config(*config);
211 if (result != Compiler::kSuccess) {
213 << Compiler::GetErrorString(result) << ")\n";
270 Compiler compiler;
/frameworks/compile/slang/
H A Dllvm-rs-cc.cpp455 llvm::OwningPtr<slang::SlangRS> Compiler(new slang::SlangRS());
457 Compiler->init(Opts.mTriple, Opts.mCPU, Opts.mFeatures, &DiagEngine,
492 int CompileFailed = !Compiler->compile(IOFiles,
507 Compiler->reset();

Completed in 496 milliseconds