Home
last modified time | relevance | path

Searched refs:first_use_ (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/compiler/
Dnode.cc241 for (const Use* use = first_use_; use; use = use->next) { in UseCount()
249 DCHECK(this->first_use_ == nullptr || this->first_use_->prev == nullptr); in ReplaceUses()
250 DCHECK(that->first_use_ == nullptr || that->first_use_->prev == nullptr); in ReplaceUses()
254 for (Use* use = this->first_use_; use; use = use->next) { in ReplaceUses()
260 last_use->next = that->first_use_; in ReplaceUses()
261 if (that->first_use_) that->first_use_->prev = last_use; in ReplaceUses()
262 that->first_use_ = this->first_use_; in ReplaceUses()
264 first_use_ = nullptr; in ReplaceUses()
270 for (Use* use = first_use_; use; use = use->next) { in OwnedBy()
296 first_use_(nullptr) { in Node()
[all …]
Dnode.h184 return first_use_ && first_use_->from() == owner && !first_use_->next; in OwnedBy()
315 Use* first_use_; variable
500 : current_(node->first_use_), in iterator()
547 explicit const_iterator(Node* node) : current_(node->first_use_) {} in const_iterator()
/external/vixl/src/vixl/a64/
Dmacro-assembler-a64.cc49 : Pool(masm), size_(0), first_use_(-1), in LiteralPool()
75 first_use_ = -1; in Reset()
84 ptrdiff_t distance = masm_->CursorOffset() + amount - first_use_; in CheckEmitFor()
129 VIXL_ASSERT(masm_->CursorOffset() >= first_use_); in AddEntry()
136 first_use_ = std::min(first_use_, use_position); in UpdateFirstUse()
137 if (first_use_ == -1) { in UpdateFirstUse()
138 first_use_ = use_position; in UpdateFirstUse()
140 SetNextCheckpoint(first_use_ + Instruction::kLoadLiteralRange); in UpdateFirstUse()
142 VIXL_ASSERT(use_position > first_use_); in UpdateFirstUse()
Dmacro-assembler-a64.h129 ptrdiff_t first_use_; variable
154 return first_use_ + kRecommendedLiteralPoolRange; in NextRecommendedCheckpoint()
/external/v8/src/arm64/
Dassembler-arm64.cc304 first_use_ = offset; in RecordEntry()
325 DCHECK(first_use_ >= 0); in DistanceToFirstUse()
326 return assm_->pc_offset() - first_use_; in DistanceToFirstUse()
337 return first_use_ + kMaxLoadLiteralRange - WorstCaseSize(); in MaxPcOffset()
431 first_use_ = -1; in Clear()
534 first_use_ = -1; in EmitEntries()
Dassembler-arm64.h686 first_use_(-1), in ConstPool()
721 int first_use_; variable