Home | History | Annotate | Download | only in runtime

Lines Matching refs:is_volatile

108                                           bool is_volatile) {
112 object_log.LogBooleanValue(field_offset, value, is_volatile);
118 bool is_volatile) {
122 object_log.LogByteValue(field_offset, value, is_volatile);
128 bool is_volatile) {
132 object_log.LogCharValue(field_offset, value, is_volatile);
139 bool is_volatile) {
143 object_log.LogShortValue(field_offset, value, is_volatile);
150 bool is_volatile) {
154 object_log.Log32BitsValue(field_offset, value, is_volatile);
160 bool is_volatile) {
164 object_log.Log64BitsValue(field_offset, value, is_volatile);
170 bool is_volatile) {
174 object_log.LogReferenceValue(field_offset, value, is_volatile);
346 void Transaction::ObjectLog::LogBooleanValue(MemberOffset offset, uint8_t value, bool is_volatile) {
347 LogValue(ObjectLog::kBoolean, offset, value, is_volatile);
350 void Transaction::ObjectLog::LogByteValue(MemberOffset offset, int8_t value, bool is_volatile) {
351 LogValue(ObjectLog::kByte, offset, value, is_volatile);
354 void Transaction::ObjectLog::LogCharValue(MemberOffset offset, uint16_t value, bool is_volatile) {
355 LogValue(ObjectLog::kChar, offset, value, is_volatile);
358 void Transaction::ObjectLog::LogShortValue(MemberOffset offset, int16_t value, bool is_volatile) {
359 LogValue(ObjectLog::kShort, offset, value, is_volatile);
362 void Transaction::ObjectLog::Log32BitsValue(MemberOffset offset, uint32_t value, bool is_volatile) {
363 LogValue(ObjectLog::k32Bits, offset, value, is_volatile);
366 void Transaction::ObjectLog::Log64BitsValue(MemberOffset offset, uint64_t value, bool is_volatile) {
367 LogValue(ObjectLog::k64Bits, offset, value, is_volatile);
372 bool is_volatile) {
373 LogValue(ObjectLog::kReference, offset, reinterpret_cast<uintptr_t>(obj), is_volatile);
379 bool is_volatile) {
384 field_value.is_volatile = is_volatile;
417 if (UNLIKELY(field_value.is_volatile)) {
428 if (UNLIKELY(field_value.is_volatile)) {
439 if (UNLIKELY(field_value.is_volatile)) {
450 if (UNLIKELY(field_value.is_volatile)) {
461 if (UNLIKELY(field_value.is_volatile)) {
472 if (UNLIKELY(field_value.is_volatile)) {
479 if (UNLIKELY(field_value.is_volatile)) {