Home | History | Annotate | Download | only in RuntimeDyld

Lines Matching defs:Placeholder

301     // Get the placeholder value from the generated object since
303 uint32_t *Placeholder =
307 int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
314 // Get the placeholder value from the generated object since
316 uint64_t *Placeholder =
320 *Target = *Placeholder + Value + Addend - FinalAddress;
331 // Get the placeholder value from the generated object since
333 uint32_t *Placeholder =
336 *Target = *Placeholder + Value + Addend;
340 // Get the placeholder value from the generated object since
342 uint32_t *Placeholder =
346 uint32_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
503 uint32_t *Placeholder =
526 *TargetPtr = *Placeholder + Value;
534 assert((*Placeholder & 0x000F0FFF) == 0);
536 *TargetPtr = *Placeholder | (Value & 0xFFF);
544 assert((*Placeholder & 0x000F0FFF) == 0);
547 *TargetPtr = *Placeholder | (Value & 0xFFF);
574 uint32_t *Placeholder =
590 *TargetPtr = Value + (*Placeholder);
593 *TargetPtr = ((*Placeholder) & 0xfc000000) | ((Value & 0x0fffffff) >> 2);
597 Value += ((*Placeholder) & 0x0000ffff) << 16;
599 ((*Placeholder) & 0xffff0000) | (((Value + 0x8000) >> 16) & 0xffff);
602 Value += ((*Placeholder) & 0x0000ffff);
603 *TargetPtr = ((*Placeholder) & 0xffff0000) | (Value & 0xffff);