Home
last modified time | relevance | path

Searched refs:smp (Results 1 – 13 of 13) sorted by relevance

/art/runtime/arch/arm64/
Dinstruction_set_features_arm64.cc29 const bool smp = true; // Conservative default. in FromVariant() local
55 return new Arm64InstructionSetFeatures(smp, needs_a53_835769_fix, needs_a53_843419_fix); in FromVariant()
59 bool smp = (bitmap & kSmpBitfield) != 0; in FromBitmap() local
61 return new Arm64InstructionSetFeatures(smp, is_a53, is_a53); in FromBitmap()
65 const bool smp = true; in FromCppDefines() local
67 return new Arm64InstructionSetFeatures(smp, is_a53, is_a53); in FromCppDefines()
73 bool smp = false; in FromCpuInfo() local
84 smp = true; in FromCpuInfo()
92 return new Arm64InstructionSetFeatures(smp, is_a53, is_a53); in FromCpuInfo()
96 bool smp = sysconf(_SC_NPROCESSORS_CONF) > 1; in FromHwcap() local
[all …]
Dinstruction_set_features_arm64.h82 AddFeaturesFromSplitString(const bool smp, const std::vector<std::string>& features,
86 explicit Arm64InstructionSetFeatures(bool smp, in Arm64InstructionSetFeatures() argument
89 : InstructionSetFeatures(smp), in Arm64InstructionSetFeatures()
/art/runtime/arch/mips64/
Dinstruction_set_features_mips64.cc32 bool smp = true; // Conservative default. in FromVariant() local
33 return new Mips64InstructionSetFeatures(smp); in FromVariant()
37 bool smp = (bitmap & kSmpBitfield) != 0; in FromBitmap() local
38 return new Mips64InstructionSetFeatures(smp); in FromBitmap()
42 const bool smp = true; in FromCppDefines() local
44 return new Mips64InstructionSetFeatures(smp); in FromCppDefines()
50 bool smp = false; in FromCpuInfo() local
60 smp = true; in FromCpuInfo()
68 return new Mips64InstructionSetFeatures(smp); in FromCpuInfo()
103 const bool smp, const std::vector<std::string>& features, std::string* error_msg) const { in AddFeaturesFromSplitString() argument
[all …]
Dinstruction_set_features_mips64.h63 AddFeaturesFromSplitString(const bool smp, const std::vector<std::string>& features,
67 explicit Mips64InstructionSetFeatures(bool smp) : InstructionSetFeatures(smp) { in Mips64InstructionSetFeatures() argument
/art/runtime/arch/arm/
Dinstruction_set_features_arm.cc40 const bool smp = true; in FromVariant() local
100 return new ArmInstructionSetFeatures(smp, has_div, has_lpae); in FromVariant()
104 bool smp = (bitmap & kSmpBitfield) != 0; in FromBitmap() local
107 return new ArmInstructionSetFeatures(smp, has_div, has_atomic_ldrd_strd); in FromBitmap()
111 const bool smp = true; in FromCppDefines() local
122 return new ArmInstructionSetFeatures(smp, has_div, has_lpae); in FromCppDefines()
128 bool smp = false; in FromCpuInfo() local
152 smp = true; in FromCpuInfo()
160 return new ArmInstructionSetFeatures(smp, has_div, has_lpae); in FromCpuInfo()
164 bool smp = sysconf(_SC_NPROCESSORS_CONF) > 1; in FromHwcap() local
[all …]
Dinstruction_set_features_arm.h75 AddFeaturesFromSplitString(const bool smp, const std::vector<std::string>& features,
79 ArmInstructionSetFeatures(bool smp, bool has_div, bool has_atomic_ldrd_strd) in ArmInstructionSetFeatures() argument
80 : InstructionSetFeatures(smp), in ArmInstructionSetFeatures()
/art/runtime/arch/x86/
Dinstruction_set_features_x86.cc51 bool smp = true; // Conservative default. in FromVariant() local
70 return new X86_64InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, in FromVariant()
73 return new X86InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, in FromVariant()
80 bool smp = (bitmap & kSmpBitfield) != 0; in FromBitmap() local
87 …return new X86_64InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, has_AVX2); in FromBitmap()
89 return new X86InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, in FromBitmap()
95 const bool smp = true; in FromCppDefines() local
128 …return new X86_64InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, has_AVX2); in FromCppDefines()
130 return new X86InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, in FromCppDefines()
138 bool smp = false; in FromCpuInfo() local
[all …]
Dinstruction_set_features_x86.h66 AddFeaturesFromSplitString(const bool smp, const std::vector<std::string>& features, in AddFeaturesFromSplitString() argument
68 return AddFeaturesFromSplitString(smp, features, false, error_msg); in AddFeaturesFromSplitString()
72 AddFeaturesFromSplitString(const bool smp, const std::vector<std::string>& features,
75 X86InstructionSetFeatures(bool smp, bool has_SSSE3, bool has_SSE4_1, bool has_SSE4_2, in X86InstructionSetFeatures() argument
77 : InstructionSetFeatures(smp), has_SSSE3_(has_SSSE3), has_SSE4_1_(has_SSE4_1), in X86InstructionSetFeatures()
/art/runtime/arch/mips/
Dinstruction_set_features_mips.cc69 bool smp = true; // Conservative default. in FromVariant() local
99 return new MipsInstructionSetFeatures(smp, fpu_32bit, mips_isa_gte2, r6); in FromVariant()
103 bool smp = (bitmap & kSmpBitfield) != 0; in FromBitmap() local
107 return new MipsInstructionSetFeatures(smp, fpu_32bit, mips_isa_gte2, r6); in FromBitmap()
112 const bool smp = true; in FromCppDefines() local
119 return new MipsInstructionSetFeatures(smp, fpu_32bit, mips_isa_gte2, r6); in FromCppDefines()
126 bool smp = false; in FromCpuInfo() local
141 smp = true; in FromCpuInfo()
149 return new MipsInstructionSetFeatures(smp, fpu_32bit, mips_isa_gte2, r6); in FromCpuInfo()
204 const bool smp, const std::vector<std::string>& features, std::string* error_msg) const { in AddFeaturesFromSplitString() argument
[all …]
Dinstruction_set_features_mips.h79 AddFeaturesFromSplitString(const bool smp, const std::vector<std::string>& features,
83 MipsInstructionSetFeatures(bool smp, bool fpu_32bit, bool mips_isa_gte2, bool r6) in MipsInstructionSetFeatures() argument
84 : InstructionSetFeatures(smp), fpu_32bit_(fpu_32bit), mips_isa_gte2_(mips_isa_gte2), r6_(r6) in MipsInstructionSetFeatures()
/art/runtime/arch/x86_64/
Dinstruction_set_features_x86_64.h70 AddFeaturesFromSplitString(const bool smp, const std::vector<std::string>& features, in AddFeaturesFromSplitString() argument
72 return X86InstructionSetFeatures::AddFeaturesFromSplitString(smp, features, true, error_msg); in AddFeaturesFromSplitString()
76 X86_64InstructionSetFeatures(bool smp, bool has_SSSE3, bool has_SSE4_1, bool has_SSE4_2, in X86_64InstructionSetFeatures() argument
78 : X86InstructionSetFeatures(smp, has_SSSE3, has_SSE4_1, has_SSE4_2, has_AVX, has_AVX2) { in X86_64InstructionSetFeatures()
/art/runtime/arch/
Dinstruction_set_features.h103 explicit InstructionSetFeatures(bool smp) : smp_(smp) {} in InstructionSetFeatures() argument
111 AddFeaturesFromSplitString(bool smp, const std::vector<std::string>& features,
Dinstruction_set_features.cc220 bool smp = smp_; in AddFeaturesFromString() local
239 smp = true; in AddFeaturesFromString()
242 smp = false; in AddFeaturesFromString()
258 return AddFeaturesFromSplitString(smp, features, error_msg); in AddFeaturesFromString()