/aosp12/frameworks/compile/libbcc/lib/ |
H A D | RSCompilerDriver.cpp | 122 return Compiler::kErrInvalidSource; in compileScript() 145 return Compiler::kErrInvalidSource; in compileScript() 170 return Compiler::kErrPrepareOutput; in compileScript() 179 return Compiler::kErrInvalidSource; in compileScript() 184 if (err != Compiler::kSuccess) { in compileScript() 187 return Compiler::kErrInvalidSource; in compileScript() 205 Compiler::ErrorCode compile_result = in compileScript() 211 return Compiler::kErrInvalidSource; in compileScript() 215 return Compiler::kSuccess; in compileScript() 300 return status == Compiler::kSuccess; in build() [all …]
|
H A D | Compiler.cpp | 118 const char *Compiler::GetErrorString(enum ErrorCode pErrCode) { in GetErrorString() 161 Compiler::Compiler() : mTarget(nullptr), mEnableOpt(true) { in Compiler() function in Compiler 165 Compiler::Compiler(const CompilerConfig &pConfig) : mTarget(nullptr), in Compiler() function in Compiler 179 enum Compiler::ErrorCode Compiler::config(const CompilerConfig &pConfig) { in config() 214 Compiler::~Compiler() { in ~Compiler() 221 enum Compiler::ErrorCode Compiler::runPasses(Script &script, in runPasses() 301 enum Compiler::ErrorCode Compiler::compile(Script &script, in compile() 458 void Compiler::addInvokeHelperPass(llvm::legacy::PassManager &pPM) { in addInvokeHelperPass() 483 void Compiler::addInvariantPass(llvm::legacy::PassManager &pPM) { in addInvariantPass() 489 enum Compiler::ErrorCode Compiler::screenGlobalFunctions(Script &script) { in screenGlobalFunctions() [all …]
|
H A D | Android.bp | 33 "Compiler.cpp",
|
/aosp12/art/compiler/ |
H A D | compiler.cc | 30 Compiler* Compiler::Create(const CompilerOptions& compiler_options, in Create() 32 Compiler::Kind kind) { in Create() 48 bool Compiler::IsPathologicalCase(const dex::CodeItem& code_item, in IsPathologicalCase()
|
H A D | compiler.h | 48 class Compiler { 55 static Compiler* Create(const CompilerOptions& compiler_options, 92 virtual ~Compiler() {} in ~Compiler() 101 Compiler(const CompilerOptions& compiler_options, in Compiler() function 122 DISALLOW_COPY_AND_ASSIGN(Compiler);
|
H A D | common_compiler_test.h | 66 Compiler::Kind GetCompilerKind() const; 67 void SetCompilerKind(Compiler::Kind compiler_kind); 90 Compiler::Kind compiler_kind_ = Compiler::kOptimizing;
|
H A D | common_compiler_test.cc | 217 Compiler::Kind CommonCompilerTestImpl::GetCompilerKind() const { in GetCompilerKind() 221 void CommonCompilerTestImpl::SetCompilerKind(Compiler::Kind compiler_kind) { in SetCompilerKind() 241 std::unique_ptr<Compiler> compiler( in CompileMethod() 242 Compiler::Create(*compiler_options_, &storage, compiler_kind_)); in CompileMethod()
|
/aosp12/frameworks/compile/libbcc/include/bcc/ |
H A D | Compiler.h | 50 class Compiler { 92 Compiler(); 93 explicit Compiler(const CompilerConfig &pConfig); 110 ~Compiler();
|
H A D | RSCompilerDriver.h | 44 Compiler mCompiler; 73 Compiler::ErrorCode compileScript(Script& pScript, const char* pScriptName, 83 Compiler *getCompiler() { in getCompiler()
|
/aosp12/frameworks/compile/libbcc/tools/bcc_compat/ |
H A D | Main.cpp | 148 Compiler *compiler = pCompilerDriver.getCompiler(); in ConfigCompiler() 201 Compiler::ErrorCode result = compiler->config(*config); in ConfigCompiler() 203 if (result != Compiler::kSuccess) { in ConfigCompiler() 205 << Compiler::GetErrorString(result) << ")\n"; in ConfigCompiler() 262 Compiler compiler; in main()
|
/aosp12/art/compiler/optimizing/ |
H A D | optimizing_compiler.h | 26 class Compiler; variable 31 Compiler* CreateOptimizingCompiler(const CompilerOptions& compiler_options,
|
/aosp12/bionic/tools/versioner/src/ |
H A D | Driver.cpp | 251 clang::CompilerInstance Compiler; in compileHeader() local 253 Compiler.setInvocation(std::move(invocation)); in compileHeader() 254 Compiler.setDiagnostics(diags.get()); in compileHeader() 255 Compiler.createFileManager(vfs); in compileHeader() 258 if (!Compiler.ExecuteAction(versioner_action)) { in compileHeader()
|
/aosp12/art/dex2oat/driver/ |
H A D | compiler_driver.h | 88 Compiler::Kind compiler_kind, 119 Compiler* GetCompiler() const { in GetCompiler() 217 Compiler::Kind GetCompilerKind() { in GetCompilerKind() 302 std::unique_ptr<Compiler> compiler_; 303 Compiler::Kind compiler_kind_;
|
/aosp12/frameworks/compile/slang/ |
H A D | llvm-rs-cc.cpp | 298 std::unique_ptr<slang::Slang> Compiler( in main() local 301 !Compiler->compile(IOFiles32, IOFiles32, DepFiles32, Opts, *DiagOpts, &Reflection); in main() 312 std::unique_ptr<slang::Slang> Compiler( in main() local 315 !Compiler->compile(IOFiles64, IOFiles32, DepFiles64, Opts, *DiagOpts, &Reflection); in main()
|
/aosp12/art/compiler/jit/ |
H A D | jit_compiler.h | 28 class Compiler; variable 64 std::unique_ptr<Compiler> compiler_;
|
H A D | jit_compiler.cc | 158 Compiler::Create(*compiler_options_, /*storage=*/ nullptr, Compiler::kOptimizing)); in JitCompiler()
|
/aosp12/frameworks/compile/libbcc/tools/bcc/ |
H A D | Main.cpp | 234 Compiler *RSC = pRSCD.getCompiler(); in ConfigCompiler() 264 Compiler::ErrorCode result = RSC->config(*config); in ConfigCompiler() 278 if (result != Compiler::kSuccess) { in ConfigCompiler() 280 << Compiler::GetErrorString(result) << ")\n"; in ConfigCompiler()
|
/aosp12/art/test/968-default-partial-compile-gen/util-src/ |
H A D | generate_java.py | 57 class Compiler: class 131 Compiler(all_files, javac_exec, temp_dir, classes_dir).execute()
|
/aosp12/art/test/971-iface-super/util-src/ |
H A D | generate_java.py | 57 class Compiler: class 135 Compiler(all_files, javac_exec, temp_dir, classes_dir).execute()
|
/aosp12/art/dex2oat/ |
H A D | dex2oat_options.cc | 308 .WithType<Compiler::Kind>() in CreateDex2oatArgumentParser() 309 .WithValueMap({{"Quick", Compiler::Kind::kQuick}, in CreateDex2oatArgumentParser() 310 {"Optimizing", Compiler::Kind::kOptimizing}}) in CreateDex2oatArgumentParser()
|
/aosp12/frameworks/compile/libbcc/bcinfo/Wrap/ |
H A D | LLVMBuild.txt | 3 ; The LLVM Compiler Infrastructure
|
/aosp12/frameworks/compile/libbcc/bcinfo/BitReader_3_0/ |
H A D | LLVMBuild.txt | 3 ; The LLVM Compiler Infrastructure
|
/aosp12/frameworks/base/tools/processors/intdef_mappings/test/android/processor/ |
H A D | IntDefProcessorTest.kt | 21 import com.google.testing.compile.Compiler.javac
|
/aosp12/art/test/546-regression-simplify-catch/smali/ |
H A D | TestCase.smali | 18 # Test simplification of an empty, dead catch block. Compiler used to segfault
|
/aosp12/frameworks/base/startop/view_compiler/ |
H A D | README.md | 1 # View Compiler
|