Lines Matching refs:Mode
52 enum Mode : int8_t { enum
105 RelocInfo(Address pc, Mode rmode, intptr_t data, Code* host,
113 static constexpr bool IsRealRelocMode(Mode mode) { in IsRealRelocMode()
117 static constexpr bool IsGCRelocMode(Mode mode) { in IsGCRelocMode()
120 static constexpr bool IsShareableRelocMode(Mode mode) { in IsShareableRelocMode()
126 static constexpr bool IsCodeTarget(Mode mode) { return mode == CODE_TARGET; } in IsCodeTarget()
127 static constexpr bool IsCodeTargetMode(Mode mode) { in IsCodeTargetMode()
130 static constexpr bool IsRelativeCodeTarget(Mode mode) { in IsRelativeCodeTarget()
133 static constexpr bool IsEmbeddedObject(Mode mode) { in IsEmbeddedObject()
136 static constexpr bool IsRuntimeEntry(Mode mode) { in IsRuntimeEntry()
139 static constexpr bool IsWasmCall(Mode mode) { return mode == WASM_CALL; } in IsWasmCall()
140 static constexpr bool IsWasmStubCall(Mode mode) { in IsWasmStubCall()
143 static constexpr bool IsComment(Mode mode) { return mode == COMMENT; } in IsComment()
144 static constexpr bool IsConstPool(Mode mode) { return mode == CONST_POOL; } in IsConstPool()
145 static constexpr bool IsVeneerPool(Mode mode) { return mode == VENEER_POOL; } in IsVeneerPool()
146 static constexpr bool IsDeoptPosition(Mode mode) { in IsDeoptPosition()
149 static constexpr bool IsDeoptReason(Mode mode) { in IsDeoptReason()
152 static constexpr bool IsDeoptId(Mode mode) { return mode == DEOPT_ID; } in IsDeoptId()
153 static constexpr bool IsExternalReference(Mode mode) { in IsExternalReference()
156 static constexpr bool IsInternalReference(Mode mode) { in IsInternalReference()
159 static constexpr bool IsInternalReferenceEncoded(Mode mode) { in IsInternalReferenceEncoded()
162 static constexpr bool IsOffHeapTarget(Mode mode) { in IsOffHeapTarget()
165 static constexpr bool IsNone(Mode mode) { return mode == NONE; } in IsNone()
166 static constexpr bool IsWasmReference(Mode mode) { in IsWasmReference()
169 static constexpr bool IsJsToWasmCall(Mode mode) { in IsJsToWasmCall()
172 static constexpr bool IsWasmPtrReference(Mode mode) { in IsWasmPtrReference()
176 static bool IsOnlyForSerializer(Mode mode) { in IsOnlyForSerializer()
189 static constexpr int ModeMask(Mode mode) { return 1 << mode; } in ModeMask()
193 Mode rmode() const { return rmode_; } in rmode()
312 static const char* RelocModeName(Mode rmode);
335 Mode rmode_;
370 inline void WriteMode(RelocInfo::Mode rmode);
371 inline void WriteModeAndPC(uint32_t pc_delta, RelocInfo::Mode rmode);
426 RelocInfo::Mode GetMode();
439 bool SetMode(RelocInfo::Mode mode) { in SetMode()