Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp989 const MachineOperand *FlagDef = MI->findRegisterDefOperand(X86::EFLAGS); in Lower() local
990 if (FlagDef && FlagDef->isDead()) in Lower()
H A DX86InstrInfo.cpp4653 MachineOperand *FlagDef = Sub->findRegisterDefOperand(X86::EFLAGS); in optimizeCompareInstr() local
4654 assert(FlagDef && "Unable to locate a def EFLAGS operand"); in optimizeCompareInstr()
4655 FlagDef->setIsDead(false); in optimizeCompareInstr()
8704 const MachineOperand *FlagDef = Inst.findRegisterDefOperand(X86::EFLAGS); in hasReassociableOperands() local
8705 assert((Inst.getNumDefs() == 1 || FlagDef) && in hasReassociableOperands()
8707 if (FlagDef && !FlagDef->isDead()) in hasReassociableOperands()
/openbsd-src/gnu/llvm/clang/include/clang/Driver/
H A DOptions.td360 class FlagDef<bit polarity, bit value, list<OptionFlag> option_flags,
386 class ApplySuffix<FlagDef flag, BothFlags suffix> {
387 FlagDef Result
388 = FlagDef<flag.Polarity, flag.Value,
396 : FlagDef<true, value.Value, flags, help, implied_by_expressions> {}
401 : FlagDef<false, value.Value, flags, help, implied_by_expressions> {}
403 // Expanded FlagDef that's convenient for creation of TableGen records.
404 class FlagDefExpanded<FlagDef flag, string prefix, string name, string spelling>
405 : FlagDef<flag.Polarity, flag.Value, flag.OptionFlags, flag.Help,
437 FlagDef flag1_base, FlagDef flag2_base,
[all …]