| /freebsd-12.1/contrib/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | CallLowering.h | 49 bool IsFixed; member 52 bool IsFixed = true) 53 : Reg(Reg), Ty(Ty), Flags(Flags), IsFixed(IsFixed) {} in Reg()
|
| /freebsd-12.1/contrib/llvm/lib/Target/SystemZ/ |
| H A D | SystemZCallingConv.h | 64 ArgIsFixed.push_back(Outs[i].IsFixed); in AnalyzeCallOperands() 79 bool IsFixed(unsigned ValNo) { return ArgIsFixed[ValNo]; } in IsFixed() function
|
| H A D | SystemZCallingConv.td | 22 : CCIf<"static_cast<SystemZCCState *>(&State)->IsFixed(ValNo)", A>;
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | MachineOperand.cpp | 496 static void printFrameIndex(raw_ostream& OS, int FrameIndex, bool IsFixed, in printFrameIndex() argument 500 IsFixed = MFI->isFixedObjectIndex(FrameIndex); in printFrameIndex() 504 if (IsFixed) in printFrameIndex() 507 MachineOperand::printStackObjectReference(OS, FrameIndex, IsFixed, Name); in printFrameIndex() 577 bool IsFixed, StringRef Name) { in printStackObjectReference() argument 578 if (IsFixed) { in printStackObjectReference() 804 bool IsFixed = false; in print() local 808 printFrameIndex(OS, FrameIndex, IsFixed, MFI); in print() 1114 bool IsFixed = true; in print() local 1115 printFrameIndex(OS, FrameIndex, IsFixed, MFI); in print()
|
| H A D | MIRPrinter.cpp | 88 bool IsFixed; member 90 FrameIndexOperand(StringRef Name, unsigned ID, bool IsFixed) in FrameIndexOperand() 91 : Name(Name.str()), ID(ID), IsFixed(IsFixed) {} in FrameIndexOperand() 409 if (StackObject.IsFixed) { in convertStackObjects() 426 assert(!StackObject.IsFixed && "Expected a locally mapped stack object"); in convertStackObjects() 445 if (StackObject.IsFixed) { in convertStackObjects() 766 MachineOperand::printStackObjectReference(OS, Operand.ID, Operand.IsFixed, in printStackObjectReference()
|
| /freebsd-12.1/contrib/llvm/lib/Target/X86/ |
| H A D | X86CallLowering.cpp | 77 OrigArg.Flags, OrigArg.IsFixed); in splitToValueTypes() 167 if (!Info.IsFixed) in assignArg() 423 bool IsFixed = OrigArgs.empty() ? true : OrigArgs.back().IsFixed; in lowerCall() local 424 if (STI.is64Bit() && !IsFixed && !STI.isCallingConvWin64(CallConv)) { in lowerCall()
|
| H A D | X86FrameLowering.cpp | 1754 bool IsFixed = MFI.isFixedObjectIndex(FI); in getFrameIndexReference() local 1759 FrameReg = IsFixed ? TRI->getFramePtr() : TRI->getBaseRegister(); in getFrameIndexReference() 1761 FrameReg = IsFixed ? TRI->getFramePtr() : TRI->getStackRegister(); in getFrameIndexReference()
|
| /freebsd-12.1/contrib/llvm/include/llvm/CodeGen/ |
| H A D | TargetCallingConv.h | 181 bool IsFixed = false; member 194 : Flags(flags), IsFixed(isfixed), OrigArgIndex(origIdx), in OutputArg()
|
| H A D | MachineOperand.h | 260 bool IsFixed, StringRef Name);
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/ |
| H A D | AArch64CallLowering.cpp | 174 if (Info.IsFixed) in assignArg() 207 OrigArg.Flags, OrigArg.IsFixed); in splitToValueTypes() 218 SplitTy, OrigArg.Flags, OrigArg.IsFixed}); in splitToValueTypes()
|
| H A D | AArch64ISelLowering.cpp | 3577 /*IsVarArg=*/ !Outs[i].IsFixed); in LowerCall()
|
| /freebsd-12.1/contrib/llvm/lib/Target/ARM/ |
| H A D | ARMCallLowering.cpp | 206 OrigArg.IsFixed); in splitToValueTypes() 230 SplitTy, Flags, OrigArg.IsFixed}); in splitToValueTypes() 569 if (!Arg.IsFixed) in lowerCall()
|
| /freebsd-12.1/contrib/llvm/lib/Target/Mips/ |
| H A D | MipsCCState.cpp | 142 CallOperandIsFixed.push_back(Outs[i].IsFixed); in PreAnalyzeCallOperands()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/ |
| H A D | MemorySanitizer.cpp | 3695 bool IsFixed = ArgNo < CS.getFunctionType()->getNumParams(); in visitCallSite() local 3701 if (IsFixed) in visitCallSite() 3749 if (IsFixed) in visitCallSite() 3762 if (IsFixed) in visitCallSite() 4067 bool IsFixed = ArgNo < CS.getFunctionType()->getNumParams(); in visitCallSite() local 4086 if (IsFixed) in visitCallSite() 4096 if (IsFixed) in visitCallSite() 4306 bool IsFixed = ArgNo < CS.getFunctionType()->getNumParams(); in visitCallSite() local 4316 if (!IsFixed) { in visitCallSite() 4353 if (!IsFixed) { in visitCallSite() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Target/RISCV/ |
| H A D | RISCVISelLowering.cpp | 804 CCState &State, bool IsFixed, bool IsRet, Type *OrigTy) { in CC_RISCV() argument 826 if (!IsFixed && ArgFlags.getOrigAlign() == TwoXLenInBytes && in CC_RISCV() 964 ArgFlags, CCInfo, Outs[i].IsFixed, IsRet, OrigTy)) { in analyzeOutputArgs()
|
| /freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyISelLowering.cpp | 659 NumFixedArgs += Out.IsFixed; in LowerCall() 785 assert(Out.IsFixed && "non-fixed return value is not valid"); in LowerReturn()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | Decl.h | 3396 void setFixed(bool Fixed = true) { EnumDeclBits.IsFixed = Fixed; } 3435 bool IsFixed); 3529 bool isFixed() const { return EnumDeclBits.IsFixed; } in isFixed()
|
| H A D | DeclBase.h | 1388 uint64_t IsFixed : 1; variable
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | TargetInfo.cpp | 9074 ABIArgInfo classifyArgumentType(QualType Ty, bool IsFixed, 9107 bool IsFixed = ArgNum < NumFixedArgs; in computeInfo() local 9108 ArgInfo.info = classifyArgumentType(ArgInfo.type, IsFixed, ArgGPRsLeft); in computeInfo() 9113 ABIArgInfo RISCVABIInfo::classifyArgumentType(QualType Ty, bool IsFixed, in classifyArgumentType() argument 9138 if (!IsFixed && NeededAlign == 2 * XLen) in classifyArgumentType()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | Decl.cpp | 3979 bool IsScopedUsingClassTag, bool IsFixed) { in Create() argument 3981 IsScoped, IsScopedUsingClassTag, IsFixed); in Create()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaDecl.cpp | 13745 QualType EnumUnderlyingTy, bool IsFixed, in CheckEnumRedeclaration() argument 13754 if (IsFixed && Prev->isFixed()) { in CheckEnumRedeclaration() 13766 } else if (IsFixed != Prev->isFixed()) { in CheckEnumRedeclaration() 14087 bool IsFixed = !UnderlyingType.isUnset() || ScopedEnum; in ActOnTag() local 14141 ScopedEnum, ScopedEnumUsesClassTag, IsFixed); in ActOnTag() 14520 IsFixed, PrevEnum)) in ActOnTag() 14738 ScopedEnumUsesClassTag, IsFixed); in ActOnTag() 14746 if (IsFixed && (getLangOpts().CPlusPlus11 || getLangOpts().ObjC) && in ActOnTag()
|
| /freebsd-12.1/contrib/llvm/lib/Target/Sparc/ |
| H A D | SparcISelLowering.cpp | 1056 if (Outs[VA.getValNo()].IsFixed) in fixupVariableFloatArgs()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | Sema.h | 2364 QualType EnumUnderlyingTy, bool IsFixed,
|
| /freebsd-12.1/contrib/llvm/lib/Target/PowerPC/ |
| H A D | PPCISelLowering.cpp | 5386 if (Outs[i].IsFixed) { in LowerCall_32SVR4()
|