Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86SuppressAPXForReloc.cpp226 MachineOperand *FlagDef = in handleNDDOrNFInstructions() local
228 if (FlagDef && FlagDef->isDead()) { in handleNDDOrNFInstructions()
H A DX86FlagsCopyLowering.cpp243 const MachineOperand *FlagDef = in getClobberType() local
245 if (!FlagDef) in getClobberType()
255 if (FlagDef->isDead() && X86::getNFVariant(MI.getOpcode()) && !IsWithReloc) in getClobberType()
H A DX86MCInstLower.cpp518 const MachineOperand *FlagDef = in Lower() local
520 if (!MF.getFunction().hasOptSize() && FlagDef && FlagDef->isDead()) in Lower()
H A DX86InstrInfo.cpp5655 MachineOperand *FlagDef = in optimizeCompareInstr() local
5657 assert(FlagDef && "Unable to locate a def EFLAGS operand"); in optimizeCompareInstr()
5658 FlagDef->setIsDead(false); in optimizeCompareInstr()
9729 const MachineOperand *FlagDef = in hasReassociableOperands() local
9731 assert((Inst.getNumDefs() == 1 || FlagDef) && "Implicit def isn't flags?"); in hasReassociableOperands()
9732 if (FlagDef && !FlagDef->isDead()) in hasReassociableOperands()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td423 class FlagDef<bit polarity, bit value,
456 class ApplySuffix<FlagDef flag, BothFlags suffix> {
457 FlagDef Result
458 = FlagDef<flag.Polarity, flag.Value,
468 : FlagDef<true, value.Value, flags, vis, help, implied_by_expressions> {}
474 : FlagDef<false, value.Value, flags, vis, help, implied_by_expressions> {}
476 // Expanded FlagDef that's convenient for creation of TableGen records.
477 class FlagDefExpanded<FlagDef flag, string prefix, string name, string spelling>
478 : FlagDef<flag.Polarity, flag.Value, flag.OptionFlags, flag.OptionVisibility,
511 FlagDef flag1_base, FlagDef flag2_base,
[all …]