/freebsd/contrib/llvm-project/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()
|
/freebsd/contrib/llvm-project/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 | 555 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 D | MIRPrinter.cpp | 80 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 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) {}
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
H A D | RISCV.cpp | 47 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 D | LoongArch.cpp | 43 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 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()
|
/freebsd/contrib/llvm-project/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 | 419 bool IsFixed; 430 MachineOperand::printStackObjectReference(OS, FI.FI, FI.IsFixed, ""); 434 FI.IsFixed = false; 440 FI.IsFixed = true;
|
H A D | MachineOperand.h | 274 bool IsFixed, StringRef Name);
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86CallLowering.cpp |
|
H A D | X86FrameLowering.cpp | 2604 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 D | X86CallLowering.cpp | 79 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 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>;
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | MemorySanitizer.cpp | 5075 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 D | RISCVISelLowering.h | 901 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 D | LoongArchISelLowering.h | 266 bool IsFixed, bool IsReg, Type *OrigTy);
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | CallLowering.cpp | 305 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 D | AArch64CallLowering.cpp | 126 if (Info.IsFixed && !UseVarArgsCCForFixed) { in assignArg() 315 if (!Arg.IsFixed) in assignValueToAddress()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/GISel/ |
H A D | RISCVCallLowering.cpp | 56 LocInfo, Flags, State, Info.IsFixed, IsRet, Info.Ty, in assignArg()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Decl.h | 3911 void setFixed(bool Fixed = true) { EnumDeclBits.IsFixed = Fixed; } 3951 bool IsFixed); 4054 bool isFixed() const { return EnumDeclBits.IsFixed; } in isFixed()
|