Home | History | Annotate | Download | only in arm64

Lines Matching defs:rmode

298   RelocInfo::Mode rmode = immediate_.rmode();
300 if (rmode == RelocInfo::EXTERNAL_REFERENCE) {
304 return !RelocInfo::IsNone(rmode);
1690 RecordRelocInfo(imm.rmode(), imm.value());
2949 void Assembler::RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data) {
2951 RelocInfo rinfo(isolate(), reinterpret_cast<byte*>(pc_), rmode, data, NULL);
2952 if (((rmode >= RelocInfo::COMMENT) &&
2953 (rmode <= RelocInfo::DEBUG_BREAK_SLOT_AT_TAIL_CALL)) ||
2954 (rmode == RelocInfo::INTERNAL_REFERENCE) ||
2955 (rmode == RelocInfo::CONST_POOL) || (rmode == RelocInfo::VENEER_POOL) ||
2956 (rmode == RelocInfo::DEOPT_SCRIPT_OFFSET) ||
2957 (rmode == RelocInfo::DEOPT_INLINING_ID) ||
2958 (rmode == RelocInfo::DEOPT_REASON) || (rmode == RelocInfo::DEOPT_ID)) {
2960 DCHECK(RelocInfo::IsDebugBreakSlot(rmode) || RelocInfo::IsComment(rmode) ||
2961 RelocInfo::IsDeoptReason(rmode) || RelocInfo::IsDeoptId(rmode) ||
2962 RelocInfo::IsDeoptPosition(rmode) ||
2963 RelocInfo::IsInternalReference(rmode) ||
2964 RelocInfo::IsConstPool(rmode) || RelocInfo::IsVeneerPool(rmode));
2967 constpool_.RecordEntry(data, rmode);
2973 if (!RelocInfo::IsNone(rmode)) {
2975 if (rmode == RelocInfo::EXTERNAL_REFERENCE &&
2980 if (rmode == RelocInfo::CODE_TARGET_WITH_ID) {
2982 rmode, RecordedAstId().ToInt(), NULL);