Lines Matching defs:pc
214 // Labels represent pc locations; they are typically jump or call targets.
216 // unknown pc location. Assembler::bind() is used to bind a label to the
217 // current pc. A label can be bound only once.
299 // Relocation information consists of the address (pc) of the datum
326 // pc + the tag for the data, and kPointerSize for the actual pointer to the
330 // The maximum size for a call instruction including pc-jump.
333 // The maximum pc delta that will use the short encoding.
380 RelocInfo(byte* pc, Mode rmode, intptr_t data, Code* host)
381 : pc_(pc), rmode_(rmode), data_(data), host_(host) {
383 RelocInfo(byte* pc, double data64)
384 : pc_(pc), rmode_(NONE64), data64_(data64), host_(NULL) {
457 byte* pc() const { return pc_; }
458 void set_pc(byte* pc) { pc_ = pc; }
622 RelocInfoWriter(byte* pos, byte* pc) : pos_(pos),
623 last_pc_(pc),
634 void Reposition(byte* pos, byte* pc) {
636 last_pc_ = pc;