Home
last modified time | relevance | path

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

12

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
H A DCallLowering.h51 bool IsFixed; member
55 bool IsFixed = true)
56 : Ty(Ty), Flags(Flags.begin(), Flags.end()), IsFixed(IsFixed) {} in Ty()
58 BaseArgInfo() : Ty(nullptr), IsFixed(false) {} in BaseArgInfo()
76 bool IsFixed = true, const Value *OrigValue = nullptr)
77 : BaseArgInfo(Ty, Flags, IsFixed), Regs(Regs.begin(), Regs.end()), in BaseArgInfo()
89 bool IsFixed = true)
90 : ArgInfo(Regs, OrigValue.getType(), Flags, IsFixed, &OrigValue) {}
/netbsd-src/external/apache2/llvm/dist/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.cpp502 static void printFrameIndex(raw_ostream& OS, int FrameIndex, bool IsFixed, in printFrameIndex() argument
506 IsFixed = MFI->isFixedObjectIndex(FrameIndex); in printFrameIndex()
510 if (IsFixed) in printFrameIndex()
513 MachineOperand::printStackObjectReference(OS, FrameIndex, IsFixed, Name); in printFrameIndex()
583 bool IsFixed, StringRef Name) { in printStackObjectReference() argument
584 if (IsFixed) { in printStackObjectReference()
821 bool IsFixed = false; in print() local
825 printFrameIndex(OS, FrameIndex, IsFixed, MFI); in print()
1133 bool IsFixed = true; in print() local
1134 printFrameIndex(OS, FrameIndex, IsFixed, MFI); in print()
H A DMIRPrinter.cpp91 bool IsFixed; member
93 FrameIndexOperand(StringRef Name, unsigned ID, bool IsFixed) in FrameIndexOperand()
94 : Name(Name.str()), ID(ID), IsFixed(IsFixed) {} in FrameIndexOperand()
831 MachineOperand::printStackObjectReference(OS, Operand.ID, Operand.IsFixed, in printStackObjectReference()
/netbsd-src/external/apache2/llvm/dist/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
173 if (static_cast<SystemZCCState *>(&State)->IsFixed(ValNo)) in CC_XPLINK64_Allocate128BitVararg()
H A DSystemZCallingConv.td21 : CCIf<"static_cast<SystemZCCState *>(&State)->IsFixed(ValNo)", A>;
25 : CCIf<"!(static_cast<SystemZCCState *>(&State)->IsFixed(ValNo))", A>;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86CallLowering.cpp77 if (!Info.IsFixed) in assignArg()
335 bool IsFixed = Info.OrigArgs.empty() ? true : Info.OrigArgs.back().IsFixed; in lowerCall() local
336 if (STI.is64Bit() && !IsFixed && !STI.isCallingConvWin64(Info.CallConv)) { in lowerCall()
H A DX86FrameLowering.cpp2198 bool IsFixed = MFI.isFixedObjectIndex(FI); in getFrameIndexReference() local
2203 FrameReg = IsFixed ? TRI->getFramePtr() : TRI->getBaseRegister(); in getFrameIndexReference()
2205 FrameReg = IsFixed ? TRI->getFramePtr() : TRI->getStackRegister(); in getFrameIndexReference()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DTargetCallingConv.h239 bool IsFixed = false; member
252 : Flags(flags), IsFixed(isfixed), OrigArgIndex(origIdx), in OutputArg()
H A DMIRYamlMapping.h391 bool IsFixed;
402 MachineOperand::printStackObjectReference(OS, FI.FI, FI.IsFixed, "");
406 FI.IsFixed = false;
412 FI.IsFixed = true;
H A DMachineOperand.h266 bool IsFixed, StringRef Name);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsCCState.cpp141 CallOperandIsFixed.push_back(Outs[i].IsFixed); in PreAnalyzeCallOperands()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp4196 bool IsFixed = ArgNo < CB.getFunctionType()->getNumParams(); in visitCallBase() local
4202 if (IsFixed) in visitCallBase()
4250 if (IsFixed) in visitCallBase()
4263 if (IsFixed) in visitCallBase()
4576 bool IsFixed = ArgNo < CB.getFunctionType()->getNumParams(); in visitCallBase() local
4595 if (IsFixed) in visitCallBase()
4605 if (IsFixed) in visitCallBase()
4817 bool IsFixed = ArgNo < CB.getFunctionType()->getNumParams(); in visitCallBase() local
4827 if (!IsFixed) { in visitCallBase()
4864 if (!IsFixed) { in visitCallBase()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/
H A DAArch64CallLowering.cpp120 if (Info.IsFixed && !UseVarArgsCCForFixed) in assignArg()
293 if (!Arg.IsFixed) in assignValueToAddress()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DCallLowering.cpp218 OrigArg.Flags[0], OrigArg.IsFixed, in splitToValueTypes()
231 OrigArg.IsFixed); in splitToValueTypes()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDecl.h3622 void setFixed(bool Fixed = true) { EnumDeclBits.IsFixed = Fixed; }
3662 bool IsFixed);
3756 bool isFixed() const { return EnumDeclBits.IsFixed; } in isFixed()
H A DDeclBase.h1473 uint64_t IsFixed : 1;
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DTargetInfo.cpp10484 ABIArgInfo classifyArgumentType(QualType Ty, bool IsFixed, int &ArgGPRsLeft,
10537 bool IsFixed = ArgNum < NumFixedArgs; in computeInfo() local
10539 classifyArgumentType(ArgInfo.type, IsFixed, ArgGPRsLeft, ArgFPRsLeft); in computeInfo()
10737 ABIArgInfo RISCVABIInfo::classifyArgumentType(QualType Ty, bool IsFixed, in classifyArgumentType() argument
10759 if (IsFixed && Ty->isFloatingType() && !Ty->isComplexType() && in classifyArgumentType()
10767 if (IsFixed && Ty->isComplexType() && FLen && ArgFPRsLeft >= 2) { in classifyArgumentType()
10775 if (IsFixed && FLen && Ty->isStructureOrClassType()) { in classifyArgumentType()
10800 if (!IsFixed && NeededAlign == 2 * XLen) in classifyArgumentType()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp936 NumFixedArgs += Out.IsFixed; in LowerCall()
1100 assert(Out.IsFixed && "non-fixed return value is not valid"); in LowerReturn()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DAttributorAttributes.cpp832 bool IsFixed = false; member in __anon811b40a70111::AAReturnedValuesImpl
843 IsFixed = false; in initialize()
918 bool isAtFixpoint() const override { return IsFixed; } in isAtFixpoint()
925 IsFixed = true; in indicateOptimisticFixpoint()
930 IsFixed = true; in indicatePessimisticFixpoint()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp6675 ISD::ArgFlagsTy ArgFlags, CCState &State, bool IsFixed, in CC_RISCV() argument
6702 UseGPRForF16_F32 = !IsFixed; in CC_RISCV()
6706 UseGPRForF16_F32 = !IsFixed; in CC_RISCV()
6707 UseGPRForF64 = !IsFixed; in CC_RISCV()
6737 if (!IsFixed && ArgFlags.getNonZeroOrigAlign() == TwoXLenInBytes && in CC_RISCV()
6949 ArgFlags, CCInfo, Outs[i].IsFixed, IsRet, OrigTy, *this, in analyzeOutputArgs()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDecl.cpp4387 bool IsScopedUsingClassTag, bool IsFixed) { in Create() argument
4389 IsScoped, IsScopedUsingClassTag, IsFixed); in Create()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDecl.cpp15204 QualType EnumUnderlyingTy, bool IsFixed, in CheckEnumRedeclaration() argument
15213 if (IsFixed && Prev->isFixed()) { in CheckEnumRedeclaration()
15225 } else if (IsFixed != Prev->isFixed()) { in CheckEnumRedeclaration()
15550 bool IsFixed = !UnderlyingType.isUnset() || ScopedEnum; in ActOnTag() local
15604 ScopedEnum, ScopedEnumUsesClassTag, IsFixed); in ActOnTag()
15977 IsFixed, PrevEnum)) in ActOnTag()
16195 ScopedEnumUsesClassTag, IsFixed); in ActOnTag()
16203 if (IsFixed && cast<EnumDecl>(New)->isFixed()) { in ActOnTag()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp1055 if (Outs[VA.getValNo()].IsFixed) in fixupVariableFloatArgs()

12