Home
last modified time | relevance | path

Searched refs:class_bits (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/gallium/drivers/vc4/
Dvc4_register_allocate.c258 uint8_t class_bits[c->num_temps]; in vc4_register_allocate() local
295 memset(class_bits, in vc4_register_allocate()
297 sizeof(class_bits)); in vc4_register_allocate()
308 class_bits[i] &= ~CLASS_BIT_R4; in vc4_register_allocate()
317 class_bits[inst->dst.index] &= ~CLASS_BIT_R4; in vc4_register_allocate()
323 class_bits[inst->dst.index] &= ~CLASS_BIT_R4; in vc4_register_allocate()
339 class_bits[inst->src[0].index] &= CLASS_BIT_R0_R3; in vc4_register_allocate()
348 class_bits[i] &= ~(CLASS_BIT_R0_R3 | in vc4_register_allocate()
361 class_bits[inst->dst.index] &= CLASS_BIT_A; in vc4_register_allocate()
372 class_bits[inst->src[i].index] &= in vc4_register_allocate()
[all …]
/external/mesa3d/src/broadcom/compiler/
Dvir_register_allocate.c509 uint8_t class_bits[c->num_temps]; in v3d_register_allocate() local
563 memset(class_bits, CLASS_BITS_ANY, sizeof(class_bits)); in v3d_register_allocate()
605 class_bits[inst->dst.index] &= CLASS_BIT_PHYS; in v3d_register_allocate()
618 class_bits[inst->dst.index] &= CLASS_BIT_PHYS; in v3d_register_allocate()
651 class_bits[inst->dst.index] &= ~CLASS_BIT_R5; in v3d_register_allocate()
658 class_bits[inst->dst.index] &= in v3d_register_allocate()
670 class_bits[i] &= CLASS_BIT_PHYS; in v3d_register_allocate()
678 if (class_bits[i] == CLASS_BIT_PHYS) { in v3d_register_allocate()
681 } else if (class_bits[i] == (CLASS_BIT_R5)) { in v3d_register_allocate()
684 } else if (class_bits[i] == (CLASS_BIT_PHYS | CLASS_BIT_ACC)) { in v3d_register_allocate()
[all …]
/external/llvm-project/lldb/examples/summaries/cocoa/
Dobjc_runtime.py532 self.class_bits = (pointer & 0xE) >> 1
536 if self.class_bits in TaggedClass_Values_Lion:
537 self.name = TaggedClass_Values_Lion[self.class_bits]
542 if self.class_bits in TaggedClass_Values_NMOS:
543 self.name = TaggedClass_Values_NMOS[self.class_bits]
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCRuntimeV2.cpp2206 uint64_t class_bits = (ptr & 0xE) >> 1; in GetClassDescriptor() local
2216 switch (class_bits) { in GetClassDescriptor()
2236 switch (class_bits) { in GetClassDescriptor()