| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| MIRYamlMapping.cpp | 23 IsFixed = MFI.isFixedObjectIndex(FI); 24 if (IsFixed) 32 if (IsFixed) {
|
| MachineOperand.cpp | 502 static void printFrameIndex(raw_ostream& OS, int FrameIndex, bool IsFixed, 506 IsFixed = MFI->isFixedObjectIndex(FrameIndex); 510 if (IsFixed) 513 MachineOperand::printStackObjectReference(OS, FrameIndex, IsFixed, Name); 583 bool IsFixed, StringRef Name) { 584 if (IsFixed) { 821 bool IsFixed = false; 825 printFrameIndex(OS, FrameIndex, IsFixed, MFI); 1133 bool IsFixed = true; 1134 printFrameIndex(OS, FrameIndex, IsFixed, MFI) [all...] |
| MIRPrinter.cpp | 91 bool IsFixed; 93 FrameIndexOperand(StringRef Name, unsigned ID, bool IsFixed) 94 : Name(Name.str()), ID(ID), IsFixed(IsFixed) {} 98 return FrameIndexOperand(Name, ID, /*IsFixed=*/false); 103 return FrameIndexOperand("", ID, /*IsFixed=*/true); 831 MachineOperand::printStackObjectReference(OS, Operand.ID, Operand.IsFixed,
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| PPCCCState.h | 43 BitVector IsFixed; 53 IsFixed.resize(Ins.size(), true); 60 IsFixed.resize(Outs.size(), false); 62 if (Outs[ValNo].IsFixed) 63 IsFixed.set(ValNo); 68 bool isFixed(unsigned ValNo) const { return IsFixed.test(ValNo); }
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/ |
| CallLowering.h | 51 bool IsFixed; 55 bool IsFixed = true) 56 : Ty(Ty), Flags(Flags.begin(), Flags.end()), IsFixed(IsFixed) {} 58 BaseArgInfo() : Ty(nullptr), IsFixed(false) {} 76 bool IsFixed = true, const Value *OrigValue = nullptr) 77 : BaseArgInfo(Ty, Flags, IsFixed), Regs(Regs.begin(), Regs.end()), 89 bool IsFixed = true) 90 : ArgInfo(Regs, OrigValue.getType(), Flags, IsFixed, &OrigValue) {}
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| TargetCallingConv.h | 238 /// IsFixed - Is this a "fixed" value, ie not passed through a vararg "...". 239 bool IsFixed = false; 250 OutputArg(ArgFlagsTy flags, EVT vt, EVT argvt, bool isfixed, 252 : Flags(flags), IsFixed(isfixed), OrigArgIndex(origIdx),
|
| MIRYamlMapping.h | 391 bool IsFixed; 402 MachineOperand::printStackObjectReference(OS, FI.FI, FI.IsFixed, ""); 406 FI.IsFixed = false; 412 FI.IsFixed = true;
|
| MachineOperand.h | 266 bool IsFixed, StringRef Name);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
| SystemZCallingConv.h | 35 /// See ISD::OutputArg::IsFixed. 70 ArgIsFixed.push_back(Outs[i].IsFixed); 80 // since we must provide a means of accessing ISD::OutputArg::IsFixed. 85 bool IsFixed(unsigned ValNo) { return ArgIsFixed[ValNo]; } 173 if (static_cast<SystemZCCState *>(&State)->IsFixed(ValNo))
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| X86CallLowering.cpp | 77 if (!Info.IsFixed) 335 bool IsFixed = Info.OrigArgs.empty() ? true : Info.OrigArgs.back().IsFixed; 336 if (STI.is64Bit() && !IsFixed && !STI.isCallingConvWin64(Info.CallConv)) {
|
| X86FrameLowering.cpp | 2198 bool IsFixed = MFI.isFixedObjectIndex(FI); 2203 FrameReg = IsFixed ? TRI->getFramePtr() : TRI->getBaseRegister(); 2205 FrameReg = IsFixed ? TRI->getFramePtr() : TRI->getStackRegister();
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| MipsCCState.cpp | 141 CallOperandIsFixed.push_back(Outs[i].IsFixed);
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
| MemorySanitizer.cpp | 4196 bool IsFixed = ArgNo < CB.getFunctionType()->getNumParams(); 4202 if (IsFixed) 4250 if (IsFixed) 4263 if (IsFixed) 4576 bool IsFixed = ArgNo < CB.getFunctionType()->getNumParams(); 4595 if (IsFixed) 4605 if (IsFixed) 4817 bool IsFixed = ArgNo < CB.getFunctionType()->getNumParams(); 4827 if (!IsFixed) { 4864 if (!IsFixed) { [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/ |
| CallLowering.cpp | 218 OrigArg.Flags[0], OrigArg.IsFixed, 231 OrigArg.IsFixed);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/ |
| AArch64CallLowering.cpp | 120 if (Info.IsFixed && !UseVarArgsCCForFixed) 293 if (!Arg.IsFixed)
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| TargetInfo.cpp | 10484 ABIArgInfo classifyArgumentType(QualType Ty, bool IsFixed, int &ArgGPRsLeft, 10537 bool IsFixed = ArgNum < NumFixedArgs; 10539 classifyArgumentType(ArgInfo.type, IsFixed, ArgGPRsLeft, ArgFPRsLeft); 10737 ABIArgInfo RISCVABIInfo::classifyArgumentType(QualType Ty, bool IsFixed, 10759 if (IsFixed && Ty->isFloatingType() && !Ty->isComplexType() && 10767 if (IsFixed && Ty->isComplexType() && FLen && ArgFPRsLeft >= 2) { 10775 if (IsFixed && FLen && Ty->isStructureOrClassType()) { 10800 if (!IsFixed && NeededAlign == 2 * XLen) 10865 return classifyArgumentType(RetTy, /*IsFixed=*/true, ArgGPRsLeft,
|
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| DeclBase.h | 1473 uint64_t IsFixed : 1;
|
| Decl.h | 3563 /// Normally if IsFixed(), this would contain a TypeSourceInfo*, but in 3622 void setFixed(bool Fixed = true) { EnumDeclBits.IsFixed = Fixed; } 3662 bool IsFixed); 3756 bool isFixed() const { return EnumDeclBits.IsFixed; }
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
| AttributorAttributes.cpp | 832 bool IsFixed = false; 843 IsFixed = false; 918 bool isAtFixpoint() const override { return IsFixed; } 925 IsFixed = true; 930 IsFixed = true;
|
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| Decl.cpp | 4387 bool IsScopedUsingClassTag, bool IsFixed) { 4389 IsScoped, IsScopedUsingClassTag, IsFixed);
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaDecl.cpp | 15204 QualType EnumUnderlyingTy, bool IsFixed, 15213 if (IsFixed && Prev->isFixed()) { 15225 } else if (IsFixed != Prev->isFixed()) { 15227 << Prev->isFixed(); 15550 bool IsFixed = !UnderlyingType.isUnset() || ScopedEnum; 15604 ScopedEnum, ScopedEnumUsesClassTag, IsFixed); 15977 IsFixed, PrevEnum)) 16195 ScopedEnumUsesClassTag, IsFixed); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
| WebAssemblyISelLowering.cpp | 936 NumFixedArgs += Out.IsFixed; 1100 assert(Out.IsFixed && "non-fixed return value is not valid");
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/ |
| RISCVISelLowering.cpp | 6675 ISD::ArgFlagsTy ArgFlags, CCState &State, bool IsFixed, 6702 UseGPRForF16_F32 = !IsFixed; 6706 UseGPRForF16_F32 = !IsFixed; 6707 UseGPRForF64 = !IsFixed; 6737 if (!IsFixed && ArgFlags.getNonZeroOrigAlign() == TwoXLenInBytes && 6923 ArgFlags, CCInfo, /*IsFixed=*/true, IsRet, ArgTy, *this, 6949 ArgFlags, CCInfo, Outs[i].IsFixed, IsRet, OrigTy, *this, 7752 ArgFlags, CCInfo, /*IsFixed=*/true, /*IsRet=*/true, nullptr,
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/ |
| SparcISelLowering.cpp | 1055 if (Outs[VA.getValNo()].IsFixed)
|
| /src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| Sema.h | 3171 QualType EnumUnderlyingTy, bool IsFixed,
|