Searched refs:instruction_set_features (Results 1 – 10 of 10) sorted by relevance
/art/runtime/arch/ |
D | instruction_set_features_test.cc | 50 std::unique_ptr<const InstructionSetFeatures> instruction_set_features( local 64 EXPECT_TRUE(property_features->HasAtLeast(instruction_set_features.get())) 66 << "\nFeatures from build: " << *instruction_set_features.get(); 83 std::unique_ptr<const InstructionSetFeatures> instruction_set_features( local 107 EXPECT_TRUE(property_features->HasAtLeast(instruction_set_features.get())) 109 << "\nFeatures from build: " << *instruction_set_features.get(); 121 std::unique_ptr<const InstructionSetFeatures> instruction_set_features( local 127 EXPECT_TRUE(cpuinfo_features->HasAtLeast(instruction_set_features.get())) 129 << "\nFeatures from build: " << *instruction_set_features.get(); 155 std::unique_ptr<const InstructionSetFeatures> instruction_set_features( local [all …]
|
/art/compiler/jit/ |
D | jit_compiler.cc | 77 std::unique_ptr<const InstructionSetFeatures> instruction_set_features; in ParseCompilerOptions() local 84 instruction_set_features = InstructionSetFeatures::FromVariant( in ParseCompilerOptions() 86 if (instruction_set_features == nullptr) { in ParseCompilerOptions() 92 if (instruction_set_features == nullptr) { in ParseCompilerOptions() 93 instruction_set_features = InstructionSetFeatures::FromVariant( in ParseCompilerOptions() 95 if (instruction_set_features == nullptr) { in ParseCompilerOptions() 99 instruction_set_features = in ParseCompilerOptions() 100 instruction_set_features->AddFeaturesFromString(str, &error_msg); in ParseCompilerOptions() 101 if (instruction_set_features == nullptr) { in ParseCompilerOptions() 107 if (instruction_set_features == nullptr) { in ParseCompilerOptions() [all …]
|
/art/compiler/utils/ |
D | jni_macro_assembler.cc | 46 const InstructionSetFeatures* instruction_set_features) { in Create() argument 48 UNUSED(instruction_set_features); in Create() 72 const InstructionSetFeatures* instruction_set_features) { in Create() argument 74 UNUSED(instruction_set_features); in Create()
|
D | jni_macro_assembler.h | 86 const InstructionSetFeatures* instruction_set_features = nullptr);
|
/art/runtime/ |
D | oat.h | 54 const InstructionSetFeatures* instruction_set_features, 112 const InstructionSetFeatures* instruction_set_features,
|
D | oat.cc | 49 const InstructionSetFeatures* instruction_set_features, in Create() argument 60 instruction_set_features, in Create() 66 const InstructionSetFeatures* instruction_set_features, in OatHeader() argument 71 instruction_set_features_bitmap_(instruction_set_features->AsBitmap()), in OatHeader()
|
D | Android.bp | 258 "arch/instruction_set_features.cc",
|
/art/compiler/utils/x86/ |
D | assembler_x86.h | 313 const X86InstructionSetFeatures* instruction_set_features = nullptr) 316 … has_AVX_(instruction_set_features != nullptr ? instruction_set_features->HasAVX() : false), in Assembler() 317 … has_AVX2_(instruction_set_features != nullptr ? instruction_set_features->HasAVX2() :false) {} in Assembler()
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.h | 358 const X86_64InstructionSetFeatures* instruction_set_features = nullptr) 361 has_AVX_(instruction_set_features != nullptr ? instruction_set_features->HasAVX(): false), in Assembler() 362 … has_AVX2_(instruction_set_features != nullptr ? instruction_set_features->HasAVX2() : false) {} in Assembler()
|
/art/compiler/jni/quick/ |
D | jni_compiler.cc | 125 const InstructionSetFeatures* instruction_set_features = in ArtJniCompileMethodInternal() local 216 GetMacroAssembler<kPointerSize>(&allocator, instruction_set, instruction_set_features); in ArtJniCompileMethodInternal()
|