HomeSort by relevance Sort by last modified time
    Searched refs:DMB (Results 1 - 13 of 13) sorted by null

  /external/llvm/lib/Target/ARM/
ARMOptimizeBarriersPass.cpp 39 // Returns whether the instruction can safely move past a DMB instruction
54 // DMB ish, dmb sy, dmb osh, etc
57 // Find a dmb. If we can move it until the next dmb, tag the second one for
60 // Will be true when we have seen a DMB, and not seen any instruction since
61 // that cannot move past a DMB
64 if (MI.getOpcode() == ARM::DMB) {
66 // If the Imm of this DMB is the same as that of the last DMB, we ca
    [all...]
  /external/llvm/test/MC/ARM/
invalid-barrier.s 5 @ DMB
7 dmb #0x10
8 dmb imaginary_scope
basic-arm-instructions-v8.s 20 @ DMB (v8 barriers)
22 dmb ishld
23 dmb oshld
24 dmb nshld
25 dmb ld
27 @ CHECK-V8: dmb ishld @ encoding: [0x59,0xf0,0x7f,0xf5]
28 @ CHECK-V8: dmb oshld @ encoding: [0x51,0xf0,0x7f,0xf5]
29 @ CHECK-V8: dmb nshld @ encoding: [0x55,0xf0,0x7f,0xf5]
30 @ CHECK-V8: dmb ld @ encoding: [0x5d,0xf0,0x7f,0xf5]
basic-thumb2-instructions-v8.s 39 @ DMB (v8 barriers)
41 dmb ishld
42 dmb oshld
43 dmb nshld
44 dmb ld
46 @ CHECK-V8: dmb ishld @ encoding: [0xbf,0xf3,0x59,0x8f]
47 @ CHECK-V8: dmb oshld @ encoding: [0xbf,0xf3,0x51,0x8f]
48 @ CHECK-V8: dmb nshld @ encoding: [0xbf,0xf3,0x55,0x8f]
49 @ CHECK-V8: dmb ld @ encoding: [0xbf,0xf3,0x5d,0x8f]
basic-arm-instructions.s 592 @ DMB
594 dmb #0xf
595 dmb #0xe
596 dmb #0xd
597 dmb #0xc
598 dmb #0xb
599 dmb #0xa
600 dmb #0x9
601 dmb #0x8
602 dmb #0x
    [all...]
basic-thumb2-instructions.s 467 @ DMB
469 dmb #0xf
470 dmb #0xe
471 dmb #0xd
472 dmb #0xc
473 dmb #0xb
474 dmb #0xa
475 dmb #0x9
476 dmb #0x8
477 dmb #0x
    [all...]
  /cts/tests/tests/telephony/src/android/telephony/cts/
SmsMessageTest.java 32 private static final String DMB = "{ testBody[^~\\] }";
35 private static final String MB = DMB;
285 assertEquals(DMB, sms.getDisplayMessageBody());
  /external/chromium_org/v8/src/arm64/
disasm-arm64.cc 1189 case DMB: {
1190 mnemonic = "dmb";
    [all...]
constants-arm64.h 696 DMB = MemBarrierFixed | 0x00000020,
    [all...]
assembler-arm64.cc 1760 void Assembler::dmb(BarrierDomain domain, BarrierType type) { function in class:v8::internal::Assembler
    [all...]
  /external/vixl/src/a64/
disasm-a64.cc     [all...]
constants-a64.h 584 DMB = MemBarrierFixed | 0x00000020,
    [all...]
assembler-a64.cc 1202 void Assembler::dmb(BarrierDomain domain, BarrierType type) { function in class:vixl::Assembler
1203 Emit(DMB | ImmBarrierDomain(domain) | ImmBarrierType(type));
    [all...]

Completed in 242 milliseconds