Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dlocations.h83 static_assert((kInvalid & kLocationConstantMask) != kConstant, "TagError"); in Location()
84 static_assert((kUnallocated & kLocationConstantMask) != kConstant, "TagError"); in Location()
85 static_assert((kStackSlot & kLocationConstantMask) != kConstant, "TagError"); in Location()
86 static_assert((kDoubleStackSlot & kLocationConstantMask) != kConstant, "TagError"); in Location()
87 static_assert((kSIMDStackSlot & kLocationConstantMask) != kConstant, "TagError"); in Location()
88 static_assert((kRegister & kLocationConstantMask) != kConstant, "TagError"); in Location()
89 static_assert((kFpuRegister & kLocationConstantMask) != kConstant, "TagError"); in Location()
90 static_assert((kRegisterPair & kLocationConstantMask) != kConstant, "TagError"); in Location()
91 static_assert((kFpuRegisterPair & kLocationConstantMask) != kConstant, "TagError"); in Location()
92 static_assert((kConstant & kLocationConstantMask) == kConstant, "TagError"); in Location()
[all …]