Searched refs:alias_base_index (Results 1 – 3 of 3) sorted by relevance
/third_party/node/deps/v8/src/codegen/ |
D | register-configuration.cc | 306 int* alias_base_index) const { in GetAliases() 310 *alias_base_index = index; in GetAliases() 322 *alias_base_index = base_index; in GetAliases() 326 *alias_base_index = index >> shift; in GetAliases()
|
D | register-configuration.h | 119 MachineRepresentation other_rep, int* alias_base_index) const;
|
/third_party/node/deps/v8/src/compiler/backend/ |
D | register-allocator.cc | 1505 int alias_base_index = -1; in MarkFixedUse() local 1507 rep, index, MachineRepresentation::kFloat64, &alias_base_index); in MarkFixedUse() 1508 DCHECK(aliases > 0 || (aliases == 0 && alias_base_index == -1)); in MarkFixedUse() 1510 int aliased_reg = alias_base_index + aliases; in MarkFixedUse() 1539 int alias_base_index = -1; in HasFixedUse() local 1541 rep, index, MachineRepresentation::kFloat64, &alias_base_index); in HasFixedUse() 1542 DCHECK(aliases > 0 || (aliases == 0 && alias_base_index == -1)); in HasFixedUse() 1545 int aliased_reg = alias_base_index + aliases; in HasFixedUse() 1573 int alias_base_index = -1; in MarkAllocated() local 1575 rep, index, MachineRepresentation::kFloat64, &alias_base_index); in MarkAllocated() [all …]
|