]> code.delx.au - gnu-emacs/blob - lisp/progmodes/cc-engine.el
Merge from origin/emacs-25
[gnu-emacs] / lisp / progmodes / cc-engine.el
1 ;;; cc-engine.el --- core syntax guessing engine for CC mode -*- coding: utf-8 -*-
2
3 ;; Copyright (C) 1985, 1987, 1992-2016 Free Software Foundation, Inc.
4
5 ;; Authors: 2001- Alan Mackenzie
6 ;; 1998- Martin Stjernholm
7 ;; 1992-1999 Barry A. Warsaw
8 ;; 1987 Dave Detlefs
9 ;; 1987 Stewart Clamen
10 ;; 1985 Richard M. Stallman
11 ;; Maintainer: bug-cc-mode@gnu.org
12 ;; Created: 22-Apr-1997 (split from cc-mode.el)
13 ;; Keywords: c languages
14 ;; Package: cc-mode
15
16 ;; This file is part of GNU Emacs.
17
18 ;; GNU Emacs is free software: you can redistribute it and/or modify
19 ;; it under the terms of the GNU General Public License as published by
20 ;; the Free Software Foundation, either version 3 of the License, or
21 ;; (at your option) any later version.
22
23 ;; GNU Emacs is distributed in the hope that it will be useful,
24 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
25 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 ;; GNU General Public License for more details.
27
28 ;; You should have received a copy of the GNU General Public License
29 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
30
31 ;;; Commentary:
32
33 ;; The functions which have docstring documentation can be considered
34 ;; part of an API which other packages can use in CC Mode buffers.
35 ;; Otoh, undocumented functions and functions with the documentation
36 ;; in comments are considered purely internal and can change semantics
37 ;; or even disappear in the future.
38 ;;
39 ;; (This policy applies to CC Mode as a whole, not just this file. It
40 ;; probably also applies to many other Emacs packages, but here it's
41 ;; clearly spelled out.)
42
43 ;; Hidden buffer changes
44 ;;
45 ;; Various functions in CC Mode use text properties for caching and
46 ;; syntactic markup purposes, and those of them that might modify such
47 ;; properties but still don't modify the buffer in a visible way are
48 ;; said to do "hidden buffer changes". They should be used within
49 ;; `c-save-buffer-state' or a similar function that saves and restores
50 ;; buffer modifiedness, disables buffer change hooks, etc.
51 ;;
52 ;; Interactive functions are assumed to not do hidden buffer changes,
53 ;; except in the specific parts of them that do real changes.
54 ;;
55 ;; Lineup functions are assumed to do hidden buffer changes. They
56 ;; must not do real changes, though.
57 ;;
58 ;; All other functions that do hidden buffer changes have that noted
59 ;; in their doc string or comment.
60 ;;
61 ;; The intention with this system is to avoid wrapping every leaf
62 ;; function that do hidden buffer changes inside
63 ;; `c-save-buffer-state'. It should be used as near the top of the
64 ;; interactive functions as possible.
65 ;;
66 ;; Functions called during font locking are allowed to do hidden
67 ;; buffer changes since the font-lock package run them in a context
68 ;; similar to `c-save-buffer-state' (in fact, that function is heavily
69 ;; inspired by `save-buffer-state' in the font-lock package).
70
71 ;; Use of text properties
72 ;;
73 ;; CC Mode uses several text properties internally to mark up various
74 ;; positions, e.g. to improve speed and to eliminate glitches in
75 ;; interactive refontification.
76 ;;
77 ;; Note: This doc is for internal use only. Other packages should not
78 ;; assume that these text properties are used as described here.
79 ;;
80 ;; 'category
81 ;; Used for "indirection". With its help, some other property can
82 ;; be cheaply and easily switched on or off everywhere it occurs.
83 ;;
84 ;; 'syntax-table
85 ;; Used to modify the syntax of some characters. It is used to
86 ;; mark the "<" and ">" of angle bracket parens with paren syntax, and
87 ;; to "hide" obtrusive characters in preprocessor lines.
88 ;;
89 ;; This property is used on single characters and is therefore
90 ;; always treated as front and rear nonsticky (or start and end open
91 ;; in XEmacs vocabulary). It's therefore installed on
92 ;; `text-property-default-nonsticky' if that variable exists (Emacs
93 ;; >= 21).
94 ;;
95 ;; 'c-is-sws and 'c-in-sws
96 ;; Used by `c-forward-syntactic-ws' and `c-backward-syntactic-ws' to
97 ;; speed them up. See the comment blurb before `c-put-is-sws'
98 ;; below for further details.
99 ;;
100 ;; 'c-type
101 ;; This property is used on single characters to mark positions with
102 ;; special syntactic relevance of various sorts. Its primary use is
103 ;; to avoid glitches when multiline constructs are refontified
104 ;; interactively (on font lock decoration level 3). It's cleared in
105 ;; a region before it's fontified and is then put on relevant chars
106 ;; in that region as they are encountered during the fontification.
107 ;; The value specifies the kind of position:
108 ;;
109 ;; 'c-decl-arg-start
110 ;; Put on the last char of the token preceding each declaration
111 ;; inside a declaration style arglist (typically in a function
112 ;; prototype).
113 ;;
114 ;; 'c-decl-end
115 ;; Put on the last char of the token preceding a declaration.
116 ;; This is used in cases where declaration boundaries can't be
117 ;; recognized simply by looking for a token like ";" or "}".
118 ;; `c-type-decl-end-used' must be set if this is used (see also
119 ;; `c-find-decl-spots').
120 ;;
121 ;; 'c-<>-arg-sep
122 ;; Put on the commas that separate arguments in angle bracket
123 ;; arglists like C++ template arglists.
124 ;;
125 ;; 'c-decl-id-start and 'c-decl-type-start
126 ;; Put on the last char of the token preceding each declarator
127 ;; in the declarator list of a declaration. They are also used
128 ;; between the identifiers cases like enum declarations.
129 ;; 'c-decl-type-start is used when the declarators are types,
130 ;; 'c-decl-id-start otherwise.
131 ;;
132 ;; 'c-awk-NL-prop
133 ;; Used in AWK mode to mark the various kinds of newlines. See
134 ;; cc-awk.el.
135
136 ;;; Code:
137
138 (eval-when-compile
139 (let ((load-path
140 (if (and (boundp 'byte-compile-dest-file)
141 (stringp byte-compile-dest-file))
142 (cons (file-name-directory byte-compile-dest-file) load-path)
143 load-path)))
144 (load "cc-bytecomp" nil t)))
145
146 (cc-require 'cc-defs)
147 (cc-require-when-compile 'cc-langs)
148 (cc-require 'cc-vars)
149
150 (eval-when-compile (require 'cl))
151
152 \f
153 ;; Make declarations for all the `c-lang-defvar' variables in cc-langs.
154
155 (defmacro c-declare-lang-variables ()
156 `(progn
157 ,@(c--mapcan (lambda (init)
158 `(,(if (elt init 2)
159 `(defvar ,(car init) nil ,(elt init 2))
160 `(defvar ,(car init) nil))
161 (make-variable-buffer-local ',(car init))))
162 (cdr c-lang-variable-inits))))
163 (c-declare-lang-variables)
164
165 \f
166 ;;; Internal state variables.
167
168 ;; Internal state of hungry delete key feature
169 (defvar c-hungry-delete-key nil)
170 (make-variable-buffer-local 'c-hungry-delete-key)
171
172 ;; The electric flag (toggled by `c-toggle-electric-state').
173 ;; If t, electric actions (like automatic reindentation, and (if
174 ;; c-auto-newline is also set) auto newlining) will happen when an electric
175 ;; key like `{' is pressed (or an electric keyword like `else').
176 (defvar c-electric-flag t)
177 (make-variable-buffer-local 'c-electric-flag)
178
179 ;; Internal state of auto newline feature.
180 (defvar c-auto-newline nil)
181 (make-variable-buffer-local 'c-auto-newline)
182
183 ;; Included in the mode line to indicate the active submodes.
184 ;; (defvar c-submode-indicators nil)
185 ;; (make-variable-buffer-local 'c-submode-indicators)
186
187 (defun c-calculate-state (arg prevstate)
188 ;; Calculate the new state of PREVSTATE, t or nil, based on arg. If
189 ;; arg is nil or zero, toggle the state. If arg is negative, turn
190 ;; the state off, and if arg is positive, turn the state on
191 (if (or (not arg)
192 (zerop (setq arg (prefix-numeric-value arg))))
193 (not prevstate)
194 (> arg 0)))
195
196 \f
197 ;; Basic handling of preprocessor directives.
198
199 ;; This is a dynamically bound cache used together with
200 ;; `c-query-macro-start' and `c-query-and-set-macro-start'. It only
201 ;; works as long as point doesn't cross a macro boundary.
202 (defvar c-macro-start 'unknown)
203
204 (defsubst c-query-and-set-macro-start ()
205 (if (symbolp c-macro-start)
206 (setq c-macro-start (save-excursion
207 (c-save-buffer-state ()
208 (and (c-beginning-of-macro)
209 (point)))))
210 c-macro-start))
211
212 (defsubst c-query-macro-start ()
213 (if (symbolp c-macro-start)
214 (save-excursion
215 (c-save-buffer-state ()
216 (and (c-beginning-of-macro)
217 (point))))
218 c-macro-start))
219
220 ;; One element macro cache to cope with continual movement within very large
221 ;; CPP macros.
222 (defvar c-macro-cache nil)
223 (make-variable-buffer-local 'c-macro-cache)
224 ;; Nil or cons of the bounds of the most recent CPP form probed by
225 ;; `c-beginning-of-macro', `c-end-of-macro' or `c-syntactic-end-of-macro'.
226 ;; The cdr will be nil if we know only the start of the CPP form.
227 (defvar c-macro-cache-start-pos nil)
228 (make-variable-buffer-local 'c-macro-cache-start-pos)
229 ;; The starting position from where we determined `c-macro-cache'.
230 (defvar c-macro-cache-syntactic nil)
231 (make-variable-buffer-local 'c-macro-cache-syntactic)
232 ;; Either nil, or the syntactic end of the macro currently represented by
233 ;; `c-macro-cache'.
234 (defvar c-macro-cache-no-comment nil)
235 (make-variable-buffer-local 'c-macro-cache-no-comment)
236 ;; Either nil, or the last character of the macro currently represented by
237 ;; `c-macro-cache' which isn't in a comment. */
238
239 (defun c-invalidate-macro-cache (beg end)
240 ;; Called from a before-change function. If the change region is before or
241 ;; in the macro characterized by `c-macro-cache' etc., nullify it
242 ;; appropriately. BEG and END are the standard before-change-functions
243 ;; parameters. END isn't used.
244 (cond
245 ((null c-macro-cache))
246 ((< beg (car c-macro-cache))
247 (setq c-macro-cache nil
248 c-macro-cache-start-pos nil
249 c-macro-cache-syntactic nil
250 c-macro-cache-no-comment nil))
251 ((and (cdr c-macro-cache)
252 (< beg (cdr c-macro-cache)))
253 (setcdr c-macro-cache nil)
254 (setq c-macro-cache-start-pos beg
255 c-macro-cache-syntactic nil
256 c-macro-cache-no-comment nil))))
257
258 (defun c-macro-is-genuine-p ()
259 ;; Check that the ostensible CPP construct at point is a real one. In
260 ;; particular, if point is on the first line of a narrowed buffer, make sure
261 ;; that the "#" isn't, say, the second character of a "##" operator. Return
262 ;; t when the macro is real, nil otherwise.
263 (let ((here (point)))
264 (beginning-of-line)
265 (prog1
266 (if (and (eq (point) (point-min))
267 (/= (point) 1))
268 (save-restriction
269 (widen)
270 (beginning-of-line)
271 (and (looking-at c-anchored-cpp-prefix)
272 (eq (match-beginning 1) here)))
273 t)
274 (goto-char here))))
275
276 (defun c-beginning-of-macro (&optional lim)
277 "Go to the beginning of a preprocessor directive.
278 Leave point at the beginning of the directive and return t if in one,
279 otherwise return nil and leave point unchanged.
280
281 Note that this function might do hidden buffer changes. See the
282 comment at the start of cc-engine.el for more info."
283 (let ((here (point)))
284 (when c-opt-cpp-prefix
285 (if (and (car c-macro-cache)
286 (>= (point) (car c-macro-cache))
287 (or (and (cdr c-macro-cache)
288 (<= (point) (cdr c-macro-cache)))
289 (<= (point) c-macro-cache-start-pos)))
290 (unless (< (car c-macro-cache) (or lim (point-min)))
291 (progn (goto-char (max (or lim (point-min)) (car c-macro-cache)))
292 (setq c-macro-cache-start-pos
293 (max c-macro-cache-start-pos here))
294 t))
295 (setq c-macro-cache nil
296 c-macro-cache-start-pos nil
297 c-macro-cache-syntactic nil
298 c-macro-cache-no-comment nil)
299
300 (save-restriction
301 (if lim (narrow-to-region lim (point-max)))
302 (beginning-of-line)
303 (while (eq (char-before (1- (point))) ?\\)
304 (forward-line -1))
305 (back-to-indentation)
306 (if (and (<= (point) here)
307 (looking-at c-opt-cpp-start)
308 (c-macro-is-genuine-p))
309 (progn
310 (setq c-macro-cache (cons (point) nil)
311 c-macro-cache-start-pos here)
312 t)
313 (goto-char here)
314 nil))))))
315
316 (defun c-end-of-macro ()
317 "Go to the end of a preprocessor directive.
318 More accurately, move the point to the end of the closest following
319 line that doesn't end with a line continuation backslash - no check is
320 done that the point is inside a cpp directive to begin with.
321
322 Note that this function might do hidden buffer changes. See the
323 comment at the start of cc-engine.el for more info."
324 (if (and (cdr c-macro-cache)
325 (<= (point) (cdr c-macro-cache))
326 (>= (point) (car c-macro-cache)))
327 (goto-char (cdr c-macro-cache))
328 (unless (and (car c-macro-cache)
329 (<= (point) c-macro-cache-start-pos)
330 (>= (point) (car c-macro-cache)))
331 (setq c-macro-cache nil
332 c-macro-cache-start-pos nil
333 c-macro-cache-syntactic nil
334 c-macro-cache-no-comment nil))
335 (while (progn
336 (end-of-line)
337 (when (and (eq (char-before) ?\\)
338 (not (eobp)))
339 (forward-char)
340 t)))
341 (when (car c-macro-cache)
342 (setcdr c-macro-cache (point)))))
343
344 (defun c-syntactic-end-of-macro ()
345 ;; Go to the end of a CPP directive, or a "safe" pos just before.
346 ;;
347 ;; This is normally the end of the next non-escaped line. A "safe"
348 ;; position is one not within a string or comment. (The EOL on a line
349 ;; comment is NOT "safe").
350 ;;
351 ;; This function must only be called from the beginning of a CPP construct.
352 ;;
353 ;; Note that this function might do hidden buffer changes. See the comment
354 ;; at the start of cc-engine.el for more info.
355 (let* ((here (point))
356 (there (progn (c-end-of-macro) (point)))
357 s)
358 (if c-macro-cache-syntactic
359 (goto-char c-macro-cache-syntactic)
360 (setq s (parse-partial-sexp here there))
361 (while (and (or (nth 3 s) ; in a string
362 (nth 4 s)) ; in a comment (maybe at end of line comment)
363 (> there here)) ; No infinite loops, please.
364 (setq there (1- (nth 8 s)))
365 (setq s (parse-partial-sexp here there)))
366 (setq c-macro-cache-syntactic (point)))
367 (point)))
368
369 (defun c-no-comment-end-of-macro ()
370 ;; Go to the end of a CPP directive, or a pos just before which isn't in a
371 ;; comment. For this purpose, open strings are ignored.
372 ;;
373 ;; This function must only be called from the beginning of a CPP construct.
374 ;;
375 ;; Note that this function might do hidden buffer changes. See the comment
376 ;; at the start of cc-engine.el for more info.
377 (let* ((here (point))
378 (there (progn (c-end-of-macro) (point)))
379 s)
380 (if c-macro-cache-no-comment
381 (goto-char c-macro-cache-no-comment)
382 (setq s (parse-partial-sexp here there))
383 (while (and (nth 3 s) ; in a string
384 (> there here)) ; No infinite loops, please.
385 (setq here (1+ (nth 8 s)))
386 (setq s (parse-partial-sexp here there)))
387 (when (nth 4 s)
388 (goto-char (1- (nth 8 s))))
389 (setq c-macro-cache-no-comment (point)))
390 (point)))
391
392 (defun c-forward-over-cpp-define-id ()
393 ;; Assuming point is at the "#" that introduces a preprocessor
394 ;; directive, it's moved forward to the end of the identifier which is
395 ;; "#define"d (or whatever c-opt-cpp-macro-define specifies). Non-nil
396 ;; is returned in this case, in all other cases nil is returned and
397 ;; point isn't moved.
398 ;;
399 ;; This function might do hidden buffer changes.
400 (when (and c-opt-cpp-macro-define-id
401 (looking-at c-opt-cpp-macro-define-id))
402 (goto-char (match-end 0))))
403
404 (defun c-forward-to-cpp-define-body ()
405 ;; Assuming point is at the "#" that introduces a preprocessor
406 ;; directive, it's moved forward to the start of the definition body
407 ;; if it's a "#define" (or whatever c-opt-cpp-macro-define
408 ;; specifies). Non-nil is returned in this case, in all other cases
409 ;; nil is returned and point isn't moved.
410 ;;
411 ;; This function might do hidden buffer changes.
412 (when (and c-opt-cpp-macro-define-start
413 (looking-at c-opt-cpp-macro-define-start)
414 (not (= (match-end 0) (c-point 'eol))))
415 (goto-char (match-end 0))))
416
417 \f
418 ;;; Basic utility functions.
419
420 (defun c-delq-from-dotted-list (elt dlist)
421 ;; If ELT is a member of the (possibly dotted) list DLIST, remove all
422 ;; occurrences of it (except for any in the last cdr of DLIST).
423 ;;
424 ;; Call this as (setq DLIST (c-delq-from-dotted-list ELT DLIST)), as
425 ;; sometimes the original structure is changed, sometimes it's not.
426 ;;
427 ;; This function is needed in Emacs < 24.5, and possibly XEmacs, because
428 ;; `delq' throws an error in these versions when given a dotted list.
429 (let ((tail dlist) prev)
430 (while (consp tail)
431 (if (eq (car tail) elt)
432 (if prev
433 (setcdr prev (cdr tail))
434 (setq dlist (cdr dlist)))
435 (setq prev tail))
436 (setq tail (cdr tail)))
437 dlist))
438
439 (defun c-syntactic-content (from to paren-level)
440 ;; Return the given region as a string where all syntactic
441 ;; whitespace is removed or, where necessary, replaced with a single
442 ;; space. If PAREN-LEVEL is given then all parens in the region are
443 ;; collapsed to "()", "[]" etc.
444 ;;
445 ;; This function might do hidden buffer changes.
446
447 (save-excursion
448 (save-restriction
449 (narrow-to-region from to)
450 (goto-char from)
451 (let* ((parts (list nil)) (tail parts) pos in-paren)
452
453 (while (re-search-forward c-syntactic-ws-start to t)
454 (goto-char (setq pos (match-beginning 0)))
455 (c-forward-syntactic-ws)
456 (if (= (point) pos)
457 (forward-char)
458
459 (when paren-level
460 (save-excursion
461 (setq in-paren (= (car (parse-partial-sexp from pos 1)) 1)
462 pos (point))))
463
464 (if (and (> pos from)
465 (< (point) to)
466 (looking-at "\\w\\|\\s_")
467 (save-excursion
468 (goto-char (1- pos))
469 (looking-at "\\w\\|\\s_")))
470 (progn
471 (setcdr tail (list (buffer-substring-no-properties from pos)
472 " "))
473 (setq tail (cddr tail)))
474 (setcdr tail (list (buffer-substring-no-properties from pos)))
475 (setq tail (cdr tail)))
476
477 (when in-paren
478 (when (= (car (parse-partial-sexp pos to -1)) -1)
479 (setcdr tail (list (buffer-substring-no-properties
480 (1- (point)) (point))))
481 (setq tail (cdr tail))))
482
483 (setq from (point))))
484
485 (setcdr tail (list (buffer-substring-no-properties from to)))
486 (apply 'concat (cdr parts))))))
487
488 (defun c-shift-line-indentation (shift-amt)
489 ;; Shift the indentation of the current line with the specified
490 ;; amount (positive inwards). The buffer is modified only if
491 ;; SHIFT-AMT isn't equal to zero.
492 (let ((pos (- (point-max) (point)))
493 (c-macro-start c-macro-start)
494 tmp-char-inserted)
495 (if (zerop shift-amt)
496 nil
497 ;; If we're on an empty line inside a macro, we take the point
498 ;; to be at the current indentation and shift it to the
499 ;; appropriate column. This way we don't treat the extra
500 ;; whitespace out to the line continuation as indentation.
501 (when (and (c-query-and-set-macro-start)
502 (looking-at "[ \t]*\\\\$")
503 (save-excursion
504 (skip-chars-backward " \t")
505 (bolp)))
506 (insert ?x)
507 (backward-char)
508 (setq tmp-char-inserted t))
509 (unwind-protect
510 (let ((col (current-indentation)))
511 (delete-region (c-point 'bol) (c-point 'boi))
512 (beginning-of-line)
513 (indent-to (+ col shift-amt)))
514 (when tmp-char-inserted
515 (delete-char 1))))
516 ;; If initial point was within line's indentation and we're not on
517 ;; a line with a line continuation in a macro, position after the
518 ;; indentation. Else stay at same point in text.
519 (if (and (< (point) (c-point 'boi))
520 (not tmp-char-inserted))
521 (back-to-indentation)
522 (if (> (- (point-max) pos) (point))
523 (goto-char (- (point-max) pos))))))
524
525 (defsubst c-keyword-sym (keyword)
526 ;; Return non-nil if the string KEYWORD is a known keyword. More
527 ;; precisely, the value is the symbol for the keyword in
528 ;; `c-keywords-obarray'.
529 (intern-soft keyword c-keywords-obarray))
530
531 (defsubst c-keyword-member (keyword-sym lang-constant)
532 ;; Return non-nil if the symbol KEYWORD-SYM, as returned by
533 ;; `c-keyword-sym', is a member of LANG-CONSTANT, which is the name
534 ;; of a language constant that ends with "-kwds". If KEYWORD-SYM is
535 ;; nil then the result is nil.
536 (get keyword-sym lang-constant))
537
538 ;; String syntax chars, suitable for skip-syntax-(forward|backward).
539 (defconst c-string-syntax (if (memq 'gen-string-delim c-emacs-features)
540 "\"|"
541 "\""))
542
543 ;; Regexp matching string limit syntax.
544 (defconst c-string-limit-regexp (if (memq 'gen-string-delim c-emacs-features)
545 "\\s\"\\|\\s|"
546 "\\s\""))
547
548 ;; Regexp matching WS followed by string limit syntax.
549 (defconst c-ws*-string-limit-regexp
550 (concat "[ \t]*\\(" c-string-limit-regexp "\\)"))
551
552 ;; Holds formatted error strings for the few cases where parse errors
553 ;; are reported.
554 (defvar c-parsing-error nil)
555 (make-variable-buffer-local 'c-parsing-error)
556
557 (defun c-echo-parsing-error (&optional quiet)
558 (when (and c-report-syntactic-errors c-parsing-error (not quiet))
559 (c-benign-error "%s" c-parsing-error))
560 c-parsing-error)
561
562 ;; Faces given to comments and string literals. This is used in some
563 ;; situations to speed up recognition; it isn't mandatory that font
564 ;; locking is in use. This variable is extended with the face in
565 ;; `c-doc-face-name' when fontification is activated in cc-fonts.el.
566 (defvar c-literal-faces
567 (append '(font-lock-comment-face font-lock-string-face)
568 (when (facep 'font-lock-comment-delimiter-face)
569 ;; New in Emacs 22.
570 '(font-lock-comment-delimiter-face))))
571
572 (defsubst c-put-c-type-property (pos value)
573 ;; Put a c-type property with the given value at POS.
574 (c-put-char-property pos 'c-type value))
575
576 (defun c-clear-c-type-property (from to value)
577 ;; Remove all occurrences of the c-type property that has the given
578 ;; value in the region between FROM and TO. VALUE is assumed to not
579 ;; be nil.
580 ;;
581 ;; Note: This assumes that c-type is put on single chars only; it's
582 ;; very inefficient if matching properties cover large regions.
583 (save-excursion
584 (goto-char from)
585 (while (progn
586 (when (eq (get-text-property (point) 'c-type) value)
587 (c-clear-char-property (point) 'c-type))
588 (goto-char (c-next-single-property-change (point) 'c-type nil to))
589 (< (point) to)))))
590
591 \f
592 ;; Some debug tools to visualize various special positions. This
593 ;; debug code isn't as portable as the rest of CC Mode.
594
595 (cc-bytecomp-defun overlays-in)
596 (cc-bytecomp-defun overlay-get)
597 (cc-bytecomp-defun overlay-start)
598 (cc-bytecomp-defun overlay-end)
599 (cc-bytecomp-defun delete-overlay)
600 (cc-bytecomp-defun overlay-put)
601 (cc-bytecomp-defun make-overlay)
602
603 (defun c-debug-add-face (beg end face)
604 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay)
605 (while overlays
606 (setq overlay (car overlays)
607 overlays (cdr overlays))
608 (when (eq (overlay-get overlay 'face) face)
609 (setq beg (min beg (overlay-start overlay))
610 end (max end (overlay-end overlay)))
611 (delete-overlay overlay)))
612 (overlay-put (make-overlay beg end) 'face face)))
613
614 (defun c-debug-remove-face (beg end face)
615 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay
616 (ol-beg beg) (ol-end end))
617 (while overlays
618 (setq overlay (car overlays)
619 overlays (cdr overlays))
620 (when (eq (overlay-get overlay 'face) face)
621 (setq ol-beg (min ol-beg (overlay-start overlay))
622 ol-end (max ol-end (overlay-end overlay)))
623 (delete-overlay overlay)))
624 (when (< ol-beg beg)
625 (overlay-put (make-overlay ol-beg beg) 'face face))
626 (when (> ol-end end)
627 (overlay-put (make-overlay end ol-end) 'face face))))
628
629 \f
630 ;; `c-beginning-of-statement-1' and accompanying stuff.
631
632 ;; KLUDGE ALERT: c-maybe-labelp is used to pass information between
633 ;; c-crosses-statement-barrier-p and c-beginning-of-statement-1. A
634 ;; better way should be implemented, but this will at least shut up
635 ;; the byte compiler.
636 (defvar c-maybe-labelp)
637
638 ;; New awk-compatible version of c-beginning-of-statement-1, ACM 2002/6/22
639
640 ;; Macros used internally in c-beginning-of-statement-1 for the
641 ;; automaton actions.
642 (defmacro c-bos-push-state ()
643 '(setq stack (cons (cons state saved-pos)
644 stack)))
645 (defmacro c-bos-pop-state (&optional do-if-done)
646 `(if (setq state (car (car stack))
647 saved-pos (cdr (car stack))
648 stack (cdr stack))
649 t
650 ,do-if-done
651 (throw 'loop nil)))
652 (defmacro c-bos-pop-state-and-retry ()
653 '(throw 'loop (setq state (car (car stack))
654 saved-pos (cdr (car stack))
655 ;; Throw nil if stack is empty, else throw non-nil.
656 stack (cdr stack))))
657 (defmacro c-bos-save-pos ()
658 '(setq saved-pos (vector pos tok ptok pptok)))
659 (defmacro c-bos-restore-pos ()
660 '(unless (eq (elt saved-pos 0) start)
661 (setq pos (elt saved-pos 0)
662 tok (elt saved-pos 1)
663 ptok (elt saved-pos 2)
664 pptok (elt saved-pos 3))
665 (goto-char pos)
666 (setq sym nil)))
667 (defmacro c-bos-save-error-info (missing got)
668 `(setq saved-pos (vector pos ,missing ,got)))
669 (defmacro c-bos-report-error ()
670 '(unless noerror
671 (setq c-parsing-error
672 (format-message
673 "No matching `%s' found for `%s' on line %d"
674 (elt saved-pos 1)
675 (elt saved-pos 2)
676 (1+ (count-lines (point-min)
677 (c-point 'bol (elt saved-pos 0))))))))
678
679 (defun c-beginning-of-statement-1 (&optional lim ignore-labels
680 noerror comma-delim)
681 "Move to the start of the current statement or declaration, or to
682 the previous one if already at the beginning of one. Only
683 statements/declarations on the same level are considered, i.e. don't
684 move into or out of sexps (not even normal expression parentheses).
685
686 If point is already at the earliest statement within braces or parens,
687 this function doesn't move back into any whitespace preceding it; it
688 returns `same' in this case.
689
690 Stop at statement continuation tokens like \"else\", \"catch\",
691 \"finally\" and the \"while\" in \"do ... while\" if the start point
692 is within the continuation. If starting at such a token, move to the
693 corresponding statement start. If at the beginning of a statement,
694 move to the closest containing statement if there is any. This might
695 also stop at a continuation clause.
696
697 Labels are treated as part of the following statements if
698 IGNORE-LABELS is non-nil. (FIXME: Doesn't work if we stop at a known
699 statement start keyword.) Otherwise, each label is treated as a
700 separate statement.
701
702 Macros are ignored \(i.e. skipped over) unless point is within one, in
703 which case the content of the macro is treated as normal code. Aside
704 from any normal statement starts found in it, stop at the first token
705 of the content in the macro, i.e. the expression of an \"#if\" or the
706 start of the definition in a \"#define\". Also stop at start of
707 macros before leaving them.
708
709 Return:
710 `label' if stopped at a label or \"case...:\" or \"default:\";
711 `same' if stopped at the beginning of the current statement;
712 `up' if stepped to a containing statement;
713 `previous' if stepped to a preceding statement;
714 `beginning' if stepped from a statement continuation clause to
715 its start clause; or
716 `macro' if stepped to a macro start.
717 Note that `same' and not `label' is returned if stopped at the same
718 label without crossing the colon character.
719
720 LIM may be given to limit the search. If the search hits the limit,
721 point will be left at the closest following token, or at the start
722 position if that is less (`same' is returned in this case).
723
724 NOERROR turns off error logging to `c-parsing-error'.
725
726 Normally only `;' and virtual semicolons are considered to delimit
727 statements, but if COMMA-DELIM is non-nil then `,' is treated
728 as a delimiter too.
729
730 Note that this function might do hidden buffer changes. See the
731 comment at the start of cc-engine.el for more info."
732
733 ;; The bulk of this function is a pushdown automaton that looks at statement
734 ;; boundaries and the tokens (such as "while") in c-opt-block-stmt-key. Its
735 ;; purpose is to keep track of nested statements, ensuring that such
736 ;; statements are skipped over in their entirety (somewhat akin to what C-M-p
737 ;; does with nested braces/brackets/parentheses).
738 ;;
739 ;; Note: The position of a boundary is the following token.
740 ;;
741 ;; Beginning with the current token (the one following point), move back one
742 ;; sexp at a time (where a sexp is, more or less, either a token or the
743 ;; entire contents of a brace/bracket/paren pair). Each time a statement
744 ;; boundary is crossed or a "while"-like token is found, update the state of
745 ;; the PDA. Stop at the beginning of a statement when the stack (holding
746 ;; nested statement info) is empty and the position has been moved.
747 ;;
748 ;; The following variables constitute the PDA:
749 ;;
750 ;; sym: This is either the "while"-like token (e.g. 'for) we've just
751 ;; scanned back over, 'boundary if we've just gone back over a
752 ;; statement boundary, or nil otherwise.
753 ;; state: takes one of the values (nil else else-boundary while
754 ;; while-boundary catch catch-boundary).
755 ;; nil means "no "while"-like token yet scanned".
756 ;; 'else, for example, means "just gone back over an else".
757 ;; 'else-boundary means "just gone back over a statement boundary
758 ;; immediately after having gone back over an else".
759 ;; saved-pos: A vector of either saved positions (tok ptok pptok, etc.) or
760 ;; of error reporting information.
761 ;; stack: The stack onto which the PDA pushes its state. Each entry
762 ;; consists of a saved value of state and saved-pos. An entry is
763 ;; pushed when we move back over a "continuation" token (e.g. else)
764 ;; and popped when we encounter the corresponding opening token
765 ;; (e.g. if).
766 ;;
767 ;;
768 ;; The following diagram briefly outlines the PDA.
769 ;;
770 ;; Common state:
771 ;; "else": Push state, goto state `else'.
772 ;; "while": Push state, goto state `while'.
773 ;; "catch" or "finally": Push state, goto state `catch'.
774 ;; boundary: Pop state.
775 ;; other: Do nothing special.
776 ;;
777 ;; State `else':
778 ;; boundary: Goto state `else-boundary'.
779 ;; other: Error, pop state, retry token.
780 ;;
781 ;; State `else-boundary':
782 ;; "if": Pop state.
783 ;; boundary: Error, pop state.
784 ;; other: See common state.
785 ;;
786 ;; State `while':
787 ;; boundary: Save position, goto state `while-boundary'.
788 ;; other: Pop state, retry token.
789 ;;
790 ;; State `while-boundary':
791 ;; "do": Pop state.
792 ;; boundary: Restore position if it's not at start, pop state. [*see below]
793 ;; other: See common state.
794 ;;
795 ;; State `catch':
796 ;; boundary: Goto state `catch-boundary'.
797 ;; other: Error, pop state, retry token.
798 ;;
799 ;; State `catch-boundary':
800 ;; "try": Pop state.
801 ;; "catch": Goto state `catch'.
802 ;; boundary: Error, pop state.
803 ;; other: See common state.
804 ;;
805 ;; [*] In the `while-boundary' state, we had pushed a 'while state, and were
806 ;; searching for a "do" which would have opened a do-while. If we didn't
807 ;; find it, we discard the analysis done since the "while", go back to this
808 ;; token in the buffer and restart the scanning there, this time WITHOUT
809 ;; pushing the 'while state onto the stack.
810 ;;
811 ;; In addition to the above there is some special handling of labels
812 ;; and macros.
813
814 (let ((case-fold-search nil)
815 (start (point))
816 macro-start
817 (delims (if comma-delim '(?\; ?,) '(?\;)))
818 (c-stmt-delim-chars (if comma-delim
819 c-stmt-delim-chars-with-comma
820 c-stmt-delim-chars))
821 c-in-literal-cache c-maybe-labelp after-case:-pos saved
822 ;; Current position.
823 pos
824 ;; Position of last stmt boundary character (e.g. ;).
825 boundary-pos
826 ;; The position of the last sexp or bound that follows the
827 ;; first found colon, i.e. the start of the nonlabel part of
828 ;; the statement. It's `start' if a colon is found just after
829 ;; the start.
830 after-labels-pos
831 ;; Like `after-labels-pos', but the first such position inside
832 ;; a label, i.e. the start of the last label before the start
833 ;; of the nonlabel part of the statement.
834 last-label-pos
835 ;; The last position where a label is possible provided the
836 ;; statement started there. It's nil as long as no invalid
837 ;; label content has been found (according to
838 ;; `c-nonlabel-token-key'). It's `start' if no valid label
839 ;; content was found in the label. Note that we might still
840 ;; regard it a label if it starts with `c-label-kwds'.
841 label-good-pos
842 ;; Putative positions of the components of a bitfield declaration,
843 ;; e.g. "int foo : NUM_FOO_BITS ;"
844 bitfield-type-pos bitfield-id-pos bitfield-size-pos
845 ;; Symbol just scanned back over (e.g. 'while or 'boundary).
846 ;; See above.
847 sym
848 ;; Current state in the automaton. See above.
849 state
850 ;; Current saved positions. See above.
851 saved-pos
852 ;; Stack of conses (state . saved-pos).
853 stack
854 ;; Regexp which matches "for", "if", etc.
855 (cond-key (or c-opt-block-stmt-key
856 "\\<\\>")) ; Matches nothing.
857 ;; Return value.
858 (ret 'same)
859 ;; Positions of the last three sexps or bounds we've stopped at.
860 tok ptok pptok)
861
862 (save-restriction
863 (if lim (narrow-to-region lim (point-max)))
864
865 (if (save-excursion
866 (and (c-beginning-of-macro)
867 (/= (point) start)))
868 (setq macro-start (point)))
869
870 ;; Try to skip back over unary operator characters, to register
871 ;; that we've moved.
872 (while (progn
873 (setq pos (point))
874 (c-backward-syntactic-ws)
875 ;; Protect post-++/-- operators just before a virtual semicolon.
876 (and (not (c-at-vsemi-p))
877 (/= (skip-chars-backward "-+!*&~@`#") 0))))
878
879 ;; Skip back over any semicolon here. If it was a bare semicolon, we're
880 ;; done. Later on we ignore the boundaries for statements that don't
881 ;; contain any sexp. The only thing that is affected is that the error
882 ;; checking is a little less strict, and we really don't bother.
883 (if (and (memq (char-before) delims)
884 (progn (forward-char -1)
885 (setq saved (point))
886 (c-backward-syntactic-ws)
887 (or (memq (char-before) delims)
888 (memq (char-before) '(?: nil))
889 (eq (char-syntax (char-before)) ?\()
890 (c-at-vsemi-p))))
891 (setq ret 'previous
892 pos saved)
893
894 ;; Begin at start and not pos to detect macros if we stand
895 ;; directly after the #.
896 (goto-char start)
897 (if (looking-at "\\<\\|\\W")
898 ;; Record this as the first token if not starting inside it.
899 (setq tok start))
900
901 ;; The following while loop goes back one sexp (balanced parens,
902 ;; etc. with contents, or symbol or suchlike) each iteration. This
903 ;; movement is accomplished with a call to c-backward-sexp approx 170
904 ;; lines below.
905 ;;
906 ;; The loop is exited only by throwing nil to the (catch 'loop ...):
907 ;; 1. On reaching the start of a macro;
908 ;; 2. On having passed a stmt boundary with the PDA stack empty;
909 ;; 3. On reaching the start of an Objective C method def;
910 ;; 4. From macro `c-bos-pop-state'; when the stack is empty;
911 ;; 5. From macro `c-bos-pop-state-and-retry' when the stack is empty.
912 (while
913 (catch 'loop ;; Throw nil to break, non-nil to continue.
914 (cond
915 ;; Are we in a macro, just after the opening #?
916 ((save-excursion
917 (and macro-start ; Always NIL for AWK.
918 (progn (skip-chars-backward " \t")
919 (eq (char-before) ?#))
920 (progn (setq saved (1- (point)))
921 (beginning-of-line)
922 (not (eq (char-before (1- (point))) ?\\)))
923 (looking-at c-opt-cpp-start)
924 (progn (skip-chars-forward " \t")
925 (eq (point) saved))))
926 (goto-char saved)
927 (if (and (c-forward-to-cpp-define-body)
928 (progn (c-forward-syntactic-ws start)
929 (< (point) start)))
930 ;; Stop at the first token in the content of the macro.
931 (setq pos (point)
932 ignore-labels t) ; Avoid the label check on exit.
933 (setq pos saved
934 ret 'macro
935 ignore-labels t))
936 (throw 'loop nil)) ; 1. Start of macro.
937
938 ;; Do a round through the automaton if we've just passed a
939 ;; statement boundary or passed a "while"-like token.
940 ((or sym
941 (and (looking-at cond-key)
942 (setq sym (intern (match-string 1)))))
943
944 (when (and (< pos start) (null stack))
945 (throw 'loop nil)) ; 2. Statement boundary.
946
947 ;; The PDA state handling.
948 ;;
949 ;; Refer to the description of the PDA in the opening
950 ;; comments. In the following OR form, the first leaf
951 ;; attempts to handles one of the specific actions detailed
952 ;; (e.g., finding token "if" whilst in state `else-boundary').
953 ;; We drop through to the second leaf (which handles common
954 ;; state) if no specific handler is found in the first cond.
955 ;; If a parsing error is detected (e.g. an "else" with no
956 ;; preceding "if"), we throw to the enclosing catch.
957 ;;
958 ;; Note that the (eq state 'else) means
959 ;; "we've just passed an else", NOT "we're looking for an
960 ;; else".
961 (or (cond
962 ((eq state 'else)
963 (if (eq sym 'boundary)
964 (setq state 'else-boundary)
965 (c-bos-report-error)
966 (c-bos-pop-state-and-retry)))
967
968 ((eq state 'else-boundary)
969 (cond ((eq sym 'if)
970 (c-bos-pop-state (setq ret 'beginning)))
971 ((eq sym 'boundary)
972 (c-bos-report-error)
973 (c-bos-pop-state))))
974
975 ((eq state 'while)
976 (if (and (eq sym 'boundary)
977 ;; Since this can cause backtracking we do a
978 ;; little more careful analysis to avoid it:
979 ;; If there's a label in front of the while
980 ;; it can't be part of a do-while.
981 (not after-labels-pos))
982 (progn (c-bos-save-pos)
983 (setq state 'while-boundary))
984 (c-bos-pop-state-and-retry))) ; Can't be a do-while
985
986 ((eq state 'while-boundary)
987 (cond ((eq sym 'do)
988 (c-bos-pop-state (setq ret 'beginning)))
989 ((eq sym 'boundary) ; isn't a do-while
990 (c-bos-restore-pos) ; the position of the while
991 (c-bos-pop-state)))) ; no longer searching for do.
992
993 ((eq state 'catch)
994 (if (eq sym 'boundary)
995 (setq state 'catch-boundary)
996 (c-bos-report-error)
997 (c-bos-pop-state-and-retry)))
998
999 ((eq state 'catch-boundary)
1000 (cond
1001 ((eq sym 'try)
1002 (c-bos-pop-state (setq ret 'beginning)))
1003 ((eq sym 'catch)
1004 (setq state 'catch))
1005 ((eq sym 'boundary)
1006 (c-bos-report-error)
1007 (c-bos-pop-state)))))
1008
1009 ;; This is state common. We get here when the previous
1010 ;; cond statement found no particular state handler.
1011 (cond ((eq sym 'boundary)
1012 ;; If we have a boundary at the start
1013 ;; position we push a frame to go to the
1014 ;; previous statement.
1015 (if (>= pos start)
1016 (c-bos-push-state)
1017 (c-bos-pop-state)))
1018 ((eq sym 'else)
1019 (c-bos-push-state)
1020 (c-bos-save-error-info 'if 'else)
1021 (setq state 'else))
1022 ((eq sym 'while)
1023 ;; Is this a real while, or a do-while?
1024 ;; The next `when' triggers unless we are SURE that
1025 ;; the `while' is not the tail end of a `do-while'.
1026 (when (or (not pptok)
1027 (memq (char-after pptok) delims)
1028 ;; The following kludge is to prevent
1029 ;; infinite recursion when called from
1030 ;; c-awk-after-if-for-while-condition-p,
1031 ;; or the like.
1032 (and (eq (point) start)
1033 (c-vsemi-status-unknown-p))
1034 (c-at-vsemi-p pptok))
1035 ;; Since this can cause backtracking we do a
1036 ;; little more careful analysis to avoid it: If
1037 ;; the while isn't followed by a (possibly
1038 ;; virtual) semicolon it can't be a do-while.
1039 (c-bos-push-state)
1040 (setq state 'while)))
1041 ((memq sym '(catch finally))
1042 (c-bos-push-state)
1043 (c-bos-save-error-info 'try sym)
1044 (setq state 'catch))))
1045
1046 (when c-maybe-labelp
1047 ;; We're either past a statement boundary or at the
1048 ;; start of a statement, so throw away any label data
1049 ;; for the previous one.
1050 (setq after-labels-pos nil
1051 last-label-pos nil
1052 c-maybe-labelp nil))))
1053
1054 ;; Step to the previous sexp, but not if we crossed a
1055 ;; boundary, since that doesn't consume an sexp.
1056 (if (eq sym 'boundary)
1057 (setq ret 'previous)
1058
1059 ;; HERE IS THE SINGLE PLACE INSIDE THE PDA LOOP WHERE WE MOVE
1060 ;; BACKWARDS THROUGH THE SOURCE.
1061
1062 (c-backward-syntactic-ws)
1063 (let ((before-sws-pos (point))
1064 ;; The end position of the area to search for statement
1065 ;; barriers in this round.
1066 (maybe-after-boundary-pos pos))
1067
1068 ;; Go back over exactly one logical sexp, taking proper
1069 ;; account of macros and escaped EOLs.
1070 (while
1071 (progn
1072 (unless (c-safe (c-backward-sexp) t)
1073 ;; Give up if we hit an unbalanced block. Since the
1074 ;; stack won't be empty the code below will report a
1075 ;; suitable error.
1076 (throw 'loop nil))
1077 (cond
1078 ;; Have we moved into a macro?
1079 ((and (not macro-start)
1080 (c-beginning-of-macro))
1081 ;; Have we crossed a statement boundary? If not,
1082 ;; keep going back until we find one or a "real" sexp.
1083 (and
1084 (save-excursion
1085 (c-end-of-macro)
1086 (not (c-crosses-statement-barrier-p
1087 (point) maybe-after-boundary-pos)))
1088 (setq maybe-after-boundary-pos (point))))
1089 ;; Have we just gone back over an escaped NL? This
1090 ;; doesn't count as a sexp.
1091 ((looking-at "\\\\$")))))
1092
1093 ;; Have we crossed a statement boundary?
1094 (setq boundary-pos
1095 (cond
1096 ;; Are we at a macro beginning?
1097 ((and (not macro-start)
1098 c-opt-cpp-prefix
1099 (looking-at c-opt-cpp-prefix))
1100 (save-excursion
1101 (c-end-of-macro)
1102 (c-crosses-statement-barrier-p
1103 (point) maybe-after-boundary-pos)))
1104 ;; Just gone back over a brace block?
1105 ((and
1106 (eq (char-after) ?{)
1107 (not (c-looking-at-inexpr-block lim nil t))
1108 (save-excursion
1109 (c-backward-token-2 1 t nil)
1110 (not (looking-at "=\\([^=]\\|$\\)"))))
1111 (save-excursion
1112 (c-forward-sexp) (point)))
1113 ;; Just gone back over some paren block?
1114 ((looking-at "\\s(")
1115 (save-excursion
1116 (goto-char (1+ (c-down-list-backward
1117 before-sws-pos)))
1118 (c-crosses-statement-barrier-p
1119 (point) maybe-after-boundary-pos)))
1120 ;; Just gone back over an ordinary symbol of some sort?
1121 (t (c-crosses-statement-barrier-p
1122 (point) maybe-after-boundary-pos))))
1123
1124 (when boundary-pos
1125 (setq pptok ptok
1126 ptok tok
1127 tok boundary-pos
1128 sym 'boundary)
1129 ;; Like a C "continue". Analyze the next sexp.
1130 (throw 'loop t))))
1131
1132 ;; ObjC method def?
1133 (when (and c-opt-method-key
1134 (setq saved (c-in-method-def-p)))
1135 (setq pos saved
1136 ignore-labels t) ; Avoid the label check on exit.
1137 (throw 'loop nil)) ; 3. ObjC method def.
1138
1139 ;; Might we have a bitfield declaration, "<type> <id> : <size>"?
1140 (if c-has-bitfields
1141 (cond
1142 ;; The : <size> and <id> fields?
1143 ((and (numberp c-maybe-labelp)
1144 (not bitfield-size-pos)
1145 (save-excursion
1146 (goto-char (or tok start))
1147 (not (looking-at c-keywords-regexp)))
1148 (not (looking-at c-keywords-regexp))
1149 (not (c-punctuation-in (point) c-maybe-labelp)))
1150 (setq bitfield-size-pos (or tok start)
1151 bitfield-id-pos (point)))
1152 ;; The <type> field?
1153 ((and bitfield-id-pos
1154 (not bitfield-type-pos))
1155 (if (and (looking-at c-symbol-key) ; Can only be an integer type. :-)
1156 (not (looking-at c-not-primitive-type-keywords-regexp))
1157 (not (c-punctuation-in (point) tok)))
1158 (setq bitfield-type-pos (point))
1159 (setq bitfield-size-pos nil
1160 bitfield-id-pos nil)))))
1161
1162 ;; Handle labels.
1163 (unless (eq ignore-labels t)
1164 (when (numberp c-maybe-labelp)
1165 ;; `c-crosses-statement-barrier-p' has found a colon, so we
1166 ;; might be in a label now. Have we got a real label
1167 ;; (including a case label) or something like C++'s "public:"?
1168 ;; A case label might use an expression rather than a token.
1169 (setq after-case:-pos (or tok start))
1170 (if (or (looking-at c-nonlabel-token-key) ; e.g. "while" or "'a'"
1171 ;; Catch C++'s inheritance construct "class foo : bar".
1172 (save-excursion
1173 (and
1174 (c-safe (c-backward-sexp) t)
1175 (looking-at c-nonlabel-token-2-key))))
1176 (setq c-maybe-labelp nil)
1177 (if after-labels-pos ; Have we already encountered a label?
1178 (if (not last-label-pos)
1179 (setq last-label-pos (or tok start)))
1180 (setq after-labels-pos (or tok start)))
1181 (setq c-maybe-labelp t
1182 label-good-pos nil))) ; bogus "label"
1183
1184 (when (and (not label-good-pos) ; i.e. no invalid "label"'s yet
1185 ; been found.
1186 (looking-at c-nonlabel-token-key)) ; e.g. "while :"
1187 ;; We're in a potential label and it's the first
1188 ;; time we've found something that isn't allowed in
1189 ;; one.
1190 (setq label-good-pos (or tok start))))
1191
1192 ;; We've moved back by a sexp, so update the token positions.
1193 (setq sym nil
1194 pptok ptok
1195 ptok tok
1196 tok (point)
1197 pos tok) ; always non-nil
1198 ) ; end of (catch loop ....)
1199 ) ; end of sexp-at-a-time (while ....)
1200
1201 ;; If the stack isn't empty there might be errors to report.
1202 (while stack
1203 (if (and (vectorp saved-pos) (eq (length saved-pos) 3))
1204 (c-bos-report-error))
1205 (setq saved-pos (cdr (car stack))
1206 stack (cdr stack)))
1207
1208 (when (and (eq ret 'same)
1209 (not (memq sym '(boundary ignore nil))))
1210 ;; Need to investigate closer whether we've crossed
1211 ;; between a substatement and its containing statement.
1212 (if (setq saved
1213 (cond ((and (looking-at c-block-stmt-1-2-key)
1214 (eq (char-after ptok) ?\())
1215 pptok)
1216 ((looking-at c-block-stmt-1-key)
1217 ptok)
1218 (t pptok)))
1219 (cond ((> start saved) (setq pos saved))
1220 ((= start saved) (setq ret 'up)))))
1221
1222 (when (and (not ignore-labels)
1223 (eq c-maybe-labelp t)
1224 (not (eq ret 'beginning))
1225 after-labels-pos
1226 (not bitfield-type-pos) ; Bitfields take precedence over labels.
1227 (or (not label-good-pos)
1228 (<= label-good-pos pos)
1229 (progn
1230 (goto-char (if (and last-label-pos
1231 (< last-label-pos start))
1232 last-label-pos
1233 pos))
1234 (looking-at c-label-kwds-regexp))))
1235 ;; We're in a label. Maybe we should step to the statement
1236 ;; after it.
1237 (if (< after-labels-pos start)
1238 (setq pos after-labels-pos)
1239 (setq ret 'label)
1240 (if (and last-label-pos (< last-label-pos start))
1241 ;; Might have jumped over several labels. Go to the last one.
1242 (setq pos last-label-pos)))))
1243
1244 ;; Have we got "case <expression>:"?
1245 (goto-char pos)
1246 (when (and after-case:-pos
1247 (not (eq ret 'beginning))
1248 (looking-at c-case-kwds-regexp))
1249 (if (< after-case:-pos start)
1250 (setq pos after-case:-pos))
1251 (if (eq ret 'same)
1252 (setq ret 'label)))
1253
1254 ;; Skip over the unary operators that can start the statement.
1255 (while (progn
1256 (c-backward-syntactic-ws)
1257 ;; protect AWK post-inc/decrement operators, etc.
1258 (and (not (c-at-vsemi-p (point)))
1259 (/= (skip-chars-backward "-+!*&~@`#") 0)))
1260 (setq pos (point)))
1261 (goto-char pos)
1262 ret)))
1263
1264 (defun c-punctuation-in (from to)
1265 "Return non-nil if there is a non-comment non-macro punctuation character
1266 between FROM and TO. FROM must not be in a string or comment. The returned
1267 value is the position of the first such character."
1268 (save-excursion
1269 (goto-char from)
1270 (let ((pos (point)))
1271 (while (progn (skip-chars-forward c-symbol-chars to)
1272 (c-forward-syntactic-ws to)
1273 (> (point) pos))
1274 (setq pos (point))))
1275 (and (< (point) to) (point))))
1276
1277 (defun c-crosses-statement-barrier-p (from to)
1278 "Return non-nil if buffer positions FROM to TO cross one or more
1279 statement or declaration boundaries. The returned value is actually
1280 the position of the earliest boundary char. FROM must not be within
1281 a string or comment.
1282
1283 The variable `c-maybe-labelp' is set to the position of the first `:' that
1284 might start a label (i.e. not part of `::' and not preceded by `?'). If a
1285 single `?' is found, then `c-maybe-labelp' is cleared.
1286
1287 For AWK, a statement which is terminated by an EOL (not a ; or a }) is
1288 regarded as having a \"virtual semicolon\" immediately after the last token on
1289 the line. If this virtual semicolon is _at_ from, the function recognizes it.
1290
1291 Note that this function might do hidden buffer changes. See the
1292 comment at the start of cc-engine.el for more info."
1293 (let* ((skip-chars
1294 ;; If the current language has CPP macros, insert # into skip-chars.
1295 (if c-opt-cpp-symbol
1296 (concat (substring c-stmt-delim-chars 0 1) ; "^"
1297 c-opt-cpp-symbol ; usually "#"
1298 (substring c-stmt-delim-chars 1)) ; e.g. ";{}?:"
1299 c-stmt-delim-chars))
1300 (non-skip-list
1301 (append (substring skip-chars 1) nil)) ; e.g. (?# ?\; ?{ ?} ?? ?:)
1302 lit-range vsemi-pos)
1303 (save-restriction
1304 (widen)
1305 (save-excursion
1306 (catch 'done
1307 (goto-char from)
1308 (while (progn (skip-chars-forward
1309 skip-chars
1310 (min to (c-point 'bonl)))
1311 (< (point) to))
1312 (cond
1313 ;; Virtual semicolon?
1314 ((and (bolp)
1315 (save-excursion
1316 (progn
1317 (if (setq lit-range (c-literal-limits from)) ; Have we landed in a string/comment?
1318 (goto-char (car lit-range)))
1319 (c-backward-syntactic-ws) ; ? put a limit here, maybe?
1320 (setq vsemi-pos (point))
1321 (c-at-vsemi-p))))
1322 (throw 'done vsemi-pos))
1323 ;; In a string/comment?
1324 ((setq lit-range (c-literal-limits from))
1325 (goto-char (cdr lit-range)))
1326 ((eq (char-after) ?:)
1327 (forward-char)
1328 (if (and (eq (char-after) ?:)
1329 (< (point) to))
1330 ;; Ignore scope operators.
1331 (forward-char)
1332 (setq c-maybe-labelp (1- (point)))))
1333 ((eq (char-after) ??)
1334 ;; A question mark. Can't be a label, so stop
1335 ;; looking for more : and ?.
1336 (setq c-maybe-labelp nil
1337 skip-chars (substring c-stmt-delim-chars 0 -2)))
1338 ;; At a CPP construct or a "#" or "##" operator?
1339 ((and c-opt-cpp-symbol (looking-at c-opt-cpp-symbol))
1340 (if (save-excursion
1341 (skip-chars-backward " \t")
1342 (and (bolp)
1343 (or (bobp)
1344 (not (eq (char-before (1- (point))) ?\\)))))
1345 (c-end-of-macro)
1346 (skip-chars-forward c-opt-cpp-symbol)))
1347 ((memq (char-after) non-skip-list)
1348 (throw 'done (point)))))
1349 ;; In trailing space after an as yet undetected virtual semicolon?
1350 (c-backward-syntactic-ws from)
1351 (when (and (bolp) (not (bobp))) ; Can happen in AWK Mode with an
1352 ; unterminated string/regexp.
1353 (backward-char))
1354 (if (and (< (point) to)
1355 (c-at-vsemi-p))
1356 (point)
1357 nil))))))
1358
1359 (defun c-at-statement-start-p ()
1360 "Return non-nil if the point is at the first token in a statement
1361 or somewhere in the syntactic whitespace before it.
1362
1363 A \"statement\" here is not restricted to those inside code blocks.
1364 Any kind of declaration-like construct that occur outside function
1365 bodies is also considered a \"statement\".
1366
1367 Note that this function might do hidden buffer changes. See the
1368 comment at the start of cc-engine.el for more info."
1369
1370 (save-excursion
1371 (let ((end (point))
1372 c-maybe-labelp)
1373 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1374 (or (bobp)
1375 (eq (char-before) ?})
1376 (and (eq (char-before) ?{)
1377 (not (and c-special-brace-lists
1378 (progn (backward-char)
1379 (c-looking-at-special-brace-list)))))
1380 (c-crosses-statement-barrier-p (point) end)))))
1381
1382 (defun c-at-expression-start-p ()
1383 "Return non-nil if the point is at the first token in an expression or
1384 statement, or somewhere in the syntactic whitespace before it.
1385
1386 An \"expression\" here is a bit different from the normal language
1387 grammar sense: It's any sequence of expression tokens except commas,
1388 unless they are enclosed inside parentheses of some kind. Also, an
1389 expression never continues past an enclosing parenthesis, but it might
1390 contain parenthesis pairs of any sort except braces.
1391
1392 Since expressions never cross statement boundaries, this function also
1393 recognizes statement beginnings, just like `c-at-statement-start-p'.
1394
1395 Note that this function might do hidden buffer changes. See the
1396 comment at the start of cc-engine.el for more info."
1397
1398 (save-excursion
1399 (let ((end (point))
1400 (c-stmt-delim-chars c-stmt-delim-chars-with-comma)
1401 c-maybe-labelp)
1402 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1403 (or (bobp)
1404 (memq (char-before) '(?{ ?}))
1405 (save-excursion (backward-char)
1406 (looking-at "\\s("))
1407 (c-crosses-statement-barrier-p (point) end)))))
1408
1409 \f
1410 ;; A set of functions that covers various idiosyncrasies in
1411 ;; implementations of `forward-comment'.
1412
1413 ;; Note: Some emacsen considers incorrectly that any line comment
1414 ;; ending with a backslash continues to the next line. I can't think
1415 ;; of any way to work around that in a reliable way without changing
1416 ;; the buffer, though. Suggestions welcome. ;) (No, temporarily
1417 ;; changing the syntax for backslash doesn't work since we must treat
1418 ;; escapes in string literals correctly.)
1419
1420 (defun c-forward-single-comment ()
1421 "Move forward past whitespace and the closest following comment, if any.
1422 Return t if a comment was found, nil otherwise. In either case, the
1423 point is moved past the following whitespace. Line continuations,
1424 i.e. a backslashes followed by line breaks, are treated as whitespace.
1425 The line breaks that end line comments are considered to be the
1426 comment enders, so the point will be put on the beginning of the next
1427 line if it moved past a line comment.
1428
1429 This function does not do any hidden buffer changes."
1430
1431 (let ((start (point)))
1432 (when (looking-at "\\([ \t\n\r\f\v]\\|\\\\[\n\r]\\)+")
1433 (goto-char (match-end 0)))
1434
1435 (when (forward-comment 1)
1436 (if (eobp)
1437 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1438 ;; forwards at eob.
1439 nil
1440
1441 ;; Emacs includes the ending newline in a b-style (c++)
1442 ;; comment, but XEmacs doesn't. We depend on the Emacs
1443 ;; behavior (which also is symmetric).
1444 (if (and (eolp) (elt (parse-partial-sexp start (point)) 7))
1445 (condition-case nil (forward-char 1)))
1446
1447 t))))
1448
1449 (defsubst c-forward-comments ()
1450 "Move forward past all following whitespace and comments.
1451 Line continuations, i.e. a backslashes followed by line breaks, are
1452 treated as whitespace.
1453
1454 Note that this function might do hidden buffer changes. See the
1455 comment at the start of cc-engine.el for more info."
1456
1457 (while (or
1458 ;; If forward-comment in at least XEmacs 21 is given a large
1459 ;; positive value, it'll loop all the way through if it hits
1460 ;; eob.
1461 (and (forward-comment 5)
1462 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1463 ;; forwards at eob.
1464 (not (eobp)))
1465
1466 (when (looking-at "\\\\[\n\r]")
1467 (forward-char 2)
1468 t))))
1469
1470 (defun c-backward-single-comment ()
1471 "Move backward past whitespace and the closest preceding comment, if any.
1472 Return t if a comment was found, nil otherwise. In either case, the
1473 point is moved past the preceding whitespace. Line continuations,
1474 i.e. a backslashes followed by line breaks, are treated as whitespace.
1475 The line breaks that end line comments are considered to be the
1476 comment enders, so the point cannot be at the end of the same line to
1477 move over a line comment.
1478
1479 This function does not do any hidden buffer changes."
1480
1481 (let ((start (point)))
1482 ;; When we got newline terminated comments, forward-comment in all
1483 ;; supported emacsen so far will stop at eol of each line not
1484 ;; ending with a comment when moving backwards. This corrects for
1485 ;; that, and at the same time handles line continuations.
1486 (while (progn
1487 (skip-chars-backward " \t\n\r\f\v")
1488 (and (looking-at "[\n\r]")
1489 (eq (char-before) ?\\)))
1490 (backward-char))
1491
1492 (if (bobp)
1493 ;; Some emacsen (e.g. Emacs 19.34) return t when moving
1494 ;; backwards at bob.
1495 nil
1496
1497 ;; Leave point after the closest following newline if we've
1498 ;; backed up over any above, since forward-comment won't move
1499 ;; backward over a line comment if point is at the end of the
1500 ;; same line.
1501 (re-search-forward "\\=\\s *[\n\r]" start t)
1502
1503 (if (if (forward-comment -1)
1504 (if (eolp)
1505 ;; If forward-comment above succeeded and we're at eol
1506 ;; then the newline we moved over above didn't end a
1507 ;; line comment, so we give it another go.
1508 (forward-comment -1)
1509 t))
1510
1511 ;; Emacs <= 20 and XEmacs move back over the closer of a
1512 ;; block comment that lacks an opener.
1513 (if (looking-at "\\*/")
1514 (progn (forward-char 2) nil)
1515 t)))))
1516
1517 (defsubst c-backward-comments ()
1518 "Move backward past all preceding whitespace and comments.
1519 Line continuations, i.e. a backslashes followed by line breaks, are
1520 treated as whitespace. The line breaks that end line comments are
1521 considered to be the comment enders, so the point cannot be at the end
1522 of the same line to move over a line comment. Unlike
1523 c-backward-syntactic-ws, this function doesn't move back over
1524 preprocessor directives.
1525
1526 Note that this function might do hidden buffer changes. See the
1527 comment at the start of cc-engine.el for more info."
1528
1529 (let ((start (point)))
1530 (while (and
1531 ;; `forward-comment' in some emacsen (e.g. XEmacs 21.4)
1532 ;; return t when moving backwards at bob.
1533 (not (bobp))
1534
1535 (if (let (moved-comment)
1536 (while
1537 (and (not (setq moved-comment (forward-comment -1)))
1538 ;; Cope specifically with ^M^J here -
1539 ;; forward-comment sometimes gets stuck after ^Ms,
1540 ;; sometimes after ^M^J.
1541 (or
1542 (when (eq (char-before) ?\r)
1543 (backward-char)
1544 t)
1545 (when (and (eq (char-before) ?\n)
1546 (eq (char-before (1- (point))) ?\r))
1547 (backward-char 2)
1548 t))))
1549 moved-comment)
1550 (if (looking-at "\\*/")
1551 ;; Emacs <= 20 and XEmacs move back over the
1552 ;; closer of a block comment that lacks an opener.
1553 (progn (forward-char 2) nil)
1554 t)
1555
1556 ;; XEmacs treats line continuations as whitespace but
1557 ;; only in the backward direction, which seems a bit
1558 ;; odd. Anyway, this is necessary for Emacs.
1559 (when (and (looking-at "[\n\r]")
1560 (eq (char-before) ?\\)
1561 (< (point) start))
1562 (backward-char)
1563 t))))))
1564
1565 \f
1566 ;; Tools for skipping over syntactic whitespace.
1567
1568 ;; The following functions use text properties to cache searches over
1569 ;; large regions of syntactic whitespace. It works as follows:
1570 ;;
1571 ;; o If a syntactic whitespace region contains anything but simple
1572 ;; whitespace (i.e. space, tab and line breaks), the text property
1573 ;; `c-in-sws' is put over it. At places where we have stopped
1574 ;; within that region there's also a `c-is-sws' text property.
1575 ;; That since there typically are nested whitespace inside that
1576 ;; must be handled separately, e.g. whitespace inside a comment or
1577 ;; cpp directive. Thus, from one point with `c-is-sws' it's safe
1578 ;; to jump to another point with that property within the same
1579 ;; `c-in-sws' region. It can be likened to a ladder where
1580 ;; `c-in-sws' marks the bars and `c-is-sws' the rungs.
1581 ;;
1582 ;; o The `c-is-sws' property is put on the simple whitespace chars at
1583 ;; a "rung position" and also maybe on the first following char.
1584 ;; As many characters as can be conveniently found in this range
1585 ;; are marked, but no assumption can be made that the whole range
1586 ;; is marked (it could be clobbered by later changes, for
1587 ;; instance).
1588 ;;
1589 ;; Note that some part of the beginning of a sequence of simple
1590 ;; whitespace might be part of the end of a preceding line comment
1591 ;; or cpp directive and must not be considered part of the "rung".
1592 ;; Such whitespace is some amount of horizontal whitespace followed
1593 ;; by a newline. In the case of cpp directives it could also be
1594 ;; two newlines with horizontal whitespace between them.
1595 ;;
1596 ;; The reason to include the first following char is to cope with
1597 ;; "rung positions" that don't have any ordinary whitespace. If
1598 ;; `c-is-sws' is put on a token character it does not have
1599 ;; `c-in-sws' set simultaneously. That's the only case when that
1600 ;; can occur, and the reason for not extending the `c-in-sws'
1601 ;; region to cover it is that the `c-in-sws' region could then be
1602 ;; accidentally merged with a following one if the token is only
1603 ;; one character long.
1604 ;;
1605 ;; o On buffer changes the `c-in-sws' and `c-is-sws' properties are
1606 ;; removed in the changed region. If the change was inside
1607 ;; syntactic whitespace that means that the "ladder" is broken, but
1608 ;; a later call to `c-forward-sws' or `c-backward-sws' will use the
1609 ;; parts on either side and use an ordinary search only to "repair"
1610 ;; the gap.
1611 ;;
1612 ;; Special care needs to be taken if a region is removed: If there
1613 ;; are `c-in-sws' on both sides of it which do not connect inside
1614 ;; the region then they can't be joined. If e.g. a marked macro is
1615 ;; broken, syntactic whitespace inside the new text might be
1616 ;; marked. If those marks would become connected with the old
1617 ;; `c-in-sws' range around the macro then we could get a ladder
1618 ;; with one end outside the macro and the other at some whitespace
1619 ;; within it.
1620 ;;
1621 ;; The main motivation for this system is to increase the speed in
1622 ;; skipping over the large whitespace regions that can occur at the
1623 ;; top level in e.g. header files that contain a lot of comments and
1624 ;; cpp directives. For small comments inside code it's probably
1625 ;; slower than using `forward-comment' straightforwardly, but speed is
1626 ;; not a significant factor there anyway.
1627
1628 ; (defface c-debug-is-sws-face
1629 ; '((t (:background "GreenYellow")))
1630 ; "Debug face to mark the `c-is-sws' property.")
1631 ; (defface c-debug-in-sws-face
1632 ; '((t (:underline t)))
1633 ; "Debug face to mark the `c-in-sws' property.")
1634
1635 ; (defun c-debug-put-sws-faces ()
1636 ; ;; Put the sws debug faces on all the `c-is-sws' and `c-in-sws'
1637 ; ;; properties in the buffer.
1638 ; (interactive)
1639 ; (save-excursion
1640 ; (c-save-buffer-state (in-face)
1641 ; (goto-char (point-min))
1642 ; (setq in-face (if (get-text-property (point) 'c-is-sws)
1643 ; (point)))
1644 ; (while (progn
1645 ; (goto-char (next-single-property-change
1646 ; (point) 'c-is-sws nil (point-max)))
1647 ; (if in-face
1648 ; (progn
1649 ; (c-debug-add-face in-face (point) 'c-debug-is-sws-face)
1650 ; (setq in-face nil))
1651 ; (setq in-face (point)))
1652 ; (not (eobp))))
1653 ; (goto-char (point-min))
1654 ; (setq in-face (if (get-text-property (point) 'c-in-sws)
1655 ; (point)))
1656 ; (while (progn
1657 ; (goto-char (next-single-property-change
1658 ; (point) 'c-in-sws nil (point-max)))
1659 ; (if in-face
1660 ; (progn
1661 ; (c-debug-add-face in-face (point) 'c-debug-in-sws-face)
1662 ; (setq in-face nil))
1663 ; (setq in-face (point)))
1664 ; (not (eobp)))))))
1665
1666 (defmacro c-debug-sws-msg (&rest args)
1667 ;;`(message ,@args)
1668 )
1669
1670 (defmacro c-put-is-sws (beg end)
1671 ;; This macro does a hidden buffer change.
1672 `(let ((beg ,beg) (end ,end))
1673 (put-text-property beg end 'c-is-sws t)
1674 ,@(when (facep 'c-debug-is-sws-face)
1675 `((c-debug-add-face beg end 'c-debug-is-sws-face)))))
1676
1677 (defmacro c-put-in-sws (beg end)
1678 ;; This macro does a hidden buffer change.
1679 `(let ((beg ,beg) (end ,end))
1680 (put-text-property beg end 'c-in-sws t)
1681 ,@(when (facep 'c-debug-is-sws-face)
1682 `((c-debug-add-face beg end 'c-debug-in-sws-face)))))
1683
1684 (defmacro c-remove-is-sws (beg end)
1685 ;; This macro does a hidden buffer change.
1686 `(let ((beg ,beg) (end ,end))
1687 (remove-text-properties beg end '(c-is-sws nil))
1688 ,@(when (facep 'c-debug-is-sws-face)
1689 `((c-debug-remove-face beg end 'c-debug-is-sws-face)))))
1690
1691 (defmacro c-remove-in-sws (beg end)
1692 ;; This macro does a hidden buffer change.
1693 `(let ((beg ,beg) (end ,end))
1694 (remove-text-properties beg end '(c-in-sws nil))
1695 ,@(when (facep 'c-debug-is-sws-face)
1696 `((c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1697
1698 (defmacro c-remove-is-and-in-sws (beg end)
1699 ;; This macro does a hidden buffer change.
1700 `(let ((beg ,beg) (end ,end))
1701 (remove-text-properties beg end '(c-is-sws nil c-in-sws nil))
1702 ,@(when (facep 'c-debug-is-sws-face)
1703 `((c-debug-remove-face beg end 'c-debug-is-sws-face)
1704 (c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1705
1706 (defsubst c-invalidate-sws-region-after (beg end)
1707 ;; Called from `after-change-functions'. Note that if
1708 ;; `c-forward-sws' or `c-backward-sws' are used outside
1709 ;; `c-save-buffer-state' or similar then this will remove the cache
1710 ;; properties right after they're added.
1711 ;;
1712 ;; This function does hidden buffer changes.
1713
1714 (save-excursion
1715 ;; Adjust the end to remove the properties in any following simple
1716 ;; ws up to and including the next line break, if there is any
1717 ;; after the changed region. This is necessary e.g. when a rung
1718 ;; marked empty line is converted to a line comment by inserting
1719 ;; "//" before the line break. In that case the line break would
1720 ;; keep the rung mark which could make a later `c-backward-sws'
1721 ;; move into the line comment instead of over it.
1722 (goto-char end)
1723 (skip-chars-forward " \t\f\v")
1724 (when (and (eolp) (not (eobp)))
1725 (setq end (1+ (point)))))
1726
1727 (when (and (= beg end)
1728 (get-text-property beg 'c-in-sws)
1729 (> beg (point-min))
1730 (get-text-property (1- beg) 'c-in-sws))
1731 ;; Ensure that an `c-in-sws' range gets broken. Note that it isn't
1732 ;; safe to keep a range that was continuous before the change. E.g:
1733 ;;
1734 ;; #define foo
1735 ;; \
1736 ;; bar
1737 ;;
1738 ;; There can be a "ladder" between "#" and "b". Now, if the newline
1739 ;; after "foo" is removed then "bar" will become part of the cpp
1740 ;; directive instead of a syntactically relevant token. In that
1741 ;; case there's no longer syntactic ws from "#" to "b".
1742 (setq beg (1- beg)))
1743
1744 (c-debug-sws-msg "c-invalidate-sws-region-after [%s..%s]" beg end)
1745 (c-remove-is-and-in-sws beg end))
1746
1747 (defun c-forward-sws ()
1748 ;; Used by `c-forward-syntactic-ws' to implement the unbounded search.
1749 ;;
1750 ;; This function might do hidden buffer changes.
1751
1752 (let (;; `rung-pos' is set to a position as early as possible in the
1753 ;; unmarked part of the simple ws region.
1754 (rung-pos (point)) next-rung-pos rung-end-pos last-put-in-sws-pos
1755 rung-is-marked next-rung-is-marked simple-ws-end
1756 ;; `safe-start' is set when it's safe to cache the start position.
1757 ;; It's not set if we've initially skipped over comments and line
1758 ;; continuations since we might have gone out through the end of a
1759 ;; macro then. This provision makes `c-forward-sws' not populate the
1760 ;; cache in the majority of cases, but otoh is `c-backward-sws' by far
1761 ;; more common.
1762 safe-start)
1763
1764 ;; Skip simple ws and do a quick check on the following character to see
1765 ;; if it's anything that can't start syntactic ws, so we can bail out
1766 ;; early in the majority of cases when there just are a few ws chars.
1767 (skip-chars-forward " \t\n\r\f\v")
1768 (when (or (looking-at c-syntactic-ws-start)
1769 (and c-opt-cpp-prefix
1770 (looking-at c-noise-macro-name-re)))
1771
1772 (setq rung-end-pos (min (1+ (point)) (point-max)))
1773 (if (setq rung-is-marked (text-property-any rung-pos rung-end-pos
1774 'c-is-sws t))
1775 ;; Find the last rung position to avoid setting properties in all
1776 ;; the cases when the marked rung is complete.
1777 ;; (`next-single-property-change' is certain to move at least one
1778 ;; step forward.)
1779 (setq rung-pos (1- (c-next-single-property-change
1780 rung-is-marked 'c-is-sws nil rung-end-pos)))
1781 ;; Got no marked rung here. Since the simple ws might have started
1782 ;; inside a line comment or cpp directive we must set `rung-pos' as
1783 ;; high as possible.
1784 (setq rung-pos (point)))
1785
1786 (with-silent-modifications
1787 (while
1788 (progn
1789 ;; In the following while form, we move over a "ladder" and
1790 ;; following simple WS each time round the loop, appending the WS
1791 ;; onto the ladder, joining adjacent ladders, and terminating when
1792 ;; there is no more WS or we reach EOB.
1793 (while
1794 (when (and rung-is-marked
1795 (get-text-property (point) 'c-in-sws))
1796
1797 ;; The following search is the main reason that `c-in-sws'
1798 ;; and `c-is-sws' aren't combined to one property.
1799 (goto-char (c-next-single-property-change
1800 (point) 'c-in-sws nil (point-max)))
1801 (unless (get-text-property (point) 'c-is-sws)
1802 ;; If the `c-in-sws' region extended past the last
1803 ;; `c-is-sws' char we have to go back a bit.
1804 (or (get-text-property (1- (point)) 'c-is-sws)
1805 (goto-char (previous-single-property-change
1806 (point) 'c-is-sws)))
1807 (backward-char))
1808
1809 (c-debug-sws-msg
1810 "c-forward-sws cached move %s -> %s (max %s)"
1811 rung-pos (point) (point-max))
1812
1813 (setq rung-pos (point))
1814 (and (> (skip-chars-forward " \t\n\r\f\v") 0)
1815 (not (eobp))))
1816
1817 ;; We'll loop here if there is simple ws after the last rung.
1818 ;; That means that there's been some change in it and it's
1819 ;; possible that we've stepped into another ladder, so extend
1820 ;; the previous one to join with it if there is one, and try to
1821 ;; use the cache again.
1822 (c-debug-sws-msg
1823 "c-forward-sws extending rung with [%s..%s] (max %s)"
1824 (1+ rung-pos) (1+ (point)) (point-max))
1825 (unless (get-text-property (point) 'c-is-sws)
1826 ;; Remove any `c-in-sws' property from the last char of
1827 ;; the rung before we mark it with `c-is-sws', so that we
1828 ;; won't connect with the remains of a broken "ladder".
1829 (c-remove-in-sws (point) (1+ (point))))
1830 (c-put-is-sws (1+ rung-pos)
1831 (1+ (point)))
1832 (c-put-in-sws rung-pos
1833 (setq rung-pos (point)
1834 last-put-in-sws-pos rung-pos)))
1835
1836 ;; Now move over any comments (x)or a CPP construct.
1837 (setq simple-ws-end (point))
1838 (c-forward-comments)
1839
1840 (cond
1841 ((/= (point) simple-ws-end)
1842 ;; Skipped over comments. Don't cache at eob in case the buffer
1843 ;; is narrowed.
1844 (not (eobp)))
1845
1846 ((save-excursion
1847 (and c-opt-cpp-prefix
1848 (looking-at c-opt-cpp-start)
1849 (progn (skip-chars-backward " \t")
1850 (bolp))
1851 (or (bobp)
1852 (progn (backward-char)
1853 (not (eq (char-before) ?\\))))))
1854 ;; Skip a preprocessor directive.
1855 (end-of-line)
1856 (while (and (eq (char-before) ?\\)
1857 (= (forward-line 1) 0))
1858 (end-of-line))
1859 (forward-line 1)
1860 (setq safe-start t)
1861 ;; Don't cache at eob in case the buffer is narrowed.
1862 (not (eobp)))
1863
1864 ((and c-opt-cpp-prefix
1865 (looking-at c-noise-macro-name-re))
1866 ;; Skip over a noise macro.
1867 (goto-char (match-end 1))
1868 (setq safe-start t)
1869 (not (eobp)))))
1870
1871 ;; We've searched over a piece of non-white syntactic ws. See if this
1872 ;; can be cached.
1873 (setq next-rung-pos (point))
1874 (skip-chars-forward " \t\n\r\f\v")
1875 (setq rung-end-pos (min (1+ (point)) (point-max)))
1876
1877 (if (or
1878 ;; Cache if we haven't skipped comments only, and if we started
1879 ;; either from a marked rung or from a completely uncached
1880 ;; position.
1881 (and safe-start
1882 (or rung-is-marked
1883 (not (get-text-property simple-ws-end 'c-in-sws))))
1884
1885 ;; See if there's a marked rung in the encountered simple ws. If
1886 ;; so then we can cache, unless `safe-start' is nil. Even then
1887 ;; we need to do this to check if the cache can be used for the
1888 ;; next step.
1889 (and (setq next-rung-is-marked
1890 (text-property-any next-rung-pos rung-end-pos
1891 'c-is-sws t))
1892 safe-start))
1893
1894 (progn
1895 (c-debug-sws-msg
1896 "c-forward-sws caching [%s..%s] - [%s..%s] (max %s)"
1897 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1898 (point-max))
1899
1900 ;; Remove the properties for any nested ws that might be cached.
1901 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
1902 ;; anyway.
1903 (c-remove-is-sws (1+ simple-ws-end) next-rung-pos)
1904 (unless (and rung-is-marked (= rung-pos simple-ws-end))
1905 (c-put-is-sws rung-pos
1906 (1+ simple-ws-end))
1907 (setq rung-is-marked t))
1908 (c-put-in-sws rung-pos
1909 (setq rung-pos (point)
1910 last-put-in-sws-pos rung-pos))
1911 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
1912 ;; Remove any `c-in-sws' property from the last char of
1913 ;; the rung before we mark it with `c-is-sws', so that we
1914 ;; won't connect with the remains of a broken "ladder".
1915 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
1916 (c-put-is-sws next-rung-pos
1917 rung-end-pos))
1918
1919 (c-debug-sws-msg
1920 "c-forward-sws not caching [%s..%s] - [%s..%s] (max %s)"
1921 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1922 (point-max))
1923
1924 ;; Set `rung-pos' for the next rung. It's the same thing here as
1925 ;; initially, except that the rung position is set as early as
1926 ;; possible since we can't be in the ending ws of a line comment or
1927 ;; cpp directive now.
1928 (if (setq rung-is-marked next-rung-is-marked)
1929 (setq rung-pos (1- (c-next-single-property-change
1930 rung-is-marked 'c-is-sws nil rung-end-pos)))
1931 (setq rung-pos next-rung-pos))
1932 (setq safe-start t)))
1933
1934 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
1935 ;; another one after the point (which might occur when editing inside a
1936 ;; comment or macro).
1937 (when (eq last-put-in-sws-pos (point))
1938 (cond ((< last-put-in-sws-pos (point-max))
1939 (c-debug-sws-msg
1940 "c-forward-sws clearing at %s for cache separation"
1941 last-put-in-sws-pos)
1942 (c-remove-in-sws last-put-in-sws-pos
1943 (1+ last-put-in-sws-pos)))
1944 (t
1945 ;; If at eob we have to clear the last character before the end
1946 ;; instead since the buffer might be narrowed and there might
1947 ;; be a `c-in-sws' after (point-max). In this case it's
1948 ;; necessary to clear both properties.
1949 (c-debug-sws-msg
1950 "c-forward-sws clearing thoroughly at %s for cache separation"
1951 (1- last-put-in-sws-pos))
1952 (c-remove-is-and-in-sws (1- last-put-in-sws-pos)
1953 last-put-in-sws-pos))))
1954 ))))
1955
1956 (defun c-backward-sws ()
1957 ;; Used by `c-backward-syntactic-ws' to implement the unbounded search.
1958 ;;
1959 ;; This function might do hidden buffer changes.
1960
1961 (let (;; `rung-pos' is set to a position as late as possible in the unmarked
1962 ;; part of the simple ws region.
1963 (rung-pos (point)) next-rung-pos last-put-in-sws-pos
1964 rung-is-marked simple-ws-beg cmt-skip-pos)
1965
1966 ;; Skip simple horizontal ws and do a quick check on the preceding
1967 ;; character to see if it's anything that can't end syntactic ws, so we can
1968 ;; bail out early in the majority of cases when there just are a few ws
1969 ;; chars. Newlines are complicated in the backward direction, so we can't
1970 ;; skip over them.
1971 (skip-chars-backward " \t\f")
1972 (when (and (not (bobp))
1973 (save-excursion
1974 (backward-char)
1975 (or (looking-at c-syntactic-ws-end)
1976 (and c-opt-cpp-prefix
1977 (looking-at c-symbol-char-key)
1978 (progn (c-beginning-of-current-token)
1979 (looking-at c-noise-macro-name-re))))))
1980 ;; Try to find a rung position in the simple ws preceding point, so that
1981 ;; we can get a cache hit even if the last bit of the simple ws has
1982 ;; changed recently.
1983 (setq simple-ws-beg (point))
1984 (skip-chars-backward " \t\n\r\f\v")
1985 (if (setq rung-is-marked (text-property-any
1986 (point) (min (1+ rung-pos) (point-max))
1987 'c-is-sws t))
1988 ;; `rung-pos' will be the earliest marked position, which means that
1989 ;; there might be later unmarked parts in the simple ws region.
1990 ;; It's not worth the effort to fix that; the last part of the
1991 ;; simple ws is also typically edited often, so it could be wasted.
1992 (goto-char (setq rung-pos rung-is-marked))
1993 (goto-char simple-ws-beg))
1994
1995 (with-silent-modifications
1996 (while
1997 (progn
1998 ;; Each time round the next while form, we move back over a ladder
1999 ;; and append any simple WS preceding it, if possible joining with
2000 ;; the previous ladder.
2001 (while
2002 (when (and rung-is-marked
2003 (not (bobp))
2004 (get-text-property (1- (point)) 'c-in-sws))
2005
2006 ;; The following search is the main reason that `c-in-sws'
2007 ;; and `c-is-sws' aren't combined to one property.
2008 (goto-char (previous-single-property-change
2009 (point) 'c-in-sws nil (point-min)))
2010 (unless (get-text-property (point) 'c-is-sws)
2011 ;; If the `c-in-sws' region extended past the first
2012 ;; `c-is-sws' char we have to go forward a bit.
2013 (goto-char (c-next-single-property-change
2014 (point) 'c-is-sws)))
2015
2016 (c-debug-sws-msg
2017 "c-backward-sws cached move %s <- %s (min %s)"
2018 (point) rung-pos (point-min))
2019
2020 (setq rung-pos (point))
2021 (if (and (< (min (skip-chars-backward " \t\f\v")
2022 (progn
2023 (setq simple-ws-beg (point))
2024 (skip-chars-backward " \t\n\r\f\v")))
2025 0)
2026 (setq rung-is-marked
2027 (text-property-any (point) rung-pos
2028 'c-is-sws t)))
2029 t
2030 (goto-char simple-ws-beg)
2031 nil))
2032
2033 ;; We'll loop here if there is simple ws before the first rung.
2034 ;; That means that there's been some change in it and it's
2035 ;; possible that we've stepped into another ladder, so extend
2036 ;; the previous one to join with it if there is one, and try to
2037 ;; use the cache again.
2038 (c-debug-sws-msg
2039 "c-backward-sws extending rung with [%s..%s] (min %s)"
2040 rung-is-marked rung-pos (point-min))
2041 (unless (get-text-property (1- rung-pos) 'c-is-sws)
2042 ;; Remove any `c-in-sws' property from the last char of
2043 ;; the rung before we mark it with `c-is-sws', so that we
2044 ;; won't connect with the remains of a broken "ladder".
2045 (c-remove-in-sws (1- rung-pos) rung-pos))
2046 (c-put-is-sws rung-is-marked
2047 rung-pos)
2048 (c-put-in-sws rung-is-marked
2049 (1- rung-pos))
2050 (setq rung-pos rung-is-marked
2051 last-put-in-sws-pos rung-pos))
2052
2053 (c-backward-comments)
2054 (setq cmt-skip-pos (point))
2055
2056 (cond
2057 ((and c-opt-cpp-prefix
2058 (/= cmt-skip-pos simple-ws-beg)
2059 (c-beginning-of-macro))
2060 ;; Inside a cpp directive. See if it should be skipped over.
2061 (let ((cpp-beg (point)))
2062
2063 ;; Move back over all line continuations in the region skipped
2064 ;; over by `c-backward-comments'. If we go past it then we
2065 ;; started inside the cpp directive.
2066 (goto-char simple-ws-beg)
2067 (beginning-of-line)
2068 (while (and (> (point) cmt-skip-pos)
2069 (progn (backward-char)
2070 (eq (char-before) ?\\)))
2071 (beginning-of-line))
2072
2073 (if (< (point) cmt-skip-pos)
2074 ;; Don't move past the cpp directive if we began inside
2075 ;; it. Note that the position at the end of the last line
2076 ;; of the macro is also considered to be within it.
2077 (progn (goto-char cmt-skip-pos)
2078 nil)
2079
2080 ;; It's worthwhile to spend a little bit of effort on finding
2081 ;; the end of the macro, to get a good `simple-ws-beg'
2082 ;; position for the cache. Note that `c-backward-comments'
2083 ;; could have stepped over some comments before going into
2084 ;; the macro, and then `simple-ws-beg' must be kept on the
2085 ;; same side of those comments.
2086 (goto-char simple-ws-beg)
2087 (skip-chars-backward " \t\n\r\f\v")
2088 (if (eq (char-before) ?\\)
2089 (forward-char))
2090 (forward-line 1)
2091 (if (< (point) simple-ws-beg)
2092 ;; Might happen if comments after the macro were skipped
2093 ;; over.
2094 (setq simple-ws-beg (point)))
2095
2096 (goto-char cpp-beg)
2097 t)))
2098
2099 ((/= (save-excursion
2100 (skip-chars-forward " \t\n\r\f\v" simple-ws-beg)
2101 (setq next-rung-pos (point)))
2102 simple-ws-beg)
2103 ;; Skipped over comments. Must put point at the end of
2104 ;; the simple ws at point since we might be after a line
2105 ;; comment or cpp directive that's been partially
2106 ;; narrowed out, and we can't risk marking the simple ws
2107 ;; at the end of it.
2108 (goto-char next-rung-pos)
2109 t)
2110
2111 ((and c-opt-cpp-prefix
2112 (save-excursion
2113 (and (< (skip-syntax-backward "w_") 0)
2114 (progn (setq next-rung-pos (point))
2115 (looking-at c-noise-macro-name-re)))))
2116 ;; Skipped over a noise macro
2117 (goto-char next-rung-pos)
2118 t)))
2119
2120 ;; We've searched over a piece of non-white syntactic ws. See if this
2121 ;; can be cached.
2122 (setq next-rung-pos (point))
2123 (skip-chars-backward " \t\f\v")
2124
2125 (if (or
2126 ;; Cache if we started either from a marked rung or from a
2127 ;; completely uncached position.
2128 rung-is-marked
2129 (not (get-text-property (1- simple-ws-beg) 'c-in-sws))
2130
2131 ;; Cache if there's a marked rung in the encountered simple ws.
2132 (save-excursion
2133 (skip-chars-backward " \t\n\r\f\v")
2134 (text-property-any (point) (min (1+ next-rung-pos) (point-max))
2135 'c-is-sws t)))
2136
2137 (progn
2138 (c-debug-sws-msg
2139 "c-backward-sws caching [%s..%s] - [%s..%s] (min %s)"
2140 (point) (1+ next-rung-pos)
2141 simple-ws-beg (min (1+ rung-pos) (point-max))
2142 (point-min))
2143
2144 ;; Remove the properties for any nested ws that might be cached.
2145 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
2146 ;; anyway.
2147 (c-remove-is-sws (1+ next-rung-pos) simple-ws-beg)
2148 (unless (and rung-is-marked (= simple-ws-beg rung-pos))
2149 (let ((rung-end-pos (min (1+ rung-pos) (point-max))))
2150 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
2151 ;; Remove any `c-in-sws' property from the last char of
2152 ;; the rung before we mark it with `c-is-sws', so that we
2153 ;; won't connect with the remains of a broken "ladder".
2154 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
2155 (c-put-is-sws simple-ws-beg
2156 rung-end-pos)
2157 (setq rung-is-marked t)))
2158 (c-put-in-sws (setq simple-ws-beg (point)
2159 last-put-in-sws-pos simple-ws-beg)
2160 rung-pos)
2161 (c-put-is-sws (setq rung-pos simple-ws-beg)
2162 (1+ next-rung-pos)))
2163
2164 (c-debug-sws-msg
2165 "c-backward-sws not caching [%s..%s] - [%s..%s] (min %s)"
2166 (point) (1+ next-rung-pos)
2167 simple-ws-beg (min (1+ rung-pos) (point-max))
2168 (point-min))
2169 (setq rung-pos next-rung-pos
2170 simple-ws-beg (point))
2171 ))
2172
2173 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
2174 ;; another one before the point (which might occur when editing inside a
2175 ;; comment or macro).
2176 (when (eq last-put-in-sws-pos (point))
2177 (cond ((< (point-min) last-put-in-sws-pos)
2178 (c-debug-sws-msg
2179 "c-backward-sws clearing at %s for cache separation"
2180 (1- last-put-in-sws-pos))
2181 (c-remove-in-sws (1- last-put-in-sws-pos)
2182 last-put-in-sws-pos))
2183 ((> (point-min) 1)
2184 ;; If at bob and the buffer is narrowed, we have to clear the
2185 ;; character we're standing on instead since there might be a
2186 ;; `c-in-sws' before (point-min). In this case it's necessary
2187 ;; to clear both properties.
2188 (c-debug-sws-msg
2189 "c-backward-sws clearing thoroughly at %s for cache separation"
2190 last-put-in-sws-pos)
2191 (c-remove-is-and-in-sws last-put-in-sws-pos
2192 (1+ last-put-in-sws-pos)))))
2193 ))))
2194
2195 \f
2196 ;; Other whitespace tools
2197 (defun c-partial-ws-p (beg end)
2198 ;; Is the region (beg end) WS, and is there WS (or BOB/EOB) next to the
2199 ;; region? This is a "heuristic" function. .....
2200 ;;
2201 ;; The motivation for the second bit is to check whether removing this
2202 ;; region would coalesce two symbols.
2203 ;;
2204 ;; FIXME!!! This function doesn't check virtual semicolons in any way. Be
2205 ;; careful about using this function for, e.g. AWK. (2007/3/7)
2206 (save-excursion
2207 (let ((end+1 (min (1+ end) (point-max))))
2208 (or (progn (goto-char (max (point-min) (1- beg)))
2209 (c-skip-ws-forward end)
2210 (eq (point) end))
2211 (progn (goto-char beg)
2212 (c-skip-ws-forward end+1)
2213 (eq (point) end+1))))))
2214 \f
2215 ;; A system for finding noteworthy parens before the point.
2216
2217 (defconst c-state-cache-too-far 5000)
2218 ;; A maximum comfortable scanning distance, e.g. between
2219 ;; `c-state-cache-good-pos' and "HERE" (where we call c-parse-state). When
2220 ;; this distance is exceeded, we take "emergency measures", e.g. by clearing
2221 ;; the cache and starting again from point-min or a beginning of defun. This
2222 ;; value can be tuned for efficiency or set to a lower value for testing.
2223
2224 (defvar c-state-cache nil)
2225 (make-variable-buffer-local 'c-state-cache)
2226 ;; The state cache used by `c-parse-state' to cut down the amount of
2227 ;; searching. It's the result from some earlier `c-parse-state' call. See
2228 ;; `c-parse-state''s doc string for details of its structure.
2229 ;;
2230 ;; The use of the cached info is more effective if the next
2231 ;; `c-parse-state' call is on a line close by the one the cached state
2232 ;; was made at; the cache can actually slow down a little if the
2233 ;; cached state was made very far back in the buffer. The cache is
2234 ;; most effective if `c-parse-state' is used on each line while moving
2235 ;; forward.
2236
2237 (defvar c-state-cache-good-pos 1)
2238 (make-variable-buffer-local 'c-state-cache-good-pos)
2239 ;; This is a position where `c-state-cache' is known to be correct, or
2240 ;; nil (see below). It's a position inside one of the recorded unclosed
2241 ;; parens or the top level, but not further nested inside any literal or
2242 ;; subparen that is closed before the last recorded position.
2243 ;;
2244 ;; The exact position is chosen to try to be close to yet earlier than
2245 ;; the position where `c-state-cache' will be called next. Right now
2246 ;; the heuristic is to set it to the position after the last found
2247 ;; closing paren (of any type) before the line on which
2248 ;; `c-parse-state' was called. That is chosen primarily to work well
2249 ;; with refontification of the current line.
2250 ;;
2251 ;; 2009-07-28: When `c-state-point-min' and the last position where
2252 ;; `c-parse-state' or for which `c-invalidate-state-cache' was called, are
2253 ;; both in the same literal, there is no such "good position", and
2254 ;; c-state-cache-good-pos is then nil. This is the ONLY circumstance in which
2255 ;; it can be nil. In this case, `c-state-point-min-literal' will be non-nil.
2256 ;;
2257 ;; 2009-06-12: In a brace desert, c-state-cache-good-pos may also be in
2258 ;; the middle of the desert, as long as it is not within a brace pair
2259 ;; recorded in `c-state-cache' or a paren/bracket pair.
2260
2261 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2262 ;; We maintain a simple cache of positions which aren't in a literal, so as to
2263 ;; speed up testing for non-literality.
2264 (defconst c-state-nonlit-pos-interval 3000)
2265 ;; The approximate interval between entries in `c-state-nonlit-pos-cache'.
2266
2267 (defvar c-state-nonlit-pos-cache nil)
2268 (make-variable-buffer-local 'c-state-nonlit-pos-cache)
2269 ;; A list of buffer positions which are known not to be in a literal or a cpp
2270 ;; construct. This is ordered with higher positions at the front of the list.
2271 ;; Only those which are less than `c-state-nonlit-pos-cache-limit' are valid.
2272
2273 (defvar c-state-nonlit-pos-cache-limit 1)
2274 (make-variable-buffer-local 'c-state-nonlit-pos-cache-limit)
2275 ;; An upper limit on valid entries in `c-state-nonlit-pos-cache'. This is
2276 ;; reduced by buffer changes, and increased by invocations of
2277 ;; `c-state-literal-at'.
2278
2279 (defvar c-state-semi-nonlit-pos-cache nil)
2280 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache)
2281 ;; A list of buffer positions which are known not to be in a literal. This is
2282 ;; ordered with higher positions at the front of the list. Only those which
2283 ;; are less than `c-state-semi-nonlit-pos-cache-limit' are valid.
2284
2285 (defvar c-state-semi-nonlit-pos-cache-limit 1)
2286 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache-limit)
2287 ;; An upper limit on valid entries in `c-state-semi-nonlit-pos-cache'. This is
2288 ;; reduced by buffer changes, and increased by invocations of
2289 ;; `c-state-literal-at'. FIXME!!!
2290
2291 (defsubst c-state-pp-to-literal (from to &optional not-in-delimiter)
2292 ;; Do a parse-partial-sexp from FROM to TO, returning either
2293 ;; (STATE TYPE (BEG . END)) if TO is in a literal; or
2294 ;; (STATE) otherwise,
2295 ;; where STATE is the parsing state at TO, TYPE is the type of the literal
2296 ;; (one of 'c, 'c++, 'string) and (BEG . END) is the boundaries of the literal.
2297 ;;
2298 ;; Unless NOT-IN-DELIMITER is non-nil, when TO is inside a two-character
2299 ;; comment opener, this is recognized as being in a comment literal.
2300 ;;
2301 ;; Only elements 3 (in a string), 4 (in a comment), 5 (following a quote),
2302 ;; 7 (comment type) and 8 (start of comment/string) (and possibly 9) of
2303 ;; STATE are valid.
2304 (save-excursion
2305 (let ((s (parse-partial-sexp from to))
2306 ty co-st)
2307 (cond
2308 ((or (nth 3 s) (nth 4 s)) ; in a string or comment
2309 (setq ty (cond
2310 ((nth 3 s) 'string)
2311 ((nth 7 s) 'c++)
2312 (t 'c)))
2313 (parse-partial-sexp (point) (point-max)
2314 nil ; TARGETDEPTH
2315 nil ; STOPBEFORE
2316 s ; OLDSTATE
2317 'syntax-table) ; stop at end of literal
2318 `(,s ,ty (,(nth 8 s) . ,(point))))
2319
2320 ((and (not not-in-delimiter) ; inside a comment starter
2321 (not (bobp))
2322 (progn (backward-char)
2323 (and (not (looking-at "\\s!"))
2324 (looking-at c-comment-start-regexp))))
2325 (setq ty (if (looking-at c-block-comment-start-regexp) 'c 'c++)
2326 co-st (point))
2327 (forward-comment 1)
2328 `(,s ,ty (,co-st . ,(point))))
2329
2330 (t `(,s))))))
2331
2332 (defun c-state-safe-place (here)
2333 ;; Return a buffer position before HERE which is "safe", i.e. outside any
2334 ;; string, comment, or macro.
2335 ;;
2336 ;; NOTE: This function manipulates `c-state-nonlit-pos-cache'. This cache
2337 ;; MAY NOT contain any positions within macros, since macros are frequently
2338 ;; turned into comments by use of the `c-cpp-delimiter' category properties.
2339 ;; We cannot rely on this mechanism whilst determining a cache pos since
2340 ;; this function is also called from outwith `c-parse-state'.
2341 (save-restriction
2342 (widen)
2343 (save-excursion
2344 (let ((c c-state-nonlit-pos-cache)
2345 pos npos high-pos lit macro-beg macro-end)
2346 ;; Trim the cache to take account of buffer changes.
2347 (while (and c (> (car c) c-state-nonlit-pos-cache-limit))
2348 (setq c (cdr c)))
2349 (setq c-state-nonlit-pos-cache c)
2350
2351 (while (and c (> (car c) here))
2352 (setq high-pos (car c))
2353 (setq c (cdr c)))
2354 (setq pos (or (car c) (point-min)))
2355
2356 (unless high-pos
2357 (while
2358 ;; Add an element to `c-state-nonlit-pos-cache' each iteration.
2359 (and
2360 (setq npos
2361 (when (<= (+ pos c-state-nonlit-pos-interval) here)
2362 (+ pos c-state-nonlit-pos-interval)))
2363
2364 ;; Test for being in a literal. If so, go to after it.
2365 (progn
2366 (setq lit (car (cddr (c-state-pp-to-literal pos npos))))
2367 (or (null lit)
2368 (prog1 (<= (cdr lit) here)
2369 (setq npos (cdr lit)))))
2370
2371 ;; Test for being in a macro. If so, go to after it.
2372 (progn
2373 (goto-char npos)
2374 (setq macro-beg
2375 (and (c-beginning-of-macro) (/= (point) npos) (point)))
2376 (when macro-beg
2377 (c-syntactic-end-of-macro)
2378 (or (eobp) (forward-char))
2379 (setq macro-end (point)))
2380 (or (null macro-beg)
2381 (prog1 (<= macro-end here)
2382 (setq npos macro-end)))))
2383
2384 (setq pos npos)
2385 (setq c-state-nonlit-pos-cache (cons pos c-state-nonlit-pos-cache)))
2386 ;; Add one extra element above HERE so as to to avoid the previous
2387 ;; expensive calculation when the next call is close to the current
2388 ;; one. This is especially useful when inside a large macro.
2389 (when npos
2390 (setq c-state-nonlit-pos-cache
2391 (cons npos c-state-nonlit-pos-cache))))
2392
2393 (if (> pos c-state-nonlit-pos-cache-limit)
2394 (setq c-state-nonlit-pos-cache-limit pos))
2395 pos))))
2396
2397 (defun c-state-semi-safe-place (here)
2398 ;; Return a buffer position before HERE which is "safe", i.e. outside any
2399 ;; string or comment. It may be in a macro.
2400 (save-restriction
2401 (widen)
2402 (save-excursion
2403 (let ((c c-state-semi-nonlit-pos-cache)
2404 pos npos high-pos lit macro-beg macro-end)
2405 ;; Trim the cache to take account of buffer changes.
2406 (while (and c (> (car c) c-state-semi-nonlit-pos-cache-limit))
2407 (setq c (cdr c)))
2408 (setq c-state-semi-nonlit-pos-cache c)
2409
2410 (while (and c (> (car c) here))
2411 (setq high-pos (car c))
2412 (setq c (cdr c)))
2413 (setq pos (or (car c) (point-min)))
2414
2415 (unless high-pos
2416 (while
2417 ;; Add an element to `c-state-semi-nonlit-pos-cache' each iteration.
2418 (and
2419 (<= (setq npos (+ pos c-state-nonlit-pos-interval)) here)
2420
2421 ;; Test for being in a literal. If so, go to after it.
2422 (progn
2423 (setq lit (car (cddr (c-state-pp-to-literal pos npos))))
2424 (or (null lit)
2425 (prog1 (<= (cdr lit) here)
2426 (setq npos (cdr lit))))))
2427
2428 (setq pos npos)
2429 (setq c-state-semi-nonlit-pos-cache
2430 (cons pos c-state-semi-nonlit-pos-cache))))
2431
2432 (if (> pos c-state-semi-nonlit-pos-cache-limit)
2433 (setq c-state-semi-nonlit-pos-cache-limit pos))
2434 pos))))
2435
2436 (defun c-state-literal-at (here)
2437 ;; If position HERE is inside a literal, return (START . END), the
2438 ;; boundaries of the literal (which may be outside the accessible bit of the
2439 ;; buffer). Otherwise, return nil.
2440 ;;
2441 ;; This function is almost the same as `c-literal-limits'. Previously, it
2442 ;; differed in that it was a lower level function, and that it rigorously
2443 ;; followed the syntax from BOB. `c-literal-limits' is now (2011-12)
2444 ;; virtually identical to this function.
2445 (save-restriction
2446 (widen)
2447 (save-excursion
2448 (let ((pos (c-state-safe-place here)))
2449 (car (cddr (c-state-pp-to-literal pos here)))))))
2450
2451 (defsubst c-state-lit-beg (pos)
2452 ;; Return the start of the literal containing POS, or POS itself.
2453 (or (car (c-state-literal-at pos))
2454 pos))
2455
2456 (defsubst c-state-cache-non-literal-place (pos state)
2457 ;; Return a position outside of a string/comment/macro at or before POS.
2458 ;; STATE is the parse-partial-sexp state at POS.
2459 (let ((res (if (or (nth 3 state) ; in a string?
2460 (nth 4 state)) ; in a comment?
2461 (nth 8 state)
2462 pos)))
2463 (save-excursion
2464 (goto-char res)
2465 (if (c-beginning-of-macro)
2466 (point)
2467 res))))
2468
2469 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2470 ;; Stuff to do with point-min, and coping with any literal there.
2471 (defvar c-state-point-min 1)
2472 (make-variable-buffer-local 'c-state-point-min)
2473 ;; This is (point-min) when `c-state-cache' was last calculated. A change of
2474 ;; narrowing is likely to affect the parens that are visible before the point.
2475
2476 (defvar c-state-point-min-lit-type nil)
2477 (make-variable-buffer-local 'c-state-point-min-lit-type)
2478 (defvar c-state-point-min-lit-start nil)
2479 (make-variable-buffer-local 'c-state-point-min-lit-start)
2480 ;; These two variables define the literal, if any, containing point-min.
2481 ;; Their values are, respectively, 'string, c, or c++, and the start of the
2482 ;; literal. If there's no literal there, they're both nil.
2483
2484 (defvar c-state-min-scan-pos 1)
2485 (make-variable-buffer-local 'c-state-min-scan-pos)
2486 ;; This is the earliest buffer-pos from which scanning can be done. It is
2487 ;; either the end of the literal containing point-min, or point-min itself.
2488 ;; It becomes nil if the buffer is changed earlier than this point.
2489 (defun c-state-get-min-scan-pos ()
2490 ;; Return the lowest valid scanning pos. This will be the end of the
2491 ;; literal enclosing point-min, or point-min itself.
2492 (or c-state-min-scan-pos
2493 (save-restriction
2494 (save-excursion
2495 (widen)
2496 (goto-char c-state-point-min-lit-start)
2497 (if (eq c-state-point-min-lit-type 'string)
2498 (forward-sexp)
2499 (forward-comment 1))
2500 (setq c-state-min-scan-pos (point))))))
2501
2502 (defun c-state-mark-point-min-literal ()
2503 ;; Determine the properties of any literal containing POINT-MIN, setting the
2504 ;; variables `c-state-point-min-lit-type', `c-state-point-min-lit-start',
2505 ;; and `c-state-min-scan-pos' accordingly. The return value is meaningless.
2506 (let ((p-min (point-min))
2507 lit)
2508 (save-restriction
2509 (widen)
2510 (setq lit (c-state-literal-at p-min))
2511 (if lit
2512 (setq c-state-point-min-lit-type
2513 (save-excursion
2514 (goto-char (car lit))
2515 (cond
2516 ((looking-at c-block-comment-start-regexp) 'c)
2517 ((looking-at c-line-comment-starter) 'c++)
2518 (t 'string)))
2519 c-state-point-min-lit-start (car lit)
2520 c-state-min-scan-pos (cdr lit))
2521 (setq c-state-point-min-lit-type nil
2522 c-state-point-min-lit-start nil
2523 c-state-min-scan-pos p-min)))))
2524
2525
2526 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2527 ;; A variable which signals a brace dessert - helpful for reducing the number
2528 ;; of fruitless backward scans.
2529 (defvar c-state-brace-pair-desert nil)
2530 (make-variable-buffer-local 'c-state-brace-pair-desert)
2531 ;; Used only in `c-append-lower-brace-pair-to-state-cache'. It is set when
2532 ;; that defun has searched backwards for a brace pair and not found one. Its
2533 ;; value is either nil or a cons (PA . FROM), where PA is the position of the
2534 ;; enclosing opening paren/brace/bracket which bounds the backwards search (or
2535 ;; nil when at top level) and FROM is where the backward search started. It
2536 ;; is reset to nil in `c-invalidate-state-cache'.
2537
2538
2539 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2540 ;; Lowish level functions/macros which work directly on `c-state-cache', or a
2541 ;; list of like structure.
2542 (defmacro c-state-cache-top-lparen (&optional cache)
2543 ;; Return the address of the top left brace/bracket/paren recorded in CACHE
2544 ;; (default `c-state-cache') (or nil).
2545 (let ((cash (or cache 'c-state-cache)))
2546 `(if (consp (car ,cash))
2547 (caar ,cash)
2548 (car ,cash))))
2549
2550 (defmacro c-state-cache-top-paren (&optional cache)
2551 ;; Return the address of the latest brace/bracket/paren (whether left or
2552 ;; right) recorded in CACHE (default `c-state-cache') or nil.
2553 (let ((cash (or cache 'c-state-cache)))
2554 `(if (consp (car ,cash))
2555 (cdar ,cash)
2556 (car ,cash))))
2557
2558 (defmacro c-state-cache-after-top-paren (&optional cache)
2559 ;; Return the position just after the latest brace/bracket/paren (whether
2560 ;; left or right) recorded in CACHE (default `c-state-cache') or nil.
2561 (let ((cash (or cache 'c-state-cache)))
2562 `(if (consp (car ,cash))
2563 (cdar ,cash)
2564 (and (car ,cash)
2565 (1+ (car ,cash))))))
2566
2567 (defun c-get-cache-scan-pos (here)
2568 ;; From the state-cache, determine the buffer position from which we might
2569 ;; scan forward to HERE to update this cache. This position will be just
2570 ;; after a paren/brace/bracket recorded in the cache, if possible, otherwise
2571 ;; return the earliest position in the accessible region which isn't within
2572 ;; a literal. If the visible portion of the buffer is entirely within a
2573 ;; literal, return NIL.
2574 (let ((c c-state-cache) elt)
2575 ;(while (>= (or (c-state-cache-top-lparen c) 1) here)
2576 (while (and c
2577 (>= (c-state-cache-top-lparen c) here))
2578 (setq c (cdr c)))
2579
2580 (setq elt (car c))
2581 (cond
2582 ((consp elt)
2583 (if (> (cdr elt) here)
2584 (1+ (car elt))
2585 (cdr elt)))
2586 (elt (1+ elt))
2587 ((<= (c-state-get-min-scan-pos) here)
2588 (c-state-get-min-scan-pos))
2589 (t nil))))
2590
2591 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2592 ;; Variables which keep track of preprocessor constructs.
2593 (defvar c-state-old-cpp-beg-marker nil)
2594 (make-variable-buffer-local 'c-state-old-cpp-beg-marker)
2595 (defvar c-state-old-cpp-beg nil)
2596 (make-variable-buffer-local 'c-state-old-cpp-beg)
2597 (defvar c-state-old-cpp-end-marker nil)
2598 (make-variable-buffer-local 'c-state-old-cpp-end-marker)
2599 (defvar c-state-old-cpp-end nil)
2600 (make-variable-buffer-local 'c-state-old-cpp-end)
2601 ;; These are the limits of the macro containing point at the previous call of
2602 ;; `c-parse-state', or nil.
2603
2604 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2605 ;; Defuns which analyze the buffer, yet don't change `c-state-cache'.
2606 (defun c-get-fallback-scan-pos (here)
2607 ;; Return a start position for building `c-state-cache' from
2608 ;; scratch. This will be at the top level, 2 defuns back.
2609 (save-excursion
2610 ;; Go back 2 bods, but ignore any bogus positions returned by
2611 ;; beginning-of-defun (i.e. open paren in column zero).
2612 (goto-char here)
2613 (let ((cnt 2))
2614 (while (not (or (bobp) (zerop cnt)))
2615 (c-beginning-of-defun-1) ; Pure elisp BOD.
2616 (if (eq (char-after) ?\{)
2617 (setq cnt (1- cnt)))))
2618 (point)))
2619
2620 (defun c-state-balance-parens-backwards (here- here+ top)
2621 ;; Return the position of the opening paren/brace/bracket before HERE- which
2622 ;; matches the outermost close p/b/b between HERE+ and TOP. Except when
2623 ;; there's a macro, HERE- and HERE+ are the same. Like this:
2624 ;;
2625 ;; ............................................
2626 ;; | |
2627 ;; ( [ ( .........#macro.. ) ( ) ] )
2628 ;; ^ ^ ^ ^
2629 ;; | | | |
2630 ;; return HERE- HERE+ TOP
2631 ;;
2632 ;; If there aren't enough opening paren/brace/brackets, return the position
2633 ;; of the outermost one found, or HERE- if there are none. If there are no
2634 ;; closing p/b/bs between HERE+ and TOP, return HERE-. HERE-/+ and TOP
2635 ;; must not be inside literals. Only the accessible portion of the buffer
2636 ;; will be scanned.
2637
2638 ;; PART 1: scan from `here+' up to `top', accumulating ")"s which enclose
2639 ;; `here'. Go round the next loop each time we pass over such a ")". These
2640 ;; probably match "("s before `here-'.
2641 (let (pos pa ren+1 lonely-rens)
2642 (save-excursion
2643 (save-restriction
2644 (narrow-to-region (point-min) top) ; This can move point, sometimes.
2645 (setq pos here+)
2646 (c-safe
2647 (while
2648 (setq ren+1 (c-sc-scan-lists pos 1 1)) ; might signal
2649 (setq lonely-rens (cons ren+1 lonely-rens)
2650 pos ren+1)))))
2651
2652 ;; PART 2: Scan back before `here-' searching for the "("s
2653 ;; matching/mismatching the ")"s found above. We only need to direct the
2654 ;; caller to scan when we've encountered unmatched right parens.
2655 (setq pos here-)
2656 (when lonely-rens
2657 (c-safe
2658 (while
2659 (and lonely-rens ; actual values aren't used.
2660 (setq pa (c-sc-scan-lists pos -1 1)))
2661 (setq pos pa)
2662 (setq lonely-rens (cdr lonely-rens)))))
2663 pos))
2664
2665 (defun c-parse-state-get-strategy (here good-pos)
2666 ;; Determine the scanning strategy for adjusting `c-parse-state', attempting
2667 ;; to minimize the amount of scanning. HERE is the pertinent position in
2668 ;; the buffer, GOOD-POS is a position where `c-state-cache' (possibly with
2669 ;; its head trimmed) is known to be good, or nil if there is no such
2670 ;; position.
2671 ;;
2672 ;; The return value is a list, one of the following:
2673 ;;
2674 ;; o - ('forward START-POINT) - scan forward from START-POINT,
2675 ;; which is not less than the highest position in `c-state-cache' below HERE,
2676 ;; which is after GOOD-POS.
2677 ;; o - ('backward nil) - scan backwards (from HERE).
2678 ;; o - ('back-and-forward START-POINT) - like 'forward, but when HERE is earlier
2679 ;; than GOOD-POS.
2680 ;; o - ('BOD START-POINT) - scan forwards from START-POINT, which is at the
2681 ;; top level.
2682 ;; o - ('IN-LIT nil) - point is inside the literal containing point-min.
2683 (let ((cache-pos (c-get-cache-scan-pos here)) ; highest position below HERE in cache (or 1)
2684 BOD-pos ; position of 2nd BOD before HERE.
2685 strategy ; 'forward, 'backward, 'BOD, or 'IN-LIT.
2686 start-point
2687 how-far) ; putative scanning distance.
2688 (setq good-pos (or good-pos (c-state-get-min-scan-pos)))
2689 (cond
2690 ((< here (c-state-get-min-scan-pos))
2691 (setq strategy 'IN-LIT
2692 start-point nil
2693 cache-pos nil
2694 how-far 0))
2695 ((<= good-pos here)
2696 (setq strategy 'forward
2697 start-point (max good-pos cache-pos)
2698 how-far (- here start-point)))
2699 ((< (- good-pos here) (- here cache-pos)) ; FIXME!!! ; apply some sort of weighting.
2700 (setq strategy 'backward
2701 how-far (- good-pos here)))
2702 (t
2703 (setq strategy 'back-and-forward
2704 start-point cache-pos
2705 how-far (- here start-point))))
2706
2707 ;; Might we be better off starting from the top level, two defuns back,
2708 ;; instead? This heuristic no longer works well in C++, where
2709 ;; declarations inside namespace brace blocks are frequently placed at
2710 ;; column zero. (2015-11-10): Remove the condition on C++ Mode.
2711 (when (and (or (not (memq 'col-0-paren c-emacs-features))
2712 open-paren-in-column-0-is-defun-start)
2713 ;; (not (c-major-mode-is 'c++-mode))
2714 (> how-far c-state-cache-too-far))
2715 (setq BOD-pos (c-get-fallback-scan-pos here)) ; somewhat EXPENSIVE!!!
2716 (if (< (- here BOD-pos) how-far)
2717 (setq strategy 'BOD
2718 start-point BOD-pos)))
2719
2720 (list strategy start-point)))
2721
2722
2723 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2724 ;; Routines which change `c-state-cache' and associated values.
2725 (defun c-renarrow-state-cache ()
2726 ;; The region (more precisely, point-min) has changed since we
2727 ;; calculated `c-state-cache'. Amend `c-state-cache' accordingly.
2728 (if (< (point-min) c-state-point-min)
2729 ;; If point-min has MOVED BACKWARDS then we drop the state completely.
2730 ;; It would be possible to do a better job here and recalculate the top
2731 ;; only.
2732 (progn
2733 (c-state-mark-point-min-literal)
2734 (setq c-state-cache nil
2735 c-state-cache-good-pos c-state-min-scan-pos
2736 c-state-brace-pair-desert nil))
2737
2738 ;; point-min has MOVED FORWARD.
2739
2740 ;; Is the new point-min inside a (different) literal?
2741 (unless (and c-state-point-min-lit-start ; at prev. point-min
2742 (< (point-min) (c-state-get-min-scan-pos)))
2743 (c-state-mark-point-min-literal))
2744
2745 ;; Cut off a bit of the tail from `c-state-cache'.
2746 (let ((ptr (cons nil c-state-cache))
2747 pa)
2748 (while (and (setq pa (c-state-cache-top-lparen (cdr ptr)))
2749 (>= pa (point-min)))
2750 (setq ptr (cdr ptr)))
2751
2752 (when (consp ptr)
2753 (if (eq (cdr ptr) c-state-cache)
2754 (setq c-state-cache nil
2755 c-state-cache-good-pos c-state-min-scan-pos)
2756 (setcdr ptr nil)
2757 (setq c-state-cache-good-pos (1+ (c-state-cache-top-lparen))))
2758 )))
2759
2760 (setq c-state-point-min (point-min)))
2761
2762 (defun c-append-lower-brace-pair-to-state-cache (from here &optional upper-lim)
2763 ;; If there is a brace pair preceding FROM in the buffer, at the same level
2764 ;; of nesting (not necessarily immediately preceding), push a cons onto
2765 ;; `c-state-cache' to represent it. FROM must not be inside a literal. If
2766 ;; UPPER-LIM is non-nil, we append the highest brace pair whose "}" is below
2767 ;; UPPER-LIM.
2768 ;;
2769 ;; Return non-nil when this has been done.
2770 ;;
2771 ;; The situation it copes with is this transformation:
2772 ;;
2773 ;; OLD: { (.) {...........}
2774 ;; ^ ^
2775 ;; FROM HERE
2776 ;;
2777 ;; NEW: { {....} (.) {.........
2778 ;; ^ ^ ^
2779 ;; LOWER BRACE PAIR HERE or HERE
2780 ;;
2781 ;; This routine should be fast. Since it can get called a LOT, we maintain
2782 ;; `c-state-brace-pair-desert', a small cache of "failures", such that we
2783 ;; reduce the time wasted in repeated fruitless searches in brace deserts.
2784 (save-excursion
2785 (save-restriction
2786 (let* (new-cons
2787 (cache-pos (c-state-cache-top-lparen)) ; might be nil.
2788 (macro-start-or-from
2789 (progn (goto-char from)
2790 (c-beginning-of-macro)
2791 (point)))
2792 (bra ; Position of "{".
2793 ;; Don't start scanning in the middle of a CPP construct unless
2794 ;; it contains HERE - these constructs, in Emacs, are "commented
2795 ;; out" with category properties.
2796 (if (eq (c-get-char-property macro-start-or-from 'category)
2797 'c-cpp-delimiter)
2798 macro-start-or-from
2799 from))
2800 ce) ; Position of "}"
2801 (or upper-lim (setq upper-lim from))
2802
2803 ;; If we're essentially repeating a fruitless search, just give up.
2804 (unless (and c-state-brace-pair-desert
2805 (eq cache-pos (car c-state-brace-pair-desert))
2806 (or (null (car c-state-brace-pair-desert))
2807 (> from (car c-state-brace-pair-desert)))
2808 (<= from (cdr c-state-brace-pair-desert)))
2809 ;; DESERT-LIM. Avoid repeated searching through the cached desert.
2810 (let ((desert-lim
2811 (and c-state-brace-pair-desert
2812 (eq cache-pos (car c-state-brace-pair-desert))
2813 (>= from (cdr c-state-brace-pair-desert))
2814 (cdr c-state-brace-pair-desert)))
2815 ;; CACHE-LIM. This limit will be necessary when an opening
2816 ;; paren at `cache-pos' has just had its matching close paren
2817 ;; inserted into the buffer. `cache-pos' continues to be a
2818 ;; search bound, even though the algorithm below would skip
2819 ;; over the new paren pair.
2820 (cache-lim (and cache-pos (< cache-pos from) cache-pos)))
2821 (narrow-to-region
2822 (cond
2823 ((and desert-lim cache-lim)
2824 (max desert-lim cache-lim))
2825 (desert-lim)
2826 (cache-lim)
2827 ((point-min)))
2828 ;; The top limit is EOB to ensure that `bra' is inside the
2829 ;; accessible part of the buffer at the next scan operation.
2830 (1+ (buffer-size))))
2831
2832 ;; In the next pair of nested loops, the inner one moves back past a
2833 ;; pair of (mis-)matching parens or brackets; the outer one moves
2834 ;; back over a sequence of unmatched close brace/paren/bracket each
2835 ;; time round.
2836 (while
2837 (progn
2838 (c-safe
2839 (while
2840 (and (setq ce (c-sc-scan-lists bra -1 -1)) ; back past )/]/}; might signal
2841 (setq bra (c-sc-scan-lists ce -1 1)) ; back past (/[/{; might signal
2842 (or (> bra here) ;(> ce here)
2843 (and
2844 (< ce here)
2845 (or (not (eq (char-after bra) ?\{))
2846 (and (goto-char bra)
2847 (c-beginning-of-macro)
2848 (< (point) macro-start-or-from))))))))
2849 (and ce (< ce bra)))
2850 (setq bra ce)) ; If we just backed over an unbalanced closing
2851 ; brace, ignore it.
2852
2853 (if (and ce (< ce here) (< bra ce) (eq (char-after bra) ?\{))
2854 ;; We've found the desired brace-pair.
2855 (progn
2856 (setq new-cons (cons bra (1+ ce)))
2857 (cond
2858 ((consp (car c-state-cache))
2859 (setcar c-state-cache new-cons))
2860 ((and (numberp (car c-state-cache)) ; probably never happens
2861 (< ce (car c-state-cache)))
2862 (setcdr c-state-cache
2863 (cons new-cons (cdr c-state-cache))))
2864 (t (setq c-state-cache (cons new-cons c-state-cache)))))
2865
2866 ;; We haven't found a brace pair. Record this in the cache.
2867 (setq c-state-brace-pair-desert
2868 (cons (if (and ce (< bra ce) (> ce here)) ; {..} straddling HERE?
2869 bra
2870 (point-min))
2871 (min here from)))))))))
2872
2873 (defsubst c-state-push-any-brace-pair (bra+1 macro-start-or-here)
2874 ;; If BRA+1 is nil, do nothing. Otherwise, BRA+1 is the buffer position
2875 ;; following a {, and that brace has a (mis-)matching } (or ]), and we
2876 ;; "push" "a" brace pair onto `c-state-cache'.
2877 ;;
2878 ;; Here "push" means overwrite the top element if it's itself a brace-pair,
2879 ;; otherwise push it normally.
2880 ;;
2881 ;; The brace pair we push is normally the one surrounding BRA+1, but if the
2882 ;; latter is inside a macro, not being a macro containing
2883 ;; MACRO-START-OR-HERE, we scan backwards through the buffer for a non-macro
2884 ;; base pair. This latter case is assumed to be rare.
2885 ;;
2886 ;; Note: POINT is not preserved in this routine.
2887 (if bra+1
2888 (if (or (> bra+1 macro-start-or-here)
2889 (progn (goto-char bra+1)
2890 (not (c-beginning-of-macro))))
2891 (setq c-state-cache
2892 (cons (cons (1- bra+1)
2893 (c-sc-scan-lists bra+1 1 1))
2894 (if (consp (car c-state-cache))
2895 (cdr c-state-cache)
2896 c-state-cache)))
2897 ;; N.B. This defsubst codes one method for the simple, normal case,
2898 ;; and a more sophisticated, slower way for the general case. Don't
2899 ;; eliminate this defsubst - it's a speed optimization.
2900 (c-append-lower-brace-pair-to-state-cache (1- bra+1) (point-max)))))
2901
2902 (defun c-append-to-state-cache (from here)
2903 ;; Scan the buffer from FROM to HERE, adding elements into `c-state-cache'
2904 ;; for braces etc. Return a candidate for `c-state-cache-good-pos'.
2905 ;;
2906 ;; FROM must be after the latest brace/paren/bracket in `c-state-cache', if
2907 ;; any. Typically, it is immediately after it. It must not be inside a
2908 ;; literal.
2909 (let ((here-bol (c-point 'bol here))
2910 (macro-start-or-here
2911 (save-excursion (goto-char here)
2912 (if (c-beginning-of-macro)
2913 (point)
2914 here)))
2915 pa+1 ; pos just after an opening PAren (or brace).
2916 (ren+1 from) ; usually a pos just after an closing paREN etc.
2917 ; Is actually the pos. to scan for a (/{/[ from,
2918 ; which sometimes is after a silly )/}/].
2919 paren+1 ; Pos after some opening or closing paren.
2920 paren+1s ; A list of `paren+1's; used to determine a
2921 ; good-pos.
2922 bra+1 ; just after L bra-ce.
2923 bra+1s ; list of OLD values of bra+1.
2924 mstart) ; start of a macro.
2925
2926 (save-excursion
2927 (save-restriction
2928 (narrow-to-region (point-min) here)
2929 ;; Each time round the following loop, we enter a successively deeper
2930 ;; level of brace/paren nesting. (Except sometimes we "continue at
2931 ;; the existing level".) `pa+1' is a pos inside an opening
2932 ;; brace/paren/bracket, usually just after it.
2933 (while
2934 (progn
2935 ;; Each time round the next loop moves forward over an opening then
2936 ;; a closing brace/bracket/paren. This loop is white hot, so it
2937 ;; plays ugly tricks to go fast. DON'T PUT ANYTHING INTO THIS
2938 ;; LOOP WHICH ISN'T ABSOLUTELY NECESSARY!!! It terminates when a
2939 ;; call of `scan-lists' signals an error, which happens when there
2940 ;; are no more b/b/p's to scan.
2941 (c-safe
2942 (while t
2943 (setq pa+1 (c-sc-scan-lists ren+1 1 -1) ; Into (/{/[; might signal
2944 paren+1s (cons pa+1 paren+1s))
2945 (setq ren+1 (c-sc-scan-lists pa+1 1 1)) ; Out of )/}/]; might signal
2946 (if (and (eq (char-before pa+1) ?{)) ; Check for a macro later.
2947 (setq bra+1 pa+1))
2948 (setcar paren+1s ren+1)))
2949
2950 (if (and pa+1 (> pa+1 ren+1))
2951 ;; We've just entered a deeper nesting level.
2952 (progn
2953 ;; Insert the brace pair (if present) and the single open
2954 ;; paren/brace/bracket into `c-state-cache' It cannot be
2955 ;; inside a macro, except one around point, because of what
2956 ;; `c-neutralize-syntax-in-CPP' has done.
2957 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2958 ;; Insert the opening brace/bracket/paren position.
2959 (setq c-state-cache (cons (1- pa+1) c-state-cache))
2960 ;; Clear admin stuff for the next more nested part of the scan.
2961 (setq ren+1 pa+1 pa+1 nil bra+1 nil bra+1s nil)
2962 t) ; Carry on the loop
2963
2964 ;; All open p/b/b's at this nesting level, if any, have probably
2965 ;; been closed by matching/mismatching ones. We're probably
2966 ;; finished - we just need to check for having found an
2967 ;; unmatched )/}/], which we ignore. Such a )/}/] can't be in a
2968 ;; macro, due the action of `c-neutralize-syntax-in-CPP'.
2969 (c-safe (setq ren+1 (c-sc-scan-lists ren+1 1 1)))))) ; acts as loop control.
2970
2971 ;; Record the final, innermost, brace-pair if there is one.
2972 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2973
2974 ;; Determine a good pos
2975 (while (and (setq paren+1 (car paren+1s))
2976 (> (if (> paren+1 macro-start-or-here)
2977 paren+1
2978 (goto-char paren+1)
2979 (setq mstart (and (c-beginning-of-macro)
2980 (point)))
2981 (or mstart paren+1))
2982 here-bol))
2983 (setq paren+1s (cdr paren+1s)))
2984 (cond
2985 ((and paren+1 mstart)
2986 (min paren+1 mstart))
2987 (paren+1)
2988 (t from))))))
2989
2990 (defun c-remove-stale-state-cache (start-point here pps-point)
2991 ;; Remove stale entries from the `c-cache-state', i.e. those which will
2992 ;; not be in it when it is amended for position HERE. This may involve
2993 ;; replacing a CONS element for a brace pair containing HERE with its car.
2994 ;; Additionally, the "outermost" open-brace entry before HERE will be
2995 ;; converted to a cons if the matching close-brace is below HERE.
2996 ;;
2997 ;; START-POINT is a "maximal" "safe position" - there must be no open
2998 ;; parens/braces/brackets between START-POINT and HERE.
2999 ;;
3000 ;; As a second thing, calculate the result of parse-partial-sexp at
3001 ;; PPS-POINT, w.r.t. START-POINT. The motivation here is that
3002 ;; `c-state-cache-good-pos' may become PPS-POINT, but the caller may need to
3003 ;; adjust it to get outside a string/comment. (Sorry about this! The code
3004 ;; needs to be FAST).
3005 ;;
3006 ;; Return a list (GOOD-POS SCAN-BACK-POS CONS-SEPARATED PPS-STATE), where
3007 ;; o - GOOD-POS is a position where the new value `c-state-cache' is known
3008 ;; to be good (we aim for this to be as high as possible);
3009 ;; o - SCAN-BACK-POS, if not nil, indicates there may be a brace pair
3010 ;; preceding POS which needs to be recorded in `c-state-cache'. It is a
3011 ;; position to scan backwards from. It is the position of the "{" of the
3012 ;; last element to be removed from `c-state-cache', when that elt is a
3013 ;; cons, otherwise nil.
3014 ;; o - CONS-SEPARATED is t when a cons element in `c-state-cache' has been
3015 ;; replaced by its car because HERE lies inside the brace pair represented
3016 ;; by the cons.
3017 ;; o - PPS-STATE is the parse-partial-sexp state at PPS-POINT.
3018 (save-excursion
3019 (save-restriction
3020 (narrow-to-region 1 (point-max))
3021 (let* ((in-macro-start ; start of macro containing HERE or nil.
3022 (save-excursion
3023 (goto-char here)
3024 (and (c-beginning-of-macro)
3025 (point))))
3026 (start-point-actual-macro-start ; Start of macro containing
3027 ; start-point or nil
3028 (and (< start-point here)
3029 (save-excursion
3030 (goto-char start-point)
3031 (and (c-beginning-of-macro)
3032 (point)))))
3033 (start-point-actual-macro-end ; End of this macro, (maybe
3034 ; HERE), or nil.
3035 (and start-point-actual-macro-start
3036 (save-excursion
3037 (goto-char start-point-actual-macro-start)
3038 (c-end-of-macro)
3039 (point))))
3040 pps-state ; Will be 9 or 10 elements long.
3041 pos
3042 upper-lim ; ,beyond which `c-state-cache' entries are removed
3043 scan-back-pos
3044 cons-separated
3045 pair-beg pps-point-state target-depth)
3046
3047 ;; Remove entries beyond HERE. Also remove any entries inside
3048 ;; a macro, unless HERE is in the same macro.
3049 (setq upper-lim
3050 (if (or (null c-state-old-cpp-beg)
3051 (and (> here c-state-old-cpp-beg)
3052 (< here c-state-old-cpp-end)))
3053 here
3054 (min here c-state-old-cpp-beg)))
3055 (while (and c-state-cache (>= (c-state-cache-top-lparen) upper-lim))
3056 (setq scan-back-pos (car-safe (car c-state-cache)))
3057 (setq c-state-cache (cdr c-state-cache)))
3058
3059 ;; If `upper-lim' is inside the last recorded brace pair, remove its
3060 ;; RBrace and indicate we'll need to search backwards for a previous
3061 ;; brace pair.
3062 (when (and c-state-cache
3063 (consp (car c-state-cache))
3064 (> (cdar c-state-cache) upper-lim))
3065 (setcar c-state-cache (caar c-state-cache))
3066 (setq scan-back-pos (car c-state-cache)
3067 cons-separated t))
3068
3069 ;; The next loop jumps forward out of a nested level of parens each
3070 ;; time round; the corresponding elements in `c-state-cache' are
3071 ;; removed. `pos' is just after the brace-pair or the open paren at
3072 ;; (car c-state-cache). There can be no open parens/braces/brackets
3073 ;; between `start-point'/`start-point-actual-macro-start' and HERE,
3074 ;; due to the interface spec to this function.
3075 (setq pos (if (and start-point-actual-macro-end
3076 (not (eq start-point-actual-macro-start
3077 in-macro-start)))
3078 (1+ start-point-actual-macro-end) ; get outside the macro as
3079 ; marked by a `category' text property.
3080 start-point))
3081 (goto-char pos)
3082 (while (and c-state-cache
3083 (or (numberp (car c-state-cache)) ; Have we a { at all?
3084 (cdr c-state-cache))
3085 (< (point) here))
3086 (cond
3087 ((null pps-state) ; first time through
3088 (setq target-depth -1))
3089 ((eq (car pps-state) target-depth) ; found closing ),},]
3090 (setq target-depth (1- (car pps-state))))
3091 ;; Do nothing when we've merely reached pps-point.
3092 )
3093
3094 ;; Scan!
3095 (setq pps-state
3096 (c-sc-parse-partial-sexp
3097 (point) (if (< (point) pps-point) pps-point here)
3098 target-depth
3099 nil pps-state))
3100
3101 (if (= (point) pps-point)
3102 (setq pps-point-state pps-state))
3103
3104 (when (eq (car pps-state) target-depth)
3105 (setq pos (point)) ; POS is now just after an R-paren/brace.
3106 (cond
3107 ((and (consp (car c-state-cache))
3108 (eq (point) (cdar c-state-cache)))
3109 ;; We've just moved out of the paren pair containing the brace-pair
3110 ;; at (car c-state-cache). `pair-beg' is where the open paren is,
3111 ;; and is potentially where the open brace of a cons in
3112 ;; c-state-cache will be.
3113 (setq pair-beg (car-safe (cdr c-state-cache))
3114 c-state-cache (cdr-safe (cdr c-state-cache)))) ; remove {}pair + containing Lparen.
3115 ((numberp (car c-state-cache))
3116 (setq pair-beg (car c-state-cache)
3117 c-state-cache (cdr c-state-cache))) ; remove this
3118 ; containing Lparen
3119 ((numberp (cadr c-state-cache))
3120 (setq pair-beg (cadr c-state-cache)
3121 c-state-cache (cddr c-state-cache))) ; Remove a paren pair
3122 ; together with enclosed brace pair.
3123 ;; (t nil) ; Ignore an unmated Rparen.
3124 )))
3125
3126 (if (< (point) pps-point)
3127 (setq pps-state (c-sc-parse-partial-sexp
3128 (point) pps-point
3129 nil nil ; TARGETDEPTH, STOPBEFORE
3130 pps-state)))
3131
3132 ;; If the last paren pair we moved out of was actually a brace pair,
3133 ;; insert it into `c-state-cache'.
3134 (when (and pair-beg (eq (char-after pair-beg) ?{))
3135 (if (consp (car-safe c-state-cache))
3136 (setq c-state-cache (cdr c-state-cache)))
3137 (setq c-state-cache (cons (cons pair-beg pos)
3138 c-state-cache)))
3139
3140 (list pos scan-back-pos cons-separated pps-state)))))
3141
3142 (defun c-remove-stale-state-cache-backwards (here)
3143 ;; Strip stale elements of `c-state-cache' by moving backwards through the
3144 ;; buffer, and inform the caller of the scenario detected.
3145 ;;
3146 ;; HERE is the position we're setting `c-state-cache' for.
3147 ;; CACHE-POS (a locally bound variable) is just after the latest recorded
3148 ;; position in `c-state-cache' before HERE, or a position at or near
3149 ;; point-min which isn't in a literal.
3150 ;;
3151 ;; This function must only be called only when (> `c-state-cache-good-pos'
3152 ;; HERE). Usually the gap between CACHE-POS and HERE is large. It is thus
3153 ;; optimized to eliminate (or minimize) scanning between these two
3154 ;; positions.
3155 ;;
3156 ;; Return a three element list (GOOD-POS SCAN-BACK-POS FWD-FLAG), where:
3157 ;; o - GOOD-POS is a "good position", where `c-state-cache' is valid, or
3158 ;; could become so after missing elements are inserted into
3159 ;; `c-state-cache'. This is JUST AFTER an opening or closing
3160 ;; brace/paren/bracket which is already in `c-state-cache' or just before
3161 ;; one otherwise. exceptionally (when there's no such b/p/b handy) the BOL
3162 ;; before `here''s line, or the start of the literal containing it.
3163 ;; o - SCAN-BACK-POS, if non-nil, indicates there may be a brace pair
3164 ;; preceding POS which isn't recorded in `c-state-cache'. It is a position
3165 ;; to scan backwards from.
3166 ;; o - FWD-FLAG, if non-nil, indicates there may be parens/braces between
3167 ;; POS and HERE which aren't recorded in `c-state-cache'.
3168 ;;
3169 ;; The comments in this defun use "paren" to mean parenthesis or square
3170 ;; bracket (as contrasted with a brace), and "(" and ")" likewise.
3171 ;;
3172 ;; . {..} (..) (..) ( .. { } ) (...) ( .... . ..)
3173 ;; | | | | | |
3174 ;; CP E here D C good
3175 (let ((cache-pos (c-get-cache-scan-pos here)) ; highest position below HERE in cache (or 1)
3176 (pos c-state-cache-good-pos)
3177 pa ren ; positions of "(" and ")"
3178 dropped-cons ; whether the last element dropped from `c-state-cache'
3179 ; was a cons (representing a brace-pair)
3180 good-pos ; see above.
3181 lit ; (START . END) of a literal containing some point.
3182 here-lit-start here-lit-end ; bounds of literal containing `here'
3183 ; or `here' itself.
3184 here- here+ ; start/end of macro around HERE, or HERE
3185 (here-bol (c-point 'bol here))
3186 (too-far-back (max (- here c-state-cache-too-far) (point-min))))
3187
3188 ;; Remove completely irrelevant entries from `c-state-cache'.
3189 (while (and c-state-cache
3190 (>= (setq pa (c-state-cache-top-lparen)) here))
3191 (setq dropped-cons (consp (car c-state-cache)))
3192 (setq c-state-cache (cdr c-state-cache))
3193 (setq pos pa))
3194 ;; At this stage, (>= pos here);
3195 ;; (< (c-state-cache-top-lparen) here) (or is nil).
3196
3197 (cond
3198 ((and (consp (car c-state-cache))
3199 (> (cdar c-state-cache) here))
3200 ;; CASE 1: The top of the cache is a brace pair which now encloses
3201 ;; `here'. As good-pos, return the address. of the "{". Since we've no
3202 ;; knowledge of what's inside these braces, we have no alternative but
3203 ;; to direct the caller to scan the buffer from the opening brace.
3204 (setq pos (caar c-state-cache))
3205 (setcar c-state-cache pos)
3206 (list (1+ pos) pos t)) ; return value. We've just converted a brace pair
3207 ; entry into a { entry, so the caller needs to
3208 ; search for a brace pair before the {.
3209
3210 ;; `here' might be inside a literal. Check for this.
3211 ((progn
3212 (setq lit (c-state-literal-at here)
3213 here-lit-start (or (car lit) here)
3214 here-lit-end (or (cdr lit) here))
3215 ;; Has `here' just "newly entered" a macro?
3216 (save-excursion
3217 (goto-char here-lit-start)
3218 (if (and (c-beginning-of-macro)
3219 (or (null c-state-old-cpp-beg)
3220 (not (= (point) c-state-old-cpp-beg))))
3221 (progn
3222 (setq here- (point))
3223 (c-end-of-macro)
3224 (setq here+ (point)))
3225 (setq here- here-lit-start
3226 here+ here-lit-end)))
3227
3228 ;; `here' might be nested inside any depth of parens (or brackets but
3229 ;; not braces). Scan backwards to find the outermost such opening
3230 ;; paren, if there is one. This will be the scan position to return.
3231 (save-restriction
3232 (narrow-to-region cache-pos (point-max))
3233 (setq pos (c-state-balance-parens-backwards here- here+ pos)))
3234 nil)) ; for the cond
3235
3236 ((< pos here-lit-start)
3237 ;; CASE 2: Address of outermost ( or [ which now encloses `here', but
3238 ;; didn't enclose the (previous) `c-state-cache-good-pos'. If there is
3239 ;; a brace pair preceding this, it will already be in `c-state-cache',
3240 ;; unless there was a brace pair after it, i.e. there'll only be one to
3241 ;; scan for if we've just deleted one.
3242 (list pos (and dropped-cons pos) t)) ; Return value.
3243
3244 ;; `here' isn't enclosed in a (previously unrecorded) bracket/paren.
3245 ;; Further forward scanning isn't needed, but we still need to find a
3246 ;; GOOD-POS. Step out of all enclosing "("s on HERE's line.
3247 ((progn
3248 (save-restriction
3249 (narrow-to-region here-bol (point-max))
3250 (setq pos here-lit-start)
3251 (c-safe (while (setq pa (c-sc-scan-lists pos -1 1))
3252 (setq pos pa)))) ; might signal
3253 nil)) ; for the cond
3254
3255 ((save-restriction
3256 (narrow-to-region too-far-back (point-max))
3257 (setq ren (c-safe (c-sc-scan-lists pos -1 -1))))
3258 ;; CASE 3: After a }/)/] before `here''s BOL.
3259 (list (1+ ren) (and dropped-cons pos) nil)) ; Return value
3260
3261 ((progn (setq good-pos (c-state-lit-beg (c-point 'bopl here-bol)))
3262 (>= cache-pos good-pos))
3263 ;; CASE 3.5: Just after an existing entry in `c-state-cache' on `here''s
3264 ;; line or the previous line.
3265 (list cache-pos nil nil))
3266
3267 (t
3268 ;; CASE 4; Best of a bad job: BOL before `here-bol', or beginning of
3269 ;; literal containing it.
3270 (list good-pos (and dropped-cons good-pos) nil)))))
3271
3272
3273 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3274 ;; Externally visible routines.
3275
3276 (defun c-state-cache-init ()
3277 (setq c-state-cache nil
3278 c-state-cache-good-pos 1
3279 c-state-nonlit-pos-cache nil
3280 c-state-nonlit-pos-cache-limit 1
3281 c-state-semi-nonlit-pos-cache nil
3282 c-state-semi-nonlit-pos-cache-limit 1
3283 c-state-brace-pair-desert nil
3284 c-state-point-min 1
3285 c-state-point-min-lit-type nil
3286 c-state-point-min-lit-start nil
3287 c-state-min-scan-pos 1
3288 c-state-old-cpp-beg nil
3289 c-state-old-cpp-end nil)
3290 (c-state-mark-point-min-literal))
3291
3292 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3293 ;; Debugging routines to dump `c-state-cache' in a "replayable" form.
3294 ;; (defmacro c-sc-de (elt) ; "c-state-cache-dump-element"
3295 ;; `(format ,(concat "(setq " (symbol-name elt) " %s) ") ,elt))
3296 ;; (defmacro c-sc-qde (elt) ; "c-state-cache-quote-dump-element"
3297 ;; `(format ,(concat "(setq " (symbol-name elt) " '%s) ") ,elt))
3298 ;; (defun c-state-dump ()
3299 ;; ;; For debugging.
3300 ;; ;(message
3301 ;; (concat
3302 ;; (c-sc-qde c-state-cache)
3303 ;; (c-sc-de c-state-cache-good-pos)
3304 ;; (c-sc-qde c-state-nonlit-pos-cache)
3305 ;; (c-sc-de c-state-nonlit-pos-cache-limit)
3306 ;; (c-sc-qde c-state-brace-pair-desert)
3307 ;; (c-sc-de c-state-point-min)
3308 ;; (c-sc-de c-state-point-min-lit-type)
3309 ;; (c-sc-de c-state-point-min-lit-start)
3310 ;; (c-sc-de c-state-min-scan-pos)
3311 ;; (c-sc-de c-state-old-cpp-beg)
3312 ;; (c-sc-de c-state-old-cpp-end)))
3313 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3314
3315 (defun c-invalidate-state-cache-1 (here)
3316 ;; Invalidate all info on `c-state-cache' that applies to the buffer at HERE
3317 ;; or higher and set `c-state-cache-good-pos' accordingly. The cache is
3318 ;; left in a consistent state.
3319 ;;
3320 ;; This is much like `c-whack-state-after', but it never changes a paren
3321 ;; pair element into an open paren element. Doing that would mean that the
3322 ;; new open paren wouldn't have the required preceding paren pair element.
3323 ;;
3324 ;; This function is called from c-before-change.
3325
3326 ;; The caches of non-literals:
3327 ;; Note that we use "<=" for the possibility of the second char of a two-char
3328 ;; comment opener being typed; this would invalidate any cache position at
3329 ;; HERE.
3330 (if (<= here c-state-nonlit-pos-cache-limit)
3331 (setq c-state-nonlit-pos-cache-limit (1- here)))
3332 (if (<= here c-state-semi-nonlit-pos-cache-limit)
3333 (setq c-state-semi-nonlit-pos-cache-limit (1- here)))
3334
3335 ;; `c-state-cache':
3336 ;; Case 1: if `here' is in a literal containing point-min, everything
3337 ;; becomes (or is already) nil.
3338 (if (or (null c-state-cache-good-pos)
3339 (< here (c-state-get-min-scan-pos)))
3340 (setq c-state-cache nil
3341 c-state-cache-good-pos nil
3342 c-state-min-scan-pos nil)
3343
3344 ;; Truncate `c-state-cache' and set `c-state-cache-good-pos' to a value
3345 ;; below `here'. To maintain its consistency, we may need to insert a new
3346 ;; brace pair.
3347 (let ((here-bol (c-point 'bol here))
3348 too-high-pa ; recorded {/(/[ next above or just below here, or nil.
3349 dropped-cons ; was the last removed element a brace pair?
3350 pa)
3351 ;; The easy bit - knock over-the-top bits off `c-state-cache'.
3352 (while (and c-state-cache
3353 (>= (setq pa (c-state-cache-top-paren)) here))
3354 (setq dropped-cons (consp (car c-state-cache))
3355 too-high-pa (c-state-cache-top-lparen)
3356 c-state-cache (cdr c-state-cache)))
3357
3358 ;; Do we need to add in an earlier brace pair, having lopped one off?
3359 (if (and dropped-cons
3360 (<= too-high-pa here))
3361 (c-append-lower-brace-pair-to-state-cache too-high-pa here here-bol))
3362 (setq c-state-cache-good-pos (or (c-state-cache-after-top-paren)
3363 (c-state-get-min-scan-pos)))))
3364
3365 ;; The brace-pair desert marker:
3366 (when (car c-state-brace-pair-desert)
3367 (if (< here (car c-state-brace-pair-desert))
3368 (setq c-state-brace-pair-desert nil)
3369 (if (< here (cdr c-state-brace-pair-desert))
3370 (setcdr c-state-brace-pair-desert here)))))
3371
3372 (defun c-parse-state-1 ()
3373 ;; Find and record all noteworthy parens between some good point earlier in
3374 ;; the file and point. That good point is at least the beginning of the
3375 ;; top-level construct we are in, or the beginning of the preceding
3376 ;; top-level construct if we aren't in one.
3377 ;;
3378 ;; The returned value is a list of the noteworthy parens with the last one
3379 ;; first. If an element in the list is an integer, it's the position of an
3380 ;; open paren (of any type) which has not been closed before the point. If
3381 ;; an element is a cons, it gives the position of a closed BRACE paren
3382 ;; pair[*]; the car is the start brace position and the cdr is the position
3383 ;; following the closing brace. Only the last closed brace paren pair
3384 ;; before each open paren and before the point is recorded, and thus the
3385 ;; state never contains two cons elements in succession. When a close brace
3386 ;; has no matching open brace (e.g., the matching brace is outside the
3387 ;; visible region), it is not represented in the returned value.
3388 ;;
3389 ;; [*] N.B. The close "brace" might be a mismatching close bracket or paren.
3390 ;; This defun explicitly treats mismatching parens/braces/brackets as
3391 ;; matching. It is the open brace which makes it a "brace" pair.
3392 ;;
3393 ;; If POINT is within a macro, open parens and brace pairs within
3394 ;; THIS macro MIGHT be recorded. This depends on whether their
3395 ;; syntactic properties have been suppressed by
3396 ;; `c-neutralize-syntax-in-CPP'. This might need fixing (2008-12-11).
3397 ;;
3398 ;; Currently no characters which are given paren syntax with the
3399 ;; syntax-table property are recorded, i.e. angle bracket arglist
3400 ;; parens are never present here. Note that this might change.
3401 ;;
3402 ;; BUG: This function doesn't cope entirely well with unbalanced
3403 ;; parens in macros. (2008-12-11: this has probably been resolved
3404 ;; by the function `c-neutralize-syntax-in-CPP'.) E.g. in the
3405 ;; following case the brace before the macro isn't balanced with the
3406 ;; one after it:
3407 ;;
3408 ;; {
3409 ;; #define X {
3410 ;; }
3411 ;;
3412 ;; Note to maintainers: this function DOES get called with point
3413 ;; within comments and strings, so don't assume it doesn't!
3414 ;;
3415 ;; This function might do hidden buffer changes.
3416 (let* ((here (point))
3417 (here-bopl (c-point 'bopl))
3418 strategy ; 'forward, 'backward etc..
3419 ;; Candidate positions to start scanning from:
3420 cache-pos ; highest position below HERE already existing in
3421 ; cache (or 1).
3422 good-pos
3423 start-point ; (when scanning forward) a place below HERE where there
3424 ; are no open parens/braces between it and HERE.
3425 bopl-state
3426 res
3427 cons-separated
3428 scan-backward-pos scan-forward-p) ; used for 'backward.
3429 ;; If POINT-MIN has changed, adjust the cache
3430 (unless (= (point-min) c-state-point-min)
3431 (c-renarrow-state-cache))
3432
3433 ;; Strategy?
3434 (setq res (c-parse-state-get-strategy here c-state-cache-good-pos)
3435 strategy (car res)
3436 start-point (cadr res))
3437
3438 (when (eq strategy 'BOD)
3439 (setq c-state-cache nil
3440 c-state-cache-good-pos start-point))
3441
3442 ;; SCAN!
3443 (cond
3444 ((memq strategy '(forward back-and-forward BOD))
3445 (setq res (c-remove-stale-state-cache start-point here here-bopl))
3446 (setq cache-pos (car res)
3447 scan-backward-pos (cadr res)
3448 cons-separated (car (cddr res))
3449 bopl-state (cadr (cddr res))) ; will be nil if (< here-bopl
3450 ; start-point)
3451 (if (and scan-backward-pos
3452 (or cons-separated (eq strategy 'forward))) ;scan-backward-pos
3453 (c-append-lower-brace-pair-to-state-cache scan-backward-pos here))
3454 (setq good-pos
3455 (c-append-to-state-cache cache-pos here))
3456 (setq c-state-cache-good-pos
3457 (if (and bopl-state
3458 (< good-pos (- here c-state-cache-too-far)))
3459 (c-state-cache-non-literal-place here-bopl bopl-state)
3460 good-pos)))
3461
3462 ((eq strategy 'backward)
3463 (setq res (c-remove-stale-state-cache-backwards here)
3464 good-pos (car res)
3465 scan-backward-pos (cadr res)
3466 scan-forward-p (car (cddr res)))
3467 (if scan-backward-pos
3468 (c-append-lower-brace-pair-to-state-cache scan-backward-pos here))
3469 (setq c-state-cache-good-pos
3470 (if scan-forward-p
3471 (c-append-to-state-cache good-pos here)
3472 good-pos)))
3473
3474 (t ; (eq strategy 'IN-LIT)
3475 (setq c-state-cache nil
3476 c-state-cache-good-pos nil))))
3477
3478 c-state-cache)
3479
3480 (defun c-invalidate-state-cache (here)
3481 ;; This is a wrapper over `c-invalidate-state-cache-1'.
3482 ;;
3483 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3484 ;; of all parens in preprocessor constructs, except for any such construct
3485 ;; containing point. We can then call `c-invalidate-state-cache-1' without
3486 ;; worrying further about macros and template delimiters.
3487 (if (eval-when-compile (memq 'category-properties c-emacs-features))
3488 ;; Emacs
3489 (c-with-<->-as-parens-suppressed
3490 (if (and c-state-old-cpp-beg
3491 (< c-state-old-cpp-beg here))
3492 (c-with-all-but-one-cpps-commented-out
3493 c-state-old-cpp-beg
3494 c-state-old-cpp-end
3495 (c-invalidate-state-cache-1 here))
3496 (c-with-cpps-commented-out
3497 (c-invalidate-state-cache-1 here))))
3498 ;; XEmacs
3499 (c-invalidate-state-cache-1 here)))
3500
3501 (defmacro c-state-maybe-marker (place marker)
3502 ;; If PLACE is non-nil, return a marker marking it, otherwise nil.
3503 ;; We (re)use MARKER.
3504 `(and ,place
3505 (or ,marker (setq ,marker (make-marker)))
3506 (set-marker ,marker ,place)))
3507
3508 (defun c-parse-state ()
3509 ;; This is a wrapper over `c-parse-state-1'. See that function for a
3510 ;; description of the functionality and return value.
3511 ;;
3512 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3513 ;; of all parens in preprocessor constructs, except for any such construct
3514 ;; containing point. We can then call `c-parse-state-1' without worrying
3515 ;; further about macros and template delimiters.
3516 (let (here-cpp-beg here-cpp-end)
3517 (save-excursion
3518 (when (c-beginning-of-macro)
3519 (setq here-cpp-beg (point))
3520 (unless
3521 (> (setq here-cpp-end (c-syntactic-end-of-macro))
3522 here-cpp-beg)
3523 (setq here-cpp-beg nil here-cpp-end nil))))
3524 ;; FIXME!!! Put in a `condition-case' here to protect the integrity of the
3525 ;; subsystem.
3526 (prog1
3527 (if (eval-when-compile (memq 'category-properties c-emacs-features))
3528 ;; Emacs
3529 (c-with-<->-as-parens-suppressed
3530 (if (and here-cpp-beg (> here-cpp-end here-cpp-beg))
3531 (c-with-all-but-one-cpps-commented-out
3532 here-cpp-beg here-cpp-end
3533 (c-parse-state-1))
3534 (c-with-cpps-commented-out
3535 (c-parse-state-1))))
3536 ;; XEmacs
3537 (c-parse-state-1))
3538 (setq c-state-old-cpp-beg
3539 (c-state-maybe-marker here-cpp-beg c-state-old-cpp-beg-marker)
3540 c-state-old-cpp-end
3541 (c-state-maybe-marker here-cpp-end c-state-old-cpp-end-marker)))))
3542
3543 ;; Debug tool to catch cache inconsistencies. This is called from
3544 ;; 000tests.el.
3545 (defvar c-debug-parse-state nil)
3546 (unless (fboundp 'c-real-parse-state)
3547 (fset 'c-real-parse-state (symbol-function 'c-parse-state)))
3548 (cc-bytecomp-defun c-real-parse-state)
3549
3550 (defvar c-parse-state-point nil)
3551 (defvar c-parse-state-state nil)
3552 (make-variable-buffer-local 'c-parse-state-state)
3553 (defun c-record-parse-state-state ()
3554 (setq c-parse-state-point (point))
3555 (when (markerp (cdr (assq 'c-state-old-cpp-beg c-parse-state-state)))
3556 (move-marker (cdr (assq 'c-state-old-cpp-beg c-parse-state-state)) nil)
3557 (move-marker (cdr (assq 'c-state-old-cpp-end c-parse-state-state)) nil))
3558 (setq c-parse-state-state
3559 (mapcar
3560 (lambda (arg)
3561 (let ((val (symbol-value arg)))
3562 (cons arg
3563 (cond ((consp val) (copy-tree val))
3564 ((markerp val) (copy-marker val))
3565 (t val)))))
3566 '(c-state-cache
3567 c-state-cache-good-pos
3568 c-state-nonlit-pos-cache
3569 c-state-nonlit-pos-cache-limit
3570 c-state-semi-nonlit-pos-cache
3571 c-state-semi-nonlit-pos-cache-limit
3572 c-state-brace-pair-desert
3573 c-state-point-min
3574 c-state-point-min-lit-type
3575 c-state-point-min-lit-start
3576 c-state-min-scan-pos
3577 c-state-old-cpp-beg
3578 c-state-old-cpp-end
3579 c-parse-state-point))))
3580 (defun c-replay-parse-state-state ()
3581 (message "%s"
3582 (concat "(setq "
3583 (mapconcat
3584 (lambda (arg)
3585 (format "%s %s%s" (car arg)
3586 (if (atom (cdr arg)) "" "'")
3587 (if (markerp (cdr arg))
3588 (format "(copy-marker %s)" (marker-position (cdr arg)))
3589 (cdr arg))))
3590 c-parse-state-state " ")
3591 ")")))
3592
3593 (defun c-debug-parse-state-double-cons (state)
3594 (let (state-car conses-not-ok)
3595 (while state
3596 (setq state-car (car state)
3597 state (cdr state))
3598 (if (and (consp state-car)
3599 (consp (car state)))
3600 (setq conses-not-ok t)))
3601 conses-not-ok))
3602
3603 (defun c-debug-parse-state ()
3604 (let ((here (point)) (res1 (c-real-parse-state)) res2)
3605 (let ((c-state-cache nil)
3606 (c-state-cache-good-pos 1)
3607 (c-state-nonlit-pos-cache nil)
3608 (c-state-nonlit-pos-cache-limit 1)
3609 (c-state-brace-pair-desert nil)
3610 (c-state-point-min 1)
3611 (c-state-point-min-lit-type nil)
3612 (c-state-point-min-lit-start nil)
3613 (c-state-min-scan-pos 1)
3614 (c-state-old-cpp-beg nil)
3615 (c-state-old-cpp-end nil))
3616 (setq res2 (c-real-parse-state)))
3617 (unless (equal res1 res2)
3618 ;; The cache can actually go further back due to the ad-hoc way
3619 ;; the first paren is found, so try to whack off a bit of its
3620 ;; start before complaining.
3621 ;; (save-excursion
3622 ;; (goto-char (or (c-least-enclosing-brace res2) (point)))
3623 ;; (c-beginning-of-defun-1)
3624 ;; (while (not (or (bobp) (eq (char-after) ?{)))
3625 ;; (c-beginning-of-defun-1))
3626 ;; (unless (equal (c-whack-state-before (point) res1) res2)
3627 ;; (message (concat "c-parse-state inconsistency at %s: "
3628 ;; "using cache: %s, from scratch: %s")
3629 ;; here res1 res2)))
3630 (message (concat "c-parse-state inconsistency at %s: "
3631 "using cache: %s, from scratch: %s")
3632 here res1 res2)
3633 (message "Old state:")
3634 (c-replay-parse-state-state))
3635
3636 (when (c-debug-parse-state-double-cons res1)
3637 (message "c-parse-state INVALIDITY at %s: %s"
3638 here res1)
3639 (message "Old state:")
3640 (c-replay-parse-state-state))
3641
3642 (c-record-parse-state-state)
3643 res2 ; res1 correct a cascading series of errors ASAP
3644 ))
3645
3646 (defun c-toggle-parse-state-debug (&optional arg)
3647 (interactive "P")
3648 (setq c-debug-parse-state (c-calculate-state arg c-debug-parse-state))
3649 (fset 'c-parse-state (symbol-function (if c-debug-parse-state
3650 'c-debug-parse-state
3651 'c-real-parse-state)))
3652 (c-keep-region-active)
3653 (message "c-debug-parse-state %sabled"
3654 (if c-debug-parse-state "en" "dis")))
3655 (when c-debug-parse-state
3656 (c-toggle-parse-state-debug 1))
3657
3658 \f
3659 (defun c-whack-state-before (bufpos paren-state)
3660 ;; Whack off any state information from PAREN-STATE which lies
3661 ;; before BUFPOS. Not destructive on PAREN-STATE.
3662 (let* ((newstate (list nil))
3663 (ptr newstate)
3664 car)
3665 (while paren-state
3666 (setq car (car paren-state)
3667 paren-state (cdr paren-state))
3668 (if (< (if (consp car) (car car) car) bufpos)
3669 (setq paren-state nil)
3670 (setcdr ptr (list car))
3671 (setq ptr (cdr ptr))))
3672 (cdr newstate)))
3673
3674 (defun c-whack-state-after (bufpos paren-state)
3675 ;; Whack off any state information from PAREN-STATE which lies at or
3676 ;; after BUFPOS. Not destructive on PAREN-STATE.
3677 (catch 'done
3678 (while paren-state
3679 (let ((car (car paren-state)))
3680 (if (consp car)
3681 ;; just check the car, because in a balanced brace
3682 ;; expression, it must be impossible for the corresponding
3683 ;; close brace to be before point, but the open brace to
3684 ;; be after.
3685 (if (<= bufpos (car car))
3686 nil ; whack it off
3687 (if (< bufpos (cdr car))
3688 ;; its possible that the open brace is before
3689 ;; bufpos, but the close brace is after. In that
3690 ;; case, convert this to a non-cons element. The
3691 ;; rest of the state is before bufpos, so we're
3692 ;; done.
3693 (throw 'done (cons (car car) (cdr paren-state)))
3694 ;; we know that both the open and close braces are
3695 ;; before bufpos, so we also know that everything else
3696 ;; on state is before bufpos.
3697 (throw 'done paren-state)))
3698 (if (<= bufpos car)
3699 nil ; whack it off
3700 ;; it's before bufpos, so everything else should too.
3701 (throw 'done paren-state)))
3702 (setq paren-state (cdr paren-state)))
3703 nil)))
3704
3705 (defun c-most-enclosing-brace (paren-state &optional bufpos)
3706 ;; Return the bufpos of the innermost enclosing open paren before
3707 ;; bufpos, or nil if none was found.
3708 (let (enclosingp)
3709 (or bufpos (setq bufpos 134217727))
3710 (while paren-state
3711 (setq enclosingp (car paren-state)
3712 paren-state (cdr paren-state))
3713 (if (or (consp enclosingp)
3714 (>= enclosingp bufpos))
3715 (setq enclosingp nil)
3716 (setq paren-state nil)))
3717 enclosingp))
3718
3719 (defun c-least-enclosing-brace (paren-state)
3720 ;; Return the bufpos of the outermost enclosing open paren, or nil
3721 ;; if none was found.
3722 (let (pos elem)
3723 (while paren-state
3724 (setq elem (car paren-state)
3725 paren-state (cdr paren-state))
3726 (if (integerp elem)
3727 (setq pos elem)))
3728 pos))
3729
3730 (defun c-safe-position (bufpos paren-state)
3731 ;; Return the closest "safe" position recorded on PAREN-STATE that
3732 ;; is higher up than BUFPOS. Return nil if PAREN-STATE doesn't
3733 ;; contain any. Return nil if BUFPOS is nil, which is useful to
3734 ;; find the closest limit before a given limit that might be nil.
3735 ;;
3736 ;; A "safe" position is a position at or after a recorded open
3737 ;; paren, or after a recorded close paren. The returned position is
3738 ;; thus either the first position after a close brace, or the first
3739 ;; position after an enclosing paren, or at the enclosing paren in
3740 ;; case BUFPOS is immediately after it.
3741 (when bufpos
3742 (let (elem)
3743 (catch 'done
3744 (while paren-state
3745 (setq elem (car paren-state))
3746 (if (consp elem)
3747 (cond ((< (cdr elem) bufpos)
3748 (throw 'done (cdr elem)))
3749 ((< (car elem) bufpos)
3750 ;; See below.
3751 (throw 'done (min (1+ (car elem)) bufpos))))
3752 (if (< elem bufpos)
3753 ;; elem is the position at and not after the opening paren, so
3754 ;; we can go forward one more step unless it's equal to
3755 ;; bufpos. This is useful in some cases avoid an extra paren
3756 ;; level between the safe position and bufpos.
3757 (throw 'done (min (1+ elem) bufpos))))
3758 (setq paren-state (cdr paren-state)))))))
3759
3760 (defun c-beginning-of-syntax ()
3761 ;; This is used for `font-lock-beginning-of-syntax-function'. It
3762 ;; goes to the closest previous point that is known to be outside
3763 ;; any string literal or comment. `c-state-cache' is used if it has
3764 ;; a position in the vicinity.
3765 (let* ((paren-state c-state-cache)
3766 elem
3767
3768 (pos (catch 'done
3769 ;; Note: Similar code in `c-safe-position'. The
3770 ;; difference is that we accept a safe position at
3771 ;; the point and don't bother to go forward past open
3772 ;; parens.
3773 (while paren-state
3774 (setq elem (car paren-state))
3775 (if (consp elem)
3776 (cond ((<= (cdr elem) (point))
3777 (throw 'done (cdr elem)))
3778 ((<= (car elem) (point))
3779 (throw 'done (car elem))))
3780 (if (<= elem (point))
3781 (throw 'done elem)))
3782 (setq paren-state (cdr paren-state)))
3783 (point-min))))
3784
3785 (if (> pos (- (point) 4000))
3786 (goto-char pos)
3787 ;; The position is far back. Try `c-beginning-of-defun-1'
3788 ;; (although we can't be entirely sure it will go to a position
3789 ;; outside a comment or string in current emacsen). FIXME:
3790 ;; Consult `syntax-ppss' here.
3791 (c-beginning-of-defun-1)
3792 (if (< (point) pos)
3793 (goto-char pos)))))
3794
3795 \f
3796 ;; Tools for scanning identifiers and other tokens.
3797
3798 (defun c-on-identifier ()
3799 "Return non-nil if the point is on or directly after an identifier.
3800 Keywords are recognized and not considered identifiers. If an
3801 identifier is detected, the returned value is its starting position.
3802 If an identifier ends at the point and another begins at it \(can only
3803 happen in Pike) then the point for the preceding one is returned.
3804
3805 Note that this function might do hidden buffer changes. See the
3806 comment at the start of cc-engine.el for more info."
3807
3808 ;; FIXME: Shouldn't this function handle "operator" in C++?
3809
3810 (save-excursion
3811 (skip-syntax-backward "w_")
3812
3813 (or
3814
3815 ;; Check for a normal (non-keyword) identifier.
3816 (and (looking-at c-symbol-start)
3817 (not (looking-at c-keywords-regexp))
3818 (point))
3819
3820 (when (c-major-mode-is 'pike-mode)
3821 ;; Handle the `<operator> syntax in Pike.
3822 (let ((pos (point)))
3823 (skip-chars-backward "-!%&*+/<=>^|~[]()")
3824 (and (if (< (skip-chars-backward "`") 0)
3825 t
3826 (goto-char pos)
3827 (eq (char-after) ?\`))
3828 (looking-at c-symbol-key)
3829 (>= (match-end 0) pos)
3830 (point))))
3831
3832 ;; Handle the "operator +" syntax in C++.
3833 (when (and c-overloadable-operators-regexp
3834 (= (c-backward-token-2 0) 0))
3835
3836 (cond ((and (looking-at c-overloadable-operators-regexp)
3837 (or (not c-opt-op-identifier-prefix)
3838 (and (= (c-backward-token-2 1) 0)
3839 (looking-at c-opt-op-identifier-prefix))))
3840 (point))
3841
3842 ((save-excursion
3843 (and c-opt-op-identifier-prefix
3844 (looking-at c-opt-op-identifier-prefix)
3845 (= (c-forward-token-2 1) 0)
3846 (looking-at c-overloadable-operators-regexp)))
3847 (point))))
3848
3849 )))
3850
3851 (defsubst c-simple-skip-symbol-backward ()
3852 ;; If the point is at the end of a symbol then skip backward to the
3853 ;; beginning of it. Don't move otherwise. Return non-nil if point
3854 ;; moved.
3855 ;;
3856 ;; This function might do hidden buffer changes.
3857 (or (< (skip-syntax-backward "w_") 0)
3858 (and (c-major-mode-is 'pike-mode)
3859 ;; Handle the `<operator> syntax in Pike.
3860 (let ((pos (point)))
3861 (if (and (< (skip-chars-backward "-!%&*+/<=>^|~[]()") 0)
3862 (< (skip-chars-backward "`") 0)
3863 (looking-at c-symbol-key)
3864 (>= (match-end 0) pos))
3865 t
3866 (goto-char pos)
3867 nil)))))
3868
3869 (defun c-beginning-of-current-token (&optional back-limit)
3870 ;; Move to the beginning of the current token. Do not move if not
3871 ;; in the middle of one. BACK-LIMIT may be used to bound the
3872 ;; backward search; if given it's assumed to be at the boundary
3873 ;; between two tokens. Return non-nil if the point is moved, nil
3874 ;; otherwise.
3875 ;;
3876 ;; This function might do hidden buffer changes.
3877 (let ((start (point)))
3878 (if (looking-at "\\w\\|\\s_")
3879 (skip-syntax-backward "w_" back-limit)
3880 (when (< (skip-syntax-backward ".()" back-limit) 0)
3881 (while (let ((pos (or (and (looking-at c-nonsymbol-token-regexp)
3882 (match-end 0))
3883 ;; `c-nonsymbol-token-regexp' should always match
3884 ;; since we've skipped backward over punctuation
3885 ;; or paren syntax, but consume one char in case
3886 ;; it doesn't so that we don't leave point before
3887 ;; some earlier incorrect token.
3888 (1+ (point)))))
3889 (if (<= pos start)
3890 (goto-char pos))))))
3891 (< (point) start)))
3892
3893 (defun c-end-of-current-token (&optional back-limit)
3894 ;; Move to the end of the current token. Do not move if not in the
3895 ;; middle of one. BACK-LIMIT may be used to bound the backward
3896 ;; search; if given it's assumed to be at the boundary between two
3897 ;; tokens. Return non-nil if the point is moved, nil otherwise.
3898 ;;
3899 ;; This function might do hidden buffer changes.
3900 (let ((start (point)))
3901 (cond ((< (skip-syntax-backward "w_" (1- start)) 0)
3902 (skip-syntax-forward "w_"))
3903 ((< (skip-syntax-backward ".()" back-limit) 0)
3904 (while (progn
3905 (if (looking-at c-nonsymbol-token-regexp)
3906 (goto-char (match-end 0))
3907 ;; `c-nonsymbol-token-regexp' should always match since
3908 ;; we've skipped backward over punctuation or paren
3909 ;; syntax, but move forward in case it doesn't so that
3910 ;; we don't leave point earlier than we started with.
3911 (forward-char))
3912 (< (point) start)))))
3913 (> (point) start)))
3914
3915 (defconst c-jump-syntax-balanced
3916 (if (memq 'gen-string-delim c-emacs-features)
3917 "\\w\\|\\s_\\|\\s(\\|\\s)\\|\\s\"\\|\\s|"
3918 "\\w\\|\\s_\\|\\s(\\|\\s)\\|\\s\""))
3919
3920 (defconst c-jump-syntax-unbalanced
3921 (if (memq 'gen-string-delim c-emacs-features)
3922 "\\w\\|\\s_\\|\\s\"\\|\\s|"
3923 "\\w\\|\\s_\\|\\s\""))
3924
3925 (defun c-forward-token-2 (&optional count balanced limit)
3926 "Move forward by tokens.
3927 A token is defined as all symbols and identifiers which aren't
3928 syntactic whitespace \(note that multicharacter tokens like \"==\" are
3929 treated properly). Point is always either left at the beginning of a
3930 token or not moved at all. COUNT specifies the number of tokens to
3931 move; a negative COUNT moves in the opposite direction. A COUNT of 0
3932 moves to the next token beginning only if not already at one. If
3933 BALANCED is true, move over balanced parens, otherwise move into them.
3934 Also, if BALANCED is true, never move out of an enclosing paren.
3935
3936 LIMIT sets the limit for the movement and defaults to the point limit.
3937 The case when LIMIT is set in the middle of a token, comment or macro
3938 is handled correctly, i.e. the point won't be left there.
3939
3940 Return the number of tokens left to move \(positive or negative). If
3941 BALANCED is true, a move over a balanced paren counts as one. Note
3942 that if COUNT is 0 and no appropriate token beginning is found, 1 will
3943 be returned. Thus, a return value of 0 guarantees that point is at
3944 the requested position and a return value less \(without signs) than
3945 COUNT guarantees that point is at the beginning of some token.
3946
3947 Note that this function might do hidden buffer changes. See the
3948 comment at the start of cc-engine.el for more info."
3949
3950 (or count (setq count 1))
3951 (if (< count 0)
3952 (- (c-backward-token-2 (- count) balanced limit))
3953
3954 (let ((jump-syntax (if balanced
3955 c-jump-syntax-balanced
3956 c-jump-syntax-unbalanced))
3957 (last (point))
3958 (prev (point)))
3959
3960 (if (zerop count)
3961 ;; If count is zero we should jump if in the middle of a token.
3962 (c-end-of-current-token))
3963
3964 (save-restriction
3965 (if limit (narrow-to-region (point-min) limit))
3966 (if (/= (point)
3967 (progn (c-forward-syntactic-ws) (point)))
3968 ;; Skip whitespace. Count this as a move if we did in
3969 ;; fact move.
3970 (setq count (max (1- count) 0)))
3971
3972 (if (eobp)
3973 ;; Moved out of bounds. Make sure the returned count isn't zero.
3974 (progn
3975 (if (zerop count) (setq count 1))
3976 (goto-char last))
3977
3978 ;; Use `condition-case' to avoid having the limit tests
3979 ;; inside the loop.
3980 (condition-case nil
3981 (while (and
3982 (> count 0)
3983 (progn
3984 (setq last (point))
3985 (cond ((looking-at jump-syntax)
3986 (goto-char (scan-sexps (point) 1))
3987 t)
3988 ((looking-at c-nonsymbol-token-regexp)
3989 (goto-char (match-end 0))
3990 t)
3991 ;; `c-nonsymbol-token-regexp' above should always
3992 ;; match if there are correct tokens. Try to
3993 ;; widen to see if the limit was set in the
3994 ;; middle of one, else fall back to treating
3995 ;; the offending thing as a one character token.
3996 ((and limit
3997 (save-restriction
3998 (widen)
3999 (looking-at c-nonsymbol-token-regexp)))
4000 nil)
4001 (t
4002 (forward-char)
4003 t))))
4004 (c-forward-syntactic-ws)
4005 (setq prev last
4006 count (1- count)))
4007 (error (goto-char last)))
4008
4009 (when (eobp)
4010 (goto-char prev)
4011 (setq count (1+ count)))))
4012
4013 count)))
4014
4015 (defun c-backward-token-2 (&optional count balanced limit)
4016 "Move backward by tokens.
4017 See `c-forward-token-2' for details."
4018
4019 (or count (setq count 1))
4020 (if (< count 0)
4021 (- (c-forward-token-2 (- count) balanced limit))
4022
4023 (or limit (setq limit (point-min)))
4024 (let ((jump-syntax (if balanced
4025 c-jump-syntax-balanced
4026 c-jump-syntax-unbalanced))
4027 (last (point)))
4028
4029 (if (zerop count)
4030 ;; The count is zero so try to skip to the beginning of the
4031 ;; current token.
4032 (if (> (point)
4033 (progn (c-beginning-of-current-token) (point)))
4034 (if (< (point) limit)
4035 ;; The limit is inside the same token, so return 1.
4036 (setq count 1))
4037
4038 ;; We're not in the middle of a token. If there's
4039 ;; whitespace after the point then we must move backward,
4040 ;; so set count to 1 in that case.
4041 (and (looking-at c-syntactic-ws-start)
4042 ;; If we're looking at a '#' that might start a cpp
4043 ;; directive then we have to do a more elaborate check.
4044 (or (/= (char-after) ?#)
4045 (not c-opt-cpp-prefix)
4046 (save-excursion
4047 (and (= (point)
4048 (progn (beginning-of-line)
4049 (looking-at "[ \t]*")
4050 (match-end 0)))
4051 (or (bobp)
4052 (progn (backward-char)
4053 (not (eq (char-before) ?\\)))))))
4054 (setq count 1))))
4055
4056 ;; Use `condition-case' to avoid having to check for buffer
4057 ;; limits in `backward-char', `scan-sexps' and `goto-char' below.
4058 (condition-case nil
4059 (while (and
4060 (> count 0)
4061 (progn
4062 (c-backward-syntactic-ws)
4063 (backward-char)
4064 (if (looking-at jump-syntax)
4065 (goto-char (scan-sexps (1+ (point)) -1))
4066 ;; This can be very inefficient if there's a long
4067 ;; sequence of operator tokens without any separation.
4068 ;; That doesn't happen in practice, anyway.
4069 (c-beginning-of-current-token))
4070 (>= (point) limit)))
4071 (setq last (point)
4072 count (1- count)))
4073 (error (goto-char last)))
4074
4075 (if (< (point) limit)
4076 (goto-char last))
4077
4078 count)))
4079
4080 (defun c-forward-token-1 (&optional count balanced limit)
4081 "Like `c-forward-token-2' but doesn't treat multicharacter operator
4082 tokens like \"==\" as single tokens, i.e. all sequences of symbol
4083 characters are jumped over character by character. This function is
4084 for compatibility only; it's only a wrapper over `c-forward-token-2'."
4085 (let ((c-nonsymbol-token-regexp "\\s."))
4086 (c-forward-token-2 count balanced limit)))
4087
4088 (defun c-backward-token-1 (&optional count balanced limit)
4089 "Like `c-backward-token-2' but doesn't treat multicharacter operator
4090 tokens like \"==\" as single tokens, i.e. all sequences of symbol
4091 characters are jumped over character by character. This function is
4092 for compatibility only; it's only a wrapper over `c-backward-token-2'."
4093 (let ((c-nonsymbol-token-regexp "\\s."))
4094 (c-backward-token-2 count balanced limit)))
4095
4096 \f
4097 ;; Tools for doing searches restricted to syntactically relevant text.
4098
4099 (defun c-syntactic-re-search-forward (regexp &optional bound noerror
4100 paren-level not-inside-token
4101 lookbehind-submatch)
4102 "Like `re-search-forward', but only report matches that are found
4103 in syntactically significant text. I.e. matches in comments, macros
4104 or string literals are ignored. The start point is assumed to be
4105 outside any comment, macro or string literal, or else the content of
4106 that region is taken as syntactically significant text.
4107
4108 If PAREN-LEVEL is non-nil, an additional restriction is added to
4109 ignore matches in nested paren sexps. The search will also not go
4110 outside the current list sexp, which has the effect that if the point
4111 should be moved to BOUND when no match is found \(i.e. NOERROR is
4112 neither nil nor t), then it will be at the closing paren if the end of
4113 the current list sexp is encountered first.
4114
4115 If NOT-INSIDE-TOKEN is non-nil, matches in the middle of tokens are
4116 ignored. Things like multicharacter operators and special symbols
4117 \(e.g. \"`()\" in Pike) are handled but currently not floating point
4118 constants.
4119
4120 If LOOKBEHIND-SUBMATCH is non-nil, it's taken as a number of a
4121 subexpression in REGEXP. The end of that submatch is used as the
4122 position to check for syntactic significance. If LOOKBEHIND-SUBMATCH
4123 isn't used or if that subexpression didn't match then the start
4124 position of the whole match is used instead. The \"look behind\"
4125 subexpression is never tested before the starting position, so it
4126 might be a good idea to include \\=\\= as a match alternative in it.
4127
4128 Optimization note: Matches might be missed if the \"look behind\"
4129 subexpression can match the end of nonwhite syntactic whitespace,
4130 i.e. the end of comments or cpp directives. This since the function
4131 skips over such things before resuming the search. It's on the other
4132 hand not safe to assume that the \"look behind\" subexpression never
4133 matches syntactic whitespace.
4134
4135 Bug: Unbalanced parens inside cpp directives are currently not handled
4136 correctly \(i.e. they don't get ignored as they should) when
4137 PAREN-LEVEL is set.
4138
4139 Note that this function might do hidden buffer changes. See the
4140 comment at the start of cc-engine.el for more info."
4141
4142 (or bound (setq bound (point-max)))
4143 (if paren-level (setq paren-level -1))
4144
4145 ;;(message "c-syntactic-re-search-forward %s %s %S" (point) bound regexp)
4146
4147 (let ((start (point))
4148 tmp
4149 ;; Start position for the last search.
4150 search-pos
4151 ;; The `parse-partial-sexp' state between the start position
4152 ;; and the point.
4153 state
4154 ;; The current position after the last state update. The next
4155 ;; `parse-partial-sexp' continues from here.
4156 (state-pos (point))
4157 ;; The position at which to check the state and the state
4158 ;; there. This is separate from `state-pos' since we might
4159 ;; need to back up before doing the next search round.
4160 check-pos check-state
4161 ;; Last position known to end a token.
4162 (last-token-end-pos (point-min))
4163 ;; Set when a valid match is found.
4164 found)
4165
4166 (condition-case err
4167 (while
4168 (and
4169 (progn
4170 (setq search-pos (point))
4171 (re-search-forward regexp bound noerror))
4172
4173 (progn
4174 (setq state (parse-partial-sexp
4175 state-pos (match-beginning 0) paren-level nil state)
4176 state-pos (point))
4177 (if (setq check-pos (and lookbehind-submatch
4178 (or (not paren-level)
4179 (>= (car state) 0))
4180 (match-end lookbehind-submatch)))
4181 (setq check-state (parse-partial-sexp
4182 state-pos check-pos paren-level nil state))
4183 (setq check-pos state-pos
4184 check-state state))
4185
4186 ;; NOTE: If we got a look behind subexpression and get
4187 ;; an insignificant match in something that isn't
4188 ;; syntactic whitespace (i.e. strings or in nested
4189 ;; parentheses), then we can never skip more than a
4190 ;; single character from the match start position
4191 ;; (i.e. `state-pos' here) before continuing the
4192 ;; search. That since the look behind subexpression
4193 ;; might match the end of the insignificant region in
4194 ;; the next search.
4195
4196 (cond
4197 ((elt check-state 7)
4198 ;; Match inside a line comment. Skip to eol. Use
4199 ;; `re-search-forward' instead of `skip-chars-forward' to get
4200 ;; the right bound behavior.
4201 (re-search-forward "[\n\r]" bound noerror))
4202
4203 ((elt check-state 4)
4204 ;; Match inside a block comment. Skip to the '*/'.
4205 (search-forward "*/" bound noerror))
4206
4207 ((and (not (elt check-state 5))
4208 (eq (char-before check-pos) ?/)
4209 (not (c-get-char-property (1- check-pos) 'syntax-table))
4210 (memq (char-after check-pos) '(?/ ?*)))
4211 ;; Match in the middle of the opener of a block or line
4212 ;; comment.
4213 (if (= (char-after check-pos) ?/)
4214 (re-search-forward "[\n\r]" bound noerror)
4215 (search-forward "*/" bound noerror)))
4216
4217 ;; The last `parse-partial-sexp' above might have
4218 ;; stopped short of the real check position if the end
4219 ;; of the current sexp was encountered in paren-level
4220 ;; mode. The checks above are always false in that
4221 ;; case, and since they can do better skipping in
4222 ;; lookbehind-submatch mode, we do them before
4223 ;; checking the paren level.
4224
4225 ((and paren-level
4226 (/= (setq tmp (car check-state)) 0))
4227 ;; Check the paren level first since we're short of the
4228 ;; syntactic checking position if the end of the
4229 ;; current sexp was encountered by `parse-partial-sexp'.
4230 (if (> tmp 0)
4231
4232 ;; Inside a nested paren sexp.
4233 (if lookbehind-submatch
4234 ;; See the NOTE above.
4235 (progn (goto-char state-pos) t)
4236 ;; Skip out of the paren quickly.
4237 (setq state (parse-partial-sexp state-pos bound 0 nil state)
4238 state-pos (point)))
4239
4240 ;; Have exited the current paren sexp.
4241 (if noerror
4242 (progn
4243 ;; The last `parse-partial-sexp' call above
4244 ;; has left us just after the closing paren
4245 ;; in this case, so we can modify the bound
4246 ;; to leave the point at the right position
4247 ;; upon return.
4248 (setq bound (1- (point)))
4249 nil)
4250 (signal 'search-failed (list regexp)))))
4251
4252 ((setq tmp (elt check-state 3))
4253 ;; Match inside a string.
4254 (if (or lookbehind-submatch
4255 (not (integerp tmp)))
4256 ;; See the NOTE above.
4257 (progn (goto-char state-pos) t)
4258 ;; Skip to the end of the string before continuing.
4259 (let ((ender (make-string 1 tmp)) (continue t))
4260 (while (if (search-forward ender bound noerror)
4261 (progn
4262 (setq state (parse-partial-sexp
4263 state-pos (point) nil nil state)
4264 state-pos (point))
4265 (elt state 3))
4266 (setq continue nil)))
4267 continue)))
4268
4269 ((save-excursion
4270 (save-match-data
4271 (c-beginning-of-macro start)))
4272 ;; Match inside a macro. Skip to the end of it.
4273 (c-end-of-macro)
4274 (cond ((<= (point) bound) t)
4275 (noerror nil)
4276 (t (signal 'search-failed (list regexp)))))
4277
4278 ((and not-inside-token
4279 (or (< check-pos last-token-end-pos)
4280 (< check-pos
4281 (save-excursion
4282 (goto-char check-pos)
4283 (save-match-data
4284 (c-end-of-current-token last-token-end-pos))
4285 (setq last-token-end-pos (point))))))
4286 ;; Inside a token.
4287 (if lookbehind-submatch
4288 ;; See the NOTE above.
4289 (goto-char state-pos)
4290 (goto-char (min last-token-end-pos bound))))
4291
4292 (t
4293 ;; A real match.
4294 (setq found t)
4295 nil)))
4296
4297 ;; Should loop to search again, but take care to avoid
4298 ;; looping on the same spot.
4299 (or (/= search-pos (point))
4300 (if (= (point) bound)
4301 (if noerror
4302 nil
4303 (signal 'search-failed (list regexp)))
4304 (forward-char)
4305 t))))
4306
4307 (error
4308 (goto-char start)
4309 (signal (car err) (cdr err))))
4310
4311 ;;(message "c-syntactic-re-search-forward done %s" (or (match-end 0) (point)))
4312
4313 (if found
4314 (progn
4315 (goto-char (match-end 0))
4316 (match-end 0))
4317
4318 ;; Search failed. Set point as appropriate.
4319 (if (eq noerror t)
4320 (goto-char start)
4321 (goto-char bound))
4322 nil)))
4323
4324 (defvar safe-pos-list) ; bound in c-syntactic-skip-backward
4325
4326 (defsubst c-ssb-lit-begin ()
4327 ;; Return the start of the literal point is in, or nil.
4328 ;; We read and write the variables `safe-pos', `safe-pos-list', `state'
4329 ;; bound in the caller.
4330
4331 ;; Use `parse-partial-sexp' from a safe position down to the point to check
4332 ;; if it's outside comments and strings.
4333 (save-excursion
4334 (let ((pos (point)) safe-pos state)
4335 ;; Pick a safe position as close to the point as possible.
4336 ;;
4337 ;; FIXME: Consult `syntax-ppss' here if our cache doesn't give a good
4338 ;; position.
4339
4340 (while (and safe-pos-list
4341 (> (car safe-pos-list) (point)))
4342 (setq safe-pos-list (cdr safe-pos-list)))
4343 (unless (setq safe-pos (car-safe safe-pos-list))
4344 (setq safe-pos (max (or (c-safe-position
4345 (point) (c-parse-state))
4346 0)
4347 (point-min))
4348 safe-pos-list (list safe-pos)))
4349
4350 ;; Cache positions along the way to use if we have to back up more. We
4351 ;; cache every closing paren on the same level. If the paren cache is
4352 ;; relevant in this region then we're typically already on the same
4353 ;; level as the target position. Note that we might cache positions
4354 ;; after opening parens in case safe-pos is in a nested list. That's
4355 ;; both uncommon and harmless.
4356 (while (progn
4357 (setq state (parse-partial-sexp
4358 safe-pos pos 0))
4359 (< (point) pos))
4360 (setq safe-pos (point)
4361 safe-pos-list (cons safe-pos safe-pos-list)))
4362
4363 ;; If the state contains the start of the containing sexp we cache that
4364 ;; position too, so that parse-partial-sexp in the next run has a bigger
4365 ;; chance of starting at the same level as the target position and thus
4366 ;; will get more good safe positions into the list.
4367 (if (elt state 1)
4368 (setq safe-pos (1+ (elt state 1))
4369 safe-pos-list (cons safe-pos safe-pos-list)))
4370
4371 (if (or (elt state 3) (elt state 4))
4372 ;; Inside string or comment. Continue search at the
4373 ;; beginning of it.
4374 (elt state 8)))))
4375
4376 (defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4377 "Like `skip-chars-backward' but only look at syntactically relevant chars,
4378 i.e. don't stop at positions inside syntactic whitespace or string
4379 literals. Preprocessor directives are also ignored, with the exception
4380 of the one that the point starts within, if any. If LIMIT is given,
4381 it's assumed to be at a syntactically relevant position.
4382
4383 If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4384 sexps, and the search will also not go outside the current paren sexp.
4385 However, if LIMIT or the buffer limit is reached inside a nested paren
4386 then the point will be left at the limit.
4387
4388 Non-nil is returned if the point moved, nil otherwise.
4389
4390 Note that this function might do hidden buffer changes. See the
4391 comment at the start of cc-engine.el for more info."
4392
4393 (c-self-bind-state-cache
4394 (let ((start (point))
4395 state-2
4396 ;; A list of syntactically relevant positions in descending
4397 ;; order. It's used to avoid scanning repeatedly over
4398 ;; potentially large regions with `parse-partial-sexp' to verify
4399 ;; each position. Used in `c-ssb-lit-begin'
4400 safe-pos-list
4401 ;; The result from `c-beginning-of-macro' at the start position or the
4402 ;; start position itself if it isn't within a macro. Evaluated on
4403 ;; demand.
4404 start-macro-beg
4405 ;; The earliest position after the current one with the same paren
4406 ;; level. Used only when `paren-level' is set.
4407 lit-beg
4408 (paren-level-pos (point)))
4409
4410 (while
4411 (progn
4412 ;; The next loop "tries" to find the end point each time round,
4413 ;; loops when it hasn't succeeded.
4414 (while
4415 (and
4416 (let ((pos (point)))
4417 (while (and
4418 (< (skip-chars-backward skip-chars limit) 0)
4419 ;; Don't stop inside a literal.
4420 (when (setq lit-beg (c-ssb-lit-begin))
4421 (goto-char lit-beg)
4422 t)))
4423 (< (point) pos))
4424
4425 (let ((pos (point)) state-2 pps-end-pos)
4426
4427 (cond
4428 ((and paren-level
4429 (save-excursion
4430 (setq state-2 (parse-partial-sexp
4431 pos paren-level-pos -1)
4432 pps-end-pos (point))
4433 (/= (car state-2) 0)))
4434 ;; Not at the right level.
4435
4436 (if (and (< (car state-2) 0)
4437 ;; We stop above if we go out of a paren.
4438 ;; Now check whether it precedes or is
4439 ;; nested in the starting sexp.
4440 (save-excursion
4441 (setq state-2
4442 (parse-partial-sexp
4443 pps-end-pos paren-level-pos
4444 nil nil state-2))
4445 (< (car state-2) 0)))
4446
4447 ;; We've stopped short of the starting position
4448 ;; so the hit was inside a nested list. Go up
4449 ;; until we are at the right level.
4450 (condition-case nil
4451 (progn
4452 (goto-char (scan-lists pos -1
4453 (- (car state-2))))
4454 (setq paren-level-pos (point))
4455 (if (and limit (>= limit paren-level-pos))
4456 (progn
4457 (goto-char limit)
4458 nil)
4459 t))
4460 (error
4461 (goto-char (or limit (point-min)))
4462 nil))
4463
4464 ;; The hit was outside the list at the start
4465 ;; position. Go to the start of the list and exit.
4466 (goto-char (1+ (elt state-2 1)))
4467 nil))
4468
4469 ((c-beginning-of-macro limit)
4470 ;; Inside a macro.
4471 (if (< (point)
4472 (or start-macro-beg
4473 (setq start-macro-beg
4474 (save-excursion
4475 (goto-char start)
4476 (c-beginning-of-macro limit)
4477 (point)))))
4478 t
4479
4480 ;; It's inside the same macro we started in so it's
4481 ;; a relevant match.
4482 (goto-char pos)
4483 nil))))))
4484
4485 (> (point)
4486 (progn
4487 ;; Skip syntactic ws afterwards so that we don't stop at the
4488 ;; end of a comment if `skip-chars' is something like "^/".
4489 (c-backward-syntactic-ws)
4490 (point)))))
4491
4492 ;; We might want to extend this with more useful return values in
4493 ;; the future.
4494 (/= (point) start))))
4495
4496 ;; The following is an alternative implementation of
4497 ;; `c-syntactic-skip-backward' that uses backward movement to keep
4498 ;; track of the syntactic context. It turned out to be generally
4499 ;; slower than the one above which uses forward checks from earlier
4500 ;; safe positions.
4501 ;;
4502 ;;(defconst c-ssb-stop-re
4503 ;; ;; The regexp matching chars `c-syntactic-skip-backward' needs to
4504 ;; ;; stop at to avoid going into comments and literals.
4505 ;; (concat
4506 ;; ;; Match comment end syntax and string literal syntax. Also match
4507 ;; ;; '/' for block comment endings (not covered by comment end
4508 ;; ;; syntax).
4509 ;; "\\s>\\|/\\|\\s\""
4510 ;; (if (memq 'gen-string-delim c-emacs-features)
4511 ;; "\\|\\s|"
4512 ;; "")
4513 ;; (if (memq 'gen-comment-delim c-emacs-features)
4514 ;; "\\|\\s!"
4515 ;; "")))
4516 ;;
4517 ;;(defconst c-ssb-stop-paren-re
4518 ;; ;; Like `c-ssb-stop-re' but also stops at paren chars.
4519 ;; (concat c-ssb-stop-re "\\|\\s(\\|\\s)"))
4520 ;;
4521 ;;(defconst c-ssb-sexp-end-re
4522 ;; ;; Regexp matching the ending syntax of a complex sexp.
4523 ;; (concat c-string-limit-regexp "\\|\\s)"))
4524 ;;
4525 ;;(defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4526 ;; "Like `skip-chars-backward' but only look at syntactically relevant chars,
4527 ;;i.e. don't stop at positions inside syntactic whitespace or string
4528 ;;literals. Preprocessor directives are also ignored. However, if the
4529 ;;point is within a comment, string literal or preprocessor directory to
4530 ;;begin with, its contents is treated as syntactically relevant chars.
4531 ;;If LIMIT is given, it limits the backward search and the point will be
4532 ;;left there if no earlier position is found.
4533 ;;
4534 ;;If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4535 ;;sexps, and the search will also not go outside the current paren sexp.
4536 ;;However, if LIMIT or the buffer limit is reached inside a nested paren
4537 ;;then the point will be left at the limit.
4538 ;;
4539 ;;Non-nil is returned if the point moved, nil otherwise.
4540 ;;
4541 ;;Note that this function might do hidden buffer changes. See the
4542 ;;comment at the start of cc-engine.el for more info."
4543 ;;
4544 ;; (save-restriction
4545 ;; (when limit
4546 ;; (narrow-to-region limit (point-max)))
4547 ;;
4548 ;; (let ((start (point)))
4549 ;; (catch 'done
4550 ;; (while (let ((last-pos (point))
4551 ;; (stop-pos (progn
4552 ;; (skip-chars-backward skip-chars)
4553 ;; (point))))
4554 ;;
4555 ;; ;; Skip back over the same region as
4556 ;; ;; `skip-chars-backward' above, but keep to
4557 ;; ;; syntactically relevant positions.
4558 ;; (goto-char last-pos)
4559 ;; (while (and
4560 ;; ;; `re-search-backward' with a single char regexp
4561 ;; ;; should be fast.
4562 ;; (re-search-backward
4563 ;; (if paren-level c-ssb-stop-paren-re c-ssb-stop-re)
4564 ;; stop-pos 'move)
4565 ;;
4566 ;; (progn
4567 ;; (cond
4568 ;; ((looking-at "\\s(")
4569 ;; ;; `paren-level' is set and we've found the
4570 ;; ;; start of the containing paren.
4571 ;; (forward-char)
4572 ;; (throw 'done t))
4573 ;;
4574 ;; ((looking-at c-ssb-sexp-end-re)
4575 ;; ;; We're at the end of a string literal or paren
4576 ;; ;; sexp (if `paren-level' is set).
4577 ;; (forward-char)
4578 ;; (condition-case nil
4579 ;; (c-backward-sexp)
4580 ;; (error
4581 ;; (goto-char limit)
4582 ;; (throw 'done t))))
4583 ;;
4584 ;; (t
4585 ;; (forward-char)
4586 ;; ;; At the end of some syntactic ws or possibly
4587 ;; ;; after a plain '/' operator.
4588 ;; (let ((pos (point)))
4589 ;; (c-backward-syntactic-ws)
4590 ;; (if (= pos (point))
4591 ;; ;; Was a plain '/' operator. Go past it.
4592 ;; (backward-char)))))
4593 ;;
4594 ;; (> (point) stop-pos))))
4595 ;;
4596 ;; ;; Now the point is either at `stop-pos' or at some
4597 ;; ;; position further back if `stop-pos' was at a
4598 ;; ;; syntactically irrelevant place.
4599 ;;
4600 ;; ;; Skip additional syntactic ws so that we don't stop
4601 ;; ;; at the end of a comment if `skip-chars' is
4602 ;; ;; something like "^/".
4603 ;; (c-backward-syntactic-ws)
4604 ;;
4605 ;; (< (point) stop-pos))))
4606 ;;
4607 ;; ;; We might want to extend this with more useful return values
4608 ;; ;; in the future.
4609 ;; (/= (point) start))))
4610
4611 \f
4612 ;; Tools for handling comments and string literals.
4613
4614 (defun c-in-literal (&optional lim detect-cpp)
4615 "Return the type of literal point is in, if any.
4616 The return value is `c' if in a C-style comment, `c++' if in a C++
4617 style comment, `string' if in a string literal, `pound' if DETECT-CPP
4618 is non-nil and in a preprocessor line, or nil if somewhere else.
4619 Optional LIM is used as the backward limit of the search. If omitted,
4620 or nil, `c-beginning-of-defun' is used.
4621
4622 The last point calculated is cached if the cache is enabled, i.e. if
4623 `c-in-literal-cache' is bound to a two element vector.
4624
4625 Note that this function might do hidden buffer changes. See the
4626 comment at the start of cc-engine.el for more info."
4627 (save-restriction
4628 (widen)
4629 (let* ((safe-place (c-state-semi-safe-place (point)))
4630 (lit (c-state-pp-to-literal safe-place (point))))
4631 (or (cadr lit)
4632 (and detect-cpp
4633 (save-excursion (c-beginning-of-macro))
4634 'pound)))))
4635
4636 (defun c-literal-limits (&optional lim near not-in-delimiter)
4637 "Return a cons of the beginning and end positions of the comment or
4638 string surrounding point (including both delimiters), or nil if point
4639 isn't in one. If LIM is non-nil, it's used as the \"safe\" position
4640 to start parsing from. If NEAR is non-nil, then the limits of any
4641 literal next to point is returned. \"Next to\" means there's only
4642 spaces and tabs between point and the literal. The search for such a
4643 literal is done first in forward direction. If NOT-IN-DELIMITER is
4644 non-nil, the case when point is inside a starting delimiter won't be
4645 recognized. This only has effect for comments which have starting
4646 delimiters with more than one character.
4647
4648 Note that this function might do hidden buffer changes. See the
4649 comment at the start of cc-engine.el for more info."
4650
4651 (save-excursion
4652 (let* ((pos (point))
4653 (lim (or lim (c-state-semi-safe-place pos)))
4654 (pp-to-lit (save-restriction
4655 (widen)
4656 (c-state-pp-to-literal lim pos not-in-delimiter)))
4657 (state (car pp-to-lit))
4658 (lit-limits (car (cddr pp-to-lit))))
4659
4660 (cond
4661 (lit-limits)
4662
4663 (near
4664 (goto-char pos)
4665 ;; Search forward for a literal.
4666 (skip-chars-forward " \t")
4667 (cond
4668 ((looking-at c-string-limit-regexp) ; String.
4669 (cons (point) (or (c-safe (c-forward-sexp 1) (point))
4670 (point-max))))
4671
4672 ((looking-at c-comment-start-regexp) ; Line or block comment.
4673 (cons (point) (progn (c-forward-single-comment) (point))))
4674
4675 (t
4676 ;; Search backward.
4677 (skip-chars-backward " \t")
4678
4679 (let ((end (point)) beg)
4680 (cond
4681 ((save-excursion
4682 (< (skip-syntax-backward c-string-syntax) 0)) ; String.
4683 (setq beg (c-safe (c-backward-sexp 1) (point))))
4684
4685 ((and (c-safe (forward-char -2) t)
4686 (looking-at "*/"))
4687 ;; Block comment. Due to the nature of line
4688 ;; comments, they will always be covered by the
4689 ;; normal case above.
4690 (goto-char end)
4691 (c-backward-single-comment)
4692 ;; If LIM is bogus, beg will be bogus.
4693 (setq beg (point))))
4694
4695 (if beg (cons beg end))))))
4696 ))))
4697
4698 ;; In case external callers use this; it did have a docstring.
4699 (defalias 'c-literal-limits-fast 'c-literal-limits)
4700
4701 (defun c-collect-line-comments (range)
4702 "If the argument is a cons of two buffer positions (such as returned by
4703 `c-literal-limits'), and that range contains a C++ style line comment,
4704 then an extended range is returned that contains all adjacent line
4705 comments (i.e. all comments that starts in the same column with no
4706 empty lines or non-whitespace characters between them). Otherwise the
4707 argument is returned.
4708
4709 Note that this function might do hidden buffer changes. See the
4710 comment at the start of cc-engine.el for more info."
4711
4712 (save-excursion
4713 (condition-case nil
4714 (if (and (consp range) (progn
4715 (goto-char (car range))
4716 (looking-at c-line-comment-starter)))
4717 (let ((col (current-column))
4718 (beg (point))
4719 (bopl (c-point 'bopl))
4720 (end (cdr range)))
4721 ;; Got to take care in the backward direction to handle
4722 ;; comments which are preceded by code.
4723 (while (and (c-backward-single-comment)
4724 (>= (point) bopl)
4725 (looking-at c-line-comment-starter)
4726 (= col (current-column)))
4727 (setq beg (point)
4728 bopl (c-point 'bopl)))
4729 (goto-char end)
4730 (while (and (progn (skip-chars-forward " \t")
4731 (looking-at c-line-comment-starter))
4732 (= col (current-column))
4733 (prog1 (zerop (forward-line 1))
4734 (setq end (point)))))
4735 (cons beg end))
4736 range)
4737 (error range))))
4738
4739 (defun c-literal-type (range)
4740 "Convenience function that given the result of `c-literal-limits',
4741 returns nil or the type of literal that the range surrounds, one
4742 of the symbols `c', `c++' or `string'. It's much faster than using
4743 `c-in-literal' and is intended to be used when you need both the
4744 type of a literal and its limits.
4745
4746 Note that this function might do hidden buffer changes. See the
4747 comment at the start of cc-engine.el for more info."
4748
4749 (if (consp range)
4750 (save-excursion
4751 (goto-char (car range))
4752 (cond ((looking-at c-string-limit-regexp) 'string)
4753 ((or (looking-at "//") ; c++ line comment
4754 (and (looking-at "\\s<") ; comment starter
4755 (looking-at "#"))) ; awk comment.
4756 'c++)
4757 (t 'c))) ; Assuming the range is valid.
4758 range))
4759
4760 (defsubst c-determine-limit-get-base (start try-size)
4761 ;; Get a "safe place" approximately TRY-SIZE characters before START.
4762 ;; This doesn't preserve point.
4763 (let* ((pos (max (- start try-size) (point-min)))
4764 (base (c-state-semi-safe-place pos))
4765 (s (parse-partial-sexp base pos)))
4766 (if (or (nth 4 s) (nth 3 s)) ; comment or string
4767 (nth 8 s)
4768 (point))))
4769
4770 (defun c-determine-limit (how-far-back &optional start try-size)
4771 ;; Return a buffer position HOW-FAR-BACK non-literal characters from START
4772 ;; (default point). This is done by going back further in the buffer then
4773 ;; searching forward for literals. The position found won't be in a
4774 ;; literal. We start searching for the sought position TRY-SIZE (default
4775 ;; twice HOW-FAR-BACK) bytes back from START. This function must be fast.
4776 ;; :-)
4777 (save-excursion
4778 (let* ((start (or start (point)))
4779 (try-size (or try-size (* 2 how-far-back)))
4780 (base (c-determine-limit-get-base start try-size))
4781 (pos base)
4782
4783 (s (parse-partial-sexp pos pos)) ; null state.
4784 stack elt size
4785 (count 0))
4786 (while (< pos start)
4787 ;; Move forward one literal each time round this loop.
4788 ;; Move forward to the start of a comment or string.
4789 (setq s (parse-partial-sexp
4790 pos
4791 start
4792 nil ; target-depth
4793 nil ; stop-before
4794 s ; state
4795 'syntax-table)) ; stop-comment
4796
4797 ;; Gather details of the non-literal-bit - starting pos and size.
4798 (setq size (- (if (or (nth 4 s) (nth 3 s))
4799 (nth 8 s)
4800 (point))
4801 pos))
4802 (if (> size 0)
4803 (setq stack (cons (cons pos size) stack)))
4804
4805 ;; Move forward to the end of the comment/string.
4806 (if (or (nth 4 s) (nth 3 s))
4807 (setq s (parse-partial-sexp
4808 (point)
4809 start
4810 nil ; target-depth
4811 nil ; stop-before
4812 s ; state
4813 'syntax-table))) ; stop-comment
4814 (setq pos (point)))
4815
4816 ;; Now try and find enough non-literal characters recorded on the stack.
4817 ;; Go back one recorded literal each time round this loop.
4818 (while (and (< count how-far-back)
4819 stack)
4820 (setq elt (car stack)
4821 stack (cdr stack))
4822 (setq count (+ count (cdr elt))))
4823
4824 ;; Have we found enough yet?
4825 (cond
4826 ((>= count how-far-back)
4827 (+ (car elt) (- count how-far-back)))
4828 ((eq base (point-min))
4829 (point-min))
4830 (t
4831 (c-determine-limit (- how-far-back count) base try-size))))))
4832
4833 (defun c-determine-+ve-limit (how-far &optional start-pos)
4834 ;; Return a buffer position about HOW-FAR non-literal characters forward
4835 ;; from START-POS (default point), which must not be inside a literal.
4836 (save-excursion
4837 (let ((pos (or start-pos (point)))
4838 (count how-far)
4839 (s (parse-partial-sexp (point) (point)))) ; null state
4840 (while (and (not (eobp))
4841 (> count 0))
4842 ;; Scan over counted characters.
4843 (setq s (parse-partial-sexp
4844 pos
4845 (min (+ pos count) (point-max))
4846 nil ; target-depth
4847 nil ; stop-before
4848 s ; state
4849 'syntax-table)) ; stop-comment
4850 (setq count (- count (- (point) pos) 1)
4851 pos (point))
4852 ;; Scan over literal characters.
4853 (if (nth 8 s)
4854 (setq s (parse-partial-sexp
4855 pos
4856 (point-max)
4857 nil ; target-depth
4858 nil ; stop-before
4859 s ; state
4860 'syntax-table) ; stop-comment
4861 pos (point))))
4862 (point))))
4863
4864 \f
4865 ;; `c-find-decl-spots' and accompanying stuff.
4866
4867 ;; Variables used in `c-find-decl-spots' to cache the search done for
4868 ;; the first declaration in the last call. When that function starts,
4869 ;; it needs to back up over syntactic whitespace to look at the last
4870 ;; token before the region being searched. That can sometimes cause
4871 ;; moves back and forth over a quite large region of comments and
4872 ;; macros, which would be repeated for each changed character when
4873 ;; we're called during fontification, since font-lock refontifies the
4874 ;; current line for each change. Thus it's worthwhile to cache the
4875 ;; first match.
4876 ;;
4877 ;; `c-find-decl-syntactic-pos' is a syntactically relevant position in
4878 ;; the syntactic whitespace less or equal to some start position.
4879 ;; There's no cached value if it's nil.
4880 ;;
4881 ;; `c-find-decl-match-pos' is the match position if
4882 ;; `c-find-decl-prefix-search' matched before the syntactic whitespace
4883 ;; at `c-find-decl-syntactic-pos', or nil if there's no such match.
4884 (defvar c-find-decl-syntactic-pos nil)
4885 (make-variable-buffer-local 'c-find-decl-syntactic-pos)
4886 (defvar c-find-decl-match-pos nil)
4887 (make-variable-buffer-local 'c-find-decl-match-pos)
4888
4889 (defsubst c-invalidate-find-decl-cache (change-min-pos)
4890 (and c-find-decl-syntactic-pos
4891 (< change-min-pos c-find-decl-syntactic-pos)
4892 (setq c-find-decl-syntactic-pos nil)))
4893
4894 ; (defface c-debug-decl-spot-face
4895 ; '((t (:background "Turquoise")))
4896 ; "Debug face to mark the spots where `c-find-decl-spots' stopped.")
4897 ; (defface c-debug-decl-sws-face
4898 ; '((t (:background "Khaki")))
4899 ; "Debug face to mark the syntactic whitespace between the declaration
4900 ; spots and the preceding token end.")
4901
4902 (defmacro c-debug-put-decl-spot-faces (match-pos decl-pos)
4903 (when (facep 'c-debug-decl-spot-face)
4904 `(c-save-buffer-state ((match-pos ,match-pos) (decl-pos ,decl-pos))
4905 (c-debug-add-face (max match-pos (point-min)) decl-pos
4906 'c-debug-decl-sws-face)
4907 (c-debug-add-face decl-pos (min (1+ decl-pos) (point-max))
4908 'c-debug-decl-spot-face))))
4909 (defmacro c-debug-remove-decl-spot-faces (beg end)
4910 (when (facep 'c-debug-decl-spot-face)
4911 `(c-save-buffer-state ()
4912 (c-debug-remove-face ,beg ,end 'c-debug-decl-spot-face)
4913 (c-debug-remove-face ,beg ,end 'c-debug-decl-sws-face))))
4914
4915 (defmacro c-find-decl-prefix-search ()
4916 ;; Macro used inside `c-find-decl-spots'. It ought to be a defun,
4917 ;; but it contains lots of free variables that refer to things
4918 ;; inside `c-find-decl-spots'. The point is left at `cfd-match-pos'
4919 ;; if there is a match, otherwise at `cfd-limit'.
4920 ;;
4921 ;; The macro moves point forward to the next putative start of a declaration
4922 ;; or cfd-limit. This decl start is the next token after a "declaration
4923 ;; prefix". The declaration prefix is the earlier of `cfd-prop-match' and
4924 ;; `cfd-re-match'. `cfd-match-pos' is set to the decl prefix.
4925 ;;
4926 ;; This macro might do hidden buffer changes.
4927
4928 '(progn
4929 ;; Find the next property match position if we haven't got one already.
4930 (unless cfd-prop-match
4931 (save-excursion
4932 (while (progn
4933 (goto-char (c-next-single-property-change
4934 (point) 'c-type nil cfd-limit))
4935 (and (< (point) cfd-limit)
4936 (not (eq (c-get-char-property (1- (point)) 'c-type)
4937 'c-decl-end)))))
4938 (setq cfd-prop-match (point))))
4939
4940 ;; Find the next `c-decl-prefix-or-start-re' match if we haven't
4941 ;; got one already.
4942 (unless cfd-re-match
4943
4944 (if (> cfd-re-match-end (point))
4945 (goto-char cfd-re-match-end))
4946
4947 ;; Each time round, the next `while' moves forward over a pseudo match
4948 ;; of `c-decl-prefix-or-start-re' which is either inside a literal, or
4949 ;; is a ":" not preceded by "public", etc.. `cfd-re-match' and
4950 ;; `cfd-re-match-end' get set.
4951 (while
4952 (progn
4953 (setq cfd-re-match-end (re-search-forward c-decl-prefix-or-start-re
4954 cfd-limit 'move))
4955 (cond
4956 ((null cfd-re-match-end)
4957 ;; No match. Finish up and exit the loop.
4958 (setq cfd-re-match cfd-limit)
4959 nil)
4960 ((c-got-face-at
4961 (if (setq cfd-re-match (match-end 1))
4962 ;; Matched the end of a token preceding a decl spot.
4963 (progn
4964 (goto-char cfd-re-match)
4965 (1- cfd-re-match))
4966 ;; Matched a token that start a decl spot.
4967 (goto-char (match-beginning 0))
4968 (point))
4969 c-literal-faces)
4970 ;; Pseudo match inside a comment or string literal. Skip out
4971 ;; of comments and string literals.
4972 (while (progn
4973 (goto-char (c-next-single-property-change
4974 (point) 'face nil cfd-limit))
4975 (and (< (point) cfd-limit)
4976 (c-got-face-at (point) c-literal-faces))))
4977 t) ; Continue the loop over pseudo matches.
4978 ((and (match-string 1)
4979 (string= (match-string 1) ":")
4980 (save-excursion
4981 (or (/= (c-backward-token-2 2) 0) ; no search limit. :-(
4982 (not (looking-at c-decl-start-colon-kwd-re)))))
4983 ;; Found a ":" which isn't part of "public:", etc.
4984 t)
4985 (t nil)))) ;; Found a real match. Exit the pseudo-match loop.
4986
4987 ;; If our match was at the decl start, we have to back up over the
4988 ;; preceding syntactic ws to set `cfd-match-pos' and to catch
4989 ;; any decl spots in the syntactic ws.
4990 (unless cfd-re-match
4991 (c-backward-syntactic-ws)
4992 (setq cfd-re-match (point))))
4993
4994 ;; Choose whichever match is closer to the start.
4995 (if (< cfd-re-match cfd-prop-match)
4996 (setq cfd-match-pos cfd-re-match
4997 cfd-re-match nil)
4998 (setq cfd-match-pos cfd-prop-match
4999 cfd-prop-match nil))
5000
5001 (goto-char cfd-match-pos)
5002
5003 (when (< cfd-match-pos cfd-limit)
5004 ;; Skip forward past comments only so we don't skip macros.
5005 (c-forward-comments)
5006 ;; Set the position to continue at. We can avoid going over
5007 ;; the comments skipped above a second time, but it's possible
5008 ;; that the comment skipping has taken us past `cfd-prop-match'
5009 ;; since the property might be used inside comments.
5010 (setq cfd-continue-pos (if cfd-prop-match
5011 (min cfd-prop-match (point))
5012 (point))))))
5013
5014 (defun c-find-decl-spots (cfd-limit cfd-decl-re cfd-face-checklist cfd-fun)
5015 ;; Call CFD-FUN for each possible spot for a declaration, cast or
5016 ;; label from the point to CFD-LIMIT.
5017 ;;
5018 ;; CFD-FUN is called with point at the start of the spot. It's passed two
5019 ;; arguments: The first is the end position of the token preceding the spot,
5020 ;; or 0 for the implicit match at bob. The second is a flag that is t when
5021 ;; the match is inside a macro. Point should be moved forward by at least
5022 ;; one token.
5023 ;;
5024 ;; If CFD-FUN adds `c-decl-end' properties somewhere below the current spot,
5025 ;; it should return non-nil to ensure that the next search will find them.
5026 ;;
5027 ;; Such a spot is:
5028 ;; o The first token after bob.
5029 ;; o The first token after the end of submatch 1 in
5030 ;; `c-decl-prefix-or-start-re' when that submatch matches. This
5031 ;; submatch is typically a (L or R) brace or paren, a ;, or a ,.
5032 ;; o The start of each `c-decl-prefix-or-start-re' match when
5033 ;; submatch 1 doesn't match. This is, for example, the keyword
5034 ;; "class" in Pike.
5035 ;; o The start of a previously recognized declaration; "recognized"
5036 ;; means that the last char of the previous token has a `c-type'
5037 ;; text property with the value `c-decl-end'; this only holds
5038 ;; when `c-type-decl-end-used' is set.
5039 ;;
5040 ;; Only a spot that match CFD-DECL-RE and whose face is in the
5041 ;; CFD-FACE-CHECKLIST list causes CFD-FUN to be called. The face
5042 ;; check is disabled if CFD-FACE-CHECKLIST is nil.
5043 ;;
5044 ;; If the match is inside a macro then the buffer is narrowed to the
5045 ;; end of it, so that CFD-FUN can investigate the following tokens
5046 ;; without matching something that begins inside a macro and ends
5047 ;; outside it. It's to avoid this work that the CFD-DECL-RE and
5048 ;; CFD-FACE-CHECKLIST checks exist.
5049 ;;
5050 ;; The spots are visited approximately in order from top to bottom.
5051 ;; It's however the positions where `c-decl-prefix-or-start-re'
5052 ;; matches and where `c-decl-end' properties are found that are in
5053 ;; order. Since the spots often are at the following token, they
5054 ;; might be visited out of order insofar as more spots are reported
5055 ;; later on within the syntactic whitespace between the match
5056 ;; positions and their spots.
5057 ;;
5058 ;; It's assumed that comments and strings are fontified in the
5059 ;; searched range.
5060 ;;
5061 ;; This is mainly used in fontification, and so has an elaborate
5062 ;; cache to handle repeated calls from the same start position; see
5063 ;; the variables above.
5064 ;;
5065 ;; All variables in this function begin with `cfd-' to avoid name
5066 ;; collision with the (dynamically bound) variables used in CFD-FUN.
5067 ;;
5068 ;; This function might do hidden buffer changes.
5069
5070 (let ((cfd-start-pos (point)) ; never changed
5071 (cfd-buffer-end (point-max))
5072 ;; The end of the token preceding the decl spot last found
5073 ;; with `c-decl-prefix-or-start-re'. `cfd-limit' if there's
5074 ;; no match.
5075 cfd-re-match
5076 ;; The end position of the last `c-decl-prefix-or-start-re'
5077 ;; match. If this is greater than `cfd-continue-pos', the
5078 ;; next regexp search is started here instead.
5079 (cfd-re-match-end (point-min))
5080 ;; The end of the last `c-decl-end' found by
5081 ;; `c-find-decl-prefix-search'. `cfd-limit' if there's no
5082 ;; match. If searching for the property isn't needed then we
5083 ;; disable it by setting it to `cfd-limit' directly.
5084 (cfd-prop-match (unless c-type-decl-end-used cfd-limit))
5085 ;; The end of the token preceding the decl spot last found by
5086 ;; `c-find-decl-prefix-search'. 0 for the implicit match at
5087 ;; bob. `cfd-limit' if there's no match. In other words,
5088 ;; this is the minimum of `cfd-re-match' and `cfd-prop-match'.
5089 (cfd-match-pos cfd-limit)
5090 ;; The position to continue searching at.
5091 cfd-continue-pos
5092 ;; The position of the last "real" token we've stopped at.
5093 ;; This can be greater than `cfd-continue-pos' when we get
5094 ;; hits inside macros or at `c-decl-end' positions inside
5095 ;; comments.
5096 (cfd-token-pos 0)
5097 ;; The end position of the last entered macro.
5098 (cfd-macro-end 0))
5099
5100 ;; Initialize by finding a syntactically relevant start position
5101 ;; before the point, and do the first `c-decl-prefix-or-start-re'
5102 ;; search unless we're at bob.
5103
5104 (let (start-in-literal start-in-macro syntactic-pos)
5105 ;; Must back up a bit since we look for the end of the previous
5106 ;; statement or declaration, which is earlier than the first
5107 ;; returned match.
5108
5109 ;; This `cond' moves back over any literals or macros. It has special
5110 ;; handling for when the region being searched is entirely within a
5111 ;; macro. It sets `cfd-continue-pos' (unless we've reached
5112 ;; `cfd-limit').
5113 (cond
5114 ;; First we need to move to a syntactically relevant position.
5115 ;; Begin by backing out of comment or string literals.
5116 ;;
5117 ;; This arm of the cond actually triggers if we're in a literal,
5118 ;; and cfd-limit is at most at BONL.
5119 ((and
5120 ;; This arm of the `and' moves backwards out of a literal when
5121 ;; the face at point is a literal face. In this case, its value
5122 ;; is always non-nil.
5123 (when (c-got-face-at (point) c-literal-faces)
5124 ;; Try to use the faces to back up to the start of the
5125 ;; literal. FIXME: What if the point is on a declaration
5126 ;; inside a comment?
5127 (while (and (not (bobp))
5128 (c-got-face-at (1- (point)) c-literal-faces))
5129 (goto-char (previous-single-property-change
5130 (point) 'face nil (point-min))))
5131
5132 ;; XEmacs doesn't fontify the quotes surrounding string
5133 ;; literals.
5134 (and (featurep 'xemacs)
5135 (eq (get-text-property (point) 'face)
5136 'font-lock-string-face)
5137 (not (bobp))
5138 (progn (backward-char)
5139 (not (looking-at c-string-limit-regexp)))
5140 (forward-char))
5141
5142 ;; Don't trust the literal to contain only literal faces
5143 ;; (the font lock package might not have fontified the
5144 ;; start of it at all, for instance) so check that we have
5145 ;; arrived at something that looks like a start or else
5146 ;; resort to `c-literal-limits'.
5147 (unless (looking-at c-literal-start-regexp)
5148 (let ((range (c-literal-limits)))
5149 (if range (goto-char (car range)))))
5150
5151 (setq start-in-literal (point))) ; end of `and' arm.
5152
5153 ;; The start is in a literal. If the limit is in the same
5154 ;; one we don't have to find a syntactic position etc. We
5155 ;; only check that if the limit is at or before bonl to save
5156 ;; time; it covers the by far most common case when font-lock
5157 ;; refontifies the current line only.
5158 (<= cfd-limit (c-point 'bonl cfd-start-pos))
5159 (save-excursion
5160 (goto-char cfd-start-pos)
5161 (while (progn
5162 (goto-char (c-next-single-property-change
5163 (point) 'face nil cfd-limit))
5164 (and (< (point) cfd-limit)
5165 (c-got-face-at (point) c-literal-faces))))
5166 (= (point) cfd-limit))) ; end of `cond' arm condition
5167
5168 ;; Completely inside a literal. Set up variables to trig the
5169 ;; (< cfd-continue-pos cfd-start-pos) case below and it'll
5170 ;; find a suitable start position.
5171 (setq cfd-continue-pos start-in-literal)) ; end of `cond' arm
5172
5173 ;; Check if the region might be completely inside a macro, to
5174 ;; optimize that like the completely-inside-literal above.
5175 ((save-excursion
5176 (and (= (forward-line 1) 0)
5177 (bolp) ; forward-line has funny behavior at eob.
5178 (>= (point) cfd-limit)
5179 (progn (backward-char)
5180 (eq (char-before) ?\\))))
5181 ;; (Maybe) completely inside a macro. Only need to trig the
5182 ;; (< cfd-continue-pos cfd-start-pos) case below to make it
5183 ;; set things up.
5184 (setq cfd-continue-pos (1- cfd-start-pos)
5185 start-in-macro t))
5186
5187 ;; The default arm of the `cond' moves back over any macro we're in
5188 ;; and over any syntactic WS. It sets `c-find-decl-syntactic-pos'.
5189 (t
5190 ;; Back out of any macro so we don't miss any declaration
5191 ;; that could follow after it.
5192 (when (c-beginning-of-macro)
5193 (setq start-in-macro t))
5194
5195 ;; Now we're at a proper syntactically relevant position so we
5196 ;; can use the cache. But first clear it if it applied
5197 ;; further down.
5198 (c-invalidate-find-decl-cache cfd-start-pos)
5199
5200 (setq syntactic-pos (point))
5201 (unless (eq syntactic-pos c-find-decl-syntactic-pos)
5202 ;; Don't have to do this if the cache is relevant here,
5203 ;; typically if the same line is refontified again. If
5204 ;; we're just some syntactic whitespace further down we can
5205 ;; still use the cache to limit the skipping.
5206 (c-backward-syntactic-ws c-find-decl-syntactic-pos))
5207
5208 ;; If we hit `c-find-decl-syntactic-pos' and
5209 ;; `c-find-decl-match-pos' is set then we install the cached
5210 ;; values. If we hit `c-find-decl-syntactic-pos' and
5211 ;; `c-find-decl-match-pos' is nil then we know there's no decl
5212 ;; prefix in the whitespace before `c-find-decl-syntactic-pos'
5213 ;; and so we can continue the search from this point. If we
5214 ;; didn't hit `c-find-decl-syntactic-pos' then we're now in
5215 ;; the right spot to begin searching anyway.
5216 (if (and (eq (point) c-find-decl-syntactic-pos)
5217 c-find-decl-match-pos)
5218 (setq cfd-match-pos c-find-decl-match-pos
5219 cfd-continue-pos syntactic-pos)
5220
5221 (setq c-find-decl-syntactic-pos syntactic-pos)
5222
5223 (when (if (bobp)
5224 ;; Always consider bob a match to get the first
5225 ;; declaration in the file. Do this separately instead of
5226 ;; letting `c-decl-prefix-or-start-re' match bob, so that
5227 ;; regexp always can consume at least one character to
5228 ;; ensure that we won't get stuck in an infinite loop.
5229 (setq cfd-re-match 0)
5230 (backward-char)
5231 (c-beginning-of-current-token)
5232 (< (point) cfd-limit))
5233 ;; Do an initial search now. In the bob case above it's
5234 ;; only done to search for a `c-decl-end' spot.
5235 (c-find-decl-prefix-search)) ; sets cfd-continue-pos
5236
5237 (setq c-find-decl-match-pos (and (< cfd-match-pos cfd-start-pos)
5238 cfd-match-pos))))) ; end of `cond'
5239
5240 ;; Advance `cfd-continue-pos' if it's before the start position.
5241 ;; The closest continue position that might have effect at or
5242 ;; after the start depends on what we started in. This also
5243 ;; finds a suitable start position in the special cases when the
5244 ;; region is completely within a literal or macro.
5245 (when (and cfd-continue-pos (< cfd-continue-pos cfd-start-pos))
5246
5247 (cond
5248 (start-in-macro
5249 ;; If we're in a macro then it's the closest preceding token
5250 ;; in the macro. Check this before `start-in-literal',
5251 ;; since if we're inside a literal in a macro, the preceding
5252 ;; token is earlier than any `c-decl-end' spot inside the
5253 ;; literal (comment).
5254 (goto-char (or start-in-literal cfd-start-pos))
5255 ;; The only syntactic ws in macros are comments.
5256 (c-backward-comments)
5257 (backward-char)
5258 (c-beginning-of-current-token))
5259
5260 (start-in-literal
5261 ;; If we're in a comment it can only be the closest
5262 ;; preceding `c-decl-end' position within that comment, if
5263 ;; any. Go back to the beginning of such a property so that
5264 ;; `c-find-decl-prefix-search' will find the end of it.
5265 ;; (Can't stop at the end and install it directly on
5266 ;; `cfd-prop-match' since that variable might be cleared
5267 ;; after `cfd-fun' below.)
5268 ;;
5269 ;; Note that if the literal is a string then the property
5270 ;; search will simply skip to the beginning of it right
5271 ;; away.
5272 (if (not c-type-decl-end-used)
5273 (goto-char start-in-literal)
5274 (goto-char cfd-start-pos)
5275 (while (progn
5276 (goto-char (previous-single-property-change
5277 (point) 'c-type nil start-in-literal))
5278 (and (> (point) start-in-literal)
5279 (not (eq (c-get-char-property (point) 'c-type)
5280 'c-decl-end))))))
5281
5282 (when (= (point) start-in-literal)
5283 ;; Didn't find any property inside the comment, so we can
5284 ;; skip it entirely. (This won't skip past a string, but
5285 ;; that'll be handled quickly by the next
5286 ;; `c-find-decl-prefix-search' anyway.)
5287 (c-forward-single-comment)
5288 (if (> (point) cfd-limit)
5289 (goto-char cfd-limit))))
5290
5291 (t
5292 ;; If we started in normal code, the only match that might
5293 ;; apply before the start is what we already got in
5294 ;; `cfd-match-pos' so we can continue at the start position.
5295 ;; (Note that we don't get here if the first match is below
5296 ;; it.)
5297 (goto-char cfd-start-pos))) ; end of `cond'
5298
5299 ;; Delete found matches if they are before our new continue
5300 ;; position, so that `c-find-decl-prefix-search' won't back up
5301 ;; to them later on.
5302 (setq cfd-continue-pos (point))
5303 (when (and cfd-re-match (< cfd-re-match cfd-continue-pos))
5304 (setq cfd-re-match nil))
5305 (when (and cfd-prop-match (< cfd-prop-match cfd-continue-pos))
5306 (setq cfd-prop-match nil))) ; end of `when'
5307
5308 (if syntactic-pos
5309 ;; This is the normal case and we got a proper syntactic
5310 ;; position. If there's a match then it's always outside
5311 ;; macros and comments, so advance to the next token and set
5312 ;; `cfd-token-pos'. The loop below will later go back using
5313 ;; `cfd-continue-pos' to fix declarations inside the
5314 ;; syntactic ws.
5315 (when (and cfd-match-pos (< cfd-match-pos syntactic-pos))
5316 (goto-char syntactic-pos)
5317 (c-forward-syntactic-ws)
5318 (and cfd-continue-pos
5319 (< cfd-continue-pos (point))
5320 (setq cfd-token-pos (point))))
5321
5322 ;; Have one of the special cases when the region is completely
5323 ;; within a literal or macro. `cfd-continue-pos' is set to a
5324 ;; good start position for the search, so do it.
5325 (c-find-decl-prefix-search)))
5326
5327 ;; Now loop, one decl spot per iteration. We already have the first
5328 ;; match in `cfd-match-pos'.
5329 (while (progn
5330 ;; Go forward over "false matches", one per iteration.
5331 (while (and
5332 (< cfd-match-pos cfd-limit)
5333
5334 (or
5335 ;; Kludge to filter out matches on the "<" that
5336 ;; aren't open parens, for the sake of languages
5337 ;; that got `c-recognize-<>-arglists' set.
5338 (and (eq (char-before cfd-match-pos) ?<)
5339 (not (c-get-char-property (1- cfd-match-pos)
5340 'syntax-table)))
5341
5342 ;; If `cfd-continue-pos' is less or equal to
5343 ;; `cfd-token-pos', we've got a hit inside a macro
5344 ;; that's in the syntactic whitespace before the last
5345 ;; "real" declaration we've checked. If they're equal
5346 ;; we've arrived at the declaration a second time, so
5347 ;; there's nothing to do.
5348 (= cfd-continue-pos cfd-token-pos)
5349
5350 (progn
5351 ;; If `cfd-continue-pos' is less than `cfd-token-pos'
5352 ;; we're still searching for declarations embedded in
5353 ;; the syntactic whitespace. In that case we need
5354 ;; only to skip comments and not macros, since they
5355 ;; can't be nested, and that's already been done in
5356 ;; `c-find-decl-prefix-search'.
5357 (when (> cfd-continue-pos cfd-token-pos)
5358 (c-forward-syntactic-ws)
5359 (setq cfd-token-pos (point)))
5360
5361 ;; Continue if the following token fails the
5362 ;; CFD-DECL-RE and CFD-FACE-CHECKLIST checks.
5363 (when (or (>= (point) cfd-limit)
5364 (not (looking-at cfd-decl-re))
5365 (and cfd-face-checklist
5366 (not (c-got-face-at
5367 (point) cfd-face-checklist))))
5368 (goto-char cfd-continue-pos)
5369 t)))
5370
5371 (< (point) cfd-limit)) ; end of "false matches" condition
5372 (c-find-decl-prefix-search)) ; end of "false matches" loop
5373
5374 (< (point) cfd-limit)) ; end of condition for "decl-spot" while
5375
5376 (when (and
5377 (>= (point) cfd-start-pos)
5378
5379 (progn
5380 ;; Narrow to the end of the macro if we got a hit inside
5381 ;; one, to avoid recognizing things that start inside the
5382 ;; macro and end outside it.
5383 (when (> cfd-match-pos cfd-macro-end)
5384 ;; Not in the same macro as in the previous round.
5385 (save-excursion
5386 (goto-char cfd-match-pos)
5387 (setq cfd-macro-end
5388 (if (save-excursion (and (c-beginning-of-macro)
5389 (< (point) cfd-match-pos)))
5390 (progn (c-end-of-macro)
5391 (point))
5392 0))))
5393
5394 (if (zerop cfd-macro-end)
5395 t
5396 (if (> cfd-macro-end (point))
5397 (progn (narrow-to-region (point-min) cfd-macro-end)
5398 t)
5399 ;; The matched token was the last thing in the macro,
5400 ;; so the whole match is bogus.
5401 (setq cfd-macro-end 0)
5402 nil)))) ; end of when condition
5403
5404 (c-debug-put-decl-spot-faces cfd-match-pos (point))
5405 (if (funcall cfd-fun cfd-match-pos (/= cfd-macro-end 0))
5406 (setq cfd-prop-match nil))
5407
5408 (when (/= cfd-macro-end 0)
5409 ;; Restore limits if we did macro narrowing above.
5410 (narrow-to-region (point-min) cfd-buffer-end)))
5411
5412 (goto-char cfd-continue-pos)
5413 (if (= cfd-continue-pos cfd-limit)
5414 (setq cfd-match-pos cfd-limit)
5415 (c-find-decl-prefix-search))))) ; Moves point, sets cfd-continue-pos,
5416 ; cfd-match-pos, etc.
5417
5418 \f
5419 ;; A cache for found types.
5420
5421 ;; Buffer local variable that contains an obarray with the types we've
5422 ;; found. If a declaration is recognized somewhere we record the
5423 ;; fully qualified identifier in it to recognize it as a type
5424 ;; elsewhere in the file too. This is not accurate since we do not
5425 ;; bother with the scoping rules of the languages, but in practice the
5426 ;; same name is seldom used as both a type and something else in a
5427 ;; file, and we only use this as a last resort in ambiguous cases (see
5428 ;; `c-forward-decl-or-cast-1').
5429 ;;
5430 ;; Not every type need be in this cache. However, things which have
5431 ;; ceased to be types must be removed from it.
5432 ;;
5433 ;; Template types in C++ are added here too but with the template
5434 ;; arglist replaced with "<>" in references or "<" for the one in the
5435 ;; primary type. E.g. the type "Foo<A,B>::Bar<C>" is stored as
5436 ;; "Foo<>::Bar<". This avoids storing very long strings (since C++
5437 ;; template specs can be fairly sized programs in themselves) and
5438 ;; improves the hit ratio (it's a type regardless of the template
5439 ;; args; it's just not the same type, but we're only interested in
5440 ;; recognizing types, not telling distinct types apart). Note that
5441 ;; template types in references are added here too; from the example
5442 ;; above there will also be an entry "Foo<".
5443 (defvar c-found-types nil)
5444 (make-variable-buffer-local 'c-found-types)
5445
5446 (defsubst c-clear-found-types ()
5447 ;; Clears `c-found-types'.
5448 (setq c-found-types (make-vector 53 0)))
5449
5450 (defun c-add-type (from to)
5451 ;; Add the given region as a type in `c-found-types'. If the region
5452 ;; doesn't match an existing type but there is a type which is equal
5453 ;; to the given one except that the last character is missing, then
5454 ;; the shorter type is removed. That's done to avoid adding all
5455 ;; prefixes of a type as it's being entered and font locked. This
5456 ;; doesn't cover cases like when characters are removed from a type
5457 ;; or added in the middle. We'd need the position of point when the
5458 ;; font locking is invoked to solve this well.
5459 ;;
5460 ;; This function might do hidden buffer changes.
5461 (let ((type (c-syntactic-content from to c-recognize-<>-arglists)))
5462 (unless (intern-soft type c-found-types)
5463 (unintern (substring type 0 -1) c-found-types)
5464 (intern type c-found-types))))
5465
5466 (defun c-unfind-type (name)
5467 ;; Remove the "NAME" from c-found-types, if present.
5468 (unintern name c-found-types))
5469
5470 (defsubst c-check-type (from to)
5471 ;; Return non-nil if the given region contains a type in
5472 ;; `c-found-types'.
5473 ;;
5474 ;; This function might do hidden buffer changes.
5475 (intern-soft (c-syntactic-content from to c-recognize-<>-arglists)
5476 c-found-types))
5477
5478 (defun c-list-found-types ()
5479 ;; Return all the types in `c-found-types' as a sorted list of
5480 ;; strings.
5481 (let (type-list)
5482 (mapatoms (lambda (type)
5483 (setq type-list (cons (symbol-name type)
5484 type-list)))
5485 c-found-types)
5486 (sort type-list 'string-lessp)))
5487
5488 ;; Shut up the byte compiler.
5489 (defvar c-maybe-stale-found-type)
5490
5491 (defun c-trim-found-types (beg end old-len)
5492 ;; An after change function which, in conjunction with the info in
5493 ;; c-maybe-stale-found-type (set in c-before-change), removes a type
5494 ;; from `c-found-types', should this type have become stale. For
5495 ;; example, this happens to "foo" when "foo \n bar();" becomes
5496 ;; "foo(); \n bar();". Such stale types, if not removed, foul up
5497 ;; the fontification.
5498 ;;
5499 ;; Have we, perhaps, added non-ws characters to the front/back of a found
5500 ;; type?
5501 (when (> end beg)
5502 (save-excursion
5503 (when (< end (point-max))
5504 (goto-char end)
5505 (if (and (c-beginning-of-current-token) ; only moves when we started in the middle
5506 (progn (goto-char end)
5507 (c-end-of-current-token)))
5508 (c-unfind-type (buffer-substring-no-properties
5509 end (point)))))
5510 (when (> beg (point-min))
5511 (goto-char beg)
5512 (if (and (c-end-of-current-token) ; only moves when we started in the middle
5513 (progn (goto-char beg)
5514 (c-beginning-of-current-token)))
5515 (c-unfind-type (buffer-substring-no-properties
5516 (point) beg))))))
5517
5518 (if c-maybe-stale-found-type ; e.g. (c-decl-id-start "foo" 97 107 " (* ooka) " "o")
5519 (cond
5520 ;; Changing the amount of (already existing) whitespace - don't do anything.
5521 ((and (c-partial-ws-p beg end)
5522 (or (= beg end) ; removal of WS
5523 (string-match "^[ \t\n\r\f\v]*$" (nth 5 c-maybe-stale-found-type)))))
5524
5525 ;; The syntactic relationship which defined a "found type" has been
5526 ;; destroyed.
5527 ((eq (car c-maybe-stale-found-type) 'c-decl-id-start)
5528 (c-unfind-type (cadr c-maybe-stale-found-type)))
5529 ;; ((eq (car c-maybe-stale-found-type) 'c-decl-type-start) FIXME!!!
5530 )))
5531
5532 \f
5533 ;; Setting and removing syntax properties on < and > in languages (C++
5534 ;; and Java) where they can be template/generic delimiters as well as
5535 ;; their normal meaning of "less/greater than".
5536
5537 ;; Normally, < and > have syntax 'punctuation'. When they are found to
5538 ;; be delimiters, they are marked as such with the category properties
5539 ;; c-<-as-paren-syntax, c->-as-paren-syntax respectively.
5540
5541 ;; STRATEGY:
5542 ;;
5543 ;; It is impossible to determine with certainty whether a <..> pair in
5544 ;; C++ is two comparison operators or is template delimiters, unless
5545 ;; one duplicates a lot of a C++ compiler. For example, the following
5546 ;; code fragment:
5547 ;;
5548 ;; foo (a < b, c > d) ;
5549 ;;
5550 ;; could be a function call with two integer parameters (each a
5551 ;; relational expression), or it could be a constructor for class foo
5552 ;; taking one parameter d of templated type "a < b, c >". They are
5553 ;; somewhat easier to distinguish in Java.
5554 ;;
5555 ;; The strategy now (2010-01) adopted is to mark and unmark < and
5556 ;; > IN MATCHING PAIRS ONLY. [Previously, they were marked
5557 ;; individually when their context so indicated. This gave rise to
5558 ;; intractable problems when one of a matching pair was deleted, or
5559 ;; pulled into a literal.]
5560 ;;
5561 ;; At each buffer change, the syntax-table properties are removed in a
5562 ;; before-change function and reapplied, when needed, in an
5563 ;; after-change function. It is far more important that the
5564 ;; properties get removed when they they are spurious than that they
5565 ;; be present when wanted.
5566 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5567 (defun c-clear-<-pair-props (&optional pos)
5568 ;; POS (default point) is at a < character. If it is marked with
5569 ;; open paren syntax-table text property, remove the property,
5570 ;; together with the close paren property on the matching > (if
5571 ;; any).
5572 (save-excursion
5573 (if pos
5574 (goto-char pos)
5575 (setq pos (point)))
5576 (when (equal (c-get-char-property (point) 'syntax-table)
5577 c-<-as-paren-syntax)
5578 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5579 (c-go-list-forward))
5580 (when (equal (c-get-char-property (1- (point)) 'syntax-table)
5581 c->-as-paren-syntax) ; should always be true.
5582 (c-unmark-<->-as-paren (1- (point))))
5583 (c-unmark-<->-as-paren pos))))
5584
5585 (defun c-clear->-pair-props (&optional pos)
5586 ;; POS (default point) is at a > character. If it is marked with
5587 ;; close paren syntax-table property, remove the property, together
5588 ;; with the open paren property on the matching < (if any).
5589 (save-excursion
5590 (if pos
5591 (goto-char pos)
5592 (setq pos (point)))
5593 (when (equal (c-get-char-property (point) 'syntax-table)
5594 c->-as-paren-syntax)
5595 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5596 (c-go-up-list-backward))
5597 (when (equal (c-get-char-property (point) 'syntax-table)
5598 c-<-as-paren-syntax) ; should always be true.
5599 (c-unmark-<->-as-paren (point)))
5600 (c-unmark-<->-as-paren pos))))
5601
5602 (defun c-clear-<>-pair-props (&optional pos)
5603 ;; POS (default point) is at a < or > character. If it has an
5604 ;; open/close paren syntax-table property, remove this property both
5605 ;; from the current character and its partner (which will also be
5606 ;; thusly marked).
5607 (cond
5608 ((eq (char-after) ?\<)
5609 (c-clear-<-pair-props pos))
5610 ((eq (char-after) ?\>)
5611 (c-clear->-pair-props pos))
5612 (t (c-benign-error
5613 "c-clear-<>-pair-props called from wrong position"))))
5614
5615 (defun c-clear-<-pair-props-if-match-after (lim &optional pos)
5616 ;; POS (default point) is at a < character. If it is both marked
5617 ;; with open/close paren syntax-table property, and has a matching >
5618 ;; (also marked) which is after LIM, remove the property both from
5619 ;; the current > and its partner. Return t when this happens, nil
5620 ;; when it doesn't.
5621 (save-excursion
5622 (if pos
5623 (goto-char pos)
5624 (setq pos (point)))
5625 (when (equal (c-get-char-property (point) 'syntax-table)
5626 c-<-as-paren-syntax)
5627 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5628 (c-go-list-forward))
5629 (when (and (>= (point) lim)
5630 (equal (c-get-char-property (1- (point)) 'syntax-table)
5631 c->-as-paren-syntax)) ; should always be true.
5632 (c-unmark-<->-as-paren (1- (point)))
5633 (c-unmark-<->-as-paren pos))
5634 t)))
5635
5636 (defun c-clear->-pair-props-if-match-before (lim &optional pos)
5637 ;; POS (default point) is at a > character. If it is both marked
5638 ;; with open/close paren syntax-table property, and has a matching <
5639 ;; (also marked) which is before LIM, remove the property both from
5640 ;; the current < and its partner. Return t when this happens, nil
5641 ;; when it doesn't.
5642 (save-excursion
5643 (if pos
5644 (goto-char pos)
5645 (setq pos (point)))
5646 (when (equal (c-get-char-property (point) 'syntax-table)
5647 c->-as-paren-syntax)
5648 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5649 (c-go-up-list-backward))
5650 (when (and (<= (point) lim)
5651 (equal (c-get-char-property (point) 'syntax-table)
5652 c-<-as-paren-syntax)) ; should always be true.
5653 (c-unmark-<->-as-paren (point))
5654 (c-unmark-<->-as-paren pos))
5655 t)))
5656
5657 ;; Set by c-common-init in cc-mode.el.
5658 (defvar c-new-BEG)
5659 (defvar c-new-END)
5660
5661 (defun c-before-change-check-<>-operators (beg end)
5662 ;; Unmark certain pairs of "< .... >" which are currently marked as
5663 ;; template/generic delimiters. (This marking is via syntax-table text
5664 ;; properties), and expand the (c-new-BEG c-new-END) region to include all
5665 ;; unmarked < and > operators within the certain bounds (see below).
5666 ;;
5667 ;; These pairs are those which are in the current "statement" (i.e.,
5668 ;; the region between the {, }, or ; before BEG and the one after
5669 ;; END), and which enclose any part of the interval (BEG END).
5670 ;;
5671 ;; Note that in C++ (?and Java), template/generic parens cannot
5672 ;; enclose a brace or semicolon, so we use these as bounds on the
5673 ;; region we must work on.
5674 ;;
5675 ;; This function is called from before-change-functions (via
5676 ;; c-get-state-before-change-functions). Thus the buffer is widened,
5677 ;; and point is undefined, both at entry and exit.
5678 ;;
5679 ;; FIXME!!! This routine ignores the possibility of macros entirely.
5680 ;; 2010-01-29.
5681 (save-excursion
5682 (c-save-buffer-state
5683 ((beg-lit-limits (progn (goto-char beg) (c-literal-limits)))
5684 (end-lit-limits (progn (goto-char end) (c-literal-limits)))
5685 new-beg new-end beg-limit end-limit)
5686 ;; Locate the earliest < after the barrier before the changed region,
5687 ;; which isn't already marked as a paren.
5688 (goto-char (if beg-lit-limits (car beg-lit-limits) beg))
5689 (setq beg-limit (c-determine-limit 512))
5690
5691 ;; Remove the syntax-table/category properties from each pertinent <...>
5692 ;; pair. Firstly, the ones with the < before beg and > after beg....
5693 (while (progn (c-syntactic-skip-backward "^;{}<" beg-limit)
5694 (eq (char-before) ?<))
5695 (c-backward-token-2)
5696 (when (eq (char-after) ?<)
5697 (c-clear-<-pair-props-if-match-after beg)))
5698 (c-forward-syntactic-ws)
5699 (setq new-beg (point))
5700
5701 ;; ...Then the ones with < before end and > after end.
5702 (goto-char (if end-lit-limits (cdr end-lit-limits) end))
5703 (setq end-limit (c-determine-+ve-limit 512))
5704 (while (and (c-syntactic-re-search-forward "[;{}>]" end-limit 'end)
5705 (eq (char-before) ?>))
5706 (c-end-of-current-token)
5707 (when (eq (char-before) ?>)
5708 (c-clear->-pair-props-if-match-before end (1- (point)))))
5709 (c-backward-syntactic-ws)
5710 (setq new-end (point))
5711
5712 ;; Extend the fontification region, if needed.
5713 (and new-beg
5714 (< new-beg c-new-BEG)
5715 (setq c-new-BEG new-beg))
5716 (and new-end
5717 (> new-end c-new-END)
5718 (setq c-new-END new-end)))))
5719
5720 (defun c-after-change-check-<>-operators (beg end)
5721 ;; This is called from `after-change-functions' when
5722 ;; c-recognize-<>-arglists' is set. It ensures that no "<" or ">"
5723 ;; chars with paren syntax become part of another operator like "<<"
5724 ;; or ">=".
5725 ;;
5726 ;; This function might do hidden buffer changes.
5727
5728 (save-excursion
5729 (goto-char beg)
5730 (when (or (looking-at "[<>]")
5731 (< (skip-chars-backward "<>") 0))
5732
5733 (goto-char beg)
5734 (c-beginning-of-current-token)
5735 (when (and (< (point) beg)
5736 (looking-at c-<>-multichar-token-regexp)
5737 (< beg (setq beg (match-end 0))))
5738 (while (progn (skip-chars-forward "^<>" beg)
5739 (< (point) beg))
5740 (c-clear-<>-pair-props)
5741 (forward-char))))
5742
5743 (when (< beg end)
5744 (goto-char end)
5745 (when (or (looking-at "[<>]")
5746 (< (skip-chars-backward "<>") 0))
5747
5748 (goto-char end)
5749 (c-beginning-of-current-token)
5750 (when (and (< (point) end)
5751 (looking-at c-<>-multichar-token-regexp)
5752 (< end (setq end (match-end 0))))
5753 (while (progn (skip-chars-forward "^<>" end)
5754 (< (point) end))
5755 (c-clear-<>-pair-props)
5756 (forward-char)))))))
5757
5758 (defun c-restore-<>-properties (_beg _end _old-len)
5759 ;; This function is called as an after-change function. It restores the
5760 ;; category/syntax-table properties on template/generic <..> pairs between
5761 ;; c-new-BEG and c-new-END. It may do hidden buffer changes.
5762 (c-save-buffer-state ((c-parse-and-markup-<>-arglists t)
5763 c-restricted-<>-arglists lit-limits)
5764 (goto-char c-new-BEG)
5765 (if (setq lit-limits (c-literal-limits))
5766 (goto-char (cdr lit-limits)))
5767 (while (and (< (point) c-new-END)
5768 (c-syntactic-re-search-forward "<" c-new-END 'bound))
5769 (backward-char)
5770 (save-excursion
5771 (c-backward-token-2)
5772 (setq c-restricted-<>-arglists
5773 (and (not (looking-at c-opt-<>-sexp-key))
5774 (progn (c-backward-syntactic-ws) ; to ( or ,
5775 (and (memq (char-before) '(?\( ?,)) ; what about <?
5776 (not (eq (c-get-char-property (point) 'c-type)
5777 'c-decl-arg-start)))))))
5778 (or (c-forward-<>-arglist nil)
5779 (forward-char)))))
5780 \f
5781 ;; Handling of small scale constructs like types and names.
5782
5783 ;; Dynamically bound variable that instructs `c-forward-type' to also
5784 ;; treat possible types (i.e. those that it normally returns 'maybe or
5785 ;; 'found for) as actual types (and always return 'found for them).
5786 ;; This means that it records them in `c-record-type-identifiers' if
5787 ;; that is set, and that it adds them to `c-found-types'.
5788 (defvar c-promote-possible-types nil)
5789
5790 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
5791 ;; mark up successfully parsed arglists with paren syntax properties on
5792 ;; the surrounding angle brackets and with `c-<>-arg-sep' in the
5793 ;; `c-type' property of each argument separating comma.
5794 ;;
5795 ;; Setting this variable also makes `c-forward-<>-arglist' recurse into
5796 ;; all arglists for side effects (i.e. recording types), otherwise it
5797 ;; exploits any existing paren syntax properties to quickly jump to the
5798 ;; end of already parsed arglists.
5799 ;;
5800 ;; Marking up the arglists is not the default since doing that correctly
5801 ;; depends on a proper value for `c-restricted-<>-arglists'.
5802 (defvar c-parse-and-markup-<>-arglists nil)
5803
5804 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
5805 ;; not accept arglists that contain binary operators.
5806 ;;
5807 ;; This is primarily used to handle C++ template arglists. C++
5808 ;; disambiguates them by checking whether the preceding name is a
5809 ;; template or not. We can't do that, so we assume it is a template
5810 ;; if it can be parsed as one. That usually works well since
5811 ;; comparison expressions on the forms "a < b > c" or "a < b, c > d"
5812 ;; in almost all cases would be pointless.
5813 ;;
5814 ;; However, in function arglists, e.g. in "foo (a < b, c > d)", we
5815 ;; should let the comma separate the function arguments instead. And
5816 ;; in a context where the value of the expression is taken, e.g. in
5817 ;; "if (a < b || c > d)", it's probably not a template.
5818 (defvar c-restricted-<>-arglists nil)
5819
5820 ;; Dynamically bound variables that instructs
5821 ;; `c-forward-keyword-clause', `c-forward-<>-arglist',
5822 ;; `c-forward-name', `c-forward-type', `c-forward-decl-or-cast-1', and
5823 ;; `c-forward-label' to record the ranges of all the type and
5824 ;; reference identifiers they encounter. They will build lists on
5825 ;; these variables where each element is a cons of the buffer
5826 ;; positions surrounding each identifier. This recording is only
5827 ;; activated when `c-record-type-identifiers' is non-nil.
5828 ;;
5829 ;; All known types that can't be identifiers are recorded, and also
5830 ;; other possible types if `c-promote-possible-types' is set.
5831 ;; Recording is however disabled inside angle bracket arglists that
5832 ;; are encountered inside names and other angle bracket arglists.
5833 ;; Such occurrences are taken care of by `c-font-lock-<>-arglists'
5834 ;; instead.
5835 ;;
5836 ;; Only the names in C++ template style references (e.g. "tmpl" in
5837 ;; "tmpl<a,b>::foo") are recorded as references, other references
5838 ;; aren't handled here.
5839 ;;
5840 ;; `c-forward-label' records the label identifier(s) on
5841 ;; `c-record-ref-identifiers'.
5842 (defvar c-record-type-identifiers nil)
5843 (defvar c-record-ref-identifiers nil)
5844
5845 ;; This variable will receive a cons cell of the range of the last
5846 ;; single identifier symbol stepped over by `c-forward-name' if it's
5847 ;; successful. This is the range that should be put on one of the
5848 ;; record lists above by the caller. It's assigned nil if there's no
5849 ;; such symbol in the name.
5850 (defvar c-last-identifier-range nil)
5851
5852 (defmacro c-record-type-id (range)
5853 (if (eq (car-safe range) 'cons)
5854 ;; Always true.
5855 `(setq c-record-type-identifiers
5856 (cons ,range c-record-type-identifiers))
5857 `(let ((range ,range))
5858 (if range
5859 (setq c-record-type-identifiers
5860 (cons range c-record-type-identifiers))))))
5861
5862 (defmacro c-record-ref-id (range)
5863 (if (eq (car-safe range) 'cons)
5864 ;; Always true.
5865 `(setq c-record-ref-identifiers
5866 (cons ,range c-record-ref-identifiers))
5867 `(let ((range ,range))
5868 (if range
5869 (setq c-record-ref-identifiers
5870 (cons range c-record-ref-identifiers))))))
5871
5872 ;; Dynamically bound variable that instructs `c-forward-type' to
5873 ;; record the ranges of types that only are found. Behaves otherwise
5874 ;; like `c-record-type-identifiers'.
5875 (defvar c-record-found-types nil)
5876
5877 (defmacro c-forward-keyword-prefixed-id (type)
5878 ;; Used internally in `c-forward-keyword-clause' to move forward
5879 ;; over a type (if TYPE is 'type) or a name (otherwise) which
5880 ;; possibly is prefixed by keywords and their associated clauses.
5881 ;; Try with a type/name first to not trip up on those that begin
5882 ;; with a keyword. Return t if a known or found type is moved
5883 ;; over. The point is clobbered if nil is returned. If range
5884 ;; recording is enabled, the identifier is recorded on as a type
5885 ;; if TYPE is 'type or as a reference if TYPE is 'ref.
5886 ;;
5887 ;; This macro might do hidden buffer changes.
5888 `(let (res)
5889 (setq c-last-identifier-range nil)
5890 (while (if (setq res ,(if (eq type 'type)
5891 `(c-forward-type)
5892 `(c-forward-name)))
5893 nil
5894 (cond ((looking-at c-keywords-regexp)
5895 (c-forward-keyword-clause 1))
5896 ((and c-opt-cpp-prefix
5897 (looking-at c-noise-macro-with-parens-name-re))
5898 (c-forward-noise-clause)))))
5899 (when (memq res '(t known found prefix maybe))
5900 (when c-record-type-identifiers
5901 ,(if (eq type 'type)
5902 `(c-record-type-id c-last-identifier-range)
5903 `(c-record-ref-id c-last-identifier-range)))
5904 t)))
5905
5906 (defmacro c-forward-id-comma-list (type update-safe-pos)
5907 ;; Used internally in `c-forward-keyword-clause' to move forward
5908 ;; over a comma separated list of types or names using
5909 ;; `c-forward-keyword-prefixed-id'.
5910 ;;
5911 ;; This macro might do hidden buffer changes.
5912 `(while (and (progn
5913 ,(when update-safe-pos
5914 `(setq safe-pos (point)))
5915 (eq (char-after) ?,))
5916 (progn
5917 (forward-char)
5918 (c-forward-syntactic-ws)
5919 (c-forward-keyword-prefixed-id ,type)))))
5920
5921 (defun c-forward-noise-clause ()
5922 ;; Point is at a c-noise-macro-with-parens-names macro identifier. Go
5923 ;; forward over this name, any parenthesis expression which follows it, and
5924 ;; any syntactic WS, ending up at the next token. If there is an unbalanced
5925 ;; paren expression, leave point at it. Always Return t.
5926 (c-forward-token-2)
5927 (if (and (eq (char-after) ?\()
5928 (c-go-list-forward))
5929 (c-forward-syntactic-ws))
5930 t)
5931
5932 (defun c-forward-keyword-clause (match)
5933 ;; Submatch MATCH in the current match data is assumed to surround a
5934 ;; token. If it's a keyword, move over it and any immediately
5935 ;; following clauses associated with it, stopping at the start of
5936 ;; the next token. t is returned in that case, otherwise the point
5937 ;; stays and nil is returned. The kind of clauses that are
5938 ;; recognized are those specified by `c-type-list-kwds',
5939 ;; `c-ref-list-kwds', `c-colon-type-list-kwds',
5940 ;; `c-paren-nontype-kwds', `c-paren-type-kwds', `c-<>-type-kwds',
5941 ;; and `c-<>-arglist-kwds'.
5942 ;;
5943 ;; This function records identifier ranges on
5944 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5945 ;; `c-record-type-identifiers' is non-nil.
5946 ;;
5947 ;; Note that for `c-colon-type-list-kwds', which doesn't necessary
5948 ;; apply directly after the keyword, the type list is moved over
5949 ;; only when there is no unaccounted token before it (i.e. a token
5950 ;; that isn't moved over due to some other keyword list). The
5951 ;; identifier ranges in the list are still recorded if that should
5952 ;; be done, though.
5953 ;;
5954 ;; This function might do hidden buffer changes.
5955
5956 (let ((kwd-sym (c-keyword-sym (match-string match))) safe-pos pos
5957 ;; The call to `c-forward-<>-arglist' below is made after
5958 ;; `c-<>-sexp-kwds' keywords, so we're certain they actually
5959 ;; are angle bracket arglists and `c-restricted-<>-arglists'
5960 ;; should therefore be nil.
5961 (c-parse-and-markup-<>-arglists t)
5962 c-restricted-<>-arglists)
5963
5964 (when kwd-sym
5965 (goto-char (match-end match))
5966 (c-forward-syntactic-ws)
5967 (setq safe-pos (point))
5968
5969 (cond
5970 ((and (c-keyword-member kwd-sym 'c-type-list-kwds)
5971 (c-forward-keyword-prefixed-id type))
5972 ;; There's a type directly after a keyword in `c-type-list-kwds'.
5973 (c-forward-id-comma-list type t))
5974
5975 ((and (c-keyword-member kwd-sym 'c-ref-list-kwds)
5976 (c-forward-keyword-prefixed-id ref))
5977 ;; There's a name directly after a keyword in `c-ref-list-kwds'.
5978 (c-forward-id-comma-list ref t))
5979
5980 ((and (c-keyword-member kwd-sym 'c-paren-any-kwds)
5981 (eq (char-after) ?\())
5982 ;; There's an open paren after a keyword in `c-paren-any-kwds'.
5983
5984 (forward-char)
5985 (when (and (setq pos (c-up-list-forward))
5986 (eq (char-before pos) ?\)))
5987 (when (and c-record-type-identifiers
5988 (c-keyword-member kwd-sym 'c-paren-type-kwds))
5989 ;; Use `c-forward-type' on every identifier we can find
5990 ;; inside the paren, to record the types.
5991 (while (c-syntactic-re-search-forward c-symbol-start pos t)
5992 (goto-char (match-beginning 0))
5993 (unless (c-forward-type)
5994 (looking-at c-symbol-key) ; Always matches.
5995 (goto-char (match-end 0)))))
5996
5997 (goto-char pos)
5998 (c-forward-syntactic-ws)
5999 (setq safe-pos (point))))
6000
6001 ((and (c-keyword-member kwd-sym 'c-<>-sexp-kwds)
6002 (eq (char-after) ?<)
6003 (c-forward-<>-arglist (c-keyword-member kwd-sym 'c-<>-type-kwds)))
6004 (c-forward-syntactic-ws)
6005 (setq safe-pos (point)))
6006
6007 ((and (c-keyword-member kwd-sym 'c-nonsymbol-sexp-kwds)
6008 (not (looking-at c-symbol-start))
6009 (c-safe (c-forward-sexp) t))
6010 (c-forward-syntactic-ws)
6011 (setq safe-pos (point))))
6012
6013 (when (c-keyword-member kwd-sym 'c-colon-type-list-kwds)
6014 (if (eq (char-after) ?:)
6015 ;; If we are at the colon already, we move over the type
6016 ;; list after it.
6017 (progn
6018 (forward-char)
6019 (c-forward-syntactic-ws)
6020 (when (c-forward-keyword-prefixed-id type)
6021 (c-forward-id-comma-list type t)))
6022 ;; Not at the colon, so stop here. But the identifier
6023 ;; ranges in the type list later on should still be
6024 ;; recorded.
6025 (and c-record-type-identifiers
6026 (progn
6027 ;; If a keyword matched both one of the types above and
6028 ;; this one, we match `c-colon-type-list-re' after the
6029 ;; clause matched above.
6030 (goto-char safe-pos)
6031 (looking-at c-colon-type-list-re))
6032 (progn
6033 (goto-char (match-end 0))
6034 (c-forward-syntactic-ws)
6035 (c-forward-keyword-prefixed-id type))
6036 ;; There's a type after the `c-colon-type-list-re' match
6037 ;; after a keyword in `c-colon-type-list-kwds'.
6038 (c-forward-id-comma-list type nil))))
6039
6040 (goto-char safe-pos)
6041 t)))
6042
6043 ;; cc-mode requires cc-fonts.
6044 (declare-function c-fontify-recorded-types-and-refs "cc-fonts" ())
6045
6046 (defun c-forward-<>-arglist (all-types)
6047 ;; The point is assumed to be at a "<". Try to treat it as the open
6048 ;; paren of an angle bracket arglist and move forward to the
6049 ;; corresponding ">". If successful, the point is left after the
6050 ;; ">" and t is returned, otherwise the point isn't moved and nil is
6051 ;; returned. If ALL-TYPES is t then all encountered arguments in
6052 ;; the arglist that might be types are treated as found types.
6053 ;;
6054 ;; The variable `c-parse-and-markup-<>-arglists' controls how this
6055 ;; function handles text properties on the angle brackets and argument
6056 ;; separating commas.
6057 ;;
6058 ;; `c-restricted-<>-arglists' controls how lenient the template
6059 ;; arglist recognition should be.
6060 ;;
6061 ;; This function records identifier ranges on
6062 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6063 ;; `c-record-type-identifiers' is non-nil.
6064 ;;
6065 ;; This function might do hidden buffer changes.
6066
6067 (let ((start (point))
6068 ;; If `c-record-type-identifiers' is set then activate
6069 ;; recording of any found types that constitute an argument in
6070 ;; the arglist.
6071 (c-record-found-types (if c-record-type-identifiers t)))
6072 (if (catch 'angle-bracket-arglist-escape
6073 (setq c-record-found-types
6074 (c-forward-<>-arglist-recur all-types)))
6075 (progn
6076 (when (consp c-record-found-types)
6077 (setq c-record-type-identifiers
6078 ;; `nconc' doesn't mind that the tail of
6079 ;; `c-record-found-types' is t.
6080 (nconc c-record-found-types c-record-type-identifiers)))
6081 t)
6082
6083 (goto-char start)
6084 nil)))
6085
6086 (defun c-forward-<>-arglist-recur (all-types)
6087 ;; Recursive part of `c-forward-<>-arglist'.
6088 ;;
6089 ;; This function might do hidden buffer changes.
6090 (let ((start (point)) res pos
6091 ;; Cover this so that any recorded found type ranges are
6092 ;; automatically lost if it turns out to not be an angle
6093 ;; bracket arglist. It's propagated through the return value
6094 ;; on successful completion.
6095 (c-record-found-types c-record-found-types)
6096 ;; List that collects the positions after the argument
6097 ;; separating ',' in the arglist.
6098 arg-start-pos)
6099 ;; If the '<' has paren open syntax then we've marked it as an angle
6100 ;; bracket arglist before, so skip to the end.
6101 (if (and (not c-parse-and-markup-<>-arglists)
6102 (c-get-char-property (point) 'syntax-table))
6103
6104 (progn
6105 (forward-char)
6106 (if (and (c-go-up-list-forward)
6107 (eq (char-before) ?>))
6108 t
6109 ;; Got unmatched paren angle brackets. We don't clear the paren
6110 ;; syntax properties and retry, on the basis that it's very
6111 ;; unlikely that paren angle brackets become operators by code
6112 ;; manipulation. It's far more likely that it doesn't match due
6113 ;; to narrowing or some temporary change.
6114 (goto-char start)
6115 nil))
6116
6117 (forward-char) ; Forward over the opening '<'.
6118
6119 (unless (looking-at c-<-op-cont-regexp)
6120 ;; go forward one non-alphanumeric character (group) per iteration of
6121 ;; this loop.
6122 (while (and
6123 (progn
6124 (c-forward-syntactic-ws)
6125 (when (or (and c-record-type-identifiers all-types)
6126 (not (equal c-inside-<>-type-key "\\(\\<\\>\\)")))
6127 (c-forward-syntactic-ws)
6128 (cond
6129 ((eq (char-after) ??)
6130 (forward-char))
6131 ((and (looking-at c-identifier-start)
6132 (not (looking-at c-keywords-regexp)))
6133 (if (or (and all-types c-record-type-identifiers)
6134 (c-major-mode-is 'java-mode))
6135 ;; All encountered identifiers are types, so set the
6136 ;; promote flag and parse the type.
6137 (let ((c-promote-possible-types t)
6138 (c-record-found-types t))
6139 (c-forward-type))
6140 (c-forward-token-2))))
6141
6142 (c-forward-syntactic-ws)
6143
6144 (when (looking-at c-inside-<>-type-key)
6145 (goto-char (match-end 1))
6146 (c-forward-syntactic-ws)
6147 (let ((c-promote-possible-types t)
6148 (c-record-found-types t))
6149 (c-forward-type))
6150 (c-forward-syntactic-ws)))
6151
6152 (setq pos (point)) ; e.g. first token inside the '<'
6153
6154 ;; Note: These regexps exploit the match order in \| so
6155 ;; that "<>" is matched by "<" rather than "[^>:-]>".
6156 (c-syntactic-re-search-forward
6157 ;; Stop on ',', '|', '&', '+' and '-' to catch
6158 ;; common binary operators that could be between
6159 ;; two comparison expressions "a<b" and "c>d".
6160 ;; 2016-02-11: C++11 templates can now contain arithmetic
6161 ;; expressions, so template detection in C++ is now less
6162 ;; robust than it was.
6163 c-<>-notable-chars-re
6164 nil t t))
6165
6166 (cond
6167 ((eq (char-before) ?>)
6168 ;; Either an operator starting with '>' or the end of
6169 ;; the angle bracket arglist.
6170
6171 (if (save-excursion
6172 (c-backward-token-2)
6173 (looking-at c-multichar->-op-not->>-regexp))
6174 (progn
6175 (goto-char (match-end 0))
6176 t) ; Continue the loop.
6177
6178 ;; The angle bracket arglist is finished.
6179 (when c-parse-and-markup-<>-arglists
6180 (while arg-start-pos
6181 (c-put-c-type-property (1- (car arg-start-pos))
6182 'c-<>-arg-sep)
6183 (setq arg-start-pos (cdr arg-start-pos)))
6184 (c-mark-<-as-paren start)
6185 (c-mark->-as-paren (1- (point))))
6186 (setq res t)
6187 nil)) ; Exit the loop.
6188
6189 ((eq (char-before) ?<)
6190 ;; Either an operator starting with '<' or a nested arglist.
6191 (setq pos (point))
6192 (let (id-start id-end subres keyword-match)
6193 (cond
6194 ;; The '<' begins a multi-char operator.
6195 ((looking-at c-<-op-cont-regexp)
6196 (goto-char (match-end 0)))
6197 ;; We're at a nested <.....>
6198 ((progn
6199 (backward-char) ; to the '<'
6200 (and
6201 (save-excursion
6202 ;; There's always an identifier before an angle
6203 ;; bracket arglist, or a keyword in `c-<>-type-kwds'
6204 ;; or `c-<>-arglist-kwds'.
6205 (c-backward-syntactic-ws)
6206 (setq id-end (point))
6207 (c-simple-skip-symbol-backward)
6208 (when (or (setq keyword-match
6209 (looking-at c-opt-<>-sexp-key))
6210 (not (looking-at c-keywords-regexp)))
6211 (setq id-start (point))))
6212 (setq subres
6213 (let ((c-promote-possible-types t)
6214 (c-record-found-types t))
6215 (c-forward-<>-arglist-recur
6216 (and keyword-match
6217 (c-keyword-member
6218 (c-keyword-sym (match-string 1))
6219 'c-<>-type-kwds))))))
6220 (or subres (goto-char pos))
6221 subres)
6222 ;; It was an angle bracket arglist.
6223 (setq c-record-found-types subres)
6224
6225 ;; Record the identifier before the template as a type
6226 ;; or reference depending on whether the arglist is last
6227 ;; in a qualified identifier.
6228 (when (and c-record-type-identifiers
6229 (not keyword-match))
6230 (if (and c-opt-identifier-concat-key
6231 (progn
6232 (c-forward-syntactic-ws)
6233 (looking-at c-opt-identifier-concat-key)))
6234 (c-record-ref-id (cons id-start id-end))
6235 (c-record-type-id (cons id-start id-end)))))
6236
6237 ;; At a "less than" operator.
6238 (t
6239 ;; (forward-char) ; NO! We've already gone over the <.
6240 )))
6241 t) ; carry on looping.
6242
6243 ((and
6244 (eq (char-before) ?\()
6245 (c-go-up-list-forward)
6246 (eq (char-before) ?\))))
6247
6248 ((and (not c-restricted-<>-arglists)
6249 (or (and (eq (char-before) ?&)
6250 (not (eq (char-after) ?&)))
6251 (eq (char-before) ?,)))
6252 ;; Just another argument. Record the position. The
6253 ;; type check stuff that made us stop at it is at
6254 ;; the top of the loop.
6255 (setq arg-start-pos (cons (point) arg-start-pos)))
6256
6257 (t
6258 ;; Got a character that can't be in an angle bracket
6259 ;; arglist argument. Abort using `throw', since
6260 ;; it's useless to try to find a surrounding arglist
6261 ;; if we're nested.
6262 (throw 'angle-bracket-arglist-escape nil))))))
6263 (if res
6264 (or c-record-found-types t)))))
6265
6266 (defun c-backward-<>-arglist (all-types &optional limit)
6267 ;; The point is assumed to be directly after a ">". Try to treat it
6268 ;; as the close paren of an angle bracket arglist and move back to
6269 ;; the corresponding "<". If successful, the point is left at
6270 ;; the "<" and t is returned, otherwise the point isn't moved and
6271 ;; nil is returned. ALL-TYPES is passed on to
6272 ;; `c-forward-<>-arglist'.
6273 ;;
6274 ;; If the optional LIMIT is given, it bounds the backward search.
6275 ;; It's then assumed to be at a syntactically relevant position.
6276 ;;
6277 ;; This is a wrapper around `c-forward-<>-arglist'. See that
6278 ;; function for more details.
6279
6280 (let ((start (point)))
6281 (backward-char)
6282 (if (and (not c-parse-and-markup-<>-arglists)
6283 (c-get-char-property (point) 'syntax-table))
6284
6285 (if (and (c-go-up-list-backward)
6286 (eq (char-after) ?<))
6287 t
6288 ;; See corresponding note in `c-forward-<>-arglist'.
6289 (goto-char start)
6290 nil)
6291
6292 (while (progn
6293 (c-syntactic-skip-backward "^<;{}" limit t)
6294
6295 (and
6296 (if (eq (char-before) ?<)
6297 t
6298 ;; Stopped at bob or a char that isn't allowed in an
6299 ;; arglist, so we've failed.
6300 (goto-char start)
6301 nil)
6302
6303 (if (> (point)
6304 (progn (c-beginning-of-current-token)
6305 (point)))
6306 ;; If we moved then the "<" was part of some
6307 ;; multicharacter token.
6308 t
6309
6310 (backward-char)
6311 (let ((beg-pos (point)))
6312 (if (c-forward-<>-arglist all-types)
6313 (cond ((= (point) start)
6314 ;; Matched the arglist. Break the while.
6315 (goto-char beg-pos)
6316 nil)
6317 ((> (point) start)
6318 ;; We started from a non-paren ">" inside an
6319 ;; arglist.
6320 (goto-char start)
6321 nil)
6322 (t
6323 ;; Matched a shorter arglist. Can be a nested
6324 ;; one so continue looking.
6325 (goto-char beg-pos)
6326 t))
6327 t))))))
6328
6329 (/= (point) start))))
6330
6331 (defun c-forward-name ()
6332 ;; Move forward over a complete name if at the beginning of one,
6333 ;; stopping at the next following token. A keyword, as such,
6334 ;; doesn't count as a name. If the point is not at something that
6335 ;; is recognized as a name then it stays put.
6336 ;;
6337 ;; A name could be something as simple as "foo" in C or something as
6338 ;; complex as "X<Y<class A<int>::B, BIT_MAX >> b>, ::operator<> ::
6339 ;; Z<(a>b)> :: operator const X<&foo>::T Q::G<unsigned short
6340 ;; int>::*volatile const" in C++ (this function is actually little
6341 ;; more than a `looking-at' call in all modes except those that,
6342 ;; like C++, have `c-recognize-<>-arglists' set).
6343 ;;
6344 ;; Return
6345 ;; o - nil if no name is found;
6346 ;; o - 'template if it's an identifier ending with an angle bracket
6347 ;; arglist;
6348 ;; o - 'operator of it's an operator identifier;
6349 ;; o - t if it's some other kind of name.
6350 ;;
6351 ;; This function records identifier ranges on
6352 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6353 ;; `c-record-type-identifiers' is non-nil.
6354 ;;
6355 ;; This function might do hidden buffer changes.
6356
6357 (let ((pos (point)) (start (point)) res id-start id-end
6358 ;; Turn off `c-promote-possible-types' here since we might
6359 ;; call `c-forward-<>-arglist' and we don't want it to promote
6360 ;; every suspect thing in the arglist to a type. We're
6361 ;; typically called from `c-forward-type' in this case, and
6362 ;; the caller only wants the top level type that it finds to
6363 ;; be promoted.
6364 c-promote-possible-types)
6365 (while
6366 (and
6367 (looking-at c-identifier-key)
6368
6369 (progn
6370 ;; Check for keyword. We go to the last symbol in
6371 ;; `c-identifier-key' first.
6372 (goto-char (setq id-end (match-end 0)))
6373 (c-simple-skip-symbol-backward)
6374 (setq id-start (point))
6375
6376 (if (looking-at c-keywords-regexp)
6377 (when (and (c-major-mode-is 'c++-mode)
6378 (looking-at
6379 (cc-eval-when-compile
6380 (concat "\\(operator\\|\\(template\\)\\)"
6381 "\\(" (c-lang-const c-nonsymbol-key c++)
6382 "\\|$\\)")))
6383 (if (match-beginning 2)
6384 ;; "template" is only valid inside an
6385 ;; identifier if preceded by "::".
6386 (save-excursion
6387 (c-backward-syntactic-ws)
6388 (and (c-safe (backward-char 2) t)
6389 (looking-at "::")))
6390 t))
6391
6392 ;; Handle a C++ operator or template identifier.
6393 (goto-char id-end)
6394 (c-forward-syntactic-ws)
6395 (cond ((eq (char-before id-end) ?e)
6396 ;; Got "... ::template".
6397 (let ((subres (c-forward-name)))
6398 (when subres
6399 (setq pos (point)
6400 res subres))))
6401
6402 ((looking-at c-identifier-start)
6403 ;; Got a cast operator.
6404 (when (c-forward-type)
6405 (setq pos (point)
6406 res 'operator)
6407 ;; Now we should match a sequence of either
6408 ;; '*', '&' or a name followed by ":: *",
6409 ;; where each can be followed by a sequence
6410 ;; of `c-opt-type-modifier-key'.
6411 (while (cond ((looking-at "[*&]")
6412 (goto-char (match-end 0))
6413 t)
6414 ((looking-at c-identifier-start)
6415 (and (c-forward-name)
6416 (looking-at "::")
6417 (progn
6418 (goto-char (match-end 0))
6419 (c-forward-syntactic-ws)
6420 (eq (char-after) ?*))
6421 (progn
6422 (forward-char)
6423 t))))
6424 (while (progn
6425 (c-forward-syntactic-ws)
6426 (setq pos (point))
6427 (looking-at c-opt-type-modifier-key))
6428 (goto-char (match-end 1))))))
6429
6430 ((looking-at c-overloadable-operators-regexp)
6431 ;; Got some other operator.
6432 (setq c-last-identifier-range
6433 (cons (point) (match-end 0)))
6434 (goto-char (match-end 0))
6435 (c-forward-syntactic-ws)
6436 (setq pos (point)
6437 res 'operator)))
6438
6439 nil)
6440
6441 ;; `id-start' is equal to `id-end' if we've jumped over
6442 ;; an identifier that doesn't end with a symbol token.
6443 ;; That can occur e.g. for Java import directives on the
6444 ;; form "foo.bar.*".
6445 (when (and id-start (/= id-start id-end))
6446 (setq c-last-identifier-range
6447 (cons id-start id-end)))
6448 (goto-char id-end)
6449 (c-forward-syntactic-ws)
6450 (setq pos (point)
6451 res t)))
6452
6453 (progn
6454 (goto-char pos)
6455 (when (or c-opt-identifier-concat-key
6456 c-recognize-<>-arglists)
6457
6458 (cond
6459 ((and c-opt-identifier-concat-key
6460 (looking-at c-opt-identifier-concat-key))
6461 ;; Got a concatenated identifier. This handles the
6462 ;; cases with tricky syntactic whitespace that aren't
6463 ;; covered in `c-identifier-key'.
6464 (goto-char (match-end 0))
6465 (c-forward-syntactic-ws)
6466 t)
6467
6468 ((and c-recognize-<>-arglists
6469 (eq (char-after) ?<))
6470 ;; Maybe an angle bracket arglist.
6471 (when (let (c-last-identifier-range)
6472 (c-forward-<>-arglist nil))
6473
6474 (c-forward-syntactic-ws)
6475 (unless (eq (char-after) ?\()
6476 (setq c-last-identifier-range nil)
6477 (c-add-type start (1+ pos)))
6478 (setq pos (point))
6479
6480 (if (and c-opt-identifier-concat-key
6481 (looking-at c-opt-identifier-concat-key))
6482
6483 ;; Continue if there's an identifier concatenation
6484 ;; operator after the template argument.
6485 (progn
6486 (when (and c-record-type-identifiers id-start)
6487 (c-record-ref-id (cons id-start id-end)))
6488 (forward-char 2)
6489 (c-forward-syntactic-ws)
6490 t)
6491
6492 (when (and c-record-type-identifiers id-start
6493 (not (eq (char-after) ?\()))
6494 (c-record-type-id (cons id-start id-end)))
6495 (setq res 'template)
6496 nil)))
6497 )))))
6498
6499 (goto-char pos)
6500 res))
6501
6502 (defun c-forward-type (&optional brace-block-too)
6503 ;; Move forward over a type spec if at the beginning of one,
6504 ;; stopping at the next following token. The keyword "typedef"
6505 ;; isn't part of a type spec here.
6506 ;;
6507 ;; BRACE-BLOCK-TOO, when non-nil, means move over the brace block in
6508 ;; constructs like "struct foo {...} bar ;" or "struct {...} bar;".
6509 ;; The current (2009-03-10) intention is to convert all uses of
6510 ;; `c-forward-type' to call with this parameter set, then to
6511 ;; eliminate it.
6512 ;;
6513 ;; Return
6514 ;; o - t if it's a known type that can't be a name or other
6515 ;; expression;
6516 ;; o - 'known if it's an otherwise known type (according to
6517 ;; `*-font-lock-extra-types');
6518 ;; o - 'prefix if it's a known prefix of a type;
6519 ;; o - 'found if it's a type that matches one in `c-found-types';
6520 ;; o - 'maybe if it's an identifier that might be a type;
6521 ;; o - 'decltype if it's a decltype(variable) declaration; - or
6522 ;; o - nil if it can't be a type (the point isn't moved then).
6523 ;;
6524 ;; The point is assumed to be at the beginning of a token.
6525 ;;
6526 ;; Note that this function doesn't skip past the brace definition
6527 ;; that might be considered part of the type, e.g.
6528 ;; "enum {a, b, c} foo".
6529 ;;
6530 ;; This function records identifier ranges on
6531 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6532 ;; `c-record-type-identifiers' is non-nil.
6533 ;;
6534 ;; This function might do hidden buffer changes.
6535 (when (and c-recognize-<>-arglists
6536 (looking-at "<"))
6537 (c-forward-<>-arglist t)
6538 (c-forward-syntactic-ws))
6539
6540 (let ((start (point)) pos res name-res id-start id-end id-range)
6541
6542 ;; Skip leading type modifiers. If any are found we know it's a
6543 ;; prefix of a type.
6544 (when c-opt-type-modifier-key ; e.g. "const" "volatile", but NOT "typedef"
6545 (while (looking-at c-opt-type-modifier-key)
6546 (goto-char (match-end 1))
6547 (c-forward-syntactic-ws)
6548 (setq res 'prefix)))
6549
6550 (cond
6551 ((looking-at c-typeof-key) ; e.g. C++'s "decltype".
6552 (goto-char (match-end 1))
6553 (c-forward-syntactic-ws)
6554 (setq res (and (eq (char-after) ?\()
6555 (c-safe (c-forward-sexp))
6556 'decltype))
6557 (if res
6558 (c-forward-syntactic-ws)
6559 (goto-char start)))
6560
6561 ((looking-at c-type-prefix-key) ; e.g. "struct", "class", but NOT
6562 ; "typedef".
6563 (goto-char (match-end 1))
6564 (c-forward-syntactic-ws)
6565
6566 (while (cond
6567 ((looking-at c-decl-hangon-key)
6568 (c-forward-keyword-clause 1))
6569 ((and c-opt-cpp-prefix
6570 (looking-at c-noise-macro-with-parens-name-re))
6571 (c-forward-noise-clause))))
6572
6573 (setq pos (point))
6574
6575 (setq name-res (c-forward-name))
6576 (setq res (not (null name-res)))
6577 (when (eq name-res t)
6578 ;; In many languages the name can be used without the
6579 ;; prefix, so we add it to `c-found-types'.
6580 (c-add-type pos (point))
6581 (when (and c-record-type-identifiers
6582 c-last-identifier-range)
6583 (c-record-type-id c-last-identifier-range)))
6584 (when (and brace-block-too
6585 (memq res '(t nil))
6586 (eq (char-after) ?\{)
6587 (save-excursion
6588 (c-safe
6589 (progn (c-forward-sexp)
6590 (c-forward-syntactic-ws)
6591 (setq pos (point))))))
6592 (goto-char pos)
6593 (setq res t))
6594 (unless res (goto-char start))) ; invalid syntax
6595
6596 ((progn
6597 (setq pos nil)
6598 (if (looking-at c-identifier-start)
6599 (save-excursion
6600 (setq id-start (point)
6601 name-res (c-forward-name))
6602 (when name-res
6603 (setq id-end (point)
6604 id-range c-last-identifier-range))))
6605 (and (cond ((looking-at c-primitive-type-key)
6606 (setq res t))
6607 ((c-with-syntax-table c-identifier-syntax-table
6608 (looking-at c-known-type-key))
6609 (setq res 'known)))
6610 (or (not id-end)
6611 (>= (save-excursion
6612 (save-match-data
6613 (goto-char (match-end 1))
6614 (c-forward-syntactic-ws)
6615 (setq pos (point))))
6616 id-end)
6617 (setq res nil))))
6618 ;; Looking at a primitive or known type identifier. We've
6619 ;; checked for a name first so that we don't go here if the
6620 ;; known type match only is a prefix of another name.
6621
6622 (setq id-end (match-end 1))
6623
6624 (when (and c-record-type-identifiers
6625 (or c-promote-possible-types (eq res t)))
6626 (c-record-type-id (cons (match-beginning 1) (match-end 1))))
6627
6628 (if (and c-opt-type-component-key
6629 (save-match-data
6630 (looking-at c-opt-type-component-key)))
6631 ;; There might be more keywords for the type.
6632 (let (safe-pos)
6633 (c-forward-keyword-clause 1)
6634 (while (progn
6635 (setq safe-pos (point))
6636 (looking-at c-opt-type-component-key))
6637 (when (and c-record-type-identifiers
6638 (looking-at c-primitive-type-key))
6639 (c-record-type-id (cons (match-beginning 1)
6640 (match-end 1))))
6641 (c-forward-keyword-clause 1))
6642 (if (looking-at c-primitive-type-key)
6643 (progn
6644 (when c-record-type-identifiers
6645 (c-record-type-id (cons (match-beginning 1)
6646 (match-end 1))))
6647 (c-forward-keyword-clause 1)
6648 (setq res t))
6649 (goto-char safe-pos)
6650 (setq res 'prefix)))
6651 (unless (save-match-data (c-forward-keyword-clause 1))
6652 (if pos
6653 (goto-char pos)
6654 (goto-char (match-end 1))
6655 (c-forward-syntactic-ws)))))
6656
6657 (name-res
6658 (cond ((eq name-res t)
6659 ;; A normal identifier.
6660 (goto-char id-end)
6661 (if (or res c-promote-possible-types)
6662 (progn
6663 (c-add-type id-start id-end)
6664 (when (and c-record-type-identifiers id-range)
6665 (c-record-type-id id-range))
6666 (unless res
6667 (setq res 'found)))
6668 (setq res (if (c-check-type id-start id-end)
6669 ;; It's an identifier that has been used as
6670 ;; a type somewhere else.
6671 'found
6672 ;; It's an identifier that might be a type.
6673 'maybe))))
6674 ((eq name-res 'template)
6675 ;; A template is sometimes a type.
6676 (goto-char id-end)
6677 (c-forward-syntactic-ws)
6678 (setq res
6679 (if (eq (char-after) ?\()
6680 (if (c-check-type id-start id-end)
6681 ;; It's an identifier that has been used as
6682 ;; a type somewhere else.
6683 'found
6684 ;; It's an identifier that might be a type.
6685 'maybe)
6686 t)))
6687 (t
6688 ;; Otherwise it's an operator identifier, which is not a type.
6689 (goto-char start)
6690 (setq res nil)))))
6691
6692 (when res
6693 ;; Skip trailing type modifiers. If any are found we know it's
6694 ;; a type.
6695 (when c-opt-type-modifier-key
6696 (while (looking-at c-opt-type-modifier-key) ; e.g. "const", "volatile"
6697 (goto-char (match-end 1))
6698 (c-forward-syntactic-ws)
6699 (setq res t)))
6700
6701 ;; Step over any type suffix operator. Do not let the existence
6702 ;; of these alter the classification of the found type, since
6703 ;; these operators typically are allowed in normal expressions
6704 ;; too.
6705 (when c-opt-type-suffix-key ; e.g. "..."
6706 (while (looking-at c-opt-type-suffix-key)
6707 (goto-char (match-end 1))
6708 (c-forward-syntactic-ws)))
6709
6710 (when c-opt-type-concat-key ; Only/mainly for pike.
6711 ;; Look for a trailing operator that concatenates the type
6712 ;; with a following one, and if so step past that one through
6713 ;; a recursive call. Note that we don't record concatenated
6714 ;; types in `c-found-types' - it's the component types that
6715 ;; are recorded when appropriate.
6716 (setq pos (point))
6717 (let* ((c-promote-possible-types (or (memq res '(t known))
6718 c-promote-possible-types))
6719 ;; If we can't promote then set `c-record-found-types' so that
6720 ;; we can merge in the types from the second part afterwards if
6721 ;; it turns out to be a known type there.
6722 (c-record-found-types (and c-record-type-identifiers
6723 (not c-promote-possible-types)))
6724 subres)
6725 (if (and (looking-at c-opt-type-concat-key)
6726
6727 (progn
6728 (goto-char (match-end 1))
6729 (c-forward-syntactic-ws)
6730 (setq subres (c-forward-type))))
6731
6732 (progn
6733 ;; If either operand certainly is a type then both are, but we
6734 ;; don't let the existence of the operator itself promote two
6735 ;; uncertain types to a certain one.
6736 (cond ((eq res t))
6737 ((eq subres t)
6738 (unless (eq name-res 'template)
6739 (c-add-type id-start id-end))
6740 (when (and c-record-type-identifiers id-range)
6741 (c-record-type-id id-range))
6742 (setq res t))
6743 ((eq res 'known))
6744 ((eq subres 'known)
6745 (setq res 'known))
6746 ((eq res 'found))
6747 ((eq subres 'found)
6748 (setq res 'found))
6749 (t
6750 (setq res 'maybe)))
6751
6752 (when (and (eq res t)
6753 (consp c-record-found-types))
6754 ;; Merge in the ranges of any types found by the second
6755 ;; `c-forward-type'.
6756 (setq c-record-type-identifiers
6757 ;; `nconc' doesn't mind that the tail of
6758 ;; `c-record-found-types' is t.
6759 (nconc c-record-found-types
6760 c-record-type-identifiers))))
6761
6762 (goto-char pos))))
6763
6764 (when (and c-record-found-types (memq res '(known found)) id-range)
6765 (setq c-record-found-types
6766 (cons id-range c-record-found-types))))
6767
6768 ;;(message "c-forward-type %s -> %s: %s" start (point) res)
6769
6770 res))
6771
6772 (defun c-forward-annotation ()
6773 ;; Used for Java code only at the moment. Assumes point is on the @, moves
6774 ;; forward an annotation and returns t. Leaves point unmoved and returns
6775 ;; nil if there is no annotation at point.
6776 (let ((pos (point)))
6777 (or
6778 (and (looking-at "@")
6779 (not (looking-at c-keywords-regexp))
6780 (progn (forward-char) t)
6781 (looking-at c-symbol-key)
6782 (progn (goto-char (match-end 0))
6783 (c-forward-syntactic-ws)
6784 t)
6785 (if (looking-at "(")
6786 (c-go-list-forward)
6787 t))
6788 (progn (goto-char pos) nil))))
6789
6790 (defmacro c-pull-open-brace (ps)
6791 ;; Pull the next open brace from PS (which has the form of paren-state),
6792 ;; skipping over any brace pairs. Returns NIL when PS is exhausted.
6793 `(progn
6794 (while (consp (car ,ps))
6795 (setq ,ps (cdr ,ps)))
6796 (prog1 (car ,ps)
6797 (setq ,ps (cdr ,ps)))))
6798
6799 (defun c-back-over-member-initializer-braces ()
6800 ;; Point is just after a closing brace/parenthesis. Try to parse this as a
6801 ;; C++ member initializer list, going back to just after the introducing ":"
6802 ;; and returning t. Otherwise return nil, leaving point unchanged.
6803 (let ((here (point)) res)
6804 (setq res
6805 (catch 'done
6806 (when (not (c-go-list-backward))
6807 (throw 'done nil))
6808 (c-backward-syntactic-ws)
6809 (when (not (c-simple-skip-symbol-backward))
6810 (throw 'done nil))
6811 (c-backward-syntactic-ws)
6812
6813 (while (eq (char-before) ?,)
6814 (backward-char)
6815 (c-backward-syntactic-ws)
6816 (when (not (memq (char-before) '(?\) ?})))
6817 (throw 'done nil))
6818 (when (not (c-go-list-backward))
6819 (throw 'done nil))
6820 (c-backward-syntactic-ws)
6821 (when (not (c-simple-skip-symbol-backward))
6822 (throw 'done nil))
6823 (c-backward-syntactic-ws))
6824
6825 (eq (char-before) ?:)))
6826 (or res (goto-char here))
6827 res))
6828
6829 (defmacro c-back-over-list-of-member-inits ()
6830 ;; Go back over a list of elements, each looking like:
6831 ;; <symbol> (<expression>) ,
6832 ;; or <symbol> {<expression>} ,
6833 ;; when we are putatively immediately after a comma. Stop when we don't see
6834 ;; a comma. If either of <symbol> or bracketed <expression> is missing,
6835 ;; throw nil to 'level. If the terminating } or ) is unmatched, throw nil
6836 ;; to 'done. This is not a general purpose macro!
6837 `(while (eq (char-before) ?,)
6838 (backward-char)
6839 (c-backward-syntactic-ws)
6840 (when (not (memq (char-before) '(?\) ?})))
6841 (throw 'level nil))
6842 (when (not (c-go-list-backward))
6843 (throw 'done nil))
6844 (c-backward-syntactic-ws)
6845 (when (not (c-simple-skip-symbol-backward))
6846 (throw 'level nil))
6847 (c-backward-syntactic-ws)))
6848
6849 (defun c-back-over-member-initializers ()
6850 ;; Test whether we are in a C++ member initializer list, and if so, go back
6851 ;; to the introducing ":", returning the position of the opening paren of
6852 ;; the function's arglist. Otherwise return nil, leaving point unchanged.
6853 (let ((here (point))
6854 (paren-state (c-parse-state))
6855 pos level-plausible at-top-level res)
6856 ;; Assume tentatively that we're at the top level. Try to go back to the
6857 ;; colon we seek.
6858 (setq res
6859 (catch 'done
6860 (setq level-plausible
6861 (catch 'level
6862 (c-backward-syntactic-ws)
6863 (when (memq (char-before) '(?\) ?}))
6864 (when (not (c-go-list-backward))
6865 (throw 'done nil))
6866 (c-backward-syntactic-ws))
6867 (when (c-simple-skip-symbol-backward)
6868 (c-backward-syntactic-ws))
6869 (c-back-over-list-of-member-inits)
6870 (and (eq (char-before) ?:)
6871 (save-excursion
6872 (c-backward-token-2)
6873 (not (looking-at c-:$-multichar-token-regexp)))
6874 (c-just-after-func-arglist-p))))
6875
6876 (while (and (not (and level-plausible
6877 (setq at-top-level (c-at-toplevel-p))))
6878 (setq pos (c-pull-open-brace paren-state))) ; might be a paren.
6879 (setq level-plausible
6880 (catch 'level
6881 (goto-char pos)
6882 (c-backward-syntactic-ws)
6883 (when (not (c-simple-skip-symbol-backward))
6884 (throw 'level nil))
6885 (c-backward-syntactic-ws)
6886 (c-back-over-list-of-member-inits)
6887 (and (eq (char-before) ?:)
6888 (save-excursion
6889 (c-backward-token-2)
6890 (not (looking-at c-:$-multichar-token-regexp)))
6891 (c-just-after-func-arglist-p)))))
6892
6893 (and at-top-level level-plausible)))
6894 (or res (goto-char here))
6895 res))
6896
6897 \f
6898 ;; Handling of large scale constructs like statements and declarations.
6899
6900 ;; Macro used inside `c-forward-decl-or-cast-1'. It ought to be a
6901 ;; defsubst or perhaps even a defun, but it contains lots of free
6902 ;; variables that refer to things inside `c-forward-decl-or-cast-1'.
6903 (defmacro c-fdoc-shift-type-backward (&optional short)
6904 ;; `c-forward-decl-or-cast-1' can consume an arbitrary length list
6905 ;; of types when parsing a declaration, which means that it
6906 ;; sometimes consumes the identifier in the declaration as a type.
6907 ;; This is used to "backtrack" and make the last type be treated as
6908 ;; an identifier instead.
6909 `(progn
6910 ,(unless short
6911 ;; These identifiers are bound only in the inner let.
6912 '(setq identifier-type at-type
6913 identifier-start type-start
6914 got-parens nil
6915 got-identifier t
6916 got-suffix t
6917 got-suffix-after-parens id-start
6918 paren-depth 0))
6919
6920 (if (setq at-type (if (eq backup-at-type 'prefix)
6921 t
6922 backup-at-type))
6923 (setq type-start backup-type-start
6924 id-start backup-id-start)
6925 (setq type-start start-pos
6926 id-start start-pos))
6927
6928 ;; When these flags already are set we've found specifiers that
6929 ;; unconditionally signal these attributes - backtracking doesn't
6930 ;; change that. So keep them set in that case.
6931 (or at-type-decl
6932 (setq at-type-decl backup-at-type-decl))
6933 (or maybe-typeless
6934 (setq maybe-typeless backup-maybe-typeless))
6935
6936 ,(unless short
6937 ;; This identifier is bound only in the inner let.
6938 '(setq start id-start))))
6939
6940 (defun c-forward-declarator (&optional limit accept-anon)
6941 ;; Assuming point is at the start of a declarator, move forward over it,
6942 ;; leaving point at the next token after it (e.g. a ) or a ; or a ,).
6943 ;;
6944 ;; Return a list (ID-START ID-END BRACKETS-AFTER-ID GOT-INIT), where ID-START and
6945 ;; ID-END are the bounds of the declarator's identifier, and
6946 ;; BRACKETS-AFTER-ID is non-nil if a [...] pair is present after the id.
6947 ;; GOT-INIT is non-nil when the declarator is followed by "=" or "(".
6948 ;;
6949 ;; If ACCEPT-ANON is non-nil, move forward over any "anonymous declarator",
6950 ;; i.e. something like the (*) in int (*), such as might be found in a
6951 ;; declaration. In such a case ID-START and ID-END in the return value are
6952 ;; both set to nil. A "null" "anonymous declarator" gives a non-nil result.
6953 ;;
6954 ;; If no declarator is found, leave point unmoved and return nil. LIMIT is
6955 ;; an optional limit for forward searching.
6956 ;;
6957 ;; Note that the global variable `c-last-identifier-range' is written to, so
6958 ;; the caller should bind it if necessary.
6959
6960 ;; Inside the following "condition form", we move forward over the
6961 ;; declarator's identifier up as far as any opening bracket (for array
6962 ;; size) or paren (for parameters of function-type) or brace (for
6963 ;; array/struct initialization) or "=" or terminating delimiter
6964 ;; (e.g. "," or ";" or "}").
6965 (let ((here (point))
6966 id-start id-end brackets-after-id paren-depth)
6967 (or limit (setq limit (point-max)))
6968 (if (and
6969 (< (point) limit)
6970
6971 ;; The following form moves forward over the declarator's
6972 ;; identifier (and what precedes it), returning t. If there
6973 ;; wasn't one, it returns nil.
6974 (let (got-identifier)
6975 (setq paren-depth 0)
6976 ;; Skip over type decl prefix operators, one for each iteration
6977 ;; of the while. These are, e.g. "*" in "int *foo" or "(" and
6978 ;; "*" in "int (*foo) (void)" (Note similar code in
6979 ;; `c-forward-decl-or-cast-1'.)
6980 (while
6981 (cond
6982 ((looking-at c-decl-hangon-key)
6983 (c-forward-keyword-clause 1))
6984 ((and c-opt-cpp-prefix
6985 (looking-at c-noise-macro-with-parens-name-re))
6986 (c-forward-noise-clause))
6987 ((and (looking-at c-type-decl-prefix-key)
6988 (if (and (c-major-mode-is 'c++-mode)
6989 (match-beginning 3))
6990 ;; If the third submatch matches in C++ then
6991 ;; we're looking at an identifier that's a
6992 ;; prefix only if it specifies a member pointer.
6993 (progn
6994 (setq id-start (point))
6995 (c-forward-name)
6996 (if (looking-at "\\(::\\)")
6997 ;; We only check for a trailing "::" and
6998 ;; let the "*" that should follow be
6999 ;; matched in the next round.
7000 t
7001 ;; It turned out to be the real identifier,
7002 ;; so flag that and stop.
7003 (setq got-identifier t)
7004 nil))
7005 t))
7006 (if (eq (char-after) ?\()
7007 (progn
7008 (setq paren-depth (1+ paren-depth))
7009 (forward-char))
7010 (goto-char (match-end 1)))
7011 (c-forward-syntactic-ws)
7012 t)))
7013
7014 ;; If we haven't passed the identifier already, do it now.
7015 (unless got-identifier
7016 (setq id-start (point)))
7017 (cond
7018 ((or got-identifier
7019 (c-forward-name))
7020 (save-excursion
7021 (c-backward-syntactic-ws)
7022 (setq id-end (point))))
7023 (accept-anon
7024 (setq id-start nil id-end nil)
7025 t)
7026 (t (/= (point) here))))
7027
7028 ;; Skip out of the parens surrounding the identifier. If closing
7029 ;; parens are missing, this form returns nil.
7030 (or (= paren-depth 0)
7031 (c-safe (goto-char (scan-lists (point) 1 paren-depth))))
7032
7033 (<= (point) limit)
7034
7035 ;; Skip over any trailing bit, such as "__attribute__".
7036 (progn
7037 (while (cond
7038 ((looking-at c-decl-hangon-key)
7039 (c-forward-keyword-clause 1))
7040 ((and c-opt-cpp-prefix
7041 (looking-at c-noise-macro-with-parens-name-re))
7042 (c-forward-noise-clause))))
7043 (<= (point) limit))
7044
7045 ;; Search syntactically to the end of the declarator (";",
7046 ;; ",", a closing paren, eob etc) or to the beginning of an
7047 ;; initializer or function prototype ("=" or "\\s\(").
7048 ;; Note that square brackets are now not also treated as
7049 ;; initializers, since this broke when there were also
7050 ;; initializing brace lists.
7051 (let (found)
7052 (while
7053 (and (setq found (c-syntactic-re-search-forward
7054 "[;,]\\|\\s)\\|\\'\\|\\(=\\|\\s(\\)" limit t t))
7055 (eq (char-before) ?\[)
7056 (c-go-up-list-forward))
7057 (setq brackets-after-id t))
7058 (backward-char)
7059 found))
7060 (list id-start id-end brackets-after-id (match-beginning 1))
7061
7062 (goto-char here)
7063 nil)))
7064
7065 (defun c-forward-decl-or-cast-1 (preceding-token-end context last-cast-end)
7066 ;; Move forward over a declaration or a cast if at the start of one.
7067 ;; The point is assumed to be at the start of some token. Nil is
7068 ;; returned if no declaration or cast is recognized, and the point
7069 ;; is clobbered in that case.
7070 ;;
7071 ;; If a declaration is parsed:
7072 ;;
7073 ;; The point is left at the first token after the first complete
7074 ;; declarator, if there is one. The return value is a list of 4 elements,
7075 ;; where the first is the position of the first token in the declarator.
7076 ;; (See below for the other three.)
7077 ;; Some examples:
7078 ;;
7079 ;; void foo (int a, char *b) stuff ...
7080 ;; car ^ ^ point
7081 ;; float (*a)[], b;
7082 ;; car ^ ^ point
7083 ;; unsigned int a = c_style_initializer, b;
7084 ;; car ^ ^ point
7085 ;; unsigned int a (cplusplus_style_initializer), b;
7086 ;; car ^ ^ point (might change)
7087 ;; class Foo : public Bar {}
7088 ;; car ^ ^ point
7089 ;; class PikeClass (int a, string b) stuff ...
7090 ;; car ^ ^ point
7091 ;; enum bool;
7092 ;; car ^ ^ point
7093 ;; enum bool flag;
7094 ;; car ^ ^ point
7095 ;; void cplusplus_function (int x) throw (Bad);
7096 ;; car ^ ^ point
7097 ;; Foo::Foo (int b) : Base (b) {}
7098 ;; car ^ ^ point
7099 ;;
7100 ;; auto foo = 5;
7101 ;; car ^ ^ point
7102 ;; auto cplusplus_11 (int a, char *b) -> decltype (bar):
7103 ;; car ^ ^ point
7104 ;;
7105 ;;
7106 ;;
7107 ;; The second element of the return value is non-nil when a
7108 ;; `c-typedef-decl-kwds' specifier is found in the declaration.
7109 ;; Specifically it is a dotted pair (A . B) where B is t when a
7110 ;; `c-typedef-kwds' ("typedef") is present, and A is t when some
7111 ;; other `c-typedef-decl-kwds' (e.g. class, struct, enum)
7112 ;; specifier is present. I.e., (some of) the declared
7113 ;; identifier(s) are types.
7114 ;;
7115 ;; The third element of the return value is non-nil when the declaration
7116 ;; parsed might be an expression. The fourth element is the position of
7117 ;; the start of the type identifier.
7118 ;;
7119 ;; If a cast is parsed:
7120 ;;
7121 ;; The point is left at the first token after the closing paren of
7122 ;; the cast. The return value is `cast'. Note that the start
7123 ;; position must be at the first token inside the cast parenthesis
7124 ;; to recognize it.
7125 ;;
7126 ;; PRECEDING-TOKEN-END is the first position after the preceding
7127 ;; token, i.e. on the other side of the syntactic ws from the point.
7128 ;; Use a value less than or equal to (point-min) if the point is at
7129 ;; the first token in (the visible part of) the buffer.
7130 ;;
7131 ;; CONTEXT is a symbol that describes the context at the point:
7132 ;; 'decl In a comma-separated declaration context (typically
7133 ;; inside a function declaration arglist).
7134 ;; '<> In an angle bracket arglist.
7135 ;; 'arglist Some other type of arglist.
7136 ;; nil Some other context or unknown context. Includes
7137 ;; within the parens of an if, for, ... construct.
7138 ;;
7139 ;; LAST-CAST-END is the first token after the closing paren of a
7140 ;; preceding cast, or nil if none is known. If
7141 ;; `c-forward-decl-or-cast-1' is used in succession, it should be
7142 ;; the position after the closest preceding call where a cast was
7143 ;; matched. In that case it's used to discover chains of casts like
7144 ;; "(a) (b) c".
7145 ;;
7146 ;; This function records identifier ranges on
7147 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
7148 ;; `c-record-type-identifiers' is non-nil.
7149 ;;
7150 ;; This function might do hidden buffer changes.
7151
7152 (let (;; `start-pos' is used below to point to the start of the
7153 ;; first type, i.e. after any leading specifiers. It might
7154 ;; also point at the beginning of the preceding syntactic
7155 ;; whitespace.
7156 (start-pos (point))
7157 ;; Set to the result of `c-forward-type'.
7158 at-type
7159 ;; The position of the first token in what we currently
7160 ;; believe is the type in the declaration or cast, after any
7161 ;; specifiers and their associated clauses.
7162 type-start
7163 ;; The position of the first token in what we currently
7164 ;; believe is the declarator for the first identifier. Set
7165 ;; when the type is found, and moved forward over any
7166 ;; `c-decl-hangon-kwds' and their associated clauses that
7167 ;; occurs after the type.
7168 id-start
7169 ;; These store `at-type', `type-start' and `id-start' of the
7170 ;; identifier before the one in those variables. The previous
7171 ;; identifier might turn out to be the real type in a
7172 ;; declaration if the last one has to be the declarator in it.
7173 ;; If `backup-at-type' is nil then the other variables have
7174 ;; undefined values.
7175 backup-at-type backup-type-start backup-id-start
7176 ;; This stores `kwd-sym' of the symbol before the current one.
7177 ;; This is needed to distinguish the C++11 version of "auto" from
7178 ;; the pre C++11 meaning.
7179 backup-kwd-sym
7180 ;; Set if we've found a specifier (apart from "typedef") that makes
7181 ;; the defined identifier(s) types.
7182 at-type-decl
7183 ;; Set if we've a "typedef" keyword.
7184 at-typedef
7185 ;; Set if we've found a specifier that can start a declaration
7186 ;; where there's no type.
7187 maybe-typeless
7188 ;; Save the value of kwd-sym between loops of the "Check for a
7189 ;; type" loop. Needed to distinguish a C++11 "auto" from a pre
7190 ;; C++11 one.
7191 prev-kwd-sym
7192 ;; If a specifier is found that also can be a type prefix,
7193 ;; these flags are set instead of those above. If we need to
7194 ;; back up an identifier, they are copied to the real flag
7195 ;; variables. Thus they only take effect if we fail to
7196 ;; interpret it as a type.
7197 backup-at-type-decl backup-maybe-typeless
7198 ;; Whether we've found a declaration or a cast. We might know
7199 ;; this before we've found the type in it. It's 'ids if we've
7200 ;; found two consecutive identifiers (usually a sure sign, but
7201 ;; we should allow that in labels too), and t if we've found a
7202 ;; specifier keyword (a 100% sure sign).
7203 at-decl-or-cast
7204 ;; Set when we need to back up to parse this as a declaration
7205 ;; but not as a cast.
7206 backup-if-not-cast
7207 ;; For casts, the return position.
7208 cast-end
7209 ;; Have we got a new-style C++11 "auto"?
7210 new-style-auto
7211 ;; Set when the symbol before `preceding-token-end' is known to
7212 ;; terminate the previous construct, or when we're at point-min.
7213 at-decl-start
7214 ;; Save `c-record-type-identifiers' and
7215 ;; `c-record-ref-identifiers' since ranges are recorded
7216 ;; speculatively and should be thrown away if it turns out
7217 ;; that it isn't a declaration or cast.
7218 (save-rec-type-ids c-record-type-identifiers)
7219 (save-rec-ref-ids c-record-ref-identifiers)
7220 ;; Set when we parse a declaration which might also be an expression,
7221 ;; such as "a *b". See CASE 16 and CASE 17.
7222 maybe-expression)
7223
7224 (save-excursion
7225 (goto-char preceding-token-end)
7226 (setq at-decl-start
7227 (or (bobp)
7228 (let ((tok-end (point)))
7229 (c-backward-token-2)
7230 (member (buffer-substring-no-properties (point) tok-end)
7231 c-pre-start-tokens)))))
7232
7233 (while (c-forward-annotation)
7234 (c-forward-syntactic-ws))
7235
7236 ;; Check for a type. Unknown symbols are treated as possible
7237 ;; types, but they could also be specifiers disguised through
7238 ;; macros like __INLINE__, so we recognize both types and known
7239 ;; specifiers after them too.
7240 (while
7241 (let* ((start (point)) kwd-sym kwd-clause-end found-type noise-start)
7242
7243 (cond
7244 ;; Look for a specifier keyword clause.
7245 ((or (looking-at c-prefix-spec-kwds-re)
7246 (and (c-major-mode-is 'java-mode)
7247 (looking-at "@[A-Za-z0-9]+")))
7248 (save-match-data
7249 (if (looking-at c-typedef-key)
7250 (setq at-typedef t)))
7251 (setq kwd-sym (c-keyword-sym (match-string 1)))
7252 (save-excursion
7253 (c-forward-keyword-clause 1)
7254 (setq kwd-clause-end (point))))
7255 ((and c-opt-cpp-prefix
7256 (looking-at c-noise-macro-with-parens-name-re))
7257 (setq noise-start (point))
7258 (c-forward-noise-clause)
7259 (setq kwd-clause-end (point))))
7260
7261 (when (setq found-type (c-forward-type t)) ; brace-block-too
7262 ;; Found a known or possible type or a prefix of a known type.
7263 (when (and (c-major-mode-is 'c++-mode) ; C++11 style "auto"?
7264 (eq prev-kwd-sym (c-keyword-sym "auto"))
7265 (looking-at "[=(]")) ; FIXME!!! proper regexp.
7266 (setq new-style-auto t)
7267 (setq found-type nil)
7268 (goto-char start)) ; position of foo in "auto foo"
7269
7270 (when at-type
7271 ;; Got two identifiers with nothing but whitespace
7272 ;; between them. That can only happen in declarations.
7273 (setq at-decl-or-cast 'ids)
7274
7275 (when (eq at-type 'found)
7276 ;; If the previous identifier is a found type we
7277 ;; record it as a real one; it might be some sort of
7278 ;; alias for a prefix like "unsigned".
7279 (save-excursion
7280 (goto-char type-start)
7281 (let ((c-promote-possible-types t))
7282 (c-forward-type)))))
7283
7284 (setq backup-at-type at-type
7285 backup-type-start type-start
7286 backup-id-start id-start
7287 backup-kwd-sym kwd-sym
7288 at-type found-type
7289 type-start start
7290 id-start (point)
7291 ;; The previous ambiguous specifier/type turned out
7292 ;; to be a type since we've parsed another one after
7293 ;; it, so clear these backup flags.
7294 backup-at-type-decl nil
7295 backup-maybe-typeless nil))
7296
7297 (if (or kwd-sym noise-start)
7298 (progn
7299 ;; Handle known specifier keywords and
7300 ;; `c-decl-hangon-kwds' which can occur after known
7301 ;; types.
7302
7303 (if (or (c-keyword-member kwd-sym 'c-decl-hangon-kwds)
7304 noise-start)
7305 ;; It's a hang-on keyword or noise clause that can occur
7306 ;; anywhere.
7307 (progn
7308 (if at-type
7309 ;; Move the identifier start position if
7310 ;; we've passed a type.
7311 (setq id-start kwd-clause-end)
7312 ;; Otherwise treat this as a specifier and
7313 ;; move the fallback position.
7314 (setq start-pos kwd-clause-end))
7315 (goto-char kwd-clause-end))
7316
7317 ;; It's an ordinary specifier so we know that
7318 ;; anything before this can't be the type.
7319 (setq backup-at-type nil
7320 start-pos kwd-clause-end)
7321
7322 (if found-type
7323 ;; It's ambiguous whether this keyword is a
7324 ;; specifier or a type prefix, so set the backup
7325 ;; flags. (It's assumed that `c-forward-type'
7326 ;; moved further than `c-forward-keyword-clause'.)
7327 (progn
7328 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
7329 (setq backup-at-type-decl t))
7330 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
7331 (setq backup-maybe-typeless t)))
7332
7333 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
7334 ;; This test only happens after we've scanned a type.
7335 ;; So, with valid syntax, kwd-sym can't be 'typedef.
7336 (setq at-type-decl t))
7337 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
7338 (setq maybe-typeless t))
7339
7340 ;; Haven't matched a type so it's an unambiguous
7341 ;; specifier keyword and we know we're in a
7342 ;; declaration.
7343 (setq at-decl-or-cast t)
7344 (setq prev-kwd-sym kwd-sym)
7345
7346 (goto-char kwd-clause-end))))
7347
7348 ;; If the type isn't known we continue so that we'll jump
7349 ;; over all specifiers and type identifiers. The reason
7350 ;; to do this for a known type prefix is to make things
7351 ;; like "unsigned INT16" work.
7352 (and found-type (not (eq found-type t))))))
7353
7354 (cond
7355 ((eq at-type t)
7356 ;; If a known type was found, we still need to skip over any
7357 ;; hangon keyword clauses after it. Otherwise it has already
7358 ;; been done in the loop above.
7359 (while
7360 (cond ((looking-at c-decl-hangon-key)
7361 (c-forward-keyword-clause 1))
7362 ((and c-opt-cpp-prefix
7363 (looking-at c-noise-macro-with-parens-name-re))
7364 (c-forward-noise-clause))))
7365 (setq id-start (point)))
7366
7367 ((eq at-type 'prefix)
7368 ;; A prefix type is itself a primitive type when it's not
7369 ;; followed by another type.
7370 (setq at-type t))
7371
7372 ((not at-type)
7373 ;; Got no type but set things up to continue anyway to handle
7374 ;; the various cases when a declaration doesn't start with a
7375 ;; type.
7376 (setq id-start start-pos))
7377
7378 ((and (eq at-type 'maybe)
7379 (c-major-mode-is 'c++-mode))
7380 ;; If it's C++ then check if the last "type" ends on the form
7381 ;; "foo::foo" or "foo::~foo", i.e. if it's the name of a
7382 ;; (con|de)structor.
7383 (save-excursion
7384 (let (name end-2 end-1)
7385 (goto-char id-start)
7386 (c-backward-syntactic-ws)
7387 (setq end-2 (point))
7388 (when (and
7389 (c-simple-skip-symbol-backward)
7390 (progn
7391 (setq name
7392 (buffer-substring-no-properties (point) end-2))
7393 ;; Cheating in the handling of syntactic ws below.
7394 (< (skip-chars-backward ":~ \t\n\r\v\f") 0))
7395 (progn
7396 (setq end-1 (point))
7397 (c-simple-skip-symbol-backward))
7398 (>= (point) type-start)
7399 (equal (buffer-substring-no-properties (point) end-1)
7400 name))
7401 ;; It is a (con|de)structor name. In that case the
7402 ;; declaration is typeless so zap out any preceding
7403 ;; identifier(s) that we might have taken as types.
7404 (goto-char type-start)
7405 (setq at-type nil
7406 backup-at-type nil
7407 id-start type-start))))))
7408
7409 ;; Check for and step over a type decl expression after the thing
7410 ;; that is or might be a type. This can't be skipped since we
7411 ;; need the correct end position of the declarator for
7412 ;; `max-type-decl-end-*'.
7413 (let ((start (point)) (paren-depth 0) pos
7414 ;; True if there's a non-open-paren match of
7415 ;; `c-type-decl-prefix-key'.
7416 got-prefix
7417 ;; True if the declarator is surrounded by a parenthesis pair.
7418 got-parens
7419 ;; True if there is an identifier in the declarator.
7420 got-identifier
7421 ;; True if there's a non-close-paren match of
7422 ;; `c-type-decl-suffix-key'.
7423 got-suffix
7424 ;; True if there's a prefix match outside the outermost
7425 ;; paren pair that surrounds the declarator.
7426 got-prefix-before-parens
7427 ;; True if there's a suffix match outside the outermost
7428 ;; paren pair that surrounds the declarator. The value is
7429 ;; the position of the first suffix match.
7430 got-suffix-after-parens
7431 ;; True if we've parsed the type decl to a token that is
7432 ;; known to end declarations in this context.
7433 at-decl-end
7434 ;; The earlier values of `at-type' and `type-start' if we've
7435 ;; shifted the type backwards.
7436 identifier-type identifier-start
7437 ;; If `c-parse-and-markup-<>-arglists' is set we need to
7438 ;; turn it off during the name skipping below to avoid
7439 ;; getting `c-type' properties that might be bogus. That
7440 ;; can happen since we don't know if
7441 ;; `c-restricted-<>-arglists' will be correct inside the
7442 ;; arglist paren that gets entered.
7443 c-parse-and-markup-<>-arglists
7444 ;; Start of the identifier for which `got-identifier' was set.
7445 name-start)
7446
7447 (goto-char id-start)
7448
7449 ;; Skip over type decl prefix operators. (Note similar code in
7450 ;; `c-forward-declarator'.)
7451 (if (and c-recognize-typeless-decls
7452 (equal c-type-decl-prefix-key "\\<\\>"))
7453 (when (eq (char-after) ?\()
7454 (progn
7455 (setq paren-depth (1+ paren-depth))
7456 (forward-char)))
7457 (while (and (looking-at c-type-decl-prefix-key)
7458 (if (and (c-major-mode-is 'c++-mode)
7459 (match-beginning 3))
7460 ;; If the third submatch matches in C++ then
7461 ;; we're looking at an identifier that's a
7462 ;; prefix only if it specifies a member pointer.
7463 (when (progn (setq pos (point))
7464 (setq got-identifier (c-forward-name)))
7465 (setq name-start pos)
7466 (if (looking-at "\\(::\\)")
7467 ;; We only check for a trailing "::" and
7468 ;; let the "*" that should follow be
7469 ;; matched in the next round.
7470 (progn (setq got-identifier nil) t)
7471 ;; It turned out to be the real identifier,
7472 ;; so stop.
7473 nil))
7474 t))
7475
7476 (if (eq (char-after) ?\()
7477 (progn
7478 (setq paren-depth (1+ paren-depth))
7479 (forward-char))
7480 (unless got-prefix-before-parens
7481 (setq got-prefix-before-parens (= paren-depth 0)))
7482 (setq got-prefix t)
7483 (goto-char (match-end 1)))
7484 (c-forward-syntactic-ws)))
7485
7486 (setq got-parens (> paren-depth 0))
7487
7488 ;; Skip over an identifier.
7489 (or got-identifier
7490 (and (looking-at c-identifier-start)
7491 (setq pos (point))
7492 (setq got-identifier (c-forward-name))
7493 (setq name-start pos)))
7494
7495 ;; Skip over type decl suffix operators and trailing noise macros.
7496 (while
7497 (cond
7498 ((and c-opt-cpp-prefix
7499 (looking-at c-noise-macro-with-parens-name-re))
7500 (c-forward-noise-clause))
7501
7502 ((looking-at c-type-decl-suffix-key)
7503 (if (eq (char-after) ?\))
7504 (when (> paren-depth 0)
7505 (setq paren-depth (1- paren-depth))
7506 (forward-char)
7507 t)
7508 (when (if (save-match-data (looking-at "\\s("))
7509 (c-safe (c-forward-sexp 1) t)
7510 (goto-char (match-end 1))
7511 t)
7512 (when (and (not got-suffix-after-parens)
7513 (= paren-depth 0))
7514 (setq got-suffix-after-parens (match-beginning 0)))
7515 (setq got-suffix t))))
7516
7517 (t
7518 ;; No suffix matched. We might have matched the
7519 ;; identifier as a type and the open paren of a
7520 ;; function arglist as a type decl prefix. In that
7521 ;; case we should "backtrack": Reinterpret the last
7522 ;; type as the identifier, move out of the arglist and
7523 ;; continue searching for suffix operators.
7524 ;;
7525 ;; Do this even if there's no preceding type, to cope
7526 ;; with old style function declarations in K&R C,
7527 ;; (con|de)structors in C++ and `c-typeless-decl-kwds'
7528 ;; style declarations. That isn't applicable in an
7529 ;; arglist context, though.
7530 (when (and (= paren-depth 1)
7531 (not got-prefix-before-parens)
7532 (not (eq at-type t))
7533 (or backup-at-type
7534 maybe-typeless
7535 backup-maybe-typeless
7536 (when c-recognize-typeless-decls
7537 (not context)))
7538 (setq pos (c-up-list-forward (point)))
7539 (eq (char-before pos) ?\)))
7540 (c-fdoc-shift-type-backward)
7541 (goto-char pos)
7542 t)))
7543
7544 (c-forward-syntactic-ws))
7545
7546 (when (or (and new-style-auto
7547 (looking-at c-auto-ops-re))
7548 (and (or maybe-typeless backup-maybe-typeless)
7549 (not got-identifier)
7550 (not got-prefix)
7551 at-type))
7552 ;; Have found no identifier but `c-typeless-decl-kwds' has
7553 ;; matched so we know we're inside a declaration. The
7554 ;; preceding type must be the identifier instead.
7555 (c-fdoc-shift-type-backward))
7556
7557 ;; Prepare the "-> type;" for fontification later on.
7558 (when (and new-style-auto
7559 (looking-at c-haskell-op-re))
7560 (save-excursion
7561 (goto-char (match-end 0))
7562 (c-forward-syntactic-ws)
7563 (setq type-start (point))
7564 (setq at-type (c-forward-type))))
7565
7566 (setq
7567 at-decl-or-cast
7568 (catch 'at-decl-or-cast
7569
7570 ;; CASE 1
7571 (when (> paren-depth 0)
7572 ;; Encountered something inside parens that isn't matched by
7573 ;; the `c-type-decl-*' regexps, so it's not a type decl
7574 ;; expression. Try to skip out to the same paren depth to
7575 ;; not confuse the cast check below.
7576 (c-safe (goto-char (scan-lists (point) 1 paren-depth)))
7577 ;; If we've found a specifier keyword then it's a
7578 ;; declaration regardless.
7579 (throw 'at-decl-or-cast (eq at-decl-or-cast t)))
7580
7581 (setq at-decl-end
7582 (looking-at (cond ((eq context '<>) "[,>]")
7583 (context "[,)]")
7584 (t "[,;]"))))
7585
7586 ;; Now we've collected info about various characteristics of
7587 ;; the construct we're looking at. Below follows a decision
7588 ;; tree based on that. It's ordered to check more certain
7589 ;; signs before less certain ones.
7590
7591 (if got-identifier
7592 (progn
7593
7594 ;; CASE 2
7595 (when (and (or at-type maybe-typeless)
7596 (not (or got-prefix got-parens)))
7597 ;; Got another identifier directly after the type, so it's a
7598 ;; declaration.
7599 (throw 'at-decl-or-cast t))
7600
7601 (when (and got-parens
7602 (not got-prefix)
7603 ;; (not got-suffix-after-parens)
7604 (or backup-at-type
7605 maybe-typeless
7606 backup-maybe-typeless
7607 (eq at-decl-or-cast t)
7608 (save-excursion
7609 (goto-char name-start)
7610 (not (memq (c-forward-type) '(nil maybe))))))
7611 ;; Got a declaration of the form "foo bar (gnu);" or "bar
7612 ;; (gnu);" where we've recognized "bar" as the type and "gnu"
7613 ;; as the declarator. In this case it's however more likely
7614 ;; that "bar" is the declarator and "gnu" a function argument
7615 ;; or initializer (if `c-recognize-paren-inits' is set),
7616 ;; since the parens around "gnu" would be superfluous if it's
7617 ;; a declarator. Shift the type one step backward.
7618 (c-fdoc-shift-type-backward)))
7619
7620 ;; Found no identifier.
7621
7622 (if backup-at-type
7623 (progn
7624
7625 ;; CASE 3
7626 (when (= (point) start)
7627 ;; Got a plain list of identifiers. If a colon follows it's
7628 ;; a valid label, or maybe a bitfield. Otherwise the last
7629 ;; one probably is the declared identifier and we should
7630 ;; back up to the previous type, providing it isn't a cast.
7631 (if (and (eq (char-after) ?:)
7632 (not (c-major-mode-is 'java-mode)))
7633 (cond
7634 ;; If we've found a specifier keyword then it's a
7635 ;; declaration regardless.
7636 ((eq at-decl-or-cast t)
7637 (throw 'at-decl-or-cast t))
7638 ((and c-has-bitfields
7639 (eq at-decl-or-cast 'ids)) ; bitfield.
7640 (setq backup-if-not-cast t)
7641 (throw 'at-decl-or-cast t)))
7642
7643 (setq backup-if-not-cast t)
7644 (throw 'at-decl-or-cast t)))
7645
7646 ;; CASE 4
7647 (when (and got-suffix
7648 (not got-prefix)
7649 (not got-parens))
7650 ;; Got a plain list of identifiers followed by some suffix.
7651 ;; If this isn't a cast then the last identifier probably is
7652 ;; the declared one and we should back up to the previous
7653 ;; type.
7654 (setq backup-if-not-cast t)
7655 (throw 'at-decl-or-cast t)))
7656
7657 ;; CASE 5
7658 (when (eq at-type t)
7659 ;; If the type is known we know that there can't be any
7660 ;; identifier somewhere else, and it's only in declarations in
7661 ;; e.g. function prototypes and in casts that the identifier may
7662 ;; be left out.
7663 (throw 'at-decl-or-cast t))
7664
7665 (when (= (point) start)
7666 ;; Only got a single identifier (parsed as a type so far).
7667 ;; CASE 6
7668 (if (and
7669 ;; Check that the identifier isn't at the start of an
7670 ;; expression.
7671 at-decl-end
7672 (cond
7673 ((eq context 'decl)
7674 ;; Inside an arglist that contains declarations. If K&R
7675 ;; style declarations and parenthesis style initializers
7676 ;; aren't allowed then the single identifier must be a
7677 ;; type, else we require that it's known or found
7678 ;; (primitive types are handled above).
7679 (or (and (not c-recognize-knr-p)
7680 (not c-recognize-paren-inits))
7681 (memq at-type '(known found))))
7682 ((eq context '<>)
7683 ;; Inside a template arglist. Accept known and found
7684 ;; types; other identifiers could just as well be
7685 ;; constants in C++.
7686 (memq at-type '(known found)))))
7687 (throw 'at-decl-or-cast t)
7688 ;; CASE 7
7689 ;; Can't be a valid declaration or cast, but if we've found a
7690 ;; specifier it can't be anything else either, so treat it as
7691 ;; an invalid/unfinished declaration or cast.
7692 (throw 'at-decl-or-cast at-decl-or-cast))))
7693
7694 (if (and got-parens
7695 (not got-prefix)
7696 (not context)
7697 (not (eq at-type t))
7698 (or backup-at-type
7699 maybe-typeless
7700 backup-maybe-typeless
7701 (when c-recognize-typeless-decls
7702 (or (not got-suffix)
7703 (not (looking-at
7704 c-after-suffixed-type-maybe-decl-key))))))
7705 ;; Got an empty paren pair and a preceding type that probably
7706 ;; really is the identifier. Shift the type backwards to make
7707 ;; the last one the identifier. This is analogous to the
7708 ;; "backtracking" done inside the `c-type-decl-suffix-key' loop
7709 ;; above.
7710 ;;
7711 ;; Exception: In addition to the conditions in that
7712 ;; "backtracking" code, do not shift backward if we're not
7713 ;; looking at either `c-after-suffixed-type-decl-key' or "[;,]".
7714 ;; Since there's no preceding type, the shift would mean that
7715 ;; the declaration is typeless. But if the regexp doesn't match
7716 ;; then we will simply fall through in the tests below and not
7717 ;; recognize it at all, so it's better to try it as an abstract
7718 ;; declarator instead.
7719 (c-fdoc-shift-type-backward)
7720
7721 ;; Still no identifier.
7722 ;; CASE 8
7723 (when (and got-prefix (or got-parens got-suffix))
7724 ;; Require `got-prefix' together with either `got-parens' or
7725 ;; `got-suffix' to recognize it as an abstract declarator:
7726 ;; `got-parens' only is probably an empty function call.
7727 ;; `got-suffix' only can build an ordinary expression together
7728 ;; with the preceding identifier which we've taken as a type.
7729 ;; We could actually accept on `got-prefix' only, but that can
7730 ;; easily occur temporarily while writing an expression so we
7731 ;; avoid that case anyway. We could do a better job if we knew
7732 ;; the point when the fontification was invoked.
7733 (throw 'at-decl-or-cast t))
7734
7735 ;; CASE 9
7736 (when (and at-type
7737 (not got-prefix)
7738 (not got-parens)
7739 got-suffix-after-parens
7740 (eq (char-after got-suffix-after-parens) ?\())
7741 ;; Got a type, no declarator but a paren suffix. I.e. it's a
7742 ;; normal function call after all (or perhaps a C++ style object
7743 ;; instantiation expression).
7744 (throw 'at-decl-or-cast nil))))
7745
7746 ;; CASE 10
7747 (when at-decl-or-cast
7748 ;; By now we've located the type in the declaration that we know
7749 ;; we're in.
7750 (throw 'at-decl-or-cast t))
7751
7752 ;; CASE 11
7753 (when (and got-identifier
7754 (not context)
7755 (looking-at c-after-suffixed-type-decl-key)
7756 (if (and got-parens
7757 (not got-prefix)
7758 (not got-suffix)
7759 (not (eq at-type t)))
7760 ;; Shift the type backward in the case that there's a
7761 ;; single identifier inside parens. That can only
7762 ;; occur in K&R style function declarations so it's
7763 ;; more likely that it really is a function call.
7764 ;; Therefore we only do this after
7765 ;; `c-after-suffixed-type-decl-key' has matched.
7766 (progn (c-fdoc-shift-type-backward) t)
7767 got-suffix-after-parens))
7768 ;; A declaration according to `c-after-suffixed-type-decl-key'.
7769 (throw 'at-decl-or-cast t))
7770
7771 ;; CASE 12
7772 (when (and (or got-prefix (not got-parens))
7773 (memq at-type '(t known)))
7774 ;; It's a declaration if a known type precedes it and it can't be a
7775 ;; function call.
7776 (throw 'at-decl-or-cast t))
7777
7778 ;; If we get here we can't tell if this is a type decl or a normal
7779 ;; expression by looking at it alone. (That's under the assumption
7780 ;; that normal expressions always can look like type decl expressions,
7781 ;; which isn't really true but the cases where it doesn't hold are so
7782 ;; uncommon (e.g. some placements of "const" in C++) it's not worth
7783 ;; the effort to look for them.)
7784
7785 ;;; 2008-04-16: commented out the next form, to allow the function to recognize
7786 ;;; "foo (int bar)" in CC (an implicit type (in class foo) without a semicolon)
7787 ;;; as a(n almost complete) declaration, enabling it to be fontified.
7788 ;; CASE 13
7789 ;; (unless (or at-decl-end (looking-at "=[^=]"))
7790 ;; If this is a declaration it should end here or its initializer(*)
7791 ;; should start here, so check for allowed separation tokens. Note
7792 ;; that this rule doesn't work e.g. with a K&R arglist after a
7793 ;; function header.
7794 ;;
7795 ;; *) Don't check for C++ style initializers using parens
7796 ;; since those already have been matched as suffixes.
7797 ;;
7798 ;; If `at-decl-or-cast' is then we've found some other sign that
7799 ;; it's a declaration or cast, so then it's probably an
7800 ;; invalid/unfinished one.
7801 ;; (throw 'at-decl-or-cast at-decl-or-cast))
7802
7803 ;; Below are tests that only should be applied when we're certain to
7804 ;; not have parsed halfway through an expression.
7805
7806 ;; CASE 14
7807 (when (memq at-type '(t known))
7808 ;; The expression starts with a known type so treat it as a
7809 ;; declaration.
7810 (throw 'at-decl-or-cast t))
7811
7812 ;; CASE 15
7813 (when (and (c-major-mode-is 'c++-mode)
7814 ;; In C++ we check if the identifier is a known type, since
7815 ;; (con|de)structors use the class name as identifier.
7816 ;; We've always shifted over the identifier as a type and
7817 ;; then backed up again in this case.
7818 identifier-type
7819 (or (memq identifier-type '(found known))
7820 (and (eq (char-after identifier-start) ?~)
7821 ;; `at-type' probably won't be 'found for
7822 ;; destructors since the "~" is then part of the
7823 ;; type name being checked against the list of
7824 ;; known types, so do a check without that
7825 ;; operator.
7826 (or (save-excursion
7827 (goto-char (1+ identifier-start))
7828 (c-forward-syntactic-ws)
7829 (c-with-syntax-table
7830 c-identifier-syntax-table
7831 (looking-at c-known-type-key)))
7832 (save-excursion
7833 (goto-char (1+ identifier-start))
7834 ;; We have already parsed the type earlier,
7835 ;; so it'd be possible to cache the end
7836 ;; position instead of redoing it here, but
7837 ;; then we'd need to keep track of another
7838 ;; position everywhere.
7839 (c-check-type (point)
7840 (progn (c-forward-type)
7841 (point))))))))
7842 (throw 'at-decl-or-cast t))
7843
7844 (if got-identifier
7845 (progn
7846 ;; CASE 16
7847 (when (and got-prefix-before-parens
7848 at-type
7849 (or at-decl-end (looking-at "=[^=]"))
7850 (not context)
7851 (or (not got-suffix)
7852 at-decl-start))
7853 ;; Got something like "foo * bar;". Since we're not inside
7854 ;; an arglist it would be a meaningless expression because
7855 ;; the result isn't used. We therefore choose to recognize
7856 ;; it as a declaration. We only allow a suffix (which makes
7857 ;; the construct look like a function call) when
7858 ;; `at-decl-start' provides additional evidence that we do
7859 ;; have a declaration.
7860 (setq maybe-expression t)
7861 (throw 'at-decl-or-cast t))
7862
7863 ;; CASE 17
7864 (when (and (or got-suffix-after-parens
7865 (looking-at "=[^=]"))
7866 (eq at-type 'found)
7867 (not (eq context 'arglist)))
7868 ;; Got something like "a (*b) (c);" or "a (b) = c;". It could
7869 ;; be an odd expression or it could be a declaration. Treat
7870 ;; it as a declaration if "a" has been used as a type
7871 ;; somewhere else (if it's a known type we won't get here).
7872 (setq maybe-expression t)
7873 (throw 'at-decl-or-cast t)))
7874
7875 ;; CASE 18
7876 (when (and context
7877 (or got-prefix
7878 (and (eq context 'decl)
7879 (not c-recognize-paren-inits)
7880 (or got-parens got-suffix))))
7881 ;; Got a type followed by an abstract declarator. If `got-prefix'
7882 ;; is set it's something like "a *" without anything after it. If
7883 ;; `got-parens' or `got-suffix' is set it's "a()", "a[]", "a()[]",
7884 ;; or similar, which we accept only if the context rules out
7885 ;; expressions.
7886 (throw 'at-decl-or-cast t)))
7887
7888 ;; If we had a complete symbol table here (which rules out
7889 ;; `c-found-types') we should return t due to the disambiguation rule
7890 ;; (in at least C++) that anything that can be parsed as a declaration
7891 ;; is a declaration. Now we're being more defensive and prefer to
7892 ;; highlight things like "foo (bar);" as a declaration only if we're
7893 ;; inside an arglist that contains declarations.
7894 ;; CASE 19
7895 (eq context 'decl))))
7896
7897 ;; The point is now after the type decl expression.
7898
7899 (cond
7900 ;; Check for a cast.
7901 ((save-excursion
7902 (and
7903 c-cast-parens
7904
7905 ;; Should be the first type/identifier in a cast paren.
7906 (> preceding-token-end (point-min))
7907 (memq (char-before preceding-token-end) c-cast-parens)
7908
7909 ;; The closing paren should follow.
7910 (progn
7911 (c-forward-syntactic-ws)
7912 (looking-at "\\s)"))
7913
7914 ;; There should be a primary expression after it.
7915 (let (pos)
7916 (forward-char)
7917 (c-forward-syntactic-ws)
7918 (setq cast-end (point))
7919 (and (looking-at c-primary-expr-regexp)
7920 (progn
7921 (setq pos (match-end 0))
7922 (or
7923 ;; Check if the expression begins with a prefix keyword.
7924 (match-beginning 2)
7925 (if (match-beginning 1)
7926 ;; Expression begins with an ambiguous operator. Treat
7927 ;; it as a cast if it's a type decl or if we've
7928 ;; recognized the type somewhere else.
7929 (or at-decl-or-cast
7930 (memq at-type '(t known found)))
7931 ;; Unless it's a keyword, it's the beginning of a primary
7932 ;; expression.
7933 (not (looking-at c-keywords-regexp)))))
7934 ;; If `c-primary-expr-regexp' matched a nonsymbol token, check
7935 ;; that it matched a whole one so that we don't e.g. confuse
7936 ;; the operator '-' with '->'. It's ok if it matches further,
7937 ;; though, since it e.g. can match the float '.5' while the
7938 ;; operator regexp only matches '.'.
7939 (or (not (looking-at c-nonsymbol-token-regexp))
7940 (<= (match-end 0) pos))))
7941
7942 ;; There should either be a cast before it or something that isn't an
7943 ;; identifier or close paren.
7944 (> preceding-token-end (point-min))
7945 (progn
7946 (goto-char (1- preceding-token-end))
7947 (or (eq (point) last-cast-end)
7948 (progn
7949 (c-backward-syntactic-ws)
7950 (if (< (skip-syntax-backward "w_") 0)
7951 ;; It's a symbol. Accept it only if it's one of the
7952 ;; keywords that can precede an expression (without
7953 ;; surrounding parens).
7954 (looking-at c-simple-stmt-key)
7955 (and
7956 ;; Check that it isn't a close paren (block close is ok,
7957 ;; though).
7958 (not (memq (char-before) '(?\) ?\])))
7959 ;; Check that it isn't a nonsymbol identifier.
7960 (not (c-on-identifier)))))))))
7961
7962 ;; Handle the cast.
7963 (when (and c-record-type-identifiers at-type (not (eq at-type t)))
7964 (let ((c-promote-possible-types t))
7965 (goto-char type-start)
7966 (c-forward-type)))
7967
7968 (goto-char cast-end)
7969 'cast)
7970
7971 (at-decl-or-cast
7972 ;; We're at a declaration. Highlight the type and the following
7973 ;; declarators.
7974
7975 (when backup-if-not-cast
7976 (c-fdoc-shift-type-backward t))
7977
7978 (when (and (eq context 'decl) (looking-at ","))
7979 ;; Make sure to propagate the `c-decl-arg-start' property to
7980 ;; the next argument if it's set in this one, to cope with
7981 ;; interactive refontification.
7982 (c-put-c-type-property (point) 'c-decl-arg-start))
7983
7984 ;; Record the type's coordinates in `c-record-type-identifiers' for
7985 ;; later fontification.
7986 (when (and c-record-type-identifiers at-type ;; (not (eq at-type t))
7987 ;; There seems no reason to exclude a token from
7988 ;; fontification just because it's "a known type that can't
7989 ;; be a name or other expression". 2013-09-18.
7990 )
7991 (let ((c-promote-possible-types t))
7992 (save-excursion
7993 (goto-char type-start)
7994 (c-forward-type))))
7995
7996 (list id-start
7997 (and (or at-type-decl at-typedef)
7998 (cons at-type-decl at-typedef))
7999 maybe-expression
8000 type-start))
8001
8002 (t
8003 ;; False alarm. Restore the recorded ranges.
8004 (setq c-record-type-identifiers save-rec-type-ids
8005 c-record-ref-identifiers save-rec-ref-ids)
8006 nil))))
8007
8008 (defun c-forward-label (&optional assume-markup preceding-token-end limit)
8009 ;; Assuming that point is at the beginning of a token, check if it starts a
8010 ;; label and if so move over it and return non-nil (t in default situations,
8011 ;; specific symbols (see below) for interesting situations), otherwise don't
8012 ;; move and return nil. "Label" here means "most things with a colon".
8013 ;;
8014 ;; More precisely, a "label" is regarded as one of:
8015 ;; (i) a goto target like "foo:" - returns the symbol `goto-target';
8016 ;; (ii) A case label - either the entire construct "case FOO:", or just the
8017 ;; bare "case", should the colon be missing. We return t;
8018 ;; (iii) a keyword which needs a colon, like "default:" or "private:"; We
8019 ;; return t;
8020 ;; (iv) One of QT's "extended" C++ variants of
8021 ;; "private:"/"protected:"/"public:"/"more:" looking like "public slots:".
8022 ;; Returns the symbol `qt-2kwds-colon'.
8023 ;; (v) QT's construct "signals:". Returns the symbol `qt-1kwd-colon'.
8024 ;; (vi) One of the keywords matched by `c-opt-extra-label-key' (without any
8025 ;; colon). Currently (2006-03), this applies only to Objective C's
8026 ;; keywords "@private", "@protected", and "@public". Returns t.
8027 ;;
8028 ;; One of the things which will NOT be recognized as a label is a bit-field
8029 ;; element of a struct, something like "int foo:5".
8030 ;;
8031 ;; The end of the label is taken to be just after the colon, or the end of
8032 ;; the first submatch in `c-opt-extra-label-key'. The point is directly
8033 ;; after the end on return. The terminating char gets marked with
8034 ;; `c-decl-end' to improve recognition of the following declaration or
8035 ;; statement.
8036 ;;
8037 ;; If ASSUME-MARKUP is non-nil, it's assumed that the preceding
8038 ;; label, if any, has already been marked up like that.
8039 ;;
8040 ;; If PRECEDING-TOKEN-END is given, it should be the first position
8041 ;; after the preceding token, i.e. on the other side of the
8042 ;; syntactic ws from the point. Use a value less than or equal to
8043 ;; (point-min) if the point is at the first token in (the visible
8044 ;; part of) the buffer.
8045 ;;
8046 ;; The optional LIMIT limits the forward scan for the colon.
8047 ;;
8048 ;; This function records the ranges of the label symbols on
8049 ;; `c-record-ref-identifiers' if `c-record-type-identifiers' (!) is
8050 ;; non-nil.
8051 ;;
8052 ;; This function might do hidden buffer changes.
8053
8054 (let ((start (point))
8055 label-end
8056 qt-symbol-idx
8057 macro-start ; if we're in one.
8058 label-type
8059 kwd)
8060 (cond
8061 ;; "case" or "default" (Doesn't apply to AWK).
8062 ((looking-at c-label-kwds-regexp)
8063 (let ((kwd-end (match-end 1)))
8064 ;; Record only the keyword itself for fontification, since in
8065 ;; case labels the following is a constant expression and not
8066 ;; a label.
8067 (when c-record-type-identifiers
8068 (c-record-ref-id (cons (match-beginning 1) kwd-end)))
8069
8070 ;; Find the label end.
8071 (goto-char kwd-end)
8072 (setq label-type
8073 (if (and (c-syntactic-re-search-forward
8074 ;; Stop on chars that aren't allowed in expressions,
8075 ;; and on operator chars that would be meaningless
8076 ;; there. FIXME: This doesn't cope with ?: operators.
8077 "[;{=,@]\\|\\(\\=\\|[^:]\\):\\([^:]\\|\\'\\)"
8078 limit t t nil 1)
8079 (match-beginning 2))
8080
8081 (progn ; there's a proper :
8082 (goto-char (match-beginning 2)) ; just after the :
8083 (c-put-c-type-property (1- (point)) 'c-decl-end)
8084 t)
8085
8086 ;; It's an unfinished label. We consider the keyword enough
8087 ;; to recognize it as a label, so that it gets fontified.
8088 ;; Leave the point at the end of it, but don't put any
8089 ;; `c-decl-end' marker.
8090 (goto-char kwd-end)
8091 t))))
8092
8093 ;; @private, @protected, @public, in Objective C, or similar.
8094 ((and c-opt-extra-label-key
8095 (looking-at c-opt-extra-label-key))
8096 ;; For a `c-opt-extra-label-key' match, we record the whole
8097 ;; thing for fontification. That's to get the leading '@' in
8098 ;; Objective-C protection labels fontified.
8099 (goto-char (match-end 1))
8100 (when c-record-type-identifiers
8101 (c-record-ref-id (cons (match-beginning 1) (point))))
8102 (c-put-c-type-property (1- (point)) 'c-decl-end)
8103 (setq label-type t))
8104
8105 ;; All other cases of labels.
8106 ((and c-recognize-colon-labels ; nil for AWK and IDL, otherwise t.
8107
8108 ;; A colon label must have something before the colon.
8109 (not (eq (char-after) ?:))
8110
8111 ;; Check that we're not after a token that can't precede a label.
8112 (or
8113 ;; Trivially succeeds when there's no preceding token.
8114 ;; Succeeds when we're at a virtual semicolon.
8115 (if preceding-token-end
8116 (<= preceding-token-end (point-min))
8117 (save-excursion
8118 (c-backward-syntactic-ws)
8119 (setq preceding-token-end (point))
8120 (or (bobp)
8121 (c-at-vsemi-p))))
8122
8123 ;; Check if we're after a label, if we're after a closing
8124 ;; paren that belong to statement, and with
8125 ;; `c-label-prefix-re'. It's done in different order
8126 ;; depending on `assume-markup' since the checks have
8127 ;; different expensiveness.
8128 (if assume-markup
8129 (or
8130 (eq (c-get-char-property (1- preceding-token-end) 'c-type)
8131 'c-decl-end)
8132
8133 (save-excursion
8134 (goto-char (1- preceding-token-end))
8135 (c-beginning-of-current-token)
8136 (or (looking-at c-label-prefix-re)
8137 (looking-at c-block-stmt-1-key)))
8138
8139 (and (eq (char-before preceding-token-end) ?\))
8140 (c-after-conditional)))
8141
8142 (or
8143 (save-excursion
8144 (goto-char (1- preceding-token-end))
8145 (c-beginning-of-current-token)
8146 (or (looking-at c-label-prefix-re)
8147 (looking-at c-block-stmt-1-key)))
8148
8149 (cond
8150 ((eq (char-before preceding-token-end) ?\))
8151 (c-after-conditional))
8152
8153 ((eq (char-before preceding-token-end) ?:)
8154 ;; Might be after another label, so check it recursively.
8155 (save-restriction
8156 (save-excursion
8157 (goto-char (1- preceding-token-end))
8158 ;; Essentially the same as the
8159 ;; `c-syntactic-re-search-forward' regexp below.
8160 (setq macro-start
8161 (save-excursion (and (c-beginning-of-macro)
8162 (point))))
8163 (if macro-start (narrow-to-region macro-start (point-max)))
8164 (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+" nil t)
8165 ;; Note: the following should work instead of the
8166 ;; narrow-to-region above. Investigate why not,
8167 ;; sometime. ACM, 2006-03-31.
8168 ;; (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+"
8169 ;; macro-start t)
8170 (let ((pte (point))
8171 ;; If the caller turned on recording for us,
8172 ;; it shouldn't apply when we check the
8173 ;; preceding label.
8174 c-record-type-identifiers)
8175 ;; A label can't start at a cpp directive. Check for
8176 ;; this, since c-forward-syntactic-ws would foul up on it.
8177 (unless (and c-opt-cpp-prefix (looking-at c-opt-cpp-prefix))
8178 (c-forward-syntactic-ws)
8179 (c-forward-label nil pte start))))))))))
8180
8181 ;; Point is still at the beginning of the possible label construct.
8182 ;;
8183 ;; Check that the next nonsymbol token is ":", or that we're in one
8184 ;; of QT's "slots" declarations. Allow '(' for the sake of macro
8185 ;; arguments. FIXME: Should build this regexp from the language
8186 ;; constants.
8187 (cond
8188 ;; public: protected: private:
8189 ((and
8190 (c-major-mode-is 'c++-mode)
8191 (search-forward-regexp
8192 "\\=p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\>[^_]" nil t)
8193 (progn (backward-char)
8194 (c-forward-syntactic-ws limit)
8195 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon.
8196 (forward-char)
8197 (setq label-type t))
8198 ;; QT double keyword like "protected slots:" or goto target.
8199 ((progn (goto-char start) nil))
8200 ((when (c-syntactic-re-search-forward
8201 "[ \t\n[:?;{=*/%&|,<>!@+-]" limit t t) ; not at EOB
8202 (backward-char)
8203 (setq label-end (point))
8204 (setq qt-symbol-idx
8205 (and (c-major-mode-is 'c++-mode)
8206 (string-match
8207 "\\(p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\|more\\)\\>"
8208 (buffer-substring start (point)))))
8209 (c-forward-syntactic-ws limit)
8210 (cond
8211 ((looking-at ":\\([^:]\\|\\'\\)") ; A single colon.
8212 (forward-char)
8213 (setq label-type
8214 (if (or (string= "signals" ; Special QT macro
8215 (setq kwd (buffer-substring-no-properties start label-end)))
8216 (string= "Q_SIGNALS" kwd))
8217 'qt-1kwd-colon
8218 'goto-target)))
8219 ((and qt-symbol-idx
8220 (search-forward-regexp "\\=\\(slots\\|Q_SLOTS\\)\\>" limit t)
8221 (progn (c-forward-syntactic-ws limit)
8222 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon
8223 (forward-char)
8224 (setq label-type 'qt-2kwds-colon)))))))
8225
8226 (save-restriction
8227 (narrow-to-region start (point))
8228
8229 ;; Check that `c-nonlabel-token-key' doesn't match anywhere.
8230 (catch 'check-label
8231 (goto-char start)
8232 (while (progn
8233 (when (looking-at c-nonlabel-token-key)
8234 (goto-char start)
8235 (setq label-type nil)
8236 (throw 'check-label nil))
8237 (and (c-safe (c-forward-sexp)
8238 (c-forward-syntactic-ws)
8239 t)
8240 (not (eobp)))))
8241
8242 ;; Record the identifiers in the label for fontification, unless
8243 ;; it begins with `c-label-kwds' in which case the following
8244 ;; identifiers are part of a (constant) expression that
8245 ;; shouldn't be fontified.
8246 (when (and c-record-type-identifiers
8247 (progn (goto-char start)
8248 (not (looking-at c-label-kwds-regexp))))
8249 (while (c-syntactic-re-search-forward c-symbol-key nil t)
8250 (c-record-ref-id (cons (match-beginning 0)
8251 (match-end 0)))))
8252
8253 (c-put-c-type-property (1- (point-max)) 'c-decl-end)
8254 (goto-char (point-max)))))
8255
8256 (t
8257 ;; Not a label.
8258 (goto-char start)))
8259 label-type))
8260
8261 (defun c-forward-objc-directive ()
8262 ;; Assuming the point is at the beginning of a token, try to move
8263 ;; forward to the end of the Objective-C directive that starts
8264 ;; there. Return t if a directive was fully recognized, otherwise
8265 ;; the point is moved as far as one could be successfully parsed and
8266 ;; nil is returned.
8267 ;;
8268 ;; This function records identifier ranges on
8269 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
8270 ;; `c-record-type-identifiers' is non-nil.
8271 ;;
8272 ;; This function might do hidden buffer changes.
8273
8274 (let ((start (point))
8275 start-char
8276 (c-promote-possible-types t)
8277 lim
8278 ;; Turn off recognition of angle bracket arglists while parsing
8279 ;; types here since the protocol reference list might then be
8280 ;; considered part of the preceding name or superclass-name.
8281 c-recognize-<>-arglists)
8282
8283 (if (or
8284 (when (looking-at
8285 (eval-when-compile
8286 (c-make-keywords-re t
8287 (append (c-lang-const c-protection-kwds objc)
8288 '("@end"))
8289 'objc-mode)))
8290 (goto-char (match-end 1))
8291 t)
8292
8293 (and
8294 (looking-at
8295 (eval-when-compile
8296 (c-make-keywords-re t
8297 '("@interface" "@implementation" "@protocol")
8298 'objc-mode)))
8299
8300 ;; Handle the name of the class itself.
8301 (progn
8302 ;; (c-forward-token-2) ; 2006/1/13 This doesn't move if the token's
8303 ;; at EOB.
8304 (goto-char (match-end 0))
8305 (setq lim (point))
8306 (c-skip-ws-forward)
8307 (c-forward-type))
8308
8309 (catch 'break
8310 ;; Look for ": superclass-name" or "( category-name )".
8311 (when (looking-at "[:(]")
8312 (setq start-char (char-after))
8313 (forward-char)
8314 (c-forward-syntactic-ws)
8315 (unless (c-forward-type) (throw 'break nil))
8316 (when (eq start-char ?\()
8317 (unless (eq (char-after) ?\)) (throw 'break nil))
8318 (forward-char)
8319 (c-forward-syntactic-ws)))
8320
8321 ;; Look for a protocol reference list.
8322 (if (eq (char-after) ?<)
8323 (let ((c-recognize-<>-arglists t)
8324 (c-parse-and-markup-<>-arglists t)
8325 c-restricted-<>-arglists)
8326 (c-forward-<>-arglist t))
8327 t))))
8328
8329 (progn
8330 (c-backward-syntactic-ws lim)
8331 (c-clear-c-type-property start (1- (point)) 'c-decl-end)
8332 (c-put-c-type-property (1- (point)) 'c-decl-end)
8333 t)
8334
8335 (c-clear-c-type-property start (point) 'c-decl-end)
8336 nil)))
8337
8338 (defun c-beginning-of-inheritance-list (&optional lim)
8339 ;; Go to the first non-whitespace after the colon that starts a
8340 ;; multiple inheritance introduction. Optional LIM is the farthest
8341 ;; back we should search.
8342 ;;
8343 ;; This function might do hidden buffer changes.
8344 (c-with-syntax-table c++-template-syntax-table
8345 (c-backward-token-2 0 t lim)
8346 (while (and (or (looking-at c-symbol-start)
8347 (looking-at "[<,]\\|::"))
8348 (zerop (c-backward-token-2 1 t lim))))))
8349
8350 (defun c-in-method-def-p ()
8351 ;; Return nil if we aren't in a method definition, otherwise the
8352 ;; position of the initial [+-].
8353 ;;
8354 ;; This function might do hidden buffer changes.
8355 (save-excursion
8356 (beginning-of-line)
8357 (and c-opt-method-key
8358 (looking-at c-opt-method-key)
8359 (point))
8360 ))
8361
8362 ;; Contributed by Kevin Ryde <user42@zip.com.au>.
8363 (defun c-in-gcc-asm-p ()
8364 ;; Return non-nil if point is within a gcc \"asm\" block.
8365 ;;
8366 ;; This should be called with point inside an argument list.
8367 ;;
8368 ;; Only one level of enclosing parentheses is considered, so for
8369 ;; instance nil is returned when in a function call within an asm
8370 ;; operand.
8371 ;;
8372 ;; This function might do hidden buffer changes.
8373
8374 (and c-opt-asm-stmt-key
8375 (save-excursion
8376 (beginning-of-line)
8377 (backward-up-list 1)
8378 (c-beginning-of-statement-1 (point-min) nil t)
8379 (looking-at c-opt-asm-stmt-key))))
8380
8381 (defun c-at-toplevel-p ()
8382 "Return a determination as to whether point is \"at the top level\".
8383 Informally, \"at the top level\" is anywhere where you can write
8384 a function.
8385
8386 More precisely, being at the top-level means that point is either
8387 outside any enclosing block (such as a function definition), or
8388 directly inside a class, namespace or other block that contains
8389 another declaration level.
8390
8391 If point is not at the top-level (e.g. it is inside a method
8392 definition), then nil is returned. Otherwise, if point is at a
8393 top-level not enclosed within a class definition, t is returned.
8394 Otherwise, a 2-vector is returned where the zeroth element is the
8395 buffer position of the start of the class declaration, and the first
8396 element is the buffer position of the enclosing class's opening
8397 brace.
8398
8399 Note that this function might do hidden buffer changes. See the
8400 comment at the start of cc-engine.el for more info."
8401 ;; Note to maintainers: this function consumes a great mass of CPU cycles.
8402 ;; Its use should thus be minimized as far as possible.
8403 (let ((paren-state (c-parse-state)))
8404 (or (not (c-most-enclosing-brace paren-state))
8405 (c-search-uplist-for-classkey paren-state))))
8406
8407 (defun c-just-after-func-arglist-p (&optional lim)
8408 ;; Return non-nil if the point is in the region after the argument
8409 ;; list of a function and its opening brace (or semicolon in case it
8410 ;; got no body). If there are K&R style argument declarations in
8411 ;; that region, the point has to be inside the first one for this
8412 ;; function to recognize it.
8413 ;;
8414 ;; If successful, the point is moved to the first token after the
8415 ;; function header (see `c-forward-decl-or-cast-1' for details) and
8416 ;; the position of the opening paren of the function arglist is
8417 ;; returned.
8418 ;;
8419 ;; The point is clobbered if not successful.
8420 ;;
8421 ;; LIM is used as bound for backward buffer searches.
8422 ;;
8423 ;; This function might do hidden buffer changes.
8424
8425 (let ((beg (point)) id-start)
8426 (and
8427 (eq (c-beginning-of-statement-1 lim) 'same)
8428
8429 (not (and (c-major-mode-is 'objc-mode)
8430 (c-forward-objc-directive)))
8431
8432 (setq id-start
8433 (car-safe (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil)))
8434 (< id-start beg)
8435
8436 ;; There should not be a '=' or ',' between beg and the
8437 ;; start of the declaration since that means we were in the
8438 ;; "expression part" of the declaration.
8439 (or (> (point) beg)
8440 (not (looking-at "[=,]")))
8441
8442 (save-excursion
8443 ;; Check that there's an arglist paren in the
8444 ;; declaration.
8445 (goto-char id-start)
8446 (cond ((eq (char-after) ?\()
8447 ;; The declarator is a paren expression, so skip past it
8448 ;; so that we don't get stuck on that instead of the
8449 ;; function arglist.
8450 (c-forward-sexp))
8451 ((and c-opt-op-identifier-prefix
8452 (looking-at c-opt-op-identifier-prefix))
8453 ;; Don't trip up on "operator ()".
8454 (c-forward-token-2 2 t)))
8455 (and (< (point) beg)
8456 (c-syntactic-re-search-forward "(" beg t t)
8457 (1- (point)))))))
8458
8459 (defun c-in-knr-argdecl (&optional lim)
8460 ;; Return the position of the first argument declaration if point is
8461 ;; inside a K&R style argument declaration list, nil otherwise.
8462 ;; `c-recognize-knr-p' is not checked. If LIM is non-nil, it's a
8463 ;; position that bounds the backward search for the argument list. This
8464 ;; function doesn't move point.
8465 ;;
8466 ;; Point must be within a possible K&R region, e.g. just before a top-level
8467 ;; "{". It must be outside of parens and brackets. The test can return
8468 ;; false positives otherwise.
8469 ;;
8470 ;; This function might do hidden buffer changes.
8471 (save-excursion
8472 (save-restriction
8473 ;; If we're in a macro, our search range is restricted to it. Narrow to
8474 ;; the searchable range.
8475 (let* ((macro-start (save-excursion (and (c-beginning-of-macro) (point))))
8476 (macro-end (save-excursion (and macro-start (c-end-of-macro) (point))))
8477 (low-lim (max (or lim (point-min)) (or macro-start (point-min))))
8478 before-lparen after-rparen
8479 (here (point))
8480 (pp-count-out 20) ; Max number of paren/brace constructs before
8481 ; we give up.
8482 ids ; List of identifiers in the parenthesized list.
8483 id-start after-prec-token decl-or-cast decl-res
8484 c-last-identifier-range identifier-ok)
8485 (narrow-to-region low-lim (or macro-end (point-max)))
8486
8487 ;; Search backwards for the defun's argument list. We give up if we
8488 ;; encounter a "}" (end of a previous defun) an "=" (which can't be in
8489 ;; a knr region) or BOB.
8490 ;;
8491 ;; The criterion for a paren structure being the arg list is:
8492 ;; o - there is non-WS stuff after it but before any "{"; AND
8493 ;; o - the token after it isn't a ";" AND
8494 ;; o - it is preceded by either an identifier (the function name) or
8495 ;; a macro expansion like "DEFUN (...)"; AND
8496 ;; o - its content is a non-empty comma-separated list of identifiers
8497 ;; (an empty arg list won't have a knr region).
8498 ;;
8499 ;; The following snippet illustrates these rules:
8500 ;; int foo (bar, baz, yuk)
8501 ;; int bar [] ;
8502 ;; int (*baz) (my_type) ;
8503 ;; int (*(* yuk) (void)) (void) ;
8504 ;; {
8505 ;;
8506 ;; Additionally, for a knr list to be recognized:
8507 ;; o - The identifier of each declarator up to and including the
8508 ;; one "near" point must be contained in the arg list.
8509
8510 (catch 'knr
8511 (while (> pp-count-out 0) ; go back one paren/bracket pair each time.
8512 (setq pp-count-out (1- pp-count-out))
8513 (c-syntactic-skip-backward "^)]}=")
8514 (cond ((eq (char-before) ?\))
8515 (setq after-rparen (point)))
8516 ((eq (char-before) ?\])
8517 (setq after-rparen nil))
8518 (t ; either } (hit previous defun) or = or no more
8519 ; parens/brackets.
8520 (throw 'knr nil)))
8521
8522 (if after-rparen
8523 ;; We're inside a paren. Could it be our argument list....?
8524 (if
8525 (and
8526 (progn
8527 (goto-char after-rparen)
8528 (unless (c-go-list-backward) (throw 'knr nil)) ;
8529 ;; FIXME!!! What about macros between the parens? 2007/01/20
8530 (setq before-lparen (point)))
8531
8532 ;; It can't be the arg list if next token is ; or {
8533 (progn (goto-char after-rparen)
8534 (c-forward-syntactic-ws)
8535 (not (memq (char-after) '(?\; ?\{ ?\=))))
8536
8537 ;; Is the thing preceding the list an identifier (the
8538 ;; function name), or a macro expansion?
8539 (progn
8540 (goto-char before-lparen)
8541 (eq (c-backward-token-2) 0)
8542 (or (eq (c-on-identifier) (point))
8543 (and (eq (char-after) ?\))
8544 (c-go-up-list-backward)
8545 (eq (c-backward-token-2) 0)
8546 (eq (c-on-identifier) (point)))))
8547
8548 ;; Have we got a non-empty list of comma-separated
8549 ;; identifiers?
8550 (progn
8551 (goto-char before-lparen)
8552 (c-forward-token-2) ; to first token inside parens
8553 (and
8554 (setq id-start (c-on-identifier)) ; Must be at least one.
8555 (catch 'id-list
8556 (while
8557 (progn
8558 (forward-char)
8559 (c-end-of-current-token)
8560 (push (buffer-substring-no-properties id-start
8561 (point))
8562 ids)
8563 (c-forward-syntactic-ws)
8564 (eq (char-after) ?\,))
8565 (c-forward-token-2)
8566 (unless (setq id-start (c-on-identifier))
8567 (throw 'id-list nil)))
8568 (eq (char-after) ?\)))))
8569
8570 ;; Are all the identifiers in the k&r list up to the
8571 ;; current one also in the argument list?
8572 (progn
8573 (forward-char) ; over the )
8574 (setq after-prec-token after-rparen)
8575 (c-forward-syntactic-ws)
8576 (while (and
8577 (or (consp (setq decl-or-cast
8578 (c-forward-decl-or-cast-1
8579 after-prec-token
8580 nil ; Or 'arglist ???
8581 nil)))
8582 (progn
8583 (goto-char after-prec-token)
8584 (c-forward-syntactic-ws)
8585 (setq identifier-ok (eq (char-after) ?{))
8586 nil))
8587 (eq (char-after) ?\;)
8588 (setq after-prec-token (1+ (point)))
8589 (goto-char (car decl-or-cast))
8590 (setq decl-res (c-forward-declarator))
8591 (setq identifier-ok
8592 (member (buffer-substring-no-properties
8593 (car decl-res) (cadr decl-res))
8594 ids))
8595 (progn
8596 (goto-char after-prec-token)
8597 (prog1 (< (point) here)
8598 (c-forward-syntactic-ws))))
8599 (setq identifier-ok nil))
8600 identifier-ok))
8601 ;; ...Yes. We've identified the function's argument list.
8602 (throw 'knr
8603 (progn (goto-char after-rparen)
8604 (c-forward-syntactic-ws)
8605 (point)))
8606 ;; ...No. The current parens aren't the function's arg list.
8607 (goto-char before-lparen))
8608
8609 (or (c-go-list-backward) ; backwards over [ .... ]
8610 (throw 'knr nil)))))))))
8611
8612 (defun c-skip-conditional ()
8613 ;; skip forward over conditional at point, including any predicate
8614 ;; statements in parentheses. No error checking is performed.
8615 ;;
8616 ;; This function might do hidden buffer changes.
8617 (c-forward-sexp (cond
8618 ;; else if()
8619 ((looking-at (concat "\\<else"
8620 "\\([ \t\n]\\|\\\\\n\\)+"
8621 "if\\>\\([^_]\\|$\\)"))
8622 3)
8623 ;; do, else, try, finally
8624 ((looking-at (concat "\\<\\("
8625 "do\\|else\\|try\\|finally"
8626 "\\)\\>\\([^_]\\|$\\)"))
8627 1)
8628 ;; for, if, while, switch, catch, synchronized, foreach
8629 (t 2))))
8630
8631 (defun c-after-conditional (&optional lim)
8632 ;; If looking at the token after a conditional then return the
8633 ;; position of its start, otherwise return nil.
8634 ;;
8635 ;; This function might do hidden buffer changes.
8636 (save-excursion
8637 (and (zerop (c-backward-token-2 1 t lim))
8638 (or (looking-at c-block-stmt-1-key)
8639 (and (eq (char-after) ?\()
8640 (zerop (c-backward-token-2 1 t lim))
8641 (or (looking-at c-block-stmt-2-key)
8642 (looking-at c-block-stmt-1-2-key))))
8643 (point))))
8644
8645 (defun c-after-special-operator-id (&optional lim)
8646 ;; If the point is after an operator identifier that isn't handled
8647 ;; like an ordinary symbol (i.e. like "operator =" in C++) then the
8648 ;; position of the start of that identifier is returned. nil is
8649 ;; returned otherwise. The point may be anywhere in the syntactic
8650 ;; whitespace after the last token of the operator identifier.
8651 ;;
8652 ;; This function might do hidden buffer changes.
8653 (save-excursion
8654 (and c-overloadable-operators-regexp
8655 (zerop (c-backward-token-2 1 nil lim))
8656 (looking-at c-overloadable-operators-regexp)
8657 (or (not c-opt-op-identifier-prefix)
8658 (and
8659 (zerop (c-backward-token-2 1 nil lim))
8660 (looking-at c-opt-op-identifier-prefix)))
8661 (point))))
8662
8663 (defsubst c-backward-to-block-anchor (&optional lim)
8664 ;; Assuming point is at a brace that opens a statement block of some
8665 ;; kind, move to the proper anchor point for that block. It might
8666 ;; need to be adjusted further by c-add-stmt-syntax, but the
8667 ;; position at return is suitable as start position for that
8668 ;; function.
8669 ;;
8670 ;; This function might do hidden buffer changes.
8671 (unless (= (point) (c-point 'boi))
8672 (let ((start (c-after-conditional lim)))
8673 (if start
8674 (goto-char start)))))
8675
8676 (defsubst c-backward-to-decl-anchor (&optional lim)
8677 ;; Assuming point is at a brace that opens the block of a top level
8678 ;; declaration of some kind, move to the proper anchor point for
8679 ;; that block.
8680 ;;
8681 ;; This function might do hidden buffer changes.
8682 (unless (= (point) (c-point 'boi))
8683 (c-beginning-of-statement-1 lim)))
8684
8685 (defun c-search-decl-header-end ()
8686 ;; Search forward for the end of the "header" of the current
8687 ;; declaration. That's the position where the definition body
8688 ;; starts, or the first variable initializer, or the ending
8689 ;; semicolon. I.e. search forward for the closest following
8690 ;; (syntactically relevant) '{', '=' or ';' token. Point is left
8691 ;; _after_ the first found token, or at point-max if none is found.
8692 ;;
8693 ;; This function might do hidden buffer changes.
8694
8695 (let ((base (point)))
8696 (if (c-major-mode-is 'c++-mode)
8697
8698 ;; In C++ we need to take special care to handle operator
8699 ;; tokens and those pesky template brackets.
8700 (while (and
8701 (c-syntactic-re-search-forward "[;{<=]" nil 'move t t)
8702 (or
8703 (c-end-of-current-token base)
8704 ;; Handle operator identifiers, i.e. ignore any
8705 ;; operator token preceded by "operator".
8706 (save-excursion
8707 (and (c-safe (c-backward-sexp) t)
8708 (looking-at c-opt-op-identifier-prefix)))
8709 (and (eq (char-before) ?<)
8710 (c-with-syntax-table c++-template-syntax-table
8711 (if (c-safe (goto-char (c-up-list-forward (point))))
8712 t
8713 (goto-char (point-max))
8714 nil)))))
8715 (setq base (point)))
8716
8717 (while (and
8718 (c-syntactic-re-search-forward "[;{=]" nil 'move t t)
8719 (c-end-of-current-token base))
8720 (setq base (point))))))
8721
8722 (defun c-beginning-of-decl-1 (&optional lim)
8723 ;; Go to the beginning of the current declaration, or the beginning
8724 ;; of the previous one if already at the start of it. Point won't
8725 ;; be moved out of any surrounding paren. Return a cons cell of the
8726 ;; form (MOVE . KNR-POS). MOVE is like the return value from
8727 ;; `c-beginning-of-statement-1'. If point skipped over some K&R
8728 ;; style argument declarations (and they are to be recognized) then
8729 ;; KNR-POS is set to the start of the first such argument
8730 ;; declaration, otherwise KNR-POS is nil. If LIM is non-nil, it's a
8731 ;; position that bounds the backward search.
8732 ;;
8733 ;; NB: Cases where the declaration continues after the block, as in
8734 ;; "struct foo { ... } bar;", are currently recognized as two
8735 ;; declarations, e.g. "struct foo { ... }" and "bar;" in this case.
8736 ;;
8737 ;; This function might do hidden buffer changes.
8738 (catch 'return
8739 (let* ((start (point))
8740 (last-stmt-start (point))
8741 (move (c-beginning-of-statement-1 lim nil t)))
8742
8743 ;; `c-beginning-of-statement-1' stops at a block start, but we
8744 ;; want to continue if the block doesn't begin a top level
8745 ;; construct, i.e. if it isn't preceded by ';', '}', ':', bob,
8746 ;; or an open paren.
8747 (let ((beg (point)) tentative-move)
8748 ;; Go back one "statement" each time round the loop until we're just
8749 ;; after a ;, }, or :, or at BOB or the start of a macro or start of
8750 ;; an ObjC method. This will move over a multiple declaration whose
8751 ;; components are comma separated.
8752 (while (and
8753 ;; Must check with c-opt-method-key in ObjC mode.
8754 (not (and c-opt-method-key
8755 (looking-at c-opt-method-key)))
8756 (/= last-stmt-start (point))
8757 (progn
8758 (c-backward-syntactic-ws lim)
8759 (not (memq (char-before) '(?\; ?} ?: nil))))
8760 (save-excursion
8761 (backward-char)
8762 (not (looking-at "\\s(")))
8763 ;; Check that we don't move from the first thing in a
8764 ;; macro to its header.
8765 (not (eq (setq tentative-move
8766 (c-beginning-of-statement-1 lim nil t))
8767 'macro)))
8768 (setq last-stmt-start beg
8769 beg (point)
8770 move tentative-move))
8771 (goto-char beg))
8772
8773 (when c-recognize-knr-p
8774 (let ((fallback-pos (point)) knr-argdecl-start)
8775 ;; Handle K&R argdecls. Back up after the "statement" jumped
8776 ;; over by `c-beginning-of-statement-1', unless it was the
8777 ;; function body, in which case we're sitting on the opening
8778 ;; brace now. Then test if we're in a K&R argdecl region and
8779 ;; that we started at the other side of the first argdecl in
8780 ;; it.
8781 (unless (eq (char-after) ?{)
8782 (goto-char last-stmt-start))
8783 (if (and (setq knr-argdecl-start (c-in-knr-argdecl lim))
8784 (< knr-argdecl-start start)
8785 (progn
8786 (goto-char knr-argdecl-start)
8787 (not (eq (c-beginning-of-statement-1 lim nil t) 'macro))))
8788 (throw 'return
8789 (cons (if (eq (char-after fallback-pos) ?{)
8790 'previous
8791 'same)
8792 knr-argdecl-start))
8793 (goto-char fallback-pos))))
8794
8795 ;; `c-beginning-of-statement-1' counts each brace block as a separate
8796 ;; statement, so the result will be 'previous if we've moved over any.
8797 ;; So change our result back to 'same if necessary.
8798 ;;
8799 ;; If they were brace list initializers we might not have moved over a
8800 ;; declaration boundary though, so change it to 'same if we've moved
8801 ;; past a '=' before '{', but not ';'. (This ought to be integrated
8802 ;; into `c-beginning-of-statement-1', so we avoid this extra pass which
8803 ;; potentially can search over a large amount of text.). Take special
8804 ;; pains not to get mislead by C++'s "operator=", and the like.
8805 (if (and (eq move 'previous)
8806 (c-with-syntax-table (if (c-major-mode-is 'c++-mode)
8807 c++-template-syntax-table
8808 (syntax-table))
8809 (save-excursion
8810 (and
8811 (progn
8812 (while ; keep going back to "[;={"s until we either find
8813 ; no more, or get to one which isn't an "operator ="
8814 (and (c-syntactic-re-search-forward "[;={]" start t t t)
8815 (eq (char-before) ?=)
8816 c-overloadable-operators-regexp
8817 c-opt-op-identifier-prefix
8818 (save-excursion
8819 (eq (c-backward-token-2) 0)
8820 (looking-at c-overloadable-operators-regexp)
8821 (eq (c-backward-token-2) 0)
8822 (looking-at c-opt-op-identifier-prefix))))
8823 (eq (char-before) ?=))
8824 (c-syntactic-re-search-forward "[;{]" start t t)
8825 (eq (char-before) ?{)
8826 (c-safe (goto-char (c-up-list-forward (point))) t)
8827 (not (c-syntactic-re-search-forward ";" start t t))))))
8828 (cons 'same nil)
8829 (cons move nil)))))
8830
8831 (defun c-end-of-decl-1 ()
8832 ;; Assuming point is at the start of a declaration (as detected by
8833 ;; e.g. `c-beginning-of-decl-1'), go to the end of it. Unlike
8834 ;; `c-beginning-of-decl-1', this function handles the case when a
8835 ;; block is followed by identifiers in e.g. struct declarations in C
8836 ;; or C++. If a proper end was found then t is returned, otherwise
8837 ;; point is moved as far as possible within the current sexp and nil
8838 ;; is returned. This function doesn't handle macros; use
8839 ;; `c-end-of-macro' instead in those cases.
8840 ;;
8841 ;; This function might do hidden buffer changes.
8842 (let ((start (point))
8843 (decl-syntax-table (if (c-major-mode-is 'c++-mode)
8844 c++-template-syntax-table
8845 (syntax-table))))
8846 (catch 'return
8847 (c-search-decl-header-end)
8848
8849 (when (and c-recognize-knr-p
8850 (eq (char-before) ?\;)
8851 (c-in-knr-argdecl start))
8852 ;; Stopped at the ';' in a K&R argdecl section which is
8853 ;; detected using the same criteria as in
8854 ;; `c-beginning-of-decl-1'. Move to the following block
8855 ;; start.
8856 (c-syntactic-re-search-forward "{" nil 'move t))
8857
8858 (when (eq (char-before) ?{)
8859 ;; Encountered a block in the declaration. Jump over it.
8860 (condition-case nil
8861 (goto-char (c-up-list-forward (point)))
8862 (error (goto-char (point-max))
8863 (throw 'return nil)))
8864 (if (or (not c-opt-block-decls-with-vars-key)
8865 (save-excursion
8866 (c-with-syntax-table decl-syntax-table
8867 (let ((lim (point)))
8868 (goto-char start)
8869 (not (and
8870 ;; Check for `c-opt-block-decls-with-vars-key'
8871 ;; before the first paren.
8872 (c-syntactic-re-search-forward
8873 (concat "[;=([{]\\|\\("
8874 c-opt-block-decls-with-vars-key
8875 "\\)")
8876 lim t t t)
8877 (match-beginning 1)
8878 (not (eq (char-before) ?_))
8879 ;; Check that the first following paren is
8880 ;; the block.
8881 (c-syntactic-re-search-forward "[;=([{]"
8882 lim t t t)
8883 (eq (char-before) ?{)))))))
8884 ;; The declaration doesn't have any of the
8885 ;; `c-opt-block-decls-with-vars' keywords in the
8886 ;; beginning, so it ends here at the end of the block.
8887 (throw 'return t)))
8888
8889 (c-with-syntax-table decl-syntax-table
8890 (while (progn
8891 (if (eq (char-before) ?\;)
8892 (throw 'return t))
8893 (c-syntactic-re-search-forward ";" nil 'move t))))
8894 nil)))
8895
8896 (defun c-looking-at-decl-block (containing-sexp goto-start &optional limit)
8897 ;; Assuming the point is at an open brace, check if it starts a
8898 ;; block that contains another declaration level, i.e. that isn't a
8899 ;; statement block or a brace list, and if so return non-nil.
8900 ;;
8901 ;; If the check is successful, the return value is the start of the
8902 ;; keyword that tells what kind of construct it is, i.e. typically
8903 ;; what `c-decl-block-key' matched. Also, if GOTO-START is set then
8904 ;; the point will be at the start of the construct, before any
8905 ;; leading specifiers, otherwise it's at the returned position.
8906 ;;
8907 ;; The point is clobbered if the check is unsuccessful.
8908 ;;
8909 ;; CONTAINING-SEXP is the position of the open of the surrounding
8910 ;; paren, or nil if none.
8911 ;;
8912 ;; The optional LIMIT limits the backward search for the start of
8913 ;; the construct. It's assumed to be at a syntactically relevant
8914 ;; position.
8915 ;;
8916 ;; If any template arglists are found in the searched region before
8917 ;; the open brace, they get marked with paren syntax.
8918 ;;
8919 ;; This function might do hidden buffer changes.
8920
8921 (let ((open-brace (point)) kwd-start first-specifier-pos)
8922 (c-syntactic-skip-backward c-block-prefix-charset limit t)
8923
8924 (when (and c-recognize-<>-arglists
8925 (eq (char-before) ?>))
8926 ;; Could be at the end of a template arglist.
8927 (let ((c-parse-and-markup-<>-arglists t))
8928 (while (and
8929 (c-backward-<>-arglist nil limit)
8930 (progn
8931 (c-syntactic-skip-backward c-block-prefix-charset limit t)
8932 (eq (char-before) ?>))))))
8933
8934 ;; Skip back over noise clauses.
8935 (while (and
8936 c-opt-cpp-prefix
8937 (eq (char-before) ?\))
8938 (let ((after-paren (point)))
8939 (if (and (c-go-list-backward)
8940 (progn (c-backward-syntactic-ws)
8941 (c-simple-skip-symbol-backward))
8942 (or (looking-at c-paren-nontype-key)
8943 (looking-at c-noise-macro-with-parens-name-re)))
8944 (progn
8945 (c-syntactic-skip-backward c-block-prefix-charset limit t)
8946 t)
8947 (goto-char after-paren)
8948 nil))))
8949
8950 ;; Note: Can't get bogus hits inside template arglists below since they
8951 ;; have gotten paren syntax above.
8952 (when (and
8953 ;; If `goto-start' is set we begin by searching for the
8954 ;; first possible position of a leading specifier list.
8955 ;; The `c-decl-block-key' search continues from there since
8956 ;; we know it can't match earlier.
8957 (if goto-start
8958 (when (c-syntactic-re-search-forward c-symbol-start
8959 open-brace t t)
8960 (goto-char (setq first-specifier-pos (match-beginning 0)))
8961 t)
8962 t)
8963
8964 (cond
8965 ((c-syntactic-re-search-forward c-decl-block-key open-brace t t t)
8966 (goto-char (setq kwd-start (match-beginning 0)))
8967 (and
8968 ;; Exclude cases where we matched what would ordinarily
8969 ;; be a block declaration keyword, except where it's not
8970 ;; legal because it's part of a "compound keyword" like
8971 ;; "enum class". Of course, if c-after-brace-list-key
8972 ;; is nil, we can skip the test.
8973 (or (equal c-after-brace-list-key "\\<\\>")
8974 (save-match-data
8975 (save-excursion
8976 (not
8977 (and
8978 (looking-at c-after-brace-list-key)
8979 (= (c-backward-token-2 1 t) 0)
8980 (looking-at c-brace-list-key))))))
8981 (or
8982 ;; Found a keyword that can't be a type?
8983 (match-beginning 1)
8984
8985 ;; Can be a type too, in which case it's the return type of a
8986 ;; function (under the assumption that no declaration level
8987 ;; block construct starts with a type).
8988 (not (c-forward-type))
8989
8990 ;; Jumped over a type, but it could be a declaration keyword
8991 ;; followed by the declared identifier that we've jumped over
8992 ;; instead (e.g. in "class Foo {"). If it indeed is a type
8993 ;; then we should be at the declarator now, so check for a
8994 ;; valid declarator start.
8995 ;;
8996 ;; Note: This doesn't cope with the case when a declared
8997 ;; identifier is followed by e.g. '(' in a language where '('
8998 ;; also might be part of a declarator expression. Currently
8999 ;; there's no such language.
9000 (not (or (looking-at c-symbol-start)
9001 (looking-at c-type-decl-prefix-key))))))
9002
9003 ;; In Pike a list of modifiers may be followed by a brace
9004 ;; to make them apply to many identifiers. Note that the
9005 ;; match data will be empty on return in this case.
9006 ((and (c-major-mode-is 'pike-mode)
9007 (progn
9008 (goto-char open-brace)
9009 (= (c-backward-token-2) 0))
9010 (looking-at c-specifier-key)
9011 ;; Use this variant to avoid yet another special regexp.
9012 (c-keyword-member (c-keyword-sym (match-string 1))
9013 'c-modifier-kwds))
9014 (setq kwd-start (point))
9015 t)))
9016
9017 ;; Got a match.
9018
9019 (if goto-start
9020 ;; Back up over any preceding specifiers and their clauses
9021 ;; by going forward from `first-specifier-pos', which is the
9022 ;; earliest possible position where the specifier list can
9023 ;; start.
9024 (progn
9025 (goto-char first-specifier-pos)
9026
9027 (while (< (point) kwd-start)
9028 (if (looking-at c-symbol-key)
9029 ;; Accept any plain symbol token on the ground that
9030 ;; it's a specifier masked through a macro (just
9031 ;; like `c-forward-decl-or-cast-1' skip forward over
9032 ;; such tokens).
9033 ;;
9034 ;; Could be more restrictive wrt invalid keywords,
9035 ;; but that'd only occur in invalid code so there's
9036 ;; no use spending effort on it.
9037 (let ((end (match-end 0)))
9038 (unless (c-forward-keyword-clause 0)
9039 (goto-char end)
9040 (c-forward-syntactic-ws)))
9041
9042 ;; Can't parse a declaration preamble and is still
9043 ;; before `kwd-start'. That means `first-specifier-pos'
9044 ;; was in some earlier construct. Search again.
9045 (if (c-syntactic-re-search-forward c-symbol-start
9046 kwd-start 'move t)
9047 (goto-char (setq first-specifier-pos (match-beginning 0)))
9048 ;; Got no preamble before the block declaration keyword.
9049 (setq first-specifier-pos kwd-start))))
9050
9051 (goto-char first-specifier-pos))
9052 (goto-char kwd-start))
9053
9054 kwd-start)))
9055
9056 (defun c-search-uplist-for-classkey (paren-state)
9057 ;; Check if the closest containing paren sexp is a declaration
9058 ;; block, returning a 2 element vector in that case. Aref 0
9059 ;; contains the bufpos at boi of the class key line, and aref 1
9060 ;; contains the bufpos of the open brace. This function is an
9061 ;; obsolete wrapper for `c-looking-at-decl-block'.
9062 ;;
9063 ;; This function might do hidden buffer changes.
9064 (let ((open-paren-pos (c-most-enclosing-brace paren-state)))
9065 (when open-paren-pos
9066 (save-excursion
9067 (goto-char open-paren-pos)
9068 (when (and (eq (char-after) ?{)
9069 (c-looking-at-decl-block
9070 (c-safe-position open-paren-pos paren-state)
9071 nil))
9072 (back-to-indentation)
9073 (vector (point) open-paren-pos))))))
9074
9075 (defun c-most-enclosing-decl-block (paren-state)
9076 ;; Return the buffer position of the most enclosing decl-block brace (in the
9077 ;; sense of c-looking-at-decl-block) in the PAREN-STATE structure, or nil if
9078 ;; none was found.
9079 (let* ((open-brace (c-pull-open-brace paren-state))
9080 (next-open-brace (c-pull-open-brace paren-state)))
9081 (while (and open-brace
9082 (save-excursion
9083 (goto-char open-brace)
9084 (not (c-looking-at-decl-block next-open-brace nil))))
9085 (setq open-brace next-open-brace
9086 next-open-brace (c-pull-open-brace paren-state)))
9087 open-brace))
9088
9089 (defun c-cheap-inside-bracelist-p (paren-state)
9090 ;; Return the position of the L-brace if point is inside a brace list
9091 ;; initialization of an array, etc. This is an approximate function,
9092 ;; designed for speed over accuracy. It will not find every bracelist, but
9093 ;; a non-nil result is reliable. We simply search for "= {" (naturally with
9094 ;; syntactic whitespace allowed). PAREN-STATE is the normal thing that it
9095 ;; is everywhere else.
9096 (let (b-pos)
9097 (save-excursion
9098 (while
9099 (and (setq b-pos (c-pull-open-brace paren-state))
9100 (progn (goto-char b-pos)
9101 (c-backward-sws)
9102 (c-backward-token-2)
9103 (not (looking-at "=")))))
9104 b-pos)))
9105
9106 (defun c-backward-typed-enum-colon ()
9107 ;; We're at a "{" which might be the opening brace of a enum which is
9108 ;; strongly typed (by a ":" followed by a type). If this is the case, leave
9109 ;; point before the colon and return t. Otherwise leave point unchanged and return nil.
9110 ;; Match data will be clobbered.
9111 (let ((here (point))
9112 (colon-pos nil))
9113 (save-excursion
9114 (while
9115 (and (eql (c-backward-token-2) 0)
9116 (or (not (looking-at "\\s)"))
9117 (c-go-up-list-backward))
9118 (cond
9119 ((and (eql (char-after) ?:)
9120 (save-excursion
9121 (c-backward-syntactic-ws)
9122 (c-on-identifier)))
9123 (setq colon-pos (point))
9124 (forward-char)
9125 (c-forward-syntactic-ws)
9126 (or (and (c-forward-type)
9127 (progn (c-forward-syntactic-ws)
9128 (eq (point) here)))
9129 (setq colon-pos nil))
9130 nil)
9131 ((eql (char-after) ?\()
9132 t)
9133 ((looking-at c-symbol-key)
9134 t)
9135 (t nil)))))
9136 (when colon-pos
9137 (goto-char colon-pos)
9138 t)))
9139
9140 (defun c-backward-over-enum-header ()
9141 ;; We're at a "{". Move back to the enum-like keyword that starts this
9142 ;; declaration and return t, otherwise don't move and return nil.
9143 (let ((here (point))
9144 up-sexp-pos before-identifier)
9145 (when c-recognize-post-brace-list-type-p
9146 (c-backward-typed-enum-colon))
9147 (while
9148 (and
9149 (eq (c-backward-token-2) 0)
9150 (or (not (looking-at "\\s)"))
9151 (c-go-up-list-backward))
9152 (cond
9153 ((and (looking-at c-symbol-key) (c-on-identifier)
9154 (not before-identifier))
9155 (setq before-identifier t))
9156 ((and before-identifier
9157 (or (eql (char-after) ?,)
9158 (looking-at c-postfix-decl-spec-key)))
9159 (setq before-identifier nil)
9160 t)
9161 ((looking-at c-after-brace-list-key) t)
9162 ((looking-at c-brace-list-key) nil)
9163 ((eq (char-after) ?\()
9164 (and (eq (c-backward-token-2) 0)
9165 (or (looking-at c-decl-hangon-key)
9166 (and c-opt-cpp-prefix
9167 (looking-at c-noise-macro-with-parens-name-re)))))
9168
9169 ((and c-recognize-<>-arglists
9170 (eq (char-after) ?<)
9171 (looking-at "\\s("))
9172 t)
9173 (t nil))))
9174 (or (looking-at c-brace-list-key)
9175 (progn (goto-char here) nil))))
9176
9177 (defun c-inside-bracelist-p (containing-sexp paren-state)
9178 ;; return the buffer position of the beginning of the brace list
9179 ;; statement if we're inside a brace list, otherwise return nil.
9180 ;; CONTAINING-SEXP is the buffer pos of the innermost containing
9181 ;; paren. PAREN-STATE is the remainder of the state of enclosing
9182 ;; braces
9183 ;;
9184 ;; N.B.: This algorithm can potentially get confused by cpp macros
9185 ;; placed in inconvenient locations. It's a trade-off we make for
9186 ;; speed.
9187 ;;
9188 ;; This function might do hidden buffer changes.
9189 (or
9190 ;; This will pick up brace list declarations.
9191 (save-excursion
9192 (goto-char containing-sexp)
9193 (c-backward-over-enum-header))
9194 ;; this will pick up array/aggregate init lists, even if they are nested.
9195 (save-excursion
9196 (let ((class-key
9197 ;; Pike can have class definitions anywhere, so we must
9198 ;; check for the class key here.
9199 (and (c-major-mode-is 'pike-mode)
9200 c-decl-block-key))
9201 bufpos braceassignp lim next-containing macro-start)
9202 (while (and (not bufpos)
9203 containing-sexp)
9204 (when paren-state
9205 (if (consp (car paren-state))
9206 (setq lim (cdr (car paren-state))
9207 paren-state (cdr paren-state))
9208 (setq lim (car paren-state)))
9209 (when paren-state
9210 (setq next-containing (car paren-state)
9211 paren-state (cdr paren-state))))
9212 (goto-char containing-sexp)
9213 (if (c-looking-at-inexpr-block next-containing next-containing)
9214 ;; We're in an in-expression block of some kind. Do not
9215 ;; check nesting. We deliberately set the limit to the
9216 ;; containing sexp, so that c-looking-at-inexpr-block
9217 ;; doesn't check for an identifier before it.
9218 (setq containing-sexp nil)
9219 ;; see if the open brace is preceded by = or [...] in
9220 ;; this statement, but watch out for operator=
9221 (setq braceassignp 'dontknow)
9222 (c-backward-token-2 1 t lim)
9223 ;; Checks to do only on the first sexp before the brace.
9224 (when (and c-opt-inexpr-brace-list-key
9225 (eq (char-after) ?\[))
9226 ;; In Java, an initialization brace list may follow
9227 ;; directly after "new Foo[]", so check for a "new"
9228 ;; earlier.
9229 (while (eq braceassignp 'dontknow)
9230 (setq braceassignp
9231 (cond ((/= (c-backward-token-2 1 t lim) 0) nil)
9232 ((looking-at c-opt-inexpr-brace-list-key) t)
9233 ((looking-at "\\sw\\|\\s_\\|[.[]")
9234 ;; Carry on looking if this is an
9235 ;; identifier (may contain "." in Java)
9236 ;; or another "[]" sexp.
9237 'dontknow)
9238 (t nil)))))
9239 ;; Checks to do on all sexps before the brace, up to the
9240 ;; beginning of the statement.
9241 (while (eq braceassignp 'dontknow)
9242 (cond ((eq (char-after) ?\;)
9243 (setq braceassignp nil))
9244 ((and class-key
9245 (looking-at class-key))
9246 (setq braceassignp nil))
9247 ((eq (char-after) ?=)
9248 ;; We've seen a =, but must check earlier tokens so
9249 ;; that it isn't something that should be ignored.
9250 (setq braceassignp 'maybe)
9251 (while (and (eq braceassignp 'maybe)
9252 (zerop (c-backward-token-2 1 t lim)))
9253 (setq braceassignp
9254 (cond
9255 ;; Check for operator =
9256 ((and c-opt-op-identifier-prefix
9257 (looking-at c-opt-op-identifier-prefix))
9258 nil)
9259 ;; Check for `<opchar>= in Pike.
9260 ((and (c-major-mode-is 'pike-mode)
9261 (or (eq (char-after) ?`)
9262 ;; Special case for Pikes
9263 ;; `[]=, since '[' is not in
9264 ;; the punctuation class.
9265 (and (eq (char-after) ?\[)
9266 (eq (char-before) ?`))))
9267 nil)
9268 ((looking-at "\\s.") 'maybe)
9269 ;; make sure we're not in a C++ template
9270 ;; argument assignment
9271 ((and
9272 (c-major-mode-is 'c++-mode)
9273 (save-excursion
9274 (let ((here (point))
9275 (pos< (progn
9276 (skip-chars-backward "^<>")
9277 (point))))
9278 (and (eq (char-before) ?<)
9279 (not (c-crosses-statement-barrier-p
9280 pos< here))
9281 (not (c-in-literal))
9282 ))))
9283 nil)
9284 (t t))))))
9285 (if (and (eq braceassignp 'dontknow)
9286 (/= (c-backward-token-2 1 t lim) 0))
9287 (setq braceassignp nil)))
9288 (cond
9289 (braceassignp
9290 ;; We've hit the beginning of the aggregate list.
9291 (c-beginning-of-statement-1
9292 (c-most-enclosing-brace paren-state))
9293 (setq bufpos (point)))
9294 ((eq (char-after) ?\;)
9295 ;; Brace lists can't contain a semicolon, so we're done.
9296 (setq containing-sexp nil))
9297 ((and (setq macro-start (point))
9298 (c-forward-to-cpp-define-body)
9299 (eq (point) containing-sexp))
9300 ;; We've a macro whose expansion starts with the '{'.
9301 ;; Heuristically, if we have a ';' in it we've not got a
9302 ;; brace list, otherwise we have.
9303 (let ((macro-end (progn (c-end-of-macro) (point))))
9304 (goto-char containing-sexp)
9305 (forward-char)
9306 (if (and (c-syntactic-re-search-forward "[;,]" macro-end t t)
9307 (eq (char-before) ?\;))
9308 (setq bufpos nil
9309 containing-sexp nil)
9310 (setq bufpos macro-start))))
9311 (t
9312 ;; Go up one level
9313 (setq containing-sexp next-containing
9314 lim nil
9315 next-containing nil)))))
9316
9317 bufpos))
9318 ))
9319
9320 (defun c-looking-at-special-brace-list (&optional lim)
9321 ;; If we're looking at the start of a pike-style list, i.e., `({ })',
9322 ;; `([ ])', `(< >)', etc., a cons of a cons of its starting and ending
9323 ;; positions and its entry in c-special-brace-lists is returned, nil
9324 ;; otherwise. The ending position is nil if the list is still open.
9325 ;; LIM is the limit for forward search. The point may either be at
9326 ;; the `(' or at the following paren character. Tries to check the
9327 ;; matching closer, but assumes it's correct if no balanced paren is
9328 ;; found (i.e. the case `({ ... } ... )' is detected as _not_ being
9329 ;; a special brace list).
9330 ;;
9331 ;; This function might do hidden buffer changes.
9332 (if c-special-brace-lists
9333 (condition-case ()
9334 (save-excursion
9335 (let ((beg (point))
9336 inner-beg end type)
9337 (c-forward-syntactic-ws)
9338 (if (eq (char-after) ?\()
9339 (progn
9340 (forward-char 1)
9341 (c-forward-syntactic-ws)
9342 (setq inner-beg (point))
9343 (setq type (assq (char-after) c-special-brace-lists)))
9344 (if (setq type (assq (char-after) c-special-brace-lists))
9345 (progn
9346 (setq inner-beg (point))
9347 (c-backward-syntactic-ws)
9348 (forward-char -1)
9349 (setq beg (if (eq (char-after) ?\()
9350 (point)
9351 nil)))))
9352 (if (and beg type)
9353 (if (and (c-safe
9354 (goto-char beg)
9355 (c-forward-sexp 1)
9356 (setq end (point))
9357 (= (char-before) ?\)))
9358 (c-safe
9359 (goto-char inner-beg)
9360 (if (looking-at "\\s(")
9361 ;; Check balancing of the inner paren
9362 ;; below.
9363 (progn
9364 (c-forward-sexp 1)
9365 t)
9366 ;; If the inner char isn't a paren then
9367 ;; we can't check balancing, so just
9368 ;; check the char before the outer
9369 ;; closing paren.
9370 (goto-char end)
9371 (backward-char)
9372 (c-backward-syntactic-ws)
9373 (= (char-before) (cdr type)))))
9374 (if (or (/= (char-syntax (char-before)) ?\))
9375 (= (progn
9376 (c-forward-syntactic-ws)
9377 (point))
9378 (1- end)))
9379 (cons (cons beg end) type))
9380 (cons (list beg) type)))))
9381 (error nil))))
9382
9383 (defun c-looking-at-bos (&optional lim)
9384 ;; Return non-nil if between two statements or declarations, assuming
9385 ;; point is not inside a literal or comment.
9386 ;;
9387 ;; Obsolete - `c-at-statement-start-p' or `c-at-expression-start-p'
9388 ;; are recommended instead.
9389 ;;
9390 ;; This function might do hidden buffer changes.
9391 (c-at-statement-start-p))
9392 (make-obsolete 'c-looking-at-bos 'c-at-statement-start-p "22.1")
9393
9394 (defun c-looking-at-inexpr-block (lim containing-sexp &optional check-at-end)
9395 ;; Return non-nil if we're looking at the beginning of a block
9396 ;; inside an expression. The value returned is actually a cons of
9397 ;; either 'inlambda, 'inexpr-statement or 'inexpr-class and the
9398 ;; position of the beginning of the construct.
9399 ;;
9400 ;; LIM limits the backward search. CONTAINING-SEXP is the start
9401 ;; position of the closest containing list. If it's nil, the
9402 ;; containing paren isn't used to decide whether we're inside an
9403 ;; expression or not. If both LIM and CONTAINING-SEXP are used, LIM
9404 ;; needs to be farther back.
9405 ;;
9406 ;; If CHECK-AT-END is non-nil then extra checks at the end of the
9407 ;; brace block might be done. It should only be used when the
9408 ;; construct can be assumed to be complete, i.e. when the original
9409 ;; starting position was further down than that.
9410 ;;
9411 ;; This function might do hidden buffer changes.
9412
9413 (save-excursion
9414 (let ((res 'maybe) passed-paren
9415 (closest-lim (or containing-sexp lim (point-min)))
9416 ;; Look at the character after point only as a last resort
9417 ;; when we can't disambiguate.
9418 (block-follows (and (eq (char-after) ?{) (point))))
9419
9420 (while (and (eq res 'maybe)
9421 (progn (c-backward-syntactic-ws)
9422 (> (point) closest-lim))
9423 (not (bobp))
9424 (progn (backward-char)
9425 (looking-at "[]).]\\|\\w\\|\\s_"))
9426 (c-safe (forward-char)
9427 (goto-char (scan-sexps (point) -1))))
9428
9429 (setq res
9430 (if (looking-at c-keywords-regexp)
9431 (let ((kw-sym (c-keyword-sym (match-string 1))))
9432 (cond
9433 ((and block-follows
9434 (c-keyword-member kw-sym 'c-inexpr-class-kwds))
9435 (and (not (eq passed-paren ?\[))
9436 (or (not (looking-at c-class-key))
9437 ;; If the class definition is at the start of
9438 ;; a statement, we don't consider it an
9439 ;; in-expression class.
9440 (let ((prev (point)))
9441 (while (and
9442 (= (c-backward-token-2 1 nil closest-lim) 0)
9443 (eq (char-syntax (char-after)) ?w))
9444 (setq prev (point)))
9445 (goto-char prev)
9446 (not (c-at-statement-start-p)))
9447 ;; Also, in Pike we treat it as an
9448 ;; in-expression class if it's used in an
9449 ;; object clone expression.
9450 (save-excursion
9451 (and check-at-end
9452 (c-major-mode-is 'pike-mode)
9453 (progn (goto-char block-follows)
9454 (zerop (c-forward-token-2 1 t)))
9455 (eq (char-after) ?\())))
9456 (cons 'inexpr-class (point))))
9457 ((c-keyword-member kw-sym 'c-inexpr-block-kwds)
9458 (when (not passed-paren)
9459 (cons 'inexpr-statement (point))))
9460 ((c-keyword-member kw-sym 'c-lambda-kwds)
9461 (when (or (not passed-paren)
9462 (eq passed-paren ?\())
9463 (cons 'inlambda (point))))
9464 ((c-keyword-member kw-sym 'c-block-stmt-kwds)
9465 nil)
9466 (t
9467 'maybe)))
9468
9469 (if (looking-at "\\s(")
9470 (if passed-paren
9471 (if (and (eq passed-paren ?\[)
9472 (eq (char-after) ?\[))
9473 ;; Accept several square bracket sexps for
9474 ;; Java array initializations.
9475 'maybe)
9476 (setq passed-paren (char-after))
9477 'maybe)
9478 'maybe))))
9479
9480 (if (eq res 'maybe)
9481 (when (and c-recognize-paren-inexpr-blocks
9482 block-follows
9483 containing-sexp
9484 (eq (char-after containing-sexp) ?\())
9485 (goto-char containing-sexp)
9486 (if (or (save-excursion
9487 (c-backward-syntactic-ws lim)
9488 (while (and (eq (char-before) ?>)
9489 (c-get-char-property (1- (point))
9490 'syntax-table)
9491 (c-go-list-backward nil lim))
9492 (c-backward-syntactic-ws lim))
9493 (and (> (point) (or lim (point-min)))
9494 (c-on-identifier)))
9495 (and c-special-brace-lists
9496 (c-looking-at-special-brace-list)))
9497 nil
9498 (cons 'inexpr-statement (point))))
9499
9500 res))))
9501
9502 (defun c-looking-at-inexpr-block-backward (paren-state)
9503 ;; Returns non-nil if we're looking at the end of an in-expression
9504 ;; block, otherwise the same as `c-looking-at-inexpr-block'.
9505 ;; PAREN-STATE is the paren state relevant at the current position.
9506 ;;
9507 ;; This function might do hidden buffer changes.
9508 (save-excursion
9509 ;; We currently only recognize a block.
9510 (let ((here (point))
9511 (elem (car-safe paren-state))
9512 containing-sexp)
9513 (when (and (consp elem)
9514 (progn (goto-char (cdr elem))
9515 (c-forward-syntactic-ws here)
9516 (= (point) here)))
9517 (goto-char (car elem))
9518 (if (setq paren-state (cdr paren-state))
9519 (setq containing-sexp (car-safe paren-state)))
9520 (c-looking-at-inexpr-block (c-safe-position containing-sexp
9521 paren-state)
9522 containing-sexp)))))
9523
9524 (defun c-at-macro-vsemi-p (&optional pos)
9525 ;; Is there a "virtual semicolon" at POS or point?
9526 ;; (See cc-defs.el for full details of "virtual semicolons".)
9527 ;;
9528 ;; This is true when point is at the last non syntactic WS position on the
9529 ;; line, there is a macro call last on the line, and this particular macro's
9530 ;; name is defined by the regexp `c-vs-macro-regexp' as not needing a
9531 ;; semicolon.
9532 (save-excursion
9533 (save-restriction
9534 (widen)
9535 (if pos
9536 (goto-char pos)
9537 (setq pos (point)))
9538 (and
9539 c-macro-with-semi-re
9540 (eq (skip-chars-backward " \t") 0)
9541
9542 ;; Check we've got nothing after this except comments and empty lines
9543 ;; joined by escaped EOLs.
9544 (skip-chars-forward " \t") ; always returns non-nil.
9545 (progn
9546 (while ; go over 1 block comment per iteration.
9547 (and
9548 (looking-at "\\(\\\\[\n\r][ \t]*\\)*")
9549 (goto-char (match-end 0))
9550 (cond
9551 ((looking-at c-block-comment-start-regexp)
9552 (and (forward-comment 1)
9553 (skip-chars-forward " \t"))) ; always returns non-nil
9554 ((looking-at c-line-comment-start-regexp)
9555 (end-of-line)
9556 nil)
9557 (t nil))))
9558 (eolp))
9559
9560 (goto-char pos)
9561 (progn (c-backward-syntactic-ws)
9562 (eq (point) pos))
9563
9564 ;; Check for one of the listed macros being before point.
9565 (or (not (eq (char-before) ?\)))
9566 (when (c-go-list-backward)
9567 (c-backward-syntactic-ws)
9568 t))
9569 (c-simple-skip-symbol-backward)
9570 (looking-at c-macro-with-semi-re)
9571 (goto-char pos)
9572 (not (c-in-literal)))))) ; The most expensive check last.
9573
9574 (defun c-macro-vsemi-status-unknown-p () t) ; See cc-defs.el.
9575
9576 \f
9577 ;; `c-guess-basic-syntax' and the functions that precedes it below
9578 ;; implements the main decision tree for determining the syntactic
9579 ;; analysis of the current line of code.
9580
9581 ;; Dynamically bound to t when `c-guess-basic-syntax' is called during
9582 ;; auto newline analysis.
9583 (defvar c-auto-newline-analysis nil)
9584
9585 (defun c-brace-anchor-point (bracepos)
9586 ;; BRACEPOS is the position of a brace in a construct like "namespace
9587 ;; Bar {". Return the anchor point in this construct; this is the
9588 ;; earliest symbol on the brace's line which isn't earlier than
9589 ;; "namespace".
9590 ;;
9591 ;; Currently (2007-08-17), "like namespace" means "matches
9592 ;; c-other-block-decl-kwds". It doesn't work with "class" or "struct"
9593 ;; or anything like that.
9594 (save-excursion
9595 (let ((boi (c-point 'boi bracepos)))
9596 (goto-char bracepos)
9597 (while (and (> (point) boi)
9598 (not (looking-at c-other-decl-block-key)))
9599 (c-backward-token-2))
9600 (if (> (point) boi) (point) boi))))
9601
9602 (defsubst c-add-syntax (symbol &rest args)
9603 ;; A simple function to prepend a new syntax element to
9604 ;; `c-syntactic-context'. Using `setq' on it is unsafe since it
9605 ;; should always be dynamically bound but since we read it first
9606 ;; we'll fail properly anyway if this function is misused.
9607 (setq c-syntactic-context (cons (cons symbol args)
9608 c-syntactic-context)))
9609
9610 (defsubst c-append-syntax (symbol &rest args)
9611 ;; Like `c-add-syntax' but appends to the end of the syntax list.
9612 ;; (Normally not necessary.)
9613 (setq c-syntactic-context (nconc c-syntactic-context
9614 (list (cons symbol args)))))
9615
9616 (defun c-add-stmt-syntax (syntax-symbol
9617 syntax-extra-args
9618 stop-at-boi-only
9619 containing-sexp
9620 paren-state)
9621 ;; Add the indicated SYNTAX-SYMBOL to `c-syntactic-context', extending it as
9622 ;; needed with further syntax elements of the types `substatement',
9623 ;; `inexpr-statement', `arglist-cont-nonempty', `statement-block-intro', and
9624 ;; `defun-block-intro'.
9625 ;;
9626 ;; Do the generic processing to anchor the given syntax symbol on
9627 ;; the preceding statement: Skip over any labels and containing
9628 ;; statements on the same line, and then search backward until we
9629 ;; find a statement or block start that begins at boi without a
9630 ;; label or comment.
9631 ;;
9632 ;; Point is assumed to be at the prospective anchor point for the
9633 ;; given SYNTAX-SYMBOL. More syntax entries are added if we need to
9634 ;; skip past open parens and containing statements. Most of the added
9635 ;; syntax elements will get the same anchor point - the exception is
9636 ;; for an anchor in a construct like "namespace"[*] - this is as early
9637 ;; as possible in the construct but on the same line as the {.
9638 ;;
9639 ;; [*] i.e. with a keyword matching c-other-block-decl-kwds.
9640 ;;
9641 ;; SYNTAX-EXTRA-ARGS are a list of the extra arguments for the
9642 ;; syntax symbol. They are appended after the anchor point.
9643 ;;
9644 ;; If STOP-AT-BOI-ONLY is nil, we can stop in the middle of the line
9645 ;; if the current statement starts there.
9646 ;;
9647 ;; Note: It's not a problem if PAREN-STATE "overshoots"
9648 ;; CONTAINING-SEXP, i.e. contains info about parens further down.
9649 ;;
9650 ;; This function might do hidden buffer changes.
9651
9652 (if (= (point) (c-point 'boi))
9653 ;; This is by far the most common case, so let's give it special
9654 ;; treatment.
9655 (apply 'c-add-syntax syntax-symbol (point) syntax-extra-args)
9656
9657 (let ((syntax-last c-syntactic-context)
9658 (boi (c-point 'boi))
9659 ;; Set when we're on a label, so that we don't stop there.
9660 ;; FIXME: To be complete we should check if we're on a label
9661 ;; now at the start.
9662 on-label)
9663
9664 ;; Use point as the anchor point for "namespace", "extern", etc.
9665 (apply 'c-add-syntax syntax-symbol
9666 (if (rassq syntax-symbol c-other-decl-block-key-in-symbols-alist)
9667 (point) nil)
9668 syntax-extra-args)
9669
9670 ;; Loop while we have to back out of containing blocks.
9671 (while
9672 (and
9673 (catch 'back-up-block
9674
9675 ;; Loop while we have to back up statements.
9676 (while (or (/= (point) boi)
9677 on-label
9678 (looking-at c-comment-start-regexp))
9679
9680 ;; Skip past any comments that stands between the
9681 ;; statement start and boi.
9682 (let ((savepos (point)))
9683 (while (and (/= savepos boi)
9684 (c-backward-single-comment))
9685 (setq savepos (point)
9686 boi (c-point 'boi)))
9687 (goto-char savepos))
9688
9689 ;; Skip to the beginning of this statement or backward
9690 ;; another one.
9691 (let ((old-pos (point))
9692 (old-boi boi)
9693 (step-type (c-beginning-of-statement-1 containing-sexp)))
9694 (setq boi (c-point 'boi)
9695 on-label (eq step-type 'label))
9696
9697 (cond ((= (point) old-pos)
9698 ;; If we didn't move we're at the start of a block and
9699 ;; have to continue outside it.
9700 (throw 'back-up-block t))
9701
9702 ((and (eq step-type 'up)
9703 (>= (point) old-boi)
9704 (looking-at "else\\>[^_]")
9705 (save-excursion
9706 (goto-char old-pos)
9707 (looking-at "if\\>[^_]")))
9708 ;; Special case to avoid deeper and deeper indentation
9709 ;; of "else if" clauses.
9710 )
9711
9712 ((and (not stop-at-boi-only)
9713 (/= old-pos old-boi)
9714 (memq step-type '(up previous)))
9715 ;; If stop-at-boi-only is nil, we shouldn't back up
9716 ;; over previous or containing statements to try to
9717 ;; reach boi, so go back to the last position and
9718 ;; exit.
9719 (goto-char old-pos)
9720 (throw 'back-up-block nil))
9721
9722 (t
9723 (if (and (not stop-at-boi-only)
9724 (memq step-type '(up previous beginning)))
9725 ;; If we've moved into another statement then we
9726 ;; should no longer try to stop in the middle of a
9727 ;; line.
9728 (setq stop-at-boi-only t))
9729
9730 ;; Record this as a substatement if we skipped up one
9731 ;; level.
9732 (when (eq step-type 'up)
9733 (c-add-syntax 'substatement nil))))
9734 )))
9735
9736 containing-sexp)
9737
9738 ;; Now we have to go out of this block.
9739 (goto-char containing-sexp)
9740
9741 ;; Don't stop in the middle of a special brace list opener
9742 ;; like "({".
9743 (when c-special-brace-lists
9744 (let ((special-list (c-looking-at-special-brace-list)))
9745 (when (and special-list
9746 (< (car (car special-list)) (point)))
9747 (setq containing-sexp (car (car special-list)))
9748 (goto-char containing-sexp))))
9749
9750 (setq paren-state (c-whack-state-after containing-sexp paren-state)
9751 containing-sexp (c-most-enclosing-brace paren-state)
9752 boi (c-point 'boi))
9753
9754 ;; Analyze the construct in front of the block we've stepped out
9755 ;; from and add the right syntactic element for it.
9756 (let ((paren-pos (point))
9757 (paren-char (char-after))
9758 step-type)
9759
9760 (if (eq paren-char ?\()
9761 ;; Stepped out of a parenthesis block, so we're in an
9762 ;; expression now.
9763 (progn
9764 (when (/= paren-pos boi)
9765 (if (and c-recognize-paren-inexpr-blocks
9766 (progn
9767 (c-backward-syntactic-ws containing-sexp)
9768 (or (not (looking-at "\\>"))
9769 (not (c-on-identifier))))
9770 (save-excursion
9771 (goto-char (1+ paren-pos))
9772 (c-forward-syntactic-ws)
9773 (eq (char-after) ?{)))
9774 ;; Stepped out of an in-expression statement. This
9775 ;; syntactic element won't get an anchor pos.
9776 (c-add-syntax 'inexpr-statement)
9777
9778 ;; A parenthesis normally belongs to an arglist.
9779 (c-add-syntax 'arglist-cont-nonempty nil paren-pos)))
9780
9781 (goto-char (max boi
9782 (if containing-sexp
9783 (1+ containing-sexp)
9784 (point-min))))
9785 (setq step-type 'same
9786 on-label nil))
9787
9788 ;; Stepped out of a brace block.
9789 (setq step-type (c-beginning-of-statement-1 containing-sexp)
9790 on-label (eq step-type 'label))
9791
9792 (if (and (eq step-type 'same)
9793 (/= paren-pos (point)))
9794 (let (inexpr)
9795 (cond
9796 ((save-excursion
9797 (goto-char paren-pos)
9798 (setq inexpr (c-looking-at-inexpr-block
9799 (c-safe-position containing-sexp paren-state)
9800 containing-sexp)))
9801 (c-add-syntax (if (eq (car inexpr) 'inlambda)
9802 'defun-block-intro
9803 'statement-block-intro)
9804 nil))
9805 ((looking-at c-other-decl-block-key)
9806 (c-add-syntax
9807 (cdr (assoc (match-string 1)
9808 c-other-decl-block-key-in-symbols-alist))
9809 (max (c-point 'boi paren-pos) (point))))
9810 (t (c-add-syntax 'defun-block-intro nil))))
9811
9812 (c-add-syntax 'statement-block-intro nil)))
9813
9814 (if (= paren-pos boi)
9815 ;; Always done if the open brace was at boi. The
9816 ;; c-beginning-of-statement-1 call above is necessary
9817 ;; anyway, to decide the type of block-intro to add.
9818 (goto-char paren-pos)
9819 (setq boi (c-point 'boi)))
9820 ))
9821
9822 ;; Fill in the current point as the anchor for all the symbols
9823 ;; added above.
9824 (let ((p c-syntactic-context) q)
9825 (while (not (eq p syntax-last))
9826 (setq q (cdr (car p))) ; e.g. (nil 28) [from (arglist-cont-nonempty nil 28)]
9827 (while q
9828 (unless (car q)
9829 (setcar q (point)))
9830 (setq q (cdr q)))
9831 (setq p (cdr p))))
9832 )))
9833
9834 (defun c-add-class-syntax (symbol
9835 containing-decl-open
9836 containing-decl-start
9837 containing-decl-kwd
9838 paren-state)
9839 ;; The inclass and class-close syntactic symbols are added in
9840 ;; several places and some work is needed to fix everything.
9841 ;; Therefore it's collected here.
9842 ;;
9843 ;; This function might do hidden buffer changes.
9844 (goto-char containing-decl-open)
9845 (if (and (eq symbol 'inclass) (= (point) (c-point 'boi)))
9846 (progn
9847 (c-add-syntax symbol containing-decl-open)
9848 containing-decl-open)
9849 (goto-char containing-decl-start)
9850 ;; Ought to use `c-add-stmt-syntax' instead of backing up to boi
9851 ;; here, but we have to do like this for compatibility.
9852 (back-to-indentation)
9853 (c-add-syntax symbol (point))
9854 (if (and (c-keyword-member containing-decl-kwd
9855 'c-inexpr-class-kwds)
9856 (/= containing-decl-start (c-point 'boi containing-decl-start)))
9857 (c-add-syntax 'inexpr-class))
9858 (point)))
9859
9860 (defun c-guess-continued-construct (indent-point
9861 char-after-ip
9862 beg-of-same-or-containing-stmt
9863 containing-sexp
9864 paren-state)
9865 ;; This function contains the decision tree reached through both
9866 ;; cases 18 and 10. It's a continued statement or top level
9867 ;; construct of some kind.
9868 ;;
9869 ;; This function might do hidden buffer changes.
9870
9871 (let (special-brace-list placeholder)
9872 (goto-char indent-point)
9873 (skip-chars-forward " \t")
9874
9875 (cond
9876 ;; (CASE A removed.)
9877 ;; CASE B: open braces for class or brace-lists
9878 ((setq special-brace-list
9879 (or (and c-special-brace-lists
9880 (c-looking-at-special-brace-list))
9881 (eq char-after-ip ?{)))
9882
9883 (cond
9884 ;; CASE B.1: class-open
9885 ((save-excursion
9886 (and (eq (char-after) ?{)
9887 (c-looking-at-decl-block containing-sexp t)
9888 (setq beg-of-same-or-containing-stmt (point))))
9889 (c-add-syntax 'class-open beg-of-same-or-containing-stmt))
9890
9891 ;; CASE B.2: brace-list-open
9892 ((or (consp special-brace-list)
9893 (save-excursion
9894 (goto-char beg-of-same-or-containing-stmt)
9895 (c-syntactic-re-search-forward "=\\([^=]\\|$\\)"
9896 indent-point t t t)))
9897 ;; The most semantically accurate symbol here is
9898 ;; brace-list-open, but we normally report it simply as a
9899 ;; statement-cont. The reason is that one normally adjusts
9900 ;; brace-list-open for brace lists as top-level constructs,
9901 ;; and brace lists inside statements is a completely different
9902 ;; context. C.f. case 5A.3.
9903 (c-beginning-of-statement-1 containing-sexp)
9904 (c-add-stmt-syntax (if c-auto-newline-analysis
9905 ;; Turn off the dwim above when we're
9906 ;; analyzing the nature of the brace
9907 ;; for the auto newline feature.
9908 'brace-list-open
9909 'statement-cont)
9910 nil nil
9911 containing-sexp paren-state))
9912
9913 ;; CASE B.3: The body of a function declared inside a normal
9914 ;; block. Can occur e.g. in Pike and when using gcc
9915 ;; extensions, but watch out for macros followed by blocks.
9916 ;; C.f. cases E, 16F and 17G.
9917 ((and (not (c-at-statement-start-p))
9918 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
9919 'same)
9920 (save-excursion
9921 (let ((c-recognize-typeless-decls nil))
9922 ;; Turn off recognition of constructs that lacks a
9923 ;; type in this case, since that's more likely to be
9924 ;; a macro followed by a block.
9925 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
9926 (c-add-stmt-syntax 'defun-open nil t
9927 containing-sexp paren-state))
9928
9929 ;; CASE B.4: Continued statement with block open. The most
9930 ;; accurate analysis is perhaps `statement-cont' together with
9931 ;; `block-open' but we play DWIM and use `substatement-open'
9932 ;; instead. The rationale is that this typically is a macro
9933 ;; followed by a block which makes it very similar to a
9934 ;; statement with a substatement block.
9935 (t
9936 (c-add-stmt-syntax 'substatement-open nil nil
9937 containing-sexp paren-state))
9938 ))
9939
9940 ;; CASE C: iostream insertion or extraction operator
9941 ((and (looking-at "\\(<<\\|>>\\)\\([^=]\\|$\\)")
9942 (save-excursion
9943 (goto-char beg-of-same-or-containing-stmt)
9944 ;; If there is no preceding streamop in the statement
9945 ;; then indent this line as a normal statement-cont.
9946 (when (c-syntactic-re-search-forward
9947 "\\(<<\\|>>\\)\\([^=]\\|$\\)" indent-point 'move t t)
9948 (c-add-syntax 'stream-op (c-point 'boi))
9949 t))))
9950
9951 ;; CASE E: In the "K&R region" of a function declared inside a
9952 ;; normal block. C.f. case B.3.
9953 ((and (save-excursion
9954 ;; Check that the next token is a '{'. This works as
9955 ;; long as no language that allows nested function
9956 ;; definitions allows stuff like member init lists, K&R
9957 ;; declarations or throws clauses there.
9958 ;;
9959 ;; Note that we do a forward search for something ahead
9960 ;; of the indentation line here. That's not good since
9961 ;; the user might not have typed it yet. Unfortunately
9962 ;; it's exceedingly tricky to recognize a function
9963 ;; prototype in a code block without resorting to this.
9964 (c-forward-syntactic-ws)
9965 (eq (char-after) ?{))
9966 (not (c-at-statement-start-p))
9967 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
9968 'same)
9969 (save-excursion
9970 (let ((c-recognize-typeless-decls nil))
9971 ;; Turn off recognition of constructs that lacks a
9972 ;; type in this case, since that's more likely to be
9973 ;; a macro followed by a block.
9974 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
9975 (c-add-stmt-syntax 'func-decl-cont nil t
9976 containing-sexp paren-state))
9977
9978 ;;CASE F: continued statement and the only preceding items are
9979 ;;annotations.
9980 ((and (c-major-mode-is 'java-mode)
9981 (setq placeholder (point))
9982 (c-beginning-of-statement-1)
9983 (progn
9984 (while (and (c-forward-annotation)
9985 (< (point) placeholder))
9986 (c-forward-syntactic-ws))
9987 t)
9988 (prog1
9989 (>= (point) placeholder)
9990 (goto-char placeholder)))
9991 (c-beginning-of-statement-1 containing-sexp)
9992 (c-add-syntax 'annotation-var-cont (point)))
9993
9994 ;; CASE G: a template list continuation?
9995 ;; Mostly a duplication of case 5D.3 to fix templates-19:
9996 ((and (c-major-mode-is 'c++-mode)
9997 (save-excursion
9998 (goto-char indent-point)
9999 (c-with-syntax-table c++-template-syntax-table
10000 (setq placeholder (c-up-list-backward)))
10001 (and placeholder
10002 (eq (char-after placeholder) ?<)
10003 (/= (char-before placeholder) ?<)
10004 (progn
10005 (goto-char (1+ placeholder))
10006 (not (looking-at c-<-op-cont-regexp))))))
10007 (c-with-syntax-table c++-template-syntax-table
10008 (goto-char placeholder)
10009 (c-beginning-of-statement-1 containing-sexp t))
10010 (if (save-excursion
10011 (c-backward-syntactic-ws containing-sexp)
10012 (eq (char-before) ?<))
10013 ;; In a nested template arglist.
10014 (progn
10015 (goto-char placeholder)
10016 (c-syntactic-skip-backward "^,;" containing-sexp t)
10017 (c-forward-syntactic-ws))
10018 (back-to-indentation))
10019 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
10020 ;; template aware.
10021 (c-add-syntax 'template-args-cont (point) placeholder))
10022
10023 ;; CASE D: continued statement.
10024 (t
10025 (c-beginning-of-statement-1 containing-sexp)
10026 (c-add-stmt-syntax 'statement-cont nil nil
10027 containing-sexp paren-state))
10028 )))
10029
10030 ;; The next autoload was added by RMS on 2005/8/9 - don't know why (ACM,
10031 ;; 2005/11/29).
10032 ;;;###autoload
10033 (defun c-guess-basic-syntax ()
10034 "Return the syntactic context of the current line."
10035 (save-excursion
10036 (beginning-of-line)
10037 (c-save-buffer-state
10038 ((indent-point (point))
10039 (case-fold-search nil)
10040 ;; A whole ugly bunch of various temporary variables. Have
10041 ;; to declare them here since it's not possible to declare
10042 ;; a variable with only the scope of a cond test and the
10043 ;; following result clauses, and most of this function is a
10044 ;; single gigantic cond. :P
10045 literal char-before-ip before-ws-ip char-after-ip macro-start
10046 in-macro-expr c-syntactic-context placeholder c-in-literal-cache
10047 step-type tmpsymbol keyword injava-inher special-brace-list tmp-pos
10048 containing-<
10049 ;; The following record some positions for the containing
10050 ;; declaration block if we're directly within one:
10051 ;; `containing-decl-open' is the position of the open
10052 ;; brace. `containing-decl-start' is the start of the
10053 ;; declaration. `containing-decl-kwd' is the keyword
10054 ;; symbol of the keyword that tells what kind of block it
10055 ;; is.
10056 containing-decl-open
10057 containing-decl-start
10058 containing-decl-kwd
10059 ;; The open paren of the closest surrounding sexp or nil if
10060 ;; there is none.
10061 containing-sexp
10062 ;; The position after the closest preceding brace sexp
10063 ;; (nested sexps are ignored), or the position after
10064 ;; `containing-sexp' if there is none, or (point-min) if
10065 ;; `containing-sexp' is nil.
10066 lim
10067 ;; The paren state outside `containing-sexp', or at
10068 ;; `indent-point' if `containing-sexp' is nil.
10069 (paren-state (c-parse-state))
10070 ;; There's always at most one syntactic element which got
10071 ;; an anchor pos. It's stored in syntactic-relpos.
10072 syntactic-relpos
10073 (c-stmt-delim-chars c-stmt-delim-chars))
10074
10075 ;; Check if we're directly inside an enclosing declaration
10076 ;; level block.
10077 (when (and (setq containing-sexp
10078 (c-most-enclosing-brace paren-state))
10079 (progn
10080 (goto-char containing-sexp)
10081 (eq (char-after) ?{))
10082 (setq placeholder
10083 (c-looking-at-decl-block
10084 (c-most-enclosing-brace paren-state
10085 containing-sexp)
10086 t)))
10087 (setq containing-decl-open containing-sexp
10088 containing-decl-start (point)
10089 containing-sexp nil)
10090 (goto-char placeholder)
10091 (setq containing-decl-kwd (and (looking-at c-keywords-regexp)
10092 (c-keyword-sym (match-string 1)))))
10093
10094 ;; Init some position variables.
10095 (if paren-state
10096 (progn
10097 (setq containing-sexp (car paren-state)
10098 paren-state (cdr paren-state))
10099 (if (consp containing-sexp)
10100 (save-excursion
10101 (goto-char (cdr containing-sexp))
10102 (if (and (c-major-mode-is 'c++-mode)
10103 (c-back-over-member-initializer-braces))
10104 (c-syntactic-skip-backward "^}" nil t))
10105 (setq lim (point))
10106 (if paren-state
10107 ;; Ignore balanced paren. The next entry
10108 ;; can't be another one.
10109 (setq containing-sexp (car paren-state)
10110 paren-state (cdr paren-state))
10111 ;; If there is no surrounding open paren then
10112 ;; put the last balanced pair back on paren-state.
10113 (setq paren-state (cons containing-sexp paren-state)
10114 containing-sexp nil)))
10115 (setq lim (1+ containing-sexp))))
10116 (setq lim (point-min)))
10117
10118 ;; If we're in a parenthesis list then ',' delimits the
10119 ;; "statements" rather than being an operator (with the
10120 ;; exception of the "for" clause). This difference is
10121 ;; typically only noticeable when statements are used in macro
10122 ;; arglists.
10123 (when (and containing-sexp
10124 (eq (char-after containing-sexp) ?\())
10125 (setq c-stmt-delim-chars c-stmt-delim-chars-with-comma))
10126 ;; cache char before and after indent point, and move point to
10127 ;; the most likely position to perform the majority of tests
10128 (goto-char indent-point)
10129 (c-backward-syntactic-ws lim)
10130 (setq before-ws-ip (point)
10131 char-before-ip (char-before))
10132 (goto-char indent-point)
10133 (skip-chars-forward " \t")
10134 (setq char-after-ip (char-after))
10135
10136 ;; are we in a literal?
10137 (setq literal (c-in-literal lim))
10138
10139 ;; now figure out syntactic qualities of the current line
10140 (cond
10141
10142 ;; CASE 1: in a string.
10143 ((eq literal 'string)
10144 (c-add-syntax 'string (c-point 'bopl)))
10145
10146 ;; CASE 2: in a C or C++ style comment.
10147 ((and (memq literal '(c c++))
10148 ;; This is a kludge for XEmacs where we use
10149 ;; `buffer-syntactic-context', which doesn't correctly
10150 ;; recognize "\*/" to end a block comment.
10151 ;; `parse-partial-sexp' which is used by
10152 ;; `c-literal-limits' will however do that in most
10153 ;; versions, which results in that we get nil from
10154 ;; `c-literal-limits' even when `c-in-literal' claims
10155 ;; we're inside a comment.
10156 (setq placeholder (c-literal-limits lim)))
10157 (c-add-syntax literal (car placeholder)))
10158
10159 ;; CASE 3: in a cpp preprocessor macro continuation.
10160 ((and (save-excursion
10161 (when (c-beginning-of-macro)
10162 (setq macro-start (point))))
10163 (/= macro-start (c-point 'boi))
10164 (progn
10165 (setq tmpsymbol 'cpp-macro-cont)
10166 (or (not c-syntactic-indentation-in-macros)
10167 (save-excursion
10168 (goto-char macro-start)
10169 ;; If at the beginning of the body of a #define
10170 ;; directive then analyze as cpp-define-intro
10171 ;; only. Go on with the syntactic analysis
10172 ;; otherwise. in-macro-expr is set if we're in a
10173 ;; cpp expression, i.e. before the #define body
10174 ;; or anywhere in a non-#define directive.
10175 (if (c-forward-to-cpp-define-body)
10176 (let ((indent-boi (c-point 'boi indent-point)))
10177 (setq in-macro-expr (> (point) indent-boi)
10178 tmpsymbol 'cpp-define-intro)
10179 (= (point) indent-boi))
10180 (setq in-macro-expr t)
10181 nil)))))
10182 (c-add-syntax tmpsymbol macro-start)
10183 (setq macro-start nil))
10184
10185 ;; CASE 11: an else clause?
10186 ((looking-at "else\\>[^_]")
10187 (c-beginning-of-statement-1 containing-sexp)
10188 (c-add-stmt-syntax 'else-clause nil t
10189 containing-sexp paren-state))
10190
10191 ;; CASE 12: while closure of a do/while construct?
10192 ((and (looking-at "while\\>[^_]")
10193 (save-excursion
10194 (prog1 (eq (c-beginning-of-statement-1 containing-sexp)
10195 'beginning)
10196 (setq placeholder (point)))))
10197 (goto-char placeholder)
10198 (c-add-stmt-syntax 'do-while-closure nil t
10199 containing-sexp paren-state))
10200
10201 ;; CASE 13: A catch or finally clause? This case is simpler
10202 ;; than if-else and do-while, because a block is required
10203 ;; after every try, catch and finally.
10204 ((save-excursion
10205 (and (cond ((c-major-mode-is 'c++-mode)
10206 (looking-at "catch\\>[^_]"))
10207 ((c-major-mode-is 'java-mode)
10208 (looking-at "\\(catch\\|finally\\)\\>[^_]")))
10209 (and (c-safe (c-backward-syntactic-ws)
10210 (c-backward-sexp)
10211 t)
10212 (eq (char-after) ?{)
10213 (c-safe (c-backward-syntactic-ws)
10214 (c-backward-sexp)
10215 t)
10216 (if (eq (char-after) ?\()
10217 (c-safe (c-backward-sexp) t)
10218 t))
10219 (looking-at "\\(try\\|catch\\)\\>[^_]")
10220 (setq placeholder (point))))
10221 (goto-char placeholder)
10222 (c-add-stmt-syntax 'catch-clause nil t
10223 containing-sexp paren-state))
10224
10225 ;; CASE 18: A substatement we can recognize by keyword.
10226 ((save-excursion
10227 (and c-opt-block-stmt-key
10228 (not (eq char-before-ip ?\;))
10229 (not (c-at-vsemi-p before-ws-ip))
10230 (not (memq char-after-ip '(?\) ?\] ?,)))
10231 (or (not (eq char-before-ip ?}))
10232 (c-looking-at-inexpr-block-backward c-state-cache))
10233 (> (point)
10234 (progn
10235 ;; Ought to cache the result from the
10236 ;; c-beginning-of-statement-1 calls here.
10237 (setq placeholder (point))
10238 (while (eq (setq step-type
10239 (c-beginning-of-statement-1 lim))
10240 'label))
10241 (if (eq step-type 'previous)
10242 (goto-char placeholder)
10243 (setq placeholder (point))
10244 (if (and (eq step-type 'same)
10245 (not (looking-at c-opt-block-stmt-key)))
10246 ;; Step up to the containing statement if we
10247 ;; stayed in the same one.
10248 (let (step)
10249 (while (eq
10250 (setq step
10251 (c-beginning-of-statement-1 lim))
10252 'label))
10253 (if (eq step 'up)
10254 (setq placeholder (point))
10255 ;; There was no containing statement after all.
10256 (goto-char placeholder)))))
10257 placeholder))
10258 (if (looking-at c-block-stmt-2-key)
10259 ;; Require a parenthesis after these keywords.
10260 ;; Necessary to catch e.g. synchronized in Java,
10261 ;; which can be used both as statement and
10262 ;; modifier.
10263 (and (zerop (c-forward-token-2 1 nil))
10264 (eq (char-after) ?\())
10265 (looking-at c-opt-block-stmt-key))))
10266
10267 (if (eq step-type 'up)
10268 ;; CASE 18A: Simple substatement.
10269 (progn
10270 (goto-char placeholder)
10271 (cond
10272 ((eq char-after-ip ?{)
10273 (c-add-stmt-syntax 'substatement-open nil nil
10274 containing-sexp paren-state))
10275 ((save-excursion
10276 (goto-char indent-point)
10277 (back-to-indentation)
10278 (c-forward-label))
10279 (c-add-stmt-syntax 'substatement-label nil nil
10280 containing-sexp paren-state))
10281 (t
10282 (c-add-stmt-syntax 'substatement nil nil
10283 containing-sexp paren-state))))
10284
10285 ;; CASE 18B: Some other substatement. This is shared
10286 ;; with case 10.
10287 (c-guess-continued-construct indent-point
10288 char-after-ip
10289 placeholder
10290 lim
10291 paren-state)))
10292
10293 ;; CASE 14: A case or default label
10294 ((save-excursion
10295 (and (looking-at c-label-kwds-regexp)
10296 (or (c-major-mode-is 'idl-mode)
10297 (and
10298 containing-sexp
10299 (goto-char containing-sexp)
10300 (eq (char-after) ?{)
10301 (progn (c-backward-syntactic-ws) t)
10302 (eq (char-before) ?\))
10303 (c-go-list-backward)
10304 (progn (c-backward-syntactic-ws) t)
10305 (c-simple-skip-symbol-backward)
10306 (looking-at c-block-stmt-2-key)))))
10307 (if containing-sexp
10308 (progn
10309 (goto-char containing-sexp)
10310 (setq lim (c-most-enclosing-brace c-state-cache
10311 containing-sexp))
10312 (c-backward-to-block-anchor lim)
10313 (c-add-stmt-syntax 'case-label nil t lim paren-state))
10314 ;; Got a bogus label at the top level. In lack of better
10315 ;; alternatives, anchor it on (point-min).
10316 (c-add-syntax 'case-label (point-min))))
10317
10318 ;; CASE 15: any other label
10319 ((save-excursion
10320 (back-to-indentation)
10321 (and (not (looking-at c-syntactic-ws-start))
10322 (not (looking-at c-label-kwds-regexp))
10323 (c-forward-label)))
10324 (cond (containing-decl-open
10325 (setq placeholder (c-add-class-syntax 'inclass
10326 containing-decl-open
10327 containing-decl-start
10328 containing-decl-kwd
10329 paren-state))
10330 ;; Append access-label with the same anchor point as
10331 ;; inclass gets.
10332 (c-append-syntax 'access-label placeholder))
10333
10334 (containing-sexp
10335 (goto-char containing-sexp)
10336 (setq lim (c-most-enclosing-brace c-state-cache
10337 containing-sexp))
10338 (save-excursion
10339 (setq tmpsymbol
10340 (if (and (eq (c-beginning-of-statement-1 lim) 'up)
10341 (looking-at "switch\\>[^_]"))
10342 ;; If the surrounding statement is a switch then
10343 ;; let's analyze all labels as switch labels, so
10344 ;; that they get lined up consistently.
10345 'case-label
10346 'label)))
10347 (c-backward-to-block-anchor lim)
10348 (c-add-stmt-syntax tmpsymbol nil t lim paren-state))
10349
10350 (t
10351 ;; A label on the top level. Treat it as a class
10352 ;; context. (point-min) is the closest we get to the
10353 ;; class open brace.
10354 (c-add-syntax 'access-label (point-min)))))
10355
10356 ;; CASE 4: In-expression statement. C.f. cases 7B, 16A and
10357 ;; 17E.
10358 ((setq placeholder (c-looking-at-inexpr-block
10359 (c-safe-position containing-sexp paren-state)
10360 containing-sexp
10361 ;; Have to turn on the heuristics after
10362 ;; the point even though it doesn't work
10363 ;; very well. C.f. test case class-16.pike.
10364 t))
10365 (setq tmpsymbol (assq (car placeholder)
10366 '((inexpr-class . class-open)
10367 (inexpr-statement . block-open))))
10368 (if tmpsymbol
10369 ;; It's a statement block or an anonymous class.
10370 (setq tmpsymbol (cdr tmpsymbol))
10371 ;; It's a Pike lambda. Check whether we are between the
10372 ;; lambda keyword and the argument list or at the defun
10373 ;; opener.
10374 (setq tmpsymbol (if (eq char-after-ip ?{)
10375 'inline-open
10376 'lambda-intro-cont)))
10377 (goto-char (cdr placeholder))
10378 (back-to-indentation)
10379 (c-add-stmt-syntax tmpsymbol nil t
10380 (c-most-enclosing-brace c-state-cache (point))
10381 paren-state)
10382 (unless (eq (point) (cdr placeholder))
10383 (c-add-syntax (car placeholder))))
10384
10385 ;; CASE 5: Line is inside a declaration level block or at top level.
10386 ((or containing-decl-open (null containing-sexp))
10387 (cond
10388
10389 ;; CASE 5A: we are looking at a defun, brace list, class,
10390 ;; or inline-inclass method opening brace
10391 ((setq special-brace-list
10392 (or (and c-special-brace-lists
10393 (c-looking-at-special-brace-list))
10394 (eq char-after-ip ?{)))
10395 (cond
10396
10397 ;; CASE 5A.1: Non-class declaration block open.
10398 ((save-excursion
10399 (let (tmp)
10400 (and (eq char-after-ip ?{)
10401 (setq tmp (c-looking-at-decl-block containing-sexp t))
10402 (progn
10403 (setq placeholder (point))
10404 (goto-char tmp)
10405 (looking-at c-symbol-key))
10406 (c-keyword-member
10407 (c-keyword-sym (setq keyword (match-string 0)))
10408 'c-other-block-decl-kwds))))
10409 (goto-char placeholder)
10410 (c-add-stmt-syntax
10411 (if (string-equal keyword "extern")
10412 ;; Special case for extern-lang-open.
10413 'extern-lang-open
10414 (intern (concat keyword "-open")))
10415 nil t containing-sexp paren-state))
10416
10417 ;; CASE 5A.2: we are looking at a class opening brace
10418 ((save-excursion
10419 (goto-char indent-point)
10420 (skip-chars-forward " \t")
10421 (and (eq (char-after) ?{)
10422 (c-looking-at-decl-block containing-sexp t)
10423 (setq placeholder (point))))
10424 (c-add-syntax 'class-open placeholder))
10425
10426 ;; CASE 5A.3: brace list open
10427 ((save-excursion
10428 (c-beginning-of-decl-1 lim)
10429 (while (cond
10430 ((looking-at c-specifier-key)
10431 (c-forward-keyword-clause 1))
10432 ((and c-opt-cpp-prefix
10433 (looking-at c-noise-macro-with-parens-name-re))
10434 (c-forward-noise-clause))))
10435 (setq placeholder (c-point 'boi))
10436 (or (consp special-brace-list)
10437 (and (or (save-excursion
10438 (goto-char indent-point)
10439 (setq tmpsymbol nil)
10440 (while (and (> (point) placeholder)
10441 (zerop (c-backward-token-2 1 t))
10442 (not (looking-at "=\\([^=]\\|$\\)")))
10443 (and c-opt-inexpr-brace-list-key
10444 (not tmpsymbol)
10445 (looking-at c-opt-inexpr-brace-list-key)
10446 (setq tmpsymbol 'topmost-intro-cont)))
10447 (looking-at "=\\([^=]\\|$\\)"))
10448 (looking-at c-brace-list-key))
10449 (save-excursion
10450 (while (and (< (point) indent-point)
10451 (zerop (c-forward-token-2 1 t))
10452 (not (memq (char-after) '(?\; ?\()))))
10453 (not (memq (char-after) '(?\; ?\()))
10454 ))))
10455 (if (and (not c-auto-newline-analysis)
10456 (c-major-mode-is 'java-mode)
10457 (eq tmpsymbol 'topmost-intro-cont))
10458 ;; We're in Java and have found that the open brace
10459 ;; belongs to a "new Foo[]" initialization list,
10460 ;; which means the brace list is part of an
10461 ;; expression and not a top level definition. We
10462 ;; therefore treat it as any topmost continuation
10463 ;; even though the semantically correct symbol still
10464 ;; is brace-list-open, on the same grounds as in
10465 ;; case B.2.
10466 (progn
10467 (c-beginning-of-statement-1 lim)
10468 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
10469 (c-add-syntax 'brace-list-open placeholder)))
10470
10471 ;; CASE 5A.4: inline defun open
10472 ((and containing-decl-open
10473 (not (c-keyword-member containing-decl-kwd
10474 'c-other-block-decl-kwds)))
10475 (c-add-syntax 'inline-open)
10476 (c-add-class-syntax 'inclass
10477 containing-decl-open
10478 containing-decl-start
10479 containing-decl-kwd
10480 paren-state))
10481
10482 ;; CASE 5A.5: ordinary defun open
10483 (t
10484 (save-excursion
10485 (c-beginning-of-decl-1 lim)
10486 (while (cond
10487 ((looking-at c-specifier-key)
10488 (c-forward-keyword-clause 1))
10489 ((and c-opt-cpp-prefix
10490 (looking-at c-noise-macro-with-parens-name-re))
10491 (c-forward-noise-clause))))
10492 (c-add-syntax 'defun-open (c-point 'boi))
10493 ;; Bogus to use bol here, but it's the legacy. (Resolved,
10494 ;; 2007-11-09)
10495 ))))
10496
10497 ;; CASE 5R: Member init list. (Used to be part of CASE 5B.1)
10498 ;; Note there is no limit on the backward search here, since member
10499 ;; init lists can, in practice, be very large.
10500 ((save-excursion
10501 (when (and (c-major-mode-is 'c++-mode)
10502 (setq placeholder (c-back-over-member-initializers)))
10503 (setq tmp-pos (point))))
10504 (if (= (c-point 'bosws) (1+ tmp-pos))
10505 (progn
10506 ;; There is no preceding member init clause.
10507 ;; Indent relative to the beginning of indentation
10508 ;; for the topmost-intro line that contains the
10509 ;; prototype's open paren.
10510 (goto-char placeholder)
10511 (c-add-syntax 'member-init-intro (c-point 'boi)))
10512 ;; Indent relative to the first member init clause.
10513 (goto-char (1+ tmp-pos))
10514 (c-forward-syntactic-ws)
10515 (c-add-syntax 'member-init-cont (point))))
10516
10517 ;; CASE 5B: After a function header but before the body (or
10518 ;; the ending semicolon if there's no body).
10519 ((save-excursion
10520 (when (setq placeholder (c-just-after-func-arglist-p
10521 (max lim (c-determine-limit 500))))
10522 (setq tmp-pos (point))))
10523 (cond
10524
10525 ;; CASE 5B.1: Member init list.
10526 ((eq (char-after tmp-pos) ?:)
10527 ;; There is no preceding member init clause.
10528 ;; Indent relative to the beginning of indentation
10529 ;; for the topmost-intro line that contains the
10530 ;; prototype's open paren.
10531 (goto-char placeholder)
10532 (c-add-syntax 'member-init-intro (c-point 'boi)))
10533
10534 ;; CASE 5B.2: K&R arg decl intro
10535 ((and c-recognize-knr-p
10536 (c-in-knr-argdecl lim))
10537 (c-beginning-of-statement-1 lim)
10538 (c-add-syntax 'knr-argdecl-intro (c-point 'boi))
10539 (if containing-decl-open
10540 (c-add-class-syntax 'inclass
10541 containing-decl-open
10542 containing-decl-start
10543 containing-decl-kwd
10544 paren-state)))
10545
10546 ;; CASE 5B.4: Nether region after a C++ or Java func
10547 ;; decl, which could include a `throws' declaration.
10548 (t
10549 (c-beginning-of-statement-1 lim)
10550 (c-add-syntax 'func-decl-cont (c-point 'boi))
10551 )))
10552
10553 ;; CASE 5C: inheritance line. could be first inheritance
10554 ;; line, or continuation of a multiple inheritance
10555 ((or (and (c-major-mode-is 'c++-mode)
10556 (progn
10557 (when (eq char-after-ip ?,)
10558 (skip-chars-forward " \t")
10559 (forward-char))
10560 (looking-at c-opt-postfix-decl-spec-key)))
10561 (and (or (eq char-before-ip ?:)
10562 ;; watch out for scope operator
10563 (save-excursion
10564 (and (eq char-after-ip ?:)
10565 (c-safe (forward-char 1) t)
10566 (not (eq (char-after) ?:))
10567 )))
10568 (save-excursion
10569 (c-beginning-of-statement-1 lim)
10570 (when (looking-at c-opt-<>-sexp-key)
10571 (goto-char (match-end 1))
10572 (c-forward-syntactic-ws)
10573 (c-forward-<>-arglist nil)
10574 (c-forward-syntactic-ws))
10575 (looking-at c-class-key)))
10576 ;; for Java
10577 (and (c-major-mode-is 'java-mode)
10578 (let ((fence (save-excursion
10579 (c-beginning-of-statement-1 lim)
10580 (point)))
10581 cont done)
10582 (save-excursion
10583 (while (not done)
10584 (cond ((looking-at c-opt-postfix-decl-spec-key)
10585 (setq injava-inher (cons cont (point))
10586 done t))
10587 ((or (not (c-safe (c-forward-sexp -1) t))
10588 (<= (point) fence))
10589 (setq done t))
10590 )
10591 (setq cont t)))
10592 injava-inher)
10593 (not (c-crosses-statement-barrier-p (cdr injava-inher)
10594 (point)))
10595 ))
10596 (cond
10597
10598 ;; CASE 5C.1: non-hanging colon on an inher intro
10599 ((eq char-after-ip ?:)
10600 (c-beginning-of-statement-1 lim)
10601 (c-add-syntax 'inher-intro (c-point 'boi))
10602 ;; don't add inclass symbol since relative point already
10603 ;; contains any class offset
10604 )
10605
10606 ;; CASE 5C.2: hanging colon on an inher intro
10607 ((eq char-before-ip ?:)
10608 (c-beginning-of-statement-1 lim)
10609 (c-add-syntax 'inher-intro (c-point 'boi))
10610 (if containing-decl-open
10611 (c-add-class-syntax 'inclass
10612 containing-decl-open
10613 containing-decl-start
10614 containing-decl-kwd
10615 paren-state)))
10616
10617 ;; CASE 5C.3: in a Java implements/extends
10618 (injava-inher
10619 (let ((where (cdr injava-inher))
10620 (cont (car injava-inher)))
10621 (goto-char where)
10622 (cond ((looking-at "throws\\>[^_]")
10623 (c-add-syntax 'func-decl-cont
10624 (progn (c-beginning-of-statement-1 lim)
10625 (c-point 'boi))))
10626 (cont (c-add-syntax 'inher-cont where))
10627 (t (c-add-syntax 'inher-intro
10628 (progn (goto-char (cdr injava-inher))
10629 (c-beginning-of-statement-1 lim)
10630 (point))))
10631 )))
10632
10633 ;; CASE 5C.4: a continued inheritance line
10634 (t
10635 (c-beginning-of-inheritance-list lim)
10636 (c-add-syntax 'inher-cont (point))
10637 ;; don't add inclass symbol since relative point already
10638 ;; contains any class offset
10639 )))
10640
10641 ;; CASE 5P: AWK pattern or function or continuation
10642 ;; thereof.
10643 ((c-major-mode-is 'awk-mode)
10644 (setq placeholder (point))
10645 (c-add-stmt-syntax
10646 (if (and (eq (c-beginning-of-statement-1) 'same)
10647 (/= (point) placeholder))
10648 'topmost-intro-cont
10649 'topmost-intro)
10650 nil nil
10651 containing-sexp paren-state))
10652
10653 ;; CASE 5D: this could be a top-level initialization, a
10654 ;; member init list continuation, or a template argument
10655 ;; list continuation.
10656 ((save-excursion
10657 ;; Note: We use the fact that lim is always after any
10658 ;; preceding brace sexp.
10659 (if c-recognize-<>-arglists
10660 (while (and
10661 (progn
10662 (c-syntactic-skip-backward "^;,=<>" lim t)
10663 (> (point) lim))
10664 (or
10665 (when c-overloadable-operators-regexp
10666 (when (setq placeholder (c-after-special-operator-id lim))
10667 (goto-char placeholder)
10668 t))
10669 (cond
10670 ((eq (char-before) ?>)
10671 (or (c-backward-<>-arglist nil lim)
10672 (backward-char))
10673 t)
10674 ((eq (char-before) ?<)
10675 (backward-char)
10676 (if (save-excursion
10677 (c-forward-<>-arglist nil))
10678 (progn (forward-char)
10679 nil)
10680 t))
10681 (t nil)))))
10682 ;; NB: No c-after-special-operator-id stuff in this
10683 ;; clause - we assume only C++ needs it.
10684 (c-syntactic-skip-backward "^;,=" lim t))
10685 (memq (char-before) '(?, ?= ?<)))
10686 (cond
10687
10688 ;; CASE 5D.3: perhaps a template list continuation?
10689 ((and (c-major-mode-is 'c++-mode)
10690 (save-excursion
10691 (save-restriction
10692 (c-with-syntax-table c++-template-syntax-table
10693 (goto-char indent-point)
10694 (setq placeholder (c-up-list-backward))
10695 (and placeholder
10696 (eq (char-after placeholder) ?<))))))
10697 (c-with-syntax-table c++-template-syntax-table
10698 (goto-char placeholder)
10699 (c-beginning-of-statement-1 lim t))
10700 (if (save-excursion
10701 (c-backward-syntactic-ws lim)
10702 (eq (char-before) ?<))
10703 ;; In a nested template arglist.
10704 (progn
10705 (goto-char placeholder)
10706 (c-syntactic-skip-backward "^,;" lim t)
10707 (c-forward-syntactic-ws))
10708 (back-to-indentation))
10709 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
10710 ;; template aware.
10711 (c-add-syntax 'template-args-cont (point) placeholder))
10712
10713 ;; CASE 5D.4: perhaps a multiple inheritance line?
10714 ((and (c-major-mode-is 'c++-mode)
10715 (save-excursion
10716 (c-beginning-of-statement-1 lim)
10717 (setq placeholder (point))
10718 (if (looking-at "static\\>[^_]")
10719 (c-forward-token-2 1 nil indent-point))
10720 (and (looking-at c-class-key)
10721 (zerop (c-forward-token-2 2 nil indent-point))
10722 (if (eq (char-after) ?<)
10723 (c-with-syntax-table c++-template-syntax-table
10724 (zerop (c-forward-token-2 1 t indent-point)))
10725 t)
10726 (eq (char-after) ?:))))
10727 (goto-char placeholder)
10728 (c-add-syntax 'inher-cont (c-point 'boi)))
10729
10730 ;; CASE 5D.5: Continuation of the "expression part" of a
10731 ;; top level construct. Or, perhaps, an unrecognized construct.
10732 (t
10733 (while (and (setq placeholder (point))
10734 (eq (car (c-beginning-of-decl-1 containing-sexp)) ; Can't use `lim' here.
10735 'same)
10736 (save-excursion
10737 (c-backward-syntactic-ws)
10738 (eq (char-before) ?}))
10739 (< (point) placeholder)))
10740 (c-add-stmt-syntax
10741 (cond
10742 ((eq (point) placeholder) 'statement) ; unrecognized construct
10743 ;; A preceding comma at the top level means that a
10744 ;; new variable declaration starts here. Use
10745 ;; topmost-intro-cont for it, for consistency with
10746 ;; the first variable declaration. C.f. case 5N.
10747 ((eq char-before-ip ?,) 'topmost-intro-cont)
10748 (t 'statement-cont))
10749 nil nil containing-sexp paren-state))
10750 ))
10751
10752 ;; CASE 5F: Close of a non-class declaration level block.
10753 ((and (eq char-after-ip ?})
10754 (c-keyword-member containing-decl-kwd
10755 'c-other-block-decl-kwds))
10756 ;; This is inconsistent: Should use `containing-decl-open'
10757 ;; here if it's at boi, like in case 5J.
10758 (goto-char containing-decl-start)
10759 (c-add-stmt-syntax
10760 (if (string-equal (symbol-name containing-decl-kwd) "extern")
10761 ;; Special case for compatibility with the
10762 ;; extern-lang syntactic symbols.
10763 'extern-lang-close
10764 (intern (concat (symbol-name containing-decl-kwd)
10765 "-close")))
10766 nil t
10767 (c-most-enclosing-brace paren-state (point))
10768 paren-state))
10769
10770 ;; CASE 5G: we are looking at the brace which closes the
10771 ;; enclosing nested class decl
10772 ((and containing-sexp
10773 (eq char-after-ip ?})
10774 (eq containing-decl-open containing-sexp))
10775 (c-add-class-syntax 'class-close
10776 containing-decl-open
10777 containing-decl-start
10778 containing-decl-kwd
10779 paren-state))
10780
10781 ;; CASE 5H: we could be looking at subsequent knr-argdecls
10782 ((and c-recognize-knr-p
10783 (not containing-sexp) ; can't be knr inside braces.
10784 (not (eq char-before-ip ?}))
10785 (save-excursion
10786 (setq placeholder (cdr (c-beginning-of-decl-1 lim)))
10787 (and placeholder
10788 ;; Do an extra check to avoid tripping up on
10789 ;; statements that occur in invalid contexts
10790 ;; (e.g. in macro bodies where we don't really
10791 ;; know the context of what we're looking at).
10792 (not (and c-opt-block-stmt-key
10793 (looking-at c-opt-block-stmt-key)))))
10794 (< placeholder indent-point))
10795 (goto-char placeholder)
10796 (c-add-syntax 'knr-argdecl (point)))
10797
10798 ;; CASE 5I: ObjC method definition.
10799 ((and c-opt-method-key
10800 (looking-at c-opt-method-key))
10801 (c-beginning-of-statement-1 nil t)
10802 (if (= (point) indent-point)
10803 ;; Handle the case when it's the first (non-comment)
10804 ;; thing in the buffer. Can't look for a 'same return
10805 ;; value from cbos1 since ObjC directives currently
10806 ;; aren't recognized fully, so that we get 'same
10807 ;; instead of 'previous if it moved over a preceding
10808 ;; directive.
10809 (goto-char (point-min)))
10810 (c-add-syntax 'objc-method-intro (c-point 'boi)))
10811
10812 ;; CASE 5N: At a variable declaration that follows a class
10813 ;; definition or some other block declaration that doesn't
10814 ;; end at the closing '}'. C.f. case 5D.5.
10815 ((progn
10816 (c-backward-syntactic-ws lim)
10817 (and (eq (char-before) ?})
10818 (save-excursion
10819 (let ((start (point)))
10820 (if (and c-state-cache
10821 (consp (car c-state-cache))
10822 (eq (cdar c-state-cache) (point)))
10823 ;; Speed up the backward search a bit.
10824 (goto-char (caar c-state-cache)))
10825 (c-beginning-of-decl-1 containing-sexp) ; Can't use `lim' here.
10826 (setq placeholder (point))
10827 (if (= start (point))
10828 ;; The '}' is unbalanced.
10829 nil
10830 (c-end-of-decl-1)
10831 (>= (point) indent-point))))))
10832 (goto-char placeholder)
10833 (c-add-stmt-syntax 'topmost-intro-cont nil nil
10834 containing-sexp paren-state))
10835
10836 ;; NOTE: The point is at the end of the previous token here.
10837
10838 ;; CASE 5J: we are at the topmost level, make
10839 ;; sure we skip back past any access specifiers
10840 ((and
10841 ;; A macro continuation line is never at top level.
10842 (not (and macro-start
10843 (> indent-point macro-start)))
10844 (save-excursion
10845 (setq placeholder (point))
10846 (or (memq char-before-ip '(?\; ?{ ?} nil))
10847 (c-at-vsemi-p before-ws-ip)
10848 (when (and (eq char-before-ip ?:)
10849 (eq (c-beginning-of-statement-1 lim)
10850 'label))
10851 (c-backward-syntactic-ws lim)
10852 (setq placeholder (point)))
10853 (and (c-major-mode-is 'objc-mode)
10854 (catch 'not-in-directive
10855 (c-beginning-of-statement-1 lim)
10856 (setq placeholder (point))
10857 (while (and (c-forward-objc-directive)
10858 (< (point) indent-point))
10859 (c-forward-syntactic-ws)
10860 (if (>= (point) indent-point)
10861 (throw 'not-in-directive t))
10862 (setq placeholder (point)))
10863 nil)))))
10864 ;; For historic reasons we anchor at bol of the last
10865 ;; line of the previous declaration. That's clearly
10866 ;; highly bogus and useless, and it makes our lives hard
10867 ;; to remain compatible. :P
10868 (goto-char placeholder)
10869 (c-add-syntax 'topmost-intro (c-point 'bol))
10870 (if containing-decl-open
10871 (if (c-keyword-member containing-decl-kwd
10872 'c-other-block-decl-kwds)
10873 (progn
10874 (goto-char (c-brace-anchor-point containing-decl-open))
10875 (c-add-stmt-syntax
10876 (if (string-equal (symbol-name containing-decl-kwd)
10877 "extern")
10878 ;; Special case for compatibility with the
10879 ;; extern-lang syntactic symbols.
10880 'inextern-lang
10881 (intern (concat "in"
10882 (symbol-name containing-decl-kwd))))
10883 nil t
10884 (c-most-enclosing-brace paren-state (point))
10885 paren-state))
10886 (c-add-class-syntax 'inclass
10887 containing-decl-open
10888 containing-decl-start
10889 containing-decl-kwd
10890 paren-state)))
10891 (when (and c-syntactic-indentation-in-macros
10892 macro-start
10893 (/= macro-start (c-point 'boi indent-point)))
10894 (c-add-syntax 'cpp-define-intro)
10895 (setq macro-start nil)))
10896
10897 ;; CASE 5K: we are at an ObjC method definition
10898 ;; continuation line.
10899 ((and c-opt-method-key
10900 (save-excursion
10901 (c-beginning-of-statement-1 lim)
10902 (beginning-of-line)
10903 (when (looking-at c-opt-method-key)
10904 (setq placeholder (point)))))
10905 (c-add-syntax 'objc-method-args-cont placeholder))
10906
10907 ;; CASE 5L: we are at the first argument of a template
10908 ;; arglist that begins on the previous line.
10909 ((and c-recognize-<>-arglists
10910 (eq (char-before) ?<)
10911 (not (and c-overloadable-operators-regexp
10912 (c-after-special-operator-id lim))))
10913 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
10914 (c-add-syntax 'template-args-cont (c-point 'boi)))
10915
10916 ;; CASE 5Q: we are at a statement within a macro.
10917 (macro-start
10918 (c-beginning-of-statement-1 containing-sexp)
10919 (c-add-stmt-syntax 'statement nil t containing-sexp paren-state))
10920
10921 ;;CASE 5N: We are at a topmost continuation line and the only
10922 ;;preceding items are annotations.
10923 ((and (c-major-mode-is 'java-mode)
10924 (setq placeholder (point))
10925 (c-beginning-of-statement-1)
10926 (progn
10927 (while (and (c-forward-annotation))
10928 (c-forward-syntactic-ws))
10929 t)
10930 (prog1
10931 (>= (point) placeholder)
10932 (goto-char placeholder)))
10933 (c-add-syntax 'annotation-top-cont (c-point 'boi)))
10934
10935 ;; CASE 5M: we are at a topmost continuation line
10936 (t
10937 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
10938 (when (c-major-mode-is 'objc-mode)
10939 (setq placeholder (point))
10940 (while (and (c-forward-objc-directive)
10941 (< (point) indent-point))
10942 (c-forward-syntactic-ws)
10943 (setq placeholder (point)))
10944 (goto-char placeholder))
10945 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
10946 ))
10947
10948 ;; (CASE 6 has been removed.)
10949
10950 ;; CASE 7: line is an expression, not a statement. Most
10951 ;; likely we are either in a function prototype or a function
10952 ;; call argument list
10953 ((not (or (and c-special-brace-lists
10954 (save-excursion
10955 (goto-char containing-sexp)
10956 (c-looking-at-special-brace-list)))
10957 (eq (char-after containing-sexp) ?{)))
10958 (cond
10959
10960 ;; CASE 7A: we are looking at the arglist closing paren.
10961 ;; C.f. case 7F.
10962 ((memq char-after-ip '(?\) ?\]))
10963 (goto-char containing-sexp)
10964 (setq placeholder (c-point 'boi))
10965 (if (and (c-safe (backward-up-list 1) t)
10966 (>= (point) placeholder))
10967 (progn
10968 (forward-char)
10969 (skip-chars-forward " \t"))
10970 (goto-char placeholder))
10971 (c-add-stmt-syntax 'arglist-close (list containing-sexp) t
10972 (c-most-enclosing-brace paren-state (point))
10973 paren-state))
10974
10975 ;; CASE 7B: Looking at the opening brace of an
10976 ;; in-expression block or brace list. C.f. cases 4, 16A
10977 ;; and 17E.
10978 ((and (eq char-after-ip ?{)
10979 (progn
10980 (setq placeholder (c-inside-bracelist-p (point)
10981 paren-state))
10982 (if placeholder
10983 (setq tmpsymbol '(brace-list-open . inexpr-class))
10984 (setq tmpsymbol '(block-open . inexpr-statement)
10985 placeholder
10986 (cdr-safe (c-looking-at-inexpr-block
10987 (c-safe-position containing-sexp
10988 paren-state)
10989 containing-sexp)))
10990 ;; placeholder is nil if it's a block directly in
10991 ;; a function arglist. That makes us skip out of
10992 ;; this case.
10993 )))
10994 (goto-char placeholder)
10995 (back-to-indentation)
10996 (c-add-stmt-syntax (car tmpsymbol) nil t
10997 (c-most-enclosing-brace paren-state (point))
10998 paren-state)
10999 (if (/= (point) placeholder)
11000 (c-add-syntax (cdr tmpsymbol))))
11001
11002 ;; CASE 7C: we are looking at the first argument in an empty
11003 ;; argument list. Use arglist-close if we're actually
11004 ;; looking at a close paren or bracket.
11005 ((memq char-before-ip '(?\( ?\[))
11006 (goto-char containing-sexp)
11007 (setq placeholder (c-point 'boi))
11008 (if (and (c-safe (backward-up-list 1) t)
11009 (>= (point) placeholder))
11010 (progn
11011 (forward-char)
11012 (skip-chars-forward " \t"))
11013 (goto-char placeholder))
11014 (c-add-stmt-syntax 'arglist-intro (list containing-sexp) t
11015 (c-most-enclosing-brace paren-state (point))
11016 paren-state))
11017
11018 ;; CASE 7D: we are inside a conditional test clause. treat
11019 ;; these things as statements
11020 ((progn
11021 (goto-char containing-sexp)
11022 (and (c-safe (c-forward-sexp -1) t)
11023 (looking-at "\\<for\\>[^_]")))
11024 (goto-char (1+ containing-sexp))
11025 (c-forward-syntactic-ws indent-point)
11026 (if (eq char-before-ip ?\;)
11027 (c-add-syntax 'statement (point))
11028 (c-add-syntax 'statement-cont (point))
11029 ))
11030
11031 ;; CASE 7E: maybe a continued ObjC method call. This is the
11032 ;; case when we are inside a [] bracketed exp, and what
11033 ;; precede the opening bracket is not an identifier.
11034 ((and c-opt-method-key
11035 (eq (char-after containing-sexp) ?\[)
11036 (progn
11037 (goto-char (1- containing-sexp))
11038 (c-backward-syntactic-ws (c-point 'bod))
11039 (if (not (looking-at c-symbol-key))
11040 (c-add-syntax 'objc-method-call-cont containing-sexp))
11041 )))
11042
11043 ;; CASE 7F: we are looking at an arglist continuation line,
11044 ;; but the preceding argument is on the same line as the
11045 ;; opening paren. This case includes multi-line
11046 ;; mathematical paren groupings, but we could be on a
11047 ;; for-list continuation line. C.f. case 7A.
11048 ((progn
11049 (goto-char (1+ containing-sexp))
11050 (< (save-excursion
11051 (c-forward-syntactic-ws)
11052 (point))
11053 (c-point 'bonl)))
11054 (goto-char containing-sexp) ; paren opening the arglist
11055 (setq placeholder (c-point 'boi))
11056 (if (and (c-safe (backward-up-list 1) t)
11057 (>= (point) placeholder))
11058 (progn
11059 (forward-char)
11060 (skip-chars-forward " \t"))
11061 (goto-char placeholder))
11062 (c-add-stmt-syntax 'arglist-cont-nonempty (list containing-sexp) t
11063 (c-most-enclosing-brace c-state-cache (point))
11064 paren-state))
11065
11066 ;; CASE 7G: we are looking at just a normal arglist
11067 ;; continuation line
11068 (t (c-forward-syntactic-ws indent-point)
11069 (c-add-syntax 'arglist-cont (c-point 'boi)))
11070 ))
11071
11072 ;; CASE 8: func-local multi-inheritance line
11073 ((and (c-major-mode-is 'c++-mode)
11074 (save-excursion
11075 (goto-char indent-point)
11076 (skip-chars-forward " \t")
11077 (looking-at c-opt-postfix-decl-spec-key)))
11078 (goto-char indent-point)
11079 (skip-chars-forward " \t")
11080 (cond
11081
11082 ;; CASE 8A: non-hanging colon on an inher intro
11083 ((eq char-after-ip ?:)
11084 (c-backward-syntactic-ws lim)
11085 (c-add-syntax 'inher-intro (c-point 'boi)))
11086
11087 ;; CASE 8B: hanging colon on an inher intro
11088 ((eq char-before-ip ?:)
11089 (c-add-syntax 'inher-intro (c-point 'boi)))
11090
11091 ;; CASE 8C: a continued inheritance line
11092 (t
11093 (c-beginning-of-inheritance-list lim)
11094 (c-add-syntax 'inher-cont (point))
11095 )))
11096
11097 ;; CASE 9: we are inside a brace-list
11098 ((and (not (c-major-mode-is 'awk-mode)) ; Maybe this isn't needed (ACM, 2002/3/29)
11099 (setq special-brace-list
11100 (or (and c-special-brace-lists ;;;; ALWAYS NIL FOR AWK!!
11101 (save-excursion
11102 (goto-char containing-sexp)
11103 (c-looking-at-special-brace-list)))
11104 (c-inside-bracelist-p containing-sexp paren-state))))
11105 (cond
11106
11107 ;; CASE 9A: In the middle of a special brace list opener.
11108 ((and (consp special-brace-list)
11109 (save-excursion
11110 (goto-char containing-sexp)
11111 (eq (char-after) ?\())
11112 (eq char-after-ip (car (cdr special-brace-list))))
11113 (goto-char (car (car special-brace-list)))
11114 (skip-chars-backward " \t")
11115 (if (and (bolp)
11116 (assoc 'statement-cont
11117 (setq placeholder (c-guess-basic-syntax))))
11118 (setq c-syntactic-context placeholder)
11119 (c-beginning-of-statement-1
11120 (c-safe-position (1- containing-sexp) paren-state))
11121 (c-forward-token-2 0)
11122 (while (cond
11123 ((looking-at c-specifier-key)
11124 (c-forward-keyword-clause 1))
11125 ((and c-opt-cpp-prefix
11126 (looking-at c-noise-macro-with-parens-name-re))
11127 (c-forward-noise-clause))))
11128 (c-add-syntax 'brace-list-open (c-point 'boi))))
11129
11130 ;; CASE 9B: brace-list-close brace
11131 ((if (consp special-brace-list)
11132 ;; Check special brace list closer.
11133 (progn
11134 (goto-char (car (car special-brace-list)))
11135 (save-excursion
11136 (goto-char indent-point)
11137 (back-to-indentation)
11138 (or
11139 ;; We were between the special close char and the `)'.
11140 (and (eq (char-after) ?\))
11141 (eq (1+ (point)) (cdr (car special-brace-list))))
11142 ;; We were before the special close char.
11143 (and (eq (char-after) (cdr (cdr special-brace-list)))
11144 (zerop (c-forward-token-2))
11145 (eq (1+ (point)) (cdr (car special-brace-list)))))))
11146 ;; Normal brace list check.
11147 (and (eq char-after-ip ?})
11148 (c-safe (goto-char (c-up-list-backward (point))) t)
11149 (= (point) containing-sexp)))
11150 (if (eq (point) (c-point 'boi))
11151 (c-add-syntax 'brace-list-close (point))
11152 (setq lim (c-most-enclosing-brace c-state-cache (point)))
11153 (c-beginning-of-statement-1 lim nil nil t)
11154 (c-add-stmt-syntax 'brace-list-close nil t lim paren-state)))
11155
11156 (t
11157 ;; Prepare for the rest of the cases below by going to the
11158 ;; token following the opening brace
11159 (if (consp special-brace-list)
11160 (progn
11161 (goto-char (car (car special-brace-list)))
11162 (c-forward-token-2 1 nil indent-point))
11163 (goto-char containing-sexp))
11164 (forward-char)
11165 (let ((start (point)))
11166 (c-forward-syntactic-ws indent-point)
11167 (goto-char (max start (c-point 'bol))))
11168 (c-skip-ws-forward indent-point)
11169 (cond
11170
11171 ;; CASE 9C: we're looking at the first line in a brace-list
11172 ((= (point) indent-point)
11173 (if (consp special-brace-list)
11174 (goto-char (car (car special-brace-list)))
11175 (goto-char containing-sexp))
11176 (if (eq (point) (c-point 'boi))
11177 (c-add-syntax 'brace-list-intro (point))
11178 (setq lim (c-most-enclosing-brace c-state-cache (point)))
11179 (c-beginning-of-statement-1 lim)
11180 (c-add-stmt-syntax 'brace-list-intro nil t lim paren-state)))
11181
11182 ;; CASE 9D: this is just a later brace-list-entry or
11183 ;; brace-entry-open
11184 (t (if (or (eq char-after-ip ?{)
11185 (and c-special-brace-lists
11186 (save-excursion
11187 (goto-char indent-point)
11188 (c-forward-syntactic-ws (c-point 'eol))
11189 (c-looking-at-special-brace-list (point)))))
11190 (c-add-syntax 'brace-entry-open (point))
11191 (c-add-syntax 'brace-list-entry (point))
11192 ))
11193 ))))
11194
11195 ;; CASE 10: A continued statement or top level construct.
11196 ((and (not (memq char-before-ip '(?\; ?:)))
11197 (not (c-at-vsemi-p before-ws-ip))
11198 (or (not (eq char-before-ip ?}))
11199 (c-looking-at-inexpr-block-backward c-state-cache))
11200 (> (point)
11201 (save-excursion
11202 (c-beginning-of-statement-1 containing-sexp)
11203 (setq placeholder (point))))
11204 (/= placeholder containing-sexp))
11205 ;; This is shared with case 18.
11206 (c-guess-continued-construct indent-point
11207 char-after-ip
11208 placeholder
11209 containing-sexp
11210 paren-state))
11211
11212 ;; CASE 16: block close brace, possibly closing the defun or
11213 ;; the class
11214 ((eq char-after-ip ?})
11215 ;; From here on we have the next containing sexp in lim.
11216 (setq lim (c-most-enclosing-brace paren-state))
11217 (goto-char containing-sexp)
11218 (cond
11219
11220 ;; CASE 16E: Closing a statement block? This catches
11221 ;; cases where it's preceded by a statement keyword,
11222 ;; which works even when used in an "invalid" context,
11223 ;; e.g. a macro argument.
11224 ((c-after-conditional)
11225 (c-backward-to-block-anchor lim)
11226 (c-add-stmt-syntax 'block-close nil t lim paren-state))
11227
11228 ;; CASE 16A: closing a lambda defun or an in-expression
11229 ;; block? C.f. cases 4, 7B and 17E.
11230 ((setq placeholder (c-looking-at-inexpr-block
11231 (c-safe-position containing-sexp paren-state)
11232 nil))
11233 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
11234 'inline-close
11235 'block-close))
11236 (goto-char containing-sexp)
11237 (back-to-indentation)
11238 (if (= containing-sexp (point))
11239 (c-add-syntax tmpsymbol (point))
11240 (goto-char (cdr placeholder))
11241 (back-to-indentation)
11242 (c-add-stmt-syntax tmpsymbol nil t
11243 (c-most-enclosing-brace paren-state (point))
11244 paren-state)
11245 (if (/= (point) (cdr placeholder))
11246 (c-add-syntax (car placeholder)))))
11247
11248 ;; CASE 16B: does this close an inline or a function in
11249 ;; a non-class declaration level block?
11250 ((save-excursion
11251 (and lim
11252 (progn
11253 (goto-char lim)
11254 (c-looking-at-decl-block
11255 (c-most-enclosing-brace paren-state lim)
11256 nil))
11257 (setq placeholder (point))))
11258 (c-backward-to-decl-anchor lim)
11259 (back-to-indentation)
11260 (if (save-excursion
11261 (goto-char placeholder)
11262 (looking-at c-other-decl-block-key))
11263 (c-add-syntax 'defun-close (point))
11264 (c-add-syntax 'inline-close (point))))
11265
11266 ;; CASE 16F: Can be a defun-close of a function declared
11267 ;; in a statement block, e.g. in Pike or when using gcc
11268 ;; extensions, but watch out for macros followed by
11269 ;; blocks. Let it through to be handled below.
11270 ;; C.f. cases B.3 and 17G.
11271 ((save-excursion
11272 (and (not (c-at-statement-start-p))
11273 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
11274 (setq placeholder (point))
11275 (let ((c-recognize-typeless-decls nil))
11276 ;; Turn off recognition of constructs that
11277 ;; lacks a type in this case, since that's more
11278 ;; likely to be a macro followed by a block.
11279 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
11280 (back-to-indentation)
11281 (if (/= (point) containing-sexp)
11282 (goto-char placeholder))
11283 (c-add-stmt-syntax 'defun-close nil t lim paren-state))
11284
11285 ;; CASE 16C: If there is an enclosing brace then this is
11286 ;; a block close since defun closes inside declaration
11287 ;; level blocks have been handled above.
11288 (lim
11289 ;; If the block is preceded by a case/switch label on
11290 ;; the same line, we anchor at the first preceding label
11291 ;; at boi. The default handling in c-add-stmt-syntax
11292 ;; really fixes it better, but we do like this to keep
11293 ;; the indentation compatible with version 5.28 and
11294 ;; earlier. C.f. case 17H.
11295 (while (and (/= (setq placeholder (point)) (c-point 'boi))
11296 (eq (c-beginning-of-statement-1 lim) 'label)))
11297 (goto-char placeholder)
11298 (if (looking-at c-label-kwds-regexp)
11299 (c-add-syntax 'block-close (point))
11300 (goto-char containing-sexp)
11301 ;; c-backward-to-block-anchor not necessary here; those
11302 ;; situations are handled in case 16E above.
11303 (c-add-stmt-syntax 'block-close nil t lim paren-state)))
11304
11305 ;; CASE 16D: Only top level defun close left.
11306 (t
11307 (goto-char containing-sexp)
11308 (c-backward-to-decl-anchor lim)
11309 (c-add-stmt-syntax 'defun-close nil nil
11310 (c-most-enclosing-brace paren-state)
11311 paren-state))
11312 ))
11313
11314 ;; CASE 19: line is an expression, not a statement, and is directly
11315 ;; contained by a template delimiter. Most likely, we are in a
11316 ;; template arglist within a statement. This case is based on CASE
11317 ;; 7. At some point in the future, we may wish to create more
11318 ;; syntactic symbols such as `template-intro',
11319 ;; `template-cont-nonempty', etc., and distinguish between them as we
11320 ;; do for `arglist-intro' etc. (2009-12-07).
11321 ((and c-recognize-<>-arglists
11322 (setq containing-< (c-up-list-backward indent-point containing-sexp))
11323 (eq (char-after containing-<) ?\<))
11324 (setq placeholder (c-point 'boi containing-<))
11325 (goto-char containing-sexp) ; Most nested Lbrace/Lparen (but not
11326 ; '<') before indent-point.
11327 (if (>= (point) placeholder)
11328 (progn
11329 (forward-char)
11330 (skip-chars-forward " \t"))
11331 (goto-char placeholder))
11332 (c-add-stmt-syntax 'template-args-cont (list containing-<) t
11333 (c-most-enclosing-brace c-state-cache (point))
11334 paren-state))
11335
11336 ;; CASE 17: Statement or defun catchall.
11337 (t
11338 (goto-char indent-point)
11339 ;; Back up statements until we find one that starts at boi.
11340 (while (let* ((prev-point (point))
11341 (last-step-type (c-beginning-of-statement-1
11342 containing-sexp)))
11343 (if (= (point) prev-point)
11344 (progn
11345 (setq step-type (or step-type last-step-type))
11346 nil)
11347 (setq step-type last-step-type)
11348 (/= (point) (c-point 'boi)))))
11349 (cond
11350
11351 ;; CASE 17B: continued statement
11352 ((and (eq step-type 'same)
11353 (/= (point) indent-point))
11354 (c-add-stmt-syntax 'statement-cont nil nil
11355 containing-sexp paren-state))
11356
11357 ;; CASE 17A: After a case/default label?
11358 ((progn
11359 (while (and (eq step-type 'label)
11360 (not (looking-at c-label-kwds-regexp)))
11361 (setq step-type
11362 (c-beginning-of-statement-1 containing-sexp)))
11363 (eq step-type 'label))
11364 (c-add-stmt-syntax (if (eq char-after-ip ?{)
11365 'statement-case-open
11366 'statement-case-intro)
11367 nil t containing-sexp paren-state))
11368
11369 ;; CASE 17D: any old statement
11370 ((progn
11371 (while (eq step-type 'label)
11372 (setq step-type
11373 (c-beginning-of-statement-1 containing-sexp)))
11374 (eq step-type 'previous))
11375 (c-add-stmt-syntax 'statement nil t
11376 containing-sexp paren-state)
11377 (if (eq char-after-ip ?{)
11378 (c-add-syntax 'block-open)))
11379
11380 ;; CASE 17I: Inside a substatement block.
11381 ((progn
11382 ;; The following tests are all based on containing-sexp.
11383 (goto-char containing-sexp)
11384 ;; From here on we have the next containing sexp in lim.
11385 (setq lim (c-most-enclosing-brace paren-state containing-sexp))
11386 (c-after-conditional))
11387 (c-backward-to-block-anchor lim)
11388 (c-add-stmt-syntax 'statement-block-intro nil t
11389 lim paren-state)
11390 (if (eq char-after-ip ?{)
11391 (c-add-syntax 'block-open)))
11392
11393 ;; CASE 17E: first statement in an in-expression block.
11394 ;; C.f. cases 4, 7B and 16A.
11395 ((setq placeholder (c-looking-at-inexpr-block
11396 (c-safe-position containing-sexp paren-state)
11397 nil))
11398 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
11399 'defun-block-intro
11400 'statement-block-intro))
11401 (back-to-indentation)
11402 (if (= containing-sexp (point))
11403 (c-add-syntax tmpsymbol (point))
11404 (goto-char (cdr placeholder))
11405 (back-to-indentation)
11406 (c-add-stmt-syntax tmpsymbol nil t
11407 (c-most-enclosing-brace c-state-cache (point))
11408 paren-state)
11409 (if (/= (point) (cdr placeholder))
11410 (c-add-syntax (car placeholder))))
11411 (if (eq char-after-ip ?{)
11412 (c-add-syntax 'block-open)))
11413
11414 ;; CASE 17F: first statement in an inline, or first
11415 ;; statement in a top-level defun. we can tell this is it
11416 ;; if there are no enclosing braces that haven't been
11417 ;; narrowed out by a class (i.e. don't use bod here).
11418 ((save-excursion
11419 (or (not (setq placeholder (c-most-enclosing-brace
11420 paren-state)))
11421 (and (progn
11422 (goto-char placeholder)
11423 (eq (char-after) ?{))
11424 (c-looking-at-decl-block (c-most-enclosing-brace
11425 paren-state (point))
11426 nil))))
11427 (c-backward-to-decl-anchor lim)
11428 (back-to-indentation)
11429 (c-add-syntax 'defun-block-intro (point)))
11430
11431 ;; CASE 17G: First statement in a function declared inside
11432 ;; a normal block. This can occur in Pike and with
11433 ;; e.g. the gcc extensions, but watch out for macros
11434 ;; followed by blocks. C.f. cases B.3 and 16F.
11435 ((save-excursion
11436 (and (not (c-at-statement-start-p))
11437 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
11438 (setq placeholder (point))
11439 (let ((c-recognize-typeless-decls nil))
11440 ;; Turn off recognition of constructs that lacks
11441 ;; a type in this case, since that's more likely
11442 ;; to be a macro followed by a block.
11443 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
11444 (back-to-indentation)
11445 (if (/= (point) containing-sexp)
11446 (goto-char placeholder))
11447 (c-add-stmt-syntax 'defun-block-intro nil t
11448 lim paren-state))
11449
11450 ;; CASE 17H: First statement in a block.
11451 (t
11452 ;; If the block is preceded by a case/switch label on the
11453 ;; same line, we anchor at the first preceding label at
11454 ;; boi. The default handling in c-add-stmt-syntax is
11455 ;; really fixes it better, but we do like this to keep the
11456 ;; indentation compatible with version 5.28 and earlier.
11457 ;; C.f. case 16C.
11458 (while (and (/= (setq placeholder (point)) (c-point 'boi))
11459 (eq (c-beginning-of-statement-1 lim) 'label)))
11460 (goto-char placeholder)
11461 (if (looking-at c-label-kwds-regexp)
11462 (c-add-syntax 'statement-block-intro (point))
11463 (goto-char containing-sexp)
11464 ;; c-backward-to-block-anchor not necessary here; those
11465 ;; situations are handled in case 17I above.
11466 (c-add-stmt-syntax 'statement-block-intro nil t
11467 lim paren-state))
11468 (if (eq char-after-ip ?{)
11469 (c-add-syntax 'block-open)))
11470 ))
11471 )
11472
11473 ;; now we need to look at any modifiers
11474 (goto-char indent-point)
11475 (skip-chars-forward " \t")
11476
11477 ;; are we looking at a comment only line?
11478 (when (and (looking-at c-comment-start-regexp)
11479 (/= (c-forward-token-2 0 nil (c-point 'eol)) 0))
11480 (c-append-syntax 'comment-intro))
11481
11482 ;; we might want to give additional offset to friends (in C++).
11483 (when (and c-opt-friend-key
11484 (looking-at c-opt-friend-key))
11485 (c-append-syntax 'friend))
11486
11487 ;; Set syntactic-relpos.
11488 (let ((p c-syntactic-context))
11489 (while (and p
11490 (if (integerp (c-langelem-pos (car p)))
11491 (progn
11492 (setq syntactic-relpos (c-langelem-pos (car p)))
11493 nil)
11494 t))
11495 (setq p (cdr p))))
11496
11497 ;; Start of or a continuation of a preprocessor directive?
11498 (if (and macro-start
11499 (eq macro-start (c-point 'boi))
11500 (not (and (c-major-mode-is 'pike-mode)
11501 (eq (char-after (1+ macro-start)) ?\"))))
11502 (c-append-syntax 'cpp-macro)
11503 (when (and c-syntactic-indentation-in-macros macro-start)
11504 (if in-macro-expr
11505 (when (or
11506 (< syntactic-relpos macro-start)
11507 (not (or
11508 (assq 'arglist-intro c-syntactic-context)
11509 (assq 'arglist-cont c-syntactic-context)
11510 (assq 'arglist-cont-nonempty c-syntactic-context)
11511 (assq 'arglist-close c-syntactic-context))))
11512 ;; If inside a cpp expression, i.e. anywhere in a
11513 ;; cpp directive except a #define body, we only let
11514 ;; through the syntactic analysis that is internal
11515 ;; in the expression. That means the arglist
11516 ;; elements, if they are anchored inside the cpp
11517 ;; expression.
11518 (setq c-syntactic-context nil)
11519 (c-add-syntax 'cpp-macro-cont macro-start))
11520 (when (and (eq macro-start syntactic-relpos)
11521 (not (assq 'cpp-define-intro c-syntactic-context))
11522 (save-excursion
11523 (goto-char macro-start)
11524 (or (not (c-forward-to-cpp-define-body))
11525 (<= (point) (c-point 'boi indent-point)))))
11526 ;; Inside a #define body and the syntactic analysis is
11527 ;; anchored on the start of the #define. In this case
11528 ;; we add cpp-define-intro to get the extra
11529 ;; indentation of the #define body.
11530 (c-add-syntax 'cpp-define-intro)))))
11531
11532 ;; return the syntax
11533 c-syntactic-context)))
11534
11535 \f
11536 ;; Indentation calculation.
11537
11538 (defun c-evaluate-offset (offset langelem symbol)
11539 ;; offset can be a number, a function, a variable, a list, or one of
11540 ;; the symbols + or -
11541 ;;
11542 ;; This function might do hidden buffer changes.
11543 (let ((res
11544 (cond
11545 ((numberp offset) offset)
11546 ((vectorp offset) offset)
11547 ((null offset) nil)
11548
11549 ((eq offset '+) c-basic-offset)
11550 ((eq offset '-) (- c-basic-offset))
11551 ((eq offset '++) (* 2 c-basic-offset))
11552 ((eq offset '--) (* 2 (- c-basic-offset)))
11553 ((eq offset '*) (/ c-basic-offset 2))
11554 ((eq offset '/) (/ (- c-basic-offset) 2))
11555
11556 ((functionp offset)
11557 (c-evaluate-offset
11558 (funcall offset
11559 (cons (c-langelem-sym langelem)
11560 (c-langelem-pos langelem)))
11561 langelem symbol))
11562
11563 ((listp offset)
11564 (cond
11565 ((eq (car offset) 'quote)
11566 (c-benign-error "The offset %S for %s was mistakenly quoted"
11567 offset symbol)
11568 nil)
11569
11570 ((memq (car offset) '(min max))
11571 (let (res val (method (car offset)))
11572 (setq offset (cdr offset))
11573 (while offset
11574 (setq val (c-evaluate-offset (car offset) langelem symbol))
11575 (cond
11576 ((not val))
11577 ((not res)
11578 (setq res val))
11579 ((integerp val)
11580 (if (vectorp res)
11581 (c-benign-error "\
11582 Error evaluating offset %S for %s: \
11583 Cannot combine absolute offset %S with relative %S in `%s' method"
11584 (car offset) symbol res val method)
11585 (setq res (funcall method res val))))
11586 (t
11587 (if (integerp res)
11588 (c-benign-error "\
11589 Error evaluating offset %S for %s: \
11590 Cannot combine relative offset %S with absolute %S in `%s' method"
11591 (car offset) symbol res val method)
11592 (setq res (vector (funcall method (aref res 0)
11593 (aref val 0)))))))
11594 (setq offset (cdr offset)))
11595 res))
11596
11597 ((eq (car offset) 'add)
11598 (let (res val)
11599 (setq offset (cdr offset))
11600 (while offset
11601 (setq val (c-evaluate-offset (car offset) langelem symbol))
11602 (cond
11603 ((not val))
11604 ((not res)
11605 (setq res val))
11606 ((integerp val)
11607 (if (vectorp res)
11608 (setq res (vector (+ (aref res 0) val)))
11609 (setq res (+ res val))))
11610 (t
11611 (if (vectorp res)
11612 (c-benign-error "\
11613 Error evaluating offset %S for %s: \
11614 Cannot combine absolute offsets %S and %S in `add' method"
11615 (car offset) symbol res val)
11616 (setq res val)))) ; Override.
11617 (setq offset (cdr offset)))
11618 res))
11619
11620 (t
11621 (let (res)
11622 (when (eq (car offset) 'first)
11623 (setq offset (cdr offset)))
11624 (while (and (not res) offset)
11625 (setq res (c-evaluate-offset (car offset) langelem symbol)
11626 offset (cdr offset)))
11627 res))))
11628
11629 ((and (symbolp offset) (boundp offset))
11630 (symbol-value offset))
11631
11632 (t
11633 (c-benign-error "Unknown offset format %S for %s" offset symbol)
11634 nil))))
11635
11636 (if (or (null res) (integerp res)
11637 (and (vectorp res) (= (length res) 1) (integerp (aref res 0))))
11638 res
11639 (c-benign-error "Error evaluating offset %S for %s: Got invalid value %S"
11640 offset symbol res)
11641 nil)))
11642
11643 (defun c-calc-offset (langelem)
11644 ;; Get offset from LANGELEM which is a list beginning with the
11645 ;; syntactic symbol and followed by any analysis data it provides.
11646 ;; That data may be zero or more elements, but if at least one is
11647 ;; given then the first is the anchor position (or nil). The symbol
11648 ;; is matched against `c-offsets-alist' and the offset calculated
11649 ;; from that is returned.
11650 ;;
11651 ;; This function might do hidden buffer changes.
11652 (let* ((symbol (c-langelem-sym langelem))
11653 (match (assq symbol c-offsets-alist))
11654 (offset (cdr-safe match)))
11655 (if match
11656 (setq offset (c-evaluate-offset offset langelem symbol))
11657 (if c-strict-syntax-p
11658 (c-benign-error "No offset found for syntactic symbol %s" symbol))
11659 (setq offset 0))
11660 (if (vectorp offset)
11661 offset
11662 (or (and (numberp offset) offset)
11663 (and (symbolp offset) (symbol-value offset))
11664 0))
11665 ))
11666
11667 (defun c-get-offset (langelem)
11668 ;; This is a compatibility wrapper for `c-calc-offset' in case
11669 ;; someone is calling it directly. It takes an old style syntactic
11670 ;; element on the form (SYMBOL . ANCHOR-POS) and converts it to the
11671 ;; new list form.
11672 ;;
11673 ;; This function might do hidden buffer changes.
11674 (if (c-langelem-pos langelem)
11675 (c-calc-offset (list (c-langelem-sym langelem)
11676 (c-langelem-pos langelem)))
11677 (c-calc-offset langelem)))
11678
11679 (defun c-get-syntactic-indentation (langelems)
11680 ;; Calculate the syntactic indentation from a syntactic description
11681 ;; as returned by `c-guess-syntax'.
11682 ;;
11683 ;; Note that topmost-intro always has an anchor position at bol, for
11684 ;; historical reasons. It's often used together with other symbols
11685 ;; that has more sane positions. Since we always use the first
11686 ;; found anchor position, we rely on that these other symbols always
11687 ;; precede topmost-intro in the LANGELEMS list.
11688 ;;
11689 ;; This function might do hidden buffer changes.
11690 (let ((indent 0) anchor)
11691
11692 (while langelems
11693 (let* ((c-syntactic-element (car langelems))
11694 (res (c-calc-offset c-syntactic-element)))
11695
11696 (if (vectorp res)
11697 ;; Got an absolute column that overrides any indentation
11698 ;; we've collected so far, but not the relative
11699 ;; indentation we might get for the nested structures
11700 ;; further down the langelems list.
11701 (setq indent (elt res 0)
11702 anchor (point-min)) ; A position at column 0.
11703
11704 ;; Got a relative change of the current calculated
11705 ;; indentation.
11706 (setq indent (+ indent res))
11707
11708 ;; Use the anchor position from the first syntactic
11709 ;; element with one.
11710 (unless anchor
11711 (setq anchor (c-langelem-pos (car langelems)))))
11712
11713 (setq langelems (cdr langelems))))
11714
11715 (if anchor
11716 (+ indent (save-excursion
11717 (goto-char anchor)
11718 (current-column)))
11719 indent)))
11720
11721 \f
11722 (cc-provide 'cc-engine)
11723
11724 ;; Local Variables:
11725 ;; indent-tabs-mode: t
11726 ;; tab-width: 8
11727 ;; End:
11728 ;;; cc-engine.el ends here