Home | History | Annotate | Download | only in mips64

Lines Matching full:buffer_

90     buffer_.Store<uint32_t>(overwrite_location_, value);
94 AssemblerBuffer::EnsureCapacity ensured(&buffer_);
95 buffer_.Emit<uint32_t>(value);
2794 uint32_t bound_pc = buffer_.Size();
2806 uint32_t prev = buffer_.Load<uint32_t>(branch_location);
2879 branches_.emplace_back(buffer_.Size(), target, /* is_call */ false, is_bare);
2894 branches_.emplace_back(is_r6, buffer_.Size(), target, condition, lhs, rhs, is_bare);
2900 branches_.emplace_back(buffer_.Size(), target, /* is_call */ true, is_bare);
2907 branches_.emplace_back(buffer_.Size(), dest_reg, Branch::kLabel);
2947 branches_.emplace_back(buffer_.Size(), dest_reg, literal_type);
2965 size_t orig_size = buffer_.Size();
2967 if (required_capacity > buffer_.Capacity()) {
2968 buffer_.ExtendCapacity(required_capacity);
2971 buffer_.has_ensured_capacity_ = true;
2978 buffer_.Emit<uint32_t>(0x1abe1234u);
2982 buffer_.has_ensured_capacity_ = false;
3001 CHECK_EQ(buffer_.Load<uint32_t>(overwrite_location_), 0x1abe1234u);
3017 AssemblerBuffer::EnsureCapacity ensured(&buffer_);
3020 buffer_.Emit<uint8_t>(literal.GetData()[i]);
3031 AssemblerBuffer::EnsureCapacity ensured(&buffer_);
3034 buffer_.Emit<uint8_t>(literal.GetData()[i]);
3067 uint32_t old_size = buffer_.Size();
3068 buffer_.Resize(old_size + size_delta);
3074 buffer_.Move(branch.GetEndLocation(), branch.GetOldEndLocation(), size);
3084 size_t buf_size = buffer_.Size();
3088 buffer_.Move(first_literal_location - sizeof(uint32_t), first_literal_location, lit_size);
3090 buffer_.Resize(buf_size - sizeof(uint32_t));