Lines Matching defs:code
2 // Use of this source code is governed by a BSD-style license that can be
58 // compatible with int, which has caused code-generation bugs.
70 // code generated for some assembly instructions (because they boil down
71 // to a few constants). If this is a problem, we could change the code
74 // and best performance in optimized code.
100 explicit constexpr Register(int code) : RegisterBase(code) {}
136 explicit constexpr MSARegister(int code) : RegisterBase(code) {}
156 DCHECK_EQ(code() % 2, 0); // Specified Double reg must be even.
157 return FPURegister::from_code(code());
162 DCHECK_EQ(code() % 2, 0); // Specified Double reg must be even.
163 return FPURegister::from_code(code() + 1);
166 MSARegister toW() const { return MSARegister::from_code(code()); }
170 explicit constexpr FPURegister(int code) : RegisterBase(code) {}
230 int code() const {
255 int code() const {