| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | InlineAsmLowering.cpp | 63 if (OpInfo.ConstraintType == TargetLowering::C_Memory || in update() 64 OpInfo.ConstraintType == TargetLowering::C_Other) { in update() 89 if (OpInfo.ConstraintType == TargetLowering::C_Memory) in getRegistersForValue() 143 OpInfo.ConstraintType = TLI->getConstraintType(OpInfo.ConstraintCode); in computeConstraintToUse() 156 OpInfo.ConstraintType = G[BestIdx].second; in computeConstraintToUse() 172 OpInfo.ConstraintType = TLI->getConstraintType(OpInfo.ConstraintCode); in computeConstraintToUse() 321 if (OpInfo.ConstraintType == TargetLowering::C_Memory) { in lowerInlineAsm() 341 assert(OpInfo.ConstraintType == TargetLowering::C_Register || in lowerInlineAsm() 342 OpInfo.ConstraintType == TargetLowering::C_RegisterClass || in lowerInlineAsm() 343 OpInfo.ConstraintType == TargetLowering::C_Other); in lowerInlineAsm() [all …]
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
| H A D | CodeGenDAGPatterns.cpp | 1558 ConstraintType = SDTCisVT; in SDTypeConstraint() 1564 ConstraintType = SDTCisPtrTy; in SDTypeConstraint() 1566 ConstraintType = SDTCisInt; in SDTypeConstraint() 1568 ConstraintType = SDTCisFP; in SDTypeConstraint() 1570 ConstraintType = SDTCisVec; in SDTypeConstraint() 1572 ConstraintType = SDTCisSameAs; in SDTypeConstraint() 1575 ConstraintType = SDTCisVTSmallerThanOp; in SDTypeConstraint() 1578 ConstraintType = SDTCisOpSmallerThanOp; in SDTypeConstraint() 1581 ConstraintType = SDTCisEltOfVec; in SDTypeConstraint() 1584 ConstraintType = SDTCisSubVecOfVec; in SDTypeConstraint() [all …]
|
| H A D | CodeGenDAGPatterns.h | 375 } ConstraintType; member
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | SDNodeInfoEmitter.cpp | 205 switch (C.ConstraintType) { in emitTypeConstraint() 227 StringRef KindName = getTypeConstraintKindName(C.ConstraintType); in emitTypeConstraint()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/ |
| H A D | EmulateInstructionARM64.h | 118 enum ConstraintType { enum
|
| H A D | EmulateInstructionARM64.cpp | 93 EmulateInstructionARM64::ConstraintType 95 EmulateInstructionARM64::ConstraintType result = in ConstrainUnpredictable()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPFISelLowering.h | 49 BPFTargetLowering::ConstraintType
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/MSP430/ |
| H A D | MSP430ISelLowering.h | 53 TargetLowering::ConstraintType
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AVR/ |
| H A D | AVRISelLowering.h | 66 ConstraintType getConstraintType(StringRef Constraint) const override;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/ |
| H A D | XtensaISelLowering.h | 116 TargetLowering::ConstraintType
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/ |
| H A D | CSKYISelLowering.h | 72 ConstraintType getConstraintType(StringRef Constraint) const override;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/ |
| H A D | SparcISelLowering.h | 44 ConstraintType getConstraintType(StringRef Constraint) const override;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/M68k/ |
| H A D | M68kISelLowering.h | 86 ConstraintType getConstraintType(StringRef ConstraintStr) const override;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXISelLowering.h | 161 ConstraintType getConstraintType(StringRef Constraint) const override;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/VE/ |
| H A D | VEISelLowering.h | 320 ConstraintType getConstraintType(StringRef Constraint) const override;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/ |
| H A D | LoongArchISelLowering.h | 395 ConstraintType getConstraintType(StringRef Constraint) const override;
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.cpp | 9772 if (OpInfo.ConstraintType == TargetLowering::C_Memory || in getRegistersForValue() 9773 OpInfo.ConstraintType == TargetLowering::C_Address) in getRegistersForValue() 9909 if (OpInfo.ConstraintType == TargetLowering::C_Memory || in update() 9910 OpInfo.ConstraintType == TargetLowering::C_Other) { in update() 9975 if (T.ConstraintType == TargetLowering::C_Immediate && in visitInlineAsm() 10029 if ((OpInfo.ConstraintType == TargetLowering::C_Memory && in visitInlineAsm() 10031 OpInfo.ConstraintType == TargetLowering::C_Address) in visitInlineAsm() 10057 OpInfo.ConstraintType = TargetLowering::C_Address; in visitInlineAsm() 10062 if (OpInfo.ConstraintType == TargetLowering::C_Memory && in visitInlineAsm() 10131 assert((OpInfo.ConstraintType != TargetLowering::C_Address || in visitInlineAsm() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | TargetLowering.h | 5107 enum ConstraintType { enum 5142 TargetLowering::ConstraintType ConstraintType = TargetLowering::C_Unknown; member 5194 virtual ConstraintType getConstraintType(StringRef Constraint) const; 5196 using ConstraintPair = std::pair<StringRef, TargetLowering::ConstraintType>;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelLowering.h | 537 TargetLowering::ConstraintType
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsISelLowering.h | 659 ConstraintType getConstraintType(StringRef Constraint) const override;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVISelLowering.h | 181 ConstraintType getConstraintType(StringRef Constraint) const override;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIISelLowering.h | 497 ConstraintType getConstraintType(StringRef Constraint) const override;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMISelLowering.h | 539 ConstraintType getConstraintType(StringRef Constraint) const override;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonISelLowering.h | 309 ConstraintType getConstraintType(StringRef Constraint) const override;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.h | 776 ConstraintType getConstraintType(StringRef Constraint) const override;
|