| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | ConstantRange.cpp | 181 const ConstantRange &CR1, const ConstantRange &CR2) { in areInsensitiveToSignednessOfICmpPredicate() argument 182 if (CR1.isEmptySet() || CR2.isEmptySet()) in areInsensitiveToSignednessOfICmpPredicate() 185 return (CR1.isAllNonNegative() && CR2.isAllNonNegative()) || in areInsensitiveToSignednessOfICmpPredicate() 186 (CR1.isAllNegative() && CR2.isAllNegative()); in areInsensitiveToSignednessOfICmpPredicate() 190 const ConstantRange &CR1, const ConstantRange &CR2) { in areInsensitiveToSignednessOfInvertedICmpPredicate() argument 191 if (CR1.isEmptySet() || CR2.isEmptySet()) in areInsensitiveToSignednessOfInvertedICmpPredicate() 194 return (CR1.isAllNonNegative() && CR2.isAllNegative()) || in areInsensitiveToSignednessOfInvertedICmpPredicate() 195 (CR1.isAllNegative() && CR2.isAllNonNegative()); in areInsensitiveToSignednessOfInvertedICmpPredicate() 200 const ConstantRange &CR2) { in getEquivalentPredWithFlippedSignedness() argument 207 if (areInsensitiveToSignednessOfICmpPredicate(CR1, CR2)) in getEquivalentPredWithFlippedSignedness() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | ConstantRange.h | 140 const ConstantRange &CR2); 146 const ConstantRange &CR2); 156 const ConstantRange &CR2);
|
| /freebsd/sys/dev/xdma/controller/ |
| H A D | pl330.h | 71 #define CR2 0xE08 /* Configuration Register 2 */ macro
|
| /freebsd/contrib/llvm-project/libc/include/llvm-libc-macros/linux/ |
| H A D | termios-macros.h | 50 #define CR2 0002000 // Carriage-return delay type 2 macro
|
| /freebsd/include/rpcsvc/ |
| H A D | rex.x | 117 const CR2 = 0x00002000; /* tty 37 */ variable
|
| /freebsd/sys/sys/ |
| H A D | ioctl_compat.h | 103 #define CR2 0x00002000 /* tty 37 */ macro
|
| /freebsd/libexec/getty/ |
| H A D | subr.c | 403 { 2, CR2 }, 406 { 166, CR2 },
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCFrameLowering.cpp | 186 {PPC::CR2, -4}, in getCalleeSavedSpillSlots() 1202 if (isSVR4ABI && isPPC64 && (PPC::CR2 <= Reg && Reg <= PPC::CR4)) { in emitPrologue() 1206 Register CRReg = isELFv2ABI? Reg : PPC::CR2; in emitPrologue() 2059 if ((SavedRegs.test(PPC::CR2) || SavedRegs.test(PPC::CR3) || in determineCalleeSaves() 2254 if (CSInfo.getReg() == PPC::CR2) { in processFunctionBeforeFrameFinalized() 2443 bool IsCRField = PPC::CR2 <= Reg && Reg <= PPC::CR4; in spillCalleeSavedRegisters() 2550 MBB.insert(MI, BuildMI(*MF, DL, TII.get(RestoreOp), PPC::CR2) in restoreCRs() 2602 return PPC::CR2 == Reg || Reg == PPC::CR3 || Reg == PPC::CR4; in isCalleeSavedCR() 2637 if (Reg == PPC::CR2) { in restoreCalleeSavedRegisters()
|
| H A D | PPCRegisterInfo.h | 36 Reg = PPC::CR2; in getCRFromCRBit()
|
| H A D | PPCCallingConv.td | 302 R28, R29, R30, R31, CR2, CR3, CR4 326 F27, F28, F29, F30, F31, CR2, CR3, CR4 336 F27, F28, F29, F30, F31, CR2, CR3, CR4
|
| H A D | PPCRegisterInfo.td | 282 def CR2 : CR<2, "cr2", [CR2LT, CR2GT, CR2EQ, CR2UN]>, DwarfRegNum<[70, 70]>; 470 CR7, CR2, CR3, CR4)> { 471 let AltOrders = [(sub CRRC, CR2, CR3, CR4)];
|
| H A D | PPCRegisterInfo.cpp | 1613 if (PPC::CR2 <= Reg && Reg <= PPC::CR4) { in hasReservedSpillSlot()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | CodeViewRegisters.def | 34 #pragma push_macro("CR2") 97 CV_REGISTER(CR2, 82) 365 #pragma pop_macro("CR2")
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | LazyValueInfo.cpp | 1011 [BO, NoWrapKind](const ConstantRange &CR1, const ConstantRange &CR2) { in solveBlockValueBinaryOp() argument 1012 return CR1.overflowingBinaryOp(BO->getOpcode(), CR2, NoWrapKind); in solveBlockValueBinaryOp() 1017 BO, BB, [BO](const ConstantRange &CR1, const ConstantRange &CR2) { in solveBlockValueBinaryOp() argument 1018 return CR1.binaryOp(BO->getOpcode(), CR2); in solveBlockValueBinaryOp() 1026 WO, BB, [WO](const ConstantRange &CR1, const ConstantRange &CR2) { in solveBlockValueOverflowIntrinsic() argument 1027 return CR1.binaryOp(WO->getBinaryOp(), CR2); in solveBlockValueOverflowIntrinsic()
|
| H A D | ValueTracking.cpp | 7078 ConstantRange CR2 = computeConstantRange(V, ForSigned, SQ.IIQ.UseInstrInfo); in computeConstantRangeIncludingKnownBits() local 7081 return CR1.intersectWith(CR2, RangeType); in computeConstantRangeIncludingKnownBits() 8505 const auto CR2 = ConstantRange::makeExactICmpRegion(Pred2, *RHSC2); in isKnownInversion() local 8507 return CR1.inverse() == CR2; in isKnownInversion()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineAndOrXor.cpp | 1346 ConstantRange CR2 = ConstantRange::makeExactICmpRegion( in foldAndOrOfICmpsUsingRanges() local 1349 CR2 = CR2.subtract(*Offset2); in foldAndOrOfICmpsUsingRanges() 1353 std::optional<ConstantRange> CR = CR1.exactUnionWith(CR2); in foldAndOrOfICmpsUsingRanges() 1356 CR2.isWrappedSet()) in foldAndOrOfICmpsUsingRanges() 1361 APInt LowerDiff = CR1.getLower() ^ CR2.getLower(); in foldAndOrOfICmpsUsingRanges() 1362 APInt UpperDiff = (CR1.getUpper() - 1) ^ (CR2.getUpper() - 1); in foldAndOrOfICmpsUsingRanges() 1365 CR1Size != CR2.getUpper() - CR2.getLower()) in foldAndOrOfICmpsUsingRanges() 1368 CR = CR1.getLower().ult(CR2.getLower()) ? CR1 : CR2; in foldAndOrOfICmpsUsingRanges() 4393 ConstantRange CR2 = ConstantRange::makeExactICmpRegion(PredR, *RC); in foldXorOfICmps() local 4394 auto CRUnion = CR1.exactUnionWith(CR2); in foldXorOfICmps() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | CorrelatedValuePropagation.cpp | 298 CR2 = LVI->getConstantRangeAtUse(Cmp->getOperandUse(1), in processICmp() local 304 Cmp->getPredicate(), CR1, CR2); in processICmp() 314 if (ConstantRange::areInsensitiveToSignednessOfICmpPredicate(CR1, CR2)) { in processICmp()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/ |
| H A D | PPCInstPrinter.cpp | 501 case PPC::CR2: RegNo = 2; break; in printcrbitm()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | CombinerHelper.cpp | 7405 ConstantRange CR2 = ConstantRange::makeExactICmpRegion( in tryFoldAndOrOrICmpsUsingRanges() local 7408 CR2 = CR2.subtract(*Offset2); in tryFoldAndOrOrICmpsUsingRanges() 7412 std::optional<ConstantRange> CR = CR1.exactUnionWith(CR2); in tryFoldAndOrOrICmpsUsingRanges() 7415 if (CR1.isWrappedSet() || CR2.isWrappedSet()) in tryFoldAndOrOrICmpsUsingRanges() 7420 LowerDiff = CR1.getLower() ^ CR2.getLower(); in tryFoldAndOrOrICmpsUsingRanges() 7421 APInt UpperDiff = (CR1.getUpper() - 1) ^ (CR2.getUpper() - 1); in tryFoldAndOrOrICmpsUsingRanges() 7424 CR1Size != CR2.getUpper() - CR2.getLower()) in tryFoldAndOrOrICmpsUsingRanges() 7427 CR = CR1.getLower().ult(CR2.getLower()) ? CR1 : CR2; in tryFoldAndOrOrICmpsUsingRanges()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/Disassembler/ |
| H A D | X86DisassemblerDecoder.h | 512 ENTRY(CR2) \
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86RegisterInfo.td | 512 def CR2 : X86Reg<"cr2", 2>;
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | images | 293 # Canon RAW version 2 (CR2) files are a kind of TIFF with an extra magic 298 0 string II\x2a\0\x10\0\0\0CR Canon CR2 raw image data
|
| /freebsd/share/misc/ |
| H A D | pci_vendors | 36678 325a Power Control Unit (PCU) CR2
|