Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp509 const MachineOperand *FlagDef = MI->findRegisterDefOperand(X86::EFLAGS); in Lower() local
510 if (!MF.getFunction().hasOptSize() && FlagDef && FlagDef->isDead()) in Lower()
H A DX86InstrInfo.cpp5472 MachineOperand *FlagDef = Sub->findRegisterDefOperand(X86::EFLAGS); in optimizeCompareInstr() local
5473 assert(FlagDef && "Unable to locate a def EFLAGS operand"); in optimizeCompareInstr()
5474 FlagDef->setIsDead(false); in optimizeCompareInstr()
9551 const MachineOperand *FlagDef = Inst.findRegisterDefOperand(X86::EFLAGS); in hasReassociableOperands() local
9552 assert((Inst.getNumDefs() == 1 || FlagDef) && "Implicit def isn't flags?"); in hasReassociableOperands()
9553 if (FlagDef && !FlagDef->isDead()) in hasReassociableOperands()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td390 class FlagDef<bit polarity, bit value,
423 class ApplySuffix<FlagDef flag, BothFlags suffix> {
424 FlagDef Result
425 = FlagDef<flag.Polarity, flag.Value,
435 : FlagDef<true, value.Value, flags, vis, help, implied_by_expressions> {}
441 : FlagDef<false, value.Value, flags, vis, help, implied_by_expressions> {}
443 // Expanded FlagDef that's convenient for creation of TableGen records.
478 FlagDef flag1_base, FlagDef flag2_base,
509 Default default, FlagDef flag1, FlagDef flag2,
520 Default default, FlagDef flag1, FlagDef flag2,
[all …]