Lines Matching refs:instruction_set_features
87 std::unique_ptr<const InstructionSetFeatures> instruction_set_features; in ParseCompilerOptions() local
94 instruction_set_features = InstructionSetFeatures::FromVariantAndHwcap( in ParseCompilerOptions()
96 if (instruction_set_features == nullptr) { in ParseCompilerOptions()
102 if (instruction_set_features == nullptr) { in ParseCompilerOptions()
103 instruction_set_features = InstructionSetFeatures::FromVariant( in ParseCompilerOptions()
105 if (instruction_set_features == nullptr) { in ParseCompilerOptions()
109 instruction_set_features = in ParseCompilerOptions()
110 instruction_set_features->AddFeaturesFromString(str, &error_msg); in ParseCompilerOptions()
111 if (instruction_set_features == nullptr) { in ParseCompilerOptions()
117 if (instruction_set_features == nullptr) { in ParseCompilerOptions()
120 instruction_set_features = InstructionSetFeatures::FromCppDefines(); in ParseCompilerOptions()
122 compiler_options_->instruction_set_features_ = std::move(instruction_set_features); in ParseCompilerOptions()