Lines Matching defs:mode
127 static constexpr bool IsRealRelocMode(Mode mode) { in IsRealRelocMode()
131 static constexpr bool IsGCRelocMode(Mode mode) { in IsGCRelocMode()
134 static constexpr bool IsShareableRelocMode(Mode mode) { in IsShareableRelocMode()
138 static constexpr bool IsCodeTarget(Mode mode) { return mode == CODE_TARGET; } in IsCodeTarget()
139 static constexpr bool IsCodeTargetMode(Mode mode) { in IsCodeTargetMode()
142 static constexpr bool IsRelativeCodeTarget(Mode mode) { in IsRelativeCodeTarget()
145 static constexpr bool IsFullEmbeddedObject(Mode mode) { in IsFullEmbeddedObject()
148 static constexpr bool IsCompressedEmbeddedObject(Mode mode) { in IsCompressedEmbeddedObject()
151 static constexpr bool IsDataEmbeddedObject(Mode mode) { in IsDataEmbeddedObject()
154 static constexpr bool IsEmbeddedObjectMode(Mode mode) { in IsEmbeddedObjectMode()
159 static constexpr bool IsRuntimeEntry(Mode mode) { in IsRuntimeEntry()
162 static constexpr bool IsWasmCall(Mode mode) { return mode == WASM_CALL; } in IsWasmCall()
163 static constexpr bool IsWasmReference(Mode mode) { return mode == WASM_CALL; } in IsWasmReference()
164 static constexpr bool IsWasmStubCall(Mode mode) { in IsWasmStubCall()
167 static constexpr bool IsConstPool(Mode mode) { return mode == CONST_POOL; } in IsConstPool()
168 static constexpr bool IsVeneerPool(Mode mode) { return mode == VENEER_POOL; } in IsVeneerPool()
169 static constexpr bool IsDeoptPosition(Mode mode) { in IsDeoptPosition()
172 static constexpr bool IsDeoptReason(Mode mode) { in IsDeoptReason()
175 static constexpr bool IsDeoptId(Mode mode) { return mode == DEOPT_ID; } in IsDeoptId()
176 static constexpr bool IsLiteralConstant(Mode mode) { in IsLiteralConstant()
179 static constexpr bool IsDeoptNodeId(Mode mode) { in IsDeoptNodeId()
182 static constexpr bool IsExternalReference(Mode mode) { in IsExternalReference()
185 static constexpr bool IsInternalReference(Mode mode) { in IsInternalReference()
188 static constexpr bool IsInternalReferenceEncoded(Mode mode) { in IsInternalReferenceEncoded()
191 static constexpr bool IsOffHeapTarget(Mode mode) { in IsOffHeapTarget()
194 static constexpr bool IsNoInfo(Mode mode) { return mode == NO_INFO; } in IsNoInfo()
196 static bool IsOnlyForSerializer(Mode mode) { in IsOnlyForSerializer()
209 static constexpr int ModeMask(Mode mode) { return 1 << mode; } in ModeMask()
315 Mode mode = rmode(); in Visit() local
483 bool SetMode(RelocInfo::Mode mode) { in SetMode()