HomeSort by relevance Sort by last modified time
    Searched refs:kInstructionSize (Results 1 - 25 of 35) sorted by null

1 2

  /external/vixl/test/
test-fuzz-a64.cc 48 Instruction buffer[kInstructionSize];
67 Instruction buffer[kInstructionSize];
90 Instruction buffer[kInstructionSize];
106 Instruction buffer[kInstructionSize];
  /external/vixl/src/a64/
debugger-a64.h 67 const unsigned kTraceParamsOffset = 1 * kInstructionSize;
68 const unsigned kTraceCommandOffset = 2 * kInstructionSize;
69 const unsigned kTraceLength = 3 * kInstructionSize;
76 const unsigned kLogParamsOffset = 1 * kInstructionSize;
77 const unsigned kLogLength = 2 * kInstructionSize;
instructions-a64.h 38 const unsigned kInstructionSize = 4;
340 return this + kInstructionSize;
simulator-a64.h 63 const unsigned kPrintfArgCountOffset = 1 * kInstructionSize;
64 const unsigned kPrintfArgPatternListOffset = 2 * kInstructionSize;
65 const unsigned kPrintfLength = 3 * kInstructionSize;
assembler-a64.h     [all...]
macro-assembler-a64.cc     [all...]
debugger-a64.cc 559 from -= (count - 1) * kInstructionSize;
561 Instruction* to = from + count * kInstructionSize;
    [all...]
  /art/disassembler/
disassembler_arm64.cc 39 return vixl::kInstructionSize;
43 for (const uint8_t* cur = begin; cur < end; cur += vixl::kInstructionSize) {
  /external/chromium_org/v8/test/cctest/
test-fuzz-arm64.cc 43 Instruction buffer[kInstructionSize];
63 Instruction buffer[kInstructionSize];
test-assembler-arm64.cc     [all...]
  /external/chromium_org/v8/src/arm64/
instructions-arm64.h 125 return InstructionAtOffset(count * static_cast<int>(kInstructionSize));
295 kInstructionSize;
367 DCHECK(check == NO_CHECK || IsAddressAligned(addr, kInstructionSize));
435 const unsigned kPrintfArgCountOffset = 1 * kInstructionSize;
436 const unsigned kPrintfArgPatternListOffset = 2 * kInstructionSize;
437 const unsigned kPrintfLength = 3 * kInstructionSize;
458 // kInstructionSize so that subsequent instructions are correctly aligned.
461 const unsigned kDebugCodeOffset = 1 * kInstructionSize;
462 const unsigned kDebugParamsOffset = 2 * kInstructionSize;
463 const unsigned kDebugMessageOffset = 3 * kInstructionSize;
    [all...]
deoptimizer-arm64.cc 20 return 4 * kInstructionSize;
47 PatchingAssembler patcher(call_address, patch_size() / kInstructionSize);
48 patcher.ldr_pcrel(ip0, (2 * kInstructionSize) >> kLoadLiteralScaleLog2);
307 const int Deoptimizer::table_entry_size_ = 2 * kInstructionSize;
instructions-arm64.cc 250 DCHECK(IsAligned(DistanceTo(target), kInstructionSize));
282 DCHECK(IsAligned(DistanceTo(source), kInstructionSize));
debug-arm64.cc 28 // lrd ip0, [pc, #(3 * kInstructionSize)]
34 // ldr ip0, [pc, #(3 * kInstructionSize)]
49 patcher.ldr_pcrel(ip0, (3 * kInstructionSize) >> kLoadLiteralScaleLog2);
90 // ldr ip0, [pc, #(2 * kInstructionSize)]
108 patcher.ldr_pcrel(ip0, (2 * kInstructionSize) >> kLoadLiteralScaleLog2);
assembler-arm64.h 914 static const int kCallSizeWithoutRelocation = 4 * kInstructionSize;
915 static const int kCallSizeWithRelocation = 2 * kInstructionSize;
    [all...]
assembler-arm64-inl.h 602 Address candidate = pc - 2 * kInstructionSize;
632 STATIC_ASSERT(Assembler::kCallSizeWithoutRelocation == 4 * kInstructionSize);
633 STATIC_ASSERT(Assembler::kCallSizeWithRelocation == 2 * kInstructionSize);
778 static const int kNoCodeAgeSequenceLength = 5 * kInstructionSize;
779 static const int kCodeAgeStubEntryOffset = 3 * kInstructionSize;
987 DCHECK(IsAligned(offset, kInstructionSize));
    [all...]
assembler-arm64.cc 195 CpuFeatures::FlushICache(pc_, instruction_count * kInstructionSize);
360 return 4 * kInstructionSize + EntryCount() * kPointerSize;
372 int prologue_size = require_jump ? kInstructionSize : 0;
373 prologue_size += 2 * kInstructionSize;
375 0 : kInstructionSize;
916 return RoundUp(size, kInstructionSize) / kInstructionSize;
921 return kPrintfLength / kInstructionSize;
    [all...]
code-stubs-arm64.h 136 Instruction* instr2 = patcher.InstructionAt(kInstructionSize);
codegen-arm64.cc 364 young_sequence_.length() / kInstructionSize);
370 const int length = kCodeAgeStubEntryOffset / kInstructionSize;
408 kNoCodeAgeSequenceLength / kInstructionSize);
simulator-arm64.h 312 DCHECK(IsAligned(reinterpret_cast<uintptr_t>(pc_), kInstructionSize));
macro-assembler-arm64.cc     [all...]
constants-arm64.h 28 const unsigned kInstructionSize = 4;
    [all...]
  /external/vixl/benchmarks/
bench-branch.cc 53 const unsigned buffer_instruction_count = buffer_size / kInstructionSize - 1;
bench-dataop.cc 53 const unsigned buffer_instruction_count = buffer_size / kInstructionSize - 1;
  /external/chromium_org/v8/src/compiler/arm64/
code-generator-arm64.cc 862 DCHECK((padding_size % kInstructionSize) == 0);
864 masm(), padding_size / kInstructionSize);
868 padding_size -= kInstructionSize;

Completed in 345 milliseconds

1 2