OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsFixed
(Results
1 - 10
of
10
) sorted by relevancy
/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/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/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;
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
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
,
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
...]
/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/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/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
...]
Completed in 61 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026