Searched refs:instruction_set_features_ (Results 1 – 12 of 12) sorted by relevance
/art/compiler/ |
D | common_compiler_test.cc | 192 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()
|
D | common_compiler_test.h | 84 std::unique_ptr<const InstructionSetFeatures> instruction_set_features_
|
/art/dex2oat/linker/ |
D | relative_patcher_test.h | 44 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
|
D | elf_writer_quick.cc | 51 instruction_set_features_(features), in DebugInfoTask() 61 instruction_set_features_, in Run() 75 const InstructionSetFeatures* instruction_set_features_; member in art::linker::DebugInfoTask
|
D | multi_oat_relative_patcher_test.cc | 130 : 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/ |
D | compiler_options.h | 283 return instruction_set_features_.get(); in GetInstructionSetFeatures() 403 std::unique_ptr<const InstructionSetFeatures> instruction_set_features_; variable
|
D | compiler_options.cc | 47 instruction_set_features_(nullptr), in CompilerOptions()
|
/art/dex2oat/ |
D | dex2oat.cc | 613 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/ |
D | jit_compiler.cc | 120 compiler_options_->instruction_set_features_ = std::move(instruction_set_features); in ParseCompilerOptions()
|
/art/dex2oat/linker/arm64/ |
D | relative_patcher_arm64_test.cc | 183 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/ |
D | assembler_x86_test.cc | 185 : 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/ |
D | assembler_x86_64_test.cc | 341 : 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
|