Lines Matching refs:kLocationConstantMask
84 static_assert((kInvalid & kLocationConstantMask) != kConstant, "TagError"); in Location()
85 static_assert((kUnallocated & kLocationConstantMask) != kConstant, "TagError"); in Location()
86 static_assert((kStackSlot & kLocationConstantMask) != kConstant, "TagError"); in Location()
87 static_assert((kDoubleStackSlot & kLocationConstantMask) != kConstant, "TagError"); in Location()
88 static_assert((kSIMDStackSlot & kLocationConstantMask) != kConstant, "TagError"); in Location()
89 static_assert((kRegister & kLocationConstantMask) != kConstant, "TagError"); in Location()
90 static_assert((kFpuRegister & kLocationConstantMask) != kConstant, "TagError"); in Location()
91 static_assert((kRegisterPair & kLocationConstantMask) != kConstant, "TagError"); in Location()
92 static_assert((kFpuRegisterPair & kLocationConstantMask) != kConstant, "TagError"); in Location()
93 static_assert((kConstant & kLocationConstantMask) == kConstant, "TagError"); in Location()
103 return (value_ & kLocationConstantMask) == kConstant; in IsConstant()
117 return reinterpret_cast<HConstant*>(value_ & ~kLocationConstantMask); in GetConstant()
422 static constexpr uintptr_t kLocationConstantMask = 0x3; variable