HomeSort by relevance Sort by last modified time
    Searched refs:temps_ (Results 1 - 12 of 12) sorted by null

  /external/v8/src/crankshaft/arm64/
lithium-arm64.h 302 EmbeddedContainer<LOperand*, T> temps_; member in class:v8::internal::LTemplateInstruction
310 LOperand* TempAt(int i) final { return temps_[i]; }
613 temps_[0] = temp1;
614 temps_[1] = temp2;
615 temps_[2] = temp3;
620 LOperand* temp1() { return temps_[0]; }
621 LOperand* temp2() { return temps_[1]; }
622 LOperand* temp3() { return temps_[2]; }
653 temps_[0] = temp;
656 LOperand* temp() { return temps_[0];
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-ia32.h 299 EmbeddedContainer<LOperand*, T> temps_; member in class:v8::internal::LTemplateInstruction
307 LOperand* TempAt(int i) final { return temps_[i]; }
529 temps_[0] = temp;
534 LOperand* temp() { return temps_[0]; }
631 temps_[0] = temp1;
632 temps_[1] = temp2;
637 LOperand* temp1() { return temps_[0]; }
638 LOperand* temp2() { return temps_[1]; }
653 temps_[0] = temp;
658 LOperand* temp() { return temps_[0];
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-x87.h 304 EmbeddedContainer<LOperand*, T> temps_; member in class:v8::internal::LTemplateInstruction
312 LOperand* TempAt(int i) final { return temps_[i]; }
545 temps_[0] = temp;
550 LOperand* temp() { return temps_[0]; }
647 temps_[0] = temp1;
648 temps_[1] = temp2;
653 LOperand* temp1() { return temps_[0]; }
654 LOperand* temp2() { return temps_[1]; }
669 temps_[0] = temp;
674 LOperand* temp() { return temps_[0];
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.h 301 EmbeddedContainer<LOperand*, T> temps_; member in class:v8::internal::LTemplateInstruction
309 LOperand* TempAt(int i) final { return temps_[i]; }
630 temps_[0] = temp1;
631 temps_[1] = temp2;
636 LOperand* temp1() { return temps_[0]; }
637 LOperand* temp2() { return temps_[1]; }
652 temps_[0] = temp;
657 LOperand* temp() { return temps_[0]; }
690 temps_[0] = temp1;
691 temps_[1] = temp2
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-arm.h 298 EmbeddedContainer<LOperand*, T> temps_; member in class:v8::internal::LTemplateInstruction
306 LOperand* TempAt(int i) final { return temps_[i]; }
641 temps_[0] = temp;
642 temps_[1] = temp2;
647 LOperand* temp() { return temps_[0]; }
648 LOperand* temp2() { return temps_[1]; }
696 temps_[0] = temp;
701 LOperand* temp() { return temps_[0]; }
732 temps_[0] = temp;
737 LOperand* temp() { return temps_[0];
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-mips.h 295 EmbeddedContainer<LOperand*, T> temps_; member in class:v8::internal::LTemplateInstruction
303 LOperand* TempAt(int i) final { return temps_[i]; }
690 temps_[0] = temp;
695 LOperand* temp() { return temps_[0]; }
726 temps_[0] = temp;
731 LOperand* temp() { return temps_[0]; }
822 temps_[0] = temp;
826 LOperand* temp() { return temps_[0]; }
837 temps_[0] = temp;
841 LOperand* temp() { return temps_[0];
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-mips64.h 298 EmbeddedContainer<LOperand*, T> temps_; member in class:v8::internal::LTemplateInstruction
306 LOperand* TempAt(int i) final { return temps_[i]; }
693 temps_[0] = temp;
698 LOperand* temp() { return temps_[0]; }
729 temps_[0] = temp;
734 LOperand* temp() { return temps_[0]; }
840 temps_[0] = temp;
844 LOperand* temp() { return temps_[0]; }
855 temps_[0] = temp;
859 LOperand* temp() { return temps_[0];
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-ppc.h 294 EmbeddedContainer<LOperand*, T> temps_; member in class:v8::internal::LTemplateInstruction
302 LOperand* TempAt(int i) final { return temps_[i]; }
712 temps_[0] = temp;
717 LOperand* temp() { return temps_[0]; }
835 temps_[0] = temp;
839 LOperand* temp() { return temps_[0]; }
896 temps_[0] = temp1;
897 temps_[1] = temp2;
898 temps_[2] = double_temp;
903 LOperand* temp1() { return temps_[0];
    [all...]
  /art/compiler/optimizing/
locations.h 513 temps_.push_back(location);
517 return temps_[at];
521 DCHECK(temps_[at].IsUnallocated() || temps_[at].IsInvalid());
522 temps_[at] = location;
526 return temps_.size();
529 bool HasTemps() const { return !temps_.empty(); }
603 ArenaVector<Location> temps_;
locations.cc 29 temps_(instruction->GetBlock()->GetGraph()->GetArena()->Adapter(kArenaAllocLocationSummary)),
  /external/v8/src/ast/
scopes.cc 97 temps_(4, zone),
120 temps_(4, zone),
146 temps_(0, zone),
362 DCHECK(temps_.is_empty());
586 for (int i = temps_.length(); i-- > 0;) {
587 if (temps_[i] == var) {
588 temps_.Remove(i);
674 for (int i = 0; i < temps_.length(); i++) {
675 Variable* var = temps_[i];
    [all...]
scopes.h 219 void AddTemporary(Variable* var) { temps_.Add(var, zone()); }
625 ZoneList<Variable*> temps_; member in class:v8::internal::Scope
    [all...]

Completed in 1175 milliseconds