Home
last modified time | relevance | path

Searched refs:instruction_set_features (Results 1 – 10 of 10) sorted by relevance

/art/compiler/utils/
Djni_macro_assembler.cc52 const InstructionSetFeatures* instruction_set_features) { in Create() argument
54 UNUSED(instruction_set_features); in Create()
67 instruction_set_features != nullptr in Create()
68 ? instruction_set_features->AsMipsInstructionSetFeatures() in Create()
87 const InstructionSetFeatures* instruction_set_features) { in Create() argument
89 UNUSED(instruction_set_features); in Create()
101 instruction_set_features != nullptr in Create()
102 ? instruction_set_features->AsMips64InstructionSetFeatures() in Create()
Djni_macro_assembler.h52 const InstructionSetFeatures* instruction_set_features = nullptr);
/art/runtime/arch/
Dinstruction_set_features_test.cc43 std::unique_ptr<const InstructionSetFeatures> instruction_set_features( local
57 EXPECT_TRUE(property_features->HasAtLeast(instruction_set_features.get()))
59 << "\nFeatures from build: " << *instruction_set_features.get();
70 std::unique_ptr<const InstructionSetFeatures> instruction_set_features( local
94 EXPECT_TRUE(property_features->HasAtLeast(instruction_set_features.get()))
96 << "\nFeatures from build: " << *instruction_set_features.get();
108 std::unique_ptr<const InstructionSetFeatures> instruction_set_features( local
114 EXPECT_TRUE(cpuinfo_features->HasAtLeast(instruction_set_features.get()))
116 << "\nFeatures from build: " << *instruction_set_features.get();
142 std::unique_ptr<const InstructionSetFeatures> instruction_set_features( local
[all …]
/art/compiler/jit/
Djit_compiler.cc73 std::unique_ptr<const InstructionSetFeatures> instruction_set_features; in ParseCompilerOptions() local
80 instruction_set_features = InstructionSetFeatures::FromVariant( in ParseCompilerOptions()
82 if (instruction_set_features == nullptr) { in ParseCompilerOptions()
88 if (instruction_set_features == nullptr) { in ParseCompilerOptions()
89 instruction_set_features = InstructionSetFeatures::FromVariant( in ParseCompilerOptions()
91 if (instruction_set_features == nullptr) { in ParseCompilerOptions()
95 instruction_set_features = in ParseCompilerOptions()
96 instruction_set_features->AddFeaturesFromString(str, &error_msg); in ParseCompilerOptions()
97 if (instruction_set_features == nullptr) { in ParseCompilerOptions()
103 if (instruction_set_features == nullptr) { in ParseCompilerOptions()
[all …]
/art/runtime/
Doat.h53 const InstructionSetFeatures* instruction_set_features,
107 const InstructionSetFeatures* instruction_set_features,
Doat.cc49 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()
DAndroid.bp217 "arch/instruction_set_features.cc",
/art/compiler/jni/quick/
Djni_compiler.cc127 const InstructionSetFeatures* instruction_set_features = in ArtJniCompileMethodInternal() local
218 GetMacroAssembler<kPointerSize>(&allocator, instruction_set, instruction_set_features); in ArtJniCompileMethodInternal()
/art/compiler/utils/mips/
Dassembler_mips.h271 const MipsInstructionSetFeatures* instruction_set_features = nullptr)
283 has_msa_(instruction_set_features != nullptr ? instruction_set_features->HasMsa() : false), in Assembler()
284 isa_features_(instruction_set_features) { in Assembler()
/art/compiler/utils/mips64/
Dassembler_mips64.h422 const Mips64InstructionSetFeatures* instruction_set_features = nullptr)
432 has_msa_(instruction_set_features != nullptr ? instruction_set_features->HasMsa() : false) { in Assembler()