Home
last modified time | relevance | path

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

/art/compiler/
Dcommon_compiler_test.cc192 compiler_options->instruction_set_features_ = in CreateCompilerOptions()
194 CHECK(compiler_options->instruction_set_features_ != nullptr) << error_msg; in CreateCompilerOptions()
226 CHECK(instruction_set_features_ != nullptr); in ApplyInstructionSet()
228 CHECK_EQ(InstructionSet::kArm, instruction_set_features_->GetInstructionSet()); in ApplyInstructionSet()
230 CHECK_EQ(instruction_set_, instruction_set_features_->GetInstructionSet()); in ApplyInstructionSet()
233 compiler_options_->instruction_set_features_ = in ApplyInstructionSet()
234 InstructionSetFeatures::FromBitmap(instruction_set_, instruction_set_features_->AsBitmap()); in ApplyInstructionSet()
235 CHECK(compiler_options_->instruction_set_features_->Equals(instruction_set_features_.get())); in ApplyInstructionSet()
242 instruction_set_features_ = in OverrideInstructionSetFeatures()
244 CHECK(instruction_set_features_ != nullptr) << error_msg; in OverrideInstructionSetFeatures()
Dcommon_compiler_test.h84 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()
387 std::unique_ptr<const InstructionSetFeatures> instruction_set_features_; variable
Delf_writer_quick.cc51 instruction_set_features_(features), in DebugInfoTask()
61 instruction_set_features_, in Run()
75 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.h283 return instruction_set_features_.get(); in GetInstructionSetFeatures()
403 std::unique_ptr<const InstructionSetFeatures> instruction_set_features_; variable
Dcompiler_options.cc47 instruction_set_features_(nullptr), in CompilerOptions()
/art/dex2oat/
Ddex2oat.cc613 compiler_options_->instruction_set_features_ = InstructionSetFeatures::FromVariantAndHwcap( in ParseInstructionSetVariant()
616 compiler_options_->instruction_set_features_ = InstructionSetFeatures::FromVariant( in ParseInstructionSetVariant()
619 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetVariant()
625 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetFeatures()
626 compiler_options_->instruction_set_features_ = InstructionSetFeatures::FromVariant( in ParseInstructionSetFeatures()
628 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetFeatures()
633 compiler_options_->instruction_set_features_ = in ParseInstructionSetFeatures()
634 compiler_options_->instruction_set_features_->AddFeaturesFromString( in ParseInstructionSetFeatures()
636 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetFeatures()
817 if (compiler_options_->instruction_set_features_ == nullptr) { in ProcessOptions()
[all …]
/art/compiler/jit/
Djit_compiler.cc120 compiler_options_->instruction_set_features_ = std::move(instruction_set_features); in ParseCompilerOptions()
/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.cc185 : instruction_set_features_(X86InstructionSetFeatures::FromVariant("kabylake", nullptr)) {} in AssemblerX86AVXTest()
188 return new (allocator) x86::X86Assembler(allocator, instruction_set_features_.get()); in CreateAssembler()
191 std::unique_ptr<const X86InstructionSetFeatures> instruction_set_features_; member in art::AssemblerX86AVXTest
/art/compiler/utils/x86_64/
Dassembler_x86_64_test.cc341 : instruction_set_features_(X86_64InstructionSetFeatures::FromVariant("kabylake", nullptr)) {} in AssemblerX86_64AVXTest()
344 return new (allocator) x86_64::X86_64Assembler(allocator, instruction_set_features_.get()); in CreateAssembler()
347 std::unique_ptr<const X86_64InstructionSetFeatures> instruction_set_features_; member in art::AssemblerX86_64AVXTest