Lines Matching refs:that

329   bool operator==(const ExprMapKeyType& that) const {
330 return this->opcode == that.opcode &&
331 this->subclassdata == that.subclassdata &&
332 this->subclassoptionaldata == that.subclassoptionaldata &&
333 this->operands == that.operands &&
334 this->indices == that.indices;
336 bool operator<(const ExprMapKeyType & that) const {
337 if (this->opcode != that.opcode) return this->opcode < that.opcode;
338 if (this->operands != that.operands) return this->operands < that.operands;
339 if (this->subclassdata != that.subclassdata)
340 return this->subclassdata < that.subclassdata;
341 if (this->subclassoptionaldata != that.subclassoptionaldata)
342 return this->subclassoptionaldata < that.subclassoptionaldata;
343 if (this->indices != that.indices) return this->indices < that.indices;
347 bool operator!=(const ExprMapKeyType& that) const {
348 return !(*this == that);
364 bool operator==(const InlineAsmKeyType& that) const {
365 return this->asm_string == that.asm_string &&
366 this->constraints == that.constraints &&
367 this->has_side_effects == that.has_side_effects &&
368 this->is_align_stack == that.is_align_stack &&
369 this->asm_dialect == that.asm_dialect;
371 bool operator<(const InlineAsmKeyType& that) const {
372 if (this->asm_string != that.asm_string)
373 return this->asm_string < that.asm_string;
374 if (this->constraints != that.constraints)
375 return this->constraints < that.constraints;
376 if (this->has_side_effects != that.has_side_effects)
377 return this->has_side_effects < that.has_side_effects;
378 if (this->is_align_stack != that.is_align_stack)
379 return this->is_align_stack < that.is_align_stack;
380 if (this->asm_dialect != that.asm_dialect)
381 return this->asm_dialect < that.asm_dialect;
385 bool operator!=(const InlineAsmKeyType& that) const {
386 return !(*this == that);
392 // ConstantCreator - A class that is used to create constants by
394 // something strange that needs to be done to interface to the ctor for the
539 // Asserts that use_empty().
636 // Update the inverse map so that we know that this constant is now
709 // Asserts that use_empty().