/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | MachineInstr.h | 165 MDNode *PCSections = nullptr, uint32_t CFIType = 0, 171 bool HasCFIType = CFIType != 0; 197 Result->getTrailingObjects<uint32_t>()[0] = CFIType; 2047 uint32_t CFIType, MDNode *MMRAs);
|
H A D | SelectionDAGNodes.h | 657 uint32_t CFIType = 0; 1024 void setCFIType(uint32_t Type) { CFIType = Type; } 1025 uint32_t getCFIType() const { return CFIType; }
|
H A D | MachineFunction.h | 1127 MDNode *PCSections = nullptr, uint32_t CFIType = 0,
|
H A D | TargetLowering.h | 4539 const ConstantInt *CFIType = nullptr; member 4677 CFIType = Type; in setCFIType()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/ |
H A D | AArch64CallLowering.cpp | 1145 if (Info.CFIType) in lowerTailCall() 1146 MIB->setCFIType(MF, Info.CFIType->getZExtValue()); in lowerTailCall() 1367 } else if (Info.CFIType) { in lowerCall() 1368 MIB->setCFIType(MF, Info.CFIType->getZExtValue()); in lowerCall()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineInstr.cpp | 323 uint32_t CFIType, MDNode *MMRAs) { in setExtraInfo() argument 328 bool HasCFIType = CFIType != 0; in setExtraInfo() 347 HeapAllocMarker, PCSections, CFIType, MMRAs)); in setExtraInfo() 1916 if (uint32_t CFIType = getCFIType()) { in print() local 1919 OS << " cfi-type " << CFIType; in print()
|
H A D | MIRPrinter.cpp | 869 if (uint32_t CFIType = MI.getCFIType()) { in print() local 872 OS << " cfi-type " << CFIType; in print()
|
H A D | MachineFunction.cpp | 577 uint32_t CFIType, MDNode *MMRAs) { in createMIExtraInfo() argument 580 PCSections, CFIType, MMRAs); in createMIExtraInfo()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
H A D | CallLowering.h | 160 const ConstantInt *CFIType = nullptr; member
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | CallLowering.cpp | 195 Info.CFIType = cast<ConstantInt>(Bundle->Inputs[0]); in lowerCall() 196 assert(Info.CFIType->getType()->isIntegerTy(32) && "Invalid CFI type"); in lowerCall()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/ |
H A D | MIParser.cpp | 1108 unsigned CFIType = 0; in parse() local 1114 if (getUnsigned(CFIType)) in parse() 1194 if (CFIType) in parse() 1195 MI->setCFIType(MF, CFIType); in parse()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86ISelLoweringCall.cpp | 2018 bool IsCFICall = IsIndirectCall && CLI.CFIType; in LowerCall() 2513 Ret.getNode()->setCFIType(CLI.CFIType->getZExtValue()); in LowerCall() 2542 Chain.getNode()->setCFIType(CLI.CFIType->getZExtValue()); in LowerCall()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGBuilder.cpp | 8795 ConstantInt *CFIType = nullptr; in LowerCallTo() local 8801 CFIType = cast<ConstantInt>(Bundle->Inputs[0]); in LowerCallTo() 8802 assert(CFIType->getType()->isIntegerTy(32) && "Invalid CFI type"); in LowerCallTo() 8820 .setCFIType(CFIType) in LowerCallTo()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVISelLowering.cpp | 20133 assert((!CLI.CFIType || CLI.CB->isIndirectCall()) && in LowerCall() 20142 if (CLI.CFIType) in LowerCall() 20143 Ret.getNode()->setCFIType(CLI.CFIType->getZExtValue()); in LowerCall() 20149 if (CLI.CFIType) in LowerCall() 20150 Chain.getNode()->setCFIType(CLI.CFIType->getZExtValue()); in LowerCall()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelLowering.cpp | 8265 bool IsCFICall = CLI.CB && CLI.CB->isIndirectCall() && CLI.CFIType; in LowerCall() 8881 Ret.getNode()->setCFIType(CLI.CFIType->getZExtValue()); in LowerCall() 8891 Chain.getNode()->setCFIType(CLI.CFIType->getZExtValue()); in LowerCall()
|