| /netbsd-src/external/apache2/llvm/dist/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()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | CallLowering.h | 51 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 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 | 502 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 D | MIRPrinter.cpp | 91 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 D | SystemZCallingConv.h | 70 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 D | SystemZCallingConv.td | 21 : 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 D | X86CallLowering.cpp | 77 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 D | X86FrameLowering.cpp | 2198 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 D | TargetCallingConv.h | 239 bool IsFixed = false; member 252 : Flags(flags), IsFixed(isfixed), OrigArgIndex(origIdx), in OutputArg()
|
| H A D | MIRYamlMapping.h | 391 bool IsFixed; 402 MachineOperand::printStackObjectReference(OS, FI.FI, FI.IsFixed, ""); 406 FI.IsFixed = false; 412 FI.IsFixed = true;
|
| H A D | MachineOperand.h | 266 bool IsFixed, StringRef Name);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| H A D | MipsCCState.cpp | 141 CallOperandIsFixed.push_back(Outs[i].IsFixed); in PreAnalyzeCallOperands()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
| H A D | MemorySanitizer.cpp | 4196 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 D | AArch64CallLowering.cpp | 120 if (Info.IsFixed && !UseVarArgsCCForFixed) in assignArg() 293 if (!Arg.IsFixed) in assignValueToAddress()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/ |
| H A D | CallLowering.cpp | 218 OrigArg.Flags[0], OrigArg.IsFixed, in splitToValueTypes() 231 OrigArg.IsFixed); in splitToValueTypes()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | Decl.h | 3622 void setFixed(bool Fixed = true) { EnumDeclBits.IsFixed = Fixed; } 3662 bool IsFixed); 3756 bool isFixed() const { return EnumDeclBits.IsFixed; } in isFixed()
|
| H A D | DeclBase.h | 1473 uint64_t IsFixed : 1;
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | TargetInfo.cpp | 10484 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 D | WebAssemblyISelLowering.cpp | 936 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 D | AttributorAttributes.cpp | 832 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 D | RISCVISelLowering.cpp | 6675 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 D | Decl.cpp | 4387 bool IsScopedUsingClassTag, bool IsFixed) { in Create() argument 4389 IsScoped, IsScopedUsingClassTag, IsFixed); in Create()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaDecl.cpp | 15204 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 D | SparcISelLowering.cpp | 1055 if (Outs[VA.getValNo()].IsFixed) in fixupVariableFloatArgs()
|