Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Target/
DTargetCallingConv.h174 bool IsFixed; member
184 OutputArg() : IsFixed(false) {} in OutputArg()
187 : Flags(flags), IsFixed(isfixed), OrigArgIndex(origIdx), in OutputArg()
/external/autotest/client/site_tests/hardware_SsdDetection/
Dhardware_SsdDetection.py29 def IsFixed(dev): function
37 if len(dev) != 1 or not IsFixed(dev[0]):
/external/llvm/lib/Target/SystemZ/
DSystemZCallingConv.h63 ArgIsFixed.push_back(Outs[i].IsFixed); in AnalyzeCallOperands()
78 bool IsFixed(unsigned ValNo) { return ArgIsFixed[ValNo]; } in IsFixed() function
DSystemZCallingConv.td22 : CCIf<"static_cast<SystemZCCState *>(&State)->IsFixed(ValNo)", A>;
/external/llvm/lib/CodeGen/
DMIRPrinter.cpp45 bool IsFixed; member
47 FrameIndexOperand(StringRef Name, unsigned ID, bool IsFixed) in FrameIndexOperand()
48 : Name(Name.str()), ID(ID), IsFixed(IsFixed) {} in FrameIndexOperand()
327 if (StackObject.IsFixed) in convertStackObjects()
338 assert(!StackObject.IsFixed && "Expected a locally mapped stack object"); in convertStackObjects()
357 assert(!StackObject.IsFixed && "Expected a non-fixed stack object"); in convertStackObjects()
640 if (Operand.IsFixed) { in printStackObjectReference()
/external/v8/src/compiler/
Dgreedy-allocator.cc108 DCHECK(fixed_range->TopLevel()->IsFixed()); in PreallocateFixedRanges()
353 CHECK(!conflict->TopLevel()->IsFixed()); in EvictAndRescheduleConflicts()
460 if (range->TopLevel()->IsFixed()) { in EnsureValidRangeWeight()
Dregister-allocator.cc1807 DCHECK(result->IsFixed()); in FixedLiveRangeFor()
1822 DCHECK(result->IsFixed()); in FixedDoubleLiveRangeFor()
2273 DCHECK(!range->TopLevel()->IsFixed()); in SplitRangeAt()
2293 DCHECK(!range->TopLevel()->IsFixed()); in SplitBetween()
2705 if (range->TopLevel()->IsFixed() || in AllocateBlockedReg()
2725 if (range->TopLevel()->IsFixed()) { in AllocateBlockedReg()
2801 if (range->assigned_register() == reg && !range->TopLevel()->IsFixed()) { in SplitAndSpillIntersecting()
Dregister-allocator.h500 bool IsFixed() const { return vreg_ < 0; } in IsFixed() function
/external/llvm/lib/Target/Mips/
DMipsCCState.cpp108 CallOperandIsFixed.push_back(Outs[i].IsFixed); in PreAnalyzeCallOperands()
/external/v8/src/crankshaft/
Dlithium-allocator.cc625 DCHECK(result->IsFixed()); in FixedLiveRangeFor()
640 DCHECK(result->IsFixed()); in FixedDoubleLiveRangeFor()
1866 if (range->IsFixed() || !range->CanBeSpilled(current->Start())) { in AllocateBlockedReg()
1886 if (range->IsFixed()) { in AllocateBlockedReg()
1999 if (range->assigned_register() == reg && !range->IsFixed()) { in SplitAndSpillIntersecting()
2025 DCHECK(!range->IsFixed()); in SplitRangeAt()
2046 DCHECK(!range->IsFixed()); in SplitBetween()
Dlithium-allocator.h201 bool IsFixed() const { return id_ < 0; } in IsFixed() function
/external/v8/test/unittests/compiler/
Dinstruction-selector-unittest.h190 bool IsFixed(const InstructionOperand* operand, Register reg) const;
Dinstruction-selector-unittest.cc121 bool InstructionSelectorTest::Stream::IsFixed(const InstructionOperand* operand, in IsFixed() function in v8::internal::compiler::InstructionSelectorTest::Stream
/external/v8/test/unittests/compiler/x64/
Dinstruction-selector-x64-unittest.cc851 EXPECT_TRUE(s.IsFixed(s[0]->InputAt(0), rax)); in TEST_F()
856 EXPECT_TRUE(s.IsFixed(s[0]->OutputAt(0), rdx)); in TEST_F()
872 EXPECT_TRUE(s.IsFixed(s[0]->InputAt(0), rax)); in TEST_F()
877 EXPECT_TRUE(s.IsFixed(s[0]->OutputAt(0), rdx)); in TEST_F()
/external/v8/test/unittests/compiler/ia32/
Dinstruction-selector-ia32-unittest.cc642 EXPECT_TRUE(s.IsFixed(s[0]->InputAt(0), eax)); in TEST_F()
647 EXPECT_TRUE(s.IsFixed(s[0]->OutputAt(0), edx)); in TEST_F()
/external/clang/include/clang/AST/
DDecl.h2755 bool IsFixed : 1; variable
3037 IsFixed = Fixed; in EnumDecl()
3073 bool IsFixed);
3183 return IsFixed; in isFixed()
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyISelLowering.cpp486 assert(Out.IsFixed && "non-fixed return value is not valid"); in LowerReturn()
/external/clang/lib/AST/
DDecl.cpp3519 bool IsScopedUsingClassTag, bool IsFixed) { in Create() argument
3521 IsScoped, IsScopedUsingClassTag, IsFixed); in Create()
/external/clang/lib/Sema/
DSemaDecl.cpp11592 bool IsFixed = !EnumUnderlyingTy.isNull(); in CheckEnumRedeclaration() local
11601 if (IsFixed && Prev->isFixed()) { in CheckEnumRedeclaration()
11613 } else if (IsFixed && !Prev->isFixed() && EnumUnderlyingIsImplicit) { in CheckEnumRedeclaration()
11615 } else if (!IsFixed && Prev->isFixed() && !Prev->getIntegerTypeSourceInfo()) { in CheckEnumRedeclaration()
11617 } else if (IsFixed != Prev->isFixed()) { in CheckEnumRedeclaration()
/external/clang/lib/Serialization/
DASTReaderDecl.cpp630 ED->IsFixed = Record[Idx++]; in VisitEnumDecl()
/external/llvm/lib/Target/Sparc/
DSparcISelLowering.cpp1074 if (Outs[VA.getValNo()].IsFixed) in fixupVariableFloatArgs()
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.cpp2907 /*IsVarArg=*/ !Outs[i].IsFixed); in LowerCall()
/external/llvm/lib/Target/PowerPC/
DPPCISelLowering.cpp4555 if (Outs[i].IsFixed) { in LowerCall_32SVR4()