Home | History | Annotate | Download | only in bcc

Lines Matching refs:Compiler

32 #include <bcc/Compiler.h>
93 // Compiler Options
132 llvm::errs() << "Out of memory when create the compiler configuration!\n";
148 Compiler::ErrorCode result = RSC->config(*config);
150 if (result != Compiler::kSuccess) {
151 llvm::errs() << "Failed to configure the compiler! (detail: "
152 << Compiler::GetErrorString(result) << ")\n";
160 bool CompileScript(Compiler &pCompiler, Script &pScript,
171 // Run the compiler.
172 Compiler::ErrorCode result = pCompiler.compile(pScript, output_file);
173 if (result != Compiler::kSuccess) {
175 << Compiler::GetErrorString(result) << ".)\n";
206 ALOGE("Failed to configure compiler");