Searched refs:pc_ (Results 1 - 25 of 47) sorted by relevance

12

/external/chromium_org/v8/src/
H A Dregexp-macro-assembler-irregexp-inl.h24 DCHECK(pc_ <= buffer_.length());
25 if (pc_ + 3 >= buffer_.length()) {
28 *reinterpret_cast<uint32_t*>(buffer_.start() + pc_) = word;
29 pc_ += 4;
34 DCHECK(pc_ <= buffer_.length());
35 if (pc_ + 1 >= buffer_.length()) {
38 *reinterpret_cast<uint16_t*>(buffer_.start() + pc_) = word;
39 pc_ += 2;
44 DCHECK(pc_ <= buffer_.length());
45 if (pc_
[all...]
H A Dregexp-macro-assembler-irregexp.cc23 pc_(0),
49 *reinterpret_cast<uint32_t*>(buffer_.start() + fixup) = pc_;
52 l->bind_to(pc_);
65 l->link_to(pc_);
166 if (advance_current_end_ == pc_) {
168 pc_ = advance_current_start_;
200 advance_current_start_ = pc_;
203 advance_current_end_ = pc_;
433 return pc_;
H A Dassembler.h86 int pc_offset() const { return static_cast<int>(pc_ - buffer_); }
102 byte* pc_; member in class:v8::internal::AssemblerBase
381 : pc_(pc), rmode_(rmode), data_(data), host_(host) {
384 : pc_(pc), rmode_(NONE64), data64_(data64), host_(NULL) {
457 byte* pc() const { return pc_; }
458 void set_pc(byte* pc) { pc_ = pc; }
594 // On ARM, note that pc_ is the address of the constant pool entry
598 byte* pc_; member in class:v8::internal::RelocInfo
H A Dassembler.cc144 pc_ = buffer_;
497 rinfo_.pc_ += *pos_ >> kTagBits;
502 rinfo_.pc_ += *--pos_;
556 rinfo_.pc_ += pc_jump << kSmallPCDeltaBits;
680 rinfo_.pc_ = old_code_age_sequence;
690 rinfo_.pc_ = code->instruction_start();
714 rinfo_.pc_ = desc.buffer;
798 os << pc_ << " " << RelocModeName(rmode_);
871 DCHECK(Code::IsYoungSequence(isolate, pc_) || code_age_stub()->IsCode());
H A Dregexp-macro-assembler-irregexp.h108 int pc_; member in class:v8::internal::RegExpMacroAssemblerIrregexp
/external/chromium_org/net/proxy/
H A Dproxy_config_service_fixed.cc10 : pc_(pc) {
17 *config = pc_;
H A Dproxy_config_service_fixed.h27 ProxyConfig pc_; member in class:net::ProxyConfigServiceFixed
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dpeerconnectioninterface_unittest.cc130 pc_ = pc;
132 state_ = pc_->signaling_state();
138 EXPECT_EQ(pc_->signaling_state(), new_state);
143 if (pc_.get() == NULL)
151 EXPECT_EQ(pc_->signaling_state(), state_);
176 EXPECT_EQ(pc_->ice_connection_state(), new_state);
180 EXPECT_EQ(pc_->ice_gathering_state(), new_state);
184 pc_->ice_gathering_state());
200 pc_->ice_gathering_state());
216 scoped_refptr<PeerConnectionInterface> pc_; member in class:__anon12635::MockPeerConnectionObserver
560 scoped_refptr<PeerConnectionInterface> pc_; member in class:PeerConnectionInterfaceTest
[all...]
/external/chromium_org/v8/src/x64/
H A Dassembler-x64-inl.h30 Memory::uint32_at(pc_) = x;
31 pc_ += sizeof(uint32_t);
37 Memory::uintptr_at(pc_) = value;
41 pc_ += sizeof(uintptr_t);
46 Memory::uint64_at(pc_) = x;
47 pc_ += sizeof(uint64_t);
52 Memory::uint16_at(pc_) = x;
53 pc_ += sizeof(uint16_t);
231 Memory::Address_at(pc_) += static_cast<int32_t>(delta);
232 if (flush_icache) CpuFeatures::FlushICache(pc_, sizeo
[all...]
/external/chromium_org/v8/src/x87/
H A Dassembler-x87-inl.h59 int32_t* p = reinterpret_cast<int32_t*>(pc_);
63 if (*pc_ == kCallOpcode) {
64 int32_t* p = reinterpret_cast<int32_t*>(pc_ + 1);
71 int32_t* p = reinterpret_cast<int32_t*>(pc_ + 1);
77 int32_t* p = reinterpret_cast<int32_t*>(pc_ + 1);
82 int32_t* p = reinterpret_cast<int32_t*>(pc_);
91 return Assembler::target_address_at(pc_, host_);
99 return reinterpret_cast<Address>(pc_);
117 Assembler::set_target_address_at(pc_, host_, target, icache_flush_mode);
118 Assembler::set_target_address_at(pc_, host
[all...]
H A Dassembler-x87.cc108 *(pc_ + i) = *(instructions + i);
112 CpuFeatures::FlushICache(pc_, instruction_count);
124 CodePatcher patcher(pc_, code_size);
229 *pc_++ = (x)
248 reloc_info_writer.Reposition(buffer_ + buffer_size_, pc_);
259 DCHECK(pc_ <= reloc_info_writer.pos()); // No overlap.
1307 emit(entry - (pc_ + sizeof(int32_t)), rmode);
1377 emit(entry - (pc_ + sizeof(int32_t)), rmode);
1438 emit(entry - (pc_ + sizeof(int32_t)), rmode);
1901 Disassembler::Decode(isolate(), stdout, buffer_, pc_); local
[all...]
/external/chromium_org/v8/src/ia32/
H A Dassembler-ia32-inl.h59 int32_t* p = reinterpret_cast<int32_t*>(pc_);
63 if (*pc_ == kCallOpcode) {
64 int32_t* p = reinterpret_cast<int32_t*>(pc_ + 1);
71 int32_t* p = reinterpret_cast<int32_t*>(pc_ + 1);
77 int32_t* p = reinterpret_cast<int32_t*>(pc_ + 1);
82 int32_t* p = reinterpret_cast<int32_t*>(pc_);
91 return Assembler::target_address_at(pc_, host_);
99 return reinterpret_cast<Address>(pc_);
117 Assembler::set_target_address_at(pc_, host_, target, icache_flush_mode);
130 return Memory::Object_at(pc_);
[all...]
H A Dassembler-ia32.cc113 *(pc_ + i) = *(instructions + i);
117 CpuFeatures::FlushICache(pc_, instruction_count);
129 CodePatcher patcher(pc_, code_size);
234 *pc_++ = (x)
253 reloc_info_writer.Reposition(buffer_ + buffer_size_, pc_);
264 DCHECK(pc_ <= reloc_info_writer.pos()); // No overlap.
1374 emit(entry - (pc_ + sizeof(int32_t)), rmode);
1444 emit(entry - (pc_ + sizeof(int32_t)), rmode);
1505 emit(entry - (pc_ + sizeof(int32_t)), rmode);
2478 Disassembler::Decode(isolate(), stdout, buffer_, pc_); local
[all...]
/external/chromium_org/v8/src/mips64/
H A Dassembler-mips64-inl.h118 byte* p = reinterpret_cast<byte*>(pc_);
127 return Assembler::target_address_at(pc_, host_);
151 // pc_ + Assembler::kInstructionsFor32BitConstant * Assembler::kInstrSize);
153 pc_ + Assembler::kInstructionsFor64BitConstant * Assembler::kInstrSize);
172 Assembler::set_target_address_at(pc_, host_, target, icache_flush_mode);
194 return reinterpret_cast<Object*>(Assembler::target_address_at(pc_, host_));
201 Assembler::target_address_at(pc_, host_)));
209 Assembler::set_target_address_at(pc_, host_,
216 host(), &Memory::Object_at(pc_), HeapObject::cast(target));
223 return Assembler::target_address_at(pc_, host
[all...]
/external/chromium_org/v8/src/mips/
H A Dassembler-mips-inl.h118 uint32_t scope2 = reinterpret_cast<uint32_t>(pc_) & ~kImm28Mask;
121 Assembler::JumpLabelToJumpRegister(pc_);
126 byte* p = reinterpret_cast<byte*>(pc_);
135 return Assembler::target_address_at(pc_, host_);
159 pc_ + Assembler::kInstructionsFor32BitConstant * Assembler::kInstrSize);
178 Assembler::set_target_address_at(pc_, host_, target, icache_flush_mode);
200 return reinterpret_cast<Object*>(Assembler::target_address_at(pc_, host_));
207 Assembler::target_address_at(pc_, host_)));
215 Assembler::set_target_address_at(pc_, host_,
222 host(), &Memory::Object_at(pc_), HeapObjec
[all...]
/external/chromium_org/v8/src/arm/
H A Dassembler-arm-inl.h97 int32_t* p = reinterpret_cast<int32_t*>(pc_);
107 return Assembler::target_address_at(pc_, host_);
116 Assembler::IsMovW(Memory::int32_at(pc_))) {
119 return reinterpret_cast<Address>(pc_);
121 DCHECK(Assembler::IsLdrPcImmediateOffset(Memory::int32_at(pc_)));
129 return Assembler::constant_pool_entry_address(pc_, host_->constant_pool());
142 Assembler::set_target_address_at(pc_, host_, target, icache_flush_mode);
154 return reinterpret_cast<Object*>(Assembler::target_address_at(pc_, host_));
161 Assembler::target_address_at(pc_, host_)));
169 Assembler::set_target_address_at(pc_, host
[all...]
H A Dassembler-arm.cc235 return Assembler::is_constant_pool_load(pc_);
241 Instr* pc = reinterpret_cast<Instr*>(pc_);
248 CpuFeatures::FlushICache(pc_, instruction_count * Assembler::kInstrSize);
466 reloc_info_writer.Reposition(buffer_ + buffer_size_, pc_);
1114 RelocInfo rinfo(pc_, x.rmode_, x.imm32_, NULL);
2511 RelocInfo rinfo(pc_, imm);
3274 pc_ += pc_delta;
3307 *reinterpret_cast<uint8_t*>(pc_) = data;
3308 pc_ += sizeof(uint8_t);
3319 *reinterpret_cast<uint32_t*>(pc_)
[all...]
/external/chromium_org/v8/src/arm64/
H A Dassembler-arm64-inl.h29 Assembler::set_target_address_at(pc_, host_, target, icache_flush_mode);
689 return Assembler::target_address_at(pc_, host_);
697 return Assembler::target_pointer_address_at(pc_);
703 return Assembler::target_pointer_address_at(pc_);
709 return reinterpret_cast<Object*>(Assembler::target_address_at(pc_, host_));
716 Assembler::target_address_at(pc_, host_)));
724 Assembler::set_target_address_at(pc_, host_,
731 host(), &Memory::Object_at(pc_), HeapObject::cast(target));
738 return Assembler::target_address_at(pc_, host_);
767 return Cell::FromValueAddress(Memory::Address_at(pc_));
[all...]
H A Dsimulator-arm64.h293 DCHECK(sizeof(T) == sizeof(pc_));
294 memcpy(&pc_, &new_pc, sizeof(T));
297 Instruction* pc() { return pc_; }
301 pc_ = pc_->following();
312 DCHECK(IsAligned(reinterpret_cast<uintptr_t>(pc_), kInstructionSize));
314 Decode(pc_);
856 Instruction* pc_;
H A Dassembler-arm64.h860 // Record relocation information for current pc_.
919 DCHECK((pc_ >= buffer_) && (pc_ < (buffer_ + buffer_size_)));
920 return pc_ - buffer_;
1734 // character. The instruction pointer (pc_) is then aligned correctly for
1751 Instruction* pc() const { return Instruction::Cast(pc_); }
2081 // Emit the instruction at pc_.
2083 STATIC_ASSERT(sizeof(*pc_) == 1);
2085 DCHECK((pc_ + sizeof(instruction)) <= (buffer_ + buffer_size_));
2087 memcpy(pc_,
[all...]
H A Dsimulator-arm64.cc403 pc_ = NULL;
434 while (pc_ != kEndOfSimAddress) {
1026 if ((breakpoints_.at(i).location == pc_) &&
1035 reinterpret_cast<void*>(pc_));
1043 if (break_on_next_ && pc_->IsBranchAndLinkToRegister()) {
1044 SetBreakpoint(pc_->following());
3332 PrintInstructionsAt(pc_, 1);
3359 // should increment the pc_. If it was set when reaching this debug
3402 int64_t address = reinterpret_cast<int64_t>(pc_); // default value.
3609 pc_
[all...]
/external/vixl/src/a64/
H A Dassembler-a64.h627 : pc_(pc), value_(imm), size_(size) {}
630 Instruction* pc_;
1384 // character. The instruction pointer (pc_) is then aligned correctly for
1392 // Pad with NULL characters until pc_ is aligned.
1395 Instruction* next_pc = AlignUp(pc_, kInstructionSize);
1396 EmitData(&pad, next_pc - pc_);
1664 VIXL_ASSERT((pc_ >= buffer_) && (pc_ < (buffer_ + buffer_size_)));
1665 return pc_ - buffer_;
1671 VIXL_ASSERT((pc_ >
[all...]
H A Dsimulator-a64.h178 inline Instruction* pc() { return pc_; }
180 pc_ = new_pc;
186 pc_ = pc_->NextInstruction();
194 VIXL_ASSERT(IsWordAligned(pc_));
195 decoder_->Decode(pc_);
647 Instruction* pc_; member in class:vixl::Simulator
H A Dassembler-a64.cc367 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_;
[all...]
/external/chromium_org/v8/src/third_party/vtune/
H A Dvtune-jit.cc98 : pc_(pc), pos_(pos) { }
100 intptr_t pc_; member in struct:vTune::internal::JITCodeLineInfo::LineNumInfo
225 static_cast<unsigned int>(Iter->pc_);

Completed in 1235 milliseconds

12