Searched refs:instruction_set_features_ (Results 1 – 12 of 12) sorted by relevance
/art/compiler/ |
D | common_compiler_test.cc | 52 compiler_options->instruction_set_features_ = in CreateCompilerOptions() 54 CHECK(compiler_options->instruction_set_features_ != nullptr) << error_msg; in CreateCompilerOptions() 135 CHECK(instruction_set_features_ != nullptr); in ApplyInstructionSet() 137 CHECK_EQ(InstructionSet::kArm, instruction_set_features_->GetInstructionSet()); in ApplyInstructionSet() 139 CHECK_EQ(instruction_set_, instruction_set_features_->GetInstructionSet()); in ApplyInstructionSet() 142 compiler_options_->instruction_set_features_ = in ApplyInstructionSet() 143 InstructionSetFeatures::FromBitmap(instruction_set_, instruction_set_features_->AsBitmap()); in ApplyInstructionSet() 144 CHECK(compiler_options_->instruction_set_features_->Equals(instruction_set_features_.get())); in ApplyInstructionSet() 151 instruction_set_features_ = in OverrideInstructionSetFeatures() 153 CHECK(instruction_set_features_ != nullptr) << error_msg; in OverrideInstructionSetFeatures()
|
D | common_compiler_test.h | 92 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() 386 std::unique_ptr<const InstructionSetFeatures> instruction_set_features_; variable
|
D | elf_writer_quick.cc | 54 instruction_set_features_(features), in DebugInfoTask() 64 instruction_set_features_, in Run() 78 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 | 285 return instruction_set_features_.get(); in GetInstructionSetFeatures() 400 std::unique_ptr<const InstructionSetFeatures> instruction_set_features_; variable
|
D | compiler_options.cc | 48 instruction_set_features_(nullptr), in CompilerOptions()
|
/art/compiler/jit/ |
D | jit_compiler.cc | 112 compiler_options_->instruction_set_features_ = std::move(instruction_set_features); in ParseCompilerOptions()
|
/art/dex2oat/ |
D | dex2oat.cc | 882 compiler_options_->instruction_set_features_ = InstructionSetFeatures::FromVariant( in ParseInstructionSetVariant() 884 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetVariant() 890 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetFeatures() 891 compiler_options_->instruction_set_features_ = InstructionSetFeatures::FromVariant( in ParseInstructionSetFeatures() 893 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetFeatures() 898 compiler_options_->instruction_set_features_ = in ParseInstructionSetFeatures() 899 compiler_options_->instruction_set_features_->AddFeaturesFromString( in ParseInstructionSetFeatures() 901 if (compiler_options_->instruction_set_features_ == nullptr) { in ParseInstructionSetFeatures() 1068 if (compiler_options_->instruction_set_features_ == nullptr) { in ProcessOptions() 1071 compiler_options_->instruction_set_features_ = InstructionSetFeatures::FromVariant( in ProcessOptions() [all …]
|
/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 | 146 : instruction_set_features_(X86InstructionSetFeatures::FromVariant("kabylake", nullptr)) {} in AssemblerX86AVXTest() 149 return new (allocator) x86::X86Assembler(allocator, instruction_set_features_.get()); in CreateAssembler() 152 std::unique_ptr<const X86InstructionSetFeatures> instruction_set_features_; member in art::AssemblerX86AVXTest
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64_test.cc | 340 : 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
|