Home | History | Annotate | Download | only in a64

Lines Matching refs:pc_

367   pc_ = buffer_;
373 VIXL_ASSERT(finalized_ || (pc_ == buffer_));
380 VIXL_ASSERT((pc_ >= buffer_) && (pc_ < buffer_ + buffer_size_));
382 memset(buffer_, 0, pc_ - buffer_);
385 pc_ = buffer_;
387 next_literal_pool_check_ = pc_ + kLiteralPoolCheckInterval;
401 label->target_ = pc_;
417 VIXL_STATIC_ASSERT(sizeof(*pc_) == 1);
419 offset = label->target() - pc_;
421 offset = label->link() - pc_;
425 label->set_link(pc_);
2142 literals_.push_front(new Literal(pc_, imm, size));
2166 intptr_t distance = pc_ - literals_.back()->pc_;
2201 Instruction* load_literal = (*it)->pc_;
2202 load_literal->SetImmLLiteral(pc_);
2207 VIXL_ASSERT((pc_ + size) <= (buffer_ + buffer_size_));
2208 memcpy(pc_, &value, size);
2209 pc_ += size;
2227 next_literal_pool_check_ = pc_ + kLiteralPoolCheckInterval;