Lines Matching defs:const
44 int32_t GetPoolCheckpoint() const { return test.GetPoolCheckpoint(); }
45 int GetPoolSize() const { return test.GetPoolSize(); }
46 bool PoolIsEmpty() const { return test.PoolIsEmpty(); }
55 static const bool kCheckSimulatorTestResults = true;
57 static const bool kCheckSimulatorTestResults = false;
62 const uint32_t NoFlag = 0x0;
63 const uint32_t NFlag = 0x80000000;
64 const uint32_t ZFlag = 0x40000000;
65 const uint32_t CFlag = 0x20000000;
66 const uint32_t VFlag = 0x10000000;
67 const uint32_t NZFlag = NFlag | ZFlag;
68 const uint32_t NCFlag = NFlag | CFlag;
69 const uint32_t NVFlag = NFlag | VFlag;
70 const uint32_t ZCFlag = ZFlag | CFlag;
71 const uint32_t ZVFlag = ZFlag | VFlag;
72 const uint32_t CVFlag = CFlag | VFlag;
73 const uint32_t NZCFlag = NFlag | ZFlag | CFlag;
74 const uint32_t NZVFlag = NFlag | ZFlag | VFlag;
75 const uint32_t NCVFlag = NFlag | CFlag | VFlag;
76 const uint32_t ZCVFlag = ZFlag | CFlag | VFlag;
77 const uint32_t NZCVFlag = NFlag | ZFlag | CFlag | VFlag;
78 const uint32_t QFlag = 0x08000000;
80 const uint32_t GE0Flag = 0x00010000;
81 const uint32_t GE1Flag = 0x00020000;
82 const uint32_t GE2Flag = 0x00040000;
83 const uint32_t GE3Flag = 0x00080000;
84 const uint32_t GE01Flag = GE0Flag | GE1Flag;
85 const uint32_t GE02Flag = GE0Flag | GE2Flag;
86 const uint32_t GE03Flag = GE0Flag | GE3Flag;
87 const uint32_t GE12Flag = GE1Flag | GE2Flag;
88 const uint32_t GE13Flag = GE1Flag | GE3Flag;
89 const uint32_t GE23Flag = GE2Flag | GE3Flag;
90 const uint32_t GE012Flag = GE0Flag | GE1Flag | GE2Flag;
91 const uint32_t GE013Flag = GE0Flag | GE1Flag | GE3Flag;
92 const uint32_t GE023Flag = GE0Flag | GE2Flag | GE3Flag;
93 const uint32_t GE123Flag = GE1Flag | GE2Flag | GE3Flag;
94 const uint32_t GE0123Flag = GE0Flag | GE1Flag | GE2Flag | GE3Flag;
95 const uint32_t GEFlags = GE0123Flag;
118 int32_t reg(unsigned code) const {
126 vec128_t GetQRegisterBits(unsigned code) const {
134 uint64_t GetDRegisterBits(unsigned code) const {
141 uint32_t GetSRegisterBits(unsigned code) const {
154 int32_t spreg() const { return reg(kSPRegNum); }
157 uint32_t flags_nzcv() const {
162 bool IsComplete() const { return completed_; }
184 bool Equal32(uint32_t expected, const RegisterDump* core, const Register& reg);
185 bool Equal32(uint32_t expected, const RegisterDump* core, uint32_t result);
187 const RegisterDump* core,
188 const SRegister& sreg);
190 const RegisterDump* core,
191 const DRegister& dreg);
194 const RegisterDump* core,
195 const QRegister& qreg);
196 bool EqualFP32(float expected, const RegisterDump* core, const SRegister& dreg);
198 const RegisterDump* core,
199 const DRegister& dreg);