Home
last modified time | relevance | path

Searched refs:GetInstructionSet (Results 26 – 50 of 62) sorted by relevance

123

/art/compiler/optimizing/
Dscheduler_test.cc60 if (CanExecute(test_config.GetInstructionSet())) { in GetTargetConfigs()
188 HInstructionScheduling scheduling(graph, target_config.GetInstructionSet()); in CompileWithRandomSchedulerAndRun()
192 CommonCompilerTest::CreateCompilerOptions(target_config.GetInstructionSet(), "default"); in CompileWithRandomSchedulerAndRun()
Dcode_generator.h204 + static_cast<size_t>(InstructionSetPointerSize(GetInstructionSet())) // Art method in GetStackSlotOfParameter()
276 virtual InstructionSet GetInstructionSet() const = 0;
750 InstructionSet instruction_set = GetInstructionSet(); in CallPushesPC()
Doptimization.cc270 graph, codegen->GetCompilerOptions().GetInstructionSet(), codegen, pass_name); in ConstructOptimizations()
Dcode_generator.cc374 code_generation_data_ = CodeGenerationData::Create(graph_->GetArenaStack(), GetInstructionSet()); in InitializeCodeGenerationData()
658 PointerSize pointer_size = InstructionSetPointerSize(GetInstructionSet()); in CreateStringBuilderAppendLocations()
982 switch (compiler_options.GetInstructionSet()) { in Create()
Dcode_generator_x86.h426 InstructionSet GetInstructionSet() const override { in GetInstructionSet() function
Dcode_generator_x86_64.h409 InstructionSet GetInstructionSet() const override { in GetInstructionSet() function
Dloop_optimization.cc490 ? compiler_options_->GetInstructionSet() in HLoopOptimization()
1543 InstructionSet isa = compiler_options_->GetInstructionSet(); in GetVectorSizeInBytes()
1555 switch (compiler_options_->GetInstructionSet()) { in TrySetVectorType()
Dgraph_visualizer.cc199 codegen_.GetInstructionSet(), in HGraphVisualizerPrinter()
Dinliner.cc1245 DataType::Type type = Is64BitInstructionSet(graph_->GetInstructionSet()) in TryInlinePolymorphicCallToSameTarget()
2044 codegen_->GetCompilerOptions().GetInstructionSet(), in TryBuildAndInlineHelper()
/art/runtime/
Dsignal_catcher.cc129 os << "ABI: '" << GetInstructionSetString(runtime->GetInstructionSet()) << "'\n"; in HandleSigQuit()
Doat.cc161 InstructionSet OatHeader::GetInstructionSet() const { in GetInstructionSet() function in art::OatHeader
Druntime.h464 InstructionSet GetInstructionSet() const { in GetInstructionSet() function
/art/runtime/arch/
Darch_test.cc39 ASSERT_EQ(InstructionSet::kX86_64, Runtime::Current()->GetInstructionSet()); in FinalizeSetup()
/art/oatdump/
Doatdump.cc141 const InstructionSet isa = oat_file_->GetOatHeader().GetInstructionSet(); in Symbolize()
190 info.isa = oat_header.GetInstructionSet(); \ in Symbolize()
193 code_offset -= CompiledCode::CodeDelta(oat_header.GetInstructionSet()); \ in Symbolize()
312 info.isa = oat_header.GetInstructionSet(); in WalkOatMethod()
387 instruction_set_(oat_file_.GetOatHeader().GetInstructionSet()), in OatDumper()
407 InstructionSet GetInstructionSet() { in GetInstructionSet() function in art::OatDumper
427 os << oat_header.GetInstructionSet() << "\n\n"; in Dump()
431 InstructionSetFeatures::FromBitmap(oat_header.GetInstructionSet(), in Dump()
703 return oat_file_.GetOatHeader().GetInstructionSet(); in GetOatInstructionSet()
875 if (oat_file_.GetOatHeader().GetInstructionSet() == InstructionSet::kThumb2) { in AddOffsets()
[all …]
/art/compiler/driver/
Dcompiler_options.h280 InstructionSet GetInstructionSet() const { in GetInstructionSet() function
/art/dex2oat/linker/
Doat_writer.cc759 InstructionSet instruction_set = compiler_options_.GetInstructionSet(); in PrepareLayout()
760 CHECK_EQ(instruction_set, oat_header_->GetInstructionSet()); in PrepareLayout()
1391 info.isa = compiled_method->GetInstructionSet(); in VisitMethod()
1456 GetInstructionSetAlignment(compiled_method->GetInstructionSet())); in NewQuickCodeOffset()
1526 pointer_size_(GetInstructionSetPointerSize(writer_->compiler_options_.GetInstructionSet())), in InitImageMethodVisitor()
1668 pointer_size_(GetInstructionSetPointerSize(writer_->compiler_options_.GetInstructionSet())), in WriteCodeMethodVisitor()
1750 GetInstructionSetAlignment(compiled_method->GetInstructionSet())); in VisitMethod()
2036 oat_header_.reset(OatHeader::Create(GetCompilerOptions().GetInstructionSet(), in InitOatHeader()
2141 PointerSize pointer_size = GetInstructionSetPointerSize(oat_header_->GetInstructionSet()); in InitIndexBssMappings()
2210 InstructionSet instruction_set = compiler_options_.GetInstructionSet(); in InitOatCode()
[all …]
Dimage_test.h285 MultiOatRelativePatcher patcher(compiler_options_->GetInstructionSet(), in DoCompile()
/art/compiler/jni/quick/
Djni_compiler.cc124 InstructionSet instruction_set = compiler_options.GetInstructionSet(); in ArtJniCompileMethodInternal()
799 if (Is64BitInstructionSet(compiler_options.GetInstructionSet())) { in ArtQuickJniCompileMethod()
/art/dex2oat/
Ddex2oat.cc1104 switch (compiler_options_->GetInstructionSet()) { in ProcessOptions()
1890 if (!class_loader_context_->OpenDexFiles(runtime_->GetInstructionSet(), in Setup()
2320 linker::MultiOatRelativePatcher patcher(compiler_options_->GetInstructionSet(), in WriteOutputFiles()
2798 GetInstructionSetString(compiler_options_->GetInstructionSet()))); in PrepareRuntimeOptions()
2835 runtime_->SetInstructionSet(compiler_options_->GetInstructionSet()); in CreateRuntime()
/art/dex2oat/dex/
Ddex_to_dex_compiler.cc611 InstructionSet instruction_set = driver_->GetCompilerOptions().GetInstructionSet(); in CompileMethod()
/art/dex2oat/driver/
Dcompiler_driver.cc288 if (Is64BitInstructionSet(GetCompilerOptions().GetInstructionSet())) { \
289 return CreateTrampoline64(GetCompilerOptions().GetInstructionSet(), \
293 return CreateTrampoline32(GetCompilerOptions().GetInstructionSet(), \
559 InstructionSetHasGenericJniStub(driver->GetCompilerOptions().GetInstructionSet())) { in CompileMethodQuick()
2156 manager_->GetCompiler()->GetCompilerOptions().GetInstructionSet(); in Visit()
/art/adbconnection/
Dadbconnection.cc482 const char* isa = GetInstructionSetString(art::Runtime::Current()->GetInstructionSet()); in SetupAdbConnection()
/art/runtime/jit/
Dprofile_saver.cc996 extra_flags = Is64BitInstructionSet(Runtime::Current()->GetInstructionSet()) in AnnotateSampleFlags()
/art/imgdiag/
Dimgdiag.cc923 PointerSize pointer_size = InstructionSetPointerSize(Runtime::Current()->GetInstructionSet()); in DumpOneArtMethod()
978 PointerSize pointer_size = InstructionSetPointerSize(Runtime::Current()->GetInstructionSet()); in ProcessRegion()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc244 InstructionSet isa = Runtime::Current()->GetInstructionSet(); in VMRuntime_vmInstructionSet()

123