Lines Matching +full:leave +full:- +full:group -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang)

4  * -------
7 * 2004-2009 Nigel McNie (http://qbnz.com/highlighter),
8 * 2009-2011 Benny Baumann (http://qbnz.com/highlighter),
16 * - "Intel64 and IA-32 Architectures Programmer's Reference Manual
17 * Volume 2 (2A & 2B): Instructions Set Reference, A-Z",
18 * Order Number 25383-039US, May 2011
19 * - "Intel Advanced Vector Extensions Programming Reference",
20 * Order Number 319433-011, June 2011
21 * - "AMD64 Architecture Programmer's Manual Volume 3:
22 * General-Purpose and System Instructions", Publication No. 24594,
24 * - "AMD64 Architecture Programmer's Manual Volume 4:
25 * 128-Bit and 256-Bit Media Instructions", Publication No. 26568,
27 * - "AMD64 Architecture Programmer's Manual Volume 5:
28 * 64-Bit Media and x87 Floating-Point Instructions",
30 * - "AMD64 Technology Lightweight Profiling Specification",
32 * - "Application Note 108: Cyrix Extended MMX Instruction Set"
33 * - "VIA Padlock Programming Guide", 3rd May 2005
34 * - http://en.wikipedia.org/wiki/X86_instruction_listings
35 * - NASM 2.10rc8 Online Documenation at
41 * -------
43 * - Rearranged instructions and registers into groups
44 * - Updated to support the following extensions
45 * - CMOV, BMI1, BMI2, TBM, FSGSBASE
46 * - LZCNT, TZCNT, POPCNT, MOVBE, CRC32
47 * - MMX, MMX+, EMMX
48 * - 3dnow!, 3dnow!+, 3dnow! Geode, 3dnow! Prefetch
49 * - SSE, SSE2, SSE3, SSSE3, SSE4A, SSE4.1, SSE4.2
50 * - AVX, AVX2, XOP, FMA3, FMA4, CVT16
51 * - VMX, SVM
52 * - AES, PCLMULQDQ, Padlock, RDRAND
53 * - Updated NASM macros and directives
55 * - Added MMX/SSE/new x86-64 registers, MMX/SSE (up to 4.2) instructions
57 * - Added description of extra language features (SF#1970248)
59 * - Added support for multiple object splitters
61 * - Added support for URLs
62 * - Added binary and hexadecimal regexps
64 * - First Release
67 * -------------------------
85 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
94 'COMMENT_REGEXP' => array(2 => "/^(?:[0-9a-f]{0,4}:)?[0-9a-f]{4}(?:[0-9a-f]{4})?/mi"),
99 /* General-Purpose */
107 'call','ret','enter','leave','syscall','sysenter','int','into',
162 /* SVM (AMD-V) instructions */
425 /* General-Purpose Registers */
460 'section','segment','__sect__','group','absolute',
514 '+', '-', '*', '/', '%',
532 1 => 'color: #00007f; font-weight: bold;',
535 4 => 'color: #46aa03; font-weight: bold;',
536 5 => 'color: #0000ff; font-weight: bold;',
537 6 => 'color: #0000ff; font-weight: bold;'
540 1 => 'color: #666666; font-style: italic;',
541 2 => 'color: #adadad; font-style: italic;'
544 0 => 'color: #000099; font-weight: bold;'
547 0 => 'color: #009900; font-weight: bold;'
559 2 => 'color: #0000ff; font-weight: bold;'
597 'DISALLOWED_BEFORE' => "(?<![a-zA-Z0-9\$_\|\#>|^])",
598 'DISALLOWED_AFTER' => "(?![a-zA-Z0-9_<\|%])"