| /llvm-project-15.0.7/llvm/lib/Target/PowerPC/ |
| H A D | PPCCCState.h | 43 BitVector IsFixed; 53 IsFixed.resize(Ins.size(), true); in AnalyzeFormalArguments() 60 IsFixed.resize(Outs.size(), false); in AnalyzeCallOperands() 62 if (Outs[ValNo].IsFixed) in AnalyzeCallOperands() 63 IsFixed.set(ValNo); in AnalyzeCallOperands() 68 bool isFixed(unsigned ValNo) const { return IsFixed.test(ValNo); } in isFixed()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | MIRYamlMapping.cpp | 23 IsFixed = MFI.isFixedObjectIndex(FI); in FrameIndex() 24 if (IsFixed) in FrameIndex() 32 if (IsFixed) { in getFI()
|
| H A D | MachineOperand.cpp | 505 static void printFrameIndex(raw_ostream& OS, int FrameIndex, bool IsFixed, in printFrameIndex() argument 509 IsFixed = MFI->isFixedObjectIndex(FrameIndex); in printFrameIndex() 513 if (IsFixed) in printFrameIndex() 516 MachineOperand::printStackObjectReference(OS, FrameIndex, IsFixed, Name); in printFrameIndex() 586 bool IsFixed, StringRef Name) { in printStackObjectReference() argument 587 if (IsFixed) { in printStackObjectReference() 832 bool IsFixed = false; in print() local 836 printFrameIndex(OS, FrameIndex, IsFixed, MFI); in print() 1155 bool IsFixed = true; in print() local 1156 printFrameIndex(OS, FrameIndex, IsFixed, MFI); in print()
|
| H A D | MIRPrinter.cpp | 78 bool IsFixed; member 80 FrameIndexOperand(StringRef Name, unsigned ID, bool IsFixed) in FrameIndexOperand() 81 : Name(Name.str()), ID(ID), IsFixed(IsFixed) {} in FrameIndexOperand() 858 MachineOperand::printStackObjectReference(OS, Operand.ID, Operand.IsFixed, in printStackObjectReference()
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | CallLowering.h | 52 bool IsFixed; member 56 bool IsFixed = true) 57 : Ty(Ty), Flags(Flags.begin(), Flags.end()), IsFixed(IsFixed) {} in Ty() 59 BaseArgInfo() : Ty(nullptr), IsFixed(false) {} in BaseArgInfo() 83 bool IsFixed = true, const Value *OrigValue = nullptr) 84 : BaseArgInfo(Ty, Flags, IsFixed), Regs(Regs.begin(), Regs.end()), in BaseArgInfo() 96 bool IsFixed = true) 97 : ArgInfo(Regs, OrigValue.getType(), OrigIndex, Flags, IsFixed, &OrigValue) {}
|
| /llvm-project-15.0.7/llvm/lib/Target/Mips/ |
| H A D | MipsCCState.cpp | 133 void MipsCCState::PreAnalyzeCallOperand(const Type *ArgTy, bool IsFixed, in PreAnalyzeCallOperand() argument 138 CallOperandIsFixed.push_back(IsFixed); in PreAnalyzeCallOperand() 153 CallOperandIsFixed.push_back(Outs[i].IsFixed); in PreAnalyzeCallOperands()
|
| H A D | MipsCCState.h | 39 void PreAnalyzeCallOperand(const Type *ArgTy, bool IsFixed, const char *Func);
|
| H A D | MipsCallLowering.cpp | 50 State.PreAnalyzeCallOperand(Info.Ty, Info.IsFixed, Func); in assignArg()
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/ |
| H A D | X86CallLowering.cpp | 77 if (!Info.IsFixed) in assignArg() 334 bool IsFixed = Info.OrigArgs.empty() ? true : Info.OrigArgs.back().IsFixed; in lowerCall() local 335 if (STI.is64Bit() && !IsFixed && !STI.isCallingConvWin64(Info.CallConv)) { in lowerCall()
|
| H A D | X86FrameLowering.cpp | 2385 bool IsFixed = MFI.isFixedObjectIndex(FI); in getFrameIndexReference() local 2390 FrameReg = IsFixed ? TRI->getFramePtr() : TRI->getBaseRegister(); in getFrameIndexReference() 2392 FrameReg = IsFixed ? TRI->getFramePtr() : TRI->getStackRegister(); in getFrameIndexReference()
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | TargetCallingConv.h | 239 bool IsFixed = false; member 252 : Flags(flags), IsFixed(isfixed), OrigArgIndex(origIdx), in OutputArg()
|
| H A D | MIRYamlMapping.h | 392 bool IsFixed; 403 MachineOperand::printStackObjectReference(OS, FI.FI, FI.IsFixed, ""); 407 FI.IsFixed = false; 413 FI.IsFixed = true;
|
| H A D | MachineOperand.h | 265 bool IsFixed, StringRef Name);
|
| /llvm-project-15.0.7/llvm/lib/Target/SystemZ/ |
| H A D | SystemZCallingConv.h | 70 ArgIsFixed.push_back(Outs[i].IsFixed); in AnalyzeCallOperands() 85 bool IsFixed(unsigned ValNo) { return ArgIsFixed[ValNo]; } in IsFixed() function
|
| H A D | SystemZCallingConv.td | 21 : CCIf<"static_cast<SystemZCCState *>(&State)->IsFixed(ValNo)", A>; 25 : CCIf<"!(static_cast<SystemZCCState *>(&State)->IsFixed(ValNo))", A>;
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/ |
| H A D | MemorySanitizer.cpp | 4246 if (IsFixed) in visitCallBase() 4294 if (IsFixed) in visitCallBase() 4307 if (IsFixed) in visitCallBase() 4639 if (IsFixed) in visitCallBase() 4649 if (IsFixed) in visitCallBase() 4871 if (!IsFixed) { in visitCallBase() 4908 if (!IsFixed) { in visitCallBase() 4917 if (IsFixed) in visitCallBase() 5112 if (!IsFixed) { in visitCallBase() 5152 assert(IsFixed); in visitCallBase() [all …]
|
| /llvm-project-15.0.7/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64CallLowering.cpp | 122 if (Info.IsFixed && !UseVarArgsCCForFixed) in assignArg() 306 if (!Arg.IsFixed) in assignValueToAddress()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/GlobalISel/ |
| H A D | CallLowering.cpp | 253 OrigArg.IsFixed, OrigArg.OrigValue); in splitToValueTypes() 265 OrigArg.Flags[0], OrigArg.IsFixed); in splitToValueTypes()
|
| /llvm-project-15.0.7/llvm/lib/Target/RISCV/ |
| H A D | RISCVISelLowering.h | 611 bool IsFixed, bool IsRet, Type *OrigTy,
|
| H A D | RISCVISelLowering.cpp | 6470 const bool IsFixed = VT.isFixedLengthVector(); in lowerLogicVPOp() local 6471 if (IsFixed) { in lowerLogicVPOp() 6479 if (!IsFixed) in lowerLogicVPOp() 10347 ISD::ArgFlagsTy ArgFlags, CCState &State, bool IsFixed, in CC_RISCV() argument 10374 UseGPRForF16_F32 = !IsFixed; in CC_RISCV() 10378 UseGPRForF16_F32 = !IsFixed; in CC_RISCV() 10379 UseGPRForF64 = !IsFixed; in CC_RISCV() 10409 if (!IsFixed && ArgFlags.getNonZeroOrigAlign() == TwoXLenInBytes && in CC_RISCV() 10620 ArgFlags, CCInfo, Outs[i].IsFixed, IsRet, OrigTy, *this, in analyzeOutputArgs() 10777 bool IsFixed, bool IsRet, Type *OrigTy, in CC_RISCV_FastCC() argument
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | Decl.h | 3717 void setFixed(bool Fixed = true) { EnumDeclBits.IsFixed = Fixed; } 3757 bool IsFixed); 3855 bool isFixed() const { return EnumDeclBits.IsFixed; } in isFixed()
|
| H A D | DeclBase.h | 1508 uint64_t IsFixed : 1;
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | TargetInfo.cpp | 10869 ABIArgInfo classifyArgumentType(QualType Ty, bool IsFixed, int &ArgGPRsLeft, 10922 bool IsFixed = ArgNum < NumFixedArgs; in computeInfo() local 10924 classifyArgumentType(ArgInfo.type, IsFixed, ArgGPRsLeft, ArgFPRsLeft); in computeInfo() 11135 ABIArgInfo RISCVABIInfo::classifyArgumentType(QualType Ty, bool IsFixed, in classifyArgumentType() argument 11157 if (IsFixed && Ty->isFloatingType() && !Ty->isComplexType() && in classifyArgumentType() 11165 if (IsFixed && Ty->isComplexType() && FLen && ArgFPRsLeft >= 2) { in classifyArgumentType() 11173 if (IsFixed && FLen && Ty->isStructureOrClassType()) { in classifyArgumentType() 11198 if (!IsFixed && NeededAlign == 2 * XLen) in classifyArgumentType()
|
| /llvm-project-15.0.7/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyISelLowering.cpp | 1076 NumFixedArgs += Out.IsFixed; in LowerCall() 1269 assert(Out.IsFixed && "non-fixed return value is not valid"); in LowerReturn()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/IPO/ |
| H A D | AttributorAttributes.cpp | 1643 bool IsFixed = false; member in __anon26093b6c1411::AAReturnedValuesImpl 1654 IsFixed = false; in initialize() 1725 bool isAtFixpoint() const override { return IsFixed; } in isAtFixpoint() 1732 IsFixed = true; in indicateOptimisticFixpoint() 1737 IsFixed = true; in indicatePessimisticFixpoint()
|