HomeSort by relevance Sort by last modified time
    Searched full:use_position (Results 1 - 6 of 6) sorted by null

  /art/compiler/optimizing/
ssa_liveness_analysis.cc 362 size_t use_position = use.GetPosition(); local
363 if (use_position > end) {
366 if (use_position >= start && !use.IsSynthesized()) {
375 if (free_until[reg] >= use_position) {
391 if (free_until[reg] >= use_position) {
401 // We use the user's lifetime position - 1 (and not `use_position`) because the
ssa_liveness_analysis.h 559 size_t use_position = use.GetPosition(); local
560 if (use_position > end) {
563 if (use_position > position) {
565 return use_position;
596 size_t use_position = use.GetPosition(); local
597 if (use_position > end) {
600 if (use_position > position) {
601 return use_position;
1033 size_t use_position = use.GetPosition(); local
    [all...]
register_allocator_graph_color.cc 1159 size_t use_position = def_position + 1; local
    [all...]
  /external/vixl/doc/aarch32/design/
literal-pool-aarch32.md 108 vixl::aarch64::LiteralPool::UpdateFirstUse(this, use_position=40)
  /external/vixl/src/aarch64/
macro-assembler-aarch64.cc 177 void LiteralPool::UpdateFirstUse(ptrdiff_t use_position) {
178 first_use_ = std::min(first_use_, use_position);
180 first_use_ = use_position;
184 VIXL_ASSERT(use_position > first_use_);
    [all...]
macro-assembler-aarch64.h 138 void UpdateFirstUse(ptrdiff_t use_position);
    [all...]

Completed in 268 milliseconds