| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | InlineAsmLowering.cpp | 160 if (OpInfo.ConstraintCode == "X" && OpInfo.CallOperandVal) { in computeConstraintToUse() 164 Value *Val = OpInfo.CallOperandVal; in computeConstraintToUse() 243 OpInfo.CallOperandVal = const_cast<Value *>(Call.getArgOperand(ArgNo)); in lowerInlineAsm() 245 if (isa<BasicBlock>(OpInfo.CallOperandVal)) { in lowerInlineAsm() 250 Type *OpTy = OpInfo.CallOperandVal->getType(); in lowerInlineAsm() 333 GetOrCreateVRegs(*OpInfo.CallOperandVal); in lowerInlineAsm() 405 ArrayRef<Register> SrcRegs = GetOrCreateVRegs(*OpInfo.CallOperandVal); in lowerInlineAsm() 437 if (!lowerAsmOperandForConstraint(OpInfo.CallOperandVal, in lowerInlineAsm() 472 GetOrCreateVRegs(*OpInfo.CallOperandVal); in lowerInlineAsm() 500 ArrayRef<Register> SourceRegs = GetOrCreateVRegs(*OpInfo.CallOperandVal); in lowerInlineAsm()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AVR/ |
| H A D | AVRISelLowering.cpp | 2538 Value *CallOperandVal = info.CallOperandVal; in getSingleConstraintMatchWeight() local 2543 if (!CallOperandVal) { in getSingleConstraintMatchWeight() 2572 if (const ConstantFP *C = dyn_cast<ConstantFP>(CallOperandVal)) { in getSingleConstraintMatchWeight() 2579 if (const ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { in getSingleConstraintMatchWeight() 2586 if (const ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { in getSingleConstraintMatchWeight() 2593 if (const ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { in getSingleConstraintMatchWeight() 2600 if (const ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { in getSingleConstraintMatchWeight() 2607 if (const ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { in getSingleConstraintMatchWeight() 2614 if (const ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { in getSingleConstraintMatchWeight() 2621 if (const ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) { in getSingleConstraintMatchWeight() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Lanai/ |
| H A D | LanaiISelLowering.cpp | 256 Value *CallOperandVal = Info.CallOperandVal; in getSingleConstraintMatchWeight() local 259 if (CallOperandVal == nullptr) in getSingleConstraintMatchWeight() 270 if (isa<ConstantInt>(CallOperandVal)) in getSingleConstraintMatchWeight()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | TargetLowering.cpp | 5638 OpInfo.CallOperandVal = Call.getArgOperand(ArgNo); in ParseConstraints() 5656 OpInfo.CallOperandVal = Call.getArgOperand(ArgNo); in ParseConstraints() 5667 if (OpInfo.CallOperandVal) { in ParseConstraints() 5668 llvm::Type *OpTy = OpInfo.CallOperandVal->getType(); in ParseConstraints() 5846 Value *CallOperandVal = info.CallOperandVal; in getSingleConstraintMatchWeight() local 5849 if (!CallOperandVal) in getSingleConstraintMatchWeight() 5855 if (isa<ConstantInt>(CallOperandVal)) in getSingleConstraintMatchWeight() 5859 if (isa<GlobalValue>(CallOperandVal)) in getSingleConstraintMatchWeight() 5864 if (isa<ConstantFP>(CallOperandVal)) in getSingleConstraintMatchWeight() 5877 if (CallOperandVal->getType()->isIntegerTy()) in getSingleConstraintMatchWeight() [all …]
|
| H A D | SelectionDAGBuilder.cpp | 9047 const Value *OpVal = OpInfo.CallOperandVal; in getAddressForMemoryInput() 9282 if (OpInfo.CallOperandVal) in visitInlineAsm() 9283 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal); in visitInlineAsm() 9391 OpInfo.CallOperandVal = nullptr; in visitInlineAsm() 9758 const Value *Ptr = OpInfo.CallOperandVal; in visitInlineAsm()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelLowering.cpp | 1179 Value *CallOperandVal = info.CallOperandVal; in getSingleConstraintMatchWeight() local 1182 if (!CallOperandVal) in getSingleConstraintMatchWeight() 1184 Type *type = CallOperandVal->getType(); in getSingleConstraintMatchWeight() 1195 weight = CallOperandVal->getType()->isIntegerTy() ? CW_Register : CW_Default; in getSingleConstraintMatchWeight() 1210 if (auto *C = dyn_cast<ConstantInt>(CallOperandVal)) in getSingleConstraintMatchWeight() 1216 if (auto *C = dyn_cast<ConstantInt>(CallOperandVal)) in getSingleConstraintMatchWeight() 1222 if (auto *C = dyn_cast<ConstantInt>(CallOperandVal)) in getSingleConstraintMatchWeight() 1228 if (auto *C = dyn_cast<ConstantInt>(CallOperandVal)) in getSingleConstraintMatchWeight() 1234 if (auto *C = dyn_cast<ConstantInt>(CallOperandVal)) in getSingleConstraintMatchWeight()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Sparc/ |
| H A D | SparcISelLowering.cpp | 3450 Value *CallOperandVal = info.CallOperandVal; in getSingleConstraintMatchWeight() local 3453 if (!CallOperandVal) in getSingleConstraintMatchWeight() 3462 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) { in getSingleConstraintMatchWeight()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsISelLowering.cpp | 3968 Value *CallOperandVal = info.CallOperandVal; in getSingleConstraintMatchWeight() local 3971 if (!CallOperandVal) in getSingleConstraintMatchWeight() 3973 Type *type = CallOperandVal->getType(); in getSingleConstraintMatchWeight() 4004 if (isa<ConstantInt>(CallOperandVal)) in getSingleConstraintMatchWeight()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | TargetLowering.h | 4814 Value *CallOperandVal = nullptr; member
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 56745 Value *CallOperandVal = Info.CallOperandVal; in getSingleConstraintMatchWeight() local 56748 if (!CallOperandVal) in getSingleConstraintMatchWeight() 56750 Type *Ty = CallOperandVal->getType(); in getSingleConstraintMatchWeight() 56766 if (CallOperandVal->getType()->isIntegerTy()) in getSingleConstraintMatchWeight() 56831 if (auto *C = dyn_cast<ConstantInt>(CallOperandVal)) in getSingleConstraintMatchWeight() 56836 if (auto *C = dyn_cast<ConstantInt>(CallOperandVal)) in getSingleConstraintMatchWeight() 56841 if (auto *C = dyn_cast<ConstantInt>(CallOperandVal)) in getSingleConstraintMatchWeight() 56846 if (auto *C = dyn_cast<ConstantInt>(CallOperandVal)) in getSingleConstraintMatchWeight() 56851 if (auto *C = dyn_cast<ConstantInt>(CallOperandVal)) in getSingleConstraintMatchWeight() 56857 if (isa<ConstantFP>(CallOperandVal)) in getSingleConstraintMatchWeight() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCISelLowering.cpp | 16535 Value *CallOperandVal = info.CallOperandVal; in getSingleConstraintMatchWeight() local 16538 if (!CallOperandVal) in getSingleConstraintMatchWeight() 16540 Type *type = CallOperandVal->getType(); in getSingleConstraintMatchWeight()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMISelLowering.cpp | 20383 Value *CallOperandVal = info.CallOperandVal; in getSingleConstraintMatchWeight() local 20386 if (!CallOperandVal) in getSingleConstraintMatchWeight() 20388 Type *type = CallOperandVal->getType(); in getSingleConstraintMatchWeight()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | CodeGenPrepare.cpp | 5092 if (OpInfo.CallOperandVal == OpVal && in IsOperandAMemoryOperand()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 10612 Value *CallOperandVal = info.CallOperandVal; in getSingleConstraintMatchWeight() local 10615 if (!CallOperandVal) in getSingleConstraintMatchWeight() 10617 Type *type = CallOperandVal->getType(); in getSingleConstraintMatchWeight()
|