Home
last modified time | relevance | path

Searched refs:IsFixed (Results 1 – 25 of 36) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCCCState.h43 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()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRYamlMapping.cpp23 IsFixed = MFI.isFixedObjectIndex(FI); in FrameIndex()
24 if (IsFixed) in FrameIndex()
32 if (IsFixed) { in getFI()
H A DMachineOperand.cpp555 static void printFrameIndex(raw_ostream& OS, int FrameIndex, bool IsFixed, in printFrameIndex() argument
559 IsFixed = MFI->isFixedObjectIndex(FrameIndex); in printFrameIndex()
563 if (IsFixed) in printFrameIndex()
566 MachineOperand::printStackObjectReference(OS, FrameIndex, IsFixed, Name); in printFrameIndex()
636 bool IsFixed, StringRef Name) { in printStackObjectReference() argument
637 if (IsFixed) { in printStackObjectReference()
883 bool IsFixed = false; in print() local
887 printFrameIndex(OS, FrameIndex, IsFixed, MFI); in print()
1213 bool IsFixed = true; in print() local
1214 printFrameIndex(OS, FrameIndex, IsFixed, MFI); in print()
H A DMIRPrinter.cpp80 bool IsFixed; member
82 FrameIndexOperand(StringRef Name, unsigned ID, bool IsFixed) in FrameIndexOperand()
83 : Name(Name.str()), ID(ID), IsFixed(IsFixed) {} in FrameIndexOperand()
911 MachineOperand::printStackObjectReference(OS, Operand.ID, Operand.IsFixed, in printStackObjectReference()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DCallLowering.h52 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) {}
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DRISCV.cpp47 ABIArgInfo classifyArgumentType(QualType Ty, bool IsFixed, int &ArgGPRsLeft,
97 bool IsFixed = ArgNum < NumFixedArgs; in computeInfo() local
99 classifyArgumentType(ArgInfo.type, IsFixed, ArgGPRsLeft, ArgFPRsLeft); in computeInfo()
349 ABIArgInfo RISCVABIInfo::classifyArgumentType(QualType Ty, bool IsFixed, in classifyArgumentType() argument
372 if (IsFixed && Ty->isFloatingType() && !Ty->isComplexType() && in classifyArgumentType()
380 if (IsFixed && Ty->isComplexType() && FLen && ArgFPRsLeft >= 2) { in classifyArgumentType()
388 if (IsFixed && FLen && Ty->isStructureOrClassType()) { in classifyArgumentType()
415 if (!IsFixed && NeededAlign == 2 * XLen) in classifyArgumentType()
H A DLoongArch.cpp43 ABIArgInfo classifyArgumentType(QualType Ty, bool IsFixed, int &GARsLeft,
297 ABIArgInfo LoongArchABIInfo::classifyArgumentType(QualType Ty, bool IsFixed, in classifyArgumentType() argument
321 if (IsFixed && Ty->isFloatingType() && !Ty->isComplexType() && in classifyArgumentType()
329 if (IsFixed && Ty->isComplexType() && FRLen && FARsLeft >= 2) { in classifyArgumentType()
337 if (IsFixed && FRLen && Ty->isStructureOrClassType()) { in classifyArgumentType()
359 if (!IsFixed && NeededAlign == 2 * GRLen) in classifyArgumentType()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsCCState.cpp133 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 DMipsCCState.h39 void PreAnalyzeCallOperand(const Type *ArgTy, bool IsFixed, const char *Func);
H A DMipsCallLowering.cpp50 State.PreAnalyzeCallOperand(Info.Ty, Info.IsFixed, Func); in assignArg()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetCallingConv.h239 bool IsFixed = false; member
252 : Flags(flags), IsFixed(isfixed), OrigArgIndex(origIdx), in OutputArg()
H A DMIRYamlMapping.h419 bool IsFixed;
430 MachineOperand::printStackObjectReference(OS, FI.FI, FI.IsFixed, "");
434 FI.IsFixed = false;
440 FI.IsFixed = true;
H A DMachineOperand.h274 bool IsFixed, StringRef Name);
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86CallLowering.cpp
H A DX86FrameLowering.cpp2604 bool IsFixed = MFI.isFixedObjectIndex(FI); in getFrameIndexReference() local
2609 FrameReg = IsFixed ? TRI->getFramePtr() : TRI->getBaseRegister(); in getFrameIndexReference()
2611 FrameReg = IsFixed ? TRI->getFramePtr() : TRI->getStackRegister(); in getFrameIndexReference()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/GISel/
H A DX86CallLowering.cpp79 if (!Info.IsFixed) in assignArg()
367 bool IsFixed = Info.OrigArgs.empty() ? true : Info.OrigArgs.back().IsFixed; in lowerCall() local
368 if (STI.is64Bit() && !IsFixed && !STI.isCallingConvWin64(Info.CallConv)) { in lowerCall()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZCallingConv.h70 ArgIsFixed.push_back(Outs[i].IsFixed); in AnalyzeCallOperands()
85 bool IsFixed(unsigned ValNo) { return ArgIsFixed[ValNo]; } in IsFixed() function
H A DSystemZCallingConv.td21 : CCIf<"static_cast<SystemZCCState *>(&State)->IsFixed(ValNo)", A>;
25 : CCIf<"!(static_cast<SystemZCCState *>(&State)->IsFixed(ValNo))", A>;
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp5075 bool IsFixed = ArgNo < CB.getFunctionType()->getNumParams(); in visitCallBase() local
5081 if (IsFixed) in visitCallBase()
5132 if (IsFixed) in visitCallBase()
5152 if (IsFixed) in visitCallBase()
5390 bool IsFixed = ArgNo < CB.getFunctionType()->getNumParams(); in visitCallBase() local
5411 if (IsFixed) in visitCallBase()
5427 if (IsFixed) in visitCallBase()
5600 bool IsFixed = ArgNo < CB.getFunctionType()->getNumParams(); in visitCallBase() local
5610 if (!IsFixed) { in visitCallBase()
5647 if (!IsFixed) { in visitCallBase()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.h901 bool IsFixed, bool IsRet, Type *OrigTy,
1103 ISD::ArgFlagsTy ArgFlags, CCState &State, bool IsFixed,
1109 ISD::ArgFlagsTy ArgFlags, CCState &State, bool IsFixed,
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchISelLowering.h266 bool IsFixed, bool IsReg, Type *OrigTy);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCallLowering.cpp305 OrigArg.IsFixed, OrigArg.OrigValue); in splitToValueTypes()
317 OrigArg.Flags[0], OrigArg.IsFixed); in splitToValueTypes()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64CallLowering.cpp126 if (Info.IsFixed && !UseVarArgsCCForFixed) { in assignArg()
315 if (!Arg.IsFixed) in assignValueToAddress()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/GISel/
H A DRISCVCallLowering.cpp56 LocInfo, Flags, State, Info.IsFixed, IsRet, Info.Ty, in assignArg()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h3911 void setFixed(bool Fixed = true) { EnumDeclBits.IsFixed = Fixed; }
3951 bool IsFixed);
4054 bool isFixed() const { return EnumDeclBits.IsFixed; } in isFixed()

12