Lines Matching defs:cfi2
344 static inline bool cficmp(struct cfi_state *cfi1, struct cfi_state *cfi2)
347 (void *)cfi2 + sizeof(cfi2->hash),
3362 static bool insn_cfi_match(struct instruction *insn, struct cfi_state *cfi2)
3372 if (memcmp(&cfi1->cfa, &cfi2->cfa, sizeof(cfi1->cfa))) {
3376 cfi2->cfa.base, cfi2->cfa.offset);
3381 if (memcmp(&cfi1->regs, &cfi2->regs, sizeof(cfi1->regs))) {
3384 if (!memcmp(&cfi1->regs[i], &cfi2->regs[i], sizeof(struct cfi_reg)))
3389 i, cfi2->regs[i].base, cfi2->regs[i].offset);
3394 if (cfi1->type != cfi2->type) {
3397 cfi1->type, cfi2->type);
3401 if (cfi1->drap != cfi2->drap ||
3402 (cfi1->drap && cfi1->drap_reg != cfi2->drap_reg) ||
3403 (cfi1->drap && cfi1->drap_offset != cfi2->drap_offset)) {
3407 cfi2->drap, cfi2->drap_reg, cfi2->drap_offset);