| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SDNodeDbgValue.h | 150 bool IsIndirect; variable 158 bool IsIndirect, DebugLoc DL, unsigned O, bool IsVariadic) in SDDbgValue() argument 163 Var(Var), Expr(Expr), DL(DL), Order(O), IsIndirect(IsIndirect), in SDDbgValue() 166 assert(!(IsVariadic && IsIndirect)); in SDDbgValue() 210 bool isIndirect() const { return IsIndirect; } in isIndirect()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
| H A D | AArch64.cpp | 528 bool IsIndirect = AI.isIndirect(); in EmitAAPCSVAArg() local 531 if (IsIndirect) in EmitAAPCSVAArg() 565 int RegSize = IsIndirect ? 8 : TySize.getQuantity(); in EmitAAPCSVAArg() 646 if (IsIndirect) { in EmitAAPCSVAArg() 713 if (!IsIndirect && TyAlign.getQuantity() > 8) { in EmitAAPCSVAArg() 733 if (IsIndirect) in EmitAAPCSVAArg() 763 if (IsIndirect) in EmitAAPCSVAArg() 792 bool IsIndirect = false; in EmitDarwinVAArg() local 799 return emitVoidPtrVAArg(CGF, VAListAddr, Ty, IsIndirect, in EmitDarwinVAArg() 805 bool IsIndirect = false; in EmitMSVAArg() local [all …]
|
| H A D | WebAssembly.cpp | 160 bool IsIndirect = isAggregateTypeForABI(Ty) && in EmitVAArg() local 163 return emitVoidPtrVAArg(CGF, VAListAddr, Ty, IsIndirect, in EmitVAArg()
|
| H A D | SystemZ.cpp | 267 bool IsIndirect = AI.isIndirect(); in EmitVAArg() local 274 if (IsIndirect) { in EmitVAArg() 397 if (IsIndirect) in EmitVAArg()
|
| H A D | ARM.cpp | 777 bool IsIndirect = false; in EmitVAArg() local 781 IsIndirect = true; in EmitVAArg() 788 IsIndirect = true; in EmitVAArg() 807 return emitVoidPtrVAArg(CGF, VAListAddr, Ty, IsIndirect, TyInfo, in EmitVAArg()
|
| H A D | RISCV.cpp | 506 bool IsIndirect = TInfo.Width > 2 * SlotSize; in EmitVAArg() local 508 return emitVoidPtrVAArg(CGF, VAListAddr, Ty, IsIndirect, TInfo, in EmitVAArg()
|
| H A D | X86.cpp | 981 bool IsIndirect = false; in addFieldToArgStruct() local 983 IsIndirect = true; in addFieldToArgStruct() 984 Info = ABIArgInfo::getInAlloca(FrameFields.size(), IsIndirect); in addFieldToArgStruct() 986 if (IsIndirect) in addFieldToArgStruct() 989 StackOffset += IsIndirect ? WordSize : getContext().getTypeSizeInChars(Type); in addFieldToArgStruct() 3196 bool IsIndirect = Width > 64 || !llvm::isPowerOf2_64(Width); in EmitMSVAArg() local 3198 return emitVoidPtrVAArg(CGF, VAListAddr, Ty, IsIndirect, in EmitMSVAArg() 3398 bool IsIndirect = Width > 64 || !llvm::isPowerOf2_64(Width); in EmitVAArg() local 3400 return emitVoidPtrVAArg(CGF, VAListAddr, Ty, IsIndirect, in EmitVAArg()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | ABIInfoImpl.cpp | 203 QualType ValueTy, bool IsIndirect, in emitVoidPtrVAArg() argument 210 if (IsIndirect) { in emitVoidPtrVAArg() 220 if (IsIndirect) { in emitVoidPtrVAArg() 229 if (IsIndirect) { in emitVoidPtrVAArg()
|
| H A D | ABIInfoImpl.h | 116 QualType ValueTy, bool IsIndirect,
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | MachineInstrBuilder.h | 489 const MCInstrDesc &MCID, bool IsIndirect, 496 const MCInstrDesc &MCID, bool IsIndirect, 505 const MCInstrDesc &MCID, bool IsIndirect, 513 const MCInstrDesc &MCID, bool IsIndirect,
|
| H A D | SelectionDAG.h | 1739 unsigned R, bool IsIndirect, const DebugLoc &DL, 1749 unsigned FI, bool IsIndirect, 1756 bool IsIndirect, const DebugLoc &DL, 1761 unsigned VReg, bool IsIndirect, 1767 ArrayRef<SDNode *> Dependencies, bool IsIndirect,
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | LiveDebugVariables.cpp | 414 void addDef(SlotIndex Idx, ArrayRef<MachineOperand> LocMOs, bool IsIndirect, in addDef() argument 419 DbgVariableValue DbgValue(Locs, IsIndirect, IsList, Expr); in addDef() 851 bool IsIndirect = MI.isDebugOffsetImm(); in handleDebugValue() local 852 if (IsIndirect) in handleDebugValue() 863 IsIndirect, IsList, *Expr); in handleDebugValue() 1699 bool IsIndirect = DbgValue.getWasIndirect(); in insertDebugValue() local 1705 if (IsIndirect) in insertDebugValue() 1708 IsIndirect = true; in insertDebugValue() 1724 BuildMI(*MBB, I, getDebugLoc(), TII.get(DbgValueOpcode), IsIndirect, MOs, in insertDebugValue()
|
| H A D | MachineInstr.cpp | 2154 const MCInstrDesc &MCID, bool IsIndirect, in BuildMI() argument 2162 if (IsIndirect) in BuildMI() 2170 const MCInstrDesc &MCID, bool IsIndirect, in BuildMI() argument 2182 return BuildMI(MF, DL, MCID, IsIndirect, DebugOp.getReg(), Variable, in BuildMI() 2186 if (IsIndirect) in BuildMI() 2206 bool IsIndirect, Register Reg, in BuildMI() argument 2209 MachineInstr *MI = BuildMI(MF, DL, MCID, IsIndirect, Reg, Variable, Expr); in BuildMI() 2217 bool IsIndirect, in BuildMI() argument 2222 BuildMI(MF, DL, MCID, IsIndirect, DebugOps, Variable, Expr); in BuildMI()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | Symbol.cpp | 227 bool Symbol::IsIndirect() const { return m_type == eSymbolTypeResolver; } in IsIndirect() function in Symbol 564 bool is_indirect = IsIndirect(); in ResolveCallableAddress() 569 is_indirect = reexported_symbol->IsIndirect(); in ResolveCallableAddress() 573 is_indirect = IsIndirect(); in ResolveCallableAddress()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUResourceUsageAnalysis.cpp | 527 bool IsIndirect = !Callee || Callee->isDeclaration(); in analyzeResourceUsage() local 528 if (!IsIndirect) in analyzeResourceUsage() 550 if (IsIndirect || I == CallGraphResourceInfo.end()) { in analyzeResourceUsage()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86OptimizeLEAs.cpp | 598 bool IsIndirect = MI.isIndirectDebugValue(); in replaceDebugValue() local 602 if (IsIndirect) in replaceDebugValue() 617 return BuildMI(*MBB, MBB->erase(&MI), DL, TII->get(Opcode), IsIndirect, in replaceDebugValue()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointLocation.h | 258 bool IsIndirect() { return m_is_indirect; } in IsIndirect() function
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64MCInstLower.cpp | 53 bool IsIndirect = in GetGlobalValueSymbol() local 55 if (!IsIndirect) { in GetGlobalValueSymbol()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCISelLowering.h | 1167 const bool IsIndirect : 1; member 1172 bool IsPatchPoint, bool IsIndirect, bool HasNest, bool NoMerge) in CallFlags() 1174 IsPatchPoint(IsPatchPoint), IsIndirect(IsIndirect), in CallFlags()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | BreakpointLocation.cpp | 40 if (symbol && symbol->IsIndirect()) { in BreakpointLocation() 581 if (IsIndirect() && m_bp_site_sp) { in GetDescription()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | Symbol.h | 202 bool IsIndirect() const;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyISelLowering.cpp | 550 bool IsIndirect = in LowerCallResults() local 555 if (IsIndirect && CallParams.getOperand(0).isReg()) { in LowerCallResults() 565 if (IsIndirect && IsRetCall) { in LowerCallResults() 567 } else if (IsIndirect) { in LowerCallResults() 583 if (IsIndirect && MF.getSubtarget<WebAssemblySubtarget>().hasAddr64()) { in LowerCallResults() 594 if (IsIndirect) { in LowerCallResults() 618 if (IsIndirect) { in LowerCallResults() 654 if (IsIndirect && IsFuncrefCall) { in LowerCallResults()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64CallLowering.cpp | 1013 static unsigned getCallOpcode(const MachineFunction &CallerF, bool IsIndirect, in getCallOpcode() argument 1016 return IsIndirect ? getBLRCallOpcode(CallerF) : (unsigned)AArch64::BL; in getCallOpcode() 1018 if (!IsIndirect) in getCallOpcode()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMAsmPrinter.cpp | 862 bool IsIndirect = in GetARMGVSymbol() local 865 if (!IsIndirect) in GetARMGVSymbol() 884 bool IsIndirect = in GetARMGVSymbol() local 886 if (!IsIndirect) in GetARMGVSymbol()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeIndexDiscovery.cpp | 176 bool IsIndirect, in handleVirtualBaseClass() argument
|