Searched defs:mips_isa_gte2 (Results 1 - 2 of 2) sorted by relevance

/art/runtime/arch/mips/
H A Dinstruction_set_features_mips.h93 MipsInstructionSetFeatures(bool fpu_32bit, bool mips_isa_gte2, bool r6, bool msa) argument
96 mips_isa_gte2_(mips_isa_gte2),
101 CHECK(mips_isa_gte2);
104 if (!mips_isa_gte2) {
H A Dinstruction_set_features_mips.cc49 static void GetFlagsFromCppDefined(bool* mips_isa_gte2, bool* r6, bool* fpu_32bit, bool* msa) { argument
52 *mips_isa_gte2 = true;
54 *mips_isa_gte2 = false;
78 bool mips_isa_gte2; local
81 GetFlagsFromCppDefined(&mips_isa_gte2, &r6, &fpu_32bit, &msa);
91 mips_isa_gte2 = (variant[kPrefixLength] >= '2');
101 mips_isa_gte2 = true;
106 return MipsFeaturesUniquePtr(new MipsInstructionSetFeatures(fpu_32bit, mips_isa_gte2, r6, msa));
111 bool mips_isa_gte2 = (bitmap & kIsaRevGte2Bitfield) != 0; local
114 return MipsFeaturesUniquePtr(new MipsInstructionSetFeatures(fpu_32bit, mips_isa_gte2, r
119 bool mips_isa_gte2; local
129 bool mips_isa_gte2; local
214 bool mips_isa_gte2 = mips_isa_gte2_; local
[all...]

Completed in 269 milliseconds