Home
last modified time | relevance | path

Searched refs:temps_ (Results 1 – 9 of 9) sorted by relevance

/external/v8/src/arm64/
Dlithium-arm64.h316 EmbeddedContainer<LOperand*, T> temps_; variable
324 virtual LOperand* TempAt(int i) FINAL OVERRIDE { return temps_[i]; } in TempAt()
648 temps_[0] = temp1; in LAllocate()
649 temps_[1] = temp2; in LAllocate()
650 temps_[2] = temp3; in LAllocate()
655 LOperand* temp1() { return temps_[0]; } in temp1()
656 LOperand* temp2() { return temps_[1]; } in temp2()
657 LOperand* temp3() { return temps_[2]; } in temp3()
688 temps_[0] = temp; in LArgumentsElements()
691 LOperand* temp() { return temps_[0]; } in temp()
[all …]
/external/v8/src/ia32/
Dlithium-ia32.h313 EmbeddedContainer<LOperand*, T> temps_; variable
321 virtual LOperand* TempAt(int i) FINAL OVERRIDE { return temps_[i]; } in TempAt()
564 temps_[0] = temp; in LWrapReceiver()
569 LOperand* temp() { return temps_[0]; } in temp()
666 temps_[0] = temp1; in LModByConstI()
667 temps_[1] = temp2; in LModByConstI()
672 LOperand* temp1() { return temps_[0]; } in temp1()
673 LOperand* temp2() { return temps_[1]; } in temp2()
688 temps_[0] = temp; in LModI()
693 LOperand* temp() { return temps_[0]; } in temp()
[all …]
/external/v8/src/x87/
Dlithium-x87.h318 EmbeddedContainer<LOperand*, T> temps_; variable
326 virtual LOperand* TempAt(int i) FINAL OVERRIDE { return temps_[i]; } in TempAt()
582 temps_[0] = temp; in LWrapReceiver()
587 LOperand* temp() { return temps_[0]; } in temp()
684 temps_[0] = temp1; in LModByConstI()
685 temps_[1] = temp2; in LModByConstI()
690 LOperand* temp1() { return temps_[0]; } in temp1()
691 LOperand* temp2() { return temps_[1]; } in temp2()
706 temps_[0] = temp; in LModI()
711 LOperand* temp() { return temps_[0]; } in temp()
[all …]
/external/v8/src/x64/
Dlithium-x64.h316 EmbeddedContainer<LOperand*, T> temps_; variable
324 virtual LOperand* TempAt(int i) FINAL OVERRIDE { return temps_[i]; } in TempAt()
666 temps_[0] = temp1; in LModByConstI()
667 temps_[1] = temp2; in LModByConstI()
672 LOperand* temp1() { return temps_[0]; } in temp1()
673 LOperand* temp2() { return temps_[1]; } in temp2()
688 temps_[0] = temp; in LModI()
693 LOperand* temp() { return temps_[0]; } in temp()
726 temps_[0] = temp1; in LDivByConstI()
727 temps_[1] = temp2; in LDivByConstI()
[all …]
/external/v8/src/mips/
Dlithium-mips.h309 EmbeddedContainer<LOperand*, T> temps_; variable
317 virtual LOperand* TempAt(int i) FINAL OVERRIDE { return temps_[i]; } in TempAt()
725 temps_[0] = temp; in LDivI()
730 LOperand* temp() { return temps_[0]; } in temp()
761 temps_[0] = temp; in LFlooringDivByConstI()
766 LOperand* temp() { return temps_[0]; } in temp()
857 temps_[0] = temp; in LMathFloor()
861 LOperand* temp() { return temps_[0]; } in temp()
872 temps_[0] = temp; in LMathRound()
876 LOperand* temp() { return temps_[0]; } in temp()
[all …]
/external/v8/src/arm/
Dlithium-arm.h312 EmbeddedContainer<LOperand*, T> temps_; variable
320 virtual LOperand* TempAt(int i) FINAL OVERRIDE { return temps_[i]; } in TempAt()
673 temps_[0] = temp; in LModI()
674 temps_[1] = temp2; in LModI()
679 LOperand* temp() { return temps_[0]; } in temp()
680 LOperand* temp2() { return temps_[1]; } in temp2()
728 temps_[0] = temp; in LDivI()
733 LOperand* temp() { return temps_[0]; } in temp()
764 temps_[0] = temp; in LFlooringDivByConstI()
769 LOperand* temp() { return temps_[0]; } in temp()
[all …]
/external/v8/src/mips64/
Dlithium-mips64.h308 EmbeddedContainer<LOperand*, T> temps_; variable
316 virtual LOperand* TempAt(int i) FINAL OVERRIDE { return temps_[i]; } in TempAt()
724 temps_[0] = temp; in LDivI()
729 LOperand* temp() { return temps_[0]; } in temp()
760 temps_[0] = temp; in LFlooringDivByConstI()
765 LOperand* temp() { return temps_[0]; } in temp()
856 temps_[0] = temp; in LMathFloor()
860 LOperand* temp() { return temps_[0]; } in temp()
871 temps_[0] = temp; in LMathRound()
875 LOperand* temp() { return temps_[0]; } in temp()
[all …]
/external/v8/src/
Dscopes.cc76 temps_(4, zone), in Scope()
102 temps_(4, zone), in Scope()
127 temps_(0, zone), in Scope()
348 DCHECK(temps_.is_empty()); in FinalizeBlockScope()
520 temps_.Add(var, zone()); in NewTemporary()
600 for (int i = 0; i < temps_.length(); i++) { in CollectStackAndContextLocals()
601 Variable* var = temps_[i]; in CollectStackAndContextLocals()
903 if (temps_.length() > 0) { in Print()
905 for (int i = 0; i < temps_.length(); i++) { in Print()
906 PrintVar(n1, temps_[i]); in Print()
[all …]
Dscopes.h441 ZoneList<Variable*> temps_; variable