Home
last modified time | relevance | path

Searched refs:ATOM (Results 1 – 25 of 53) sorted by relevance

123

/external/llvm/test/CodeGen/X86/
Dselect.ll2 ; RUN: llc < %s -mtriple=x86_64-apple-darwin10 -mcpu=atom | FileCheck -check-prefix=ATOM %s
17 ; ATOM-LABEL: test1:
18 ; ATOM: cmovneq %rdi, %rsi
19 ; ATOM: movl (%rsi), %eax
40 ; ATOM-LABEL: test2:
41 ; ATOM: cmovnew
42 ; ATOM: cwtl
57 ; ATOM-LABEL: test3:
58 ; ATOM: movss {{.*}},4), %xmm0
71 ; ATOM-LABEL: test4:
[all …]
Datom-lea-sp.ll1 ; RUN: llc < %s -mcpu=atom -mtriple=i686-linux | FileCheck -check-prefix=ATOM %s
8 ; ATOM-LABEL: test1:
9 ; ATOM: leal -1052(%esp), %esp
10 ; ATOM-NOT: sub
11 ; ATOM: call
12 ; ATOM: leal 1052(%esp), %esp
25 ; ATOM-LABEL: test2:
26 ; ATOM: leal -28(%esp), %esp
27 ; ATOM: call
28 ; ATOM: leal 28(%esp), %esp
[all …]
Dfast-isel-mem.ll2 ; RUN: llc < %s -fast-isel -mtriple=i386-apple-darwin -mcpu=atom | FileCheck -check-prefix=ATOM %s
22 ; ATOM: loadgv:
23 ; ATOM: movl L_src$non_lazy_ptr, %ecx
24 ; ATOM: movl (%ecx), %eax
25 ; ATOM: addl (%ecx), %eax
26 ; ATOM: movl %eax, (%ecx)
27 ; ATOM: ret
42 ; ATOM: _t:
43 ; ATOM: movl L_LotsStuff$non_lazy_ptr, %e{{..}}
44 ; ATOM: xorl %e{{..}}, %e{{..}}
Dlsr-static-addr.ll2 …nknown-linux-gnu -relocation-model=static -asm-verbose=false < %s | FileCheck -check-prefix=ATOM %s
14 ; ATOM: xorl %eax, %eax
15 ; ATOM: movsd .LCPI0_0(%rip), %xmm0
16 ; ATOM: align
17 ; ATOM-NEXT: BB0_2:
18 ; ATOM-NEXT: movsd A(,%rax,8)
19 ; ATOM-NEXT: mulsd
20 ; ATOM-NEXT: movsd
21 ; ATOM-NEXT: incq %rax
Datom-call-reg-indirect.ll2 ; RUN: llc < %s -mcpu=core2 -mtriple=i686-linux | FileCheck -check-prefix=ATOM-NOT32 %s
4 ; RUN: llc < %s -mcpu=core2 -mtriple=x86_64-linux | FileCheck -check-prefix=ATOM-NOT64 %s
13 ;ATOM-LABEL: test1:
21 ;ATOM-NOT32: calll *(%ecx)
24 ;ATOM-NOT64: callq *(%rcx)
39 ;ATOM-LABEL: test2:
45 ;ATOM-NOT: calll *(%eax)
48 ;ATOM-NOT64: callq *(%rax)
Dphys-reg-local-regalloc.ll3 …i386-apple-darwin9 -mcpu=atom -regalloc=fast -optimize-regalloc=0 | FileCheck -check-prefix=ATOM %s
22 ; ATOM: movl 24(%esp), %eax
23 ; ATOM: movl
24 ; ATOM: movl %eax, 36(%esp)
25 ; ATOM-NOT: movl
26 ; ATOM: movl 28(%esp), %ebx
27 ; ATOM-NOT: movl
28 ; ATOM: movl %ebx, 40(%esp)
29 ; ATOM-NOT: movl
30 ; ATOM: addl %ebx, %eax
Dfull-lsr.ll2 ; RUN: llc < %s -march=x86 -mcpu=atom | FileCheck -check-prefix=ATOM %s
5 ; ATOM: foo
6 ; ATOM: addl
7 ; ATOM: addl
8 ; ATOM: leal
Dlsr-loop-exit-cond.ll2 ; RUN: llc -mtriple=x86_64-darwin -mcpu=atom < %s | FileCheck -check-prefix=ATOM %s
9 ; ATOM-LABEL: t:
10 ; ATOM: movl (%r9,%r{{.+}},4), %e{{..}}
11 ; ATOM-NEXT: decq
12 ; ATOM-NEXT: jne
158 ; ATOM-LABEL: f:
159 ; ATOM: %for.body
160 ; ATOM: incl [[IV:%e..]]
161 ; ATOM: cmpl $1, [[IV]]
162 ; ATOM: jne
[all …]
Dwiden_cast-1.ll2 ; RUN: llc -march=x86 -mcpu=atom < %s | FileCheck -check-prefix=ATOM %s
11 ; ATOM: movl
12 ; ATOM: paddw
13 ; ATOM: movq
Dwin64_eh.ll3 …tr=sse2 -mtriple=x86_64-pc-mingw32 -mcpu=atom | FileCheck %s -check-prefix=WIN64 -check-prefix=ATOM
25 ; ATOM: leaq -4000(%rsp), %rsp
89 ; ATOM: leaq -24(%rsp), %rsp
133 ; ATOM: leaq -56(%rsp), %rsp
158 ; ATOM: leaq -96(%rsp), %rsp
Datom-call-reg-indirect-foldedreload32.ll2 ; RUN: FileCheck --check-prefix=ATOM %s
5 ; ATOM: calll *{{%[a-z]+}}
Datom-call-reg-indirect-foldedreload64.ll2 ; RUN: FileCheck --check-prefix=ATOM %s
5 ; ATOM: callq *{{%[a-z]+[0-9]*}}
/external/mesa3d/src/mesa/drivers/dri/r200/
Dr200_ioctl.h85 #define R200_STATECHANGE( rmesa, ATOM ) \ argument
88 rmesa->hw.ATOM.dirty = GL_TRUE; \
92 #define R200_SET_STATE( rmesa, ATOM, index, newvalue ) \ argument
96 if (__dword != (rmesa)->hw.ATOM.cmd[__index]) { \
97 R200_STATECHANGE( (rmesa), ATOM ); \
98 (rmesa)->hw.ATOM.cmd[__index] = __dword; \
102 #define R200_DB_STATE( ATOM ) \ argument
103 memcpy( rmesa->hw.ATOM.lastcmd, rmesa->hw.ATOM.cmd, \
104 rmesa->hw.ATOM.cmd_size * 4)
Dr200_state_init.c627 #define ALLOC_STATE( ATOM, CHK, SZ, NM, IDX ) \ in r200InitState() argument
629 rmesa->hw.ATOM.cmd_size = SZ; \ in r200InitState()
630 rmesa->hw.ATOM.cmd = (GLuint *)CALLOC(SZ * sizeof(int)); \ in r200InitState()
631 rmesa->hw.ATOM.lastcmd = (GLuint *)CALLOC(SZ * sizeof(int)); \ in r200InitState()
632 rmesa->hw.ATOM.name = NM; \ in r200InitState()
633 rmesa->hw.ATOM.idx = IDX; \ in r200InitState()
635 rmesa->hw.ATOM.check = check_##CHK; \ in r200InitState()
638 rmesa->hw.ATOM.check = NULL; \ in r200InitState()
640 rmesa->hw.ATOM.dirty = GL_FALSE; \ in r200InitState()
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_ioctl.h102 #define RADEON_STATECHANGE( rmesa, ATOM ) \ argument
105 rmesa->hw.ATOM.dirty = GL_TRUE; \
109 #define RADEON_DB_STATE( ATOM ) \ argument
110 memcpy( rmesa->hw.ATOM.lastcmd, rmesa->hw.ATOM.cmd, \
111 rmesa->hw.ATOM.cmd_size * 4)
Dradeon_state_init.c514 #define ALLOC_STATE_IDX( ATOM, CHK, SZ, NM, FLAG, IDX ) \ in radeonInitState() argument
516 rmesa->hw.ATOM.cmd_size = SZ; \ in radeonInitState()
517 rmesa->hw.ATOM.cmd = (GLuint *)CALLOC(SZ * sizeof(int)); \ in radeonInitState()
518 rmesa->hw.ATOM.lastcmd = (GLuint *)CALLOC(SZ * sizeof(int)); \ in radeonInitState()
519 rmesa->hw.ATOM.name = NM; \ in radeonInitState()
520 rmesa->hw.ATOM.is_tcl = FLAG; \ in radeonInitState()
521 rmesa->hw.ATOM.check = check_##CHK; \ in radeonInitState()
522 rmesa->hw.ATOM.dirty = GL_TRUE; \ in radeonInitState()
523 rmesa->hw.ATOM.idx = IDX; \ in radeonInitState()
527 #define ALLOC_STATE( ATOM, CHK, SZ, NM, FLAG ) \ in radeonInitState() argument
[all …]
/external/regex-re2/re2/
Dprefilter_tree.cc44 case Prefilter::ATOM: in KeepPart()
146 if (node->op() == Prefilter::ATOM) { in NodeString()
200 if (node->op() == Prefilter::ATOM) { in AssignUniqueIds()
241 case Prefilter::ATOM: in AssignUniqueIds()
379 if (node->op() == Prefilter::ATOM) { in DebugNodeString()
Dprefilter.h26 ATOM, // The string atom() must match enumerator
/external/skia/src/gpu/gl/win/
DSkCreatePlatformGLContext_win.cpp35 static ATOM gWC;
39 ATOM WinGLContext::gWC = 0;
/external/webrtc/webrtc/base/
Dwin32window.h51 static ATOM window_class_;
Dwin32window.cc23 ATOM Win32Window::window_class_ = 0;
/external/v8/src/regexp/
Djsregexp-inl.h42 if (regexp_->TypeTag() == JSRegExp::ATOM) { in FetchNext()
/external/google-breakpad/src/client/windows/tests/crash_generation_app/
Dcrash_generation_app.cc71 ATOM MyRegisterClass(HINSTANCE instance);
92 ATOM MyRegisterClass(HINSTANCE instance) { in MyRegisterClass()
/external/lzma/CPP/Windows/
DWindow.h30 inline ATOM MyRegisterClass(CONST WNDCLASS *wndClass) in MyRegisterClass()
34 ATOM MyRegisterClass(CONST WNDCLASSW *wndClass);
/external/opencv3/samples/directx/
Dwinapp.hpp44 ATOM wc = ::RegisterClassEx(&wcex); in create()

123