Home
last modified time | relevance | path

Searched refs:instruction_set_features_ (Results 1 – 12 of 12) sorted by relevance

/art/compiler/
Dcommon_compiler_test.cc132 compiler_options->instruction_set_features_ = in CreateCompilerOptions()
134 CHECK(compiler_options->instruction_set_features_ != nullptr) << error_msg; in CreateCompilerOptions()
185 CHECK(instruction_set_features_ != nullptr); in ApplyInstructionSet()
187 CHECK_EQ(InstructionSet::kArm, instruction_set_features_->GetInstructionSet()); in ApplyInstructionSet()
189 CHECK_EQ(instruction_set_, instruction_set_features_->GetInstructionSet()); in ApplyInstructionSet()
192 compiler_options_->instruction_set_features_ = in ApplyInstructionSet()
193 InstructionSetFeatures::FromBitmap(instruction_set_, instruction_set_features_->AsBitmap()); in ApplyInstructionSet()
194 CHECK(compiler_options_->instruction_set_features_->Equals(instruction_set_features_.get())); in ApplyInstructionSet()
201 instruction_set_features_ = in OverrideInstructionSetFeatures()
203 CHECK(instruction_set_features_ != nullptr) << error_msg; in OverrideInstructionSetFeatures()
Dcommon_compiler_test.h95 std::unique_ptr<const InstructionSetFeatures> instruction_set_features_
/art/dex2oat/linker/
Drelative_patcher_test.h44 instruction_set_features_(nullptr), in RelativePatcherTest()
54 instruction_set_features_ = in RelativePatcherTest()
56 CHECK(instruction_set_features_ != nullptr) << error_msg; in RelativePatcherTest()
84 instruction_set_features_.get(), in Reset()
386 std::unique_ptr<const InstructionSetFeatures> instruction_set_features_; variable
Delf_writer_quick.cc52 instruction_set_features_(features), in DebugInfoTask()
62 instruction_set_features_, in Run()
76 const InstructionSetFeatures* instruction_set_features_; member in art::linker::DebugInfoTask
Dmulti_oat_relative_patcher_test.cc130 : instruction_set_features_(InstructionSetFeatures::FromCppDefines()), in MultiOatRelativePatcherTest()
131 patcher_(kRuntimeISA, instruction_set_features_.get(), /* storage */ nullptr) { in MultiOatRelativePatcherTest()
137 std::unique_ptr<const InstructionSetFeatures> instruction_set_features_; member in art::linker::MultiOatRelativePatcherTest
/art/compiler/driver/
Dcompiler_options.h281 return instruction_set_features_.get(); in GetInstructionSetFeatures()
396 std::unique_ptr<const InstructionSetFeatures> instruction_set_features_; variable
Dcompiler_options.cc48 instruction_set_features_(nullptr), in CompilerOptions()
/art/compiler/jit/
Djit_compiler.cc112 compiler_options_->instruction_set_features_ = std::move(instruction_set_features); in ParseCompilerOptions()
/art/dex2oat/
Ddex2oat.cc605 compiler_options_->instruction_set_features_ = InstructionSetFeatures::FromVariant( in ParseInstructionSetVariant()
607 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetVariant()
613 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetFeatures()
614 compiler_options_->instruction_set_features_ = InstructionSetFeatures::FromVariant( in ParseInstructionSetFeatures()
616 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetFeatures()
621 compiler_options_->instruction_set_features_ = in ParseInstructionSetFeatures()
622 compiler_options_->instruction_set_features_->AddFeaturesFromString( in ParseInstructionSetFeatures()
624 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetFeatures()
792 if (compiler_options_->instruction_set_features_ == nullptr) { in ProcessOptions()
795 compiler_options_->instruction_set_features_ = InstructionSetFeatures::FromVariant( in ProcessOptions()
[all …]
/art/dex2oat/linker/arm64/
Drelative_patcher_arm64_test.cc183 compiler_options.instruction_set_features_ = in CompileThunk()
184 InstructionSetFeatures::FromBitmap(instruction_set_, instruction_set_features_->AsBitmap()); in CompileThunk()
185 CHECK(compiler_options.instruction_set_features_->Equals(instruction_set_features_.get())); in CompileThunk()
/art/compiler/utils/x86/
Dassembler_x86_test.cc184 : instruction_set_features_(X86InstructionSetFeatures::FromVariant("kabylake", nullptr)) {} in AssemblerX86AVXTest()
187 return new (allocator) x86::X86Assembler(allocator, instruction_set_features_.get()); in CreateAssembler()
190 std::unique_ptr<const X86InstructionSetFeatures> instruction_set_features_; member in art::AssemblerX86AVXTest
/art/compiler/utils/x86_64/
Dassembler_x86_64_test.cc340 : instruction_set_features_(X86_64InstructionSetFeatures::FromVariant("kabylake", nullptr)) {} in AssemblerX86_64AVXTest()
343 return new (allocator) x86_64::X86_64Assembler(allocator, instruction_set_features_.get()); in CreateAssembler()
346 std::unique_ptr<const X86_64InstructionSetFeatures> instruction_set_features_; member in art::AssemblerX86_64AVXTest