Fontify constructs following "::" in C++ argument lists correctly.
[emacs.git] / lisp / progmodes / cc-engine.el
blob1310ef77f7ee68c5d238176efce4dfa6da9b7891
1 ;;; cc-engine.el --- core syntax guessing engine for CC mode -*- coding: utf-8 -*-
3 ;; Copyright (C) 1985, 1987, 1992-2016 Free Software Foundation, Inc.
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
16 ;; This file is part of GNU Emacs.
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.
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.
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/>.
31 ;;; Commentary:
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.
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.)
43 ;; Hidden buffer changes
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.
52 ;; Interactive functions are assumed to not do hidden buffer changes,
53 ;; except in the specific parts of them that do real changes.
55 ;; Lineup functions are assumed to do hidden buffer changes. They
56 ;; must not do real changes, though.
58 ;; All other functions that do hidden buffer changes have that noted
59 ;; in their doc string or comment.
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.
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).
71 ;; Use of text properties
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.
77 ;; Note: This doc is for internal use only. Other packages should not
78 ;; assume that these text properties are used as described here.
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.
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, to
87 ;; "hide" obtrusive characters in preprocessor lines, and to mark C++
88 ;; raw strings to enable their fontification.
90 ;; This property is used on single characters and is therefore
91 ;; always treated as front and rear nonsticky (or start and end open
92 ;; in XEmacs vocabulary). It's therefore installed on
93 ;; `text-property-default-nonsticky' if that variable exists (Emacs
94 ;; >= 21).
96 ;; 'c-is-sws and 'c-in-sws
97 ;; Used by `c-forward-syntactic-ws' and `c-backward-syntactic-ws' to
98 ;; speed them up. See the comment blurb before `c-put-is-sws'
99 ;; below for further details.
101 ;; 'c-type
102 ;; This property is used on single characters to mark positions with
103 ;; special syntactic relevance of various sorts. Its primary use is
104 ;; to avoid glitches when multiline constructs are refontified
105 ;; interactively (on font lock decoration level 3). It's cleared in
106 ;; a region before it's fontified and is then put on relevant chars
107 ;; in that region as they are encountered during the fontification.
108 ;; The value specifies the kind of position:
110 ;; 'c-decl-arg-start
111 ;; Put on the last char of the token preceding each declaration
112 ;; inside a declaration style arglist (typically in a function
113 ;; prototype).
115 ;; 'c-decl-end
116 ;; Put on the last char of the token preceding a declaration.
117 ;; This is used in cases where declaration boundaries can't be
118 ;; recognized simply by looking for a token like ";" or "}".
119 ;; `c-type-decl-end-used' must be set if this is used (see also
120 ;; `c-find-decl-spots').
122 ;; 'c-<>-arg-sep
123 ;; Put on the commas that separate arguments in angle bracket
124 ;; arglists like C++ template arglists.
126 ;; 'c-decl-id-start and 'c-decl-type-start
127 ;; Put on the last char of the token preceding each declarator
128 ;; in the declarator list of a declaration. They are also used
129 ;; between the identifiers cases like enum declarations.
130 ;; 'c-decl-type-start is used when the declarators are types,
131 ;; 'c-decl-id-start otherwise.
133 ;; 'c-awk-NL-prop
134 ;; Used in AWK mode to mark the various kinds of newlines. See
135 ;; cc-awk.el.
137 ;;; Code:
139 (eval-when-compile
140 (let ((load-path
141 (if (and (boundp 'byte-compile-dest-file)
142 (stringp byte-compile-dest-file))
143 (cons (file-name-directory byte-compile-dest-file) load-path)
144 load-path)))
145 (load "cc-bytecomp" nil t)))
147 (cc-require 'cc-defs)
148 (cc-require-when-compile 'cc-langs)
149 (cc-require 'cc-vars)
151 (eval-when-compile (require 'cl))
154 ;; Make declarations for all the `c-lang-defvar' variables in cc-langs.
156 (defmacro c-declare-lang-variables ()
157 `(progn
158 ,@(c--mapcan (lambda (init)
159 `(,(if (elt init 2)
160 `(defvar ,(car init) nil ,(elt init 2))
161 `(defvar ,(car init) nil))
162 (make-variable-buffer-local ',(car init))))
163 (cdr c-lang-variable-inits))))
164 (c-declare-lang-variables)
167 ;;; Internal state variables.
169 ;; Internal state of hungry delete key feature
170 (defvar c-hungry-delete-key nil)
171 (make-variable-buffer-local 'c-hungry-delete-key)
173 ;; The electric flag (toggled by `c-toggle-electric-state').
174 ;; If t, electric actions (like automatic reindentation, and (if
175 ;; c-auto-newline is also set) auto newlining) will happen when an electric
176 ;; key like `{' is pressed (or an electric keyword like `else').
177 (defvar c-electric-flag t)
178 (make-variable-buffer-local 'c-electric-flag)
180 ;; Internal state of auto newline feature.
181 (defvar c-auto-newline nil)
182 (make-variable-buffer-local 'c-auto-newline)
184 ;; Included in the mode line to indicate the active submodes.
185 ;; (defvar c-submode-indicators nil)
186 ;; (make-variable-buffer-local 'c-submode-indicators)
188 (defun c-calculate-state (arg prevstate)
189 ;; Calculate the new state of PREVSTATE, t or nil, based on arg. If
190 ;; arg is nil or zero, toggle the state. If arg is negative, turn
191 ;; the state off, and if arg is positive, turn the state on
192 (if (or (not arg)
193 (zerop (setq arg (prefix-numeric-value arg))))
194 (not prevstate)
195 (> arg 0)))
198 ;; Basic handling of preprocessor directives.
200 ;; This is a dynamically bound cache used together with
201 ;; `c-query-macro-start' and `c-query-and-set-macro-start'. It only
202 ;; works as long as point doesn't cross a macro boundary.
203 (defvar c-macro-start 'unknown)
205 (defsubst c-query-and-set-macro-start ()
206 (if (symbolp c-macro-start)
207 (setq c-macro-start (save-excursion
208 (c-save-buffer-state ()
209 (and (c-beginning-of-macro)
210 (point)))))
211 c-macro-start))
213 (defsubst c-query-macro-start ()
214 (if (symbolp c-macro-start)
215 (save-excursion
216 (c-save-buffer-state ()
217 (and (c-beginning-of-macro)
218 (point))))
219 c-macro-start))
221 ;; One element macro cache to cope with continual movement within very large
222 ;; CPP macros.
223 (defvar c-macro-cache nil)
224 (make-variable-buffer-local 'c-macro-cache)
225 ;; Nil or cons of the bounds of the most recent CPP form probed by
226 ;; `c-beginning-of-macro', `c-end-of-macro' or `c-syntactic-end-of-macro'.
227 ;; The cdr will be nil if we know only the start of the CPP form.
228 (defvar c-macro-cache-start-pos nil)
229 (make-variable-buffer-local 'c-macro-cache-start-pos)
230 ;; The starting position from where we determined `c-macro-cache'.
231 (defvar c-macro-cache-syntactic nil)
232 (make-variable-buffer-local 'c-macro-cache-syntactic)
233 ;; Either nil, or the syntactic end of the macro currently represented by
234 ;; `c-macro-cache'.
235 (defvar c-macro-cache-no-comment nil)
236 (make-variable-buffer-local 'c-macro-cache-no-comment)
237 ;; Either nil, or the last character of the macro currently represented by
238 ;; `c-macro-cache' which isn't in a comment. */
240 (defun c-invalidate-macro-cache (beg end)
241 ;; Called from a before-change function. If the change region is before or
242 ;; in the macro characterized by `c-macro-cache' etc., nullify it
243 ;; appropriately. BEG and END are the standard before-change-functions
244 ;; parameters. END isn't used.
245 (cond
246 ((null c-macro-cache))
247 ((< beg (car c-macro-cache))
248 (setq c-macro-cache nil
249 c-macro-cache-start-pos nil
250 c-macro-cache-syntactic nil
251 c-macro-cache-no-comment nil))
252 ((and (cdr c-macro-cache)
253 (< beg (cdr c-macro-cache)))
254 (setcdr c-macro-cache nil)
255 (setq c-macro-cache-start-pos beg
256 c-macro-cache-syntactic nil
257 c-macro-cache-no-comment nil))))
259 (defun c-macro-is-genuine-p ()
260 ;; Check that the ostensible CPP construct at point is a real one. In
261 ;; particular, if point is on the first line of a narrowed buffer, make sure
262 ;; that the "#" isn't, say, the second character of a "##" operator. Return
263 ;; t when the macro is real, nil otherwise.
264 (let ((here (point)))
265 (beginning-of-line)
266 (prog1
267 (if (and (eq (point) (point-min))
268 (/= (point) 1))
269 (save-restriction
270 (widen)
271 (beginning-of-line)
272 (and (looking-at c-anchored-cpp-prefix)
273 (eq (match-beginning 1) here)))
275 (goto-char here))))
277 (defun c-beginning-of-macro (&optional lim)
278 "Go to the beginning of a preprocessor directive.
279 Leave point at the beginning of the directive and return t if in one,
280 otherwise return nil and leave point unchanged.
282 Note that this function might do hidden buffer changes. See the
283 comment at the start of cc-engine.el for more info."
284 (let ((here (point)))
285 (when c-opt-cpp-prefix
286 (if (and (car c-macro-cache)
287 (>= (point) (car c-macro-cache))
288 (or (and (cdr c-macro-cache)
289 (<= (point) (cdr c-macro-cache)))
290 (<= (point) c-macro-cache-start-pos)))
291 (unless (< (car c-macro-cache) (or lim (point-min)))
292 (progn (goto-char (max (or lim (point-min)) (car c-macro-cache)))
293 (setq c-macro-cache-start-pos
294 (max c-macro-cache-start-pos here))
296 (setq c-macro-cache nil
297 c-macro-cache-start-pos nil
298 c-macro-cache-syntactic nil
299 c-macro-cache-no-comment nil)
301 (save-restriction
302 (if lim (narrow-to-region lim (point-max)))
303 (beginning-of-line)
304 (while (eq (char-before (1- (point))) ?\\)
305 (forward-line -1))
306 (back-to-indentation)
307 (if (and (<= (point) here)
308 (save-match-data (looking-at c-opt-cpp-start))
309 (c-macro-is-genuine-p))
310 (progn
311 (setq c-macro-cache (cons (point) nil)
312 c-macro-cache-start-pos here)
314 (goto-char here)
315 nil))))))
317 (defun c-end-of-macro ()
318 "Go to the end of a preprocessor directive.
319 More accurately, move the point to the end of the closest following
320 line that doesn't end with a line continuation backslash - no check is
321 done that the point is inside a cpp directive to begin with.
323 Note that this function might do hidden buffer changes. See the
324 comment at the start of cc-engine.el for more info."
325 (if (and (cdr c-macro-cache)
326 (<= (point) (cdr c-macro-cache))
327 (>= (point) (car c-macro-cache)))
328 (goto-char (cdr c-macro-cache))
329 (unless (and (car c-macro-cache)
330 (<= (point) c-macro-cache-start-pos)
331 (>= (point) (car c-macro-cache)))
332 (setq c-macro-cache nil
333 c-macro-cache-start-pos nil
334 c-macro-cache-syntactic nil
335 c-macro-cache-no-comment nil))
336 (while (progn
337 (end-of-line)
338 (when (and (eq (char-before) ?\\)
339 (not (eobp)))
340 (forward-char)
341 t)))
342 (when (car c-macro-cache)
343 (setcdr c-macro-cache (point)))))
345 (defun c-syntactic-end-of-macro ()
346 ;; Go to the end of a CPP directive, or a "safe" pos just before.
348 ;; This is normally the end of the next non-escaped line. A "safe"
349 ;; position is one not within a string or comment. (The EOL on a line
350 ;; comment is NOT "safe").
352 ;; This function must only be called from the beginning of a CPP construct.
354 ;; Note that this function might do hidden buffer changes. See the comment
355 ;; at the start of cc-engine.el for more info.
356 (let* ((here (point))
357 (there (progn (c-end-of-macro) (point)))
359 (if c-macro-cache-syntactic
360 (goto-char c-macro-cache-syntactic)
361 (setq s (parse-partial-sexp here there))
362 (while (and (or (nth 3 s) ; in a string
363 (nth 4 s)) ; in a comment (maybe at end of line comment)
364 (> there here)) ; No infinite loops, please.
365 (setq there (1- (nth 8 s)))
366 (setq s (parse-partial-sexp here there)))
367 (setq c-macro-cache-syntactic (point)))
368 (point)))
370 (defun c-no-comment-end-of-macro ()
371 ;; Go to the end of a CPP directive, or a pos just before which isn't in a
372 ;; comment. For this purpose, open strings are ignored.
374 ;; This function must only be called from the beginning of a CPP construct.
376 ;; Note that this function might do hidden buffer changes. See the comment
377 ;; at the start of cc-engine.el for more info.
378 (let* ((here (point))
379 (there (progn (c-end-of-macro) (point)))
381 (if c-macro-cache-no-comment
382 (goto-char c-macro-cache-no-comment)
383 (setq s (parse-partial-sexp here there))
384 (while (and (nth 3 s) ; in a string
385 (> there here)) ; No infinite loops, please.
386 (setq here (1+ (nth 8 s)))
387 (setq s (parse-partial-sexp here there)))
388 (when (nth 4 s)
389 (goto-char (1- (nth 8 s))))
390 (setq c-macro-cache-no-comment (point)))
391 (point)))
393 (defun c-forward-over-cpp-define-id ()
394 ;; Assuming point is at the "#" that introduces a preprocessor
395 ;; directive, it's moved forward to the end of the identifier which is
396 ;; "#define"d (or whatever c-opt-cpp-macro-define specifies). Non-nil
397 ;; is returned in this case, in all other cases nil is returned and
398 ;; point isn't moved.
400 ;; This function might do hidden buffer changes.
401 (when (and c-opt-cpp-macro-define-id
402 (looking-at c-opt-cpp-macro-define-id))
403 (goto-char (match-end 0))))
405 (defun c-forward-to-cpp-define-body ()
406 ;; Assuming point is at the "#" that introduces a preprocessor
407 ;; directive, it's moved forward to the start of the definition body
408 ;; if it's a "#define" (or whatever c-opt-cpp-macro-define
409 ;; specifies). Non-nil is returned in this case, in all other cases
410 ;; nil is returned and point isn't moved.
412 ;; This function might do hidden buffer changes.
413 (when (and c-opt-cpp-macro-define-start
414 (looking-at c-opt-cpp-macro-define-start)
415 (not (= (match-end 0) (c-point 'eol))))
416 (goto-char (match-end 0))))
419 ;;; Basic utility functions.
421 (defun c-delq-from-dotted-list (elt dlist)
422 ;; If ELT is a member of the (possibly dotted) list DLIST, remove all
423 ;; occurrences of it (except for any in the last cdr of DLIST).
425 ;; Call this as (setq DLIST (c-delq-from-dotted-list ELT DLIST)), as
426 ;; sometimes the original structure is changed, sometimes it's not.
428 ;; This function is needed in Emacs < 24.5, and possibly XEmacs, because
429 ;; `delq' throws an error in these versions when given a dotted list.
430 (let ((tail dlist) prev)
431 (while (consp tail)
432 (if (eq (car tail) elt)
433 (if prev
434 (setcdr prev (cdr tail))
435 (setq dlist (cdr dlist)))
436 (setq prev tail))
437 (setq tail (cdr tail)))
438 dlist))
440 (defun c-syntactic-content (from to paren-level)
441 ;; Return the given region as a string where all syntactic
442 ;; whitespace is removed or, where necessary, replaced with a single
443 ;; space. If PAREN-LEVEL is given then all parens in the region are
444 ;; collapsed to "()", "[]" etc.
446 ;; This function might do hidden buffer changes.
448 (save-excursion
449 (save-restriction
450 (narrow-to-region from to)
451 (goto-char from)
452 (let* ((parts (list nil)) (tail parts) pos in-paren)
454 (while (re-search-forward c-syntactic-ws-start to t)
455 (goto-char (setq pos (match-beginning 0)))
456 (c-forward-syntactic-ws)
457 (if (= (point) pos)
458 (forward-char)
460 (when paren-level
461 (save-excursion
462 (setq in-paren (= (car (parse-partial-sexp from pos 1)) 1)
463 pos (point))))
465 (if (and (> pos from)
466 (< (point) to)
467 (looking-at "\\w\\|\\s_")
468 (save-excursion
469 (goto-char (1- pos))
470 (looking-at "\\w\\|\\s_")))
471 (progn
472 (setcdr tail (list (buffer-substring-no-properties from pos)
473 " "))
474 (setq tail (cddr tail)))
475 (setcdr tail (list (buffer-substring-no-properties from pos)))
476 (setq tail (cdr tail)))
478 (when in-paren
479 (when (= (car (parse-partial-sexp pos to -1)) -1)
480 (setcdr tail (list (buffer-substring-no-properties
481 (1- (point)) (point))))
482 (setq tail (cdr tail))))
484 (setq from (point))))
486 (setcdr tail (list (buffer-substring-no-properties from to)))
487 (apply 'concat (cdr parts))))))
489 (defun c-shift-line-indentation (shift-amt)
490 ;; Shift the indentation of the current line with the specified
491 ;; amount (positive inwards). The buffer is modified only if
492 ;; SHIFT-AMT isn't equal to zero.
493 (let ((pos (- (point-max) (point)))
494 (c-macro-start c-macro-start)
495 tmp-char-inserted)
496 (if (zerop shift-amt)
498 ;; If we're on an empty line inside a macro, we take the point
499 ;; to be at the current indentation and shift it to the
500 ;; appropriate column. This way we don't treat the extra
501 ;; whitespace out to the line continuation as indentation.
502 (when (and (c-query-and-set-macro-start)
503 (looking-at "[ \t]*\\\\$")
504 (save-excursion
505 (skip-chars-backward " \t")
506 (bolp)))
507 (insert ?x)
508 (backward-char)
509 (setq tmp-char-inserted t))
510 (unwind-protect
511 (let ((col (current-indentation)))
512 (delete-region (c-point 'bol) (c-point 'boi))
513 (beginning-of-line)
514 (indent-to (+ col shift-amt)))
515 (when tmp-char-inserted
516 (delete-char 1))))
517 ;; If initial point was within line's indentation and we're not on
518 ;; a line with a line continuation in a macro, position after the
519 ;; indentation. Else stay at same point in text.
520 (if (and (< (point) (c-point 'boi))
521 (not tmp-char-inserted))
522 (back-to-indentation)
523 (if (> (- (point-max) pos) (point))
524 (goto-char (- (point-max) pos))))))
526 (defsubst c-keyword-sym (keyword)
527 ;; Return non-nil if the string KEYWORD is a known keyword. More
528 ;; precisely, the value is the symbol for the keyword in
529 ;; `c-keywords-obarray'.
530 (intern-soft keyword c-keywords-obarray))
532 (defsubst c-keyword-member (keyword-sym lang-constant)
533 ;; Return non-nil if the symbol KEYWORD-SYM, as returned by
534 ;; `c-keyword-sym', is a member of LANG-CONSTANT, which is the name
535 ;; of a language constant that ends with "-kwds". If KEYWORD-SYM is
536 ;; nil then the result is nil.
537 (get keyword-sym lang-constant))
539 ;; String syntax chars, suitable for skip-syntax-(forward|backward).
540 (defconst c-string-syntax (if (memq 'gen-string-delim c-emacs-features)
541 "\"|"
542 "\""))
544 ;; Regexp matching string limit syntax.
545 (defconst c-string-limit-regexp (if (memq 'gen-string-delim c-emacs-features)
546 "\\s\"\\|\\s|"
547 "\\s\""))
549 ;; Regexp matching WS followed by string limit syntax.
550 (defconst c-ws*-string-limit-regexp
551 (concat "[ \t]*\\(" c-string-limit-regexp "\\)"))
553 ;; Holds formatted error strings for the few cases where parse errors
554 ;; are reported.
555 (defvar c-parsing-error nil)
556 (make-variable-buffer-local 'c-parsing-error)
558 (defun c-echo-parsing-error (&optional quiet)
559 (when (and c-report-syntactic-errors c-parsing-error (not quiet))
560 (c-benign-error "%s" c-parsing-error))
561 c-parsing-error)
563 ;; Faces given to comments and string literals. This is used in some
564 ;; situations to speed up recognition; it isn't mandatory that font
565 ;; locking is in use. This variable is extended with the face in
566 ;; `c-doc-face-name' when fontification is activated in cc-fonts.el.
567 (defvar c-literal-faces
568 (append '(font-lock-comment-face font-lock-string-face)
569 (when (facep 'font-lock-comment-delimiter-face)
570 ;; New in Emacs 22.
571 '(font-lock-comment-delimiter-face))))
573 (defsubst c-put-c-type-property (pos value)
574 ;; Put a c-type property with the given value at POS.
575 (c-put-char-property pos 'c-type value))
577 (defun c-clear-c-type-property (from to value)
578 ;; Remove all occurrences of the c-type property that has the given
579 ;; value in the region between FROM and TO. VALUE is assumed to not
580 ;; be nil.
582 ;; Note: This assumes that c-type is put on single chars only; it's
583 ;; very inefficient if matching properties cover large regions.
584 (save-excursion
585 (goto-char from)
586 (while (progn
587 (when (eq (get-text-property (point) 'c-type) value)
588 (c-clear-char-property (point) 'c-type))
589 (goto-char (c-next-single-property-change (point) 'c-type nil to))
590 (< (point) to)))))
593 ;; Some debug tools to visualize various special positions. This
594 ;; debug code isn't as portable as the rest of CC Mode.
596 (cc-bytecomp-defun overlays-in)
597 (cc-bytecomp-defun overlay-get)
598 (cc-bytecomp-defun overlay-start)
599 (cc-bytecomp-defun overlay-end)
600 (cc-bytecomp-defun delete-overlay)
601 (cc-bytecomp-defun overlay-put)
602 (cc-bytecomp-defun make-overlay)
604 (defun c-debug-add-face (beg end face)
605 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay)
606 (while overlays
607 (setq overlay (car overlays)
608 overlays (cdr overlays))
609 (when (eq (overlay-get overlay 'face) face)
610 (setq beg (min beg (overlay-start overlay))
611 end (max end (overlay-end overlay)))
612 (delete-overlay overlay)))
613 (overlay-put (make-overlay beg end) 'face face)))
615 (defun c-debug-remove-face (beg end face)
616 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay
617 (ol-beg beg) (ol-end end))
618 (while overlays
619 (setq overlay (car overlays)
620 overlays (cdr overlays))
621 (when (eq (overlay-get overlay 'face) face)
622 (setq ol-beg (min ol-beg (overlay-start overlay))
623 ol-end (max ol-end (overlay-end overlay)))
624 (delete-overlay overlay)))
625 (when (< ol-beg beg)
626 (overlay-put (make-overlay ol-beg beg) 'face face))
627 (when (> ol-end end)
628 (overlay-put (make-overlay end ol-end) 'face face))))
631 ;; `c-beginning-of-statement-1' and accompanying stuff.
633 ;; KLUDGE ALERT: c-maybe-labelp is used to pass information between
634 ;; c-crosses-statement-barrier-p and c-beginning-of-statement-1. A
635 ;; better way should be implemented, but this will at least shut up
636 ;; the byte compiler.
637 (defvar c-maybe-labelp)
639 ;; New awk-compatible version of c-beginning-of-statement-1, ACM 2002/6/22
641 ;; Macros used internally in c-beginning-of-statement-1 for the
642 ;; automaton actions.
643 (defmacro c-bos-push-state ()
644 '(setq stack (cons (cons state saved-pos)
645 stack)))
646 (defmacro c-bos-pop-state (&optional do-if-done)
647 `(if (setq state (car (car stack))
648 saved-pos (cdr (car stack))
649 stack (cdr stack))
651 ,do-if-done
652 (throw 'loop nil)))
653 (defmacro c-bos-pop-state-and-retry ()
654 '(throw 'loop (setq state (car (car stack))
655 saved-pos (cdr (car stack))
656 ;; Throw nil if stack is empty, else throw non-nil.
657 stack (cdr stack))))
658 (defmacro c-bos-save-pos ()
659 '(setq saved-pos (vector pos tok ptok pptok)))
660 (defmacro c-bos-restore-pos ()
661 '(unless (eq (elt saved-pos 0) start)
662 (setq pos (elt saved-pos 0)
663 tok (elt saved-pos 1)
664 ptok (elt saved-pos 2)
665 pptok (elt saved-pos 3))
666 (goto-char pos)
667 (setq sym nil)))
668 (defmacro c-bos-save-error-info (missing got)
669 `(setq saved-pos (vector pos ,missing ,got)))
670 (defmacro c-bos-report-error ()
671 '(unless noerror
672 (setq c-parsing-error
673 (format-message
674 "No matching `%s' found for `%s' on line %d"
675 (elt saved-pos 1)
676 (elt saved-pos 2)
677 (1+ (count-lines (point-min)
678 (c-point 'bol (elt saved-pos 0))))))))
680 (defun c-beginning-of-statement-1 (&optional lim ignore-labels
681 noerror comma-delim)
682 "Move to the start of the current statement or declaration, or to
683 the previous one if already at the beginning of one. Only
684 statements/declarations on the same level are considered, i.e. don't
685 move into or out of sexps (not even normal expression parentheses).
687 If point is already at the earliest statement within braces or parens,
688 this function doesn't move back into any whitespace preceding it; it
689 returns `same' in this case.
691 Stop at statement continuation tokens like \"else\", \"catch\",
692 \"finally\" and the \"while\" in \"do ... while\" if the start point
693 is within the continuation. If starting at such a token, move to the
694 corresponding statement start. If at the beginning of a statement,
695 move to the closest containing statement if there is any. This might
696 also stop at a continuation clause.
698 Labels are treated as part of the following statements if
699 IGNORE-LABELS is non-nil. (FIXME: Doesn't work if we stop at a known
700 statement start keyword.) Otherwise, each label is treated as a
701 separate statement.
703 Macros are ignored \(i.e. skipped over) unless point is within one, in
704 which case the content of the macro is treated as normal code. Aside
705 from any normal statement starts found in it, stop at the first token
706 of the content in the macro, i.e. the expression of an \"#if\" or the
707 start of the definition in a \"#define\". Also stop at start of
708 macros before leaving them.
710 Return:
711 `label' if stopped at a label or \"case...:\" or \"default:\";
712 `same' if stopped at the beginning of the current statement;
713 `up' if stepped to a containing statement;
714 `previous' if stepped to a preceding statement;
715 `beginning' if stepped from a statement continuation clause to
716 its start clause; or
717 `macro' if stepped to a macro start.
718 Note that `same' and not `label' is returned if stopped at the same
719 label without crossing the colon character.
721 LIM may be given to limit the search. If the search hits the limit,
722 point will be left at the closest following token, or at the start
723 position if that is less (`same' is returned in this case).
725 NOERROR turns off error logging to `c-parsing-error'.
727 Normally only `;' and virtual semicolons are considered to delimit
728 statements, but if COMMA-DELIM is non-nil then `,' is treated
729 as a delimiter too.
731 Note that this function might do hidden buffer changes. See the
732 comment at the start of cc-engine.el for more info."
734 ;; The bulk of this function is a pushdown automaton that looks at statement
735 ;; boundaries and the tokens (such as "while") in c-opt-block-stmt-key. Its
736 ;; purpose is to keep track of nested statements, ensuring that such
737 ;; statements are skipped over in their entirety (somewhat akin to what C-M-p
738 ;; does with nested braces/brackets/parentheses).
740 ;; Note: The position of a boundary is the following token.
742 ;; Beginning with the current token (the one following point), move back one
743 ;; sexp at a time (where a sexp is, more or less, either a token or the
744 ;; entire contents of a brace/bracket/paren pair). Each time a statement
745 ;; boundary is crossed or a "while"-like token is found, update the state of
746 ;; the PDA. Stop at the beginning of a statement when the stack (holding
747 ;; nested statement info) is empty and the position has been moved.
749 ;; The following variables constitute the PDA:
751 ;; sym: This is either the "while"-like token (e.g. 'for) we've just
752 ;; scanned back over, 'boundary if we've just gone back over a
753 ;; statement boundary, or nil otherwise.
754 ;; state: takes one of the values (nil else else-boundary while
755 ;; while-boundary catch catch-boundary).
756 ;; nil means "no "while"-like token yet scanned".
757 ;; 'else, for example, means "just gone back over an else".
758 ;; 'else-boundary means "just gone back over a statement boundary
759 ;; immediately after having gone back over an else".
760 ;; saved-pos: A vector of either saved positions (tok ptok pptok, etc.) or
761 ;; of error reporting information.
762 ;; stack: The stack onto which the PDA pushes its state. Each entry
763 ;; consists of a saved value of state and saved-pos. An entry is
764 ;; pushed when we move back over a "continuation" token (e.g. else)
765 ;; and popped when we encounter the corresponding opening token
766 ;; (e.g. if).
769 ;; The following diagram briefly outlines the PDA.
771 ;; Common state:
772 ;; "else": Push state, goto state `else'.
773 ;; "while": Push state, goto state `while'.
774 ;; "catch" or "finally": Push state, goto state `catch'.
775 ;; boundary: Pop state.
776 ;; other: Do nothing special.
778 ;; State `else':
779 ;; boundary: Goto state `else-boundary'.
780 ;; other: Error, pop state, retry token.
782 ;; State `else-boundary':
783 ;; "if": Pop state.
784 ;; boundary: Error, pop state.
785 ;; other: See common state.
787 ;; State `while':
788 ;; boundary: Save position, goto state `while-boundary'.
789 ;; other: Pop state, retry token.
791 ;; State `while-boundary':
792 ;; "do": Pop state.
793 ;; boundary: Restore position if it's not at start, pop state. [*see below]
794 ;; other: See common state.
796 ;; State `catch':
797 ;; boundary: Goto state `catch-boundary'.
798 ;; other: Error, pop state, retry token.
800 ;; State `catch-boundary':
801 ;; "try": Pop state.
802 ;; "catch": Goto state `catch'.
803 ;; boundary: Error, pop state.
804 ;; other: See common state.
806 ;; [*] In the `while-boundary' state, we had pushed a 'while state, and were
807 ;; searching for a "do" which would have opened a do-while. If we didn't
808 ;; find it, we discard the analysis done since the "while", go back to this
809 ;; token in the buffer and restart the scanning there, this time WITHOUT
810 ;; pushing the 'while state onto the stack.
812 ;; In addition to the above there is some special handling of labels
813 ;; and macros.
815 (let ((case-fold-search nil)
816 (start (point))
817 macro-start
818 (delims (if comma-delim '(?\; ?,) '(?\;)))
819 (c-stmt-delim-chars (if comma-delim
820 c-stmt-delim-chars-with-comma
821 c-stmt-delim-chars))
822 c-in-literal-cache c-maybe-labelp after-case:-pos saved
823 ;; Current position.
825 ;; Position of last stmt boundary character (e.g. ;).
826 boundary-pos
827 ;; The position of the last sexp or bound that follows the
828 ;; first found colon, i.e. the start of the nonlabel part of
829 ;; the statement. It's `start' if a colon is found just after
830 ;; the start.
831 after-labels-pos
832 ;; Like `after-labels-pos', but the first such position inside
833 ;; a label, i.e. the start of the last label before the start
834 ;; of the nonlabel part of the statement.
835 last-label-pos
836 ;; The last position where a label is possible provided the
837 ;; statement started there. It's nil as long as no invalid
838 ;; label content has been found (according to
839 ;; `c-nonlabel-token-key'). It's `start' if no valid label
840 ;; content was found in the label. Note that we might still
841 ;; regard it a label if it starts with `c-label-kwds'.
842 label-good-pos
843 ;; Putative positions of the components of a bitfield declaration,
844 ;; e.g. "int foo : NUM_FOO_BITS ;"
845 bitfield-type-pos bitfield-id-pos bitfield-size-pos
846 ;; Symbol just scanned back over (e.g. 'while or 'boundary).
847 ;; See above.
849 ;; Current state in the automaton. See above.
850 state
851 ;; Current saved positions. See above.
852 saved-pos
853 ;; Stack of conses (state . saved-pos).
854 stack
855 ;; Regexp which matches "for", "if", etc.
856 (cond-key (or c-opt-block-stmt-key
857 "\\<\\>")) ; Matches nothing.
858 ;; Return value.
859 (ret 'same)
860 ;; Positions of the last three sexps or bounds we've stopped at.
861 tok ptok pptok)
863 (save-restriction
864 (if lim (narrow-to-region lim (point-max)))
866 (if (save-excursion
867 (and (c-beginning-of-macro)
868 (/= (point) start)))
869 (setq macro-start (point)))
871 ;; Try to skip back over unary operator characters, to register
872 ;; that we've moved.
873 (while (progn
874 (setq pos (point))
875 (c-backward-syntactic-ws)
876 ;; Protect post-++/-- operators just before a virtual semicolon.
877 (and (not (c-at-vsemi-p))
878 (/= (skip-chars-backward "-+!*&~@`#") 0))))
880 ;; Skip back over any semicolon here. If it was a bare semicolon, we're
881 ;; done. Later on we ignore the boundaries for statements that don't
882 ;; contain any sexp. The only thing that is affected is that the error
883 ;; checking is a little less strict, and we really don't bother.
884 (if (and (memq (char-before) delims)
885 (progn (forward-char -1)
886 (setq saved (point))
887 (c-backward-syntactic-ws)
888 (or (memq (char-before) delims)
889 (memq (char-before) '(?: nil))
890 (eq (char-syntax (char-before)) ?\()
891 (c-at-vsemi-p))))
892 (setq ret 'previous
893 pos saved)
895 ;; Begin at start and not pos to detect macros if we stand
896 ;; directly after the #.
897 (goto-char start)
898 (if (looking-at "\\<\\|\\W")
899 ;; Record this as the first token if not starting inside it.
900 (setq tok start))
902 ;; The following while loop goes back one sexp (balanced parens,
903 ;; etc. with contents, or symbol or suchlike) each iteration. This
904 ;; movement is accomplished with a call to c-backward-sexp approx 170
905 ;; lines below.
907 ;; The loop is exited only by throwing nil to the (catch 'loop ...):
908 ;; 1. On reaching the start of a macro;
909 ;; 2. On having passed a stmt boundary with the PDA stack empty;
910 ;; 3. On reaching the start of an Objective C method def;
911 ;; 4. From macro `c-bos-pop-state'; when the stack is empty;
912 ;; 5. From macro `c-bos-pop-state-and-retry' when the stack is empty.
913 (while
914 (catch 'loop ;; Throw nil to break, non-nil to continue.
915 (cond
916 ;; Are we in a macro, just after the opening #?
917 ((save-excursion
918 (and macro-start ; Always NIL for AWK.
919 (progn (skip-chars-backward " \t")
920 (eq (char-before) ?#))
921 (progn (setq saved (1- (point)))
922 (beginning-of-line)
923 (not (eq (char-before (1- (point))) ?\\)))
924 (looking-at c-opt-cpp-start)
925 (progn (skip-chars-forward " \t")
926 (eq (point) saved))))
927 (goto-char saved)
928 (if (and (c-forward-to-cpp-define-body)
929 (progn (c-forward-syntactic-ws start)
930 (< (point) start)))
931 ;; Stop at the first token in the content of the macro.
932 (setq pos (point)
933 ignore-labels t) ; Avoid the label check on exit.
934 (setq pos saved
935 ret 'macro
936 ignore-labels t))
937 (throw 'loop nil)) ; 1. Start of macro.
939 ;; Do a round through the automaton if we've just passed a
940 ;; statement boundary or passed a "while"-like token.
941 ((or sym
942 (and (looking-at cond-key)
943 (setq sym (intern (match-string 1)))))
945 (when (and (< pos start) (null stack))
946 (throw 'loop nil)) ; 2. Statement boundary.
948 ;; The PDA state handling.
950 ;; Refer to the description of the PDA in the opening
951 ;; comments. In the following OR form, the first leaf
952 ;; attempts to handles one of the specific actions detailed
953 ;; (e.g., finding token "if" whilst in state `else-boundary').
954 ;; We drop through to the second leaf (which handles common
955 ;; state) if no specific handler is found in the first cond.
956 ;; If a parsing error is detected (e.g. an "else" with no
957 ;; preceding "if"), we throw to the enclosing catch.
959 ;; Note that the (eq state 'else) means
960 ;; "we've just passed an else", NOT "we're looking for an
961 ;; else".
962 (or (cond
963 ((eq state 'else)
964 (if (eq sym 'boundary)
965 (setq state 'else-boundary)
966 (c-bos-report-error)
967 (c-bos-pop-state-and-retry)))
969 ((eq state 'else-boundary)
970 (cond ((eq sym 'if)
971 (c-bos-pop-state (setq ret 'beginning)))
972 ((eq sym 'boundary)
973 (c-bos-report-error)
974 (c-bos-pop-state))))
976 ((eq state 'while)
977 (if (and (eq sym 'boundary)
978 ;; Since this can cause backtracking we do a
979 ;; little more careful analysis to avoid it:
980 ;; If there's a label in front of the while
981 ;; it can't be part of a do-while.
982 (not after-labels-pos))
983 (progn (c-bos-save-pos)
984 (setq state 'while-boundary))
985 (c-bos-pop-state-and-retry))) ; Can't be a do-while
987 ((eq state 'while-boundary)
988 (cond ((eq sym 'do)
989 (c-bos-pop-state (setq ret 'beginning)))
990 ((eq sym 'boundary) ; isn't a do-while
991 (c-bos-restore-pos) ; the position of the while
992 (c-bos-pop-state)))) ; no longer searching for do.
994 ((eq state 'catch)
995 (if (eq sym 'boundary)
996 (setq state 'catch-boundary)
997 (c-bos-report-error)
998 (c-bos-pop-state-and-retry)))
1000 ((eq state 'catch-boundary)
1001 (cond
1002 ((eq sym 'try)
1003 (c-bos-pop-state (setq ret 'beginning)))
1004 ((eq sym 'catch)
1005 (setq state 'catch))
1006 ((eq sym 'boundary)
1007 (c-bos-report-error)
1008 (c-bos-pop-state)))))
1010 ;; This is state common. We get here when the previous
1011 ;; cond statement found no particular state handler.
1012 (cond ((eq sym 'boundary)
1013 ;; If we have a boundary at the start
1014 ;; position we push a frame to go to the
1015 ;; previous statement.
1016 (if (>= pos start)
1017 (c-bos-push-state)
1018 (c-bos-pop-state)))
1019 ((eq sym 'else)
1020 (c-bos-push-state)
1021 (c-bos-save-error-info 'if 'else)
1022 (setq state 'else))
1023 ((eq sym 'while)
1024 ;; Is this a real while, or a do-while?
1025 ;; The next `when' triggers unless we are SURE that
1026 ;; the `while' is not the tail end of a `do-while'.
1027 (when (or (not pptok)
1028 (memq (char-after pptok) delims)
1029 ;; The following kludge is to prevent
1030 ;; infinite recursion when called from
1031 ;; c-awk-after-if-for-while-condition-p,
1032 ;; or the like.
1033 (and (eq (point) start)
1034 (c-vsemi-status-unknown-p))
1035 (c-at-vsemi-p pptok))
1036 ;; Since this can cause backtracking we do a
1037 ;; little more careful analysis to avoid it: If
1038 ;; the while isn't followed by a (possibly
1039 ;; virtual) semicolon it can't be a do-while.
1040 (c-bos-push-state)
1041 (setq state 'while)))
1042 ((memq sym '(catch finally))
1043 (c-bos-push-state)
1044 (c-bos-save-error-info 'try sym)
1045 (setq state 'catch))))
1047 (when c-maybe-labelp
1048 ;; We're either past a statement boundary or at the
1049 ;; start of a statement, so throw away any label data
1050 ;; for the previous one.
1051 (setq after-labels-pos nil
1052 last-label-pos nil
1053 c-maybe-labelp nil))))
1055 ;; Step to the previous sexp, but not if we crossed a
1056 ;; boundary, since that doesn't consume an sexp.
1057 (if (eq sym 'boundary)
1058 (setq ret 'previous)
1060 ;; HERE IS THE SINGLE PLACE INSIDE THE PDA LOOP WHERE WE MOVE
1061 ;; BACKWARDS THROUGH THE SOURCE.
1063 (c-backward-syntactic-ws)
1064 (let ((before-sws-pos (point))
1065 ;; The end position of the area to search for statement
1066 ;; barriers in this round.
1067 (maybe-after-boundary-pos pos))
1069 ;; Go back over exactly one logical sexp, taking proper
1070 ;; account of macros and escaped EOLs.
1071 (while
1072 (progn
1073 (unless (c-safe (c-backward-sexp) t)
1074 ;; Give up if we hit an unbalanced block. Since the
1075 ;; stack won't be empty the code below will report a
1076 ;; suitable error.
1077 (throw 'loop nil))
1078 (cond
1079 ;; Have we moved into a macro?
1080 ((and (not macro-start)
1081 (c-beginning-of-macro))
1082 ;; Have we crossed a statement boundary? If not,
1083 ;; keep going back until we find one or a "real" sexp.
1084 (and
1085 (save-excursion
1086 (c-end-of-macro)
1087 (not (c-crosses-statement-barrier-p
1088 (point) maybe-after-boundary-pos)))
1089 (setq maybe-after-boundary-pos (point))))
1090 ;; Have we just gone back over an escaped NL? This
1091 ;; doesn't count as a sexp.
1092 ((looking-at "\\\\$")))))
1094 ;; Have we crossed a statement boundary?
1095 (setq boundary-pos
1096 (cond
1097 ;; Are we at a macro beginning?
1098 ((and (not macro-start)
1099 c-opt-cpp-prefix
1100 (looking-at c-opt-cpp-prefix))
1101 (save-excursion
1102 (c-end-of-macro)
1103 (c-crosses-statement-barrier-p
1104 (point) maybe-after-boundary-pos)))
1105 ;; Just gone back over a brace block?
1106 ((and
1107 (eq (char-after) ?{)
1108 (not (c-looking-at-inexpr-block lim nil t))
1109 (save-excursion
1110 (c-backward-token-2 1 t nil)
1111 (not (looking-at "=\\([^=]\\|$\\)"))))
1112 (save-excursion
1113 (c-forward-sexp) (point)))
1114 ;; Just gone back over some paren block?
1115 ((looking-at "\\s(")
1116 (save-excursion
1117 (goto-char (1+ (c-down-list-backward
1118 before-sws-pos)))
1119 (c-crosses-statement-barrier-p
1120 (point) maybe-after-boundary-pos)))
1121 ;; Just gone back over an ordinary symbol of some sort?
1122 (t (c-crosses-statement-barrier-p
1123 (point) maybe-after-boundary-pos))))
1125 (when boundary-pos
1126 (setq pptok ptok
1127 ptok tok
1128 tok boundary-pos
1129 sym 'boundary)
1130 ;; Like a C "continue". Analyze the next sexp.
1131 (throw 'loop t))))
1133 ;; ObjC method def?
1134 (when (and c-opt-method-key
1135 (setq saved (c-in-method-def-p)))
1136 (setq pos saved
1137 ignore-labels t) ; Avoid the label check on exit.
1138 (throw 'loop nil)) ; 3. ObjC method def.
1140 ;; Might we have a bitfield declaration, "<type> <id> : <size>"?
1141 (if c-has-bitfields
1142 (cond
1143 ;; The : <size> and <id> fields?
1144 ((and (numberp c-maybe-labelp)
1145 (not bitfield-size-pos)
1146 (save-excursion
1147 (goto-char (or tok start))
1148 (not (looking-at c-keywords-regexp)))
1149 (not (looking-at c-keywords-regexp))
1150 (not (c-punctuation-in (point) c-maybe-labelp)))
1151 (setq bitfield-size-pos (or tok start)
1152 bitfield-id-pos (point)))
1153 ;; The <type> field?
1154 ((and bitfield-id-pos
1155 (not bitfield-type-pos))
1156 (if (and (looking-at c-symbol-key) ; Can only be an integer type. :-)
1157 (not (looking-at c-not-primitive-type-keywords-regexp))
1158 (not (c-punctuation-in (point) tok)))
1159 (setq bitfield-type-pos (point))
1160 (setq bitfield-size-pos nil
1161 bitfield-id-pos nil)))))
1163 ;; Handle labels.
1164 (unless (eq ignore-labels t)
1165 (when (numberp c-maybe-labelp)
1166 ;; `c-crosses-statement-barrier-p' has found a colon, so we
1167 ;; might be in a label now. Have we got a real label
1168 ;; (including a case label) or something like C++'s "public:"?
1169 ;; A case label might use an expression rather than a token.
1170 (setq after-case:-pos (or tok start))
1171 (if (or (looking-at c-nonlabel-token-key) ; e.g. "while" or "'a'"
1172 ;; Catch C++'s inheritance construct "class foo : bar".
1173 (save-excursion
1174 (and
1175 (c-safe (c-backward-sexp) t)
1176 (looking-at c-nonlabel-token-2-key))))
1177 (setq c-maybe-labelp nil)
1178 (if after-labels-pos ; Have we already encountered a label?
1179 (if (not last-label-pos)
1180 (setq last-label-pos (or tok start)))
1181 (setq after-labels-pos (or tok start)))
1182 (setq c-maybe-labelp t
1183 label-good-pos nil))) ; bogus "label"
1185 (when (and (not label-good-pos) ; i.e. no invalid "label"'s yet
1186 ; been found.
1187 (looking-at c-nonlabel-token-key)) ; e.g. "while :"
1188 ;; We're in a potential label and it's the first
1189 ;; time we've found something that isn't allowed in
1190 ;; one.
1191 (setq label-good-pos (or tok start))))
1193 ;; We've moved back by a sexp, so update the token positions.
1194 (setq sym nil
1195 pptok ptok
1196 ptok tok
1197 tok (point)
1198 pos tok) ; always non-nil
1199 ) ; end of (catch loop ....)
1200 ) ; end of sexp-at-a-time (while ....)
1202 ;; If the stack isn't empty there might be errors to report.
1203 (while stack
1204 (if (and (vectorp saved-pos) (eq (length saved-pos) 3))
1205 (c-bos-report-error))
1206 (setq saved-pos (cdr (car stack))
1207 stack (cdr stack)))
1209 (when (and (eq ret 'same)
1210 (not (memq sym '(boundary ignore nil))))
1211 ;; Need to investigate closer whether we've crossed
1212 ;; between a substatement and its containing statement.
1213 (if (setq saved
1214 (cond ((and (looking-at c-block-stmt-1-2-key)
1215 (eq (char-after ptok) ?\())
1216 pptok)
1217 ((looking-at c-block-stmt-1-key)
1218 ptok)
1219 (t pptok)))
1220 (cond ((> start saved) (setq pos saved))
1221 ((= start saved) (setq ret 'up)))))
1223 (when (and (not ignore-labels)
1224 (eq c-maybe-labelp t)
1225 (not (eq ret 'beginning))
1226 after-labels-pos
1227 (not bitfield-type-pos) ; Bitfields take precedence over labels.
1228 (or (not label-good-pos)
1229 (<= label-good-pos pos)
1230 (progn
1231 (goto-char (if (and last-label-pos
1232 (< last-label-pos start))
1233 last-label-pos
1234 pos))
1235 (looking-at c-label-kwds-regexp))))
1236 ;; We're in a label. Maybe we should step to the statement
1237 ;; after it.
1238 (if (< after-labels-pos start)
1239 (setq pos after-labels-pos)
1240 (setq ret 'label)
1241 (if (and last-label-pos (< last-label-pos start))
1242 ;; Might have jumped over several labels. Go to the last one.
1243 (setq pos last-label-pos)))))
1245 ;; Have we got "case <expression>:"?
1246 (goto-char pos)
1247 (when (and after-case:-pos
1248 (not (eq ret 'beginning))
1249 (looking-at c-case-kwds-regexp))
1250 (if (< after-case:-pos start)
1251 (setq pos after-case:-pos))
1252 (if (eq ret 'same)
1253 (setq ret 'label)))
1255 ;; Skip over the unary operators that can start the statement.
1256 (while (progn
1257 (c-backward-syntactic-ws)
1258 ;; protect AWK post-inc/decrement operators, etc.
1259 (and (not (c-at-vsemi-p (point)))
1260 (/= (skip-chars-backward "-+!*&~@`#") 0)))
1261 (setq pos (point)))
1262 (goto-char pos)
1263 ret)))
1265 (defun c-punctuation-in (from to)
1266 "Return non-nil if there is a non-comment non-macro punctuation character
1267 between FROM and TO. FROM must not be in a string or comment. The returned
1268 value is the position of the first such character."
1269 (save-excursion
1270 (goto-char from)
1271 (let ((pos (point)))
1272 (while (progn (skip-chars-forward c-symbol-chars to)
1273 (c-forward-syntactic-ws to)
1274 (> (point) pos))
1275 (setq pos (point))))
1276 (and (< (point) to) (point))))
1278 (defun c-crosses-statement-barrier-p (from to)
1279 "Return non-nil if buffer positions FROM to TO cross one or more
1280 statement or declaration boundaries. The returned value is actually
1281 the position of the earliest boundary char. FROM must not be within
1282 a string or comment.
1284 The variable `c-maybe-labelp' is set to the position of the first `:' that
1285 might start a label (i.e. not part of `::' and not preceded by `?'). If a
1286 single `?' is found, then `c-maybe-labelp' is cleared.
1288 For AWK, a statement which is terminated by an EOL (not a ; or a }) is
1289 regarded as having a \"virtual semicolon\" immediately after the last token on
1290 the line. If this virtual semicolon is _at_ from, the function recognizes it.
1292 Note that this function might do hidden buffer changes. See the
1293 comment at the start of cc-engine.el for more info."
1294 (let* ((skip-chars
1295 ;; If the current language has CPP macros, insert # into skip-chars.
1296 (if c-opt-cpp-symbol
1297 (concat (substring c-stmt-delim-chars 0 1) ; "^"
1298 c-opt-cpp-symbol ; usually "#"
1299 (substring c-stmt-delim-chars 1)) ; e.g. ";{}?:"
1300 c-stmt-delim-chars))
1301 (non-skip-list
1302 (append (substring skip-chars 1) nil)) ; e.g. (?# ?\; ?{ ?} ?? ?:)
1303 lit-range lit-start vsemi-pos)
1304 (save-restriction
1305 (widen)
1306 (save-excursion
1307 (catch 'done
1308 (goto-char from)
1309 (while (progn (skip-chars-forward
1310 skip-chars
1311 (min to (c-point 'bonl)))
1312 (< (point) to))
1313 (cond
1314 ;; Virtual semicolon?
1315 ((and (bolp)
1316 (save-excursion
1317 (progn
1318 (if (setq lit-start (c-literal-start from)) ; Have we landed in a string/comment?
1319 (goto-char lit-start))
1320 (c-backward-syntactic-ws) ; ? put a limit here, maybe?
1321 (setq vsemi-pos (point))
1322 (c-at-vsemi-p))))
1323 (throw 'done vsemi-pos))
1324 ;; In a string/comment?
1325 ((setq lit-range (c-literal-limits from))
1326 (goto-char (cdr lit-range)))
1327 ((eq (char-after) ?:)
1328 (forward-char)
1329 (if (and (eq (char-after) ?:)
1330 (< (point) to))
1331 ;; Ignore scope operators.
1332 (forward-char)
1333 (setq c-maybe-labelp (1- (point)))))
1334 ((eq (char-after) ??)
1335 ;; A question mark. Can't be a label, so stop
1336 ;; looking for more : and ?.
1337 (setq c-maybe-labelp nil
1338 skip-chars (substring c-stmt-delim-chars 0 -2)))
1339 ;; At a CPP construct or a "#" or "##" operator?
1340 ((and c-opt-cpp-symbol (looking-at c-opt-cpp-symbol))
1341 (if (save-excursion
1342 (skip-chars-backward " \t")
1343 (and (bolp)
1344 (or (bobp)
1345 (not (eq (char-before (1- (point))) ?\\)))))
1346 (c-end-of-macro)
1347 (skip-chars-forward c-opt-cpp-symbol)))
1348 ((memq (char-after) non-skip-list)
1349 (throw 'done (point)))))
1350 ;; In trailing space after an as yet undetected virtual semicolon?
1351 (c-backward-syntactic-ws from)
1352 (when (and (bolp) (not (bobp))) ; Can happen in AWK Mode with an
1353 ; unterminated string/regexp.
1354 (backward-char))
1355 (if (and (< (point) to)
1356 (c-at-vsemi-p))
1357 (point)
1358 nil))))))
1360 (defun c-at-statement-start-p ()
1361 "Return non-nil if the point is at the first token in a statement
1362 or somewhere in the syntactic whitespace before it.
1364 A \"statement\" here is not restricted to those inside code blocks.
1365 Any kind of declaration-like construct that occur outside function
1366 bodies is also considered a \"statement\".
1368 Note that this function might do hidden buffer changes. See the
1369 comment at the start of cc-engine.el for more info."
1371 (save-excursion
1372 (let ((end (point))
1373 c-maybe-labelp)
1374 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1375 (or (bobp)
1376 (eq (char-before) ?})
1377 (and (eq (char-before) ?{)
1378 (not (and c-special-brace-lists
1379 (progn (backward-char)
1380 (c-looking-at-special-brace-list)))))
1381 (c-crosses-statement-barrier-p (point) end)))))
1383 (defun c-at-expression-start-p ()
1384 "Return non-nil if the point is at the first token in an expression or
1385 statement, or somewhere in the syntactic whitespace before it.
1387 An \"expression\" here is a bit different from the normal language
1388 grammar sense: It's any sequence of expression tokens except commas,
1389 unless they are enclosed inside parentheses of some kind. Also, an
1390 expression never continues past an enclosing parenthesis, but it might
1391 contain parenthesis pairs of any sort except braces.
1393 Since expressions never cross statement boundaries, this function also
1394 recognizes statement beginnings, just like `c-at-statement-start-p'.
1396 Note that this function might do hidden buffer changes. See the
1397 comment at the start of cc-engine.el for more info."
1399 (save-excursion
1400 (let ((end (point))
1401 (c-stmt-delim-chars c-stmt-delim-chars-with-comma)
1402 c-maybe-labelp)
1403 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1404 (or (bobp)
1405 (memq (char-before) '(?{ ?}))
1406 (save-excursion (backward-char)
1407 (looking-at "\\s("))
1408 (c-crosses-statement-barrier-p (point) end)))))
1411 ;; A set of functions that covers various idiosyncrasies in
1412 ;; implementations of `forward-comment'.
1414 ;; Note: Some emacsen considers incorrectly that any line comment
1415 ;; ending with a backslash continues to the next line. I can't think
1416 ;; of any way to work around that in a reliable way without changing
1417 ;; the buffer, though. Suggestions welcome. ;) (No, temporarily
1418 ;; changing the syntax for backslash doesn't work since we must treat
1419 ;; escapes in string literals correctly.)
1421 (defun c-forward-single-comment ()
1422 "Move forward past whitespace and the closest following comment, if any.
1423 Return t if a comment was found, nil otherwise. In either case, the
1424 point is moved past the following whitespace. Line continuations,
1425 i.e. a backslashes followed by line breaks, are treated as whitespace.
1426 The line breaks that end line comments are considered to be the
1427 comment enders, so the point will be put on the beginning of the next
1428 line if it moved past a line comment.
1430 This function does not do any hidden buffer changes."
1432 (let ((start (point)))
1433 (when (looking-at "\\([ \t\n\r\f\v]\\|\\\\[\n\r]\\)+")
1434 (goto-char (match-end 0)))
1436 (when (forward-comment 1)
1437 (if (eobp)
1438 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1439 ;; forwards at eob.
1442 ;; Emacs includes the ending newline in a b-style (c++)
1443 ;; comment, but XEmacs doesn't. We depend on the Emacs
1444 ;; behavior (which also is symmetric).
1445 (if (and (eolp) (elt (parse-partial-sexp start (point)) 7))
1446 (condition-case nil (forward-char 1)))
1448 t))))
1450 (defsubst c-forward-comments ()
1451 "Move forward past all following whitespace and comments.
1452 Line continuations, i.e. a backslashes followed by line breaks, are
1453 treated as whitespace.
1455 Note that this function might do hidden buffer changes. See the
1456 comment at the start of cc-engine.el for more info."
1458 (while (or
1459 ;; If forward-comment in at least XEmacs 21 is given a large
1460 ;; positive value, it'll loop all the way through if it hits
1461 ;; eob.
1462 (and (forward-comment 5)
1463 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1464 ;; forwards at eob.
1465 (not (eobp)))
1467 (when (looking-at "\\\\[\n\r]")
1468 (forward-char 2)
1469 t))))
1471 (defun c-backward-single-comment ()
1472 "Move backward past whitespace and the closest preceding comment, if any.
1473 Return t if a comment was found, nil otherwise. In either case, the
1474 point is moved past the preceding whitespace. Line continuations,
1475 i.e. a backslashes followed by line breaks, are treated as whitespace.
1476 The line breaks that end line comments are considered to be the
1477 comment enders, so the point cannot be at the end of the same line to
1478 move over a line comment.
1480 This function does not do any hidden buffer changes."
1482 (let ((start (point)))
1483 ;; When we got newline terminated comments, forward-comment in all
1484 ;; supported emacsen so far will stop at eol of each line not
1485 ;; ending with a comment when moving backwards. This corrects for
1486 ;; that, and at the same time handles line continuations.
1487 (while (progn
1488 (skip-chars-backward " \t\n\r\f\v")
1489 (and (looking-at "[\n\r]")
1490 (eq (char-before) ?\\)))
1491 (backward-char))
1493 (if (bobp)
1494 ;; Some emacsen (e.g. Emacs 19.34) return t when moving
1495 ;; backwards at bob.
1498 ;; Leave point after the closest following newline if we've
1499 ;; backed up over any above, since forward-comment won't move
1500 ;; backward over a line comment if point is at the end of the
1501 ;; same line.
1502 (re-search-forward "\\=\\s *[\n\r]" start t)
1504 (if (if (forward-comment -1)
1505 (if (eolp)
1506 ;; If forward-comment above succeeded and we're at eol
1507 ;; then the newline we moved over above didn't end a
1508 ;; line comment, so we give it another go.
1509 (forward-comment -1)
1512 ;; Emacs <= 20 and XEmacs move back over the closer of a
1513 ;; block comment that lacks an opener.
1514 (if (looking-at "\\*/")
1515 (progn (forward-char 2) nil)
1516 t)))))
1518 (defsubst c-backward-comments ()
1519 "Move backward past all preceding whitespace and comments.
1520 Line continuations, i.e. a backslashes followed by line breaks, are
1521 treated as whitespace. The line breaks that end line comments are
1522 considered to be the comment enders, so the point cannot be at the end
1523 of the same line to move over a line comment. Unlike
1524 c-backward-syntactic-ws, this function doesn't move back over
1525 preprocessor directives.
1527 Note that this function might do hidden buffer changes. See the
1528 comment at the start of cc-engine.el for more info."
1530 (let ((start (point)))
1531 (while (and
1532 ;; `forward-comment' in some emacsen (e.g. XEmacs 21.4)
1533 ;; return t when moving backwards at bob.
1534 (not (bobp))
1536 (if (let (moved-comment)
1537 (while
1538 (and (not (setq moved-comment (forward-comment -1)))
1539 ;; Cope specifically with ^M^J here -
1540 ;; forward-comment sometimes gets stuck after ^Ms,
1541 ;; sometimes after ^M^J.
1543 (when (eq (char-before) ?\r)
1544 (backward-char)
1546 (when (and (eq (char-before) ?\n)
1547 (eq (char-before (1- (point))) ?\r))
1548 (backward-char 2)
1549 t))))
1550 moved-comment)
1551 (if (looking-at "\\*/")
1552 ;; Emacs <= 20 and XEmacs move back over the
1553 ;; closer of a block comment that lacks an opener.
1554 (progn (forward-char 2) nil)
1557 ;; XEmacs treats line continuations as whitespace but
1558 ;; only in the backward direction, which seems a bit
1559 ;; odd. Anyway, this is necessary for Emacs.
1560 (when (and (looking-at "[\n\r]")
1561 (eq (char-before) ?\\)
1562 (< (point) start))
1563 (backward-char)
1564 t))))))
1567 ;; Tools for skipping over syntactic whitespace.
1569 ;; The following functions use text properties to cache searches over
1570 ;; large regions of syntactic whitespace. It works as follows:
1572 ;; o If a syntactic whitespace region contains anything but simple
1573 ;; whitespace (i.e. space, tab and line breaks), the text property
1574 ;; `c-in-sws' is put over it. At places where we have stopped
1575 ;; within that region there's also a `c-is-sws' text property.
1576 ;; That since there typically are nested whitespace inside that
1577 ;; must be handled separately, e.g. whitespace inside a comment or
1578 ;; cpp directive. Thus, from one point with `c-is-sws' it's safe
1579 ;; to jump to another point with that property within the same
1580 ;; `c-in-sws' region. It can be likened to a ladder where
1581 ;; `c-in-sws' marks the bars and `c-is-sws' the rungs.
1583 ;; o The `c-is-sws' property is put on the simple whitespace chars at
1584 ;; a "rung position" and also maybe on the first following char.
1585 ;; As many characters as can be conveniently found in this range
1586 ;; are marked, but no assumption can be made that the whole range
1587 ;; is marked (it could be clobbered by later changes, for
1588 ;; instance).
1590 ;; Note that some part of the beginning of a sequence of simple
1591 ;; whitespace might be part of the end of a preceding line comment
1592 ;; or cpp directive and must not be considered part of the "rung".
1593 ;; Such whitespace is some amount of horizontal whitespace followed
1594 ;; by a newline. In the case of cpp directives it could also be
1595 ;; two newlines with horizontal whitespace between them.
1597 ;; The reason to include the first following char is to cope with
1598 ;; "rung positions" that don't have any ordinary whitespace. If
1599 ;; `c-is-sws' is put on a token character it does not have
1600 ;; `c-in-sws' set simultaneously. That's the only case when that
1601 ;; can occur, and the reason for not extending the `c-in-sws'
1602 ;; region to cover it is that the `c-in-sws' region could then be
1603 ;; accidentally merged with a following one if the token is only
1604 ;; one character long.
1606 ;; o On buffer changes the `c-in-sws' and `c-is-sws' properties are
1607 ;; removed in the changed region. If the change was inside
1608 ;; syntactic whitespace that means that the "ladder" is broken, but
1609 ;; a later call to `c-forward-sws' or `c-backward-sws' will use the
1610 ;; parts on either side and use an ordinary search only to "repair"
1611 ;; the gap.
1613 ;; Special care needs to be taken if a region is removed: If there
1614 ;; are `c-in-sws' on both sides of it which do not connect inside
1615 ;; the region then they can't be joined. If e.g. a marked macro is
1616 ;; broken, syntactic whitespace inside the new text might be
1617 ;; marked. If those marks would become connected with the old
1618 ;; `c-in-sws' range around the macro then we could get a ladder
1619 ;; with one end outside the macro and the other at some whitespace
1620 ;; within it.
1622 ;; The main motivation for this system is to increase the speed in
1623 ;; skipping over the large whitespace regions that can occur at the
1624 ;; top level in e.g. header files that contain a lot of comments and
1625 ;; cpp directives. For small comments inside code it's probably
1626 ;; slower than using `forward-comment' straightforwardly, but speed is
1627 ;; not a significant factor there anyway.
1629 ; (defface c-debug-is-sws-face
1630 ; '((t (:background "GreenYellow")))
1631 ; "Debug face to mark the `c-is-sws' property.")
1632 ; (defface c-debug-in-sws-face
1633 ; '((t (:underline t)))
1634 ; "Debug face to mark the `c-in-sws' property.")
1636 ; (defun c-debug-put-sws-faces ()
1637 ; ;; Put the sws debug faces on all the `c-is-sws' and `c-in-sws'
1638 ; ;; properties in the buffer.
1639 ; (interactive)
1640 ; (save-excursion
1641 ; (c-save-buffer-state (in-face)
1642 ; (goto-char (point-min))
1643 ; (setq in-face (if (get-text-property (point) 'c-is-sws)
1644 ; (point)))
1645 ; (while (progn
1646 ; (goto-char (next-single-property-change
1647 ; (point) 'c-is-sws nil (point-max)))
1648 ; (if in-face
1649 ; (progn
1650 ; (c-debug-add-face in-face (point) 'c-debug-is-sws-face)
1651 ; (setq in-face nil))
1652 ; (setq in-face (point)))
1653 ; (not (eobp))))
1654 ; (goto-char (point-min))
1655 ; (setq in-face (if (get-text-property (point) 'c-in-sws)
1656 ; (point)))
1657 ; (while (progn
1658 ; (goto-char (next-single-property-change
1659 ; (point) 'c-in-sws nil (point-max)))
1660 ; (if in-face
1661 ; (progn
1662 ; (c-debug-add-face in-face (point) 'c-debug-in-sws-face)
1663 ; (setq in-face nil))
1664 ; (setq in-face (point)))
1665 ; (not (eobp)))))))
1667 (defmacro c-debug-sws-msg (&rest args)
1668 ;;`(message ,@args)
1671 (defmacro c-put-is-sws (beg end)
1672 ;; This macro does a hidden buffer change.
1673 `(let ((beg ,beg) (end ,end))
1674 (put-text-property beg end 'c-is-sws t)
1675 ,@(when (facep 'c-debug-is-sws-face)
1676 `((c-debug-add-face beg end 'c-debug-is-sws-face)))))
1678 (defmacro c-put-in-sws (beg end)
1679 ;; This macro does a hidden buffer change.
1680 `(let ((beg ,beg) (end ,end))
1681 (put-text-property beg end 'c-in-sws t)
1682 ,@(when (facep 'c-debug-is-sws-face)
1683 `((c-debug-add-face beg end 'c-debug-in-sws-face)))))
1685 (defmacro c-remove-is-sws (beg end)
1686 ;; This macro does a hidden buffer change.
1687 `(let ((beg ,beg) (end ,end))
1688 (remove-text-properties beg end '(c-is-sws nil))
1689 ,@(when (facep 'c-debug-is-sws-face)
1690 `((c-debug-remove-face beg end 'c-debug-is-sws-face)))))
1692 (defmacro c-remove-in-sws (beg end)
1693 ;; This macro does a hidden buffer change.
1694 `(let ((beg ,beg) (end ,end))
1695 (remove-text-properties beg end '(c-in-sws nil))
1696 ,@(when (facep 'c-debug-is-sws-face)
1697 `((c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1699 (defmacro c-remove-is-and-in-sws (beg end)
1700 ;; This macro does a hidden buffer change.
1701 `(let ((beg ,beg) (end ,end))
1702 (remove-text-properties beg end '(c-is-sws nil c-in-sws nil))
1703 ,@(when (facep 'c-debug-is-sws-face)
1704 `((c-debug-remove-face beg end 'c-debug-is-sws-face)
1705 (c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1707 (defsubst c-invalidate-sws-region-after (beg end)
1708 ;; Called from `after-change-functions'. Note that if
1709 ;; `c-forward-sws' or `c-backward-sws' are used outside
1710 ;; `c-save-buffer-state' or similar then this will remove the cache
1711 ;; properties right after they're added.
1713 ;; This function does hidden buffer changes.
1715 (save-excursion
1716 ;; Adjust the end to remove the properties in any following simple
1717 ;; ws up to and including the next line break, if there is any
1718 ;; after the changed region. This is necessary e.g. when a rung
1719 ;; marked empty line is converted to a line comment by inserting
1720 ;; "//" before the line break. In that case the line break would
1721 ;; keep the rung mark which could make a later `c-backward-sws'
1722 ;; move into the line comment instead of over it.
1723 (goto-char end)
1724 (skip-chars-forward " \t\f\v")
1725 (when (and (eolp) (not (eobp)))
1726 (setq end (1+ (point)))))
1728 (when (and (= beg end)
1729 (get-text-property beg 'c-in-sws)
1730 (> beg (point-min))
1731 (get-text-property (1- beg) 'c-in-sws))
1732 ;; Ensure that an `c-in-sws' range gets broken. Note that it isn't
1733 ;; safe to keep a range that was continuous before the change. E.g:
1735 ;; #define foo
1736 ;; \
1737 ;; bar
1739 ;; There can be a "ladder" between "#" and "b". Now, if the newline
1740 ;; after "foo" is removed then "bar" will become part of the cpp
1741 ;; directive instead of a syntactically relevant token. In that
1742 ;; case there's no longer syntactic ws from "#" to "b".
1743 (setq beg (1- beg)))
1745 (c-debug-sws-msg "c-invalidate-sws-region-after [%s..%s]" beg end)
1746 (c-remove-is-and-in-sws beg end))
1748 (defun c-forward-sws ()
1749 ;; Used by `c-forward-syntactic-ws' to implement the unbounded search.
1751 ;; This function might do hidden buffer changes.
1753 (let (;; `rung-pos' is set to a position as early as possible in the
1754 ;; unmarked part of the simple ws region.
1755 (rung-pos (point)) next-rung-pos rung-end-pos last-put-in-sws-pos
1756 rung-is-marked next-rung-is-marked simple-ws-end
1757 ;; `safe-start' is set when it's safe to cache the start position.
1758 ;; It's not set if we've initially skipped over comments and line
1759 ;; continuations since we might have gone out through the end of a
1760 ;; macro then. This provision makes `c-forward-sws' not populate the
1761 ;; cache in the majority of cases, but otoh is `c-backward-sws' by far
1762 ;; more common.
1763 safe-start)
1765 ;; Skip simple ws and do a quick check on the following character to see
1766 ;; if it's anything that can't start syntactic ws, so we can bail out
1767 ;; early in the majority of cases when there just are a few ws chars.
1768 (skip-chars-forward " \t\n\r\f\v")
1769 (when (or (looking-at c-syntactic-ws-start)
1770 (and c-opt-cpp-prefix
1771 (looking-at c-noise-macro-name-re)))
1773 (setq rung-end-pos (min (1+ (point)) (point-max)))
1774 (if (setq rung-is-marked (text-property-any rung-pos rung-end-pos
1775 'c-is-sws t))
1776 ;; Find the last rung position to avoid setting properties in all
1777 ;; the cases when the marked rung is complete.
1778 ;; (`next-single-property-change' is certain to move at least one
1779 ;; step forward.)
1780 (setq rung-pos (1- (c-next-single-property-change
1781 rung-is-marked 'c-is-sws nil rung-end-pos)))
1782 ;; Got no marked rung here. Since the simple ws might have started
1783 ;; inside a line comment or cpp directive we must set `rung-pos' as
1784 ;; high as possible.
1785 (setq rung-pos (point)))
1787 (with-silent-modifications
1788 (while
1789 (progn
1790 ;; In the following while form, we move over a "ladder" and
1791 ;; following simple WS each time round the loop, appending the WS
1792 ;; onto the ladder, joining adjacent ladders, and terminating when
1793 ;; there is no more WS or we reach EOB.
1794 (while
1795 (when (and rung-is-marked
1796 (get-text-property (point) 'c-in-sws))
1798 ;; The following search is the main reason that `c-in-sws'
1799 ;; and `c-is-sws' aren't combined to one property.
1800 (goto-char (c-next-single-property-change
1801 (point) 'c-in-sws nil (point-max)))
1802 (unless (get-text-property (point) 'c-is-sws)
1803 ;; If the `c-in-sws' region extended past the last
1804 ;; `c-is-sws' char we have to go back a bit.
1805 (or (get-text-property (1- (point)) 'c-is-sws)
1806 (goto-char (previous-single-property-change
1807 (point) 'c-is-sws)))
1808 (backward-char))
1810 (c-debug-sws-msg
1811 "c-forward-sws cached move %s -> %s (max %s)"
1812 rung-pos (point) (point-max))
1814 (setq rung-pos (point))
1815 (and (> (skip-chars-forward " \t\n\r\f\v") 0)
1816 (not (eobp))))
1818 ;; We'll loop here if there is simple ws after the last rung.
1819 ;; That means that there's been some change in it and it's
1820 ;; possible that we've stepped into another ladder, so extend
1821 ;; the previous one to join with it if there is one, and try to
1822 ;; use the cache again.
1823 (c-debug-sws-msg
1824 "c-forward-sws extending rung with [%s..%s] (max %s)"
1825 (1+ rung-pos) (1+ (point)) (point-max))
1826 (unless (get-text-property (point) 'c-is-sws)
1827 ;; Remove any `c-in-sws' property from the last char of
1828 ;; the rung before we mark it with `c-is-sws', so that we
1829 ;; won't connect with the remains of a broken "ladder".
1830 (c-remove-in-sws (point) (1+ (point))))
1831 (c-put-is-sws (1+ rung-pos)
1832 (1+ (point)))
1833 (c-put-in-sws rung-pos
1834 (setq rung-pos (point)
1835 last-put-in-sws-pos rung-pos)))
1837 ;; Now move over any comments (x)or a CPP construct.
1838 (setq simple-ws-end (point))
1839 (c-forward-comments)
1841 (cond
1842 ((/= (point) simple-ws-end)
1843 ;; Skipped over comments. Don't cache at eob in case the buffer
1844 ;; is narrowed.
1845 (not (eobp)))
1847 ((save-excursion
1848 (and c-opt-cpp-prefix
1849 (looking-at c-opt-cpp-start)
1850 (progn (skip-chars-backward " \t")
1851 (bolp))
1852 (or (bobp)
1853 (progn (backward-char)
1854 (not (eq (char-before) ?\\))))))
1855 ;; Skip a preprocessor directive.
1856 (end-of-line)
1857 (while (and (eq (char-before) ?\\)
1858 (= (forward-line 1) 0))
1859 (end-of-line))
1860 (forward-line 1)
1861 (setq safe-start t)
1862 ;; Don't cache at eob in case the buffer is narrowed.
1863 (not (eobp)))
1865 ((and c-opt-cpp-prefix
1866 (looking-at c-noise-macro-name-re))
1867 ;; Skip over a noise macro.
1868 (goto-char (match-end 1))
1869 (setq safe-start t)
1870 (not (eobp)))))
1872 ;; We've searched over a piece of non-white syntactic ws. See if this
1873 ;; can be cached.
1874 (setq next-rung-pos (point))
1875 (skip-chars-forward " \t\n\r\f\v")
1876 (setq rung-end-pos (min (1+ (point)) (point-max)))
1878 (if (or
1879 ;; Cache if we haven't skipped comments only, and if we started
1880 ;; either from a marked rung or from a completely uncached
1881 ;; position.
1882 (and safe-start
1883 (or rung-is-marked
1884 (not (get-text-property simple-ws-end 'c-in-sws))))
1886 ;; See if there's a marked rung in the encountered simple ws. If
1887 ;; so then we can cache, unless `safe-start' is nil. Even then
1888 ;; we need to do this to check if the cache can be used for the
1889 ;; next step.
1890 (and (setq next-rung-is-marked
1891 (text-property-any next-rung-pos rung-end-pos
1892 'c-is-sws t))
1893 safe-start))
1895 (progn
1896 (c-debug-sws-msg
1897 "c-forward-sws caching [%s..%s] - [%s..%s] (max %s)"
1898 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1899 (point-max))
1901 ;; Remove the properties for any nested ws that might be cached.
1902 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
1903 ;; anyway.
1904 (c-remove-is-sws (1+ simple-ws-end) next-rung-pos)
1905 (unless (and rung-is-marked (= rung-pos simple-ws-end))
1906 (c-put-is-sws rung-pos
1907 (1+ simple-ws-end))
1908 (setq rung-is-marked t))
1909 (c-put-in-sws rung-pos
1910 (setq rung-pos (point)
1911 last-put-in-sws-pos rung-pos))
1912 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
1913 ;; Remove any `c-in-sws' property from the last char of
1914 ;; the rung before we mark it with `c-is-sws', so that we
1915 ;; won't connect with the remains of a broken "ladder".
1916 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
1917 (c-put-is-sws next-rung-pos
1918 rung-end-pos))
1920 (c-debug-sws-msg
1921 "c-forward-sws not caching [%s..%s] - [%s..%s] (max %s)"
1922 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1923 (point-max))
1925 ;; Set `rung-pos' for the next rung. It's the same thing here as
1926 ;; initially, except that the rung position is set as early as
1927 ;; possible since we can't be in the ending ws of a line comment or
1928 ;; cpp directive now.
1929 (if (setq rung-is-marked next-rung-is-marked)
1930 (setq rung-pos (1- (c-next-single-property-change
1931 rung-is-marked 'c-is-sws nil rung-end-pos)))
1932 (setq rung-pos next-rung-pos))
1933 (setq safe-start t)))
1935 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
1936 ;; another one after the point (which might occur when editing inside a
1937 ;; comment or macro).
1938 (when (eq last-put-in-sws-pos (point))
1939 (cond ((< last-put-in-sws-pos (point-max))
1940 (c-debug-sws-msg
1941 "c-forward-sws clearing at %s for cache separation"
1942 last-put-in-sws-pos)
1943 (c-remove-in-sws last-put-in-sws-pos
1944 (1+ last-put-in-sws-pos)))
1946 ;; If at eob we have to clear the last character before the end
1947 ;; instead since the buffer might be narrowed and there might
1948 ;; be a `c-in-sws' after (point-max). In this case it's
1949 ;; necessary to clear both properties.
1950 (c-debug-sws-msg
1951 "c-forward-sws clearing thoroughly at %s for cache separation"
1952 (1- last-put-in-sws-pos))
1953 (c-remove-is-and-in-sws (1- last-put-in-sws-pos)
1954 last-put-in-sws-pos))))
1955 ))))
1957 (defun c-backward-sws ()
1958 ;; Used by `c-backward-syntactic-ws' to implement the unbounded search.
1960 ;; This function might do hidden buffer changes.
1962 (let (;; `rung-pos' is set to a position as late as possible in the unmarked
1963 ;; part of the simple ws region.
1964 (rung-pos (point)) next-rung-pos last-put-in-sws-pos
1965 rung-is-marked simple-ws-beg cmt-skip-pos)
1967 ;; Skip simple horizontal ws and do a quick check on the preceding
1968 ;; character to see if it's anything that can't end syntactic ws, so we can
1969 ;; bail out early in the majority of cases when there just are a few ws
1970 ;; chars. Newlines are complicated in the backward direction, so we can't
1971 ;; skip over them.
1972 (skip-chars-backward " \t\f")
1973 (when (and (not (bobp))
1974 (save-excursion
1975 (backward-char)
1976 (or (looking-at c-syntactic-ws-end)
1977 (and c-opt-cpp-prefix
1978 (looking-at c-symbol-char-key)
1979 (progn (c-beginning-of-current-token)
1980 (looking-at c-noise-macro-name-re))))))
1981 ;; Try to find a rung position in the simple ws preceding point, so that
1982 ;; we can get a cache hit even if the last bit of the simple ws has
1983 ;; changed recently.
1984 (setq simple-ws-beg (point))
1985 (skip-chars-backward " \t\n\r\f\v")
1986 (if (setq rung-is-marked (text-property-any
1987 (point) (min (1+ rung-pos) (point-max))
1988 'c-is-sws t))
1989 ;; `rung-pos' will be the earliest marked position, which means that
1990 ;; there might be later unmarked parts in the simple ws region.
1991 ;; It's not worth the effort to fix that; the last part of the
1992 ;; simple ws is also typically edited often, so it could be wasted.
1993 (goto-char (setq rung-pos rung-is-marked))
1994 (goto-char simple-ws-beg))
1996 (with-silent-modifications
1997 (while
1998 (progn
1999 ;; Each time round the next while form, we move back over a ladder
2000 ;; and append any simple WS preceding it, if possible joining with
2001 ;; the previous ladder.
2002 (while
2003 (when (and rung-is-marked
2004 (not (bobp))
2005 (get-text-property (1- (point)) 'c-in-sws))
2007 ;; The following search is the main reason that `c-in-sws'
2008 ;; and `c-is-sws' aren't combined to one property.
2009 (goto-char (previous-single-property-change
2010 (point) 'c-in-sws nil (point-min)))
2011 (unless (get-text-property (point) 'c-is-sws)
2012 ;; If the `c-in-sws' region extended past the first
2013 ;; `c-is-sws' char we have to go forward a bit.
2014 (goto-char (c-next-single-property-change
2015 (point) 'c-is-sws)))
2017 (c-debug-sws-msg
2018 "c-backward-sws cached move %s <- %s (min %s)"
2019 (point) rung-pos (point-min))
2021 (setq rung-pos (point))
2022 (if (and (< (min (skip-chars-backward " \t\f\v")
2023 (progn
2024 (setq simple-ws-beg (point))
2025 (skip-chars-backward " \t\n\r\f\v")))
2027 (setq rung-is-marked
2028 (text-property-any (point) rung-pos
2029 'c-is-sws t)))
2031 (goto-char simple-ws-beg)
2032 nil))
2034 ;; We'll loop here if there is simple ws before the first rung.
2035 ;; That means that there's been some change in it and it's
2036 ;; possible that we've stepped into another ladder, so extend
2037 ;; the previous one to join with it if there is one, and try to
2038 ;; use the cache again.
2039 (c-debug-sws-msg
2040 "c-backward-sws extending rung with [%s..%s] (min %s)"
2041 rung-is-marked rung-pos (point-min))
2042 (unless (get-text-property (1- rung-pos) 'c-is-sws)
2043 ;; Remove any `c-in-sws' property from the last char of
2044 ;; the rung before we mark it with `c-is-sws', so that we
2045 ;; won't connect with the remains of a broken "ladder".
2046 (c-remove-in-sws (1- rung-pos) rung-pos))
2047 (c-put-is-sws rung-is-marked
2048 rung-pos)
2049 (c-put-in-sws rung-is-marked
2050 (1- rung-pos))
2051 (setq rung-pos rung-is-marked
2052 last-put-in-sws-pos rung-pos))
2054 (c-backward-comments)
2055 (setq cmt-skip-pos (point))
2057 (cond
2058 ((and c-opt-cpp-prefix
2059 (/= cmt-skip-pos simple-ws-beg)
2060 (c-beginning-of-macro))
2061 ;; Inside a cpp directive. See if it should be skipped over.
2062 (let ((cpp-beg (point)))
2064 ;; Move back over all line continuations in the region skipped
2065 ;; over by `c-backward-comments'. If we go past it then we
2066 ;; started inside the cpp directive.
2067 (goto-char simple-ws-beg)
2068 (beginning-of-line)
2069 (while (and (> (point) cmt-skip-pos)
2070 (progn (backward-char)
2071 (eq (char-before) ?\\)))
2072 (beginning-of-line))
2074 (if (< (point) cmt-skip-pos)
2075 ;; Don't move past the cpp directive if we began inside
2076 ;; it. Note that the position at the end of the last line
2077 ;; of the macro is also considered to be within it.
2078 (progn (goto-char cmt-skip-pos)
2079 nil)
2081 ;; It's worthwhile to spend a little bit of effort on finding
2082 ;; the end of the macro, to get a good `simple-ws-beg'
2083 ;; position for the cache. Note that `c-backward-comments'
2084 ;; could have stepped over some comments before going into
2085 ;; the macro, and then `simple-ws-beg' must be kept on the
2086 ;; same side of those comments.
2087 (goto-char simple-ws-beg)
2088 (skip-chars-backward " \t\n\r\f\v")
2089 (if (eq (char-before) ?\\)
2090 (forward-char))
2091 (forward-line 1)
2092 (if (< (point) simple-ws-beg)
2093 ;; Might happen if comments after the macro were skipped
2094 ;; over.
2095 (setq simple-ws-beg (point)))
2097 (goto-char cpp-beg)
2098 t)))
2100 ((/= (save-excursion
2101 (skip-chars-forward " \t\n\r\f\v" simple-ws-beg)
2102 (setq next-rung-pos (point)))
2103 simple-ws-beg)
2104 ;; Skipped over comments. Must put point at the end of
2105 ;; the simple ws at point since we might be after a line
2106 ;; comment or cpp directive that's been partially
2107 ;; narrowed out, and we can't risk marking the simple ws
2108 ;; at the end of it.
2109 (goto-char next-rung-pos)
2112 ((and c-opt-cpp-prefix
2113 (save-excursion
2114 (and (< (skip-syntax-backward "w_") 0)
2115 (progn (setq next-rung-pos (point))
2116 (looking-at c-noise-macro-name-re)))))
2117 ;; Skipped over a noise macro
2118 (goto-char next-rung-pos)
2119 t)))
2121 ;; We've searched over a piece of non-white syntactic ws. See if this
2122 ;; can be cached.
2123 (setq next-rung-pos (point))
2124 (skip-chars-backward " \t\f\v")
2126 (if (or
2127 ;; Cache if we started either from a marked rung or from a
2128 ;; completely uncached position.
2129 rung-is-marked
2130 (not (get-text-property (1- simple-ws-beg) 'c-in-sws))
2132 ;; Cache if there's a marked rung in the encountered simple ws.
2133 (save-excursion
2134 (skip-chars-backward " \t\n\r\f\v")
2135 (text-property-any (point) (min (1+ next-rung-pos) (point-max))
2136 'c-is-sws t)))
2138 (progn
2139 (c-debug-sws-msg
2140 "c-backward-sws caching [%s..%s] - [%s..%s] (min %s)"
2141 (point) (1+ next-rung-pos)
2142 simple-ws-beg (min (1+ rung-pos) (point-max))
2143 (point-min))
2145 ;; Remove the properties for any nested ws that might be cached.
2146 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
2147 ;; anyway.
2148 (c-remove-is-sws (1+ next-rung-pos) simple-ws-beg)
2149 (unless (and rung-is-marked (= simple-ws-beg rung-pos))
2150 (let ((rung-end-pos (min (1+ rung-pos) (point-max))))
2151 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
2152 ;; Remove any `c-in-sws' property from the last char of
2153 ;; the rung before we mark it with `c-is-sws', so that we
2154 ;; won't connect with the remains of a broken "ladder".
2155 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
2156 (c-put-is-sws simple-ws-beg
2157 rung-end-pos)
2158 (setq rung-is-marked t)))
2159 (c-put-in-sws (setq simple-ws-beg (point)
2160 last-put-in-sws-pos simple-ws-beg)
2161 rung-pos)
2162 (c-put-is-sws (setq rung-pos simple-ws-beg)
2163 (1+ next-rung-pos)))
2165 (c-debug-sws-msg
2166 "c-backward-sws not caching [%s..%s] - [%s..%s] (min %s)"
2167 (point) (1+ next-rung-pos)
2168 simple-ws-beg (min (1+ rung-pos) (point-max))
2169 (point-min))
2170 (setq rung-pos next-rung-pos
2171 simple-ws-beg (point))
2174 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
2175 ;; another one before the point (which might occur when editing inside a
2176 ;; comment or macro).
2177 (when (eq last-put-in-sws-pos (point))
2178 (cond ((< (point-min) last-put-in-sws-pos)
2179 (c-debug-sws-msg
2180 "c-backward-sws clearing at %s for cache separation"
2181 (1- last-put-in-sws-pos))
2182 (c-remove-in-sws (1- last-put-in-sws-pos)
2183 last-put-in-sws-pos))
2184 ((> (point-min) 1)
2185 ;; If at bob and the buffer is narrowed, we have to clear the
2186 ;; character we're standing on instead since there might be a
2187 ;; `c-in-sws' before (point-min). In this case it's necessary
2188 ;; to clear both properties.
2189 (c-debug-sws-msg
2190 "c-backward-sws clearing thoroughly at %s for cache separation"
2191 last-put-in-sws-pos)
2192 (c-remove-is-and-in-sws last-put-in-sws-pos
2193 (1+ last-put-in-sws-pos)))))
2194 ))))
2197 ;; Other whitespace tools
2198 (defun c-partial-ws-p (beg end)
2199 ;; Is the region (beg end) WS, and is there WS (or BOB/EOB) next to the
2200 ;; region? This is a "heuristic" function. .....
2202 ;; The motivation for the second bit is to check whether removing this
2203 ;; region would coalesce two symbols.
2205 ;; FIXME!!! This function doesn't check virtual semicolons in any way. Be
2206 ;; careful about using this function for, e.g. AWK. (2007/3/7)
2207 (save-excursion
2208 (let ((end+1 (min (1+ end) (point-max))))
2209 (or (progn (goto-char (max (point-min) (1- beg)))
2210 (c-skip-ws-forward end)
2211 (eq (point) end))
2212 (progn (goto-char beg)
2213 (c-skip-ws-forward end+1)
2214 (eq (point) end+1))))))
2216 ;; A system for finding noteworthy parens before the point.
2218 (defconst c-state-cache-too-far 5000)
2219 ;; A maximum comfortable scanning distance, e.g. between
2220 ;; `c-state-cache-good-pos' and "HERE" (where we call c-parse-state). When
2221 ;; this distance is exceeded, we take "emergency measures", e.g. by clearing
2222 ;; the cache and starting again from point-min or a beginning of defun. This
2223 ;; value can be tuned for efficiency or set to a lower value for testing.
2225 (defvar c-state-cache nil)
2226 (make-variable-buffer-local 'c-state-cache)
2227 ;; The state cache used by `c-parse-state' to cut down the amount of
2228 ;; searching. It's the result from some earlier `c-parse-state' call. See
2229 ;; `c-parse-state''s doc string for details of its structure.
2231 ;; The use of the cached info is more effective if the next
2232 ;; `c-parse-state' call is on a line close by the one the cached state
2233 ;; was made at; the cache can actually slow down a little if the
2234 ;; cached state was made very far back in the buffer. The cache is
2235 ;; most effective if `c-parse-state' is used on each line while moving
2236 ;; forward.
2238 (defvar c-state-cache-good-pos 1)
2239 (make-variable-buffer-local 'c-state-cache-good-pos)
2240 ;; This is a position where `c-state-cache' is known to be correct, or
2241 ;; nil (see below). It's a position inside one of the recorded unclosed
2242 ;; parens or the top level, but not further nested inside any literal or
2243 ;; subparen that is closed before the last recorded position.
2245 ;; The exact position is chosen to try to be close to yet earlier than
2246 ;; the position where `c-state-cache' will be called next. Right now
2247 ;; the heuristic is to set it to the position after the last found
2248 ;; closing paren (of any type) before the line on which
2249 ;; `c-parse-state' was called. That is chosen primarily to work well
2250 ;; with refontification of the current line.
2252 ;; 2009-07-28: When `c-state-point-min' and the last position where
2253 ;; `c-parse-state' or for which `c-invalidate-state-cache' was called, are
2254 ;; both in the same literal, there is no such "good position", and
2255 ;; c-state-cache-good-pos is then nil. This is the ONLY circumstance in which
2256 ;; it can be nil. In this case, `c-state-point-min-literal' will be non-nil.
2258 ;; 2009-06-12: In a brace desert, c-state-cache-good-pos may also be in
2259 ;; the middle of the desert, as long as it is not within a brace pair
2260 ;; recorded in `c-state-cache' or a paren/bracket pair.
2262 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2263 ;; We maintain a simple cache of positions which aren't in a literal, so as to
2264 ;; speed up testing for non-literality.
2265 (defconst c-state-nonlit-pos-interval 3000)
2266 ;; The approximate interval between entries in `c-state-nonlit-pos-cache'.
2268 (defvar c-state-nonlit-pos-cache nil)
2269 (make-variable-buffer-local 'c-state-nonlit-pos-cache)
2270 ;; A list of buffer positions which are known not to be in a literal or a cpp
2271 ;; construct. This is ordered with higher positions at the front of the list.
2272 ;; Only those which are less than `c-state-nonlit-pos-cache-limit' are valid.
2274 (defvar c-state-nonlit-pos-cache-limit 1)
2275 (make-variable-buffer-local 'c-state-nonlit-pos-cache-limit)
2276 ;; An upper limit on valid entries in `c-state-nonlit-pos-cache'. This is
2277 ;; reduced by buffer changes, and increased by invocations of
2278 ;; `c-state-literal-at'.
2280 (defvar c-state-semi-nonlit-pos-cache nil)
2281 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache)
2282 ;; A list of elements which are either buffer positions (when such positions
2283 ;; are not in literals) or lists of the form (POS TYPE START), where POS is
2284 ;; a buffer position inside a literal, TYPE is the type of the literal
2285 ;; ('string, 'c, or 'c++) and START is the start of the literal.
2287 (defvar c-state-semi-nonlit-pos-cache-limit 1)
2288 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache-limit)
2289 ;; An upper limit on valid entries in `c-state-semi-nonlit-pos-cache'. This
2290 ;; is reduced by buffer changes, and increased by invocations of
2291 ;; `c-parse-ps-state-below'.
2293 (defsubst c-truncate-semi-nonlit-pos-cache (pos)
2294 ;; Truncate the upper bound of the cache `c-state-semi-nonlit-pos-cache' to
2295 ;; POS, if it is higher than that position.
2296 (setq c-state-semi-nonlit-pos-cache-limit
2297 (min c-state-semi-nonlit-pos-cache-limit pos)))
2299 (defun c-state-semi-pp-to-literal (here &optional not-in-delimiter)
2300 ;; Do a parse-partial-sexp from a position in the buffer before HERE which
2301 ;; isn't in a literal, and return information about HERE, either:
2302 ;; (STATE TYPE BEG) if HERE is in a literal; or
2303 ;; (STATE) otherwise,
2304 ;; where STATE is the parsing state at HERE, TYPE is the type of the literal
2305 ;; enclosing HERE, (one of 'string, 'c, 'c++) and BEG is the starting
2306 ;; position of that literal (including the delimiter).
2308 ;; Unless NOT-IN-DELIMITER is non-nil, when TO is inside a two-character
2309 ;; comment opener, this is recognized as being in a comment literal.
2311 ;; Only elements 3 (in a string), 4 (in a comment), 5 (following a quote), 7
2312 ;; (comment type), and 8 (start of comment/string), and possibly 10 (in
2313 ;; newer Emacsen only, the syntax of a position after a potential first char
2314 ;; of a two char construct) of STATE are valid.
2315 (save-excursion
2316 (save-restriction
2317 (widen)
2318 (save-match-data
2319 (let* ((base-and-state (c-parse-ps-state-below here))
2320 (base (car base-and-state))
2321 (s (cdr base-and-state))
2322 (s (parse-partial-sexp base here nil nil s))
2324 (cond
2325 ((or (nth 3 s) (nth 4 s)) ; in a string or comment
2326 (setq ty (cond
2327 ((nth 3 s) 'string)
2328 ((nth 7 s) 'c++)
2329 (t 'c)))
2330 (list s ty (nth 8 s)))
2332 ((and (not not-in-delimiter) ; inside a comment starter
2333 (not (bobp))
2334 (progn (backward-char)
2335 (and (not (and (memq 'category-properties c-emacs-features)
2336 (looking-at "\\s!")))
2337 (looking-at c-comment-start-regexp))))
2338 (setq ty (if (looking-at c-block-comment-start-regexp) 'c 'c++))
2339 (list s ty (point)))
2341 (t (list s))))))))
2343 (defun c-state-full-pp-to-literal (here &optional not-in-delimiter)
2344 ;; This function will supersede c-state-pp-to-literal.
2346 ;; Do a parse-partial-sexp from a position in the buffer before HERE which
2347 ;; isn't in a literal, and return information about HERE, either:
2348 ;; (STATE TYPE (BEG . END)) if HERE is in a literal; or
2349 ;; (STATE) otherwise,
2350 ;; where STATE is the parsing state at HERE, TYPE is the type of the literal
2351 ;; enclosing HERE, (one of 'string, 'c, 'c++) and (BEG . END) is the
2352 ;; boundaries of that literal (including the delimiters).
2354 ;; Unless NOT-IN-DELIMITER is non-nil, when TO is inside a two-character
2355 ;; comment opener, this is recognized as being in a comment literal.
2357 ;; Only elements 3 (in a string), 4 (in a comment), 5 (following a quote), 7
2358 ;; (comment type), and 8 (start of comment/string), and possibly 10 (in
2359 ;; newer Emacsen only, the syntax of a position after a potential first char
2360 ;; of a two char construct) of STATE are valid.
2361 (save-excursion
2362 (save-restriction
2363 (widen)
2364 (save-match-data
2365 (let* ((base-and-state (c-parse-ps-state-below here))
2366 (base (car base-and-state))
2367 (s (cdr base-and-state))
2368 (s (parse-partial-sexp base here nil nil s))
2369 ty start)
2370 (cond
2371 ((or (nth 3 s) (nth 4 s)) ; in a string or comment
2372 (setq ty (cond
2373 ((nth 3 s) 'string)
2374 ((nth 7 s) 'c++)
2375 (t 'c)))
2376 (setq start (nth 8 s))
2377 (parse-partial-sexp here (point-max)
2378 nil ; TARGETDEPTH
2379 nil ; STOPBEFORE
2380 s ; OLDSTATE
2381 'syntax-table) ; stop at end of literal
2382 (list s ty (cons start (point))))
2384 ((and (not not-in-delimiter) ; inside a comment starter
2385 (not (bobp))
2386 (progn (backward-char)
2387 (and (not (and (memq 'category-properties c-emacs-features)
2388 (looking-at "\\s!")))
2389 (looking-at c-comment-start-regexp))))
2390 (setq ty (if (looking-at c-block-comment-start-regexp) 'c 'c++)
2391 start (point))
2392 (forward-comment 1)
2393 (list s ty (cons start (point))))
2395 (t (list s))))))))
2397 (defsubst c-state-pp-to-literal (from to &optional not-in-delimiter)
2398 ;; Do a parse-partial-sexp from FROM to TO, returning either
2399 ;; (STATE TYPE (BEG . END)) if TO is in a literal; or
2400 ;; (STATE) otherwise,
2401 ;; where STATE is the parsing state at TO, TYPE is the type of the literal
2402 ;; (one of 'c, 'c++, 'string) and (BEG . END) is the boundaries of the literal,
2403 ;; including the delimiters.
2405 ;; Unless NOT-IN-DELIMITER is non-nil, when TO is inside a two-character
2406 ;; comment opener, this is recognized as being in a comment literal.
2408 ;; Only elements 3 (in a string), 4 (in a comment), 5 (following a quote),
2409 ;; 7 (comment type) and 8 (start of comment/string) (and possibly 9) of
2410 ;; STATE are valid.
2411 (save-excursion
2412 (save-match-data
2413 (let ((s (parse-partial-sexp from to))
2414 ty co-st)
2415 (cond
2416 ((or (nth 3 s) (nth 4 s)) ; in a string or comment
2417 (setq ty (cond
2418 ((nth 3 s) 'string)
2419 ((nth 7 s) 'c++)
2420 (t 'c)))
2421 (parse-partial-sexp (point) (point-max)
2422 nil ; TARGETDEPTH
2423 nil ; STOPBEFORE
2424 s ; OLDSTATE
2425 'syntax-table) ; stop at end of literal
2426 `(,s ,ty (,(nth 8 s) . ,(point))))
2428 ((and (not not-in-delimiter) ; inside a comment starter
2429 (not (bobp))
2430 (progn (backward-char)
2431 (and (not (looking-at "\\s!"))
2432 (looking-at c-comment-start-regexp))))
2433 (setq ty (if (looking-at c-block-comment-start-regexp) 'c 'c++)
2434 co-st (point))
2435 (forward-comment 1)
2436 `(,s ,ty (,co-st . ,(point))))
2438 (t `(,s)))))))
2440 (defun c-cache-to-parse-ps-state (elt)
2441 ;; Create a list suitable to use as the old-state parameter to
2442 ;; `parse-partial-sexp', out of ELT. ELT is either just a number, a buffer
2443 ;; position, or it is a list (POS TYPE STARTING-POS). Here POS is the
2444 ;; buffer position the other elements are pertinent for, TYPE is either 'c
2445 ;; or 'c++ (for a comment) or a character (for a string delimiter) or t
2446 ;; (meaning a string fence opened the string), STARTING-POS is the starting
2447 ;; position of the comment or string.
2448 (if (consp elt)
2449 (let ((depth 0) (containing nil) (last nil)
2450 in-string in-comment (after-quote nil)
2451 (min-depth 0) com-style com-str-start (intermediate nil)
2452 (between-syntax nil)
2453 (type (cadr elt)))
2454 (setq com-str-start (car (cddr elt)))
2455 (cond
2456 ((or (numberp type) (eq type t)) ; A string
2457 (setq in-string type))
2458 ((memq type '(c c++)) ; A comment
2459 (setq in-comment t
2460 com-style (if (eq type 'c++) 1 nil)))
2461 (t (c-benign-error "Invalid type %s in c-cache-to-parse-ps-state"
2462 elt)))
2463 (list depth containing last
2464 in-string in-comment after-quote
2465 min-depth com-style com-str-start
2466 intermediate nil))
2467 (copy-tree '(0 nil nil nil nil nil 0 nil nil nil nil))))
2469 (defun c-parse-ps-state-to-cache (state)
2470 ;; Convert STATE, a `parse-partial-sexp' state valid at POINT, to an element
2471 ;; for the `c-state-semi-nonlit-pos-cache' cache. This is either POINT
2472 ;; (when point is not in a literal) or a list (POINT TYPE STARTING-POS),
2473 ;; where TYPE is the type of the literal, either 'string, 'c, or 'c++, and
2474 ;; STARTING-POS is the starting position of the comment or string.
2475 (cond
2476 ((nth 3 state) ; A string
2477 (list (point) (nth 3 state) (nth 8 state)))
2478 ((nth 4 state) ; A comment
2479 (list (point)
2480 (if (eq (nth 7 state) 1) 'c++ 'c)
2481 (nth 8 state)))
2482 (t ; Neither string nor comment.
2483 (point))))
2485 (defsubst c-ps-state-cache-pos (elt)
2486 ;; Get the buffer position from ELT, an element from the cache
2487 ;; `c-state-semi-nonlit-pos-cache'.
2488 (if (atom elt)
2490 (car elt)))
2492 (defun c-parse-ps-state-below (here)
2493 ;; Given a buffer position HERE, Return a cons (CACHE-POS . STATE), where
2494 ;; CACHE-POS is a position not very far before HERE for which the
2495 ;; parse-partial-sexp STATE is valid. Note that the only valid elements of
2496 ;; STATE are those concerning comments and strings; STATE is the state of a
2497 ;; null `parse-partial-sexp' scan when CACHE-POS is not in a comment or
2498 ;; string.
2499 (save-excursion
2500 (save-restriction
2501 (widen)
2502 (let ((c c-state-semi-nonlit-pos-cache)
2503 elt state pos npos high-elt)
2504 ;; Trim the cache to take account of buffer changes.
2505 (while (and c (> (c-ps-state-cache-pos (car c))
2506 c-state-semi-nonlit-pos-cache-limit))
2507 (setq c (cdr c)))
2508 (setq c-state-semi-nonlit-pos-cache c)
2510 (while (and c (> (c-ps-state-cache-pos (car c)) here))
2511 (setq high-elt (car c))
2512 (setq c (cdr c)))
2513 (setq pos (or (and c (c-ps-state-cache-pos (car c)))
2514 (point-min)))
2516 (if high-elt
2517 (setq state (c-cache-to-parse-ps-state (car c)))
2518 (setq elt (if c (car c) (point-min)))
2519 (setq state
2520 (if c
2521 (c-cache-to-parse-ps-state (car c))
2522 (copy-tree '(0 nil nil nil nil nil 0 nil nil nil nil))))
2523 (while
2524 ;; Add an element to `c-state-semi-nonlit-pos-cache' each iteration.
2525 (<= (setq npos (+ pos c-state-nonlit-pos-interval)) here)
2526 (setq state (parse-partial-sexp pos npos nil nil state))
2527 (setq elt (c-parse-ps-state-to-cache state))
2528 (setq c-state-semi-nonlit-pos-cache
2529 (cons elt c-state-semi-nonlit-pos-cache))
2530 (setq pos npos)))
2532 (if (> pos c-state-semi-nonlit-pos-cache-limit)
2533 (setq c-state-semi-nonlit-pos-cache-limit pos))
2535 (cons pos state)))))
2537 (defun c-state-safe-place (here)
2538 ;; Return a buffer position before HERE which is "safe", i.e. outside any
2539 ;; string, comment, or macro.
2541 ;; NOTE: This function manipulates `c-state-nonlit-pos-cache'. This cache
2542 ;; MAY NOT contain any positions within macros, since macros are frequently
2543 ;; turned into comments by use of the `c-cpp-delimiter' category properties.
2544 ;; We cannot rely on this mechanism whilst determining a cache pos since
2545 ;; this function is also called from outwith `c-parse-state'.
2546 (save-restriction
2547 (widen)
2548 (save-excursion
2549 (let ((c c-state-nonlit-pos-cache)
2550 pos npos high-pos lit macro-beg macro-end)
2551 ;; Trim the cache to take account of buffer changes.
2552 (while (and c (> (car c) c-state-nonlit-pos-cache-limit))
2553 (setq c (cdr c)))
2554 (setq c-state-nonlit-pos-cache c)
2556 (while (and c (> (car c) here))
2557 (setq high-pos (car c))
2558 (setq c (cdr c)))
2559 (setq pos (or (car c) (point-min)))
2561 (unless high-pos
2562 (while
2563 ;; Add an element to `c-state-nonlit-pos-cache' each iteration.
2564 (and
2565 (setq npos
2566 (when (<= (+ pos c-state-nonlit-pos-interval) here)
2567 (+ pos c-state-nonlit-pos-interval)))
2569 ;; Test for being in a literal. If so, go to after it.
2570 (progn
2571 (setq lit (car (cddr (c-state-pp-to-literal pos npos))))
2572 (or (null lit)
2573 (prog1 (<= (cdr lit) here)
2574 (setq npos (cdr lit)))))
2576 ;; Test for being in a macro. If so, go to after it.
2577 (progn
2578 (goto-char npos)
2579 (setq macro-beg
2580 (and (c-beginning-of-macro) (/= (point) npos) (point)))
2581 (when macro-beg
2582 (c-syntactic-end-of-macro)
2583 (or (eobp) (forward-char))
2584 (setq macro-end (point)))
2585 (or (null macro-beg)
2586 (prog1 (<= macro-end here)
2587 (setq npos macro-end)))))
2589 (setq pos npos)
2590 (setq c-state-nonlit-pos-cache (cons pos c-state-nonlit-pos-cache)))
2591 ;; Add one extra element above HERE so as to to avoid the previous
2592 ;; expensive calculation when the next call is close to the current
2593 ;; one. This is especially useful when inside a large macro.
2594 (when npos
2595 (setq c-state-nonlit-pos-cache
2596 (cons npos c-state-nonlit-pos-cache))))
2598 (if (> pos c-state-nonlit-pos-cache-limit)
2599 (setq c-state-nonlit-pos-cache-limit pos))
2600 pos))))
2602 (defun c-state-literal-at (here)
2603 ;; If position HERE is inside a literal, return (START . END), the
2604 ;; boundaries of the literal (which may be outside the accessible bit of the
2605 ;; buffer). Otherwise, return nil.
2607 ;; This function is almost the same as `c-literal-limits'. Previously, it
2608 ;; differed in that it was a lower level function, and that it rigorously
2609 ;; followed the syntax from BOB. `c-literal-limits' is now (2011-12)
2610 ;; virtually identical to this function.
2611 (save-restriction
2612 (widen)
2613 (save-excursion
2614 (let ((pos (c-state-safe-place here)))
2615 (car (cddr (c-state-pp-to-literal pos here)))))))
2617 (defsubst c-state-lit-beg (pos)
2618 ;; Return the start of the literal containing POS, or POS itself.
2619 (or (car (c-state-literal-at pos))
2620 pos))
2622 (defsubst c-state-cache-non-literal-place (pos state)
2623 ;; Return a position outside of a string/comment/macro at or before POS.
2624 ;; STATE is the parse-partial-sexp state at POS.
2625 (let ((res (if (or (nth 3 state) ; in a string?
2626 (nth 4 state)) ; in a comment?
2627 (nth 8 state)
2628 pos)))
2629 (save-excursion
2630 (goto-char res)
2631 (if (c-beginning-of-macro)
2632 (point)
2633 res))))
2635 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2636 ;; Stuff to do with point-min, and coping with any literal there.
2637 (defvar c-state-point-min 1)
2638 (make-variable-buffer-local 'c-state-point-min)
2639 ;; This is (point-min) when `c-state-cache' was last calculated. A change of
2640 ;; narrowing is likely to affect the parens that are visible before the point.
2642 (defvar c-state-point-min-lit-type nil)
2643 (make-variable-buffer-local 'c-state-point-min-lit-type)
2644 (defvar c-state-point-min-lit-start nil)
2645 (make-variable-buffer-local 'c-state-point-min-lit-start)
2646 ;; These two variables define the literal, if any, containing point-min.
2647 ;; Their values are, respectively, 'string, c, or c++, and the start of the
2648 ;; literal. If there's no literal there, they're both nil.
2650 (defvar c-state-min-scan-pos 1)
2651 (make-variable-buffer-local 'c-state-min-scan-pos)
2652 ;; This is the earliest buffer-pos from which scanning can be done. It is
2653 ;; either the end of the literal containing point-min, or point-min itself.
2654 ;; It becomes nil if the buffer is changed earlier than this point.
2655 (defun c-state-get-min-scan-pos ()
2656 ;; Return the lowest valid scanning pos. This will be the end of the
2657 ;; literal enclosing point-min, or point-min itself.
2658 (or c-state-min-scan-pos
2659 (save-restriction
2660 (save-excursion
2661 (widen)
2662 (goto-char c-state-point-min-lit-start)
2663 (if (eq c-state-point-min-lit-type 'string)
2664 (forward-sexp)
2665 (forward-comment 1))
2666 (setq c-state-min-scan-pos (point))))))
2668 (defun c-state-mark-point-min-literal ()
2669 ;; Determine the properties of any literal containing POINT-MIN, setting the
2670 ;; variables `c-state-point-min-lit-type', `c-state-point-min-lit-start',
2671 ;; and `c-state-min-scan-pos' accordingly. The return value is meaningless.
2672 (let ((p-min (point-min))
2673 lit)
2674 (save-restriction
2675 (widen)
2676 (setq lit (c-state-literal-at p-min))
2677 (if lit
2678 (setq c-state-point-min-lit-type
2679 (save-excursion
2680 (goto-char (car lit))
2681 (cond
2682 ((looking-at c-block-comment-start-regexp) 'c)
2683 ((looking-at c-line-comment-starter) 'c++)
2684 (t 'string)))
2685 c-state-point-min-lit-start (car lit)
2686 c-state-min-scan-pos (cdr lit))
2687 (setq c-state-point-min-lit-type nil
2688 c-state-point-min-lit-start nil
2689 c-state-min-scan-pos p-min)))))
2692 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2693 ;; A variable which signals a brace dessert - helpful for reducing the number
2694 ;; of fruitless backward scans.
2695 (defvar c-state-brace-pair-desert nil)
2696 (make-variable-buffer-local 'c-state-brace-pair-desert)
2697 ;; Used only in `c-append-lower-brace-pair-to-state-cache'. It is set when
2698 ;; that defun has searched backwards for a brace pair and not found one. Its
2699 ;; value is either nil or a cons (PA . FROM), where PA is the position of the
2700 ;; enclosing opening paren/brace/bracket which bounds the backwards search (or
2701 ;; nil when at top level) and FROM is where the backward search started. It
2702 ;; is reset to nil in `c-invalidate-state-cache'.
2705 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2706 ;; Lowish level functions/macros which work directly on `c-state-cache', or a
2707 ;; list of like structure.
2708 (defmacro c-state-cache-top-lparen (&optional cache)
2709 ;; Return the address of the top left brace/bracket/paren recorded in CACHE
2710 ;; (default `c-state-cache') (or nil).
2711 (let ((cash (or cache 'c-state-cache)))
2712 `(if (consp (car ,cash))
2713 (caar ,cash)
2714 (car ,cash))))
2716 (defmacro c-state-cache-top-paren (&optional cache)
2717 ;; Return the address of the latest brace/bracket/paren (whether left or
2718 ;; right) recorded in CACHE (default `c-state-cache') or nil.
2719 (let ((cash (or cache 'c-state-cache)))
2720 `(if (consp (car ,cash))
2721 (cdar ,cash)
2722 (car ,cash))))
2724 (defmacro c-state-cache-after-top-paren (&optional cache)
2725 ;; Return the position just after the latest brace/bracket/paren (whether
2726 ;; left or right) recorded in CACHE (default `c-state-cache') or nil.
2727 (let ((cash (or cache 'c-state-cache)))
2728 `(if (consp (car ,cash))
2729 (cdar ,cash)
2730 (and (car ,cash)
2731 (1+ (car ,cash))))))
2733 (defun c-get-cache-scan-pos (here)
2734 ;; From the state-cache, determine the buffer position from which we might
2735 ;; scan forward to HERE to update this cache. This position will be just
2736 ;; after a paren/brace/bracket recorded in the cache, if possible, otherwise
2737 ;; return the earliest position in the accessible region which isn't within
2738 ;; a literal. If the visible portion of the buffer is entirely within a
2739 ;; literal, return NIL.
2740 (let ((c c-state-cache) elt)
2741 ;(while (>= (or (c-state-cache-top-lparen c) 1) here)
2742 (while (and c
2743 (>= (c-state-cache-top-lparen c) here))
2744 (setq c (cdr c)))
2746 (setq elt (car c))
2747 (cond
2748 ((consp elt)
2749 (if (> (cdr elt) here)
2750 (1+ (car elt))
2751 (cdr elt)))
2752 (elt (1+ elt))
2753 ((<= (c-state-get-min-scan-pos) here)
2754 (c-state-get-min-scan-pos))
2755 (t nil))))
2757 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2758 ;; Variables which keep track of preprocessor constructs.
2759 (defvar c-state-old-cpp-beg-marker nil)
2760 (make-variable-buffer-local 'c-state-old-cpp-beg-marker)
2761 (defvar c-state-old-cpp-beg nil)
2762 (make-variable-buffer-local 'c-state-old-cpp-beg)
2763 (defvar c-state-old-cpp-end-marker nil)
2764 (make-variable-buffer-local 'c-state-old-cpp-end-marker)
2765 (defvar c-state-old-cpp-end nil)
2766 (make-variable-buffer-local 'c-state-old-cpp-end)
2767 ;; These are the limits of the macro containing point at the previous call of
2768 ;; `c-parse-state', or nil.
2770 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2771 ;; Defuns which analyze the buffer, yet don't change `c-state-cache'.
2772 (defun c-get-fallback-scan-pos (here)
2773 ;; Return a start position for building `c-state-cache' from
2774 ;; scratch. This will be at the top level, 2 defuns back.
2775 (save-excursion
2776 ;; Go back 2 bods, but ignore any bogus positions returned by
2777 ;; beginning-of-defun (i.e. open paren in column zero).
2778 (goto-char here)
2779 (let ((cnt 2))
2780 (while (not (or (bobp) (zerop cnt)))
2781 (c-beginning-of-defun-1) ; Pure elisp BOD.
2782 (if (eq (char-after) ?\{)
2783 (setq cnt (1- cnt)))))
2784 (point)))
2786 (defun c-state-balance-parens-backwards (here- here+ top)
2787 ;; Return the position of the opening paren/brace/bracket before HERE- which
2788 ;; matches the outermost close p/b/b between HERE+ and TOP. Except when
2789 ;; there's a macro, HERE- and HERE+ are the same. Like this:
2791 ;; ............................................
2792 ;; | |
2793 ;; ( [ ( .........#macro.. ) ( ) ] )
2794 ;; ^ ^ ^ ^
2795 ;; | | | |
2796 ;; return HERE- HERE+ TOP
2798 ;; If there aren't enough opening paren/brace/brackets, return the position
2799 ;; of the outermost one found, or HERE- if there are none. If there are no
2800 ;; closing p/b/bs between HERE+ and TOP, return HERE-. HERE-/+ and TOP
2801 ;; must not be inside literals. Only the accessible portion of the buffer
2802 ;; will be scanned.
2804 ;; PART 1: scan from `here+' up to `top', accumulating ")"s which enclose
2805 ;; `here'. Go round the next loop each time we pass over such a ")". These
2806 ;; probably match "("s before `here-'.
2807 (let (pos pa ren+1 lonely-rens)
2808 (save-excursion
2809 (save-restriction
2810 (narrow-to-region (point-min) top) ; This can move point, sometimes.
2811 (setq pos here+)
2812 (c-safe
2813 (while
2814 (setq ren+1 (c-sc-scan-lists pos 1 1)) ; might signal
2815 (setq lonely-rens (cons ren+1 lonely-rens)
2816 pos ren+1)))))
2818 ;; PART 2: Scan back before `here-' searching for the "("s
2819 ;; matching/mismatching the ")"s found above. We only need to direct the
2820 ;; caller to scan when we've encountered unmatched right parens.
2821 (setq pos here-)
2822 (when lonely-rens
2823 (c-safe
2824 (while
2825 (and lonely-rens ; actual values aren't used.
2826 (setq pa (c-sc-scan-lists pos -1 1)))
2827 (setq pos pa)
2828 (setq lonely-rens (cdr lonely-rens)))))
2829 pos))
2831 (defun c-parse-state-get-strategy (here good-pos)
2832 ;; Determine the scanning strategy for adjusting `c-parse-state', attempting
2833 ;; to minimize the amount of scanning. HERE is the pertinent position in
2834 ;; the buffer, GOOD-POS is a position where `c-state-cache' (possibly with
2835 ;; its head trimmed) is known to be good, or nil if there is no such
2836 ;; position.
2838 ;; The return value is a list, one of the following:
2840 ;; o - ('forward START-POINT) - scan forward from START-POINT,
2841 ;; which is not less than the highest position in `c-state-cache' below HERE,
2842 ;; which is after GOOD-POS.
2843 ;; o - ('backward nil) - scan backwards (from HERE).
2844 ;; o - ('back-and-forward START-POINT) - like 'forward, but when HERE is earlier
2845 ;; than GOOD-POS.
2846 ;; o - ('BOD START-POINT) - scan forwards from START-POINT, which is at the
2847 ;; top level.
2848 ;; o - ('IN-LIT nil) - point is inside the literal containing point-min.
2849 (let ((cache-pos (c-get-cache-scan-pos here)) ; highest position below HERE in cache (or 1)
2850 BOD-pos ; position of 2nd BOD before HERE.
2851 strategy ; 'forward, 'backward, 'BOD, or 'IN-LIT.
2852 start-point
2853 how-far) ; putative scanning distance.
2854 (setq good-pos (or good-pos (c-state-get-min-scan-pos)))
2855 (cond
2856 ((< here (c-state-get-min-scan-pos))
2857 (setq strategy 'IN-LIT
2858 start-point nil
2859 cache-pos nil
2860 how-far 0))
2861 ((<= good-pos here)
2862 (setq strategy 'forward
2863 start-point (max good-pos cache-pos)
2864 how-far (- here start-point)))
2865 ((< (- good-pos here) (- here cache-pos)) ; FIXME!!! ; apply some sort of weighting.
2866 (setq strategy 'backward
2867 how-far (- good-pos here)))
2869 (setq strategy 'back-and-forward
2870 start-point cache-pos
2871 how-far (- here start-point))))
2873 ;; Might we be better off starting from the top level, two defuns back,
2874 ;; instead? This heuristic no longer works well in C++, where
2875 ;; declarations inside namespace brace blocks are frequently placed at
2876 ;; column zero. (2015-11-10): Remove the condition on C++ Mode.
2877 (when (and (or (not (memq 'col-0-paren c-emacs-features))
2878 open-paren-in-column-0-is-defun-start)
2879 ;; (not (c-major-mode-is 'c++-mode))
2880 (> how-far c-state-cache-too-far))
2881 (setq BOD-pos (c-get-fallback-scan-pos here)) ; somewhat EXPENSIVE!!!
2882 (if (< (- here BOD-pos) how-far)
2883 (setq strategy 'BOD
2884 start-point BOD-pos)))
2886 (list strategy start-point)))
2889 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2890 ;; Routines which change `c-state-cache' and associated values.
2891 (defun c-renarrow-state-cache ()
2892 ;; The region (more precisely, point-min) has changed since we
2893 ;; calculated `c-state-cache'. Amend `c-state-cache' accordingly.
2894 (if (< (point-min) c-state-point-min)
2895 ;; If point-min has MOVED BACKWARDS then we drop the state completely.
2896 ;; It would be possible to do a better job here and recalculate the top
2897 ;; only.
2898 (progn
2899 (c-state-mark-point-min-literal)
2900 (setq c-state-cache nil
2901 c-state-cache-good-pos c-state-min-scan-pos
2902 c-state-brace-pair-desert nil))
2904 ;; point-min has MOVED FORWARD.
2906 ;; Is the new point-min inside a (different) literal?
2907 (unless (and c-state-point-min-lit-start ; at prev. point-min
2908 (< (point-min) (c-state-get-min-scan-pos)))
2909 (c-state-mark-point-min-literal))
2911 ;; Cut off a bit of the tail from `c-state-cache'.
2912 (let ((ptr (cons nil c-state-cache))
2914 (while (and (setq pa (c-state-cache-top-lparen (cdr ptr)))
2915 (>= pa (point-min)))
2916 (setq ptr (cdr ptr)))
2918 (when (consp ptr)
2919 (if (or (eq (cdr ptr) c-state-cache)
2920 (and (consp (cadr ptr))
2921 (> (cdr (cadr ptr)) (point-min)))) ; Our new point-min is
2922 ; inside a recorded
2923 ; brace pair.
2924 (setq c-state-cache nil
2925 c-state-cache-good-pos c-state-min-scan-pos)
2926 (setcdr ptr nil)
2927 (setq c-state-cache-good-pos (1+ (c-state-cache-top-lparen))))
2930 (setq c-state-point-min (point-min)))
2932 (defun c-append-lower-brace-pair-to-state-cache (from here &optional upper-lim)
2933 ;; If there is a brace pair preceding FROM in the buffer, at the same level
2934 ;; of nesting (not necessarily immediately preceding), push a cons onto
2935 ;; `c-state-cache' to represent it. FROM must not be inside a literal. If
2936 ;; UPPER-LIM is non-nil, we append the highest brace pair whose "}" is below
2937 ;; UPPER-LIM.
2939 ;; Return non-nil when this has been done.
2941 ;; The situation it copes with is this transformation:
2943 ;; OLD: { (.) {...........}
2944 ;; ^ ^
2945 ;; FROM HERE
2947 ;; NEW: { {....} (.) {.........
2948 ;; ^ ^ ^
2949 ;; LOWER BRACE PAIR HERE or HERE
2951 ;; This routine should be fast. Since it can get called a LOT, we maintain
2952 ;; `c-state-brace-pair-desert', a small cache of "failures", such that we
2953 ;; reduce the time wasted in repeated fruitless searches in brace deserts.
2954 (save-excursion
2955 (save-restriction
2956 (let* (new-cons
2957 (cache-pos (c-state-cache-top-lparen)) ; might be nil.
2958 (macro-start-or-from
2959 (progn (goto-char from)
2960 (c-beginning-of-macro)
2961 (point)))
2962 (bra ; Position of "{".
2963 ;; Don't start scanning in the middle of a CPP construct unless
2964 ;; it contains HERE - these constructs, in Emacs, are "commented
2965 ;; out" with category properties.
2966 (if (eq (c-get-char-property macro-start-or-from 'category)
2967 'c-cpp-delimiter)
2968 macro-start-or-from
2969 from))
2970 ce) ; Position of "}"
2971 (or upper-lim (setq upper-lim from))
2973 ;; If we're essentially repeating a fruitless search, just give up.
2974 (unless (and c-state-brace-pair-desert
2975 (eq cache-pos (car c-state-brace-pair-desert))
2976 (or (null (car c-state-brace-pair-desert))
2977 (> from (car c-state-brace-pair-desert)))
2978 (<= from (cdr c-state-brace-pair-desert)))
2979 ;; DESERT-LIM. Avoid repeated searching through the cached desert.
2980 (let ((desert-lim
2981 (and c-state-brace-pair-desert
2982 (eq cache-pos (car c-state-brace-pair-desert))
2983 (>= from (cdr c-state-brace-pair-desert))
2984 (cdr c-state-brace-pair-desert)))
2985 ;; CACHE-LIM. This limit will be necessary when an opening
2986 ;; paren at `cache-pos' has just had its matching close paren
2987 ;; inserted into the buffer. `cache-pos' continues to be a
2988 ;; search bound, even though the algorithm below would skip
2989 ;; over the new paren pair.
2990 (cache-lim (and cache-pos (< cache-pos from) cache-pos)))
2991 (narrow-to-region
2992 (cond
2993 ((and desert-lim cache-lim)
2994 (max desert-lim cache-lim))
2995 (desert-lim)
2996 (cache-lim)
2997 ((point-min)))
2998 ;; The top limit is EOB to ensure that `bra' is inside the
2999 ;; accessible part of the buffer at the next scan operation.
3000 (1+ (buffer-size))))
3002 ;; In the next pair of nested loops, the inner one moves back past a
3003 ;; pair of (mis-)matching parens or brackets; the outer one moves
3004 ;; back over a sequence of unmatched close brace/paren/bracket each
3005 ;; time round.
3006 (while
3007 (progn
3008 (c-safe
3009 (while
3010 (and (setq ce (c-sc-scan-lists bra -1 -1)) ; back past )/]/}; might signal
3011 (setq bra (c-sc-scan-lists ce -1 1)) ; back past (/[/{; might signal
3012 (or (> bra here) ;(> ce here)
3013 (and
3014 (< ce here)
3015 (or (not (eq (char-after bra) ?\{))
3016 (and (goto-char bra)
3017 (c-beginning-of-macro)
3018 (< (point) macro-start-or-from))))))))
3019 (and ce (< ce bra)))
3020 (setq bra ce)) ; If we just backed over an unbalanced closing
3021 ; brace, ignore it.
3023 (if (and ce (< ce here) (< bra ce) (eq (char-after bra) ?\{))
3024 ;; We've found the desired brace-pair.
3025 (progn
3026 (setq new-cons (cons bra (1+ ce)))
3027 (cond
3028 ((consp (car c-state-cache))
3029 (setcar c-state-cache new-cons))
3030 ((and (numberp (car c-state-cache)) ; probably never happens
3031 (< ce (car c-state-cache)))
3032 (setcdr c-state-cache
3033 (cons new-cons (cdr c-state-cache))))
3034 (t (setq c-state-cache (cons new-cons c-state-cache)))))
3036 ;; We haven't found a brace pair. Record this in the cache.
3037 (setq c-state-brace-pair-desert
3038 (cons (if (and ce (< bra ce) (> ce here)) ; {..} straddling HERE?
3040 (point-min))
3041 (min here from)))))))))
3043 (defsubst c-state-push-any-brace-pair (bra+1 macro-start-or-here)
3044 ;; If BRA+1 is nil, do nothing. Otherwise, BRA+1 is the buffer position
3045 ;; following a {, and that brace has a (mis-)matching } (or ]), and we
3046 ;; "push" "a" brace pair onto `c-state-cache'.
3048 ;; Here "push" means overwrite the top element if it's itself a brace-pair,
3049 ;; otherwise push it normally.
3051 ;; The brace pair we push is normally the one surrounding BRA+1, but if the
3052 ;; latter is inside a macro, not being a macro containing
3053 ;; MACRO-START-OR-HERE, we scan backwards through the buffer for a non-macro
3054 ;; base pair. This latter case is assumed to be rare.
3056 ;; Note: POINT is not preserved in this routine.
3057 (if bra+1
3058 (if (or (> bra+1 macro-start-or-here)
3059 (progn (goto-char bra+1)
3060 (not (c-beginning-of-macro))))
3061 (setq c-state-cache
3062 (cons (cons (1- bra+1)
3063 (c-sc-scan-lists bra+1 1 1))
3064 (if (consp (car c-state-cache))
3065 (cdr c-state-cache)
3066 c-state-cache)))
3067 ;; N.B. This defsubst codes one method for the simple, normal case,
3068 ;; and a more sophisticated, slower way for the general case. Don't
3069 ;; eliminate this defsubst - it's a speed optimization.
3070 (c-append-lower-brace-pair-to-state-cache (1- bra+1) (point-max)))))
3072 (defun c-append-to-state-cache (from here)
3073 ;; Scan the buffer from FROM to HERE, adding elements into `c-state-cache'
3074 ;; for braces etc. Return a candidate for `c-state-cache-good-pos'.
3076 ;; FROM must be after the latest brace/paren/bracket in `c-state-cache', if
3077 ;; any. Typically, it is immediately after it. It must not be inside a
3078 ;; literal.
3079 (let ((here-bol (c-point 'bol here))
3080 (macro-start-or-here
3081 (save-excursion (goto-char here)
3082 (if (c-beginning-of-macro)
3083 (point)
3084 here)))
3085 pa+1 ; pos just after an opening PAren (or brace).
3086 (ren+1 from) ; usually a pos just after an closing paREN etc.
3087 ; Is actually the pos. to scan for a (/{/[ from,
3088 ; which sometimes is after a silly )/}/].
3089 paren+1 ; Pos after some opening or closing paren.
3090 paren+1s ; A list of `paren+1's; used to determine a
3091 ; good-pos.
3092 bra+1 ; just after L bra-ce.
3093 bra+1s ; list of OLD values of bra+1.
3094 mstart) ; start of a macro.
3096 (save-excursion
3097 (save-restriction
3098 (narrow-to-region (point-min) here)
3099 ;; Each time round the following loop, we enter a successively deeper
3100 ;; level of brace/paren nesting. (Except sometimes we "continue at
3101 ;; the existing level".) `pa+1' is a pos inside an opening
3102 ;; brace/paren/bracket, usually just after it.
3103 (while
3104 (progn
3105 ;; Each time round the next loop moves forward over an opening then
3106 ;; a closing brace/bracket/paren. This loop is white hot, so it
3107 ;; plays ugly tricks to go fast. DON'T PUT ANYTHING INTO THIS
3108 ;; LOOP WHICH ISN'T ABSOLUTELY NECESSARY!!! It terminates when a
3109 ;; call of `scan-lists' signals an error, which happens when there
3110 ;; are no more b/b/p's to scan.
3111 (c-safe
3112 (while t
3113 (setq pa+1 (c-sc-scan-lists ren+1 1 -1) ; Into (/{/[; might signal
3114 paren+1s (cons pa+1 paren+1s))
3115 (setq ren+1 (c-sc-scan-lists pa+1 1 1)) ; Out of )/}/]; might signal
3116 (if (and (eq (char-before pa+1) ?{)) ; Check for a macro later.
3117 (setq bra+1 pa+1))
3118 (setcar paren+1s ren+1)))
3120 (if (and pa+1 (> pa+1 ren+1))
3121 ;; We've just entered a deeper nesting level.
3122 (progn
3123 ;; Insert the brace pair (if present) and the single open
3124 ;; paren/brace/bracket into `c-state-cache' It cannot be
3125 ;; inside a macro, except one around point, because of what
3126 ;; `c-neutralize-syntax-in-CPP' has done.
3127 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
3128 ;; Insert the opening brace/bracket/paren position.
3129 (setq c-state-cache (cons (1- pa+1) c-state-cache))
3130 ;; Clear admin stuff for the next more nested part of the scan.
3131 (setq ren+1 pa+1 pa+1 nil bra+1 nil bra+1s nil)
3132 t) ; Carry on the loop
3134 ;; All open p/b/b's at this nesting level, if any, have probably
3135 ;; been closed by matching/mismatching ones. We're probably
3136 ;; finished - we just need to check for having found an
3137 ;; unmatched )/}/], which we ignore. Such a )/}/] can't be in a
3138 ;; macro, due the action of `c-neutralize-syntax-in-CPP'.
3139 (c-safe (setq ren+1 (c-sc-scan-lists ren+1 1 1)))))) ; acts as loop control.
3141 ;; Record the final, innermost, brace-pair if there is one.
3142 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
3144 ;; Determine a good pos
3145 (while (and (setq paren+1 (car paren+1s))
3146 (> (if (> paren+1 macro-start-or-here)
3147 paren+1
3148 (goto-char paren+1)
3149 (setq mstart (and (c-beginning-of-macro)
3150 (point)))
3151 (or mstart paren+1))
3152 here-bol))
3153 (setq paren+1s (cdr paren+1s)))
3154 (cond
3155 ((and paren+1 mstart)
3156 (min paren+1 mstart))
3157 (paren+1)
3158 (t from))))))
3160 (defun c-remove-stale-state-cache (start-point here pps-point)
3161 ;; Remove stale entries from the `c-cache-state', i.e. those which will
3162 ;; not be in it when it is amended for position HERE. This may involve
3163 ;; replacing a CONS element for a brace pair containing HERE with its car.
3164 ;; Additionally, the "outermost" open-brace entry before HERE will be
3165 ;; converted to a cons if the matching close-brace is below HERE.
3167 ;; START-POINT is a "maximal" "safe position" - there must be no open
3168 ;; parens/braces/brackets between START-POINT and HERE.
3170 ;; As a second thing, calculate the result of parse-partial-sexp at
3171 ;; PPS-POINT, w.r.t. START-POINT. The motivation here is that
3172 ;; `c-state-cache-good-pos' may become PPS-POINT, but the caller may need to
3173 ;; adjust it to get outside a string/comment. (Sorry about this! The code
3174 ;; needs to be FAST).
3176 ;; Return a list (GOOD-POS SCAN-BACK-POS CONS-SEPARATED PPS-STATE), where
3177 ;; o - GOOD-POS is a position where the new value `c-state-cache' is known
3178 ;; to be good (we aim for this to be as high as possible);
3179 ;; o - SCAN-BACK-POS, if not nil, indicates there may be a brace pair
3180 ;; preceding POS which needs to be recorded in `c-state-cache'. It is a
3181 ;; position to scan backwards from. It is the position of the "{" of the
3182 ;; last element to be removed from `c-state-cache', when that elt is a
3183 ;; cons, otherwise nil.
3184 ;; o - CONS-SEPARATED is t when a cons element in `c-state-cache' has been
3185 ;; replaced by its car because HERE lies inside the brace pair represented
3186 ;; by the cons.
3187 ;; o - PPS-STATE is the parse-partial-sexp state at PPS-POINT.
3188 (save-excursion
3189 (save-restriction
3190 (narrow-to-region 1 (point-max))
3191 (let* ((in-macro-start ; start of macro containing HERE or nil.
3192 (save-excursion
3193 (goto-char here)
3194 (and (c-beginning-of-macro)
3195 (point))))
3196 (start-point-actual-macro-start ; Start of macro containing
3197 ; start-point or nil
3198 (and (< start-point here)
3199 (save-excursion
3200 (goto-char start-point)
3201 (and (c-beginning-of-macro)
3202 (point)))))
3203 (start-point-actual-macro-end ; End of this macro, (maybe
3204 ; HERE), or nil.
3205 (and start-point-actual-macro-start
3206 (save-excursion
3207 (goto-char start-point-actual-macro-start)
3208 (c-end-of-macro)
3209 (point))))
3210 pps-state ; Will be 9 or 10 elements long.
3212 upper-lim ; ,beyond which `c-state-cache' entries are removed
3213 scan-back-pos
3214 cons-separated
3215 pair-beg pps-point-state target-depth)
3217 ;; Remove entries beyond HERE. Also remove any entries inside
3218 ;; a macro, unless HERE is in the same macro.
3219 (setq upper-lim
3220 (if (or (null c-state-old-cpp-beg)
3221 (and (> here c-state-old-cpp-beg)
3222 (< here c-state-old-cpp-end)))
3223 here
3224 (min here c-state-old-cpp-beg)))
3225 (while (and c-state-cache (>= (c-state-cache-top-lparen) upper-lim))
3226 (setq scan-back-pos (car-safe (car c-state-cache)))
3227 (setq c-state-cache (cdr c-state-cache)))
3229 ;; If `upper-lim' is inside the last recorded brace pair, remove its
3230 ;; RBrace and indicate we'll need to search backwards for a previous
3231 ;; brace pair.
3232 (when (and c-state-cache
3233 (consp (car c-state-cache))
3234 (> (cdar c-state-cache) upper-lim))
3235 (setcar c-state-cache (caar c-state-cache))
3236 (setq scan-back-pos (car c-state-cache)
3237 cons-separated t))
3239 ;; The next loop jumps forward out of a nested level of parens each
3240 ;; time round; the corresponding elements in `c-state-cache' are
3241 ;; removed. `pos' is just after the brace-pair or the open paren at
3242 ;; (car c-state-cache). There can be no open parens/braces/brackets
3243 ;; between `start-point'/`start-point-actual-macro-start' and HERE,
3244 ;; due to the interface spec to this function.
3245 (setq pos (if (and start-point-actual-macro-end
3246 (not (eq start-point-actual-macro-start
3247 in-macro-start)))
3248 (1+ start-point-actual-macro-end) ; get outside the macro as
3249 ; marked by a `category' text property.
3250 start-point))
3251 (goto-char pos)
3252 (while (and c-state-cache
3253 (or (numberp (car c-state-cache)) ; Have we a { at all?
3254 (cdr c-state-cache))
3255 (< (point) here))
3256 (cond
3257 ((null pps-state) ; first time through
3258 (setq target-depth -1))
3259 ((eq (car pps-state) target-depth) ; found closing ),},]
3260 (setq target-depth (1- (car pps-state))))
3261 ;; Do nothing when we've merely reached pps-point.
3264 ;; Scan!
3265 (setq pps-state
3266 (c-sc-parse-partial-sexp
3267 (point) (if (< (point) pps-point) pps-point here)
3268 target-depth
3269 nil pps-state))
3271 (if (= (point) pps-point)
3272 (setq pps-point-state pps-state))
3274 (when (eq (car pps-state) target-depth)
3275 (setq pos (point)) ; POS is now just after an R-paren/brace.
3276 (cond
3277 ((and (consp (car c-state-cache))
3278 (eq (point) (cdar c-state-cache)))
3279 ;; We've just moved out of the paren pair containing the brace-pair
3280 ;; at (car c-state-cache). `pair-beg' is where the open paren is,
3281 ;; and is potentially where the open brace of a cons in
3282 ;; c-state-cache will be.
3283 (setq pair-beg (car-safe (cdr c-state-cache))
3284 c-state-cache (cdr-safe (cdr c-state-cache)))) ; remove {}pair + containing Lparen.
3285 ((numberp (car c-state-cache))
3286 (setq pair-beg (car c-state-cache)
3287 c-state-cache (cdr c-state-cache))) ; remove this
3288 ; containing Lparen
3289 ((numberp (cadr c-state-cache))
3290 (setq pair-beg (cadr c-state-cache)
3291 c-state-cache (cddr c-state-cache))) ; Remove a paren pair
3292 ; together with enclosed brace pair.
3293 ;; (t nil) ; Ignore an unmated Rparen.
3296 (if (< (point) pps-point)
3297 (setq pps-state (c-sc-parse-partial-sexp
3298 (point) pps-point
3299 nil nil ; TARGETDEPTH, STOPBEFORE
3300 pps-state)))
3302 ;; If the last paren pair we moved out of was actually a brace pair,
3303 ;; insert it into `c-state-cache'.
3304 (when (and pair-beg (eq (char-after pair-beg) ?{))
3305 (if (consp (car-safe c-state-cache))
3306 (setq c-state-cache (cdr c-state-cache)))
3307 (setq c-state-cache (cons (cons pair-beg pos)
3308 c-state-cache)))
3310 (list pos scan-back-pos cons-separated pps-state)))))
3312 (defun c-remove-stale-state-cache-backwards (here)
3313 ;; Strip stale elements of `c-state-cache' by moving backwards through the
3314 ;; buffer, and inform the caller of the scenario detected.
3316 ;; HERE is the position we're setting `c-state-cache' for.
3317 ;; CACHE-POS (a locally bound variable) is just after the latest recorded
3318 ;; position in `c-state-cache' before HERE, or a position at or near
3319 ;; point-min which isn't in a literal.
3321 ;; This function must only be called only when (> `c-state-cache-good-pos'
3322 ;; HERE). Usually the gap between CACHE-POS and HERE is large. It is thus
3323 ;; optimized to eliminate (or minimize) scanning between these two
3324 ;; positions.
3326 ;; Return a three element list (GOOD-POS SCAN-BACK-POS FWD-FLAG), where:
3327 ;; o - GOOD-POS is a "good position", where `c-state-cache' is valid, or
3328 ;; could become so after missing elements are inserted into
3329 ;; `c-state-cache'. This is JUST AFTER an opening or closing
3330 ;; brace/paren/bracket which is already in `c-state-cache' or just before
3331 ;; one otherwise. exceptionally (when there's no such b/p/b handy) the BOL
3332 ;; before `here''s line, or the start of the literal containing it.
3333 ;; o - SCAN-BACK-POS, if non-nil, indicates there may be a brace pair
3334 ;; preceding POS which isn't recorded in `c-state-cache'. It is a position
3335 ;; to scan backwards from.
3336 ;; o - FWD-FLAG, if non-nil, indicates there may be parens/braces between
3337 ;; POS and HERE which aren't recorded in `c-state-cache'.
3339 ;; The comments in this defun use "paren" to mean parenthesis or square
3340 ;; bracket (as contrasted with a brace), and "(" and ")" likewise.
3342 ;; . {..} (..) (..) ( .. { } ) (...) ( .... . ..)
3343 ;; | | | | | |
3344 ;; CP E here D C good
3345 (let ((cache-pos (c-get-cache-scan-pos here)) ; highest position below HERE in cache (or 1)
3346 (pos c-state-cache-good-pos)
3347 pa ren ; positions of "(" and ")"
3348 dropped-cons ; whether the last element dropped from `c-state-cache'
3349 ; was a cons (representing a brace-pair)
3350 good-pos ; see above.
3351 lit ; (START . END) of a literal containing some point.
3352 here-lit-start here-lit-end ; bounds of literal containing `here'
3353 ; or `here' itself.
3354 here- here+ ; start/end of macro around HERE, or HERE
3355 (here-bol (c-point 'bol here))
3356 (too-far-back (max (- here c-state-cache-too-far) (point-min))))
3358 ;; Remove completely irrelevant entries from `c-state-cache'.
3359 (while (and c-state-cache
3360 (>= (setq pa (c-state-cache-top-lparen)) here))
3361 (setq dropped-cons (consp (car c-state-cache)))
3362 (setq c-state-cache (cdr c-state-cache))
3363 (setq pos pa))
3364 ;; At this stage, (>= pos here);
3365 ;; (< (c-state-cache-top-lparen) here) (or is nil).
3367 (cond
3368 ((and (consp (car c-state-cache))
3369 (> (cdar c-state-cache) here))
3370 ;; CASE 1: The top of the cache is a brace pair which now encloses
3371 ;; `here'. As good-pos, return the address. of the "{". Since we've no
3372 ;; knowledge of what's inside these braces, we have no alternative but
3373 ;; to direct the caller to scan the buffer from the opening brace.
3374 (setq pos (caar c-state-cache))
3375 (setcar c-state-cache pos)
3376 (list (1+ pos) pos t)) ; return value. We've just converted a brace pair
3377 ; entry into a { entry, so the caller needs to
3378 ; search for a brace pair before the {.
3380 ;; `here' might be inside a literal. Check for this.
3381 ((progn
3382 (setq lit (c-state-literal-at here)
3383 here-lit-start (or (car lit) here)
3384 here-lit-end (or (cdr lit) here))
3385 ;; Has `here' just "newly entered" a macro?
3386 (save-excursion
3387 (goto-char here-lit-start)
3388 (if (and (c-beginning-of-macro)
3389 (or (null c-state-old-cpp-beg)
3390 (not (= (point) c-state-old-cpp-beg))))
3391 (progn
3392 (setq here- (point))
3393 (c-end-of-macro)
3394 (setq here+ (point)))
3395 (setq here- here-lit-start
3396 here+ here-lit-end)))
3398 ;; `here' might be nested inside any depth of parens (or brackets but
3399 ;; not braces). Scan backwards to find the outermost such opening
3400 ;; paren, if there is one. This will be the scan position to return.
3401 (save-restriction
3402 (narrow-to-region cache-pos (point-max))
3403 (setq pos (c-state-balance-parens-backwards here- here+ pos)))
3404 nil)) ; for the cond
3406 ((< pos here-lit-start)
3407 ;; CASE 2: Address of outermost ( or [ which now encloses `here', but
3408 ;; didn't enclose the (previous) `c-state-cache-good-pos'. If there is
3409 ;; a brace pair preceding this, it will already be in `c-state-cache',
3410 ;; unless there was a brace pair after it, i.e. there'll only be one to
3411 ;; scan for if we've just deleted one.
3412 (list pos (and dropped-cons pos) t)) ; Return value.
3414 ;; `here' isn't enclosed in a (previously unrecorded) bracket/paren.
3415 ;; Further forward scanning isn't needed, but we still need to find a
3416 ;; GOOD-POS. Step out of all enclosing "("s on HERE's line.
3417 ((progn
3418 (save-restriction
3419 (narrow-to-region here-bol (point-max))
3420 (setq pos here-lit-start)
3421 (c-safe (while (setq pa (c-sc-scan-lists pos -1 1))
3422 (setq pos pa)))) ; might signal
3423 nil)) ; for the cond
3425 ((save-restriction
3426 (narrow-to-region too-far-back (point-max))
3427 (setq ren (c-safe (c-sc-scan-lists pos -1 -1))))
3428 ;; CASE 3: After a }/)/] before `here''s BOL.
3429 (list (1+ ren) (and dropped-cons pos) nil)) ; Return value
3431 ((progn (setq good-pos (c-state-lit-beg (c-point 'bopl here-bol)))
3432 (>= cache-pos good-pos))
3433 ;; CASE 3.5: Just after an existing entry in `c-state-cache' on `here''s
3434 ;; line or the previous line.
3435 (list cache-pos nil nil))
3438 ;; CASE 4; Best of a bad job: BOL before `here-bol', or beginning of
3439 ;; literal containing it.
3440 (list good-pos (and dropped-cons good-pos) nil)))))
3443 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3444 ;; Externally visible routines.
3446 (defun c-state-cache-init ()
3447 (setq c-state-cache nil
3448 c-state-cache-good-pos 1
3449 c-state-nonlit-pos-cache nil
3450 c-state-nonlit-pos-cache-limit 1
3451 c-state-semi-nonlit-pos-cache nil
3452 c-state-semi-nonlit-pos-cache-limit 1
3453 c-state-brace-pair-desert nil
3454 c-state-point-min 1
3455 c-state-point-min-lit-type nil
3456 c-state-point-min-lit-start nil
3457 c-state-min-scan-pos 1
3458 c-state-old-cpp-beg nil
3459 c-state-old-cpp-end nil)
3460 (c-state-mark-point-min-literal))
3462 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3463 ;; Debugging routines to dump `c-state-cache' in a "replayable" form.
3464 ;; (defmacro c-sc-de (elt) ; "c-state-cache-dump-element"
3465 ;; `(format ,(concat "(setq " (symbol-name elt) " %s) ") ,elt))
3466 ;; (defmacro c-sc-qde (elt) ; "c-state-cache-quote-dump-element"
3467 ;; `(format ,(concat "(setq " (symbol-name elt) " '%s) ") ,elt))
3468 ;; (defun c-state-dump ()
3469 ;; ;; For debugging.
3470 ;; ;(message
3471 ;; (concat
3472 ;; (c-sc-qde c-state-cache)
3473 ;; (c-sc-de c-state-cache-good-pos)
3474 ;; (c-sc-qde c-state-nonlit-pos-cache)
3475 ;; (c-sc-de c-state-nonlit-pos-cache-limit)
3476 ;; (c-sc-qde c-state-brace-pair-desert)
3477 ;; (c-sc-de c-state-point-min)
3478 ;; (c-sc-de c-state-point-min-lit-type)
3479 ;; (c-sc-de c-state-point-min-lit-start)
3480 ;; (c-sc-de c-state-min-scan-pos)
3481 ;; (c-sc-de c-state-old-cpp-beg)
3482 ;; (c-sc-de c-state-old-cpp-end)))
3483 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3485 (defun c-invalidate-state-cache-1 (here)
3486 ;; Invalidate all info on `c-state-cache' that applies to the buffer at HERE
3487 ;; or higher and set `c-state-cache-good-pos' accordingly. The cache is
3488 ;; left in a consistent state.
3490 ;; This is much like `c-whack-state-after', but it never changes a paren
3491 ;; pair element into an open paren element. Doing that would mean that the
3492 ;; new open paren wouldn't have the required preceding paren pair element.
3494 ;; This function is called from c-before-change.
3496 ;; The caches of non-literals:
3497 ;; Note that we use "<=" for the possibility of the second char of a two-char
3498 ;; comment opener being typed; this would invalidate any cache position at
3499 ;; HERE.
3500 (if (<= here c-state-nonlit-pos-cache-limit)
3501 (setq c-state-nonlit-pos-cache-limit (1- here)))
3502 (c-truncate-semi-nonlit-pos-cache here)
3504 ;; `c-state-cache':
3505 ;; Case 1: if `here' is in a literal containing point-min, everything
3506 ;; becomes (or is already) nil.
3507 (if (or (null c-state-cache-good-pos)
3508 (< here (c-state-get-min-scan-pos)))
3509 (setq c-state-cache nil
3510 c-state-cache-good-pos nil
3511 c-state-min-scan-pos nil)
3513 ;; Truncate `c-state-cache' and set `c-state-cache-good-pos' to a value
3514 ;; below `here'. To maintain its consistency, we may need to insert a new
3515 ;; brace pair.
3516 (let ((here-bol (c-point 'bol here))
3517 too-high-pa ; recorded {/(/[ next above or just below here, or nil.
3518 dropped-cons ; was the last removed element a brace pair?
3520 ;; The easy bit - knock over-the-top bits off `c-state-cache'.
3521 (while (and c-state-cache
3522 (>= (setq pa (c-state-cache-top-paren)) here))
3523 (setq dropped-cons (consp (car c-state-cache))
3524 too-high-pa (c-state-cache-top-lparen)
3525 c-state-cache (cdr c-state-cache)))
3527 ;; Do we need to add in an earlier brace pair, having lopped one off?
3528 (if (and dropped-cons
3529 (<= too-high-pa here))
3530 (c-append-lower-brace-pair-to-state-cache too-high-pa here here-bol))
3531 (setq c-state-cache-good-pos (or (c-state-cache-after-top-paren)
3532 (c-state-get-min-scan-pos)))))
3534 ;; The brace-pair desert marker:
3535 (when (car c-state-brace-pair-desert)
3536 (if (< here (car c-state-brace-pair-desert))
3537 (setq c-state-brace-pair-desert nil)
3538 (if (< here (cdr c-state-brace-pair-desert))
3539 (setcdr c-state-brace-pair-desert here)))))
3541 (defun c-parse-state-1 ()
3542 ;; Find and record all noteworthy parens between some good point earlier in
3543 ;; the file and point. That good point is at least the beginning of the
3544 ;; top-level construct we are in, or the beginning of the preceding
3545 ;; top-level construct if we aren't in one.
3547 ;; The returned value is a list of the noteworthy parens with the last one
3548 ;; first. If an element in the list is an integer, it's the position of an
3549 ;; open paren (of any type) which has not been closed before the point. If
3550 ;; an element is a cons, it gives the position of a closed BRACE paren
3551 ;; pair[*]; the car is the start brace position and the cdr is the position
3552 ;; following the closing brace. Only the last closed brace paren pair
3553 ;; before each open paren and before the point is recorded, and thus the
3554 ;; state never contains two cons elements in succession. When a close brace
3555 ;; has no matching open brace (e.g., the matching brace is outside the
3556 ;; visible region), it is not represented in the returned value.
3558 ;; [*] N.B. The close "brace" might be a mismatching close bracket or paren.
3559 ;; This defun explicitly treats mismatching parens/braces/brackets as
3560 ;; matching. It is the open brace which makes it a "brace" pair.
3562 ;; If POINT is within a macro, open parens and brace pairs within
3563 ;; THIS macro MIGHT be recorded. This depends on whether their
3564 ;; syntactic properties have been suppressed by
3565 ;; `c-neutralize-syntax-in-CPP'. This might need fixing (2008-12-11).
3567 ;; Currently no characters which are given paren syntax with the
3568 ;; syntax-table property are recorded, i.e. angle bracket arglist
3569 ;; parens are never present here. Note that this might change.
3571 ;; BUG: This function doesn't cope entirely well with unbalanced
3572 ;; parens in macros. (2008-12-11: this has probably been resolved
3573 ;; by the function `c-neutralize-syntax-in-CPP'.) E.g. in the
3574 ;; following case the brace before the macro isn't balanced with the
3575 ;; one after it:
3577 ;; {
3578 ;; #define X {
3579 ;; }
3581 ;; Note to maintainers: this function DOES get called with point
3582 ;; within comments and strings, so don't assume it doesn't!
3584 ;; This function might do hidden buffer changes.
3585 (let* ((here (point))
3586 (here-bopl (c-point 'bopl))
3587 strategy ; 'forward, 'backward etc..
3588 ;; Candidate positions to start scanning from:
3589 cache-pos ; highest position below HERE already existing in
3590 ; cache (or 1).
3591 good-pos
3592 start-point ; (when scanning forward) a place below HERE where there
3593 ; are no open parens/braces between it and HERE.
3594 bopl-state
3596 cons-separated
3597 scan-backward-pos scan-forward-p) ; used for 'backward.
3598 ;; If POINT-MIN has changed, adjust the cache
3599 (unless (= (point-min) c-state-point-min)
3600 (c-renarrow-state-cache))
3602 ;; Strategy?
3603 (setq res (c-parse-state-get-strategy here c-state-cache-good-pos)
3604 strategy (car res)
3605 start-point (cadr res))
3607 (when (eq strategy 'BOD)
3608 (setq c-state-cache nil
3609 c-state-cache-good-pos start-point))
3611 ;; SCAN!
3612 (cond
3613 ((memq strategy '(forward back-and-forward BOD))
3614 (setq res (c-remove-stale-state-cache start-point here here-bopl))
3615 (setq cache-pos (car res)
3616 scan-backward-pos (cadr res)
3617 cons-separated (car (cddr res))
3618 bopl-state (cadr (cddr res))) ; will be nil if (< here-bopl
3619 ; start-point)
3620 (if (and scan-backward-pos
3621 (or cons-separated (eq strategy 'forward))) ;scan-backward-pos
3622 (c-append-lower-brace-pair-to-state-cache scan-backward-pos here))
3623 (setq good-pos
3624 (c-append-to-state-cache cache-pos here))
3625 (setq c-state-cache-good-pos
3626 (if (and bopl-state
3627 (< good-pos (- here c-state-cache-too-far)))
3628 (c-state-cache-non-literal-place here-bopl bopl-state)
3629 good-pos)))
3631 ((eq strategy 'backward)
3632 (setq res (c-remove-stale-state-cache-backwards here)
3633 good-pos (car res)
3634 scan-backward-pos (cadr res)
3635 scan-forward-p (car (cddr res)))
3636 (if scan-backward-pos
3637 (c-append-lower-brace-pair-to-state-cache scan-backward-pos here))
3638 (setq c-state-cache-good-pos
3639 (if scan-forward-p
3640 (c-append-to-state-cache good-pos here)
3641 good-pos)))
3643 (t ; (eq strategy 'IN-LIT)
3644 (setq c-state-cache nil
3645 c-state-cache-good-pos nil))))
3647 c-state-cache)
3649 (defun c-invalidate-state-cache (here)
3650 ;; This is a wrapper over `c-invalidate-state-cache-1'.
3652 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3653 ;; of all parens in preprocessor constructs, except for any such construct
3654 ;; containing point. We can then call `c-invalidate-state-cache-1' without
3655 ;; worrying further about macros and template delimiters.
3656 (if (eval-when-compile (memq 'category-properties c-emacs-features))
3657 ;; Emacs
3658 (c-with-<->-as-parens-suppressed
3659 (if (and c-state-old-cpp-beg
3660 (< c-state-old-cpp-beg here))
3661 (c-with-all-but-one-cpps-commented-out
3662 c-state-old-cpp-beg
3663 c-state-old-cpp-end
3664 (c-invalidate-state-cache-1 here))
3665 (c-with-cpps-commented-out
3666 (c-invalidate-state-cache-1 here))))
3667 ;; XEmacs
3668 (c-invalidate-state-cache-1 here)))
3670 (defmacro c-state-maybe-marker (place marker)
3671 ;; If PLACE is non-nil, return a marker marking it, otherwise nil.
3672 ;; We (re)use MARKER.
3673 `(and ,place
3674 (or ,marker (setq ,marker (make-marker)))
3675 (set-marker ,marker ,place)))
3677 (defun c-parse-state ()
3678 ;; This is a wrapper over `c-parse-state-1'. See that function for a
3679 ;; description of the functionality and return value.
3681 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3682 ;; of all parens in preprocessor constructs, except for any such construct
3683 ;; containing point. We can then call `c-parse-state-1' without worrying
3684 ;; further about macros and template delimiters.
3685 (let (here-cpp-beg here-cpp-end)
3686 (save-excursion
3687 (when (c-beginning-of-macro)
3688 (setq here-cpp-beg (point))
3689 (unless
3690 (> (setq here-cpp-end (c-syntactic-end-of-macro))
3691 here-cpp-beg)
3692 (setq here-cpp-beg nil here-cpp-end nil))))
3693 ;; FIXME!!! Put in a `condition-case' here to protect the integrity of the
3694 ;; subsystem.
3695 (prog1
3696 (if (eval-when-compile (memq 'category-properties c-emacs-features))
3697 ;; Emacs
3698 (c-with-<->-as-parens-suppressed
3699 (if (and here-cpp-beg (> here-cpp-end here-cpp-beg))
3700 (c-with-all-but-one-cpps-commented-out
3701 here-cpp-beg here-cpp-end
3702 (c-parse-state-1))
3703 (c-with-cpps-commented-out
3704 (c-parse-state-1))))
3705 ;; XEmacs
3706 (c-parse-state-1))
3707 (setq c-state-old-cpp-beg
3708 (c-state-maybe-marker here-cpp-beg c-state-old-cpp-beg-marker)
3709 c-state-old-cpp-end
3710 (c-state-maybe-marker here-cpp-end c-state-old-cpp-end-marker)))))
3712 ;; Debug tool to catch cache inconsistencies. This is called from
3713 ;; 000tests.el.
3714 (defvar c-debug-parse-state nil)
3715 (unless (fboundp 'c-real-parse-state)
3716 (fset 'c-real-parse-state (symbol-function 'c-parse-state)))
3717 (cc-bytecomp-defun c-real-parse-state)
3719 (defvar c-parse-state-point nil)
3720 (defvar c-parse-state-state nil)
3721 (make-variable-buffer-local 'c-parse-state-state)
3722 (defun c-record-parse-state-state ()
3723 (setq c-parse-state-point (point))
3724 (when (markerp (cdr (assq 'c-state-old-cpp-beg c-parse-state-state)))
3725 (move-marker (cdr (assq 'c-state-old-cpp-beg c-parse-state-state)) nil)
3726 (move-marker (cdr (assq 'c-state-old-cpp-end c-parse-state-state)) nil))
3727 (setq c-parse-state-state
3728 (mapcar
3729 (lambda (arg)
3730 (let ((val (symbol-value arg)))
3731 (cons arg
3732 (cond ((consp val) (copy-tree val))
3733 ((markerp val) (copy-marker val))
3734 (t val)))))
3735 '(c-state-cache
3736 c-state-cache-good-pos
3737 c-state-nonlit-pos-cache
3738 c-state-nonlit-pos-cache-limit
3739 c-state-semi-nonlit-pos-cache
3740 c-state-semi-nonlit-pos-cache-limit
3741 c-state-brace-pair-desert
3742 c-state-point-min
3743 c-state-point-min-lit-type
3744 c-state-point-min-lit-start
3745 c-state-min-scan-pos
3746 c-state-old-cpp-beg
3747 c-state-old-cpp-end
3748 c-parse-state-point))))
3749 (defun c-replay-parse-state-state ()
3750 (message "%s"
3751 (concat "(setq "
3752 (mapconcat
3753 (lambda (arg)
3754 (format "%s %s%s" (car arg)
3755 (if (atom (cdr arg)) "" "'")
3756 (if (markerp (cdr arg))
3757 (format "(copy-marker %s)" (marker-position (cdr arg)))
3758 (cdr arg))))
3759 c-parse-state-state " ")
3760 ")")))
3762 (defun c-debug-parse-state-double-cons (state)
3763 (let (state-car conses-not-ok)
3764 (while state
3765 (setq state-car (car state)
3766 state (cdr state))
3767 (if (and (consp state-car)
3768 (consp (car state)))
3769 (setq conses-not-ok t)))
3770 conses-not-ok))
3772 (defun c-debug-parse-state ()
3773 (let ((here (point)) (min-point (point-min)) (res1 (c-real-parse-state)) res2)
3774 (let ((c-state-cache nil)
3775 (c-state-cache-good-pos 1)
3776 (c-state-nonlit-pos-cache nil)
3777 (c-state-nonlit-pos-cache-limit 1)
3778 (c-state-brace-pair-desert nil)
3779 (c-state-point-min 1)
3780 (c-state-point-min-lit-type nil)
3781 (c-state-point-min-lit-start nil)
3782 (c-state-min-scan-pos 1)
3783 (c-state-old-cpp-beg nil)
3784 (c-state-old-cpp-end nil))
3785 (setq res2 (c-real-parse-state)))
3786 (unless (equal res1 res2)
3787 ;; The cache can actually go further back due to the ad-hoc way
3788 ;; the first paren is found, so try to whack off a bit of its
3789 ;; start before complaining.
3790 ;; (save-excursion
3791 ;; (goto-char (or (c-least-enclosing-brace res2) (point)))
3792 ;; (c-beginning-of-defun-1)
3793 ;; (while (not (or (bobp) (eq (char-after) ?{)))
3794 ;; (c-beginning-of-defun-1))
3795 ;; (unless (equal (c-whack-state-before (point) res1) res2)
3796 ;; (message (concat "c-parse-state inconsistency at %s: "
3797 ;; "using cache: %s, from scratch: %s")
3798 ;; here res1 res2)))
3799 (message (concat "c-parse-state inconsistency at %s: "
3800 "using cache: %s, from scratch: %s. POINT-MIN: %s")
3801 here res1 res2 min-point)
3802 (message "Old state:")
3803 (c-replay-parse-state-state))
3805 (when (c-debug-parse-state-double-cons res1)
3806 (message "c-parse-state INVALIDITY at %s: %s"
3807 here res1)
3808 (message "Old state:")
3809 (c-replay-parse-state-state))
3811 (c-record-parse-state-state)
3812 res2 ; res1 correct a cascading series of errors ASAP
3815 (defun c-toggle-parse-state-debug (&optional arg)
3816 (interactive "P")
3817 (setq c-debug-parse-state (c-calculate-state arg c-debug-parse-state))
3818 (fset 'c-parse-state (symbol-function (if c-debug-parse-state
3819 'c-debug-parse-state
3820 'c-real-parse-state)))
3821 (c-keep-region-active)
3822 (message "c-debug-parse-state %sabled"
3823 (if c-debug-parse-state "en" "dis")))
3824 (when c-debug-parse-state
3825 (c-toggle-parse-state-debug 1))
3828 (defun c-whack-state-before (bufpos paren-state)
3829 ;; Whack off any state information from PAREN-STATE which lies
3830 ;; before BUFPOS. Not destructive on PAREN-STATE.
3831 (let* ((newstate (list nil))
3832 (ptr newstate)
3833 car)
3834 (while paren-state
3835 (setq car (car paren-state)
3836 paren-state (cdr paren-state))
3837 (if (< (if (consp car) (car car) car) bufpos)
3838 (setq paren-state nil)
3839 (setcdr ptr (list car))
3840 (setq ptr (cdr ptr))))
3841 (cdr newstate)))
3843 (defun c-whack-state-after (bufpos paren-state)
3844 ;; Whack off any state information from PAREN-STATE which lies at or
3845 ;; after BUFPOS. Not destructive on PAREN-STATE.
3846 (catch 'done
3847 (while paren-state
3848 (let ((car (car paren-state)))
3849 (if (consp car)
3850 ;; just check the car, because in a balanced brace
3851 ;; expression, it must be impossible for the corresponding
3852 ;; close brace to be before point, but the open brace to
3853 ;; be after.
3854 (if (<= bufpos (car car))
3855 nil ; whack it off
3856 (if (< bufpos (cdr car))
3857 ;; its possible that the open brace is before
3858 ;; bufpos, but the close brace is after. In that
3859 ;; case, convert this to a non-cons element. The
3860 ;; rest of the state is before bufpos, so we're
3861 ;; done.
3862 (throw 'done (cons (car car) (cdr paren-state)))
3863 ;; we know that both the open and close braces are
3864 ;; before bufpos, so we also know that everything else
3865 ;; on state is before bufpos.
3866 (throw 'done paren-state)))
3867 (if (<= bufpos car)
3868 nil ; whack it off
3869 ;; it's before bufpos, so everything else should too.
3870 (throw 'done paren-state)))
3871 (setq paren-state (cdr paren-state)))
3872 nil)))
3874 (defun c-most-enclosing-brace (paren-state &optional bufpos)
3875 ;; Return the bufpos of the innermost enclosing open paren before
3876 ;; bufpos, or nil if none was found.
3877 (let (enclosingp)
3878 (or bufpos (setq bufpos 134217727))
3879 (while paren-state
3880 (setq enclosingp (car paren-state)
3881 paren-state (cdr paren-state))
3882 (if (or (consp enclosingp)
3883 (>= enclosingp bufpos))
3884 (setq enclosingp nil)
3885 (setq paren-state nil)))
3886 enclosingp))
3888 (defun c-least-enclosing-brace (paren-state)
3889 ;; Return the bufpos of the outermost enclosing open paren, or nil
3890 ;; if none was found.
3891 (let (pos elem)
3892 (while paren-state
3893 (setq elem (car paren-state)
3894 paren-state (cdr paren-state))
3895 (if (integerp elem)
3896 (setq pos elem)))
3897 pos))
3899 (defun c-safe-position (bufpos paren-state)
3900 ;; Return the closest "safe" position recorded on PAREN-STATE that
3901 ;; is higher up than BUFPOS. Return nil if PAREN-STATE doesn't
3902 ;; contain any. Return nil if BUFPOS is nil, which is useful to
3903 ;; find the closest limit before a given limit that might be nil.
3905 ;; A "safe" position is a position at or after a recorded open
3906 ;; paren, or after a recorded close paren. The returned position is
3907 ;; thus either the first position after a close brace, or the first
3908 ;; position after an enclosing paren, or at the enclosing paren in
3909 ;; case BUFPOS is immediately after it.
3910 (when bufpos
3911 (let (elem)
3912 (catch 'done
3913 (while paren-state
3914 (setq elem (car paren-state))
3915 (if (consp elem)
3916 (cond ((< (cdr elem) bufpos)
3917 (throw 'done (cdr elem)))
3918 ((< (car elem) bufpos)
3919 ;; See below.
3920 (throw 'done (min (1+ (car elem)) bufpos))))
3921 (if (< elem bufpos)
3922 ;; elem is the position at and not after the opening paren, so
3923 ;; we can go forward one more step unless it's equal to
3924 ;; bufpos. This is useful in some cases avoid an extra paren
3925 ;; level between the safe position and bufpos.
3926 (throw 'done (min (1+ elem) bufpos))))
3927 (setq paren-state (cdr paren-state)))))))
3929 (defun c-beginning-of-syntax ()
3930 ;; This is used for `font-lock-beginning-of-syntax-function'. It
3931 ;; goes to the closest previous point that is known to be outside
3932 ;; any string literal or comment. `c-state-cache' is used if it has
3933 ;; a position in the vicinity.
3934 (let* ((paren-state c-state-cache)
3935 elem
3937 (pos (catch 'done
3938 ;; Note: Similar code in `c-safe-position'. The
3939 ;; difference is that we accept a safe position at
3940 ;; the point and don't bother to go forward past open
3941 ;; parens.
3942 (while paren-state
3943 (setq elem (car paren-state))
3944 (if (consp elem)
3945 (cond ((<= (cdr elem) (point))
3946 (throw 'done (cdr elem)))
3947 ((<= (car elem) (point))
3948 (throw 'done (car elem))))
3949 (if (<= elem (point))
3950 (throw 'done elem)))
3951 (setq paren-state (cdr paren-state)))
3952 (point-min))))
3954 (if (> pos (- (point) 4000))
3955 (goto-char pos)
3956 ;; The position is far back. Try `c-beginning-of-defun-1'
3957 ;; (although we can't be entirely sure it will go to a position
3958 ;; outside a comment or string in current emacsen). FIXME:
3959 ;; Consult `syntax-ppss' here.
3960 (c-beginning-of-defun-1)
3961 (if (< (point) pos)
3962 (goto-char pos)))))
3965 ;; Tools for scanning identifiers and other tokens.
3967 (defun c-on-identifier ()
3968 "Return non-nil if the point is on or directly after an identifier.
3969 Keywords are recognized and not considered identifiers. If an
3970 identifier is detected, the returned value is its starting position.
3971 If an identifier ends at the point and another begins at it \(can only
3972 happen in Pike) then the point for the preceding one is returned.
3974 Note that this function might do hidden buffer changes. See the
3975 comment at the start of cc-engine.el for more info."
3977 ;; FIXME: Shouldn't this function handle "operator" in C++?
3979 (save-excursion
3980 (skip-syntax-backward "w_")
3984 ;; Check for a normal (non-keyword) identifier.
3985 (and (looking-at c-symbol-start)
3986 (not (looking-at c-keywords-regexp))
3987 (point))
3989 (when (c-major-mode-is 'pike-mode)
3990 ;; Handle the `<operator> syntax in Pike.
3991 (let ((pos (point)))
3992 (skip-chars-backward "-!%&*+/<=>^|~[]()")
3993 (and (if (< (skip-chars-backward "`") 0)
3995 (goto-char pos)
3996 (eq (char-after) ?\`))
3997 (looking-at c-symbol-key)
3998 (>= (match-end 0) pos)
3999 (point))))
4001 ;; Handle the "operator +" syntax in C++.
4002 (when (and c-overloadable-operators-regexp
4003 (= (c-backward-token-2 0) 0))
4005 (cond ((and (looking-at c-overloadable-operators-regexp)
4006 (or (not c-opt-op-identifier-prefix)
4007 (and (= (c-backward-token-2 1) 0)
4008 (looking-at c-opt-op-identifier-prefix))))
4009 (point))
4011 ((save-excursion
4012 (and c-opt-op-identifier-prefix
4013 (looking-at c-opt-op-identifier-prefix)
4014 (= (c-forward-token-2 1) 0)
4015 (looking-at c-overloadable-operators-regexp)))
4016 (point))))
4020 (defsubst c-simple-skip-symbol-backward ()
4021 ;; If the point is at the end of a symbol then skip backward to the
4022 ;; beginning of it. Don't move otherwise. Return non-nil if point
4023 ;; moved.
4025 ;; This function might do hidden buffer changes.
4026 (or (< (skip-syntax-backward "w_") 0)
4027 (and (c-major-mode-is 'pike-mode)
4028 ;; Handle the `<operator> syntax in Pike.
4029 (let ((pos (point)))
4030 (if (and (< (skip-chars-backward "-!%&*+/<=>^|~[]()") 0)
4031 (< (skip-chars-backward "`") 0)
4032 (looking-at c-symbol-key)
4033 (>= (match-end 0) pos))
4035 (goto-char pos)
4036 nil)))))
4038 (defun c-beginning-of-current-token (&optional back-limit)
4039 ;; Move to the beginning of the current token. Do not move if not
4040 ;; in the middle of one. BACK-LIMIT may be used to bound the
4041 ;; backward search; if given it's assumed to be at the boundary
4042 ;; between two tokens. Return non-nil if the point is moved, nil
4043 ;; otherwise.
4045 ;; This function might do hidden buffer changes.
4046 (let ((start (point)))
4047 (if (looking-at "\\w\\|\\s_")
4048 (skip-syntax-backward "w_" back-limit)
4049 (when (< (skip-syntax-backward ".()" back-limit) 0)
4050 (while (let ((pos (or (and (looking-at c-nonsymbol-token-regexp)
4051 (match-end 0))
4052 ;; `c-nonsymbol-token-regexp' should always match
4053 ;; since we've skipped backward over punctuation
4054 ;; or paren syntax, but consume one char in case
4055 ;; it doesn't so that we don't leave point before
4056 ;; some earlier incorrect token.
4057 (1+ (point)))))
4058 (if (<= pos start)
4059 (goto-char pos))))))
4060 (< (point) start)))
4062 (defun c-end-of-current-token (&optional back-limit)
4063 ;; Move to the end of the current token. Do not move if not in the
4064 ;; middle of one. BACK-LIMIT may be used to bound the backward
4065 ;; search; if given it's assumed to be at the boundary between two
4066 ;; tokens. Return non-nil if the point is moved, nil otherwise.
4068 ;; This function might do hidden buffer changes.
4069 (let ((start (point)))
4070 (cond ((< (skip-syntax-backward "w_" (1- start)) 0)
4071 (skip-syntax-forward "w_"))
4072 ((< (skip-syntax-backward ".()" back-limit) 0)
4073 (while (progn
4074 (if (looking-at c-nonsymbol-token-regexp)
4075 (goto-char (match-end 0))
4076 ;; `c-nonsymbol-token-regexp' should always match since
4077 ;; we've skipped backward over punctuation or paren
4078 ;; syntax, but move forward in case it doesn't so that
4079 ;; we don't leave point earlier than we started with.
4080 (forward-char))
4081 (< (point) start)))))
4082 (> (point) start)))
4084 (defconst c-jump-syntax-balanced
4085 (if (memq 'gen-string-delim c-emacs-features)
4086 "\\w\\|\\s_\\|\\s(\\|\\s)\\|\\s\"\\|\\s|"
4087 "\\w\\|\\s_\\|\\s(\\|\\s)\\|\\s\""))
4089 (defconst c-jump-syntax-unbalanced
4090 (if (memq 'gen-string-delim c-emacs-features)
4091 "\\w\\|\\s_\\|\\s\"\\|\\s|"
4092 "\\w\\|\\s_\\|\\s\""))
4094 (defun c-forward-token-2 (&optional count balanced limit)
4095 "Move forward by tokens.
4096 A token is defined as all symbols and identifiers which aren't
4097 syntactic whitespace \(note that multicharacter tokens like \"==\" are
4098 treated properly). Point is always either left at the beginning of a
4099 token or not moved at all. COUNT specifies the number of tokens to
4100 move; a negative COUNT moves in the opposite direction. A COUNT of 0
4101 moves to the next token beginning only if not already at one. If
4102 BALANCED is true, move over balanced parens, otherwise move into them.
4103 Also, if BALANCED is true, never move out of an enclosing paren.
4105 LIMIT sets the limit for the movement and defaults to the point limit.
4106 The case when LIMIT is set in the middle of a token, comment or macro
4107 is handled correctly, i.e. the point won't be left there.
4109 Return the number of tokens left to move \(positive or negative). If
4110 BALANCED is true, a move over a balanced paren counts as one. Note
4111 that if COUNT is 0 and no appropriate token beginning is found, 1 will
4112 be returned. Thus, a return value of 0 guarantees that point is at
4113 the requested position and a return value less \(without signs) than
4114 COUNT guarantees that point is at the beginning of some token.
4116 Note that this function might do hidden buffer changes. See the
4117 comment at the start of cc-engine.el for more info."
4119 (or count (setq count 1))
4120 (if (< count 0)
4121 (- (c-backward-token-2 (- count) balanced limit))
4123 (let ((jump-syntax (if balanced
4124 c-jump-syntax-balanced
4125 c-jump-syntax-unbalanced))
4126 (last (point))
4127 (prev (point)))
4129 (if (zerop count)
4130 ;; If count is zero we should jump if in the middle of a token.
4131 (c-end-of-current-token))
4133 (save-restriction
4134 (if limit (narrow-to-region (point-min) limit))
4135 (if (/= (point)
4136 (progn (c-forward-syntactic-ws) (point)))
4137 ;; Skip whitespace. Count this as a move if we did in
4138 ;; fact move.
4139 (setq count (max (1- count) 0)))
4141 (if (eobp)
4142 ;; Moved out of bounds. Make sure the returned count isn't zero.
4143 (progn
4144 (if (zerop count) (setq count 1))
4145 (goto-char last))
4147 ;; Use `condition-case' to avoid having the limit tests
4148 ;; inside the loop.
4149 (condition-case nil
4150 (while (and
4151 (> count 0)
4152 (progn
4153 (setq last (point))
4154 (cond ((looking-at jump-syntax)
4155 (goto-char (scan-sexps (point) 1))
4157 ((looking-at c-nonsymbol-token-regexp)
4158 (goto-char (match-end 0))
4160 ;; `c-nonsymbol-token-regexp' above should always
4161 ;; match if there are correct tokens. Try to
4162 ;; widen to see if the limit was set in the
4163 ;; middle of one, else fall back to treating
4164 ;; the offending thing as a one character token.
4165 ((and limit
4166 (save-restriction
4167 (widen)
4168 (looking-at c-nonsymbol-token-regexp)))
4169 nil)
4171 (forward-char)
4172 t))))
4173 (c-forward-syntactic-ws)
4174 (setq prev last
4175 count (1- count)))
4176 (error (goto-char last)))
4178 (when (eobp)
4179 (goto-char prev)
4180 (setq count (1+ count)))))
4182 count)))
4184 (defun c-backward-token-2 (&optional count balanced limit)
4185 "Move backward by tokens.
4186 See `c-forward-token-2' for details."
4188 (or count (setq count 1))
4189 (if (< count 0)
4190 (- (c-forward-token-2 (- count) balanced limit))
4192 (or limit (setq limit (point-min)))
4193 (let ((jump-syntax (if balanced
4194 c-jump-syntax-balanced
4195 c-jump-syntax-unbalanced))
4196 (last (point)))
4198 (if (zerop count)
4199 ;; The count is zero so try to skip to the beginning of the
4200 ;; current token.
4201 (if (> (point)
4202 (progn (c-beginning-of-current-token) (point)))
4203 (if (< (point) limit)
4204 ;; The limit is inside the same token, so return 1.
4205 (setq count 1))
4207 ;; We're not in the middle of a token. If there's
4208 ;; whitespace after the point then we must move backward,
4209 ;; so set count to 1 in that case.
4210 (and (looking-at c-syntactic-ws-start)
4211 ;; If we're looking at a '#' that might start a cpp
4212 ;; directive then we have to do a more elaborate check.
4213 (or (/= (char-after) ?#)
4214 (not c-opt-cpp-prefix)
4215 (save-excursion
4216 (and (= (point)
4217 (progn (beginning-of-line)
4218 (looking-at "[ \t]*")
4219 (match-end 0)))
4220 (or (bobp)
4221 (progn (backward-char)
4222 (not (eq (char-before) ?\\)))))))
4223 (setq count 1))))
4225 ;; Use `condition-case' to avoid having to check for buffer
4226 ;; limits in `backward-char', `scan-sexps' and `goto-char' below.
4227 (condition-case nil
4228 (while (and
4229 (> count 0)
4230 (progn
4231 (c-backward-syntactic-ws)
4232 (backward-char)
4233 (if (looking-at jump-syntax)
4234 (goto-char (scan-sexps (1+ (point)) -1))
4235 ;; This can be very inefficient if there's a long
4236 ;; sequence of operator tokens without any separation.
4237 ;; That doesn't happen in practice, anyway.
4238 (c-beginning-of-current-token))
4239 (>= (point) limit)))
4240 (setq last (point)
4241 count (1- count)))
4242 (error (goto-char last)))
4244 (if (< (point) limit)
4245 (goto-char last))
4247 count)))
4249 (defun c-forward-token-1 (&optional count balanced limit)
4250 "Like `c-forward-token-2' but doesn't treat multicharacter operator
4251 tokens like \"==\" as single tokens, i.e. all sequences of symbol
4252 characters are jumped over character by character. This function is
4253 for compatibility only; it's only a wrapper over `c-forward-token-2'."
4254 (let ((c-nonsymbol-token-regexp "\\s."))
4255 (c-forward-token-2 count balanced limit)))
4257 (defun c-backward-token-1 (&optional count balanced limit)
4258 "Like `c-backward-token-2' but doesn't treat multicharacter operator
4259 tokens like \"==\" as single tokens, i.e. all sequences of symbol
4260 characters are jumped over character by character. This function is
4261 for compatibility only; it's only a wrapper over `c-backward-token-2'."
4262 (let ((c-nonsymbol-token-regexp "\\s."))
4263 (c-backward-token-2 count balanced limit)))
4266 ;; Tools for doing searches restricted to syntactically relevant text.
4268 (defun c-syntactic-re-search-forward (regexp &optional bound noerror
4269 paren-level not-inside-token
4270 lookbehind-submatch)
4271 "Like `re-search-forward', but only report matches that are found
4272 in syntactically significant text. I.e. matches in comments, macros
4273 or string literals are ignored. The start point is assumed to be
4274 outside any comment, macro or string literal, or else the content of
4275 that region is taken as syntactically significant text.
4277 If PAREN-LEVEL is non-nil, an additional restriction is added to
4278 ignore matches in nested paren sexps. The search will also not go
4279 outside the current list sexp, which has the effect that if the point
4280 should be moved to BOUND when no match is found \(i.e. NOERROR is
4281 neither nil nor t), then it will be at the closing paren if the end of
4282 the current list sexp is encountered first.
4284 If NOT-INSIDE-TOKEN is non-nil, matches in the middle of tokens are
4285 ignored. Things like multicharacter operators and special symbols
4286 \(e.g. \"`()\" in Pike) are handled but currently not floating point
4287 constants.
4289 If LOOKBEHIND-SUBMATCH is non-nil, it's taken as a number of a
4290 subexpression in REGEXP. The end of that submatch is used as the
4291 position to check for syntactic significance. If LOOKBEHIND-SUBMATCH
4292 isn't used or if that subexpression didn't match then the start
4293 position of the whole match is used instead. The \"look behind\"
4294 subexpression is never tested before the starting position, so it
4295 might be a good idea to include \\=\\= as a match alternative in it.
4297 Optimization note: Matches might be missed if the \"look behind\"
4298 subexpression can match the end of nonwhite syntactic whitespace,
4299 i.e. the end of comments or cpp directives. This since the function
4300 skips over such things before resuming the search. It's on the other
4301 hand not safe to assume that the \"look behind\" subexpression never
4302 matches syntactic whitespace.
4304 Bug: Unbalanced parens inside cpp directives are currently not handled
4305 correctly \(i.e. they don't get ignored as they should) when
4306 PAREN-LEVEL is set.
4308 Note that this function might do hidden buffer changes. See the
4309 comment at the start of cc-engine.el for more info."
4311 (or bound (setq bound (point-max)))
4312 (if paren-level (setq paren-level -1))
4314 ;;(message "c-syntactic-re-search-forward %s %s %S" (point) bound regexp)
4316 (let ((start (point))
4318 ;; Start position for the last search.
4319 search-pos
4320 ;; The `parse-partial-sexp' state between the start position
4321 ;; and the point.
4322 state
4323 ;; The current position after the last state update. The next
4324 ;; `parse-partial-sexp' continues from here.
4325 (state-pos (point))
4326 ;; The position at which to check the state and the state
4327 ;; there. This is separate from `state-pos' since we might
4328 ;; need to back up before doing the next search round.
4329 check-pos check-state
4330 ;; Last position known to end a token.
4331 (last-token-end-pos (point-min))
4332 ;; Set when a valid match is found.
4333 found)
4335 (condition-case err
4336 (while
4337 (and
4338 (progn
4339 (setq search-pos (point))
4340 (if (re-search-forward regexp bound noerror)
4342 ;; Without the following, when PAREN-LEVEL it non-nil, and
4343 ;; NOERROR is not nil or t, and the very first search above
4344 ;; has just failed, point would end up at BOUND rather than
4345 ;; just before the next close paren.
4346 (when (and (eq search-pos start)
4347 paren-level
4348 (not (memq noerror '(nil t))))
4349 (setq state (parse-partial-sexp start bound -1))
4350 (if (eq (car state) -1)
4351 (setq bound (1- (point)))))
4352 nil))
4354 (progn
4355 (setq state (parse-partial-sexp
4356 state-pos (match-beginning 0) paren-level nil state)
4357 state-pos (point))
4358 (if (setq check-pos (and lookbehind-submatch
4359 (or (not paren-level)
4360 (>= (car state) 0))
4361 (match-end lookbehind-submatch)))
4362 (setq check-state (parse-partial-sexp
4363 state-pos check-pos paren-level nil state))
4364 (setq check-pos state-pos
4365 check-state state))
4367 ;; NOTE: If we got a look behind subexpression and get
4368 ;; an insignificant match in something that isn't
4369 ;; syntactic whitespace (i.e. strings or in nested
4370 ;; parentheses), then we can never skip more than a
4371 ;; single character from the match start position
4372 ;; (i.e. `state-pos' here) before continuing the
4373 ;; search. That since the look behind subexpression
4374 ;; might match the end of the insignificant region in
4375 ;; the next search.
4377 (cond
4378 ((elt check-state 7)
4379 ;; Match inside a line comment. Skip to eol. Use
4380 ;; `re-search-forward' instead of `skip-chars-forward' to get
4381 ;; the right bound behavior.
4382 (re-search-forward "[\n\r]" bound noerror))
4384 ((elt check-state 4)
4385 ;; Match inside a block comment. Skip to the '*/'.
4386 (search-forward "*/" bound noerror))
4388 ((and (not (elt check-state 5))
4389 (eq (char-before check-pos) ?/)
4390 (not (c-get-char-property (1- check-pos) 'syntax-table))
4391 (memq (char-after check-pos) '(?/ ?*)))
4392 ;; Match in the middle of the opener of a block or line
4393 ;; comment.
4394 (if (= (char-after check-pos) ?/)
4395 (re-search-forward "[\n\r]" bound noerror)
4396 (search-forward "*/" bound noerror)))
4398 ;; The last `parse-partial-sexp' above might have
4399 ;; stopped short of the real check position if the end
4400 ;; of the current sexp was encountered in paren-level
4401 ;; mode. The checks above are always false in that
4402 ;; case, and since they can do better skipping in
4403 ;; lookbehind-submatch mode, we do them before
4404 ;; checking the paren level.
4406 ((and paren-level
4407 (/= (setq tmp (car check-state)) 0))
4408 ;; Check the paren level first since we're short of the
4409 ;; syntactic checking position if the end of the
4410 ;; current sexp was encountered by `parse-partial-sexp'.
4411 (if (> tmp 0)
4413 ;; Inside a nested paren sexp.
4414 (if lookbehind-submatch
4415 ;; See the NOTE above.
4416 (progn (goto-char state-pos) t)
4417 ;; Skip out of the paren quickly.
4418 (setq state (parse-partial-sexp state-pos bound 0 nil state)
4419 state-pos (point)))
4421 ;; Have exited the current paren sexp.
4422 (if noerror
4423 (progn
4424 ;; The last `parse-partial-sexp' call above
4425 ;; has left us just after the closing paren
4426 ;; in this case, so we can modify the bound
4427 ;; to leave the point at the right position
4428 ;; upon return.
4429 (setq bound (1- (point)))
4430 nil)
4431 (signal 'search-failed (list regexp)))))
4433 ((setq tmp (elt check-state 3))
4434 ;; Match inside a string.
4435 (if (or lookbehind-submatch
4436 (not (integerp tmp)))
4437 ;; See the NOTE above.
4438 (progn (goto-char state-pos) t)
4439 ;; Skip to the end of the string before continuing.
4440 (let ((ender (make-string 1 tmp)) (continue t))
4441 (while (if (search-forward ender bound noerror)
4442 (progn
4443 (setq state (parse-partial-sexp
4444 state-pos (point) nil nil state)
4445 state-pos (point))
4446 (elt state 3))
4447 (setq continue nil)))
4448 continue)))
4450 ((save-excursion
4451 (save-match-data
4452 (c-beginning-of-macro start)))
4453 ;; Match inside a macro. Skip to the end of it.
4454 (c-end-of-macro)
4455 (cond ((<= (point) bound) t)
4456 (noerror nil)
4457 (t (signal 'search-failed (list regexp)))))
4459 ((and not-inside-token
4460 (or (< check-pos last-token-end-pos)
4461 (< check-pos
4462 (save-excursion
4463 (goto-char check-pos)
4464 (save-match-data
4465 (c-end-of-current-token last-token-end-pos))
4466 (setq last-token-end-pos (point))))))
4467 ;; Inside a token.
4468 (if lookbehind-submatch
4469 ;; See the NOTE above.
4470 (goto-char state-pos)
4471 (goto-char (min last-token-end-pos bound))))
4474 ;; A real match.
4475 (setq found t)
4476 nil)))
4478 ;; Should loop to search again, but take care to avoid
4479 ;; looping on the same spot.
4480 (or (/= search-pos (point))
4481 (if (= (point) bound)
4482 (if noerror
4484 (signal 'search-failed (list regexp)))
4485 (forward-char)
4486 t))))
4488 (error
4489 (goto-char start)
4490 (signal (car err) (cdr err))))
4492 ;;(message "c-syntactic-re-search-forward done %s" (or (match-end 0) (point)))
4494 (if found
4495 (progn
4496 (goto-char (match-end 0))
4497 (match-end 0))
4499 ;; Search failed. Set point as appropriate.
4500 (if (eq noerror t)
4501 (goto-char start)
4502 (goto-char bound))
4503 nil)))
4505 (defvar safe-pos-list) ; bound in c-syntactic-skip-backward
4507 (defsubst c-ssb-lit-begin ()
4508 ;; Return the start of the literal point is in, or nil.
4509 ;; We read and write the variables `safe-pos', `safe-pos-list', `state'
4510 ;; bound in the caller.
4512 ;; Use `parse-partial-sexp' from a safe position down to the point to check
4513 ;; if it's outside comments and strings.
4514 (save-excursion
4515 (let ((pos (point)) safe-pos state)
4516 ;; Pick a safe position as close to the point as possible.
4518 ;; FIXME: Consult `syntax-ppss' here if our cache doesn't give a good
4519 ;; position.
4521 (while (and safe-pos-list
4522 (> (car safe-pos-list) (point)))
4523 (setq safe-pos-list (cdr safe-pos-list)))
4524 (unless (setq safe-pos (car-safe safe-pos-list))
4525 (setq safe-pos (max (or (c-safe-position
4526 (point) (c-parse-state))
4528 (point-min))
4529 safe-pos-list (list safe-pos)))
4531 ;; Cache positions along the way to use if we have to back up more. We
4532 ;; cache every closing paren on the same level. If the paren cache is
4533 ;; relevant in this region then we're typically already on the same
4534 ;; level as the target position. Note that we might cache positions
4535 ;; after opening parens in case safe-pos is in a nested list. That's
4536 ;; both uncommon and harmless.
4537 (while (progn
4538 (setq state (parse-partial-sexp
4539 safe-pos pos 0))
4540 (< (point) pos))
4541 (setq safe-pos (point)
4542 safe-pos-list (cons safe-pos safe-pos-list)))
4544 ;; If the state contains the start of the containing sexp we cache that
4545 ;; position too, so that parse-partial-sexp in the next run has a bigger
4546 ;; chance of starting at the same level as the target position and thus
4547 ;; will get more good safe positions into the list.
4548 (if (elt state 1)
4549 (setq safe-pos (1+ (elt state 1))
4550 safe-pos-list (cons safe-pos safe-pos-list)))
4552 (if (or (elt state 3) (elt state 4))
4553 ;; Inside string or comment. Continue search at the
4554 ;; beginning of it.
4555 (elt state 8)))))
4557 (defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4558 "Like `skip-chars-backward' but only look at syntactically relevant chars,
4559 i.e. don't stop at positions inside syntactic whitespace or string
4560 literals. Preprocessor directives are also ignored, with the exception
4561 of the one that the point starts within, if any. If LIMIT is given,
4562 it's assumed to be at a syntactically relevant position.
4564 If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4565 sexps, and the search will also not go outside the current paren sexp.
4566 However, if LIMIT or the buffer limit is reached inside a nested paren
4567 then the point will be left at the limit.
4569 Non-nil is returned if the point moved, nil otherwise.
4571 Note that this function might do hidden buffer changes. See the
4572 comment at the start of cc-engine.el for more info."
4574 (c-self-bind-state-cache
4575 (let ((start (point))
4576 state-2
4577 ;; A list of syntactically relevant positions in descending
4578 ;; order. It's used to avoid scanning repeatedly over
4579 ;; potentially large regions with `parse-partial-sexp' to verify
4580 ;; each position. Used in `c-ssb-lit-begin'
4581 safe-pos-list
4582 ;; The result from `c-beginning-of-macro' at the start position or the
4583 ;; start position itself if it isn't within a macro. Evaluated on
4584 ;; demand.
4585 start-macro-beg
4586 ;; The earliest position after the current one with the same paren
4587 ;; level. Used only when `paren-level' is set.
4588 lit-beg
4589 (paren-level-pos (point)))
4591 (while
4592 (progn
4593 ;; The next loop "tries" to find the end point each time round,
4594 ;; loops when it hasn't succeeded.
4595 (while
4596 (and
4597 (let ((pos (point)))
4598 (while (and
4599 (< (skip-chars-backward skip-chars limit) 0)
4600 ;; Don't stop inside a literal.
4601 (when (setq lit-beg (c-ssb-lit-begin))
4602 (goto-char lit-beg)
4603 t)))
4604 (< (point) pos))
4606 (let ((pos (point)) state-2 pps-end-pos)
4608 (cond
4609 ((and paren-level
4610 (save-excursion
4611 (setq state-2 (parse-partial-sexp
4612 pos paren-level-pos -1)
4613 pps-end-pos (point))
4614 (/= (car state-2) 0)))
4615 ;; Not at the right level.
4617 (if (and (< (car state-2) 0)
4618 ;; We stop above if we go out of a paren.
4619 ;; Now check whether it precedes or is
4620 ;; nested in the starting sexp.
4621 (save-excursion
4622 (setq state-2
4623 (parse-partial-sexp
4624 pps-end-pos paren-level-pos
4625 nil nil state-2))
4626 (< (car state-2) 0)))
4628 ;; We've stopped short of the starting position
4629 ;; so the hit was inside a nested list. Go up
4630 ;; until we are at the right level.
4631 (condition-case nil
4632 (progn
4633 (goto-char (scan-lists pos -1
4634 (- (car state-2))))
4635 (setq paren-level-pos (point))
4636 (if (and limit (>= limit paren-level-pos))
4637 (progn
4638 (goto-char limit)
4639 nil)
4641 (error
4642 (goto-char (or limit (point-min)))
4643 nil))
4645 ;; The hit was outside the list at the start
4646 ;; position. Go to the start of the list and exit.
4647 (goto-char (1+ (elt state-2 1)))
4648 nil))
4650 ((c-beginning-of-macro limit)
4651 ;; Inside a macro.
4652 (if (< (point)
4653 (or start-macro-beg
4654 (setq start-macro-beg
4655 (save-excursion
4656 (goto-char start)
4657 (c-beginning-of-macro limit)
4658 (point)))))
4661 ;; It's inside the same macro we started in so it's
4662 ;; a relevant match.
4663 (goto-char pos)
4664 nil))))))
4666 (> (point)
4667 (progn
4668 ;; Skip syntactic ws afterwards so that we don't stop at the
4669 ;; end of a comment if `skip-chars' is something like "^/".
4670 (c-backward-syntactic-ws)
4671 (point)))))
4673 ;; We might want to extend this with more useful return values in
4674 ;; the future.
4675 (/= (point) start))))
4677 ;; The following is an alternative implementation of
4678 ;; `c-syntactic-skip-backward' that uses backward movement to keep
4679 ;; track of the syntactic context. It turned out to be generally
4680 ;; slower than the one above which uses forward checks from earlier
4681 ;; safe positions.
4683 ;;(defconst c-ssb-stop-re
4684 ;; ;; The regexp matching chars `c-syntactic-skip-backward' needs to
4685 ;; ;; stop at to avoid going into comments and literals.
4686 ;; (concat
4687 ;; ;; Match comment end syntax and string literal syntax. Also match
4688 ;; ;; '/' for block comment endings (not covered by comment end
4689 ;; ;; syntax).
4690 ;; "\\s>\\|/\\|\\s\""
4691 ;; (if (memq 'gen-string-delim c-emacs-features)
4692 ;; "\\|\\s|"
4693 ;; "")
4694 ;; (if (memq 'gen-comment-delim c-emacs-features)
4695 ;; "\\|\\s!"
4696 ;; "")))
4698 ;;(defconst c-ssb-stop-paren-re
4699 ;; ;; Like `c-ssb-stop-re' but also stops at paren chars.
4700 ;; (concat c-ssb-stop-re "\\|\\s(\\|\\s)"))
4702 ;;(defconst c-ssb-sexp-end-re
4703 ;; ;; Regexp matching the ending syntax of a complex sexp.
4704 ;; (concat c-string-limit-regexp "\\|\\s)"))
4706 ;;(defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4707 ;; "Like `skip-chars-backward' but only look at syntactically relevant chars,
4708 ;;i.e. don't stop at positions inside syntactic whitespace or string
4709 ;;literals. Preprocessor directives are also ignored. However, if the
4710 ;;point is within a comment, string literal or preprocessor directory to
4711 ;;begin with, its contents is treated as syntactically relevant chars.
4712 ;;If LIMIT is given, it limits the backward search and the point will be
4713 ;;left there if no earlier position is found.
4715 ;;If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4716 ;;sexps, and the search will also not go outside the current paren sexp.
4717 ;;However, if LIMIT or the buffer limit is reached inside a nested paren
4718 ;;then the point will be left at the limit.
4720 ;;Non-nil is returned if the point moved, nil otherwise.
4722 ;;Note that this function might do hidden buffer changes. See the
4723 ;;comment at the start of cc-engine.el for more info."
4725 ;; (save-restriction
4726 ;; (when limit
4727 ;; (narrow-to-region limit (point-max)))
4729 ;; (let ((start (point)))
4730 ;; (catch 'done
4731 ;; (while (let ((last-pos (point))
4732 ;; (stop-pos (progn
4733 ;; (skip-chars-backward skip-chars)
4734 ;; (point))))
4736 ;; ;; Skip back over the same region as
4737 ;; ;; `skip-chars-backward' above, but keep to
4738 ;; ;; syntactically relevant positions.
4739 ;; (goto-char last-pos)
4740 ;; (while (and
4741 ;; ;; `re-search-backward' with a single char regexp
4742 ;; ;; should be fast.
4743 ;; (re-search-backward
4744 ;; (if paren-level c-ssb-stop-paren-re c-ssb-stop-re)
4745 ;; stop-pos 'move)
4747 ;; (progn
4748 ;; (cond
4749 ;; ((looking-at "\\s(")
4750 ;; ;; `paren-level' is set and we've found the
4751 ;; ;; start of the containing paren.
4752 ;; (forward-char)
4753 ;; (throw 'done t))
4755 ;; ((looking-at c-ssb-sexp-end-re)
4756 ;; ;; We're at the end of a string literal or paren
4757 ;; ;; sexp (if `paren-level' is set).
4758 ;; (forward-char)
4759 ;; (condition-case nil
4760 ;; (c-backward-sexp)
4761 ;; (error
4762 ;; (goto-char limit)
4763 ;; (throw 'done t))))
4765 ;; (t
4766 ;; (forward-char)
4767 ;; ;; At the end of some syntactic ws or possibly
4768 ;; ;; after a plain '/' operator.
4769 ;; (let ((pos (point)))
4770 ;; (c-backward-syntactic-ws)
4771 ;; (if (= pos (point))
4772 ;; ;; Was a plain '/' operator. Go past it.
4773 ;; (backward-char)))))
4775 ;; (> (point) stop-pos))))
4777 ;; ;; Now the point is either at `stop-pos' or at some
4778 ;; ;; position further back if `stop-pos' was at a
4779 ;; ;; syntactically irrelevant place.
4781 ;; ;; Skip additional syntactic ws so that we don't stop
4782 ;; ;; at the end of a comment if `skip-chars' is
4783 ;; ;; something like "^/".
4784 ;; (c-backward-syntactic-ws)
4786 ;; (< (point) stop-pos))))
4788 ;; ;; We might want to extend this with more useful return values
4789 ;; ;; in the future.
4790 ;; (/= (point) start))))
4793 ;; Tools for handling comments and string literals.
4795 (defun c-in-literal (&optional lim detect-cpp)
4796 "Return the type of literal point is in, if any.
4797 The return value is `c' if in a C-style comment, `c++' if in a C++
4798 style comment, `string' if in a string literal, `pound' if DETECT-CPP
4799 is non-nil and in a preprocessor line, or nil if somewhere else.
4800 Optional LIM is used as the backward limit of the search. If omitted,
4801 or nil, `c-beginning-of-defun' is used.
4803 The last point calculated is cached if the cache is enabled, i.e. if
4804 `c-in-literal-cache' is bound to a two element vector.
4806 Note that this function might do hidden buffer changes. See the
4807 comment at the start of cc-engine.el for more info."
4808 (save-restriction
4809 (widen)
4810 (let ((lit (c-state-semi-pp-to-literal (point))))
4811 (or (cadr lit)
4812 (and detect-cpp
4813 (save-excursion (c-beginning-of-macro))
4814 'pound)))))
4816 (defun c-literal-limits (&optional lim near not-in-delimiter)
4817 "Return a cons of the beginning and end positions of the comment or
4818 string surrounding point (including both delimiters), or nil if point
4819 isn't in one. If LIM is non-nil, it's used as the \"safe\" position
4820 to start parsing from. If NEAR is non-nil, then the limits of any
4821 literal next to point is returned. \"Next to\" means there's only
4822 spaces and tabs between point and the literal. The search for such a
4823 literal is done first in forward direction. If NOT-IN-DELIMITER is
4824 non-nil, the case when point is inside a starting delimiter won't be
4825 recognized. This only has effect for comments which have starting
4826 delimiters with more than one character.
4828 Note that this function might do hidden buffer changes. See the
4829 comment at the start of cc-engine.el for more info."
4831 (save-excursion
4832 (let*
4833 ((pos (point))
4834 (lit-limits
4835 (if lim
4836 (let ((s (parse-partial-sexp lim (point))))
4837 (when (or (nth 3 s) (nth 4 s))
4838 (cons (nth 8 s)
4839 (progn (parse-partial-sexp (point) (point-max)
4840 nil nil
4842 'syntax-table)
4843 (point)))))
4844 (let ((pp-to-lit (c-state-full-pp-to-literal pos not-in-delimiter)))
4845 (car (cddr pp-to-lit))))))
4846 (cond
4847 (lit-limits)
4849 (near
4850 (goto-char pos)
4851 ;; Search forward for a literal.
4852 (skip-chars-forward " \t")
4853 (cond
4854 ((looking-at c-string-limit-regexp) ; String.
4855 (cons (point) (or (c-safe (c-forward-sexp 1) (point))
4856 (point-max))))
4858 ((looking-at c-comment-start-regexp) ; Line or block comment.
4859 (cons (point) (progn (c-forward-single-comment) (point))))
4862 ;; Search backward.
4863 (skip-chars-backward " \t")
4865 (let ((end (point)) beg)
4866 (cond
4867 ((save-excursion
4868 (< (skip-syntax-backward c-string-syntax) 0)) ; String.
4869 (setq beg (c-safe (c-backward-sexp 1) (point))))
4871 ((and (c-safe (forward-char -2) t)
4872 (looking-at "*/"))
4873 ;; Block comment. Due to the nature of line
4874 ;; comments, they will always be covered by the
4875 ;; normal case above.
4876 (goto-char end)
4877 (c-backward-single-comment)
4878 ;; If LIM is bogus, beg will be bogus.
4879 (setq beg (point))))
4881 (if beg (cons beg end))))))
4882 ))))
4884 (defun c-literal-start (&optional safe-pos)
4885 "Return the start of the string or comment surrounding point, or nil if
4886 point isn't in one. SAFE-POS, if non-nil, is a position before point which is
4887 a known \"safe position\", i.e. outside of any string or comment."
4888 (if safe-pos
4889 (let ((s (parse-partial-sexp safe-pos (point))))
4890 (and (or (nth 3 s) (nth 4 s))
4891 (nth 8 s)))
4892 (car (cddr (c-state-semi-pp-to-literal (point))))))
4894 ;; In case external callers use this; it did have a docstring.
4895 (defalias 'c-literal-limits-fast 'c-literal-limits)
4897 (defun c-collect-line-comments (range)
4898 "If the argument is a cons of two buffer positions (such as returned by
4899 `c-literal-limits'), and that range contains a C++ style line comment,
4900 then an extended range is returned that contains all adjacent line
4901 comments (i.e. all comments that starts in the same column with no
4902 empty lines or non-whitespace characters between them). Otherwise the
4903 argument is returned.
4905 Note that this function might do hidden buffer changes. See the
4906 comment at the start of cc-engine.el for more info."
4908 (save-excursion
4909 (condition-case nil
4910 (if (and (consp range) (progn
4911 (goto-char (car range))
4912 (looking-at c-line-comment-starter)))
4913 (let ((col (current-column))
4914 (beg (point))
4915 (bopl (c-point 'bopl))
4916 (end (cdr range)))
4917 ;; Got to take care in the backward direction to handle
4918 ;; comments which are preceded by code.
4919 (while (and (c-backward-single-comment)
4920 (>= (point) bopl)
4921 (looking-at c-line-comment-starter)
4922 (= col (current-column)))
4923 (setq beg (point)
4924 bopl (c-point 'bopl)))
4925 (goto-char end)
4926 (while (and (progn (skip-chars-forward " \t")
4927 (looking-at c-line-comment-starter))
4928 (= col (current-column))
4929 (prog1 (zerop (forward-line 1))
4930 (setq end (point)))))
4931 (cons beg end))
4932 range)
4933 (error range))))
4935 (defun c-literal-type (range)
4936 "Convenience function that given the result of `c-literal-limits',
4937 returns nil or the type of literal that the range surrounds, one
4938 of the symbols `c', `c++' or `string'. It's much faster than using
4939 `c-in-literal' and is intended to be used when you need both the
4940 type of a literal and its limits.
4942 Note that this function might do hidden buffer changes. See the
4943 comment at the start of cc-engine.el for more info."
4945 (if (consp range)
4946 (save-excursion
4947 (goto-char (car range))
4948 (cond ((looking-at c-string-limit-regexp) 'string)
4949 ((or (looking-at "//") ; c++ line comment
4950 (and (looking-at "\\s<") ; comment starter
4951 (looking-at "#"))) ; awk comment.
4952 'c++)
4953 (t 'c))) ; Assuming the range is valid.
4954 range))
4956 (defsubst c-determine-limit-get-base (start try-size)
4957 ;; Get a "safe place" approximately TRY-SIZE characters before START.
4958 ;; This defsubst doesn't preserve point.
4959 (let* ((pos (max (- start try-size) (point-min)))
4960 (s (c-state-semi-pp-to-literal pos)))
4961 (or (car (cddr s)) pos)))
4963 (defun c-determine-limit (how-far-back &optional start try-size)
4964 ;; Return a buffer position HOW-FAR-BACK non-literal characters from START
4965 ;; (default point). This is done by going back further in the buffer then
4966 ;; searching forward for literals. The position found won't be in a
4967 ;; literal. We start searching for the sought position TRY-SIZE (default
4968 ;; twice HOW-FAR-BACK) bytes back from START. This function must be fast.
4969 ;; :-)
4970 (save-excursion
4971 (let* ((start (or start (point)))
4972 (try-size (or try-size (* 2 how-far-back)))
4973 (base (c-determine-limit-get-base start try-size))
4974 (pos base)
4976 (s (parse-partial-sexp pos pos)) ; null state.
4977 stack elt size
4978 (count 0))
4979 (while (< pos start)
4980 ;; Move forward one literal each time round this loop.
4981 ;; Move forward to the start of a comment or string.
4982 (setq s (parse-partial-sexp
4984 start
4985 nil ; target-depth
4986 nil ; stop-before
4987 s ; state
4988 'syntax-table)) ; stop-comment
4990 ;; Gather details of the non-literal-bit - starting pos and size.
4991 (setq size (- (if (or (nth 4 s) (nth 3 s))
4992 (nth 8 s)
4993 (point))
4994 pos))
4995 (if (> size 0)
4996 (setq stack (cons (cons pos size) stack)))
4998 ;; Move forward to the end of the comment/string.
4999 (if (or (nth 4 s) (nth 3 s))
5000 (setq s (parse-partial-sexp
5001 (point)
5002 start
5003 nil ; target-depth
5004 nil ; stop-before
5005 s ; state
5006 'syntax-table))) ; stop-comment
5007 (setq pos (point)))
5009 ;; Now try and find enough non-literal characters recorded on the stack.
5010 ;; Go back one recorded literal each time round this loop.
5011 (while (and (< count how-far-back)
5012 stack)
5013 (setq elt (car stack)
5014 stack (cdr stack))
5015 (setq count (+ count (cdr elt))))
5017 ;; Have we found enough yet?
5018 (cond
5019 ((>= count how-far-back)
5020 (+ (car elt) (- count how-far-back)))
5021 ((eq base (point-min))
5022 (point-min))
5024 (c-determine-limit (- how-far-back count) base try-size))))))
5026 (defun c-determine-+ve-limit (how-far &optional start-pos)
5027 ;; Return a buffer position about HOW-FAR non-literal characters forward
5028 ;; from START-POS (default point), which must not be inside a literal.
5029 (save-excursion
5030 (let ((pos (or start-pos (point)))
5031 (count how-far)
5032 (s (parse-partial-sexp (point) (point)))) ; null state
5033 (while (and (not (eobp))
5034 (> count 0))
5035 ;; Scan over counted characters.
5036 (setq s (parse-partial-sexp
5038 (min (+ pos count) (point-max))
5039 nil ; target-depth
5040 nil ; stop-before
5041 s ; state
5042 'syntax-table)) ; stop-comment
5043 (setq count (- count (- (point) pos) 1)
5044 pos (point))
5045 ;; Scan over literal characters.
5046 (if (nth 8 s)
5047 (setq s (parse-partial-sexp
5049 (point-max)
5050 nil ; target-depth
5051 nil ; stop-before
5052 s ; state
5053 'syntax-table) ; stop-comment
5054 pos (point))))
5055 (point))))
5058 ;; `c-find-decl-spots' and accompanying stuff.
5060 ;; Variables used in `c-find-decl-spots' to cache the search done for
5061 ;; the first declaration in the last call. When that function starts,
5062 ;; it needs to back up over syntactic whitespace to look at the last
5063 ;; token before the region being searched. That can sometimes cause
5064 ;; moves back and forth over a quite large region of comments and
5065 ;; macros, which would be repeated for each changed character when
5066 ;; we're called during fontification, since font-lock refontifies the
5067 ;; current line for each change. Thus it's worthwhile to cache the
5068 ;; first match.
5070 ;; `c-find-decl-syntactic-pos' is a syntactically relevant position in
5071 ;; the syntactic whitespace less or equal to some start position.
5072 ;; There's no cached value if it's nil.
5074 ;; `c-find-decl-match-pos' is the match position if
5075 ;; `c-find-decl-prefix-search' matched before the syntactic whitespace
5076 ;; at `c-find-decl-syntactic-pos', or nil if there's no such match.
5077 (defvar c-find-decl-syntactic-pos nil)
5078 (make-variable-buffer-local 'c-find-decl-syntactic-pos)
5079 (defvar c-find-decl-match-pos nil)
5080 (make-variable-buffer-local 'c-find-decl-match-pos)
5082 (defsubst c-invalidate-find-decl-cache (change-min-pos)
5083 (and c-find-decl-syntactic-pos
5084 (< change-min-pos c-find-decl-syntactic-pos)
5085 (setq c-find-decl-syntactic-pos nil)))
5087 ; (defface c-debug-decl-spot-face
5088 ; '((t (:background "Turquoise")))
5089 ; "Debug face to mark the spots where `c-find-decl-spots' stopped.")
5090 ; (defface c-debug-decl-sws-face
5091 ; '((t (:background "Khaki")))
5092 ; "Debug face to mark the syntactic whitespace between the declaration
5093 ; spots and the preceding token end.")
5095 (defmacro c-debug-put-decl-spot-faces (match-pos decl-pos)
5096 (when (facep 'c-debug-decl-spot-face)
5097 `(c-save-buffer-state ((match-pos ,match-pos) (decl-pos ,decl-pos))
5098 (c-debug-add-face (max match-pos (point-min)) decl-pos
5099 'c-debug-decl-sws-face)
5100 (c-debug-add-face decl-pos (min (1+ decl-pos) (point-max))
5101 'c-debug-decl-spot-face))))
5102 (defmacro c-debug-remove-decl-spot-faces (beg end)
5103 (when (facep 'c-debug-decl-spot-face)
5104 `(c-save-buffer-state ()
5105 (c-debug-remove-face ,beg ,end 'c-debug-decl-spot-face)
5106 (c-debug-remove-face ,beg ,end 'c-debug-decl-sws-face))))
5108 (defmacro c-find-decl-prefix-search ()
5109 ;; Macro used inside `c-find-decl-spots'. It ought to be a defun,
5110 ;; but it contains lots of free variables that refer to things
5111 ;; inside `c-find-decl-spots'. The point is left at `cfd-match-pos'
5112 ;; if there is a match, otherwise at `cfd-limit'.
5114 ;; The macro moves point forward to the next putative start of a declaration
5115 ;; or cfd-limit. This decl start is the next token after a "declaration
5116 ;; prefix". The declaration prefix is the earlier of `cfd-prop-match' and
5117 ;; `cfd-re-match'. `cfd-match-pos' is set to the decl prefix.
5119 ;; This macro might do hidden buffer changes.
5121 '(progn
5122 ;; Find the next property match position if we haven't got one already.
5123 (unless cfd-prop-match
5124 (save-excursion
5125 (while (progn
5126 (goto-char (c-next-single-property-change
5127 (point) 'c-type nil cfd-limit))
5128 (and (< (point) cfd-limit)
5129 (not (eq (c-get-char-property (1- (point)) 'c-type)
5130 'c-decl-end)))))
5131 (setq cfd-prop-match (point))))
5133 ;; Find the next `c-decl-prefix-or-start-re' match if we haven't
5134 ;; got one already.
5135 (unless cfd-re-match
5137 (if (> cfd-re-match-end (point))
5138 (goto-char cfd-re-match-end))
5140 ;; Each time round, the next `while' moves forward over a pseudo match
5141 ;; of `c-decl-prefix-or-start-re' which is either inside a literal, or
5142 ;; is a ":" not preceded by "public", etc.. `cfd-re-match' and
5143 ;; `cfd-re-match-end' get set.
5144 (while
5145 (progn
5146 (setq cfd-re-match-end (re-search-forward c-decl-prefix-or-start-re
5147 cfd-limit 'move))
5148 (cond
5149 ((null cfd-re-match-end)
5150 ;; No match. Finish up and exit the loop.
5151 (setq cfd-re-match cfd-limit)
5152 nil)
5153 ((c-got-face-at
5154 (if (setq cfd-re-match (match-end 1))
5155 ;; Matched the end of a token preceding a decl spot.
5156 (progn
5157 (goto-char cfd-re-match)
5158 (1- cfd-re-match))
5159 ;; Matched a token that start a decl spot.
5160 (goto-char (match-beginning 0))
5161 (point))
5162 c-literal-faces)
5163 ;; Pseudo match inside a comment or string literal. Skip out
5164 ;; of comments and string literals.
5165 (while (progn
5166 (goto-char (c-next-single-property-change
5167 (point) 'face nil cfd-limit))
5168 (and (< (point) cfd-limit)
5169 (c-got-face-at (point) c-literal-faces))))
5170 t) ; Continue the loop over pseudo matches.
5171 ((and c-opt-identifier-concat-key
5172 (match-string 1)
5173 (save-excursion
5174 (goto-char (match-beginning 1))
5175 (looking-at c-opt-identifier-concat-key)))
5176 ;; Found, e.g., "::" in C++
5178 ((and (match-string 1)
5179 (string= (match-string 1) ":")
5180 (save-excursion
5181 (or (/= (c-backward-token-2 2) 0) ; no search limit. :-(
5182 (not (looking-at c-decl-start-colon-kwd-re)))))
5183 ;; Found a ":" which isn't part of "public:", etc.
5185 (t nil)))) ;; Found a real match. Exit the pseudo-match loop.
5187 ;; If our match was at the decl start, we have to back up over the
5188 ;; preceding syntactic ws to set `cfd-match-pos' and to catch
5189 ;; any decl spots in the syntactic ws.
5190 (unless cfd-re-match
5191 (c-backward-syntactic-ws)
5192 (setq cfd-re-match (point))))
5194 ;; Choose whichever match is closer to the start.
5195 (if (< cfd-re-match cfd-prop-match)
5196 (setq cfd-match-pos cfd-re-match
5197 cfd-re-match nil)
5198 (setq cfd-match-pos cfd-prop-match
5199 cfd-prop-match nil))
5201 (goto-char cfd-match-pos)
5203 (when (< cfd-match-pos cfd-limit)
5204 ;; Skip forward past comments only so we don't skip macros.
5205 (c-forward-comments)
5206 ;; Set the position to continue at. We can avoid going over
5207 ;; the comments skipped above a second time, but it's possible
5208 ;; that the comment skipping has taken us past `cfd-prop-match'
5209 ;; since the property might be used inside comments.
5210 (setq cfd-continue-pos (if cfd-prop-match
5211 (min cfd-prop-match (point))
5212 (point))))))
5214 (defun c-find-decl-spots (cfd-limit cfd-decl-re cfd-face-checklist cfd-fun)
5215 ;; Call CFD-FUN for each possible spot for a declaration, cast or
5216 ;; label from the point to CFD-LIMIT.
5218 ;; CFD-FUN is called with point at the start of the spot. It's passed two
5219 ;; arguments: The first is the end position of the token preceding the spot,
5220 ;; or 0 for the implicit match at bob. The second is a flag that is t when
5221 ;; the match is inside a macro. Point should be moved forward by at least
5222 ;; one token.
5224 ;; If CFD-FUN adds `c-decl-end' properties somewhere below the current spot,
5225 ;; it should return non-nil to ensure that the next search will find them.
5227 ;; Such a spot is:
5228 ;; o The first token after bob.
5229 ;; o The first token after the end of submatch 1 in
5230 ;; `c-decl-prefix-or-start-re' when that submatch matches. This
5231 ;; submatch is typically a (L or R) brace or paren, a ;, or a ,.
5232 ;; o The start of each `c-decl-prefix-or-start-re' match when
5233 ;; submatch 1 doesn't match. This is, for example, the keyword
5234 ;; "class" in Pike.
5235 ;; o The start of a previously recognized declaration; "recognized"
5236 ;; means that the last char of the previous token has a `c-type'
5237 ;; text property with the value `c-decl-end'; this only holds
5238 ;; when `c-type-decl-end-used' is set.
5240 ;; Only a spot that match CFD-DECL-RE and whose face is in the
5241 ;; CFD-FACE-CHECKLIST list causes CFD-FUN to be called. The face
5242 ;; check is disabled if CFD-FACE-CHECKLIST is nil.
5244 ;; If the match is inside a macro then the buffer is narrowed to the
5245 ;; end of it, so that CFD-FUN can investigate the following tokens
5246 ;; without matching something that begins inside a macro and ends
5247 ;; outside it. It's to avoid this work that the CFD-DECL-RE and
5248 ;; CFD-FACE-CHECKLIST checks exist.
5250 ;; The spots are visited approximately in order from top to bottom.
5251 ;; It's however the positions where `c-decl-prefix-or-start-re'
5252 ;; matches and where `c-decl-end' properties are found that are in
5253 ;; order. Since the spots often are at the following token, they
5254 ;; might be visited out of order insofar as more spots are reported
5255 ;; later on within the syntactic whitespace between the match
5256 ;; positions and their spots.
5258 ;; It's assumed that comments and strings are fontified in the
5259 ;; searched range.
5261 ;; This is mainly used in fontification, and so has an elaborate
5262 ;; cache to handle repeated calls from the same start position; see
5263 ;; the variables above.
5265 ;; All variables in this function begin with `cfd-' to avoid name
5266 ;; collision with the (dynamically bound) variables used in CFD-FUN.
5268 ;; This function might do hidden buffer changes.
5270 (let ((cfd-start-pos (point)) ; never changed
5271 (cfd-buffer-end (point-max))
5272 ;; The end of the token preceding the decl spot last found
5273 ;; with `c-decl-prefix-or-start-re'. `cfd-limit' if there's
5274 ;; no match.
5275 cfd-re-match
5276 ;; The end position of the last `c-decl-prefix-or-start-re'
5277 ;; match. If this is greater than `cfd-continue-pos', the
5278 ;; next regexp search is started here instead.
5279 (cfd-re-match-end (point-min))
5280 ;; The end of the last `c-decl-end' found by
5281 ;; `c-find-decl-prefix-search'. `cfd-limit' if there's no
5282 ;; match. If searching for the property isn't needed then we
5283 ;; disable it by setting it to `cfd-limit' directly.
5284 (cfd-prop-match (unless c-type-decl-end-used cfd-limit))
5285 ;; The end of the token preceding the decl spot last found by
5286 ;; `c-find-decl-prefix-search'. 0 for the implicit match at
5287 ;; bob. `cfd-limit' if there's no match. In other words,
5288 ;; this is the minimum of `cfd-re-match' and `cfd-prop-match'.
5289 (cfd-match-pos cfd-limit)
5290 ;; The position to continue searching at.
5291 cfd-continue-pos
5292 ;; The position of the last "real" token we've stopped at.
5293 ;; This can be greater than `cfd-continue-pos' when we get
5294 ;; hits inside macros or at `c-decl-end' positions inside
5295 ;; comments.
5296 (cfd-token-pos 0)
5297 ;; The end position of the last entered macro.
5298 (cfd-macro-end 0))
5300 ;; Initialize by finding a syntactically relevant start position
5301 ;; before the point, and do the first `c-decl-prefix-or-start-re'
5302 ;; search unless we're at bob.
5304 (let (start-in-literal start-in-macro syntactic-pos)
5305 ;; Must back up a bit since we look for the end of the previous
5306 ;; statement or declaration, which is earlier than the first
5307 ;; returned match.
5309 ;; This `cond' moves back over any literals or macros. It has special
5310 ;; handling for when the region being searched is entirely within a
5311 ;; macro. It sets `cfd-continue-pos' (unless we've reached
5312 ;; `cfd-limit').
5313 (cond
5314 ;; First we need to move to a syntactically relevant position.
5315 ;; Begin by backing out of comment or string literals.
5317 ;; This arm of the cond actually triggers if we're in a literal,
5318 ;; and cfd-limit is at most at BONL.
5319 ((and
5320 ;; This arm of the `and' moves backwards out of a literal when
5321 ;; the face at point is a literal face. In this case, its value
5322 ;; is always non-nil.
5323 (when (c-got-face-at (point) c-literal-faces)
5324 ;; Try to use the faces to back up to the start of the
5325 ;; literal. FIXME: What if the point is on a declaration
5326 ;; inside a comment?
5327 (while (and (not (bobp))
5328 (c-got-face-at (1- (point)) c-literal-faces))
5329 (goto-char (previous-single-property-change
5330 (point) 'face nil (point-min))))
5332 ;; XEmacs doesn't fontify the quotes surrounding string
5333 ;; literals.
5334 (and (featurep 'xemacs)
5335 (eq (get-text-property (point) 'face)
5336 'font-lock-string-face)
5337 (not (bobp))
5338 (progn (backward-char)
5339 (not (looking-at c-string-limit-regexp)))
5340 (forward-char))
5342 ;; Don't trust the literal to contain only literal faces
5343 ;; (the font lock package might not have fontified the
5344 ;; start of it at all, for instance) so check that we have
5345 ;; arrived at something that looks like a start or else
5346 ;; resort to `c-literal-limits'.
5347 (unless (looking-at c-literal-start-regexp)
5348 (let ((lit-start (c-literal-start)))
5349 (if lit-start (goto-char lit-start)))
5352 (setq start-in-literal (point))) ; end of `and' arm.
5354 ;; The start is in a literal. If the limit is in the same
5355 ;; one we don't have to find a syntactic position etc. We
5356 ;; only check that if the limit is at or before bonl to save
5357 ;; time; it covers the by far most common case when font-lock
5358 ;; refontifies the current line only.
5359 (<= cfd-limit (c-point 'bonl cfd-start-pos))
5360 (save-excursion
5361 (goto-char cfd-start-pos)
5362 (while (progn
5363 (goto-char (c-next-single-property-change
5364 (point) 'face nil cfd-limit))
5365 (and (< (point) cfd-limit)
5366 (c-got-face-at (point) c-literal-faces))))
5367 (= (point) cfd-limit))) ; end of `cond' arm condition
5369 ;; Completely inside a literal. Set up variables to trig the
5370 ;; (< cfd-continue-pos cfd-start-pos) case below and it'll
5371 ;; find a suitable start position.
5372 (setq cfd-continue-pos start-in-literal)) ; end of `cond' arm
5374 ;; Check if the region might be completely inside a macro, to
5375 ;; optimize that like the completely-inside-literal above.
5376 ((save-excursion
5377 (and (= (forward-line 1) 0)
5378 (bolp) ; forward-line has funny behavior at eob.
5379 (>= (point) cfd-limit)
5380 (progn (backward-char)
5381 (eq (char-before) ?\\))))
5382 ;; (Maybe) completely inside a macro. Only need to trig the
5383 ;; (< cfd-continue-pos cfd-start-pos) case below to make it
5384 ;; set things up.
5385 (setq cfd-continue-pos (1- cfd-start-pos)
5386 start-in-macro t))
5388 ;; The default arm of the `cond' moves back over any macro we're in
5389 ;; and over any syntactic WS. It sets `c-find-decl-syntactic-pos'.
5391 ;; Back out of any macro so we don't miss any declaration
5392 ;; that could follow after it.
5393 (when (c-beginning-of-macro)
5394 (setq start-in-macro t))
5396 ;; Now we're at a proper syntactically relevant position so we
5397 ;; can use the cache. But first clear it if it applied
5398 ;; further down.
5399 (c-invalidate-find-decl-cache cfd-start-pos)
5401 (setq syntactic-pos (point))
5402 (unless (eq syntactic-pos c-find-decl-syntactic-pos)
5403 ;; Don't have to do this if the cache is relevant here,
5404 ;; typically if the same line is refontified again. If
5405 ;; we're just some syntactic whitespace further down we can
5406 ;; still use the cache to limit the skipping.
5407 (c-backward-syntactic-ws c-find-decl-syntactic-pos))
5409 ;; If we hit `c-find-decl-syntactic-pos' and
5410 ;; `c-find-decl-match-pos' is set then we install the cached
5411 ;; values. If we hit `c-find-decl-syntactic-pos' and
5412 ;; `c-find-decl-match-pos' is nil then we know there's no decl
5413 ;; prefix in the whitespace before `c-find-decl-syntactic-pos'
5414 ;; and so we can continue the search from this point. If we
5415 ;; didn't hit `c-find-decl-syntactic-pos' then we're now in
5416 ;; the right spot to begin searching anyway.
5417 (if (and (eq (point) c-find-decl-syntactic-pos)
5418 c-find-decl-match-pos)
5419 (setq cfd-match-pos c-find-decl-match-pos
5420 cfd-continue-pos syntactic-pos)
5422 (setq c-find-decl-syntactic-pos syntactic-pos)
5424 (when (if (bobp)
5425 ;; Always consider bob a match to get the first
5426 ;; declaration in the file. Do this separately instead of
5427 ;; letting `c-decl-prefix-or-start-re' match bob, so that
5428 ;; regexp always can consume at least one character to
5429 ;; ensure that we won't get stuck in an infinite loop.
5430 (setq cfd-re-match 0)
5431 (backward-char)
5432 (c-beginning-of-current-token)
5433 (< (point) cfd-limit))
5434 ;; Do an initial search now. In the bob case above it's
5435 ;; only done to search for a `c-decl-end' spot.
5436 (c-find-decl-prefix-search)) ; sets cfd-continue-pos
5438 (setq c-find-decl-match-pos (and (< cfd-match-pos cfd-start-pos)
5439 cfd-match-pos))))) ; end of `cond'
5441 ;; Advance `cfd-continue-pos' if it's before the start position.
5442 ;; The closest continue position that might have effect at or
5443 ;; after the start depends on what we started in. This also
5444 ;; finds a suitable start position in the special cases when the
5445 ;; region is completely within a literal or macro.
5446 (when (and cfd-continue-pos (< cfd-continue-pos cfd-start-pos))
5448 (cond
5449 (start-in-macro
5450 ;; If we're in a macro then it's the closest preceding token
5451 ;; in the macro. Check this before `start-in-literal',
5452 ;; since if we're inside a literal in a macro, the preceding
5453 ;; token is earlier than any `c-decl-end' spot inside the
5454 ;; literal (comment).
5455 (goto-char (or start-in-literal cfd-start-pos))
5456 ;; The only syntactic ws in macros are comments.
5457 (c-backward-comments)
5458 (backward-char)
5459 (c-beginning-of-current-token))
5461 (start-in-literal
5462 ;; If we're in a comment it can only be the closest
5463 ;; preceding `c-decl-end' position within that comment, if
5464 ;; any. Go back to the beginning of such a property so that
5465 ;; `c-find-decl-prefix-search' will find the end of it.
5466 ;; (Can't stop at the end and install it directly on
5467 ;; `cfd-prop-match' since that variable might be cleared
5468 ;; after `cfd-fun' below.)
5470 ;; Note that if the literal is a string then the property
5471 ;; search will simply skip to the beginning of it right
5472 ;; away.
5473 (if (not c-type-decl-end-used)
5474 (goto-char start-in-literal)
5475 (goto-char cfd-start-pos)
5476 (while (progn
5477 (goto-char (previous-single-property-change
5478 (point) 'c-type nil start-in-literal))
5479 (and (> (point) start-in-literal)
5480 (not (eq (c-get-char-property (point) 'c-type)
5481 'c-decl-end))))))
5483 (when (= (point) start-in-literal)
5484 ;; Didn't find any property inside the comment, so we can
5485 ;; skip it entirely. (This won't skip past a string, but
5486 ;; that'll be handled quickly by the next
5487 ;; `c-find-decl-prefix-search' anyway.)
5488 (c-forward-single-comment)
5489 (if (> (point) cfd-limit)
5490 (goto-char cfd-limit))))
5493 ;; If we started in normal code, the only match that might
5494 ;; apply before the start is what we already got in
5495 ;; `cfd-match-pos' so we can continue at the start position.
5496 ;; (Note that we don't get here if the first match is below
5497 ;; it.)
5498 (goto-char cfd-start-pos))) ; end of `cond'
5500 ;; Delete found matches if they are before our new continue
5501 ;; position, so that `c-find-decl-prefix-search' won't back up
5502 ;; to them later on.
5503 (setq cfd-continue-pos (point))
5504 (when (and cfd-re-match (< cfd-re-match cfd-continue-pos))
5505 (setq cfd-re-match nil))
5506 (when (and cfd-prop-match (< cfd-prop-match cfd-continue-pos))
5507 (setq cfd-prop-match nil))) ; end of `when'
5509 (if syntactic-pos
5510 ;; This is the normal case and we got a proper syntactic
5511 ;; position. If there's a match then it's always outside
5512 ;; macros and comments, so advance to the next token and set
5513 ;; `cfd-token-pos'. The loop below will later go back using
5514 ;; `cfd-continue-pos' to fix declarations inside the
5515 ;; syntactic ws.
5516 (when (and cfd-match-pos (< cfd-match-pos syntactic-pos))
5517 (goto-char syntactic-pos)
5518 (c-forward-syntactic-ws)
5519 (and cfd-continue-pos
5520 (< cfd-continue-pos (point))
5521 (setq cfd-token-pos (point))))
5523 ;; Have one of the special cases when the region is completely
5524 ;; within a literal or macro. `cfd-continue-pos' is set to a
5525 ;; good start position for the search, so do it.
5526 (c-find-decl-prefix-search)))
5528 ;; Now loop, one decl spot per iteration. We already have the first
5529 ;; match in `cfd-match-pos'.
5530 (while (progn
5531 ;; Go forward over "false matches", one per iteration.
5532 (while (and
5533 (< cfd-match-pos cfd-limit)
5536 ;; Kludge to filter out matches on the "<" that
5537 ;; aren't open parens, for the sake of languages
5538 ;; that got `c-recognize-<>-arglists' set.
5539 (and (eq (char-before cfd-match-pos) ?<)
5540 (not (c-get-char-property (1- cfd-match-pos)
5541 'syntax-table)))
5543 ;; If `cfd-continue-pos' is less or equal to
5544 ;; `cfd-token-pos', we've got a hit inside a macro
5545 ;; that's in the syntactic whitespace before the last
5546 ;; "real" declaration we've checked. If they're equal
5547 ;; we've arrived at the declaration a second time, so
5548 ;; there's nothing to do.
5549 (= cfd-continue-pos cfd-token-pos)
5551 (progn
5552 ;; If `cfd-continue-pos' is less than `cfd-token-pos'
5553 ;; we're still searching for declarations embedded in
5554 ;; the syntactic whitespace. In that case we need
5555 ;; only to skip comments and not macros, since they
5556 ;; can't be nested, and that's already been done in
5557 ;; `c-find-decl-prefix-search'.
5558 (when (> cfd-continue-pos cfd-token-pos)
5559 (c-forward-syntactic-ws)
5560 (setq cfd-token-pos (point)))
5562 ;; Continue if the following token fails the
5563 ;; CFD-DECL-RE and CFD-FACE-CHECKLIST checks.
5564 (when (or (>= (point) cfd-limit)
5565 (not (looking-at cfd-decl-re))
5566 (and cfd-face-checklist
5567 (not (c-got-face-at
5568 (point) cfd-face-checklist))))
5569 (goto-char cfd-continue-pos)
5570 t)))
5572 (< (point) cfd-limit)) ; end of "false matches" condition
5573 (c-find-decl-prefix-search)) ; end of "false matches" loop
5575 (< (point) cfd-limit)) ; end of condition for "decl-spot" while
5577 (when (and
5578 (>= (point) cfd-start-pos)
5580 (progn
5581 ;; Narrow to the end of the macro if we got a hit inside
5582 ;; one, to avoid recognizing things that start inside the
5583 ;; macro and end outside it.
5584 (when (> cfd-match-pos cfd-macro-end)
5585 ;; Not in the same macro as in the previous round.
5586 (save-excursion
5587 (goto-char cfd-match-pos)
5588 (setq cfd-macro-end
5589 (if (save-excursion (and (c-beginning-of-macro)
5590 (< (point) cfd-match-pos)))
5591 (progn (c-end-of-macro)
5592 (point))
5593 0))))
5595 (if (zerop cfd-macro-end)
5597 (if (> cfd-macro-end (point))
5598 (progn (narrow-to-region (point-min) cfd-macro-end)
5600 ;; The matched token was the last thing in the macro,
5601 ;; so the whole match is bogus.
5602 (setq cfd-macro-end 0)
5603 nil)))) ; end of when condition
5605 (c-debug-put-decl-spot-faces cfd-match-pos (point))
5606 (if (funcall cfd-fun cfd-match-pos (/= cfd-macro-end 0))
5607 (setq cfd-prop-match nil))
5609 (when (/= cfd-macro-end 0)
5610 ;; Restore limits if we did macro narrowing above.
5611 (narrow-to-region (point-min) cfd-buffer-end)))
5613 (goto-char cfd-continue-pos)
5614 (if (= cfd-continue-pos cfd-limit)
5615 (setq cfd-match-pos cfd-limit)
5616 (c-find-decl-prefix-search))))) ; Moves point, sets cfd-continue-pos,
5617 ; cfd-match-pos, etc.
5620 ;; A cache for found types.
5622 ;; Buffer local variable that contains an obarray with the types we've
5623 ;; found. If a declaration is recognized somewhere we record the
5624 ;; fully qualified identifier in it to recognize it as a type
5625 ;; elsewhere in the file too. This is not accurate since we do not
5626 ;; bother with the scoping rules of the languages, but in practice the
5627 ;; same name is seldom used as both a type and something else in a
5628 ;; file, and we only use this as a last resort in ambiguous cases (see
5629 ;; `c-forward-decl-or-cast-1').
5631 ;; Not every type need be in this cache. However, things which have
5632 ;; ceased to be types must be removed from it.
5634 ;; Template types in C++ are added here too but with the template
5635 ;; arglist replaced with "<>" in references or "<" for the one in the
5636 ;; primary type. E.g. the type "Foo<A,B>::Bar<C>" is stored as
5637 ;; "Foo<>::Bar<". This avoids storing very long strings (since C++
5638 ;; template specs can be fairly sized programs in themselves) and
5639 ;; improves the hit ratio (it's a type regardless of the template
5640 ;; args; it's just not the same type, but we're only interested in
5641 ;; recognizing types, not telling distinct types apart). Note that
5642 ;; template types in references are added here too; from the example
5643 ;; above there will also be an entry "Foo<".
5644 (defvar c-found-types nil)
5645 (make-variable-buffer-local 'c-found-types)
5647 (defsubst c-clear-found-types ()
5648 ;; Clears `c-found-types'.
5649 (setq c-found-types (make-vector 53 0)))
5651 (defun c-add-type (from to)
5652 ;; Add the given region as a type in `c-found-types'. If the region
5653 ;; doesn't match an existing type but there is a type which is equal
5654 ;; to the given one except that the last character is missing, then
5655 ;; the shorter type is removed. That's done to avoid adding all
5656 ;; prefixes of a type as it's being entered and font locked. This
5657 ;; doesn't cover cases like when characters are removed from a type
5658 ;; or added in the middle. We'd need the position of point when the
5659 ;; font locking is invoked to solve this well.
5661 ;; This function might do hidden buffer changes.
5662 (let ((type (c-syntactic-content from to c-recognize-<>-arglists)))
5663 (unless (intern-soft type c-found-types)
5664 (unintern (substring type 0 -1) c-found-types)
5665 (intern type c-found-types))))
5667 (defun c-unfind-type (name)
5668 ;; Remove the "NAME" from c-found-types, if present.
5669 (unintern name c-found-types))
5671 (defsubst c-check-type (from to)
5672 ;; Return non-nil if the given region contains a type in
5673 ;; `c-found-types'.
5675 ;; This function might do hidden buffer changes.
5676 (intern-soft (c-syntactic-content from to c-recognize-<>-arglists)
5677 c-found-types))
5679 (defun c-list-found-types ()
5680 ;; Return all the types in `c-found-types' as a sorted list of
5681 ;; strings.
5682 (let (type-list)
5683 (mapatoms (lambda (type)
5684 (setq type-list (cons (symbol-name type)
5685 type-list)))
5686 c-found-types)
5687 (sort type-list 'string-lessp)))
5689 ;; Shut up the byte compiler.
5690 (defvar c-maybe-stale-found-type)
5692 (defun c-trim-found-types (beg end old-len)
5693 ;; An after change function which, in conjunction with the info in
5694 ;; c-maybe-stale-found-type (set in c-before-change), removes a type
5695 ;; from `c-found-types', should this type have become stale. For
5696 ;; example, this happens to "foo" when "foo \n bar();" becomes
5697 ;; "foo(); \n bar();". Such stale types, if not removed, foul up
5698 ;; the fontification.
5700 ;; Have we, perhaps, added non-ws characters to the front/back of a found
5701 ;; type?
5702 (when (> end beg)
5703 (save-excursion
5704 (when (< end (point-max))
5705 (goto-char end)
5706 (if (and (c-beginning-of-current-token) ; only moves when we started in the middle
5707 (progn (goto-char end)
5708 (c-end-of-current-token)))
5709 (c-unfind-type (buffer-substring-no-properties
5710 end (point)))))
5711 (when (> beg (point-min))
5712 (goto-char beg)
5713 (if (and (c-end-of-current-token) ; only moves when we started in the middle
5714 (progn (goto-char beg)
5715 (c-beginning-of-current-token)))
5716 (c-unfind-type (buffer-substring-no-properties
5717 (point) beg))))))
5719 (if c-maybe-stale-found-type ; e.g. (c-decl-id-start "foo" 97 107 " (* ooka) " "o")
5720 (cond
5721 ;; Changing the amount of (already existing) whitespace - don't do anything.
5722 ((and (c-partial-ws-p beg end)
5723 (or (= beg end) ; removal of WS
5724 (string-match "^[ \t\n\r\f\v]*$" (nth 5 c-maybe-stale-found-type)))))
5726 ;; The syntactic relationship which defined a "found type" has been
5727 ;; destroyed.
5728 ((eq (car c-maybe-stale-found-type) 'c-decl-id-start)
5729 (c-unfind-type (cadr c-maybe-stale-found-type)))
5730 ;; ((eq (car c-maybe-stale-found-type) 'c-decl-type-start) FIXME!!!
5734 ;; Setting and removing syntax properties on < and > in languages (C++
5735 ;; and Java) where they can be template/generic delimiters as well as
5736 ;; their normal meaning of "less/greater than".
5738 ;; Normally, < and > have syntax 'punctuation'. When they are found to
5739 ;; be delimiters, they are marked as such with the category properties
5740 ;; c-<-as-paren-syntax, c->-as-paren-syntax respectively.
5742 ;; STRATEGY:
5744 ;; It is impossible to determine with certainty whether a <..> pair in
5745 ;; C++ is two comparison operators or is template delimiters, unless
5746 ;; one duplicates a lot of a C++ compiler. For example, the following
5747 ;; code fragment:
5749 ;; foo (a < b, c > d) ;
5751 ;; could be a function call with two integer parameters (each a
5752 ;; relational expression), or it could be a constructor for class foo
5753 ;; taking one parameter d of templated type "a < b, c >". They are
5754 ;; somewhat easier to distinguish in Java.
5756 ;; The strategy now (2010-01) adopted is to mark and unmark < and
5757 ;; > IN MATCHING PAIRS ONLY. [Previously, they were marked
5758 ;; individually when their context so indicated. This gave rise to
5759 ;; intractable problems when one of a matching pair was deleted, or
5760 ;; pulled into a literal.]
5762 ;; At each buffer change, the syntax-table properties are removed in a
5763 ;; before-change function and reapplied, when needed, in an
5764 ;; after-change function. It is far more important that the
5765 ;; properties get removed when they they are spurious than that they
5766 ;; be present when wanted.
5767 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5768 (defun c-clear-<-pair-props (&optional pos)
5769 ;; POS (default point) is at a < character. If it is marked with
5770 ;; open paren syntax-table text property, remove the property,
5771 ;; together with the close paren property on the matching > (if
5772 ;; any).
5773 (save-excursion
5774 (if pos
5775 (goto-char pos)
5776 (setq pos (point)))
5777 (when (equal (c-get-char-property (point) 'syntax-table)
5778 c-<-as-paren-syntax)
5779 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5780 (c-go-list-forward))
5781 (when (equal (c-get-char-property (1- (point)) 'syntax-table)
5782 c->-as-paren-syntax) ; should always be true.
5783 (c-unmark-<->-as-paren (1- (point))))
5784 (c-unmark-<->-as-paren pos))))
5786 (defun c-clear->-pair-props (&optional pos)
5787 ;; POS (default point) is at a > character. If it is marked with
5788 ;; close paren syntax-table property, remove the property, together
5789 ;; with the open paren property on the matching < (if any).
5790 (save-excursion
5791 (if pos
5792 (goto-char pos)
5793 (setq pos (point)))
5794 (when (equal (c-get-char-property (point) 'syntax-table)
5795 c->-as-paren-syntax)
5796 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5797 (c-go-up-list-backward))
5798 (when (equal (c-get-char-property (point) 'syntax-table)
5799 c-<-as-paren-syntax) ; should always be true.
5800 (c-unmark-<->-as-paren (point)))
5801 (c-unmark-<->-as-paren pos))))
5803 (defun c-clear-<>-pair-props (&optional pos)
5804 ;; POS (default point) is at a < or > character. If it has an
5805 ;; open/close paren syntax-table property, remove this property both
5806 ;; from the current character and its partner (which will also be
5807 ;; thusly marked).
5808 (cond
5809 ((eq (char-after) ?\<)
5810 (c-clear-<-pair-props pos))
5811 ((eq (char-after) ?\>)
5812 (c-clear->-pair-props pos))
5813 (t (c-benign-error
5814 "c-clear-<>-pair-props called from wrong position"))))
5816 (defun c-clear-<-pair-props-if-match-after (lim &optional pos)
5817 ;; POS (default point) is at a < character. If it is both marked
5818 ;; with open/close paren syntax-table property, and has a matching >
5819 ;; (also marked) which is after LIM, remove the property both from
5820 ;; the current > and its partner. Return t when this happens, nil
5821 ;; when it doesn't.
5822 (save-excursion
5823 (if pos
5824 (goto-char pos)
5825 (setq pos (point)))
5826 (when (equal (c-get-char-property (point) 'syntax-table)
5827 c-<-as-paren-syntax)
5828 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5829 (c-go-list-forward))
5830 (when (and (>= (point) lim)
5831 (equal (c-get-char-property (1- (point)) 'syntax-table)
5832 c->-as-paren-syntax)) ; should always be true.
5833 (c-unmark-<->-as-paren (1- (point)))
5834 (c-unmark-<->-as-paren pos))
5835 t)))
5837 (defun c-clear->-pair-props-if-match-before (lim &optional pos)
5838 ;; POS (default point) is at a > character. If it is both marked
5839 ;; with open/close paren syntax-table property, and has a matching <
5840 ;; (also marked) which is before LIM, remove the property both from
5841 ;; the current < and its partner. Return t when this happens, nil
5842 ;; when it doesn't.
5843 (save-excursion
5844 (if pos
5845 (goto-char pos)
5846 (setq pos (point)))
5847 (when (equal (c-get-char-property (point) 'syntax-table)
5848 c->-as-paren-syntax)
5849 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5850 (c-go-up-list-backward))
5851 (when (and (<= (point) lim)
5852 (equal (c-get-char-property (point) 'syntax-table)
5853 c-<-as-paren-syntax)) ; should always be true.
5854 (c-unmark-<->-as-paren (point))
5855 (c-unmark-<->-as-paren pos))
5856 t)))
5858 ;; Set by c-common-init in cc-mode.el.
5859 (defvar c-new-BEG)
5860 (defvar c-new-END)
5861 ;; Set by c-after-change in cc-mode.el.
5862 (defvar c-old-BEG)
5863 (defvar c-old-END)
5865 (defun c-before-change-check-<>-operators (beg end)
5866 ;; Unmark certain pairs of "< .... >" which are currently marked as
5867 ;; template/generic delimiters. (This marking is via syntax-table text
5868 ;; properties), and expand the (c-new-BEG c-new-END) region to include all
5869 ;; unmarked < and > operators within the certain bounds (see below).
5871 ;; These pairs are those which are in the current "statement" (i.e.,
5872 ;; the region between the {, }, or ; before BEG and the one after
5873 ;; END), and which enclose any part of the interval (BEG END).
5875 ;; Note that in C++ (?and Java), template/generic parens cannot
5876 ;; enclose a brace or semicolon, so we use these as bounds on the
5877 ;; region we must work on.
5879 ;; This function is called from before-change-functions (via
5880 ;; c-get-state-before-change-functions). Thus the buffer is widened,
5881 ;; and point is undefined, both at entry and exit.
5883 ;; FIXME!!! This routine ignores the possibility of macros entirely.
5884 ;; 2010-01-29.
5885 (save-excursion
5886 (c-save-buffer-state
5887 ((beg-lit-start (progn (goto-char beg) (c-literal-start)))
5888 (end-lit-limits (progn (goto-char end) (c-literal-limits)))
5889 new-beg new-end beg-limit end-limit)
5890 ;; Locate the earliest < after the barrier before the changed region,
5891 ;; which isn't already marked as a paren.
5892 (goto-char (or beg-lit-start beg))
5893 (setq beg-limit (c-determine-limit 512))
5895 ;; Remove the syntax-table/category properties from each pertinent <...>
5896 ;; pair. Firstly, the ones with the < before beg and > after beg....
5897 (while (progn (c-syntactic-skip-backward "^;{}<" beg-limit)
5898 (eq (char-before) ?<))
5899 (c-backward-token-2)
5900 (when (eq (char-after) ?<)
5901 (c-clear-<-pair-props-if-match-after beg)))
5902 (c-forward-syntactic-ws)
5903 (setq new-beg (point))
5905 ;; ...Then the ones with < before end and > after end.
5906 (goto-char (if end-lit-limits (cdr end-lit-limits) end))
5907 (setq end-limit (c-determine-+ve-limit 512))
5908 (while (and (c-syntactic-re-search-forward "[;{}>]" end-limit 'end)
5909 (eq (char-before) ?>))
5910 (c-end-of-current-token)
5911 (when (eq (char-before) ?>)
5912 (c-clear->-pair-props-if-match-before end (1- (point)))))
5913 (c-backward-syntactic-ws)
5914 (setq new-end (point))
5916 ;; Extend the fontification region, if needed.
5917 (and new-beg
5918 (< new-beg c-new-BEG)
5919 (setq c-new-BEG new-beg))
5920 (and new-end
5921 (> new-end c-new-END)
5922 (setq c-new-END new-end)))))
5924 (defun c-after-change-check-<>-operators (beg end)
5925 ;; This is called from `after-change-functions' when
5926 ;; c-recognize-<>-arglists' is set. It ensures that no "<" or ">"
5927 ;; chars with paren syntax become part of another operator like "<<"
5928 ;; or ">=".
5930 ;; This function might do hidden buffer changes.
5932 (save-excursion
5933 (goto-char beg)
5934 (when (or (looking-at "[<>]")
5935 (< (skip-chars-backward "<>") 0))
5937 (goto-char beg)
5938 (c-beginning-of-current-token)
5939 (when (and (< (point) beg)
5940 (looking-at c-<>-multichar-token-regexp)
5941 (< beg (setq beg (match-end 0))))
5942 (while (progn (skip-chars-forward "^<>" beg)
5943 (< (point) beg))
5944 (c-clear-<>-pair-props)
5945 (forward-char))))
5947 (when (< beg end)
5948 (goto-char end)
5949 (when (or (looking-at "[<>]")
5950 (< (skip-chars-backward "<>") 0))
5952 (goto-char end)
5953 (c-beginning-of-current-token)
5954 (when (and (< (point) end)
5955 (looking-at c-<>-multichar-token-regexp)
5956 (< end (setq end (match-end 0))))
5957 (while (progn (skip-chars-forward "^<>" end)
5958 (< (point) end))
5959 (c-clear-<>-pair-props)
5960 (forward-char)))))))
5962 (defun c-restore-<>-properties (_beg _end _old-len)
5963 ;; This function is called as an after-change function. It restores the
5964 ;; category/syntax-table properties on template/generic <..> pairs between
5965 ;; c-new-BEG and c-new-END. It may do hidden buffer changes.
5966 (c-save-buffer-state ((c-parse-and-markup-<>-arglists t)
5967 c-restricted-<>-arglists lit-limits)
5968 (goto-char c-new-BEG)
5969 (if (setq lit-limits (c-literal-limits))
5970 (goto-char (cdr lit-limits)))
5971 (while (and (< (point) c-new-END)
5972 (c-syntactic-re-search-forward "<" c-new-END 'bound))
5973 (backward-char)
5974 (save-excursion
5975 (c-backward-token-2)
5976 (setq c-restricted-<>-arglists
5977 (and (not (looking-at c-opt-<>-sexp-key))
5978 (progn (c-backward-syntactic-ws) ; to ( or ,
5979 (and (memq (char-before) '(?\( ?,)) ; what about <?
5980 (not (eq (c-get-char-property (point) 'c-type)
5981 'c-decl-arg-start)))))))
5982 (or (c-forward-<>-arglist nil)
5983 (forward-char)))))
5986 ;; Functions to handle C++ raw strings.
5988 ;; A valid C++ raw string looks like
5989 ;; R"<id>(<contents>)<id>"
5990 ;; , where <id> is an identifier from 0 to 16 characters long, not containing
5991 ;; spaces, control characters, double quote or left/right paren. <contents>
5992 ;; can include anything which isn't the terminating )<id>", including new
5993 ;; lines, "s, parentheses, etc.
5995 ;; CC Mode handles C++ raw strings by the use of `syntax-table' text
5996 ;; properties as follows:
5998 ;; (i) On a validly terminated raw string, no `syntax-table' text properties
5999 ;; are applied to the opening and closing delimiters, but any " in the
6000 ;; contents is given the property value "punctuation" (`(1)') to prevent it
6001 ;; interacting with the "s in the delimiters.
6003 ;; The font locking routine `c-font-lock-c++-raw-strings' (in cc-fonts.el)
6004 ;; recognizes valid raw strings, and fontifies the delimiters (apart from
6005 ;; the parentheses) with the default face and the parentheses and the
6006 ;; <contents> with font-lock-string-face.
6008 ;; (ii) A valid, but unterminated, raw string opening delimiter gets the
6009 ;; "punctuation" value (`(1)') of the `syntax-table' text property, and the
6010 ;; open parenthesis gets the "string fence" value (`(15)').
6012 ;; `c-font-lock-c++-raw-strings' puts c-font-lock-warning-face on the entire
6013 ;; unmatched opening delimiter (from the R up to the open paren), and allows
6014 ;; the rest of the buffer to get font-lock-string-face, caused by the
6015 ;; unmatched "string fence" `syntax-table' text property value.
6017 ;; (iii) Inside a macro, a valid raw string is handled as in (i). An
6018 ;; unmatched opening delimiter is handled slightly differently. In addition
6019 ;; to the "punctuation" and "string fence" properties on the delimiter,
6020 ;; another "string fence" `syntax-table' property is applied to the last
6021 ;; possible character of the macro before the terminating linefeed (if there
6022 ;; is such a character after the "("). This "last possible" character is
6023 ;; never a backslash escaping the end of line. If the character preceding
6024 ;; this "last possible" character is itself a backslash, this preceding
6025 ;; character gets a "punctuation" `syntax-table' value. If the "(" is
6026 ;; already at the end of the macro, it gets the "punctuation" value, and no
6027 ;; "string fence"s are used.
6029 ;; The effect on the fontification of either of these tactics is that rest of
6030 ;; the macro (if any) after the "(" gets font-lock-string-face, but the rest
6031 ;; of the file is fontified normally.
6034 (defun c-raw-string-pos ()
6035 ;; Get POINT's relationship to any containing raw string.
6036 ;; If point isn't in a raw string, return nil.
6037 ;; Otherwise, return the following list:
6039 ;; (POS B\" B\( E\) E\")
6041 ;; , where POS is the symbol `open-delim' if point is in the opening
6042 ;; delimiter, the symbol `close-delim' if it's in the closing delimiter, and
6043 ;; nil if it's in the string body. B\", B\(, E\), E\" are the positions of
6044 ;; the opening and closing quotes and parentheses of a correctly terminated
6045 ;; raw string. (N.B.: E\) and E\" are NOT on the "outside" of these
6046 ;; characters.) If the raw string is not terminated, E\) and E\" are set to
6047 ;; nil.
6049 ;; Note: this routine is dependant upon the correct syntax-table text
6050 ;; properties being set.
6051 (let ((state (c-state-semi-pp-to-literal (point)))
6052 open-quote-pos open-paren-pos close-paren-pos close-quote-pos id)
6053 (save-excursion
6054 (when
6055 (and
6056 (cond
6057 ((null (cadr state))
6058 (or (eq (char-after) ?\")
6059 (search-backward "\"" (max (- (point) 17) (point-min)) t)))
6060 ((and (eq (cadr state) 'string)
6061 (goto-char (nth 2 state))
6062 (or (eq (char-after) ?\")
6063 (search-backward "\"" (max (- (point) 17) (point-min)) t))
6064 (not (bobp)))))
6065 (eq (char-before) ?R)
6066 (looking-at "\"\\([^ ()\\\n\r\t]\\{0,16\\}\\)("))
6067 (setq open-quote-pos (point)
6068 open-paren-pos (match-end 1)
6069 id (match-string-no-properties 1))
6070 (goto-char (1+ open-paren-pos))
6071 (when (and (not (c-get-char-property open-paren-pos 'syntax-table))
6072 (search-forward (concat ")" id "\"") nil t))
6073 (setq close-paren-pos (match-beginning 0)
6074 close-quote-pos (1- (point))))))
6075 (and open-quote-pos
6076 (list
6077 (cond
6078 ((<= (point) open-paren-pos)
6079 'open-delim)
6080 ((and close-paren-pos
6081 (> (point) close-paren-pos))
6082 'close-delim)
6083 (t nil))
6084 open-quote-pos open-paren-pos close-paren-pos close-quote-pos))))
6086 (defun c-depropertize-raw-string (id open-quote open-paren bound)
6087 ;; Point is immediately after a raw string opening delimiter. Remove any
6088 ;; `syntax-table' text properties associated with the delimiter (if it's
6089 ;; unmatched) or the raw string.
6091 ;; ID, a string, is the delimiter's identifier. OPEN-QUOTE and OPEN-PAREN
6092 ;; are the buffer positions of the delimiter's components. BOUND is the
6093 ;; bound for searching for a matching closing delimiter; it is usually nil,
6094 ;; but if we're inside a macro, it's the end of the macro.
6096 ;; Point is moved to after the (terminated) raw string, or left after the
6097 ;; unmatched opening delimiter, as the case may be. The return value is of
6098 ;; no significance.
6099 (let ((open-paren-prop (c-get-char-property open-paren 'syntax-table)))
6100 (cond
6101 ((null open-paren-prop)
6102 ;; A terminated raw string
6103 (when (search-forward (concat ")" id "\"") nil t)
6104 (let* ((closing-paren (match-beginning 0))
6105 (first-punctuation
6106 (save-match-data
6107 (goto-char (1+ open-paren))
6108 (and (c-search-forward-char-property 'syntax-table '(1)
6109 closing-paren)
6110 (1- (point)))))
6112 (when first-punctuation
6113 (c-clear-char-property-with-value
6114 first-punctuation (match-beginning 0) 'syntax-table '(1))
6115 (c-truncate-semi-nonlit-pos-cache first-punctuation)
6116 ))))
6117 ((or (and (equal open-paren-prop '(15)) (null bound))
6118 (equal open-paren-prop '(1)))
6119 ;; An unterminated raw string either not in a macro, or in a macro with
6120 ;; the open parenthesis right up against the end of macro
6121 (c-clear-char-property open-quote 'syntax-table)
6122 (c-truncate-semi-nonlit-pos-cache open-quote)
6123 (c-clear-char-property open-paren 'syntax-table))
6125 ;; An unterminated string in a macro, with at least one char after the
6126 ;; open paren
6127 (c-clear-char-property open-quote 'syntax-table)
6128 (c-truncate-semi-nonlit-pos-cache open-quote)
6129 (c-clear-char-property open-paren 'syntax-table)
6130 (let ((after-string-fence-pos
6131 (save-excursion
6132 (goto-char (1+ open-paren))
6133 (c-search-forward-char-property 'syntax-table '(15) bound))))
6134 (when after-string-fence-pos
6135 (c-clear-char-property (1- after-string-fence-pos) 'syntax-table)))
6136 ))))
6138 (defun c-depropertize-raw-strings-in-region (start finish)
6139 ;; Remove any `syntax-table' text properties associated with C++ raw strings
6140 ;; contained in the region (START FINISH). Point is undefined at entry and
6141 ;; exit, and the return value has no significance.
6142 (goto-char start)
6143 (while (and (< (point) finish)
6144 (re-search-forward
6145 (concat "\\(" ; 1
6146 c-anchored-cpp-prefix ; 2
6147 "\\)\\|\\(" ; 3
6148 "R\"\\([^ ()\\\n\r\t]\\{0,16\\}\\)(" ; 4
6149 "\\)")
6150 finish t))
6151 (when (save-excursion
6152 (goto-char (match-beginning 0)) (not (c-in-literal)))
6153 (if (match-beginning 4) ; the id
6154 ;; We've found a raw string
6155 (c-depropertize-raw-string
6156 (match-string-no-properties 4) ; id
6157 (1+ (match-beginning 3)) ; open quote
6158 (match-end 4) ; open paren
6159 nil) ; bound
6160 ;; We've found a CPP construct. Search for raw strings within it.
6161 (goto-char (match-beginning 2)) ; the "#"
6162 (c-end-of-macro)
6163 (let ((eom (point)))
6164 (goto-char (match-end 2)) ; after the "#".
6165 (while (and (< (point) eom)
6166 (c-syntactic-re-search-forward
6167 "R\"\\([^ ()\\\n\r\t]\\{0,16\\}\\)(" eom t))
6168 (c-depropertize-raw-string
6169 (match-string-no-properties 1) ; id
6170 (1+ (match-beginning 0)) ; open quote
6171 (match-end 1) ; open paren
6172 eom))))))) ; bound.
6174 (defun c-before-change-check-raw-strings (beg end)
6175 ;; This function clears `syntax-table' text properties from C++ raw strings
6176 ;; in the region (c-new-BEG c-new-END). BEG and END are the standard
6177 ;; arguments supplied to any before-change function.
6179 ;; Point is undefined on both entry and exit, and the return value has no
6180 ;; significance.
6182 ;; This function is called as a before-change function solely due to its
6183 ;; membership of the C++ value of `c-get-state-before-change-functions'.
6184 (c-save-buffer-state
6185 ((beg-rs (progn (goto-char beg) (c-raw-string-pos)))
6186 (beg-plus (if (null beg-rs)
6188 (max beg
6189 (1+ (or (nth 4 beg-rs) (nth 2 beg-rs))))))
6190 (end-rs (progn (goto-char end) (c-raw-string-pos))) ; FIXME!!!
6191 ; Optimize this so that we don't call
6192 ; `c-raw-string-pos' twice when once
6193 ; will do. (2016-06-02).
6194 (end-minus (if (null end-rs)
6196 (min end (cadr end-rs))))
6198 (when beg-rs
6199 (setq c-new-BEG (min c-new-BEG (1- (cadr beg-rs)))))
6200 (c-depropertize-raw-strings-in-region c-new-BEG beg-plus)
6202 (when end-rs
6203 (setq c-new-END (max c-new-END
6204 (1+ (or (nth 4 end-rs)
6205 (nth 2 end-rs))))))
6206 (c-depropertize-raw-strings-in-region end-minus c-new-END)))
6208 (defun c-propertize-raw-string-opener (id open-quote open-paren bound)
6209 ;; Point is immediately after a raw string opening delimiter. Apply any
6210 ;; pertinent `syntax-table' text properties to the delimiter and also the
6211 ;; raw string, should there be a valid matching closing delimiter.
6213 ;; ID, a string, is the delimiter's identifier. OPEN-QUOTE and OPEN-PAREN
6214 ;; are the buffer positions of the delimiter's components. BOUND is the
6215 ;; bound for searching for a matching closing delimiter; it is usually nil,
6216 ;; but if we're inside a macro, it's the end of the macro.
6218 ;; Point is moved to after the (terminated) raw string, or left after the
6219 ;; unmatched opening delimiter, as the case may be. The return value is of
6220 ;; no significance.
6221 (if (search-forward (concat ")" id "\"") bound t)
6222 (let ((end-string (match-beginning 0))
6223 (after-quote (match-end 0)))
6224 (goto-char open-paren)
6225 (while (progn (skip-syntax-forward "^\"" end-string)
6226 (< (point) end-string))
6227 (c-put-char-property (point) 'syntax-table '(1)) ; punctuation
6228 (c-truncate-semi-nonlit-pos-cache (point))
6229 (forward-char))
6230 (goto-char after-quote))
6231 (c-put-char-property open-quote 'syntax-table '(1)) ; punctuation
6232 (c-truncate-semi-nonlit-pos-cache open-quote)
6233 (c-put-char-property open-paren 'syntax-table '(15)) ; generic string
6234 (when bound
6235 ;; In a CPP construct, we try to apply a generic-string `syntax-table'
6236 ;; text property to the last possible character in the string, so that
6237 ;; only characters within the macro get "stringed out".
6238 (goto-char bound)
6239 (if (save-restriction
6240 (narrow-to-region (1+ open-paren) (point-max))
6241 (re-search-backward
6242 (eval-when-compile
6243 ;; This regular expression matches either an escape pair (which
6244 ;; isn't an escaped NL) (submatch 5) or a non-escaped character
6245 ;; (which isn't itself a backslash) (submatch 10). The long
6246 ;; preambles to these (respectively submatches 2-4 and 6-9)
6247 ;; ensure that we have the correct parity for sequences of
6248 ;; backslashes, etc..
6249 (concat "\\(" ; 1
6250 "\\(\\`[^\\]?\\|[^\\][^\\]\\)\\(\\\\\\(.\\|\n\\)\\)*" ; 2-4
6251 "\\(\\\\.\\)" ; 5
6252 "\\|"
6253 "\\(\\`\\|[^\\]\\|\\(\\`[^\\]?\\|[^\\][^\\]\\)\\(\\\\\\(.\\|\n\\)\\)+\\)" ; 6-9
6254 "\\([^\\]\\)" ; 10
6255 "\\)"
6256 "\\(\\\\\n\\)*\\=")) ; 11
6257 (1+ open-paren) t))
6258 (if (match-beginning 10)
6259 (progn
6260 (c-put-char-property (match-beginning 10) 'syntax-table '(15))
6261 (c-truncate-semi-nonlit-pos-cache (match-beginning 10)))
6262 (c-put-char-property (match-beginning 5) 'syntax-table '(1))
6263 (c-put-char-property (1+ (match-beginning 5)) 'syntax-table '(15))
6264 (c-truncate-semi-nonlit-pos-cache (1+ (match-beginning 5))))
6265 (c-put-char-property open-paren 'syntax-table '(1)))
6266 (goto-char bound))))
6268 (defun c-after-change-re-mark-raw-strings (beg end old-len)
6269 ;; This function applies `syntax-table' text properties to C++ raw strings
6270 ;; beginning in the region (c-new-BEG c-new-END). BEG, END, and OLD-LEN are
6271 ;; the standard arguments supplied to any after-change function.
6273 ;; Point is undefined on both entry and exit, and the return value has no
6274 ;; significance.
6276 ;; This function is called as an after-change function solely due to its
6277 ;; membership of the C++ value of `c-before-font-lock-functions'.
6278 (c-save-buffer-state ()
6279 ;; If the region (c-new-BEG c-new-END) has expanded, remove
6280 ;; `syntax-table' text-properties from the new piece(s).
6281 (when (< c-new-BEG c-old-BEG)
6282 (let ((beg-rs (progn (goto-char c-old-BEG) (c-raw-string-pos))))
6283 (c-depropertize-raw-strings-in-region
6284 c-new-BEG
6285 (if beg-rs
6286 (1+ (or (nth 4 beg-rs) (nth 2 beg-rs)))
6287 c-old-BEG))))
6288 (when (> c-new-END c-old-END)
6289 (let ((end-rs (progn (goto-char c-old-END) (c-raw-string-pos))))
6290 (c-depropertize-raw-strings-in-region
6291 (if end-rs
6292 (cadr end-rs)
6293 c-old-END)
6294 c-new-END)))
6296 (goto-char c-new-BEG)
6297 (while (and (< (point) c-new-END)
6298 (re-search-forward
6299 (concat "\\(" ; 1
6300 c-anchored-cpp-prefix ; 2
6301 "\\)\\|\\(" ; 3
6302 "R\"\\([^ ()\\\n\r\t]\\{0,16\\}\\)(" ; 4
6303 "\\)")
6304 c-new-END t))
6305 (when (save-excursion
6306 (goto-char (match-beginning 0)) (not (c-in-literal)))
6307 (if (match-beginning 4) ; the id
6308 ;; We've found a raw string.
6309 (c-propertize-raw-string-opener
6310 (match-string-no-properties 4) ; id
6311 (1+ (match-beginning 3)) ; open quote
6312 (match-end 4) ; open paren
6313 nil) ; bound
6314 ;; We've found a CPP construct. Search for raw strings within it.
6315 (goto-char (match-beginning 2)) ; the "#"
6316 (c-end-of-macro)
6317 (let ((eom (point)))
6318 (goto-char (match-end 2)) ; after the "#".
6319 (while (and (< (point) eom)
6320 (c-syntactic-re-search-forward
6321 "R\"\\([^ ()\\\n\r\t]\\{0,16\\}\\)(" eom t))
6322 (c-propertize-raw-string-opener
6323 (match-string-no-properties 1) ; id
6324 (1+ (match-beginning 0)) ; open quote
6325 (match-end 1) ; open paren
6326 eom)))))))) ; bound
6329 ;; Handling of small scale constructs like types and names.
6331 ;; Dynamically bound variable that instructs `c-forward-type' to also
6332 ;; treat possible types (i.e. those that it normally returns 'maybe or
6333 ;; 'found for) as actual types (and always return 'found for them).
6334 ;; This means that it records them in `c-record-type-identifiers' if
6335 ;; that is set, and that it adds them to `c-found-types'.
6336 (defvar c-promote-possible-types nil)
6338 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
6339 ;; mark up successfully parsed arglists with paren syntax properties on
6340 ;; the surrounding angle brackets and with `c-<>-arg-sep' in the
6341 ;; `c-type' property of each argument separating comma.
6343 ;; Setting this variable also makes `c-forward-<>-arglist' recurse into
6344 ;; all arglists for side effects (i.e. recording types), otherwise it
6345 ;; exploits any existing paren syntax properties to quickly jump to the
6346 ;; end of already parsed arglists.
6348 ;; Marking up the arglists is not the default since doing that correctly
6349 ;; depends on a proper value for `c-restricted-<>-arglists'.
6350 (defvar c-parse-and-markup-<>-arglists nil)
6352 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
6353 ;; not accept arglists that contain binary operators.
6355 ;; This is primarily used to handle C++ template arglists. C++
6356 ;; disambiguates them by checking whether the preceding name is a
6357 ;; template or not. We can't do that, so we assume it is a template
6358 ;; if it can be parsed as one. That usually works well since
6359 ;; comparison expressions on the forms "a < b > c" or "a < b, c > d"
6360 ;; in almost all cases would be pointless.
6362 ;; However, in function arglists, e.g. in "foo (a < b, c > d)", we
6363 ;; should let the comma separate the function arguments instead. And
6364 ;; in a context where the value of the expression is taken, e.g. in
6365 ;; "if (a < b || c > d)", it's probably not a template.
6366 (defvar c-restricted-<>-arglists nil)
6368 ;; Dynamically bound variables that instructs
6369 ;; `c-forward-keyword-clause', `c-forward-<>-arglist',
6370 ;; `c-forward-name', `c-forward-type', `c-forward-decl-or-cast-1', and
6371 ;; `c-forward-label' to record the ranges of all the type and
6372 ;; reference identifiers they encounter. They will build lists on
6373 ;; these variables where each element is a cons of the buffer
6374 ;; positions surrounding each identifier. This recording is only
6375 ;; activated when `c-record-type-identifiers' is non-nil.
6377 ;; All known types that can't be identifiers are recorded, and also
6378 ;; other possible types if `c-promote-possible-types' is set.
6379 ;; Recording is however disabled inside angle bracket arglists that
6380 ;; are encountered inside names and other angle bracket arglists.
6381 ;; Such occurrences are taken care of by `c-font-lock-<>-arglists'
6382 ;; instead.
6384 ;; Only the names in C++ template style references (e.g. "tmpl" in
6385 ;; "tmpl<a,b>::foo") are recorded as references, other references
6386 ;; aren't handled here.
6388 ;; `c-forward-label' records the label identifier(s) on
6389 ;; `c-record-ref-identifiers'.
6390 (defvar c-record-type-identifiers nil)
6391 (defvar c-record-ref-identifiers nil)
6393 ;; This variable will receive a cons cell of the range of the last
6394 ;; single identifier symbol stepped over by `c-forward-name' if it's
6395 ;; successful. This is the range that should be put on one of the
6396 ;; record lists above by the caller. It's assigned nil if there's no
6397 ;; such symbol in the name.
6398 (defvar c-last-identifier-range nil)
6400 (defmacro c-record-type-id (range)
6401 (if (eq (car-safe range) 'cons)
6402 ;; Always true.
6403 `(setq c-record-type-identifiers
6404 (cons ,range c-record-type-identifiers))
6405 `(let ((range ,range))
6406 (if range
6407 (setq c-record-type-identifiers
6408 (cons range c-record-type-identifiers))))))
6410 (defmacro c-record-ref-id (range)
6411 (if (eq (car-safe range) 'cons)
6412 ;; Always true.
6413 `(setq c-record-ref-identifiers
6414 (cons ,range c-record-ref-identifiers))
6415 `(let ((range ,range))
6416 (if range
6417 (setq c-record-ref-identifiers
6418 (cons range c-record-ref-identifiers))))))
6420 ;; Dynamically bound variable that instructs `c-forward-type' to
6421 ;; record the ranges of types that only are found. Behaves otherwise
6422 ;; like `c-record-type-identifiers'.
6423 (defvar c-record-found-types nil)
6425 (defmacro c-forward-keyword-prefixed-id (type)
6426 ;; Used internally in `c-forward-keyword-clause' to move forward
6427 ;; over a type (if TYPE is 'type) or a name (otherwise) which
6428 ;; possibly is prefixed by keywords and their associated clauses.
6429 ;; Try with a type/name first to not trip up on those that begin
6430 ;; with a keyword. Return t if a known or found type is moved
6431 ;; over. The point is clobbered if nil is returned. If range
6432 ;; recording is enabled, the identifier is recorded on as a type
6433 ;; if TYPE is 'type or as a reference if TYPE is 'ref.
6435 ;; This macro might do hidden buffer changes.
6436 `(let (res)
6437 (setq c-last-identifier-range nil)
6438 (while (if (setq res ,(if (eq type 'type)
6439 `(c-forward-type)
6440 `(c-forward-name)))
6442 (cond ((looking-at c-keywords-regexp)
6443 (c-forward-keyword-clause 1))
6444 ((and c-opt-cpp-prefix
6445 (looking-at c-noise-macro-with-parens-name-re))
6446 (c-forward-noise-clause)))))
6447 (when (memq res '(t known found prefix maybe))
6448 (when c-record-type-identifiers
6449 ,(if (eq type 'type)
6450 `(c-record-type-id c-last-identifier-range)
6451 `(c-record-ref-id c-last-identifier-range)))
6452 t)))
6454 (defmacro c-forward-id-comma-list (type update-safe-pos)
6455 ;; Used internally in `c-forward-keyword-clause' to move forward
6456 ;; over a comma separated list of types or names using
6457 ;; `c-forward-keyword-prefixed-id'.
6459 ;; This macro might do hidden buffer changes.
6460 `(while (and (progn
6461 ,(when update-safe-pos
6462 `(setq safe-pos (point)))
6463 (eq (char-after) ?,))
6464 (progn
6465 (forward-char)
6466 (c-forward-syntactic-ws)
6467 (c-forward-keyword-prefixed-id ,type)))))
6469 (defun c-forward-noise-clause ()
6470 ;; Point is at a c-noise-macro-with-parens-names macro identifier. Go
6471 ;; forward over this name, any parenthesis expression which follows it, and
6472 ;; any syntactic WS, ending up at the next token. If there is an unbalanced
6473 ;; paren expression, leave point at it. Always Return t.
6474 (c-forward-token-2)
6475 (if (and (eq (char-after) ?\()
6476 (c-go-list-forward))
6477 (c-forward-syntactic-ws))
6480 (defun c-forward-keyword-clause (match)
6481 ;; Submatch MATCH in the current match data is assumed to surround a
6482 ;; token. If it's a keyword, move over it and any immediately
6483 ;; following clauses associated with it, stopping at the start of
6484 ;; the next token. t is returned in that case, otherwise the point
6485 ;; stays and nil is returned. The kind of clauses that are
6486 ;; recognized are those specified by `c-type-list-kwds',
6487 ;; `c-ref-list-kwds', `c-colon-type-list-kwds',
6488 ;; `c-paren-nontype-kwds', `c-paren-type-kwds', `c-<>-type-kwds',
6489 ;; and `c-<>-arglist-kwds'.
6491 ;; This function records identifier ranges on
6492 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6493 ;; `c-record-type-identifiers' is non-nil.
6495 ;; Note that for `c-colon-type-list-kwds', which doesn't necessary
6496 ;; apply directly after the keyword, the type list is moved over
6497 ;; only when there is no unaccounted token before it (i.e. a token
6498 ;; that isn't moved over due to some other keyword list). The
6499 ;; identifier ranges in the list are still recorded if that should
6500 ;; be done, though.
6502 ;; This function might do hidden buffer changes.
6504 (let ((kwd-sym (c-keyword-sym (match-string match))) safe-pos pos
6505 ;; The call to `c-forward-<>-arglist' below is made after
6506 ;; `c-<>-sexp-kwds' keywords, so we're certain they actually
6507 ;; are angle bracket arglists and `c-restricted-<>-arglists'
6508 ;; should therefore be nil.
6509 (c-parse-and-markup-<>-arglists t)
6510 c-restricted-<>-arglists)
6512 (when kwd-sym
6513 (goto-char (match-end match))
6514 (c-forward-syntactic-ws)
6515 (setq safe-pos (point))
6517 (cond
6518 ((and (c-keyword-member kwd-sym 'c-type-list-kwds)
6519 (c-forward-keyword-prefixed-id type))
6520 ;; There's a type directly after a keyword in `c-type-list-kwds'.
6521 (c-forward-id-comma-list type t))
6523 ((and (c-keyword-member kwd-sym 'c-ref-list-kwds)
6524 (c-forward-keyword-prefixed-id ref))
6525 ;; There's a name directly after a keyword in `c-ref-list-kwds'.
6526 (c-forward-id-comma-list ref t))
6528 ((and (c-keyword-member kwd-sym 'c-paren-any-kwds)
6529 (eq (char-after) ?\())
6530 ;; There's an open paren after a keyword in `c-paren-any-kwds'.
6532 (forward-char)
6533 (when (and (setq pos (c-up-list-forward))
6534 (eq (char-before pos) ?\)))
6535 (when (and c-record-type-identifiers
6536 (c-keyword-member kwd-sym 'c-paren-type-kwds))
6537 ;; Use `c-forward-type' on every identifier we can find
6538 ;; inside the paren, to record the types.
6539 (while (c-syntactic-re-search-forward c-symbol-start pos t)
6540 (goto-char (match-beginning 0))
6541 (unless (c-forward-type)
6542 (looking-at c-symbol-key) ; Always matches.
6543 (goto-char (match-end 0)))))
6545 (goto-char pos)
6546 (c-forward-syntactic-ws)
6547 (setq safe-pos (point))))
6549 ((and (c-keyword-member kwd-sym 'c-<>-sexp-kwds)
6550 (eq (char-after) ?<)
6551 (c-forward-<>-arglist (c-keyword-member kwd-sym 'c-<>-type-kwds)))
6552 (c-forward-syntactic-ws)
6553 (setq safe-pos (point)))
6555 ((and (c-keyword-member kwd-sym 'c-nonsymbol-sexp-kwds)
6556 (not (looking-at c-symbol-start))
6557 (c-safe (c-forward-sexp) t))
6558 (c-forward-syntactic-ws)
6559 (setq safe-pos (point))))
6561 (when (c-keyword-member kwd-sym 'c-colon-type-list-kwds)
6562 (if (eq (char-after) ?:)
6563 ;; If we are at the colon already, we move over the type
6564 ;; list after it.
6565 (progn
6566 (forward-char)
6567 (c-forward-syntactic-ws)
6568 (when (c-forward-keyword-prefixed-id type)
6569 (c-forward-id-comma-list type t)))
6570 ;; Not at the colon, so stop here. But the identifier
6571 ;; ranges in the type list later on should still be
6572 ;; recorded.
6573 (and c-record-type-identifiers
6574 (progn
6575 ;; If a keyword matched both one of the types above and
6576 ;; this one, we match `c-colon-type-list-re' after the
6577 ;; clause matched above.
6578 (goto-char safe-pos)
6579 (looking-at c-colon-type-list-re))
6580 (progn
6581 (goto-char (match-end 0))
6582 (c-forward-syntactic-ws)
6583 (c-forward-keyword-prefixed-id type))
6584 ;; There's a type after the `c-colon-type-list-re' match
6585 ;; after a keyword in `c-colon-type-list-kwds'.
6586 (c-forward-id-comma-list type nil))))
6588 (goto-char safe-pos)
6589 t)))
6591 ;; cc-mode requires cc-fonts.
6592 (declare-function c-fontify-recorded-types-and-refs "cc-fonts" ())
6594 (defun c-forward-<>-arglist (all-types)
6595 ;; The point is assumed to be at a "<". Try to treat it as the open
6596 ;; paren of an angle bracket arglist and move forward to the
6597 ;; corresponding ">". If successful, the point is left after the
6598 ;; ">" and t is returned, otherwise the point isn't moved and nil is
6599 ;; returned. If ALL-TYPES is t then all encountered arguments in
6600 ;; the arglist that might be types are treated as found types.
6602 ;; The variable `c-parse-and-markup-<>-arglists' controls how this
6603 ;; function handles text properties on the angle brackets and argument
6604 ;; separating commas.
6606 ;; `c-restricted-<>-arglists' controls how lenient the template
6607 ;; arglist recognition should be.
6609 ;; This function records identifier ranges on
6610 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6611 ;; `c-record-type-identifiers' is non-nil.
6613 ;; This function might do hidden buffer changes.
6615 (let ((start (point))
6616 ;; If `c-record-type-identifiers' is set then activate
6617 ;; recording of any found types that constitute an argument in
6618 ;; the arglist.
6619 (c-record-found-types (if c-record-type-identifiers t)))
6620 (if (catch 'angle-bracket-arglist-escape
6621 (setq c-record-found-types
6622 (c-forward-<>-arglist-recur all-types)))
6623 (progn
6624 (when (consp c-record-found-types)
6625 (setq c-record-type-identifiers
6626 ;; `nconc' doesn't mind that the tail of
6627 ;; `c-record-found-types' is t.
6628 (nconc c-record-found-types c-record-type-identifiers)))
6631 (goto-char start)
6632 nil)))
6634 (defun c-forward-<>-arglist-recur (all-types)
6635 ;; Recursive part of `c-forward-<>-arglist'.
6637 ;; This function might do hidden buffer changes.
6638 (let ((start (point)) res pos
6639 ;; Cover this so that any recorded found type ranges are
6640 ;; automatically lost if it turns out to not be an angle
6641 ;; bracket arglist. It's propagated through the return value
6642 ;; on successful completion.
6643 (c-record-found-types c-record-found-types)
6644 ;; List that collects the positions after the argument
6645 ;; separating ',' in the arglist.
6646 arg-start-pos)
6647 ;; If the '<' has paren open syntax then we've marked it as an angle
6648 ;; bracket arglist before, so skip to the end.
6649 (if (and (not c-parse-and-markup-<>-arglists)
6650 (c-get-char-property (point) 'syntax-table))
6652 (progn
6653 (forward-char)
6654 (if (and (c-go-up-list-forward)
6655 (eq (char-before) ?>))
6657 ;; Got unmatched paren angle brackets. We don't clear the paren
6658 ;; syntax properties and retry, on the basis that it's very
6659 ;; unlikely that paren angle brackets become operators by code
6660 ;; manipulation. It's far more likely that it doesn't match due
6661 ;; to narrowing or some temporary change.
6662 (goto-char start)
6663 nil))
6665 (forward-char) ; Forward over the opening '<'.
6667 (unless (looking-at c-<-op-cont-regexp)
6668 ;; go forward one non-alphanumeric character (group) per iteration of
6669 ;; this loop.
6670 (while (and
6671 (progn
6672 (c-forward-syntactic-ws)
6673 (when (or (and c-record-type-identifiers all-types)
6674 (not (equal c-inside-<>-type-key "\\(\\<\\>\\)")))
6675 (c-forward-syntactic-ws)
6676 (cond
6677 ((eq (char-after) ??)
6678 (forward-char))
6679 ((and (looking-at c-identifier-start)
6680 (not (looking-at c-keywords-regexp)))
6681 (if (or (and all-types c-record-type-identifiers)
6682 (c-major-mode-is 'java-mode))
6683 ;; All encountered identifiers are types, so set the
6684 ;; promote flag and parse the type.
6685 (let ((c-promote-possible-types t)
6686 (c-record-found-types t))
6687 (c-forward-type))
6688 (c-forward-token-2))))
6690 (c-forward-syntactic-ws)
6692 (when (looking-at c-inside-<>-type-key)
6693 (goto-char (match-end 1))
6694 (c-forward-syntactic-ws)
6695 (let ((c-promote-possible-types t)
6696 (c-record-found-types t))
6697 (c-forward-type))
6698 (c-forward-syntactic-ws)))
6700 (setq pos (point)) ; e.g. first token inside the '<'
6702 ;; Note: These regexps exploit the match order in \| so
6703 ;; that "<>" is matched by "<" rather than "[^>:-]>".
6704 (c-syntactic-re-search-forward
6705 ;; Stop on ',', '|', '&', '+' and '-' to catch
6706 ;; common binary operators that could be between
6707 ;; two comparison expressions "a<b" and "c>d".
6708 ;; 2016-02-11: C++11 templates can now contain arithmetic
6709 ;; expressions, so template detection in C++ is now less
6710 ;; robust than it was.
6711 c-<>-notable-chars-re
6712 nil t t))
6714 (cond
6715 ((eq (char-before) ?>)
6716 ;; Either an operator starting with '>' or the end of
6717 ;; the angle bracket arglist.
6719 (if (save-excursion
6720 (c-backward-token-2)
6721 (looking-at c-multichar->-op-not->>-regexp))
6722 (progn
6723 (goto-char (match-end 0))
6724 t) ; Continue the loop.
6726 ;; The angle bracket arglist is finished.
6727 (when c-parse-and-markup-<>-arglists
6728 (while arg-start-pos
6729 (c-put-c-type-property (1- (car arg-start-pos))
6730 'c-<>-arg-sep)
6731 (setq arg-start-pos (cdr arg-start-pos)))
6732 (c-mark-<-as-paren start)
6733 (c-mark->-as-paren (1- (point))))
6734 (setq res t)
6735 nil)) ; Exit the loop.
6737 ((eq (char-before) ?<)
6738 ;; Either an operator starting with '<' or a nested arglist.
6739 (setq pos (point))
6740 (let (id-start id-end subres keyword-match)
6741 (cond
6742 ;; The '<' begins a multi-char operator.
6743 ((looking-at c-<-op-cont-regexp)
6744 (goto-char (match-end 0)))
6745 ;; We're at a nested <.....>
6746 ((progn
6747 (backward-char) ; to the '<'
6748 (and
6749 (save-excursion
6750 ;; There's always an identifier before an angle
6751 ;; bracket arglist, or a keyword in `c-<>-type-kwds'
6752 ;; or `c-<>-arglist-kwds'.
6753 (c-backward-syntactic-ws)
6754 (setq id-end (point))
6755 (c-simple-skip-symbol-backward)
6756 (when (or (setq keyword-match
6757 (looking-at c-opt-<>-sexp-key))
6758 (not (looking-at c-keywords-regexp)))
6759 (setq id-start (point))))
6760 (setq subres
6761 (let ((c-promote-possible-types t)
6762 (c-record-found-types t))
6763 (c-forward-<>-arglist-recur
6764 (and keyword-match
6765 (c-keyword-member
6766 (c-keyword-sym (match-string 1))
6767 'c-<>-type-kwds))))))
6768 (or subres (goto-char pos))
6769 subres)
6770 ;; It was an angle bracket arglist.
6771 (setq c-record-found-types subres)
6773 ;; Record the identifier before the template as a type
6774 ;; or reference depending on whether the arglist is last
6775 ;; in a qualified identifier.
6776 (when (and c-record-type-identifiers
6777 (not keyword-match))
6778 (if (and c-opt-identifier-concat-key
6779 (progn
6780 (c-forward-syntactic-ws)
6781 (looking-at c-opt-identifier-concat-key)))
6782 (c-record-ref-id (cons id-start id-end))
6783 (c-record-type-id (cons id-start id-end)))))
6785 ;; At a "less than" operator.
6787 ;; (forward-char) ; NO! We've already gone over the <.
6789 t) ; carry on looping.
6791 ((and
6792 (eq (char-before) ?\()
6793 (c-go-up-list-forward)
6794 (eq (char-before) ?\))))
6796 ((and (not c-restricted-<>-arglists)
6797 (or (and (eq (char-before) ?&)
6798 (not (eq (char-after) ?&)))
6799 (eq (char-before) ?,)))
6800 ;; Just another argument. Record the position. The
6801 ;; type check stuff that made us stop at it is at
6802 ;; the top of the loop.
6803 (setq arg-start-pos (cons (point) arg-start-pos)))
6806 ;; Got a character that can't be in an angle bracket
6807 ;; arglist argument. Abort using `throw', since
6808 ;; it's useless to try to find a surrounding arglist
6809 ;; if we're nested.
6810 (throw 'angle-bracket-arglist-escape nil))))))
6811 (if res
6812 (or c-record-found-types t)))))
6814 (defun c-backward-<>-arglist (all-types &optional limit)
6815 ;; The point is assumed to be directly after a ">". Try to treat it
6816 ;; as the close paren of an angle bracket arglist and move back to
6817 ;; the corresponding "<". If successful, the point is left at
6818 ;; the "<" and t is returned, otherwise the point isn't moved and
6819 ;; nil is returned. ALL-TYPES is passed on to
6820 ;; `c-forward-<>-arglist'.
6822 ;; If the optional LIMIT is given, it bounds the backward search.
6823 ;; It's then assumed to be at a syntactically relevant position.
6825 ;; This is a wrapper around `c-forward-<>-arglist'. See that
6826 ;; function for more details.
6828 (let ((start (point)))
6829 (backward-char)
6830 (if (and (not c-parse-and-markup-<>-arglists)
6831 (c-get-char-property (point) 'syntax-table))
6833 (if (and (c-go-up-list-backward)
6834 (eq (char-after) ?<))
6836 ;; See corresponding note in `c-forward-<>-arglist'.
6837 (goto-char start)
6838 nil)
6840 (while (progn
6841 (c-syntactic-skip-backward "^<;{}" limit t)
6843 (and
6844 (if (eq (char-before) ?<)
6846 ;; Stopped at bob or a char that isn't allowed in an
6847 ;; arglist, so we've failed.
6848 (goto-char start)
6849 nil)
6851 (if (> (point)
6852 (progn (c-beginning-of-current-token)
6853 (point)))
6854 ;; If we moved then the "<" was part of some
6855 ;; multicharacter token.
6858 (backward-char)
6859 (let ((beg-pos (point)))
6860 (if (c-forward-<>-arglist all-types)
6861 (cond ((= (point) start)
6862 ;; Matched the arglist. Break the while.
6863 (goto-char beg-pos)
6864 nil)
6865 ((> (point) start)
6866 ;; We started from a non-paren ">" inside an
6867 ;; arglist.
6868 (goto-char start)
6869 nil)
6871 ;; Matched a shorter arglist. Can be a nested
6872 ;; one so continue looking.
6873 (goto-char beg-pos)
6875 t))))))
6877 (/= (point) start))))
6879 (defun c-forward-name ()
6880 ;; Move forward over a complete name if at the beginning of one,
6881 ;; stopping at the next following token. A keyword, as such,
6882 ;; doesn't count as a name. If the point is not at something that
6883 ;; is recognized as a name then it stays put.
6885 ;; A name could be something as simple as "foo" in C or something as
6886 ;; complex as "X<Y<class A<int>::B, BIT_MAX >> b>, ::operator<> ::
6887 ;; Z<(a>b)> :: operator const X<&foo>::T Q::G<unsigned short
6888 ;; int>::*volatile const" in C++ (this function is actually little
6889 ;; more than a `looking-at' call in all modes except those that,
6890 ;; like C++, have `c-recognize-<>-arglists' set).
6892 ;; Return
6893 ;; o - nil if no name is found;
6894 ;; o - 'template if it's an identifier ending with an angle bracket
6895 ;; arglist;
6896 ;; o - 'operator of it's an operator identifier;
6897 ;; o - t if it's some other kind of name.
6899 ;; This function records identifier ranges on
6900 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6901 ;; `c-record-type-identifiers' is non-nil.
6903 ;; This function might do hidden buffer changes.
6905 (let ((pos (point)) (start (point)) res id-start id-end
6906 ;; Turn off `c-promote-possible-types' here since we might
6907 ;; call `c-forward-<>-arglist' and we don't want it to promote
6908 ;; every suspect thing in the arglist to a type. We're
6909 ;; typically called from `c-forward-type' in this case, and
6910 ;; the caller only wants the top level type that it finds to
6911 ;; be promoted.
6912 c-promote-possible-types)
6913 (while
6914 (and
6915 (looking-at c-identifier-key)
6917 (progn
6918 ;; Check for keyword. We go to the last symbol in
6919 ;; `c-identifier-key' first.
6920 (goto-char (setq id-end (match-end 0)))
6921 (c-simple-skip-symbol-backward)
6922 (setq id-start (point))
6924 (if (looking-at c-keywords-regexp)
6925 (when (and (c-major-mode-is 'c++-mode)
6926 (looking-at
6927 (cc-eval-when-compile
6928 (concat "\\(operator\\|\\(template\\)\\)"
6929 "\\(" (c-lang-const c-nonsymbol-key c++)
6930 "\\|$\\)")))
6931 (if (match-beginning 2)
6932 ;; "template" is only valid inside an
6933 ;; identifier if preceded by "::".
6934 (save-excursion
6935 (c-backward-syntactic-ws)
6936 (and (c-safe (backward-char 2) t)
6937 (looking-at "::")))
6940 ;; Handle a C++ operator or template identifier.
6941 (goto-char id-end)
6942 (c-forward-syntactic-ws)
6943 (cond ((eq (char-before id-end) ?e)
6944 ;; Got "... ::template".
6945 (let ((subres (c-forward-name)))
6946 (when subres
6947 (setq pos (point)
6948 res subres))))
6950 ((looking-at c-identifier-start)
6951 ;; Got a cast operator.
6952 (when (c-forward-type)
6953 (setq pos (point)
6954 res 'operator)
6955 ;; Now we should match a sequence of either
6956 ;; '*', '&' or a name followed by ":: *",
6957 ;; where each can be followed by a sequence
6958 ;; of `c-opt-type-modifier-key'.
6959 (while (cond ((looking-at "[*&]")
6960 (goto-char (match-end 0))
6962 ((looking-at c-identifier-start)
6963 (and (c-forward-name)
6964 (looking-at "::")
6965 (progn
6966 (goto-char (match-end 0))
6967 (c-forward-syntactic-ws)
6968 (eq (char-after) ?*))
6969 (progn
6970 (forward-char)
6971 t))))
6972 (while (progn
6973 (c-forward-syntactic-ws)
6974 (setq pos (point))
6975 (looking-at c-opt-type-modifier-key))
6976 (goto-char (match-end 1))))))
6978 ((looking-at c-overloadable-operators-regexp)
6979 ;; Got some other operator.
6980 (setq c-last-identifier-range
6981 (cons (point) (match-end 0)))
6982 (goto-char (match-end 0))
6983 (c-forward-syntactic-ws)
6984 (setq pos (point)
6985 res 'operator)))
6987 nil)
6989 ;; `id-start' is equal to `id-end' if we've jumped over
6990 ;; an identifier that doesn't end with a symbol token.
6991 ;; That can occur e.g. for Java import directives on the
6992 ;; form "foo.bar.*".
6993 (when (and id-start (/= id-start id-end))
6994 (setq c-last-identifier-range
6995 (cons id-start id-end)))
6996 (goto-char id-end)
6997 (c-forward-syntactic-ws)
6998 (setq pos (point)
6999 res t)))
7001 (progn
7002 (goto-char pos)
7003 (when (or c-opt-identifier-concat-key
7004 c-recognize-<>-arglists)
7006 (cond
7007 ((and c-opt-identifier-concat-key
7008 (looking-at c-opt-identifier-concat-key))
7009 ;; Got a concatenated identifier. This handles the
7010 ;; cases with tricky syntactic whitespace that aren't
7011 ;; covered in `c-identifier-key'.
7012 (goto-char (match-end 0))
7013 (c-forward-syntactic-ws)
7016 ((and c-recognize-<>-arglists
7017 (eq (char-after) ?<))
7018 ;; Maybe an angle bracket arglist.
7019 (when (let (c-last-identifier-range)
7020 (c-forward-<>-arglist nil))
7022 (c-forward-syntactic-ws)
7023 (unless (eq (char-after) ?\()
7024 (setq c-last-identifier-range nil)
7025 (c-add-type start (1+ pos)))
7026 (setq pos (point))
7028 (if (and c-opt-identifier-concat-key
7029 (looking-at c-opt-identifier-concat-key))
7031 ;; Continue if there's an identifier concatenation
7032 ;; operator after the template argument.
7033 (progn
7034 (when (and c-record-type-identifiers id-start)
7035 (c-record-ref-id (cons id-start id-end)))
7036 (forward-char 2)
7037 (c-forward-syntactic-ws)
7040 (when (and c-record-type-identifiers id-start
7041 (not (eq (char-after) ?\()))
7042 (c-record-type-id (cons id-start id-end)))
7043 (setq res 'template)
7044 nil)))
7045 )))))
7047 (goto-char pos)
7048 res))
7050 (defun c-forward-type (&optional brace-block-too)
7051 ;; Move forward over a type spec if at the beginning of one,
7052 ;; stopping at the next following token. The keyword "typedef"
7053 ;; isn't part of a type spec here.
7055 ;; BRACE-BLOCK-TOO, when non-nil, means move over the brace block in
7056 ;; constructs like "struct foo {...} bar ;" or "struct {...} bar;".
7057 ;; The current (2009-03-10) intention is to convert all uses of
7058 ;; `c-forward-type' to call with this parameter set, then to
7059 ;; eliminate it.
7061 ;; Return
7062 ;; o - t if it's a known type that can't be a name or other
7063 ;; expression;
7064 ;; o - 'known if it's an otherwise known type (according to
7065 ;; `*-font-lock-extra-types');
7066 ;; o - 'prefix if it's a known prefix of a type;
7067 ;; o - 'found if it's a type that matches one in `c-found-types';
7068 ;; o - 'maybe if it's an identifier that might be a type;
7069 ;; o - 'decltype if it's a decltype(variable) declaration; - or
7070 ;; o - nil if it can't be a type (the point isn't moved then).
7072 ;; The point is assumed to be at the beginning of a token.
7074 ;; Note that this function doesn't skip past the brace definition
7075 ;; that might be considered part of the type, e.g.
7076 ;; "enum {a, b, c} foo".
7078 ;; This function records identifier ranges on
7079 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
7080 ;; `c-record-type-identifiers' is non-nil.
7082 ;; This function might do hidden buffer changes.
7083 (when (and c-recognize-<>-arglists
7084 (looking-at "<"))
7085 (c-forward-<>-arglist t)
7086 (c-forward-syntactic-ws))
7088 (let ((start (point)) pos res name-res id-start id-end id-range)
7090 ;; Skip leading type modifiers. If any are found we know it's a
7091 ;; prefix of a type.
7092 (when c-opt-type-modifier-key ; e.g. "const" "volatile", but NOT "typedef"
7093 (while (looking-at c-opt-type-modifier-key)
7094 (goto-char (match-end 1))
7095 (c-forward-syntactic-ws)
7096 (setq res 'prefix)))
7098 (cond
7099 ((looking-at c-typeof-key) ; e.g. C++'s "decltype".
7100 (goto-char (match-end 1))
7101 (c-forward-syntactic-ws)
7102 (setq res (and (eq (char-after) ?\()
7103 (c-safe (c-forward-sexp))
7104 'decltype))
7105 (if res
7106 (c-forward-syntactic-ws)
7107 (goto-char start)))
7109 ((looking-at c-type-prefix-key) ; e.g. "struct", "class", but NOT
7110 ; "typedef".
7111 (goto-char (match-end 1))
7112 (c-forward-syntactic-ws)
7114 (while (cond
7115 ((looking-at c-decl-hangon-key)
7116 (c-forward-keyword-clause 1))
7117 ((looking-at c-pack-key)
7118 (goto-char (match-end 1))
7119 (c-forward-syntactic-ws))
7120 ((and c-opt-cpp-prefix
7121 (looking-at c-noise-macro-with-parens-name-re))
7122 (c-forward-noise-clause))))
7124 (setq pos (point))
7126 (setq name-res (c-forward-name))
7127 (setq res (not (null name-res)))
7128 (when (eq name-res t)
7129 ;; In many languages the name can be used without the
7130 ;; prefix, so we add it to `c-found-types'.
7131 (c-add-type pos (point))
7132 (when (and c-record-type-identifiers
7133 c-last-identifier-range)
7134 (c-record-type-id c-last-identifier-range)))
7135 (when (and brace-block-too
7136 (memq res '(t nil))
7137 (eq (char-after) ?\{)
7138 (save-excursion
7139 (c-safe
7140 (progn (c-forward-sexp)
7141 (c-forward-syntactic-ws)
7142 (setq pos (point))))))
7143 (goto-char pos)
7144 (setq res t))
7145 (unless res (goto-char start))) ; invalid syntax
7147 ((progn
7148 (setq pos nil)
7149 (if (looking-at c-identifier-start)
7150 (save-excursion
7151 (setq id-start (point)
7152 name-res (c-forward-name))
7153 (when name-res
7154 (setq id-end (point)
7155 id-range c-last-identifier-range))))
7156 (and (cond ((looking-at c-primitive-type-key)
7157 (setq res t))
7158 ((c-with-syntax-table c-identifier-syntax-table
7159 (looking-at c-known-type-key))
7160 (setq res 'known)))
7161 (or (not id-end)
7162 (>= (save-excursion
7163 (save-match-data
7164 (goto-char (match-end 1))
7165 (c-forward-syntactic-ws)
7166 (setq pos (point))))
7167 id-end)
7168 (setq res nil))))
7169 ;; Looking at a primitive or known type identifier. We've
7170 ;; checked for a name first so that we don't go here if the
7171 ;; known type match only is a prefix of another name.
7173 (setq id-end (match-end 1))
7175 (when (and c-record-type-identifiers
7176 (or c-promote-possible-types (eq res t)))
7177 (c-record-type-id (cons (match-beginning 1) (match-end 1))))
7179 (if (and c-opt-type-component-key
7180 (save-match-data
7181 (looking-at c-opt-type-component-key)))
7182 ;; There might be more keywords for the type.
7183 (let (safe-pos)
7184 (c-forward-keyword-clause 1)
7185 (while (progn
7186 (setq safe-pos (point))
7187 (looking-at c-opt-type-component-key))
7188 (when (and c-record-type-identifiers
7189 (looking-at c-primitive-type-key))
7190 (c-record-type-id (cons (match-beginning 1)
7191 (match-end 1))))
7192 (c-forward-keyword-clause 1))
7193 (if (looking-at c-primitive-type-key)
7194 (progn
7195 (when c-record-type-identifiers
7196 (c-record-type-id (cons (match-beginning 1)
7197 (match-end 1))))
7198 (c-forward-keyword-clause 1)
7199 (setq res t))
7200 (goto-char safe-pos)
7201 (setq res 'prefix)))
7202 (unless (save-match-data (c-forward-keyword-clause 1))
7203 (if pos
7204 (goto-char pos)
7205 (goto-char (match-end 1))
7206 (c-forward-syntactic-ws)))))
7208 (name-res
7209 (cond ((eq name-res t)
7210 ;; A normal identifier.
7211 (goto-char id-end)
7212 (if (or res c-promote-possible-types)
7213 (progn
7214 (c-add-type id-start id-end)
7215 (when (and c-record-type-identifiers id-range)
7216 (c-record-type-id id-range))
7217 (unless res
7218 (setq res 'found)))
7219 (setq res (if (c-check-type id-start id-end)
7220 ;; It's an identifier that has been used as
7221 ;; a type somewhere else.
7222 'found
7223 ;; It's an identifier that might be a type.
7224 'maybe))))
7225 ((eq name-res 'template)
7226 ;; A template is sometimes a type.
7227 (goto-char id-end)
7228 (c-forward-syntactic-ws)
7229 (setq res
7230 (if (eq (char-after) ?\()
7231 (if (c-check-type id-start id-end)
7232 ;; It's an identifier that has been used as
7233 ;; a type somewhere else.
7234 'found
7235 ;; It's an identifier that might be a type.
7236 'maybe)
7237 t)))
7239 ;; Otherwise it's an operator identifier, which is not a type.
7240 (goto-char start)
7241 (setq res nil)))))
7243 (when res
7244 ;; Skip trailing type modifiers. If any are found we know it's
7245 ;; a type.
7246 (when c-opt-type-modifier-key
7247 (while (looking-at c-opt-type-modifier-key) ; e.g. "const", "volatile"
7248 (goto-char (match-end 1))
7249 (c-forward-syntactic-ws)
7250 (setq res t)))
7252 ;; Step over any type suffix operator. Do not let the existence
7253 ;; of these alter the classification of the found type, since
7254 ;; these operators typically are allowed in normal expressions
7255 ;; too.
7256 (when c-opt-type-suffix-key ; e.g. "..."
7257 (while (looking-at c-opt-type-suffix-key)
7258 (goto-char (match-end 1))
7259 (c-forward-syntactic-ws)))
7261 (when c-opt-type-concat-key ; Only/mainly for pike.
7262 ;; Look for a trailing operator that concatenates the type
7263 ;; with a following one, and if so step past that one through
7264 ;; a recursive call. Note that we don't record concatenated
7265 ;; types in `c-found-types' - it's the component types that
7266 ;; are recorded when appropriate.
7267 (setq pos (point))
7268 (let* ((c-promote-possible-types (or (memq res '(t known))
7269 c-promote-possible-types))
7270 ;; If we can't promote then set `c-record-found-types' so that
7271 ;; we can merge in the types from the second part afterwards if
7272 ;; it turns out to be a known type there.
7273 (c-record-found-types (and c-record-type-identifiers
7274 (not c-promote-possible-types)))
7275 subres)
7276 (if (and (looking-at c-opt-type-concat-key)
7278 (progn
7279 (goto-char (match-end 1))
7280 (c-forward-syntactic-ws)
7281 (setq subres (c-forward-type))))
7283 (progn
7284 ;; If either operand certainly is a type then both are, but we
7285 ;; don't let the existence of the operator itself promote two
7286 ;; uncertain types to a certain one.
7287 (cond ((eq res t))
7288 ((eq subres t)
7289 (unless (eq name-res 'template)
7290 (c-add-type id-start id-end))
7291 (when (and c-record-type-identifiers id-range)
7292 (c-record-type-id id-range))
7293 (setq res t))
7294 ((eq res 'known))
7295 ((eq subres 'known)
7296 (setq res 'known))
7297 ((eq res 'found))
7298 ((eq subres 'found)
7299 (setq res 'found))
7301 (setq res 'maybe)))
7303 (when (and (eq res t)
7304 (consp c-record-found-types))
7305 ;; Merge in the ranges of any types found by the second
7306 ;; `c-forward-type'.
7307 (setq c-record-type-identifiers
7308 ;; `nconc' doesn't mind that the tail of
7309 ;; `c-record-found-types' is t.
7310 (nconc c-record-found-types
7311 c-record-type-identifiers))))
7313 (goto-char pos))))
7315 (when (and c-record-found-types (memq res '(known found)) id-range)
7316 (setq c-record-found-types
7317 (cons id-range c-record-found-types))))
7319 ;;(message "c-forward-type %s -> %s: %s" start (point) res)
7321 res))
7323 (defun c-forward-annotation ()
7324 ;; Used for Java code only at the moment. Assumes point is on the @, moves
7325 ;; forward an annotation and returns t. Leaves point unmoved and returns
7326 ;; nil if there is no annotation at point.
7327 (let ((pos (point)))
7329 (and (looking-at "@")
7330 (not (looking-at c-keywords-regexp))
7331 (progn (forward-char) t)
7332 (looking-at c-symbol-key)
7333 (progn (goto-char (match-end 0))
7334 (c-forward-syntactic-ws)
7336 (if (looking-at "(")
7337 (c-go-list-forward)
7339 (progn (goto-char pos) nil))))
7341 (defmacro c-pull-open-brace (ps)
7342 ;; Pull the next open brace from PS (which has the form of paren-state),
7343 ;; skipping over any brace pairs. Returns NIL when PS is exhausted.
7344 `(progn
7345 (while (consp (car ,ps))
7346 (setq ,ps (cdr ,ps)))
7347 (prog1 (car ,ps)
7348 (setq ,ps (cdr ,ps)))))
7350 (defun c-back-over-compound-identifier ()
7351 ;; Point is putatively just after a "compound identifier", i.e. something
7352 ;; looking (in C++) like this "FQN::of::base::Class". Move to the start of
7353 ;; this construct and return t. If the parsing fails, return nil, leaving
7354 ;; point unchanged.
7355 (let ((here (point))
7358 (if (not (c-simple-skip-symbol-backward))
7360 (while
7361 (progn
7362 (setq end (point))
7363 (c-backward-syntactic-ws)
7364 (c-backward-token-2)
7365 (and
7366 c-opt-identifier-concat-key
7367 (looking-at c-opt-identifier-concat-key)
7368 (progn
7369 (c-backward-syntactic-ws)
7370 (c-simple-skip-symbol-backward))))
7371 (setq end (point)))
7372 (goto-char end)
7373 t)))
7375 (defun c-back-over-member-initializer-braces ()
7376 ;; Point is just after a closing brace/parenthesis. Try to parse this as a
7377 ;; C++ member initializer list, going back to just after the introducing ":"
7378 ;; and returning t. Otherwise return nil, leaving point unchanged.
7379 (let ((here (point)) res)
7380 (setq res
7381 (catch 'done
7382 (when (not (c-go-list-backward))
7383 (throw 'done nil))
7384 (c-backward-syntactic-ws)
7385 (when (not (c-back-over-compound-identifier))
7386 (throw 'done nil))
7387 (c-backward-syntactic-ws)
7389 (while (eq (char-before) ?,)
7390 (backward-char)
7391 (c-backward-syntactic-ws)
7392 (when (not (memq (char-before) '(?\) ?})))
7393 (throw 'done nil))
7394 (when (not (c-go-list-backward))
7395 (throw 'done nil))
7396 (c-backward-syntactic-ws)
7397 (when (not (c-back-over-compound-identifier))
7398 (throw 'done nil))
7399 (c-backward-syntactic-ws))
7401 (eq (char-before) ?:)))
7402 (or res (goto-char here))
7403 res))
7405 (defmacro c-back-over-list-of-member-inits ()
7406 ;; Go back over a list of elements, each looking like:
7407 ;; <symbol> (<expression>) ,
7408 ;; or <symbol> {<expression>} ,
7409 ;; when we are putatively immediately after a comma. Stop when we don't see
7410 ;; a comma. If either of <symbol> or bracketed <expression> is missing,
7411 ;; throw nil to 'level. If the terminating } or ) is unmatched, throw nil
7412 ;; to 'done. This is not a general purpose macro!
7413 `(while (eq (char-before) ?,)
7414 (backward-char)
7415 (c-backward-syntactic-ws)
7416 (when (not (memq (char-before) '(?\) ?})))
7417 (throw 'level nil))
7418 (when (not (c-go-list-backward))
7419 (throw 'done nil))
7420 (c-backward-syntactic-ws)
7421 (when (not (c-back-over-compound-identifier))
7422 (throw 'level nil))
7423 (c-backward-syntactic-ws)))
7425 (defun c-back-over-member-initializers ()
7426 ;; Test whether we are in a C++ member initializer list, and if so, go back
7427 ;; to the introducing ":", returning the position of the opening paren of
7428 ;; the function's arglist. Otherwise return nil, leaving point unchanged.
7429 (let ((here (point))
7430 (paren-state (c-parse-state))
7431 pos level-plausible at-top-level res)
7432 ;; Assume tentatively that we're at the top level. Try to go back to the
7433 ;; colon we seek.
7434 (setq res
7435 (catch 'done
7436 (setq level-plausible
7437 (catch 'level
7438 (c-backward-syntactic-ws)
7439 (when (memq (char-before) '(?\) ?}))
7440 (when (not (c-go-list-backward))
7441 (throw 'done nil))
7442 (c-backward-syntactic-ws))
7443 (when (c-back-over-compound-identifier)
7444 (c-backward-syntactic-ws))
7445 (c-back-over-list-of-member-inits)
7446 (and (eq (char-before) ?:)
7447 (save-excursion
7448 (c-backward-token-2)
7449 (not (looking-at c-:$-multichar-token-regexp)))
7450 (c-just-after-func-arglist-p))))
7452 (while (and (not (and level-plausible
7453 (setq at-top-level (c-at-toplevel-p))))
7454 (setq pos (c-pull-open-brace paren-state))) ; might be a paren.
7455 (setq level-plausible
7456 (catch 'level
7457 (goto-char pos)
7458 (c-backward-syntactic-ws)
7459 (when (not (c-back-over-compound-identifier))
7460 (throw 'level nil))
7461 (c-backward-syntactic-ws)
7462 (c-back-over-list-of-member-inits)
7463 (and (eq (char-before) ?:)
7464 (save-excursion
7465 (c-backward-token-2)
7466 (not (looking-at c-:$-multichar-token-regexp)))
7467 (c-just-after-func-arglist-p)))))
7469 (and at-top-level level-plausible)))
7470 (or res (goto-char here))
7471 res))
7474 ;; Handling of large scale constructs like statements and declarations.
7476 ;; Macro used inside `c-forward-decl-or-cast-1'. It ought to be a
7477 ;; defsubst or perhaps even a defun, but it contains lots of free
7478 ;; variables that refer to things inside `c-forward-decl-or-cast-1'.
7479 (defmacro c-fdoc-shift-type-backward (&optional short)
7480 ;; `c-forward-decl-or-cast-1' can consume an arbitrary length list
7481 ;; of types when parsing a declaration, which means that it
7482 ;; sometimes consumes the identifier in the declaration as a type.
7483 ;; This is used to "backtrack" and make the last type be treated as
7484 ;; an identifier instead.
7485 `(progn
7486 ,(unless short
7487 ;; These identifiers are bound only in the inner let.
7488 '(setq identifier-type at-type
7489 identifier-start type-start
7490 got-parens nil
7491 got-identifier t
7492 got-suffix t
7493 got-suffix-after-parens id-start
7494 paren-depth 0))
7496 (if (setq at-type (if (eq backup-at-type 'prefix)
7498 backup-at-type))
7499 (setq type-start backup-type-start
7500 id-start backup-id-start)
7501 (setq type-start start-pos
7502 id-start start-pos))
7504 ;; When these flags already are set we've found specifiers that
7505 ;; unconditionally signal these attributes - backtracking doesn't
7506 ;; change that. So keep them set in that case.
7507 (or at-type-decl
7508 (setq at-type-decl backup-at-type-decl))
7509 (or maybe-typeless
7510 (setq maybe-typeless backup-maybe-typeless))
7512 ,(unless short
7513 ;; This identifier is bound only in the inner let.
7514 '(setq start id-start))))
7516 (defun c-forward-declarator (&optional limit accept-anon)
7517 ;; Assuming point is at the start of a declarator, move forward over it,
7518 ;; leaving point at the next token after it (e.g. a ) or a ; or a ,).
7520 ;; Return a list (ID-START ID-END BRACKETS-AFTER-ID GOT-INIT), where ID-START and
7521 ;; ID-END are the bounds of the declarator's identifier, and
7522 ;; BRACKETS-AFTER-ID is non-nil if a [...] pair is present after the id.
7523 ;; GOT-INIT is non-nil when the declarator is followed by "=" or "(".
7525 ;; If ACCEPT-ANON is non-nil, move forward over any "anonymous declarator",
7526 ;; i.e. something like the (*) in int (*), such as might be found in a
7527 ;; declaration. In such a case ID-START and ID-END in the return value are
7528 ;; both set to nil. A "null" "anonymous declarator" gives a non-nil result.
7530 ;; If no declarator is found, leave point unmoved and return nil. LIMIT is
7531 ;; an optional limit for forward searching.
7533 ;; Note that the global variable `c-last-identifier-range' is written to, so
7534 ;; the caller should bind it if necessary.
7536 ;; Inside the following "condition form", we move forward over the
7537 ;; declarator's identifier up as far as any opening bracket (for array
7538 ;; size) or paren (for parameters of function-type) or brace (for
7539 ;; array/struct initialization) or "=" or terminating delimiter
7540 ;; (e.g. "," or ";" or "}").
7541 (let ((here (point))
7542 id-start id-end brackets-after-id paren-depth)
7543 (or limit (setq limit (point-max)))
7544 (if (and
7545 (< (point) limit)
7547 ;; The following form moves forward over the declarator's
7548 ;; identifier (and what precedes it), returning t. If there
7549 ;; wasn't one, it returns nil.
7550 (let (got-identifier)
7551 (setq paren-depth 0)
7552 ;; Skip over type decl prefix operators, one for each iteration
7553 ;; of the while. These are, e.g. "*" in "int *foo" or "(" and
7554 ;; "*" in "int (*foo) (void)" (Note similar code in
7555 ;; `c-forward-decl-or-cast-1'.)
7556 (while
7557 (cond
7558 ((looking-at c-decl-hangon-key)
7559 (c-forward-keyword-clause 1))
7560 ((and c-opt-cpp-prefix
7561 (looking-at c-noise-macro-with-parens-name-re))
7562 (c-forward-noise-clause))
7563 ((and (looking-at c-type-decl-prefix-key)
7564 (if (and (c-major-mode-is 'c++-mode)
7565 (match-beginning 3))
7566 ;; If the third submatch matches in C++ then
7567 ;; we're looking at an identifier that's a
7568 ;; prefix only if it specifies a member pointer.
7569 (progn
7570 (setq id-start (point))
7571 (c-forward-name)
7572 (if (looking-at "\\(::\\)")
7573 ;; We only check for a trailing "::" and
7574 ;; let the "*" that should follow be
7575 ;; matched in the next round.
7577 ;; It turned out to be the real identifier,
7578 ;; so flag that and stop.
7579 (setq got-identifier t)
7580 nil))
7582 (if (eq (char-after) ?\()
7583 (progn
7584 (setq paren-depth (1+ paren-depth))
7585 (forward-char))
7586 (goto-char (match-end 1)))
7587 (c-forward-syntactic-ws)
7588 t)))
7590 ;; If we haven't passed the identifier already, do it now.
7591 (unless got-identifier
7592 (setq id-start (point)))
7593 (cond
7594 ((or got-identifier
7595 (c-forward-name))
7596 (save-excursion
7597 (c-backward-syntactic-ws)
7598 (setq id-end (point))))
7599 (accept-anon
7600 (setq id-start nil id-end nil)
7602 (t (/= (point) here))))
7604 ;; Skip out of the parens surrounding the identifier. If closing
7605 ;; parens are missing, this form returns nil.
7606 (or (= paren-depth 0)
7607 (c-safe (goto-char (scan-lists (point) 1 paren-depth))))
7609 (<= (point) limit)
7611 ;; Skip over any trailing bit, such as "__attribute__".
7612 (progn
7613 (while (cond
7614 ((looking-at c-decl-hangon-key)
7615 (c-forward-keyword-clause 1))
7616 ((and c-opt-cpp-prefix
7617 (looking-at c-noise-macro-with-parens-name-re))
7618 (c-forward-noise-clause))))
7619 (<= (point) limit))
7621 ;; Search syntactically to the end of the declarator (";",
7622 ;; ",", a closing paren, eob etc) or to the beginning of an
7623 ;; initializer or function prototype ("=" or "\\s\(").
7624 ;; Note that square brackets are now not also treated as
7625 ;; initializers, since this broke when there were also
7626 ;; initializing brace lists.
7627 (let (found)
7628 (while
7629 (and (setq found (c-syntactic-re-search-forward
7630 "[;,]\\|\\s)\\|\\'\\|\\(=\\|\\s(\\)" limit t t))
7631 (eq (char-before) ?\[)
7632 (c-go-up-list-forward))
7633 (setq brackets-after-id t))
7634 (backward-char)
7635 found))
7636 (list id-start id-end brackets-after-id (match-beginning 1))
7638 (goto-char here)
7639 nil)))
7641 (defun c-forward-decl-or-cast-1 (preceding-token-end context last-cast-end)
7642 ;; Move forward over a declaration or a cast if at the start of one.
7643 ;; The point is assumed to be at the start of some token. Nil is
7644 ;; returned if no declaration or cast is recognized, and the point
7645 ;; is clobbered in that case.
7647 ;; If a declaration is parsed:
7649 ;; The point is left at the first token after the first complete
7650 ;; declarator, if there is one. The return value is a list of 4 elements,
7651 ;; where the first is the position of the first token in the declarator.
7652 ;; (See below for the other three.)
7653 ;; Some examples:
7655 ;; void foo (int a, char *b) stuff ...
7656 ;; car ^ ^ point
7657 ;; float (*a)[], b;
7658 ;; car ^ ^ point
7659 ;; unsigned int a = c_style_initializer, b;
7660 ;; car ^ ^ point
7661 ;; unsigned int a (cplusplus_style_initializer), b;
7662 ;; car ^ ^ point (might change)
7663 ;; class Foo : public Bar {}
7664 ;; car ^ ^ point
7665 ;; class PikeClass (int a, string b) stuff ...
7666 ;; car ^ ^ point
7667 ;; enum bool;
7668 ;; car ^ ^ point
7669 ;; enum bool flag;
7670 ;; car ^ ^ point
7671 ;; void cplusplus_function (int x) throw (Bad);
7672 ;; car ^ ^ point
7673 ;; Foo::Foo (int b) : Base (b) {}
7674 ;; car ^ ^ point
7676 ;; auto foo = 5;
7677 ;; car ^ ^ point
7678 ;; auto cplusplus_11 (int a, char *b) -> decltype (bar):
7679 ;; car ^ ^ point
7683 ;; The second element of the return value is non-nil when a
7684 ;; `c-typedef-decl-kwds' specifier is found in the declaration.
7685 ;; Specifically it is a dotted pair (A . B) where B is t when a
7686 ;; `c-typedef-kwds' ("typedef") is present, and A is t when some
7687 ;; other `c-typedef-decl-kwds' (e.g. class, struct, enum)
7688 ;; specifier is present. I.e., (some of) the declared
7689 ;; identifier(s) are types.
7691 ;; The third element of the return value is non-nil when the declaration
7692 ;; parsed might be an expression. The fourth element is the position of
7693 ;; the start of the type identifier.
7695 ;; If a cast is parsed:
7697 ;; The point is left at the first token after the closing paren of
7698 ;; the cast. The return value is `cast'. Note that the start
7699 ;; position must be at the first token inside the cast parenthesis
7700 ;; to recognize it.
7702 ;; PRECEDING-TOKEN-END is the first position after the preceding
7703 ;; token, i.e. on the other side of the syntactic ws from the point.
7704 ;; Use a value less than or equal to (point-min) if the point is at
7705 ;; the first token in (the visible part of) the buffer.
7707 ;; CONTEXT is a symbol that describes the context at the point:
7708 ;; 'decl In a comma-separated declaration context (typically
7709 ;; inside a function declaration arglist).
7710 ;; '<> In an angle bracket arglist.
7711 ;; 'arglist Some other type of arglist.
7712 ;; nil Some other context or unknown context. Includes
7713 ;; within the parens of an if, for, ... construct.
7715 ;; LAST-CAST-END is the first token after the closing paren of a
7716 ;; preceding cast, or nil if none is known. If
7717 ;; `c-forward-decl-or-cast-1' is used in succession, it should be
7718 ;; the position after the closest preceding call where a cast was
7719 ;; matched. In that case it's used to discover chains of casts like
7720 ;; "(a) (b) c".
7722 ;; This function records identifier ranges on
7723 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
7724 ;; `c-record-type-identifiers' is non-nil.
7726 ;; This function might do hidden buffer changes.
7728 (let (;; `start-pos' is used below to point to the start of the
7729 ;; first type, i.e. after any leading specifiers. It might
7730 ;; also point at the beginning of the preceding syntactic
7731 ;; whitespace.
7732 (start-pos (point))
7733 ;; Set to the result of `c-forward-type'.
7734 at-type
7735 ;; The position of the first token in what we currently
7736 ;; believe is the type in the declaration or cast, after any
7737 ;; specifiers and their associated clauses.
7738 type-start
7739 ;; The position of the first token in what we currently
7740 ;; believe is the declarator for the first identifier. Set
7741 ;; when the type is found, and moved forward over any
7742 ;; `c-decl-hangon-kwds' and their associated clauses that
7743 ;; occurs after the type.
7744 id-start
7745 ;; These store `at-type', `type-start' and `id-start' of the
7746 ;; identifier before the one in those variables. The previous
7747 ;; identifier might turn out to be the real type in a
7748 ;; declaration if the last one has to be the declarator in it.
7749 ;; If `backup-at-type' is nil then the other variables have
7750 ;; undefined values.
7751 backup-at-type backup-type-start backup-id-start
7752 ;; This stores `kwd-sym' of the symbol before the current one.
7753 ;; This is needed to distinguish the C++11 version of "auto" from
7754 ;; the pre C++11 meaning.
7755 backup-kwd-sym
7756 ;; Set if we've found a specifier (apart from "typedef") that makes
7757 ;; the defined identifier(s) types.
7758 at-type-decl
7759 ;; Set if we've a "typedef" keyword.
7760 at-typedef
7761 ;; Set if we've found a specifier that can start a declaration
7762 ;; where there's no type.
7763 maybe-typeless
7764 ;; Save the value of kwd-sym between loops of the "Check for a
7765 ;; type" loop. Needed to distinguish a C++11 "auto" from a pre
7766 ;; C++11 one.
7767 prev-kwd-sym
7768 ;; If a specifier is found that also can be a type prefix,
7769 ;; these flags are set instead of those above. If we need to
7770 ;; back up an identifier, they are copied to the real flag
7771 ;; variables. Thus they only take effect if we fail to
7772 ;; interpret it as a type.
7773 backup-at-type-decl backup-maybe-typeless
7774 ;; Whether we've found a declaration or a cast. We might know
7775 ;; this before we've found the type in it. It's 'ids if we've
7776 ;; found two consecutive identifiers (usually a sure sign, but
7777 ;; we should allow that in labels too), and t if we've found a
7778 ;; specifier keyword (a 100% sure sign).
7779 at-decl-or-cast
7780 ;; Set when we need to back up to parse this as a declaration
7781 ;; but not as a cast.
7782 backup-if-not-cast
7783 ;; For casts, the return position.
7784 cast-end
7785 ;; Have we got a new-style C++11 "auto"?
7786 new-style-auto
7787 ;; Set when the symbol before `preceding-token-end' is known to
7788 ;; terminate the previous construct, or when we're at point-min.
7789 at-decl-start
7790 ;; Save `c-record-type-identifiers' and
7791 ;; `c-record-ref-identifiers' since ranges are recorded
7792 ;; speculatively and should be thrown away if it turns out
7793 ;; that it isn't a declaration or cast.
7794 (save-rec-type-ids c-record-type-identifiers)
7795 (save-rec-ref-ids c-record-ref-identifiers)
7796 ;; Set when we parse a declaration which might also be an expression,
7797 ;; such as "a *b". See CASE 16 and CASE 17.
7798 maybe-expression)
7800 (save-excursion
7801 (goto-char preceding-token-end)
7802 (setq at-decl-start
7803 (or (bobp)
7804 (let ((tok-end (point)))
7805 (c-backward-token-2)
7806 (member (buffer-substring-no-properties (point) tok-end)
7807 c-pre-start-tokens)))))
7809 (while (c-forward-annotation)
7810 (c-forward-syntactic-ws))
7812 ;; Check for a type. Unknown symbols are treated as possible
7813 ;; types, but they could also be specifiers disguised through
7814 ;; macros like __INLINE__, so we recognize both types and known
7815 ;; specifiers after them too.
7816 (while
7817 (let* ((start (point)) kwd-sym kwd-clause-end found-type noise-start)
7819 (cond
7820 ;; Look for a specifier keyword clause.
7821 ((or (looking-at c-prefix-spec-kwds-re)
7822 (and (c-major-mode-is 'java-mode)
7823 (looking-at "@[A-Za-z0-9]+")))
7824 (save-match-data
7825 (if (looking-at c-typedef-key)
7826 (setq at-typedef t)))
7827 (setq kwd-sym (c-keyword-sym (match-string 1)))
7828 (save-excursion
7829 (c-forward-keyword-clause 1)
7830 (setq kwd-clause-end (point))))
7831 ((and c-opt-cpp-prefix
7832 (looking-at c-noise-macro-with-parens-name-re))
7833 (setq noise-start (point))
7834 (c-forward-noise-clause)
7835 (setq kwd-clause-end (point))))
7837 (when (setq found-type (c-forward-type t)) ; brace-block-too
7838 ;; Found a known or possible type or a prefix of a known type.
7839 (when (and (c-major-mode-is 'c++-mode) ; C++11 style "auto"?
7840 (eq prev-kwd-sym (c-keyword-sym "auto"))
7841 (looking-at "[=(]")) ; FIXME!!! proper regexp.
7842 (setq new-style-auto t)
7843 (setq found-type nil)
7844 (goto-char start)) ; position of foo in "auto foo"
7846 (when at-type
7847 ;; Got two identifiers with nothing but whitespace
7848 ;; between them. That can only happen in declarations.
7849 (setq at-decl-or-cast 'ids)
7851 (when (eq at-type 'found)
7852 ;; If the previous identifier is a found type we
7853 ;; record it as a real one; it might be some sort of
7854 ;; alias for a prefix like "unsigned".
7855 (save-excursion
7856 (goto-char type-start)
7857 (let ((c-promote-possible-types t))
7858 (c-forward-type)))))
7860 (setq backup-at-type at-type
7861 backup-type-start type-start
7862 backup-id-start id-start
7863 backup-kwd-sym kwd-sym
7864 at-type found-type
7865 type-start start
7866 id-start (point)
7867 ;; The previous ambiguous specifier/type turned out
7868 ;; to be a type since we've parsed another one after
7869 ;; it, so clear these backup flags.
7870 backup-at-type-decl nil
7871 backup-maybe-typeless nil))
7873 (if (or kwd-sym noise-start)
7874 (progn
7875 ;; Handle known specifier keywords and
7876 ;; `c-decl-hangon-kwds' which can occur after known
7877 ;; types.
7879 (if (or (c-keyword-member kwd-sym 'c-decl-hangon-kwds)
7880 noise-start)
7881 ;; It's a hang-on keyword or noise clause that can occur
7882 ;; anywhere.
7883 (progn
7884 (if at-type
7885 ;; Move the identifier start position if
7886 ;; we've passed a type.
7887 (setq id-start kwd-clause-end)
7888 ;; Otherwise treat this as a specifier and
7889 ;; move the fallback position.
7890 (setq start-pos kwd-clause-end))
7891 (goto-char kwd-clause-end))
7893 ;; It's an ordinary specifier so we know that
7894 ;; anything before this can't be the type.
7895 (setq backup-at-type nil
7896 start-pos kwd-clause-end)
7898 (if found-type
7899 ;; It's ambiguous whether this keyword is a
7900 ;; specifier or a type prefix, so set the backup
7901 ;; flags. (It's assumed that `c-forward-type'
7902 ;; moved further than `c-forward-keyword-clause'.)
7903 (progn
7904 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
7905 (setq backup-at-type-decl t))
7906 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
7907 (setq backup-maybe-typeless t)))
7909 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
7910 ;; This test only happens after we've scanned a type.
7911 ;; So, with valid syntax, kwd-sym can't be 'typedef.
7912 (setq at-type-decl t))
7913 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
7914 (setq maybe-typeless t))
7916 ;; Haven't matched a type so it's an unambiguous
7917 ;; specifier keyword and we know we're in a
7918 ;; declaration.
7919 (setq at-decl-or-cast t)
7920 (setq prev-kwd-sym kwd-sym)
7922 (goto-char kwd-clause-end))))
7924 ;; If the type isn't known we continue so that we'll jump
7925 ;; over all specifiers and type identifiers. The reason
7926 ;; to do this for a known type prefix is to make things
7927 ;; like "unsigned INT16" work.
7928 (and found-type (not (eq found-type t))))))
7930 (cond
7931 ((eq at-type t)
7932 ;; If a known type was found, we still need to skip over any
7933 ;; hangon keyword clauses after it. Otherwise it has already
7934 ;; been done in the loop above.
7935 (while
7936 (cond ((looking-at c-decl-hangon-key)
7937 (c-forward-keyword-clause 1))
7938 ((and c-opt-cpp-prefix
7939 (looking-at c-noise-macro-with-parens-name-re))
7940 (c-forward-noise-clause))))
7941 (setq id-start (point)))
7943 ((eq at-type 'prefix)
7944 ;; A prefix type is itself a primitive type when it's not
7945 ;; followed by another type.
7946 (setq at-type t))
7948 ((not at-type)
7949 ;; Got no type but set things up to continue anyway to handle
7950 ;; the various cases when a declaration doesn't start with a
7951 ;; type.
7952 (setq id-start start-pos))
7954 ((and (eq at-type 'maybe)
7955 (c-major-mode-is 'c++-mode))
7956 ;; If it's C++ then check if the last "type" ends on the form
7957 ;; "foo::foo" or "foo::~foo", i.e. if it's the name of a
7958 ;; (con|de)structor.
7959 (save-excursion
7960 (let (name end-2 end-1)
7961 (goto-char id-start)
7962 (c-backward-syntactic-ws)
7963 (setq end-2 (point))
7964 (when (and
7965 (c-simple-skip-symbol-backward)
7966 (progn
7967 (setq name
7968 (buffer-substring-no-properties (point) end-2))
7969 ;; Cheating in the handling of syntactic ws below.
7970 (< (skip-chars-backward ":~ \t\n\r\v\f") 0))
7971 (progn
7972 (setq end-1 (point))
7973 (c-simple-skip-symbol-backward))
7974 (>= (point) type-start)
7975 (equal (buffer-substring-no-properties (point) end-1)
7976 name))
7977 ;; It is a (con|de)structor name. In that case the
7978 ;; declaration is typeless so zap out any preceding
7979 ;; identifier(s) that we might have taken as types.
7980 (goto-char type-start)
7981 (setq at-type nil
7982 backup-at-type nil
7983 id-start type-start))))))
7985 ;; Check for and step over a type decl expression after the thing
7986 ;; that is or might be a type. This can't be skipped since we
7987 ;; need the correct end position of the declarator for
7988 ;; `max-type-decl-end-*'.
7989 (let ((start (point)) (paren-depth 0) pos
7990 ;; True if there's a non-open-paren match of
7991 ;; `c-type-decl-prefix-key'.
7992 got-prefix
7993 ;; True if the declarator is surrounded by a parenthesis pair.
7994 got-parens
7995 ;; True if there is an identifier in the declarator.
7996 got-identifier
7997 ;; True if there's a non-close-paren match of
7998 ;; `c-type-decl-suffix-key'.
7999 got-suffix
8000 ;; True if there's a prefix match outside the outermost
8001 ;; paren pair that surrounds the declarator.
8002 got-prefix-before-parens
8003 ;; True if there's a suffix match outside the outermost
8004 ;; paren pair that surrounds the declarator. The value is
8005 ;; the position of the first suffix match.
8006 got-suffix-after-parens
8007 ;; True if we've parsed the type decl to a token that is
8008 ;; known to end declarations in this context.
8009 at-decl-end
8010 ;; The earlier values of `at-type' and `type-start' if we've
8011 ;; shifted the type backwards.
8012 identifier-type identifier-start
8013 ;; If `c-parse-and-markup-<>-arglists' is set we need to
8014 ;; turn it off during the name skipping below to avoid
8015 ;; getting `c-type' properties that might be bogus. That
8016 ;; can happen since we don't know if
8017 ;; `c-restricted-<>-arglists' will be correct inside the
8018 ;; arglist paren that gets entered.
8019 c-parse-and-markup-<>-arglists
8020 ;; Start of the identifier for which `got-identifier' was set.
8021 name-start)
8023 (goto-char id-start)
8025 ;; Skip over type decl prefix operators. (Note similar code in
8026 ;; `c-forward-declarator'.)
8027 (if (and c-recognize-typeless-decls
8028 (equal c-type-decl-prefix-key "\\<\\>"))
8029 (when (eq (char-after) ?\()
8030 (progn
8031 (setq paren-depth (1+ paren-depth))
8032 (forward-char)))
8033 (while (and (looking-at c-type-decl-prefix-key)
8034 (if (and (c-major-mode-is 'c++-mode)
8035 (match-beginning 3))
8036 ;; If the third submatch matches in C++ then
8037 ;; we're looking at an identifier that's a
8038 ;; prefix only if it specifies a member pointer.
8039 (when (progn (setq pos (point))
8040 (setq got-identifier (c-forward-name)))
8041 (setq name-start pos)
8042 (if (looking-at "\\(::\\)")
8043 ;; We only check for a trailing "::" and
8044 ;; let the "*" that should follow be
8045 ;; matched in the next round.
8046 (progn (setq got-identifier nil) t)
8047 ;; It turned out to be the real identifier,
8048 ;; so stop.
8049 nil))
8052 (if (eq (char-after) ?\()
8053 (progn
8054 (setq paren-depth (1+ paren-depth))
8055 (forward-char))
8056 (unless got-prefix-before-parens
8057 (setq got-prefix-before-parens (= paren-depth 0)))
8058 (setq got-prefix t)
8059 (goto-char (match-end 1)))
8060 (c-forward-syntactic-ws)))
8062 (setq got-parens (> paren-depth 0))
8064 ;; Skip over an identifier.
8065 (or got-identifier
8066 (and (looking-at c-identifier-start)
8067 (setq pos (point))
8068 (setq got-identifier (c-forward-name))
8069 (setq name-start pos)))
8071 ;; Skip over type decl suffix operators and trailing noise macros.
8072 (while
8073 (cond
8074 ((and c-opt-cpp-prefix
8075 (looking-at c-noise-macro-with-parens-name-re))
8076 (c-forward-noise-clause))
8078 ((looking-at c-type-decl-suffix-key)
8079 (if (eq (char-after) ?\))
8080 (when (> paren-depth 0)
8081 (setq paren-depth (1- paren-depth))
8082 (forward-char)
8084 (when (if (save-match-data (looking-at "\\s("))
8085 (c-safe (c-forward-sexp 1) t)
8086 (goto-char (match-end 1))
8088 (when (and (not got-suffix-after-parens)
8089 (= paren-depth 0))
8090 (setq got-suffix-after-parens (match-beginning 0)))
8091 (setq got-suffix t))))
8094 ;; No suffix matched. We might have matched the
8095 ;; identifier as a type and the open paren of a
8096 ;; function arglist as a type decl prefix. In that
8097 ;; case we should "backtrack": Reinterpret the last
8098 ;; type as the identifier, move out of the arglist and
8099 ;; continue searching for suffix operators.
8101 ;; Do this even if there's no preceding type, to cope
8102 ;; with old style function declarations in K&R C,
8103 ;; (con|de)structors in C++ and `c-typeless-decl-kwds'
8104 ;; style declarations. That isn't applicable in an
8105 ;; arglist context, though.
8106 (when (and (= paren-depth 1)
8107 (not got-prefix-before-parens)
8108 (not (eq at-type t))
8109 (or backup-at-type
8110 maybe-typeless
8111 backup-maybe-typeless
8112 (when c-recognize-typeless-decls
8113 (not context)))
8114 (setq pos (c-up-list-forward (point)))
8115 (eq (char-before pos) ?\)))
8116 (c-fdoc-shift-type-backward)
8117 (goto-char pos)
8118 t)))
8120 (c-forward-syntactic-ws))
8122 (when (or (and new-style-auto
8123 (looking-at c-auto-ops-re))
8124 (and (or maybe-typeless backup-maybe-typeless)
8125 (not got-identifier)
8126 (not got-prefix)
8127 at-type))
8128 ;; Have found no identifier but `c-typeless-decl-kwds' has
8129 ;; matched so we know we're inside a declaration. The
8130 ;; preceding type must be the identifier instead.
8131 (c-fdoc-shift-type-backward))
8133 ;; Prepare the "-> type;" for fontification later on.
8134 (when (and new-style-auto
8135 (looking-at c-haskell-op-re))
8136 (save-excursion
8137 (goto-char (match-end 0))
8138 (c-forward-syntactic-ws)
8139 (setq type-start (point))
8140 (setq at-type (c-forward-type))))
8142 (setq
8143 at-decl-or-cast
8144 (catch 'at-decl-or-cast
8146 ;; CASE 1
8147 (when (> paren-depth 0)
8148 ;; Encountered something inside parens that isn't matched by
8149 ;; the `c-type-decl-*' regexps, so it's not a type decl
8150 ;; expression. Try to skip out to the same paren depth to
8151 ;; not confuse the cast check below.
8152 (c-safe (goto-char (scan-lists (point) 1 paren-depth)))
8153 ;; If we've found a specifier keyword then it's a
8154 ;; declaration regardless.
8155 (throw 'at-decl-or-cast (eq at-decl-or-cast t)))
8157 (setq at-decl-end
8158 (looking-at (cond ((eq context '<>) "[,>]")
8159 (context "[,)]")
8160 (t "[,;]"))))
8162 ;; Now we've collected info about various characteristics of
8163 ;; the construct we're looking at. Below follows a decision
8164 ;; tree based on that. It's ordered to check more certain
8165 ;; signs before less certain ones.
8167 (if got-identifier
8168 (progn
8170 ;; CASE 2
8171 (when (and (or at-type maybe-typeless)
8172 (not (or got-prefix got-parens)))
8173 ;; Got another identifier directly after the type, so it's a
8174 ;; declaration.
8175 (throw 'at-decl-or-cast t))
8177 (when (and got-parens
8178 (not got-prefix)
8179 ;; (not got-suffix-after-parens)
8180 (or backup-at-type
8181 maybe-typeless
8182 backup-maybe-typeless
8183 (eq at-decl-or-cast t)
8184 ;; Check whether we have "bar (gnu);" where we
8185 ;; are directly inside a class (etc.) called "bar".
8186 (save-excursion
8187 (and
8188 (progn
8189 (goto-char name-start)
8190 (not (memq (c-forward-type) '(nil maybe))))
8191 (progn
8192 (goto-char id-start)
8193 (c-directly-in-class-called-p
8194 (buffer-substring
8195 type-start
8196 (progn
8197 (goto-char type-start)
8198 (c-forward-type)
8199 (c-backward-syntactic-ws)
8200 (point)))))))))
8201 ;; Got a declaration of the form "foo bar (gnu);" or "bar
8202 ;; (gnu);" where we've recognized "bar" as the type and "gnu"
8203 ;; as the declarator, and in the latter case, checked that
8204 ;; "bar (gnu)" appears directly inside the class "bar". In
8205 ;; this case it's however more likely that "bar" is the
8206 ;; declarator and "gnu" a function argument or initializer
8207 ;; (if `c-recognize-paren-inits' is set), since the parens
8208 ;; around "gnu" would be superfluous if it's a declarator.
8209 ;; Shift the type one step backward.
8210 (c-fdoc-shift-type-backward)))
8212 ;; Found no identifier.
8214 (if backup-at-type
8215 (progn
8217 ;; CASE 3
8218 (when (= (point) start)
8219 ;; Got a plain list of identifiers. If a colon follows it's
8220 ;; a valid label, or maybe a bitfield. Otherwise the last
8221 ;; one probably is the declared identifier and we should
8222 ;; back up to the previous type, providing it isn't a cast.
8223 (if (and (eq (char-after) ?:)
8224 (not (c-major-mode-is 'java-mode)))
8225 (cond
8226 ;; If we've found a specifier keyword then it's a
8227 ;; declaration regardless.
8228 ((eq at-decl-or-cast t)
8229 (throw 'at-decl-or-cast t))
8230 ((and c-has-bitfields
8231 (eq at-decl-or-cast 'ids)) ; bitfield.
8232 (setq backup-if-not-cast t)
8233 (throw 'at-decl-or-cast t)))
8235 (setq backup-if-not-cast t)
8236 (throw 'at-decl-or-cast t)))
8238 ;; CASE 4
8239 (when (and got-suffix
8240 (not got-prefix)
8241 (not got-parens))
8242 ;; Got a plain list of identifiers followed by some suffix.
8243 ;; If this isn't a cast then the last identifier probably is
8244 ;; the declared one and we should back up to the previous
8245 ;; type.
8246 (setq backup-if-not-cast t)
8247 (throw 'at-decl-or-cast t)))
8249 ;; CASE 5
8250 (when (eq at-type t)
8251 ;; If the type is known we know that there can't be any
8252 ;; identifier somewhere else, and it's only in declarations in
8253 ;; e.g. function prototypes and in casts that the identifier may
8254 ;; be left out.
8255 (throw 'at-decl-or-cast t))
8257 (when (= (point) start)
8258 ;; Only got a single identifier (parsed as a type so far).
8259 ;; CASE 6
8260 (if (and
8261 ;; Check that the identifier isn't at the start of an
8262 ;; expression.
8263 at-decl-end
8264 (cond
8265 ((eq context 'decl)
8266 ;; Inside an arglist that contains declarations. If K&R
8267 ;; style declarations and parenthesis style initializers
8268 ;; aren't allowed then the single identifier must be a
8269 ;; type, else we require that it's known or found
8270 ;; (primitive types are handled above).
8271 (or (and (not c-recognize-knr-p)
8272 (not c-recognize-paren-inits))
8273 (memq at-type '(known found))))
8274 ((eq context '<>)
8275 ;; Inside a template arglist. Accept known and found
8276 ;; types; other identifiers could just as well be
8277 ;; constants in C++.
8278 (memq at-type '(known found)))))
8279 (throw 'at-decl-or-cast t)
8280 ;; CASE 7
8281 ;; Can't be a valid declaration or cast, but if we've found a
8282 ;; specifier it can't be anything else either, so treat it as
8283 ;; an invalid/unfinished declaration or cast.
8284 (throw 'at-decl-or-cast at-decl-or-cast))))
8286 (if (and got-parens
8287 (not got-prefix)
8288 (not context)
8289 (not (eq at-type t))
8290 (or backup-at-type
8291 maybe-typeless
8292 backup-maybe-typeless
8293 (when c-recognize-typeless-decls
8294 (or (not got-suffix)
8295 (not (looking-at
8296 c-after-suffixed-type-maybe-decl-key))))))
8297 ;; Got an empty paren pair and a preceding type that probably
8298 ;; really is the identifier. Shift the type backwards to make
8299 ;; the last one the identifier. This is analogous to the
8300 ;; "backtracking" done inside the `c-type-decl-suffix-key' loop
8301 ;; above.
8303 ;; Exception: In addition to the conditions in that
8304 ;; "backtracking" code, do not shift backward if we're not
8305 ;; looking at either `c-after-suffixed-type-decl-key' or "[;,]".
8306 ;; Since there's no preceding type, the shift would mean that
8307 ;; the declaration is typeless. But if the regexp doesn't match
8308 ;; then we will simply fall through in the tests below and not
8309 ;; recognize it at all, so it's better to try it as an abstract
8310 ;; declarator instead.
8311 (c-fdoc-shift-type-backward)
8313 ;; Still no identifier.
8314 ;; CASE 8
8315 (when (and got-prefix (or got-parens got-suffix))
8316 ;; Require `got-prefix' together with either `got-parens' or
8317 ;; `got-suffix' to recognize it as an abstract declarator:
8318 ;; `got-parens' only is probably an empty function call.
8319 ;; `got-suffix' only can build an ordinary expression together
8320 ;; with the preceding identifier which we've taken as a type.
8321 ;; We could actually accept on `got-prefix' only, but that can
8322 ;; easily occur temporarily while writing an expression so we
8323 ;; avoid that case anyway. We could do a better job if we knew
8324 ;; the point when the fontification was invoked.
8325 (throw 'at-decl-or-cast t))
8327 ;; CASE 9
8328 (when (and at-type
8329 (not got-prefix)
8330 (not got-parens)
8331 got-suffix-after-parens
8332 (eq (char-after got-suffix-after-parens) ?\())
8333 ;; Got a type, no declarator but a paren suffix. I.e. it's a
8334 ;; normal function call after all (or perhaps a C++ style object
8335 ;; instantiation expression).
8336 (throw 'at-decl-or-cast nil))))
8338 ;; CASE 10
8339 (when at-decl-or-cast
8340 ;; By now we've located the type in the declaration that we know
8341 ;; we're in.
8342 (throw 'at-decl-or-cast t))
8344 ;; CASE 11
8345 (when (and got-identifier
8346 (not context)
8347 (looking-at c-after-suffixed-type-decl-key)
8348 (if (and got-parens
8349 (not got-prefix)
8350 (not got-suffix)
8351 (not (eq at-type t)))
8352 ;; Shift the type backward in the case that there's a
8353 ;; single identifier inside parens. That can only
8354 ;; occur in K&R style function declarations so it's
8355 ;; more likely that it really is a function call.
8356 ;; Therefore we only do this after
8357 ;; `c-after-suffixed-type-decl-key' has matched.
8358 (progn (c-fdoc-shift-type-backward) t)
8359 got-suffix-after-parens))
8360 ;; A declaration according to `c-after-suffixed-type-decl-key'.
8361 (throw 'at-decl-or-cast t))
8363 ;; CASE 12
8364 (when (and (or got-prefix (not got-parens))
8365 (memq at-type '(t known)))
8366 ;; It's a declaration if a known type precedes it and it can't be a
8367 ;; function call.
8368 (throw 'at-decl-or-cast t))
8370 ;; If we get here we can't tell if this is a type decl or a normal
8371 ;; expression by looking at it alone. (That's under the assumption
8372 ;; that normal expressions always can look like type decl expressions,
8373 ;; which isn't really true but the cases where it doesn't hold are so
8374 ;; uncommon (e.g. some placements of "const" in C++) it's not worth
8375 ;; the effort to look for them.)
8377 ;;; 2008-04-16: commented out the next form, to allow the function to recognize
8378 ;;; "foo (int bar)" in CC (an implicit type (in class foo) without a semicolon)
8379 ;;; as a(n almost complete) declaration, enabling it to be fontified.
8380 ;; CASE 13
8381 ;; (unless (or at-decl-end (looking-at "=[^=]"))
8382 ;; If this is a declaration it should end here or its initializer(*)
8383 ;; should start here, so check for allowed separation tokens. Note
8384 ;; that this rule doesn't work e.g. with a K&R arglist after a
8385 ;; function header.
8387 ;; *) Don't check for C++ style initializers using parens
8388 ;; since those already have been matched as suffixes.
8390 ;; If `at-decl-or-cast' is then we've found some other sign that
8391 ;; it's a declaration or cast, so then it's probably an
8392 ;; invalid/unfinished one.
8393 ;; (throw 'at-decl-or-cast at-decl-or-cast))
8395 ;; Below are tests that only should be applied when we're certain to
8396 ;; not have parsed halfway through an expression.
8398 ;; CASE 14
8399 (when (memq at-type '(t known))
8400 ;; The expression starts with a known type so treat it as a
8401 ;; declaration.
8402 (throw 'at-decl-or-cast t))
8404 ;; CASE 15
8405 (when (and (c-major-mode-is 'c++-mode)
8406 ;; In C++ we check if the identifier is a known type, since
8407 ;; (con|de)structors use the class name as identifier.
8408 ;; We've always shifted over the identifier as a type and
8409 ;; then backed up again in this case.
8410 identifier-type
8411 (or (memq identifier-type '(found known))
8412 (and (eq (char-after identifier-start) ?~)
8413 ;; `at-type' probably won't be 'found for
8414 ;; destructors since the "~" is then part of the
8415 ;; type name being checked against the list of
8416 ;; known types, so do a check without that
8417 ;; operator.
8418 (or (save-excursion
8419 (goto-char (1+ identifier-start))
8420 (c-forward-syntactic-ws)
8421 (c-with-syntax-table
8422 c-identifier-syntax-table
8423 (looking-at c-known-type-key)))
8424 (save-excursion
8425 (goto-char (1+ identifier-start))
8426 ;; We have already parsed the type earlier,
8427 ;; so it'd be possible to cache the end
8428 ;; position instead of redoing it here, but
8429 ;; then we'd need to keep track of another
8430 ;; position everywhere.
8431 (c-check-type (point)
8432 (progn (c-forward-type)
8433 (point))))))))
8434 (throw 'at-decl-or-cast t))
8436 (if got-identifier
8437 (progn
8438 ;; CASE 16
8439 (when (and got-prefix-before-parens
8440 at-type
8441 (or at-decl-end (looking-at "=[^=]"))
8442 (not context)
8443 (or (not got-suffix)
8444 at-decl-start))
8445 ;; Got something like "foo * bar;". Since we're not inside
8446 ;; an arglist it would be a meaningless expression because
8447 ;; the result isn't used. We therefore choose to recognize
8448 ;; it as a declaration. We only allow a suffix (which makes
8449 ;; the construct look like a function call) when
8450 ;; `at-decl-start' provides additional evidence that we do
8451 ;; have a declaration.
8452 (setq maybe-expression t)
8453 (throw 'at-decl-or-cast t))
8455 ;; CASE 17
8456 (when (and (or got-suffix-after-parens
8457 (looking-at "=[^=]"))
8458 (eq at-type 'found)
8459 (not (eq context 'arglist)))
8460 ;; Got something like "a (*b) (c);" or "a (b) = c;". It could
8461 ;; be an odd expression or it could be a declaration. Treat
8462 ;; it as a declaration if "a" has been used as a type
8463 ;; somewhere else (if it's a known type we won't get here).
8464 (setq maybe-expression t)
8465 (throw 'at-decl-or-cast t)))
8467 ;; CASE 18
8468 (when (and context
8469 (or got-prefix
8470 (and (eq context 'decl)
8471 (not c-recognize-paren-inits)
8472 (or got-parens got-suffix))))
8473 ;; Got a type followed by an abstract declarator. If `got-prefix'
8474 ;; is set it's something like "a *" without anything after it. If
8475 ;; `got-parens' or `got-suffix' is set it's "a()", "a[]", "a()[]",
8476 ;; or similar, which we accept only if the context rules out
8477 ;; expressions.
8478 (throw 'at-decl-or-cast t)))
8480 ;; If we had a complete symbol table here (which rules out
8481 ;; `c-found-types') we should return t due to the disambiguation rule
8482 ;; (in at least C++) that anything that can be parsed as a declaration
8483 ;; is a declaration. Now we're being more defensive and prefer to
8484 ;; highlight things like "foo (bar);" as a declaration only if we're
8485 ;; inside an arglist that contains declarations.
8486 ;; CASE 19
8487 (eq context 'decl))))
8489 ;; The point is now after the type decl expression.
8491 (cond
8492 ;; Check for a cast.
8493 ((save-excursion
8494 (and
8495 c-cast-parens
8497 ;; Should be the first type/identifier in a cast paren.
8498 (> preceding-token-end (point-min))
8499 (memq (char-before preceding-token-end) c-cast-parens)
8501 ;; The closing paren should follow.
8502 (progn
8503 (c-forward-syntactic-ws)
8504 (looking-at "\\s)"))
8506 ;; There should be a primary expression after it.
8507 (let (pos)
8508 (forward-char)
8509 (c-forward-syntactic-ws)
8510 (setq cast-end (point))
8511 (and (looking-at c-primary-expr-regexp)
8512 (progn
8513 (setq pos (match-end 0))
8515 ;; Check if the expression begins with a prefix keyword.
8516 (match-beginning 2)
8517 (if (match-beginning 1)
8518 ;; Expression begins with an ambiguous operator. Treat
8519 ;; it as a cast if it's a type decl or if we've
8520 ;; recognized the type somewhere else.
8521 (or at-decl-or-cast
8522 (memq at-type '(t known found)))
8523 ;; Unless it's a keyword, it's the beginning of a primary
8524 ;; expression.
8525 (not (looking-at c-keywords-regexp)))))
8526 ;; If `c-primary-expr-regexp' matched a nonsymbol token, check
8527 ;; that it matched a whole one so that we don't e.g. confuse
8528 ;; the operator '-' with '->'. It's ok if it matches further,
8529 ;; though, since it e.g. can match the float '.5' while the
8530 ;; operator regexp only matches '.'.
8531 (or (not (looking-at c-nonsymbol-token-regexp))
8532 (<= (match-end 0) pos))))
8534 ;; There should either be a cast before it or something that isn't an
8535 ;; identifier or close paren.
8536 (> preceding-token-end (point-min))
8537 (progn
8538 (goto-char (1- preceding-token-end))
8539 (or (eq (point) last-cast-end)
8540 (progn
8541 (c-backward-syntactic-ws)
8542 (if (< (skip-syntax-backward "w_") 0)
8543 ;; It's a symbol. Accept it only if it's one of the
8544 ;; keywords that can precede an expression (without
8545 ;; surrounding parens).
8546 (looking-at c-simple-stmt-key)
8547 (and
8548 ;; Check that it isn't a close paren (block close is ok,
8549 ;; though).
8550 (not (memq (char-before) '(?\) ?\])))
8551 ;; Check that it isn't a nonsymbol identifier.
8552 (not (c-on-identifier)))))))))
8554 ;; Handle the cast.
8555 (when (and c-record-type-identifiers at-type (not (eq at-type t)))
8556 (let ((c-promote-possible-types t))
8557 (goto-char type-start)
8558 (c-forward-type)))
8560 (goto-char cast-end)
8561 'cast)
8563 (at-decl-or-cast
8564 ;; We're at a declaration. Highlight the type and the following
8565 ;; declarators.
8567 (when backup-if-not-cast
8568 (c-fdoc-shift-type-backward t))
8570 (when (and (eq context 'decl) (looking-at ","))
8571 ;; Make sure to propagate the `c-decl-arg-start' property to
8572 ;; the next argument if it's set in this one, to cope with
8573 ;; interactive refontification.
8574 (c-put-c-type-property (point) 'c-decl-arg-start))
8576 ;; Record the type's coordinates in `c-record-type-identifiers' for
8577 ;; later fontification.
8578 (when (and c-record-type-identifiers at-type ;; (not (eq at-type t))
8579 ;; There seems no reason to exclude a token from
8580 ;; fontification just because it's "a known type that can't
8581 ;; be a name or other expression". 2013-09-18.
8583 (let ((c-promote-possible-types t))
8584 (save-excursion
8585 (goto-char type-start)
8586 (c-forward-type))))
8588 (list id-start
8589 (and (or at-type-decl at-typedef)
8590 (cons at-type-decl at-typedef))
8591 maybe-expression
8592 type-start))
8595 ;; False alarm. Restore the recorded ranges.
8596 (setq c-record-type-identifiers save-rec-type-ids
8597 c-record-ref-identifiers save-rec-ref-ids)
8598 nil))))
8600 (defun c-forward-label (&optional assume-markup preceding-token-end limit)
8601 ;; Assuming that point is at the beginning of a token, check if it starts a
8602 ;; label and if so move over it and return non-nil (t in default situations,
8603 ;; specific symbols (see below) for interesting situations), otherwise don't
8604 ;; move and return nil. "Label" here means "most things with a colon".
8606 ;; More precisely, a "label" is regarded as one of:
8607 ;; (i) a goto target like "foo:" - returns the symbol `goto-target';
8608 ;; (ii) A case label - either the entire construct "case FOO:", or just the
8609 ;; bare "case", should the colon be missing. We return t;
8610 ;; (iii) a keyword which needs a colon, like "default:" or "private:"; We
8611 ;; return t;
8612 ;; (iv) One of QT's "extended" C++ variants of
8613 ;; "private:"/"protected:"/"public:"/"more:" looking like "public slots:".
8614 ;; Returns the symbol `qt-2kwds-colon'.
8615 ;; (v) QT's construct "signals:". Returns the symbol `qt-1kwd-colon'.
8616 ;; (vi) One of the keywords matched by `c-opt-extra-label-key' (without any
8617 ;; colon). Currently (2006-03), this applies only to Objective C's
8618 ;; keywords "@private", "@protected", and "@public". Returns t.
8620 ;; One of the things which will NOT be recognized as a label is a bit-field
8621 ;; element of a struct, something like "int foo:5".
8623 ;; The end of the label is taken to be just after the colon, or the end of
8624 ;; the first submatch in `c-opt-extra-label-key'. The point is directly
8625 ;; after the end on return. The terminating char gets marked with
8626 ;; `c-decl-end' to improve recognition of the following declaration or
8627 ;; statement.
8629 ;; If ASSUME-MARKUP is non-nil, it's assumed that the preceding
8630 ;; label, if any, has already been marked up like that.
8632 ;; If PRECEDING-TOKEN-END is given, it should be the first position
8633 ;; after the preceding token, i.e. on the other side of the
8634 ;; syntactic ws from the point. Use a value less than or equal to
8635 ;; (point-min) if the point is at the first token in (the visible
8636 ;; part of) the buffer.
8638 ;; The optional LIMIT limits the forward scan for the colon.
8640 ;; This function records the ranges of the label symbols on
8641 ;; `c-record-ref-identifiers' if `c-record-type-identifiers' (!) is
8642 ;; non-nil.
8644 ;; This function might do hidden buffer changes.
8646 (let ((start (point))
8647 label-end
8648 qt-symbol-idx
8649 macro-start ; if we're in one.
8650 label-type
8651 kwd)
8652 (cond
8653 ;; "case" or "default" (Doesn't apply to AWK).
8654 ((looking-at c-label-kwds-regexp)
8655 (let ((kwd-end (match-end 1)))
8656 ;; Record only the keyword itself for fontification, since in
8657 ;; case labels the following is a constant expression and not
8658 ;; a label.
8659 (when c-record-type-identifiers
8660 (c-record-ref-id (cons (match-beginning 1) kwd-end)))
8662 ;; Find the label end.
8663 (goto-char kwd-end)
8664 (setq label-type
8665 (if (and (c-syntactic-re-search-forward
8666 ;; Stop on chars that aren't allowed in expressions,
8667 ;; and on operator chars that would be meaningless
8668 ;; there. FIXME: This doesn't cope with ?: operators.
8669 "[;{=,@]\\|\\(\\=\\|[^:]\\):\\([^:]\\|\\'\\)"
8670 limit t t nil 1)
8671 (match-beginning 2))
8673 (progn ; there's a proper :
8674 (goto-char (match-beginning 2)) ; just after the :
8675 (c-put-c-type-property (1- (point)) 'c-decl-end)
8678 ;; It's an unfinished label. We consider the keyword enough
8679 ;; to recognize it as a label, so that it gets fontified.
8680 ;; Leave the point at the end of it, but don't put any
8681 ;; `c-decl-end' marker.
8682 (goto-char kwd-end)
8683 t))))
8685 ;; @private, @protected, @public, in Objective C, or similar.
8686 ((and c-opt-extra-label-key
8687 (looking-at c-opt-extra-label-key))
8688 ;; For a `c-opt-extra-label-key' match, we record the whole
8689 ;; thing for fontification. That's to get the leading '@' in
8690 ;; Objective-C protection labels fontified.
8691 (goto-char (match-end 1))
8692 (when c-record-type-identifiers
8693 (c-record-ref-id (cons (match-beginning 1) (point))))
8694 (c-put-c-type-property (1- (point)) 'c-decl-end)
8695 (setq label-type t))
8697 ;; All other cases of labels.
8698 ((and c-recognize-colon-labels ; nil for AWK and IDL, otherwise t.
8700 ;; A colon label must have something before the colon.
8701 (not (eq (char-after) ?:))
8703 ;; Check that we're not after a token that can't precede a label.
8705 ;; Trivially succeeds when there's no preceding token.
8706 ;; Succeeds when we're at a virtual semicolon.
8707 (if preceding-token-end
8708 (<= preceding-token-end (point-min))
8709 (save-excursion
8710 (c-backward-syntactic-ws)
8711 (setq preceding-token-end (point))
8712 (or (bobp)
8713 (c-at-vsemi-p))))
8715 ;; Check if we're after a label, if we're after a closing
8716 ;; paren that belong to statement, and with
8717 ;; `c-label-prefix-re'. It's done in different order
8718 ;; depending on `assume-markup' since the checks have
8719 ;; different expensiveness.
8720 (if assume-markup
8722 (eq (c-get-char-property (1- preceding-token-end) 'c-type)
8723 'c-decl-end)
8725 (save-excursion
8726 (goto-char (1- preceding-token-end))
8727 (c-beginning-of-current-token)
8728 (or (looking-at c-label-prefix-re)
8729 (looking-at c-block-stmt-1-key)))
8731 (and (eq (char-before preceding-token-end) ?\))
8732 (c-after-conditional)))
8735 (save-excursion
8736 (goto-char (1- preceding-token-end))
8737 (c-beginning-of-current-token)
8738 (or (looking-at c-label-prefix-re)
8739 (looking-at c-block-stmt-1-key)))
8741 (cond
8742 ((eq (char-before preceding-token-end) ?\))
8743 (c-after-conditional))
8745 ((eq (char-before preceding-token-end) ?:)
8746 ;; Might be after another label, so check it recursively.
8747 (save-restriction
8748 (save-excursion
8749 (goto-char (1- preceding-token-end))
8750 ;; Essentially the same as the
8751 ;; `c-syntactic-re-search-forward' regexp below.
8752 (setq macro-start
8753 (save-excursion (and (c-beginning-of-macro)
8754 (point))))
8755 (if macro-start (narrow-to-region macro-start (point-max)))
8756 (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+" nil t)
8757 ;; Note: the following should work instead of the
8758 ;; narrow-to-region above. Investigate why not,
8759 ;; sometime. ACM, 2006-03-31.
8760 ;; (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+"
8761 ;; macro-start t)
8762 (let ((pte (point))
8763 ;; If the caller turned on recording for us,
8764 ;; it shouldn't apply when we check the
8765 ;; preceding label.
8766 c-record-type-identifiers)
8767 ;; A label can't start at a cpp directive. Check for
8768 ;; this, since c-forward-syntactic-ws would foul up on it.
8769 (unless (and c-opt-cpp-prefix (looking-at c-opt-cpp-prefix))
8770 (c-forward-syntactic-ws)
8771 (c-forward-label nil pte start))))))))))
8773 ;; Point is still at the beginning of the possible label construct.
8775 ;; Check that the next nonsymbol token is ":", or that we're in one
8776 ;; of QT's "slots" declarations. Allow '(' for the sake of macro
8777 ;; arguments. FIXME: Should build this regexp from the language
8778 ;; constants.
8779 (cond
8780 ;; public: protected: private:
8781 ((and
8782 (c-major-mode-is 'c++-mode)
8783 (search-forward-regexp
8784 "\\=p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\>[^_]" nil t)
8785 (progn (backward-char)
8786 (c-forward-syntactic-ws limit)
8787 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon.
8788 (forward-char)
8789 (setq label-type t))
8790 ;; QT double keyword like "protected slots:" or goto target.
8791 ((progn (goto-char start) nil))
8792 ((when (c-syntactic-re-search-forward
8793 "[ \t\n[:?;{=*/%&|,<>!@+-]" limit t t) ; not at EOB
8794 (backward-char)
8795 (setq label-end (point))
8796 (setq qt-symbol-idx
8797 (and (c-major-mode-is 'c++-mode)
8798 (string-match
8799 "\\(p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\|more\\)\\>"
8800 (buffer-substring start (point)))))
8801 (c-forward-syntactic-ws limit)
8802 (cond
8803 ((looking-at ":\\([^:]\\|\\'\\)") ; A single colon.
8804 (forward-char)
8805 (setq label-type
8806 (if (or (string= "signals" ; Special QT macro
8807 (setq kwd (buffer-substring-no-properties start label-end)))
8808 (string= "Q_SIGNALS" kwd))
8809 'qt-1kwd-colon
8810 'goto-target)))
8811 ((and qt-symbol-idx
8812 (search-forward-regexp "\\=\\(slots\\|Q_SLOTS\\)\\>" limit t)
8813 (progn (c-forward-syntactic-ws limit)
8814 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon
8815 (forward-char)
8816 (setq label-type 'qt-2kwds-colon)))))))
8818 (save-restriction
8819 (narrow-to-region start (point))
8821 ;; Check that `c-nonlabel-token-key' doesn't match anywhere.
8822 (catch 'check-label
8823 (goto-char start)
8824 (while (progn
8825 (when (looking-at c-nonlabel-token-key)
8826 (goto-char start)
8827 (setq label-type nil)
8828 (throw 'check-label nil))
8829 (and (c-safe (c-forward-sexp)
8830 (c-forward-syntactic-ws)
8832 (not (eobp)))))
8834 ;; Record the identifiers in the label for fontification, unless
8835 ;; it begins with `c-label-kwds' in which case the following
8836 ;; identifiers are part of a (constant) expression that
8837 ;; shouldn't be fontified.
8838 (when (and c-record-type-identifiers
8839 (progn (goto-char start)
8840 (not (looking-at c-label-kwds-regexp))))
8841 (while (c-syntactic-re-search-forward c-symbol-key nil t)
8842 (c-record-ref-id (cons (match-beginning 0)
8843 (match-end 0)))))
8845 (c-put-c-type-property (1- (point-max)) 'c-decl-end)
8846 (goto-char (point-max)))))
8849 ;; Not a label.
8850 (goto-char start)))
8851 label-type))
8853 (defun c-forward-objc-directive ()
8854 ;; Assuming the point is at the beginning of a token, try to move
8855 ;; forward to the end of the Objective-C directive that starts
8856 ;; there. Return t if a directive was fully recognized, otherwise
8857 ;; the point is moved as far as one could be successfully parsed and
8858 ;; nil is returned.
8860 ;; This function records identifier ranges on
8861 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
8862 ;; `c-record-type-identifiers' is non-nil.
8864 ;; This function might do hidden buffer changes.
8866 (let ((start (point))
8867 start-char
8868 (c-promote-possible-types t)
8870 ;; Turn off recognition of angle bracket arglists while parsing
8871 ;; types here since the protocol reference list might then be
8872 ;; considered part of the preceding name or superclass-name.
8873 c-recognize-<>-arglists)
8875 (if (or
8876 (when (looking-at
8877 (eval-when-compile
8878 (c-make-keywords-re t
8879 (append (c-lang-const c-protection-kwds objc)
8880 '("@end"))
8881 'objc-mode)))
8882 (goto-char (match-end 1))
8885 (and
8886 (looking-at
8887 (eval-when-compile
8888 (c-make-keywords-re t
8889 '("@interface" "@implementation" "@protocol")
8890 'objc-mode)))
8892 ;; Handle the name of the class itself.
8893 (progn
8894 ;; (c-forward-token-2) ; 2006/1/13 This doesn't move if the token's
8895 ;; at EOB.
8896 (goto-char (match-end 0))
8897 (setq lim (point))
8898 (c-skip-ws-forward)
8899 (c-forward-type))
8901 (catch 'break
8902 ;; Look for ": superclass-name" or "( category-name )".
8903 (when (looking-at "[:(]")
8904 (setq start-char (char-after))
8905 (forward-char)
8906 (c-forward-syntactic-ws)
8907 (unless (c-forward-type) (throw 'break nil))
8908 (when (eq start-char ?\()
8909 (unless (eq (char-after) ?\)) (throw 'break nil))
8910 (forward-char)
8911 (c-forward-syntactic-ws)))
8913 ;; Look for a protocol reference list.
8914 (if (eq (char-after) ?<)
8915 (let ((c-recognize-<>-arglists t)
8916 (c-parse-and-markup-<>-arglists t)
8917 c-restricted-<>-arglists)
8918 (c-forward-<>-arglist t))
8919 t))))
8921 (progn
8922 (c-backward-syntactic-ws lim)
8923 (c-clear-c-type-property start (1- (point)) 'c-decl-end)
8924 (c-put-c-type-property (1- (point)) 'c-decl-end)
8927 (c-clear-c-type-property start (point) 'c-decl-end)
8928 nil)))
8930 (defun c-beginning-of-inheritance-list (&optional lim)
8931 ;; Go to the first non-whitespace after the colon that starts a
8932 ;; multiple inheritance introduction. Optional LIM is the farthest
8933 ;; back we should search.
8935 ;; This function might do hidden buffer changes.
8936 (c-with-syntax-table c++-template-syntax-table
8937 (c-backward-token-2 0 t lim)
8938 (while (and (or (looking-at c-symbol-start)
8939 (looking-at "[<,]\\|::"))
8940 (zerop (c-backward-token-2 1 t lim))))))
8942 (defun c-in-method-def-p ()
8943 ;; Return nil if we aren't in a method definition, otherwise the
8944 ;; position of the initial [+-].
8946 ;; This function might do hidden buffer changes.
8947 (save-excursion
8948 (beginning-of-line)
8949 (and c-opt-method-key
8950 (looking-at c-opt-method-key)
8951 (point))
8954 ;; Contributed by Kevin Ryde <user42@zip.com.au>.
8955 (defun c-in-gcc-asm-p ()
8956 ;; Return non-nil if point is within a gcc \"asm\" block.
8958 ;; This should be called with point inside an argument list.
8960 ;; Only one level of enclosing parentheses is considered, so for
8961 ;; instance nil is returned when in a function call within an asm
8962 ;; operand.
8964 ;; This function might do hidden buffer changes.
8966 (and c-opt-asm-stmt-key
8967 (save-excursion
8968 (beginning-of-line)
8969 (backward-up-list 1)
8970 (c-beginning-of-statement-1 (point-min) nil t)
8971 (looking-at c-opt-asm-stmt-key))))
8973 (defun c-at-toplevel-p ()
8974 "Return a determination as to whether point is \"at the top level\".
8975 Informally, \"at the top level\" is anywhere where you can write
8976 a function.
8978 More precisely, being at the top-level means that point is either
8979 outside any enclosing block (such as a function definition), or
8980 directly inside a class, namespace or other block that contains
8981 another declaration level.
8983 If point is not at the top-level (e.g. it is inside a method
8984 definition), then nil is returned. Otherwise, if point is at a
8985 top-level not enclosed within a class definition, t is returned.
8986 Otherwise, a 2-vector is returned where the zeroth element is the
8987 buffer position of the start of the class declaration, and the first
8988 element is the buffer position of the enclosing class's opening
8989 brace.
8991 Note that this function might do hidden buffer changes. See the
8992 comment at the start of cc-engine.el for more info."
8993 ;; Note to maintainers: this function consumes a great mass of CPU cycles.
8994 ;; Its use should thus be minimized as far as possible.
8995 (let ((paren-state (c-parse-state)))
8996 (or (not (c-most-enclosing-brace paren-state))
8997 (c-search-uplist-for-classkey paren-state))))
8999 (defun c-just-after-func-arglist-p (&optional lim)
9000 ;; Return non-nil if the point is in the region after the argument
9001 ;; list of a function and its opening brace (or semicolon in case it
9002 ;; got no body). If there are K&R style argument declarations in
9003 ;; that region, the point has to be inside the first one for this
9004 ;; function to recognize it.
9006 ;; If successful, the point is moved to the first token after the
9007 ;; function header (see `c-forward-decl-or-cast-1' for details) and
9008 ;; the position of the opening paren of the function arglist is
9009 ;; returned.
9011 ;; The point is clobbered if not successful.
9013 ;; LIM is used as bound for backward buffer searches.
9015 ;; This function might do hidden buffer changes.
9017 (let ((beg (point)) id-start)
9018 (and
9019 (eq (c-beginning-of-statement-1 lim) 'same)
9021 (not (and (c-major-mode-is 'objc-mode)
9022 (c-forward-objc-directive)))
9024 (setq id-start
9025 (car-safe (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil)))
9026 (< id-start beg)
9028 ;; There should not be a '=' or ',' between beg and the
9029 ;; start of the declaration since that means we were in the
9030 ;; "expression part" of the declaration.
9031 (or (> (point) beg)
9032 (not (looking-at "[=,]")))
9034 (save-excursion
9035 ;; Check that there's an arglist paren in the
9036 ;; declaration.
9037 (goto-char id-start)
9038 (cond ((eq (char-after) ?\()
9039 ;; The declarator is a paren expression, so skip past it
9040 ;; so that we don't get stuck on that instead of the
9041 ;; function arglist.
9042 (c-forward-sexp))
9043 ((and c-opt-op-identifier-prefix
9044 (looking-at c-opt-op-identifier-prefix))
9045 ;; Don't trip up on "operator ()".
9046 (c-forward-token-2 2 t)))
9047 (and (< (point) beg)
9048 (c-syntactic-re-search-forward "(" beg t t)
9049 (1- (point)))))))
9051 (defun c-in-knr-argdecl (&optional lim)
9052 ;; Return the position of the first argument declaration if point is
9053 ;; inside a K&R style argument declaration list, nil otherwise.
9054 ;; `c-recognize-knr-p' is not checked. If LIM is non-nil, it's a
9055 ;; position that bounds the backward search for the argument list. This
9056 ;; function doesn't move point.
9058 ;; Point must be within a possible K&R region, e.g. just before a top-level
9059 ;; "{". It must be outside of parens and brackets. The test can return
9060 ;; false positives otherwise.
9062 ;; This function might do hidden buffer changes.
9063 (save-excursion
9064 (save-restriction
9065 ;; If we're in a macro, our search range is restricted to it. Narrow to
9066 ;; the searchable range.
9067 (let* ((macro-start (save-excursion (and (c-beginning-of-macro) (point))))
9068 (macro-end (save-excursion (and macro-start (c-end-of-macro) (point))))
9069 (low-lim (max (or lim (point-min)) (or macro-start (point-min))))
9070 before-lparen after-rparen
9071 (here (point))
9072 (pp-count-out 20) ; Max number of paren/brace constructs before
9073 ; we give up.
9074 ids ; List of identifiers in the parenthesized list.
9075 id-start after-prec-token decl-or-cast decl-res
9076 c-last-identifier-range identifier-ok)
9077 (narrow-to-region low-lim (or macro-end (point-max)))
9079 ;; Search backwards for the defun's argument list. We give up if we
9080 ;; encounter a "}" (end of a previous defun) an "=" (which can't be in
9081 ;; a knr region) or BOB.
9083 ;; The criterion for a paren structure being the arg list is:
9084 ;; o - there is non-WS stuff after it but before any "{"; AND
9085 ;; o - the token after it isn't a ";" AND
9086 ;; o - it is preceded by either an identifier (the function name) or
9087 ;; a macro expansion like "DEFUN (...)"; AND
9088 ;; o - its content is a non-empty comma-separated list of identifiers
9089 ;; (an empty arg list won't have a knr region).
9091 ;; The following snippet illustrates these rules:
9092 ;; int foo (bar, baz, yuk)
9093 ;; int bar [] ;
9094 ;; int (*baz) (my_type) ;
9095 ;; int (*(* yuk) (void)) (void) ;
9096 ;; {
9098 ;; Additionally, for a knr list to be recognized:
9099 ;; o - The identifier of each declarator up to and including the
9100 ;; one "near" point must be contained in the arg list.
9102 (catch 'knr
9103 (while (> pp-count-out 0) ; go back one paren/bracket pair each time.
9104 (setq pp-count-out (1- pp-count-out))
9105 (c-syntactic-skip-backward "^)]}=")
9106 (cond ((eq (char-before) ?\))
9107 (setq after-rparen (point)))
9108 ((eq (char-before) ?\])
9109 (setq after-rparen nil))
9110 (t ; either } (hit previous defun) or = or no more
9111 ; parens/brackets.
9112 (throw 'knr nil)))
9114 (if after-rparen
9115 ;; We're inside a paren. Could it be our argument list....?
9117 (and
9118 (progn
9119 (goto-char after-rparen)
9120 (unless (c-go-list-backward) (throw 'knr nil)) ;
9121 ;; FIXME!!! What about macros between the parens? 2007/01/20
9122 (setq before-lparen (point)))
9124 ;; It can't be the arg list if next token is ; or {
9125 (progn (goto-char after-rparen)
9126 (c-forward-syntactic-ws)
9127 (not (memq (char-after) '(?\; ?\{ ?\=))))
9129 ;; Is the thing preceding the list an identifier (the
9130 ;; function name), or a macro expansion?
9131 (progn
9132 (goto-char before-lparen)
9133 (eq (c-backward-token-2) 0)
9134 (or (eq (c-on-identifier) (point))
9135 (and (eq (char-after) ?\))
9136 (c-go-up-list-backward)
9137 (eq (c-backward-token-2) 0)
9138 (eq (c-on-identifier) (point)))))
9140 ;; Have we got a non-empty list of comma-separated
9141 ;; identifiers?
9142 (progn
9143 (goto-char before-lparen)
9144 (c-forward-token-2) ; to first token inside parens
9145 (and
9146 (setq id-start (c-on-identifier)) ; Must be at least one.
9147 (catch 'id-list
9148 (while
9149 (progn
9150 (forward-char)
9151 (c-end-of-current-token)
9152 (push (buffer-substring-no-properties id-start
9153 (point))
9154 ids)
9155 (c-forward-syntactic-ws)
9156 (eq (char-after) ?\,))
9157 (c-forward-token-2)
9158 (unless (setq id-start (c-on-identifier))
9159 (throw 'id-list nil)))
9160 (eq (char-after) ?\)))))
9162 ;; Are all the identifiers in the k&r list up to the
9163 ;; current one also in the argument list?
9164 (progn
9165 (forward-char) ; over the )
9166 (setq after-prec-token after-rparen)
9167 (c-forward-syntactic-ws)
9168 (while (and
9169 (or (consp (setq decl-or-cast
9170 (c-forward-decl-or-cast-1
9171 after-prec-token
9172 nil ; Or 'arglist ???
9173 nil)))
9174 (progn
9175 (goto-char after-prec-token)
9176 (c-forward-syntactic-ws)
9177 (setq identifier-ok (eq (char-after) ?{))
9178 nil))
9179 (eq (char-after) ?\;)
9180 (setq after-prec-token (1+ (point)))
9181 (goto-char (car decl-or-cast))
9182 (setq decl-res (c-forward-declarator))
9183 (setq identifier-ok
9184 (member (buffer-substring-no-properties
9185 (car decl-res) (cadr decl-res))
9186 ids))
9187 (progn
9188 (goto-char after-prec-token)
9189 (prog1 (< (point) here)
9190 (c-forward-syntactic-ws))))
9191 (setq identifier-ok nil))
9192 identifier-ok))
9193 ;; ...Yes. We've identified the function's argument list.
9194 (throw 'knr
9195 (progn (goto-char after-rparen)
9196 (c-forward-syntactic-ws)
9197 (point)))
9198 ;; ...No. The current parens aren't the function's arg list.
9199 (goto-char before-lparen))
9201 (or (c-go-list-backward) ; backwards over [ .... ]
9202 (throw 'knr nil)))))))))
9204 (defun c-skip-conditional ()
9205 ;; skip forward over conditional at point, including any predicate
9206 ;; statements in parentheses. No error checking is performed.
9208 ;; This function might do hidden buffer changes.
9209 (c-forward-sexp (cond
9210 ;; else if()
9211 ((looking-at (concat "\\<else"
9212 "\\([ \t\n]\\|\\\\\n\\)+"
9213 "if\\>\\([^_]\\|$\\)"))
9215 ;; do, else, try, finally
9216 ((looking-at (concat "\\<\\("
9217 "do\\|else\\|try\\|finally"
9218 "\\)\\>\\([^_]\\|$\\)"))
9220 ;; for, if, while, switch, catch, synchronized, foreach
9221 (t 2))))
9223 (defun c-after-conditional (&optional lim)
9224 ;; If looking at the token after a conditional then return the
9225 ;; position of its start, otherwise return nil.
9227 ;; This function might do hidden buffer changes.
9228 (save-excursion
9229 (and (zerop (c-backward-token-2 1 t lim))
9230 (or (looking-at c-block-stmt-1-key)
9231 (and (eq (char-after) ?\()
9232 (zerop (c-backward-token-2 1 t lim))
9233 (or (looking-at c-block-stmt-2-key)
9234 (looking-at c-block-stmt-1-2-key))))
9235 (point))))
9237 (defun c-after-special-operator-id (&optional lim)
9238 ;; If the point is after an operator identifier that isn't handled
9239 ;; like an ordinary symbol (i.e. like "operator =" in C++) then the
9240 ;; position of the start of that identifier is returned. nil is
9241 ;; returned otherwise. The point may be anywhere in the syntactic
9242 ;; whitespace after the last token of the operator identifier.
9244 ;; This function might do hidden buffer changes.
9245 (save-excursion
9246 (and c-overloadable-operators-regexp
9247 (zerop (c-backward-token-2 1 nil lim))
9248 (looking-at c-overloadable-operators-regexp)
9249 (or (not c-opt-op-identifier-prefix)
9250 (and
9251 (zerop (c-backward-token-2 1 nil lim))
9252 (looking-at c-opt-op-identifier-prefix)))
9253 (point))))
9255 (defsubst c-backward-to-block-anchor (&optional lim)
9256 ;; Assuming point is at a brace that opens a statement block of some
9257 ;; kind, move to the proper anchor point for that block. It might
9258 ;; need to be adjusted further by c-add-stmt-syntax, but the
9259 ;; position at return is suitable as start position for that
9260 ;; function.
9262 ;; This function might do hidden buffer changes.
9263 (unless (= (point) (c-point 'boi))
9264 (let ((start (c-after-conditional lim)))
9265 (if start
9266 (goto-char start)))))
9268 (defsubst c-backward-to-decl-anchor (&optional lim)
9269 ;; Assuming point is at a brace that opens the block of a top level
9270 ;; declaration of some kind, move to the proper anchor point for
9271 ;; that block.
9273 ;; This function might do hidden buffer changes.
9274 (unless (= (point) (c-point 'boi))
9275 (c-beginning-of-statement-1 lim)))
9277 (defun c-search-decl-header-end ()
9278 ;; Search forward for the end of the "header" of the current
9279 ;; declaration. That's the position where the definition body
9280 ;; starts, or the first variable initializer, or the ending
9281 ;; semicolon. I.e. search forward for the closest following
9282 ;; (syntactically relevant) '{', '=' or ';' token. Point is left
9283 ;; _after_ the first found token, or at point-max if none is found.
9285 ;; This function might do hidden buffer changes.
9287 (let ((base (point)))
9288 (if (c-major-mode-is 'c++-mode)
9290 ;; In C++ we need to take special care to handle operator
9291 ;; tokens and those pesky template brackets.
9292 (while (and
9293 (c-syntactic-re-search-forward "[;{<=]" nil 'move t t)
9295 (c-end-of-current-token base)
9296 ;; Handle operator identifiers, i.e. ignore any
9297 ;; operator token preceded by "operator".
9298 (save-excursion
9299 (and (c-safe (c-backward-sexp) t)
9300 (looking-at c-opt-op-identifier-prefix)))
9301 (and (eq (char-before) ?<)
9302 (c-with-syntax-table c++-template-syntax-table
9303 (if (c-safe (goto-char (c-up-list-forward (point))))
9305 (goto-char (point-max))
9306 nil)))))
9307 (setq base (point)))
9309 (while (and
9310 (c-syntactic-re-search-forward "[;{=]" nil 'move t t)
9311 (c-end-of-current-token base))
9312 (setq base (point))))))
9314 (defun c-beginning-of-decl-1 (&optional lim)
9315 ;; Go to the beginning of the current declaration, or the beginning
9316 ;; of the previous one if already at the start of it. Point won't
9317 ;; be moved out of any surrounding paren. Return a cons cell of the
9318 ;; form (MOVE . KNR-POS). MOVE is like the return value from
9319 ;; `c-beginning-of-statement-1'. If point skipped over some K&R
9320 ;; style argument declarations (and they are to be recognized) then
9321 ;; KNR-POS is set to the start of the first such argument
9322 ;; declaration, otherwise KNR-POS is nil. If LIM is non-nil, it's a
9323 ;; position that bounds the backward search.
9325 ;; NB: Cases where the declaration continues after the block, as in
9326 ;; "struct foo { ... } bar;", are currently recognized as two
9327 ;; declarations, e.g. "struct foo { ... }" and "bar;" in this case.
9329 ;; This function might do hidden buffer changes.
9330 (catch 'return
9331 (let* ((start (point))
9332 (last-stmt-start (point))
9333 (move (c-beginning-of-statement-1 lim nil t)))
9335 ;; `c-beginning-of-statement-1' stops at a block start, but we
9336 ;; want to continue if the block doesn't begin a top level
9337 ;; construct, i.e. if it isn't preceded by ';', '}', ':', bob,
9338 ;; or an open paren.
9339 (let ((beg (point)) tentative-move)
9340 ;; Go back one "statement" each time round the loop until we're just
9341 ;; after a ;, }, or :, or at BOB or the start of a macro or start of
9342 ;; an ObjC method. This will move over a multiple declaration whose
9343 ;; components are comma separated.
9344 (while (and
9345 ;; Must check with c-opt-method-key in ObjC mode.
9346 (not (and c-opt-method-key
9347 (looking-at c-opt-method-key)))
9348 (/= last-stmt-start (point))
9349 (progn
9350 (c-backward-syntactic-ws lim)
9351 (not (or (memq (char-before) '(?\; ?} ?: nil))
9352 (c-at-vsemi-p))))
9353 (save-excursion
9354 (backward-char)
9355 (not (looking-at "\\s(")))
9356 ;; Check that we don't move from the first thing in a
9357 ;; macro to its header.
9358 (not (eq (setq tentative-move
9359 (c-beginning-of-statement-1 lim nil t))
9360 'macro)))
9361 (setq last-stmt-start beg
9362 beg (point)
9363 move tentative-move))
9364 (goto-char beg))
9366 (when c-recognize-knr-p
9367 (let ((fallback-pos (point)) knr-argdecl-start)
9368 ;; Handle K&R argdecls. Back up after the "statement" jumped
9369 ;; over by `c-beginning-of-statement-1', unless it was the
9370 ;; function body, in which case we're sitting on the opening
9371 ;; brace now. Then test if we're in a K&R argdecl region and
9372 ;; that we started at the other side of the first argdecl in
9373 ;; it.
9374 (unless (eq (char-after) ?{)
9375 (goto-char last-stmt-start))
9376 (if (and (setq knr-argdecl-start (c-in-knr-argdecl lim))
9377 (< knr-argdecl-start start)
9378 (progn
9379 (goto-char knr-argdecl-start)
9380 (not (eq (c-beginning-of-statement-1 lim nil t) 'macro))))
9381 (throw 'return
9382 (cons (if (eq (char-after fallback-pos) ?{)
9383 'previous
9384 'same)
9385 knr-argdecl-start))
9386 (goto-char fallback-pos))))
9388 ;; `c-beginning-of-statement-1' counts each brace block as a separate
9389 ;; statement, so the result will be 'previous if we've moved over any.
9390 ;; So change our result back to 'same if necessary.
9392 ;; If they were brace list initializers we might not have moved over a
9393 ;; declaration boundary though, so change it to 'same if we've moved
9394 ;; past a '=' before '{', but not ';'. (This ought to be integrated
9395 ;; into `c-beginning-of-statement-1', so we avoid this extra pass which
9396 ;; potentially can search over a large amount of text.). Take special
9397 ;; pains not to get mislead by C++'s "operator=", and the like.
9398 (if (and (eq move 'previous)
9399 (c-with-syntax-table (if (c-major-mode-is 'c++-mode)
9400 c++-template-syntax-table
9401 (syntax-table))
9402 (save-excursion
9403 (and
9404 (progn
9405 (while ; keep going back to "[;={"s until we either find
9406 ; no more, or get to one which isn't an "operator ="
9407 (and (c-syntactic-re-search-forward "[;={]" start t t t)
9408 (eq (char-before) ?=)
9409 c-overloadable-operators-regexp
9410 c-opt-op-identifier-prefix
9411 (save-excursion
9412 (eq (c-backward-token-2) 0)
9413 (looking-at c-overloadable-operators-regexp)
9414 (eq (c-backward-token-2) 0)
9415 (looking-at c-opt-op-identifier-prefix))))
9416 (eq (char-before) ?=))
9417 (c-syntactic-re-search-forward "[;{]" start t t)
9418 (eq (char-before) ?{)
9419 (c-safe (goto-char (c-up-list-forward (point))) t)
9420 (not (c-syntactic-re-search-forward ";" start t t))))))
9421 (cons 'same nil)
9422 (cons move nil)))))
9424 (defun c-end-of-decl-1 ()
9425 ;; Assuming point is at the start of a declaration (as detected by
9426 ;; e.g. `c-beginning-of-decl-1'), go to the end of it. Unlike
9427 ;; `c-beginning-of-decl-1', this function handles the case when a
9428 ;; block is followed by identifiers in e.g. struct declarations in C
9429 ;; or C++. If a proper end was found then t is returned, otherwise
9430 ;; point is moved as far as possible within the current sexp and nil
9431 ;; is returned. This function doesn't handle macros; use
9432 ;; `c-end-of-macro' instead in those cases.
9434 ;; This function might do hidden buffer changes.
9435 (let ((start (point))
9436 (decl-syntax-table (if (c-major-mode-is 'c++-mode)
9437 c++-template-syntax-table
9438 (syntax-table))))
9439 (catch 'return
9440 (c-search-decl-header-end)
9442 (when (and c-recognize-knr-p
9443 (eq (char-before) ?\;)
9444 (c-in-knr-argdecl start))
9445 ;; Stopped at the ';' in a K&R argdecl section which is
9446 ;; detected using the same criteria as in
9447 ;; `c-beginning-of-decl-1'. Move to the following block
9448 ;; start.
9449 (c-syntactic-re-search-forward "{" nil 'move t))
9451 (when (eq (char-before) ?{)
9452 ;; Encountered a block in the declaration. Jump over it.
9453 (condition-case nil
9454 (goto-char (c-up-list-forward (point)))
9455 (error (goto-char (point-max))
9456 (throw 'return nil)))
9457 (if (or (not c-opt-block-decls-with-vars-key)
9458 (save-excursion
9459 (c-with-syntax-table decl-syntax-table
9460 (let ((lim (point)))
9461 (goto-char start)
9462 (not (and
9463 ;; Check for `c-opt-block-decls-with-vars-key'
9464 ;; before the first paren.
9465 (c-syntactic-re-search-forward
9466 (concat "[;=([{]\\|\\("
9467 c-opt-block-decls-with-vars-key
9468 "\\)")
9469 lim t t t)
9470 (match-beginning 1)
9471 (not (eq (char-before) ?_))
9472 ;; Check that the first following paren is
9473 ;; the block.
9474 (c-syntactic-re-search-forward "[;=([{]"
9475 lim t t t)
9476 (eq (char-before) ?{)))))))
9477 ;; The declaration doesn't have any of the
9478 ;; `c-opt-block-decls-with-vars' keywords in the
9479 ;; beginning, so it ends here at the end of the block.
9480 (throw 'return t)))
9482 (c-with-syntax-table decl-syntax-table
9483 (while (progn
9484 (if (eq (char-before) ?\;)
9485 (throw 'return t))
9486 (c-syntactic-re-search-forward ";" nil 'move t))))
9487 nil)))
9489 (defun c-looking-at-decl-block (containing-sexp goto-start &optional limit)
9490 ;; Assuming the point is at an open brace, check if it starts a
9491 ;; block that contains another declaration level, i.e. that isn't a
9492 ;; statement block or a brace list, and if so return non-nil.
9494 ;; If the check is successful, the return value is the start of the
9495 ;; keyword that tells what kind of construct it is, i.e. typically
9496 ;; what `c-decl-block-key' matched. Also, if GOTO-START is set then
9497 ;; the point will be at the start of the construct, before any
9498 ;; leading specifiers, otherwise it's at the returned position.
9500 ;; The point is clobbered if the check is unsuccessful.
9502 ;; CONTAINING-SEXP is the position of the open of the surrounding
9503 ;; paren, or nil if none.
9505 ;; The optional LIMIT limits the backward search for the start of
9506 ;; the construct. It's assumed to be at a syntactically relevant
9507 ;; position.
9509 ;; If any template arglists are found in the searched region before
9510 ;; the open brace, they get marked with paren syntax.
9512 ;; This function might do hidden buffer changes.
9514 (let ((open-brace (point)) kwd-start first-specifier-pos)
9515 (c-syntactic-skip-backward c-block-prefix-charset limit t)
9517 (when (and c-recognize-<>-arglists
9518 (eq (char-before) ?>))
9519 ;; Could be at the end of a template arglist.
9520 (let ((c-parse-and-markup-<>-arglists t))
9521 (while (and
9522 (c-backward-<>-arglist nil limit)
9523 (progn
9524 (c-syntactic-skip-backward c-block-prefix-charset limit t)
9525 (eq (char-before) ?>))))))
9527 ;; Skip back over noise clauses.
9528 (while (and
9529 c-opt-cpp-prefix
9530 (eq (char-before) ?\))
9531 (let ((after-paren (point)))
9532 (if (and (c-go-list-backward)
9533 (progn (c-backward-syntactic-ws)
9534 (c-simple-skip-symbol-backward))
9535 (or (looking-at c-paren-nontype-key)
9536 (looking-at c-noise-macro-with-parens-name-re)))
9537 (progn
9538 (c-syntactic-skip-backward c-block-prefix-charset limit t)
9540 (goto-char after-paren)
9541 nil))))
9543 ;; Note: Can't get bogus hits inside template arglists below since they
9544 ;; have gotten paren syntax above.
9545 (when (and
9546 ;; If `goto-start' is set we begin by searching for the
9547 ;; first possible position of a leading specifier list.
9548 ;; The `c-decl-block-key' search continues from there since
9549 ;; we know it can't match earlier.
9550 (if goto-start
9551 (when (c-syntactic-re-search-forward c-symbol-start
9552 open-brace t t)
9553 (goto-char (setq first-specifier-pos (match-beginning 0)))
9557 (cond
9558 ((c-syntactic-re-search-forward c-decl-block-key open-brace t t t)
9559 (goto-char (setq kwd-start (match-beginning 0)))
9560 (and
9561 ;; Exclude cases where we matched what would ordinarily
9562 ;; be a block declaration keyword, except where it's not
9563 ;; legal because it's part of a "compound keyword" like
9564 ;; "enum class". Of course, if c-after-brace-list-key
9565 ;; is nil, we can skip the test.
9566 (or (equal c-after-brace-list-key "\\<\\>")
9567 (save-match-data
9568 (save-excursion
9569 (not
9570 (and
9571 (looking-at c-after-brace-list-key)
9572 (= (c-backward-token-2 1 t) 0)
9573 (looking-at c-brace-list-key))))))
9575 ;; Found a keyword that can't be a type?
9576 (match-beginning 1)
9578 ;; Can be a type too, in which case it's the return type of a
9579 ;; function (under the assumption that no declaration level
9580 ;; block construct starts with a type).
9581 (not (c-forward-type))
9583 ;; Jumped over a type, but it could be a declaration keyword
9584 ;; followed by the declared identifier that we've jumped over
9585 ;; instead (e.g. in "class Foo {"). If it indeed is a type
9586 ;; then we should be at the declarator now, so check for a
9587 ;; valid declarator start.
9589 ;; Note: This doesn't cope with the case when a declared
9590 ;; identifier is followed by e.g. '(' in a language where '('
9591 ;; also might be part of a declarator expression. Currently
9592 ;; there's no such language.
9593 (not (or (looking-at c-symbol-start)
9594 (looking-at c-type-decl-prefix-key))))))
9596 ;; In Pike a list of modifiers may be followed by a brace
9597 ;; to make them apply to many identifiers. Note that the
9598 ;; match data will be empty on return in this case.
9599 ((and (c-major-mode-is 'pike-mode)
9600 (progn
9601 (goto-char open-brace)
9602 (= (c-backward-token-2) 0))
9603 (looking-at c-specifier-key)
9604 ;; Use this variant to avoid yet another special regexp.
9605 (c-keyword-member (c-keyword-sym (match-string 1))
9606 'c-modifier-kwds))
9607 (setq kwd-start (point))
9608 t)))
9610 ;; Got a match.
9612 (if goto-start
9613 ;; Back up over any preceding specifiers and their clauses
9614 ;; by going forward from `first-specifier-pos', which is the
9615 ;; earliest possible position where the specifier list can
9616 ;; start.
9617 (progn
9618 (goto-char first-specifier-pos)
9620 (while (< (point) kwd-start)
9621 (if (looking-at c-symbol-key)
9622 ;; Accept any plain symbol token on the ground that
9623 ;; it's a specifier masked through a macro (just
9624 ;; like `c-forward-decl-or-cast-1' skip forward over
9625 ;; such tokens).
9627 ;; Could be more restrictive wrt invalid keywords,
9628 ;; but that'd only occur in invalid code so there's
9629 ;; no use spending effort on it.
9630 (let ((end (match-end 0)))
9631 (unless (c-forward-keyword-clause 0)
9632 (goto-char end)
9633 (c-forward-syntactic-ws)))
9635 ;; Can't parse a declaration preamble and is still
9636 ;; before `kwd-start'. That means `first-specifier-pos'
9637 ;; was in some earlier construct. Search again.
9638 (if (c-syntactic-re-search-forward c-symbol-start
9639 kwd-start 'move t)
9640 (goto-char (setq first-specifier-pos (match-beginning 0)))
9641 ;; Got no preamble before the block declaration keyword.
9642 (setq first-specifier-pos kwd-start))))
9644 (goto-char first-specifier-pos))
9645 (goto-char kwd-start))
9647 kwd-start)))
9649 (defun c-directly-in-class-called-p (name)
9650 ;; Check whether point is directly inside a brace block which is the brace
9651 ;; block of a class, struct, or union which is called NAME, a string.
9652 (let* ((paren-state (c-parse-state))
9653 (brace-pos (c-pull-open-brace paren-state))
9655 (when (eq (char-after brace-pos) ?{)
9656 (goto-char brace-pos)
9657 (save-excursion
9658 ; *c-looking-at-decl-block
9659 ; containing-sexp goto-start &optional
9660 ; limit)
9661 (when (and (c-looking-at-decl-block
9662 (c-pull-open-brace paren-state)
9663 nil)
9664 (looking-at c-class-key))
9665 (goto-char (match-end 1))
9666 (c-forward-syntactic-ws)
9667 (looking-at name))))))
9669 (defun c-search-uplist-for-classkey (paren-state)
9670 ;; Check if the closest containing paren sexp is a declaration
9671 ;; block, returning a 2 element vector in that case. Aref 0
9672 ;; contains the bufpos at boi of the class key line, and aref 1
9673 ;; contains the bufpos of the open brace. This function is an
9674 ;; obsolete wrapper for `c-looking-at-decl-block'.
9676 ;; This function might do hidden buffer changes.
9677 (let ((open-paren-pos (c-most-enclosing-brace paren-state)))
9678 (when open-paren-pos
9679 (save-excursion
9680 (goto-char open-paren-pos)
9681 (when (and (eq (char-after) ?{)
9682 (c-looking-at-decl-block
9683 (c-safe-position open-paren-pos paren-state)
9684 nil))
9685 (back-to-indentation)
9686 (vector (point) open-paren-pos))))))
9688 (defun c-most-enclosing-decl-block (paren-state)
9689 ;; Return the buffer position of the most enclosing decl-block brace (in the
9690 ;; sense of c-looking-at-decl-block) in the PAREN-STATE structure, or nil if
9691 ;; none was found.
9692 (let* ((open-brace (c-pull-open-brace paren-state))
9693 (next-open-brace (c-pull-open-brace paren-state)))
9694 (while (and open-brace
9695 (save-excursion
9696 (goto-char open-brace)
9697 (not (c-looking-at-decl-block next-open-brace nil))))
9698 (setq open-brace next-open-brace
9699 next-open-brace (c-pull-open-brace paren-state)))
9700 open-brace))
9702 (defun c-cheap-inside-bracelist-p (paren-state)
9703 ;; Return the position of the L-brace if point is inside a brace list
9704 ;; initialization of an array, etc. This is an approximate function,
9705 ;; designed for speed over accuracy. It will not find every bracelist, but
9706 ;; a non-nil result is reliable. We simply search for "= {" (naturally with
9707 ;; syntactic whitespace allowed). PAREN-STATE is the normal thing that it
9708 ;; is everywhere else.
9709 (let (b-pos)
9710 (save-excursion
9711 (while
9712 (and (setq b-pos (c-pull-open-brace paren-state))
9713 (progn (goto-char b-pos)
9714 (c-backward-sws)
9715 (c-backward-token-2)
9716 (not (looking-at "=")))))
9717 b-pos)))
9719 (defun c-backward-typed-enum-colon ()
9720 ;; We're at a "{" which might be the opening brace of a enum which is
9721 ;; strongly typed (by a ":" followed by a type). If this is the case, leave
9722 ;; point before the colon and return t. Otherwise leave point unchanged and return nil.
9723 ;; Match data will be clobbered.
9724 (let ((here (point))
9725 (colon-pos nil))
9726 (save-excursion
9727 (while
9728 (and (eql (c-backward-token-2) 0)
9729 (or (not (looking-at "\\s)"))
9730 (c-go-up-list-backward))
9731 (cond
9732 ((and (eql (char-after) ?:)
9733 (save-excursion
9734 (c-backward-syntactic-ws)
9735 (c-on-identifier)))
9736 (setq colon-pos (point))
9737 (forward-char)
9738 (c-forward-syntactic-ws)
9739 (or (and (c-forward-type)
9740 (progn (c-forward-syntactic-ws)
9741 (eq (point) here)))
9742 (setq colon-pos nil))
9743 nil)
9744 ((eql (char-after) ?\()
9746 ((looking-at c-symbol-key)
9748 (t nil)))))
9749 (when colon-pos
9750 (goto-char colon-pos)
9751 t)))
9753 (defun c-backward-over-enum-header ()
9754 ;; We're at a "{". Move back to the enum-like keyword that starts this
9755 ;; declaration and return t, otherwise don't move and return nil.
9756 (let ((here (point))
9757 up-sexp-pos before-identifier)
9758 (when c-recognize-post-brace-list-type-p
9759 (c-backward-typed-enum-colon))
9760 (while
9761 (and
9762 (eq (c-backward-token-2) 0)
9763 (or (not (looking-at "\\s)"))
9764 (c-go-up-list-backward))
9765 (cond
9766 ((and (looking-at c-symbol-key) (c-on-identifier)
9767 (not before-identifier))
9768 (setq before-identifier t))
9769 ((and before-identifier
9770 (or (eql (char-after) ?,)
9771 (looking-at c-postfix-decl-spec-key)))
9772 (setq before-identifier nil)
9774 ((looking-at c-after-brace-list-key) t)
9775 ((looking-at c-brace-list-key) nil)
9776 ((eq (char-after) ?\()
9777 (and (eq (c-backward-token-2) 0)
9778 (or (looking-at c-decl-hangon-key)
9779 (and c-opt-cpp-prefix
9780 (looking-at c-noise-macro-with-parens-name-re)))))
9782 ((and c-recognize-<>-arglists
9783 (eq (char-after) ?<)
9784 (looking-at "\\s("))
9786 (t nil))))
9787 (or (looking-at c-brace-list-key)
9788 (progn (goto-char here) nil))))
9790 (defun c-inside-bracelist-p (containing-sexp paren-state)
9791 ;; return the buffer position of the beginning of the brace list
9792 ;; statement if we're inside a brace list, otherwise return nil.
9793 ;; CONTAINING-SEXP is the buffer pos of the innermost containing
9794 ;; paren. PAREN-STATE is the remainder of the state of enclosing
9795 ;; braces
9797 ;; N.B.: This algorithm can potentially get confused by cpp macros
9798 ;; placed in inconvenient locations. It's a trade-off we make for
9799 ;; speed.
9801 ;; This function might do hidden buffer changes.
9803 ;; This will pick up brace list declarations.
9804 (save-excursion
9805 (goto-char containing-sexp)
9806 (c-backward-over-enum-header))
9807 ;; this will pick up array/aggregate init lists, even if they are nested.
9808 (save-excursion
9809 (let ((class-key
9810 ;; Pike can have class definitions anywhere, so we must
9811 ;; check for the class key here.
9812 (and (c-major-mode-is 'pike-mode)
9813 c-decl-block-key))
9814 bufpos braceassignp lim next-containing macro-start)
9815 (while (and (not bufpos)
9816 containing-sexp)
9817 (when paren-state
9818 (if (consp (car paren-state))
9819 (setq lim (cdr (car paren-state))
9820 paren-state (cdr paren-state))
9821 (setq lim (car paren-state)))
9822 (when paren-state
9823 (setq next-containing (car paren-state)
9824 paren-state (cdr paren-state))))
9825 (goto-char containing-sexp)
9826 (if (c-looking-at-inexpr-block next-containing next-containing)
9827 ;; We're in an in-expression block of some kind. Do not
9828 ;; check nesting. We deliberately set the limit to the
9829 ;; containing sexp, so that c-looking-at-inexpr-block
9830 ;; doesn't check for an identifier before it.
9831 (setq containing-sexp nil)
9832 ;; see if the open brace is preceded by = or [...] in
9833 ;; this statement, but watch out for operator=
9834 (setq braceassignp 'dontknow)
9835 (c-backward-token-2 1 t lim)
9836 ;; Checks to do only on the first sexp before the brace.
9837 (when (and c-opt-inexpr-brace-list-key
9838 (eq (char-after) ?\[))
9839 ;; In Java, an initialization brace list may follow
9840 ;; directly after "new Foo[]", so check for a "new"
9841 ;; earlier.
9842 (while (eq braceassignp 'dontknow)
9843 (setq braceassignp
9844 (cond ((/= (c-backward-token-2 1 t lim) 0) nil)
9845 ((looking-at c-opt-inexpr-brace-list-key) t)
9846 ((looking-at "\\sw\\|\\s_\\|[.[]")
9847 ;; Carry on looking if this is an
9848 ;; identifier (may contain "." in Java)
9849 ;; or another "[]" sexp.
9850 'dontknow)
9851 (t nil)))))
9852 ;; Checks to do on all sexps before the brace, up to the
9853 ;; beginning of the statement.
9854 (while (eq braceassignp 'dontknow)
9855 (cond ((eq (char-after) ?\;)
9856 (setq braceassignp nil))
9857 ((and class-key
9858 (looking-at class-key))
9859 (setq braceassignp nil))
9860 ((eq (char-after) ?=)
9861 ;; We've seen a =, but must check earlier tokens so
9862 ;; that it isn't something that should be ignored.
9863 (setq braceassignp 'maybe)
9864 (while (and (eq braceassignp 'maybe)
9865 (zerop (c-backward-token-2 1 t lim)))
9866 (setq braceassignp
9867 (cond
9868 ;; Check for operator =
9869 ((and c-opt-op-identifier-prefix
9870 (looking-at c-opt-op-identifier-prefix))
9871 nil)
9872 ;; Check for `<opchar>= in Pike.
9873 ((and (c-major-mode-is 'pike-mode)
9874 (or (eq (char-after) ?`)
9875 ;; Special case for Pikes
9876 ;; `[]=, since '[' is not in
9877 ;; the punctuation class.
9878 (and (eq (char-after) ?\[)
9879 (eq (char-before) ?`))))
9880 nil)
9881 ((looking-at "\\s.") 'maybe)
9882 ;; make sure we're not in a C++ template
9883 ;; argument assignment
9884 ((and
9885 (c-major-mode-is 'c++-mode)
9886 (save-excursion
9887 (let ((here (point))
9888 (pos< (progn
9889 (skip-chars-backward "^<>")
9890 (point))))
9891 (and (eq (char-before) ?<)
9892 (not (c-crosses-statement-barrier-p
9893 pos< here))
9894 (not (c-in-literal))
9895 ))))
9896 nil)
9897 (t t))))))
9898 (if (and (eq braceassignp 'dontknow)
9899 (/= (c-backward-token-2 1 t lim) 0))
9900 (setq braceassignp nil)))
9901 (cond
9902 (braceassignp
9903 ;; We've hit the beginning of the aggregate list.
9904 (c-beginning-of-statement-1
9905 (c-most-enclosing-brace paren-state))
9906 (setq bufpos (point)))
9907 ((eq (char-after) ?\;)
9908 ;; Brace lists can't contain a semicolon, so we're done.
9909 (setq containing-sexp nil))
9910 ((and (setq macro-start (point))
9911 (c-forward-to-cpp-define-body)
9912 (eq (point) containing-sexp))
9913 ;; We've a macro whose expansion starts with the '{'.
9914 ;; Heuristically, if we have a ';' in it we've not got a
9915 ;; brace list, otherwise we have.
9916 (let ((macro-end (progn (c-end-of-macro) (point))))
9917 (goto-char containing-sexp)
9918 (forward-char)
9919 (if (and (c-syntactic-re-search-forward "[;,]" macro-end t t)
9920 (eq (char-before) ?\;))
9921 (setq bufpos nil
9922 containing-sexp nil)
9923 (setq bufpos macro-start))))
9925 ;; Go up one level
9926 (setq containing-sexp next-containing
9927 lim nil
9928 next-containing nil)))))
9930 bufpos))
9933 (defun c-looking-at-special-brace-list (&optional lim)
9934 ;; If we're looking at the start of a pike-style list, i.e., `({ })',
9935 ;; `([ ])', `(< >)', etc., a cons of a cons of its starting and ending
9936 ;; positions and its entry in c-special-brace-lists is returned, nil
9937 ;; otherwise. The ending position is nil if the list is still open.
9938 ;; LIM is the limit for forward search. The point may either be at
9939 ;; the `(' or at the following paren character. Tries to check the
9940 ;; matching closer, but assumes it's correct if no balanced paren is
9941 ;; found (i.e. the case `({ ... } ... )' is detected as _not_ being
9942 ;; a special brace list).
9944 ;; This function might do hidden buffer changes.
9945 (if c-special-brace-lists
9946 (condition-case ()
9947 (save-excursion
9948 (let ((beg (point))
9949 inner-beg end type)
9950 (c-forward-syntactic-ws)
9951 (if (eq (char-after) ?\()
9952 (progn
9953 (forward-char 1)
9954 (c-forward-syntactic-ws)
9955 (setq inner-beg (point))
9956 (setq type (assq (char-after) c-special-brace-lists)))
9957 (if (setq type (assq (char-after) c-special-brace-lists))
9958 (progn
9959 (setq inner-beg (point))
9960 (c-backward-syntactic-ws)
9961 (forward-char -1)
9962 (setq beg (if (eq (char-after) ?\()
9963 (point)
9964 nil)))))
9965 (if (and beg type)
9966 (if (and (c-safe
9967 (goto-char beg)
9968 (c-forward-sexp 1)
9969 (setq end (point))
9970 (= (char-before) ?\)))
9971 (c-safe
9972 (goto-char inner-beg)
9973 (if (looking-at "\\s(")
9974 ;; Check balancing of the inner paren
9975 ;; below.
9976 (progn
9977 (c-forward-sexp 1)
9979 ;; If the inner char isn't a paren then
9980 ;; we can't check balancing, so just
9981 ;; check the char before the outer
9982 ;; closing paren.
9983 (goto-char end)
9984 (backward-char)
9985 (c-backward-syntactic-ws)
9986 (= (char-before) (cdr type)))))
9987 (if (or (/= (char-syntax (char-before)) ?\))
9988 (= (progn
9989 (c-forward-syntactic-ws)
9990 (point))
9991 (1- end)))
9992 (cons (cons beg end) type))
9993 (cons (list beg) type)))))
9994 (error nil))))
9996 (defun c-looking-at-bos (&optional lim)
9997 ;; Return non-nil if between two statements or declarations, assuming
9998 ;; point is not inside a literal or comment.
10000 ;; Obsolete - `c-at-statement-start-p' or `c-at-expression-start-p'
10001 ;; are recommended instead.
10003 ;; This function might do hidden buffer changes.
10004 (c-at-statement-start-p))
10005 (make-obsolete 'c-looking-at-bos 'c-at-statement-start-p "22.1")
10007 (defun c-looking-at-inexpr-block (lim containing-sexp &optional check-at-end)
10008 ;; Return non-nil if we're looking at the beginning of a block
10009 ;; inside an expression. The value returned is actually a cons of
10010 ;; either 'inlambda, 'inexpr-statement or 'inexpr-class and the
10011 ;; position of the beginning of the construct.
10013 ;; LIM limits the backward search. CONTAINING-SEXP is the start
10014 ;; position of the closest containing list. If it's nil, the
10015 ;; containing paren isn't used to decide whether we're inside an
10016 ;; expression or not. If both LIM and CONTAINING-SEXP are used, LIM
10017 ;; needs to be farther back.
10019 ;; If CHECK-AT-END is non-nil then extra checks at the end of the
10020 ;; brace block might be done. It should only be used when the
10021 ;; construct can be assumed to be complete, i.e. when the original
10022 ;; starting position was further down than that.
10024 ;; This function might do hidden buffer changes.
10026 (save-excursion
10027 (let ((res 'maybe) (passed-bracket-pairs 0) bracket-pos passed-paren
10028 haskell-op-pos
10029 (closest-lim (or containing-sexp lim (point-min)))
10030 ;; Look at the character after point only as a last resort
10031 ;; when we can't disambiguate.
10032 (block-follows (and (eq (char-after) ?{) (point))))
10034 ;; Search for a C++11 "->" which suggests a lambda declaration.
10035 (when (and (c-major-mode-is 'c++-mode)
10036 (setq haskell-op-pos
10037 (save-excursion
10038 (while
10039 (progn
10040 (c-syntactic-skip-backward "^;=}>" closest-lim t)
10041 (and (eq (char-before) ?>)
10042 (c-backward-token-2)
10043 (not (looking-at c-haskell-op-re)))))
10044 (and (looking-at c-haskell-op-re)
10045 (point)))))
10046 (goto-char haskell-op-pos))
10048 (while (and (eq res 'maybe)
10049 (progn (c-backward-syntactic-ws)
10050 (> (point) closest-lim))
10051 (not (bobp))
10052 (progn (backward-char)
10053 (looking-at "[]).]\\|\\w\\|\\s_"))
10054 (c-safe (forward-char)
10055 (goto-char (scan-sexps (point) -1))))
10057 (setq res
10058 (if (looking-at c-keywords-regexp)
10059 (let ((kw-sym (c-keyword-sym (match-string 1))))
10060 (cond
10061 ((and block-follows
10062 (c-keyword-member kw-sym 'c-inexpr-class-kwds))
10063 (and (not (eq passed-paren ?\[))
10064 (or (not (looking-at c-class-key))
10065 ;; If the class definition is at the start of
10066 ;; a statement, we don't consider it an
10067 ;; in-expression class.
10068 (let ((prev (point)))
10069 (while (and
10070 (= (c-backward-token-2 1 nil closest-lim) 0)
10071 (eq (char-syntax (char-after)) ?w))
10072 (setq prev (point)))
10073 (goto-char prev)
10074 (not (c-at-statement-start-p)))
10075 ;; Also, in Pike we treat it as an
10076 ;; in-expression class if it's used in an
10077 ;; object clone expression.
10078 (save-excursion
10079 (and check-at-end
10080 (c-major-mode-is 'pike-mode)
10081 (progn (goto-char block-follows)
10082 (zerop (c-forward-token-2 1 t)))
10083 (eq (char-after) ?\())))
10084 (cons 'inexpr-class (point))))
10085 ((c-keyword-member kw-sym 'c-paren-any-kwds) ; e.g. C++11 "throw" or "noexcept"
10086 (setq passed-paren nil)
10087 (setq passed-bracket-pairs 0)
10088 (setq bracket-pos nil)
10089 'maybe)
10090 ((c-keyword-member kw-sym 'c-inexpr-block-kwds)
10091 (when (not passed-paren)
10092 (cons 'inexpr-statement (point))))
10093 ((c-keyword-member kw-sym 'c-lambda-kwds)
10094 (when (or (not passed-paren)
10095 (eq passed-paren ?\())
10096 (cons 'inlambda (point))))
10097 ((c-keyword-member kw-sym 'c-block-stmt-kwds)
10098 nil)
10100 'maybe)))
10102 (if (looking-at "\\s(")
10103 (if passed-paren
10104 (cond
10105 ((and (eq passed-paren ?\[)
10106 (eq (char-after) ?\[)
10107 (not (eq (char-after (1+ (point))) ?\[))) ; C++ attribute.
10108 ;; Accept several square bracket sexps for
10109 ;; Java array initializations.
10110 (setq passed-bracket-pairs (1+ passed-bracket-pairs))
10111 'maybe)
10112 ((and (eq passed-paren ?\()
10113 (eq (char-after) ?\[)
10114 (not (eq (char-after (1+ (point))) ?\[))
10115 (eq passed-bracket-pairs 0))
10116 ;; C++11 lambda function declaration
10117 (setq passed-bracket-pairs 1)
10118 (setq bracket-pos (point))
10119 'maybe)
10120 (t nil))
10121 (when (not (looking-at "\\[\\["))
10122 (setq passed-paren (char-after))
10123 (when (eq passed-paren ?\[)
10124 (setq passed-bracket-pairs 1)
10125 (setq bracket-pos (point))))
10126 'maybe)
10127 'maybe))))
10129 (if (eq res 'maybe)
10130 (cond
10131 ((and (c-major-mode-is 'c++-mode)
10132 block-follows
10133 (eq passed-bracket-pairs 1)
10134 (save-excursion
10135 (goto-char bracket-pos)
10136 (or (<= (point) (or lim (point-min)))
10137 (progn
10138 (c-backward-token-2 1 nil lim)
10139 (and
10140 (not (c-on-identifier))
10141 (not (looking-at c-opt-op-identifier-prefix)))))))
10142 (cons 'inlambda bracket-pos))
10143 ((and c-recognize-paren-inexpr-blocks
10144 block-follows
10145 containing-sexp
10146 (eq (char-after containing-sexp) ?\())
10147 (goto-char containing-sexp)
10148 (if (or (save-excursion
10149 (c-backward-syntactic-ws lim)
10150 (while (and (eq (char-before) ?>)
10151 (c-get-char-property (1- (point))
10152 'syntax-table)
10153 (c-go-list-backward nil lim))
10154 (c-backward-syntactic-ws lim))
10155 (and (> (point) (or lim (point-min)))
10156 (c-on-identifier)))
10157 (and c-special-brace-lists
10158 (c-looking-at-special-brace-list)))
10160 (cons 'inexpr-statement (point)))))
10162 res))))
10164 (defun c-looking-at-inexpr-block-backward (paren-state)
10165 ;; Returns non-nil if we're looking at the end of an in-expression
10166 ;; block, otherwise the same as `c-looking-at-inexpr-block'.
10167 ;; PAREN-STATE is the paren state relevant at the current position.
10169 ;; This function might do hidden buffer changes.
10170 (save-excursion
10171 ;; We currently only recognize a block.
10172 (let ((here (point))
10173 (elem (car-safe paren-state))
10174 containing-sexp)
10175 (when (and (consp elem)
10176 (progn (goto-char (cdr elem))
10177 (c-forward-syntactic-ws here)
10178 (= (point) here)))
10179 (goto-char (car elem))
10180 (if (setq paren-state (cdr paren-state))
10181 (setq containing-sexp (car-safe paren-state)))
10182 (c-looking-at-inexpr-block (c-safe-position containing-sexp
10183 paren-state)
10184 containing-sexp)))))
10186 (defun c-looking-at-c++-lambda-capture-list ()
10187 ;; Return non-nil if we're at the opening "[" of the capture list of a C++
10188 ;; lambda function, nil otherwise.
10189 (and
10190 (eq (char-after) ?\[)
10191 (not (eq (char-before) ?\[))
10192 (not (eq (char-after (1+ (point))) ?\[))
10193 (save-excursion
10194 (or (eq (c-backward-token-2 1) 1)
10195 (looking-at c-pre-lambda-tokens-re)))
10196 (not (c-in-literal))))
10198 (defun c-at-macro-vsemi-p (&optional pos)
10199 ;; Is there a "virtual semicolon" at POS or point?
10200 ;; (See cc-defs.el for full details of "virtual semicolons".)
10202 ;; This is true when point is at the last non syntactic WS position on the
10203 ;; line, there is a macro call last on the line, and this particular macro's
10204 ;; name is defined by the regexp `c-vs-macro-regexp' as not needing a
10205 ;; semicolon.
10206 (save-excursion
10207 (save-restriction
10208 (widen)
10209 (if pos
10210 (goto-char pos)
10211 (setq pos (point)))
10212 (and
10213 c-macro-with-semi-re
10214 (eq (skip-chars-backward " \t") 0)
10216 ;; Check we've got nothing after this except comments and empty lines
10217 ;; joined by escaped EOLs.
10218 (skip-chars-forward " \t") ; always returns non-nil.
10219 (progn
10220 (while ; go over 1 block comment per iteration.
10221 (and
10222 (looking-at "\\(\\\\[\n\r][ \t]*\\)*")
10223 (goto-char (match-end 0))
10224 (cond
10225 ((looking-at c-block-comment-start-regexp)
10226 (and (forward-comment 1)
10227 (skip-chars-forward " \t"))) ; always returns non-nil
10228 ((looking-at c-line-comment-start-regexp)
10229 (end-of-line)
10230 nil)
10231 (t nil))))
10232 (eolp))
10234 (goto-char pos)
10235 (progn (c-backward-syntactic-ws)
10236 (eq (point) pos))
10238 ;; Check for one of the listed macros being before point.
10239 (or (not (eq (char-before) ?\)))
10240 (when (c-go-list-backward)
10241 (c-backward-syntactic-ws)
10243 (c-simple-skip-symbol-backward)
10244 (looking-at c-macro-with-semi-re)
10245 (goto-char pos)
10246 (not (c-in-literal)))))) ; The most expensive check last.
10248 (defun c-macro-vsemi-status-unknown-p () t) ; See cc-defs.el.
10251 ;; `c-guess-basic-syntax' and the functions that precedes it below
10252 ;; implements the main decision tree for determining the syntactic
10253 ;; analysis of the current line of code.
10255 ;; Dynamically bound to t when `c-guess-basic-syntax' is called during
10256 ;; auto newline analysis.
10257 (defvar c-auto-newline-analysis nil)
10259 (defun c-brace-anchor-point (bracepos)
10260 ;; BRACEPOS is the position of a brace in a construct like "namespace
10261 ;; Bar {". Return the anchor point in this construct; this is the
10262 ;; earliest symbol on the brace's line which isn't earlier than
10263 ;; "namespace".
10265 ;; Currently (2007-08-17), "like namespace" means "matches
10266 ;; c-other-block-decl-kwds". It doesn't work with "class" or "struct"
10267 ;; or anything like that.
10268 (save-excursion
10269 (let ((boi (c-point 'boi bracepos)))
10270 (goto-char bracepos)
10271 (while (and (> (point) boi)
10272 (not (looking-at c-other-decl-block-key)))
10273 (c-backward-token-2))
10274 (if (> (point) boi) (point) boi))))
10276 (defsubst c-add-syntax (symbol &rest args)
10277 ;; A simple function to prepend a new syntax element to
10278 ;; `c-syntactic-context'. Using `setq' on it is unsafe since it
10279 ;; should always be dynamically bound but since we read it first
10280 ;; we'll fail properly anyway if this function is misused.
10281 (setq c-syntactic-context (cons (cons symbol args)
10282 c-syntactic-context)))
10284 (defsubst c-append-syntax (symbol &rest args)
10285 ;; Like `c-add-syntax' but appends to the end of the syntax list.
10286 ;; (Normally not necessary.)
10287 (setq c-syntactic-context (nconc c-syntactic-context
10288 (list (cons symbol args)))))
10290 (defun c-add-stmt-syntax (syntax-symbol
10291 syntax-extra-args
10292 stop-at-boi-only
10293 containing-sexp
10294 paren-state)
10295 ;; Add the indicated SYNTAX-SYMBOL to `c-syntactic-context', extending it as
10296 ;; needed with further syntax elements of the types `substatement',
10297 ;; `inexpr-statement', `arglist-cont-nonempty', `statement-block-intro', and
10298 ;; `defun-block-intro'.
10300 ;; Do the generic processing to anchor the given syntax symbol on
10301 ;; the preceding statement: Skip over any labels and containing
10302 ;; statements on the same line, and then search backward until we
10303 ;; find a statement or block start that begins at boi without a
10304 ;; label or comment.
10306 ;; Point is assumed to be at the prospective anchor point for the
10307 ;; given SYNTAX-SYMBOL. More syntax entries are added if we need to
10308 ;; skip past open parens and containing statements. Most of the added
10309 ;; syntax elements will get the same anchor point - the exception is
10310 ;; for an anchor in a construct like "namespace"[*] - this is as early
10311 ;; as possible in the construct but on the same line as the {.
10313 ;; [*] i.e. with a keyword matching c-other-block-decl-kwds.
10315 ;; SYNTAX-EXTRA-ARGS are a list of the extra arguments for the
10316 ;; syntax symbol. They are appended after the anchor point.
10318 ;; If STOP-AT-BOI-ONLY is nil, we can stop in the middle of the line
10319 ;; if the current statement starts there.
10321 ;; Note: It's not a problem if PAREN-STATE "overshoots"
10322 ;; CONTAINING-SEXP, i.e. contains info about parens further down.
10324 ;; This function might do hidden buffer changes.
10326 (if (= (point) (c-point 'boi))
10327 ;; This is by far the most common case, so let's give it special
10328 ;; treatment.
10329 (apply 'c-add-syntax syntax-symbol (point) syntax-extra-args)
10331 (let ((syntax-last c-syntactic-context)
10332 (boi (c-point 'boi))
10333 ;; Set when we're on a label, so that we don't stop there.
10334 ;; FIXME: To be complete we should check if we're on a label
10335 ;; now at the start.
10336 on-label)
10338 ;; Use point as the anchor point for "namespace", "extern", etc.
10339 (apply 'c-add-syntax syntax-symbol
10340 (if (rassq syntax-symbol c-other-decl-block-key-in-symbols-alist)
10341 (point) nil)
10342 syntax-extra-args)
10344 ;; Loop while we have to back out of containing blocks.
10345 (while
10346 (and
10347 (catch 'back-up-block
10349 ;; Loop while we have to back up statements.
10350 (while (or (/= (point) boi)
10351 on-label
10352 (looking-at c-comment-start-regexp))
10354 ;; Skip past any comments that stands between the
10355 ;; statement start and boi.
10356 (let ((savepos (point)))
10357 (while (and (/= savepos boi)
10358 (c-backward-single-comment))
10359 (setq savepos (point)
10360 boi (c-point 'boi)))
10361 (goto-char savepos))
10363 ;; Skip to the beginning of this statement or backward
10364 ;; another one.
10365 (let ((old-pos (point))
10366 (old-boi boi)
10367 (step-type (c-beginning-of-statement-1 containing-sexp)))
10368 (setq boi (c-point 'boi)
10369 on-label (eq step-type 'label))
10371 (cond ((= (point) old-pos)
10372 ;; If we didn't move we're at the start of a block and
10373 ;; have to continue outside it.
10374 (throw 'back-up-block t))
10376 ((and (eq step-type 'up)
10377 (>= (point) old-boi)
10378 (looking-at "else\\>[^_]")
10379 (save-excursion
10380 (goto-char old-pos)
10381 (looking-at "if\\>[^_]")))
10382 ;; Special case to avoid deeper and deeper indentation
10383 ;; of "else if" clauses.
10386 ((and (not stop-at-boi-only)
10387 (/= old-pos old-boi)
10388 (memq step-type '(up previous)))
10389 ;; If stop-at-boi-only is nil, we shouldn't back up
10390 ;; over previous or containing statements to try to
10391 ;; reach boi, so go back to the last position and
10392 ;; exit.
10393 (goto-char old-pos)
10394 (throw 'back-up-block nil))
10397 (if (and (not stop-at-boi-only)
10398 (memq step-type '(up previous beginning)))
10399 ;; If we've moved into another statement then we
10400 ;; should no longer try to stop in the middle of a
10401 ;; line.
10402 (setq stop-at-boi-only t))
10404 ;; Record this as a substatement if we skipped up one
10405 ;; level.
10406 (when (eq step-type 'up)
10407 (c-add-syntax 'substatement nil))))
10410 containing-sexp)
10412 ;; Now we have to go out of this block.
10413 (goto-char containing-sexp)
10415 ;; Don't stop in the middle of a special brace list opener
10416 ;; like "({".
10417 (when c-special-brace-lists
10418 (let ((special-list (c-looking-at-special-brace-list)))
10419 (when (and special-list
10420 (< (car (car special-list)) (point)))
10421 (setq containing-sexp (car (car special-list)))
10422 (goto-char containing-sexp))))
10424 (setq paren-state (c-whack-state-after containing-sexp paren-state)
10425 containing-sexp (c-most-enclosing-brace paren-state)
10426 boi (c-point 'boi))
10428 ;; Analyze the construct in front of the block we've stepped out
10429 ;; from and add the right syntactic element for it.
10430 (let ((paren-pos (point))
10431 (paren-char (char-after))
10432 step-type)
10434 (if (eq paren-char ?\()
10435 ;; Stepped out of a parenthesis block, so we're in an
10436 ;; expression now.
10437 (progn
10438 (when (/= paren-pos boi)
10439 (if (and c-recognize-paren-inexpr-blocks
10440 (progn
10441 (c-backward-syntactic-ws containing-sexp)
10442 (or (not (looking-at "\\>"))
10443 (not (c-on-identifier))))
10444 (save-excursion
10445 (goto-char (1+ paren-pos))
10446 (c-forward-syntactic-ws)
10447 (eq (char-after) ?{)))
10448 ;; Stepped out of an in-expression statement. This
10449 ;; syntactic element won't get an anchor pos.
10450 (c-add-syntax 'inexpr-statement)
10452 ;; A parenthesis normally belongs to an arglist.
10453 (c-add-syntax 'arglist-cont-nonempty nil paren-pos)))
10455 (goto-char (max boi
10456 (if containing-sexp
10457 (1+ containing-sexp)
10458 (point-min))))
10459 (setq step-type 'same
10460 on-label nil))
10462 ;; Stepped out of a brace block.
10463 (setq step-type (c-beginning-of-statement-1 containing-sexp)
10464 on-label (eq step-type 'label))
10466 (if (and (eq step-type 'same)
10467 (/= paren-pos (point)))
10468 (let (inexpr)
10469 (cond
10470 ((save-excursion
10471 (goto-char paren-pos)
10472 (setq inexpr (c-looking-at-inexpr-block
10473 (c-safe-position containing-sexp paren-state)
10474 containing-sexp)))
10475 (c-add-syntax (if (eq (car inexpr) 'inlambda)
10476 'defun-block-intro
10477 'statement-block-intro)
10478 nil))
10479 ((looking-at c-other-decl-block-key)
10480 (c-add-syntax
10481 (cdr (assoc (match-string 1)
10482 c-other-decl-block-key-in-symbols-alist))
10483 (max (c-point 'boi paren-pos) (point))))
10484 (t (c-add-syntax 'defun-block-intro nil))))
10486 (c-add-syntax 'statement-block-intro nil)))
10488 (if (= paren-pos boi)
10489 ;; Always done if the open brace was at boi. The
10490 ;; c-beginning-of-statement-1 call above is necessary
10491 ;; anyway, to decide the type of block-intro to add.
10492 (goto-char paren-pos)
10493 (setq boi (c-point 'boi)))
10496 ;; Fill in the current point as the anchor for all the symbols
10497 ;; added above.
10498 (let ((p c-syntactic-context) q)
10499 (while (not (eq p syntax-last))
10500 (setq q (cdr (car p))) ; e.g. (nil 28) [from (arglist-cont-nonempty nil 28)]
10501 (while q
10502 (unless (car q)
10503 (setcar q (point)))
10504 (setq q (cdr q)))
10505 (setq p (cdr p))))
10508 (defun c-add-class-syntax (symbol
10509 containing-decl-open
10510 containing-decl-start
10511 containing-decl-kwd
10512 paren-state)
10513 ;; The inclass and class-close syntactic symbols are added in
10514 ;; several places and some work is needed to fix everything.
10515 ;; Therefore it's collected here.
10517 ;; This function might do hidden buffer changes.
10518 (goto-char containing-decl-open)
10519 (if (and (eq symbol 'inclass) (= (point) (c-point 'boi)))
10520 (progn
10521 (c-add-syntax symbol containing-decl-open)
10522 containing-decl-open)
10523 (goto-char containing-decl-start)
10524 ;; Ought to use `c-add-stmt-syntax' instead of backing up to boi
10525 ;; here, but we have to do like this for compatibility.
10526 (back-to-indentation)
10527 (c-add-syntax symbol (point))
10528 (if (and (c-keyword-member containing-decl-kwd
10529 'c-inexpr-class-kwds)
10530 (/= containing-decl-start (c-point 'boi containing-decl-start)))
10531 (c-add-syntax 'inexpr-class))
10532 (point)))
10534 (defun c-guess-continued-construct (indent-point
10535 char-after-ip
10536 beg-of-same-or-containing-stmt
10537 containing-sexp
10538 paren-state)
10539 ;; This function contains the decision tree reached through both
10540 ;; cases 18 and 10. It's a continued statement or top level
10541 ;; construct of some kind.
10543 ;; This function might do hidden buffer changes.
10545 (let (special-brace-list placeholder)
10546 (goto-char indent-point)
10547 (skip-chars-forward " \t")
10549 (cond
10550 ;; (CASE A removed.)
10551 ;; CASE B: open braces for class or brace-lists
10552 ((setq special-brace-list
10553 (or (and c-special-brace-lists
10554 (c-looking-at-special-brace-list))
10555 (eq char-after-ip ?{)))
10557 (cond
10558 ;; CASE B.1: class-open
10559 ((save-excursion
10560 (and (eq (char-after) ?{)
10561 (c-looking-at-decl-block containing-sexp t)
10562 (setq beg-of-same-or-containing-stmt (point))))
10563 (c-add-syntax 'class-open beg-of-same-or-containing-stmt))
10565 ;; CASE B.2: brace-list-open
10566 ((or (consp special-brace-list)
10567 (save-excursion
10568 (goto-char beg-of-same-or-containing-stmt)
10569 (c-syntactic-re-search-forward "=\\([^=]\\|$\\)"
10570 indent-point t t t)))
10571 ;; The most semantically accurate symbol here is
10572 ;; brace-list-open, but we normally report it simply as a
10573 ;; statement-cont. The reason is that one normally adjusts
10574 ;; brace-list-open for brace lists as top-level constructs,
10575 ;; and brace lists inside statements is a completely different
10576 ;; context. C.f. case 5A.3.
10577 (c-beginning-of-statement-1 containing-sexp)
10578 (c-add-stmt-syntax (if c-auto-newline-analysis
10579 ;; Turn off the dwim above when we're
10580 ;; analyzing the nature of the brace
10581 ;; for the auto newline feature.
10582 'brace-list-open
10583 'statement-cont)
10584 nil nil
10585 containing-sexp paren-state))
10587 ;; CASE B.3: The body of a function declared inside a normal
10588 ;; block. Can occur e.g. in Pike and when using gcc
10589 ;; extensions, but watch out for macros followed by blocks.
10590 ;; C.f. cases E, 16F and 17G.
10591 ((and (not (c-at-statement-start-p))
10592 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
10593 'same)
10594 (save-excursion
10595 (let ((c-recognize-typeless-decls nil))
10596 ;; Turn off recognition of constructs that lacks a
10597 ;; type in this case, since that's more likely to be
10598 ;; a macro followed by a block.
10599 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
10600 (c-add-stmt-syntax 'defun-open nil t
10601 containing-sexp paren-state))
10603 ;; CASE B.4: Continued statement with block open. The most
10604 ;; accurate analysis is perhaps `statement-cont' together with
10605 ;; `block-open' but we play DWIM and use `substatement-open'
10606 ;; instead. The rationale is that this typically is a macro
10607 ;; followed by a block which makes it very similar to a
10608 ;; statement with a substatement block.
10610 (c-add-stmt-syntax 'substatement-open nil nil
10611 containing-sexp paren-state))
10614 ;; CASE C: iostream insertion or extraction operator
10615 ((and (looking-at "\\(<<\\|>>\\)\\([^=]\\|$\\)")
10616 (save-excursion
10617 (goto-char beg-of-same-or-containing-stmt)
10618 ;; If there is no preceding streamop in the statement
10619 ;; then indent this line as a normal statement-cont.
10620 (when (c-syntactic-re-search-forward
10621 "\\(<<\\|>>\\)\\([^=]\\|$\\)" indent-point 'move t t)
10622 (c-add-syntax 'stream-op (c-point 'boi))
10623 t))))
10625 ;; CASE E: In the "K&R region" of a function declared inside a
10626 ;; normal block. C.f. case B.3.
10627 ((and (save-excursion
10628 ;; Check that the next token is a '{'. This works as
10629 ;; long as no language that allows nested function
10630 ;; definitions allows stuff like member init lists, K&R
10631 ;; declarations or throws clauses there.
10633 ;; Note that we do a forward search for something ahead
10634 ;; of the indentation line here. That's not good since
10635 ;; the user might not have typed it yet. Unfortunately
10636 ;; it's exceedingly tricky to recognize a function
10637 ;; prototype in a code block without resorting to this.
10638 (c-forward-syntactic-ws)
10639 (eq (char-after) ?{))
10640 (not (c-at-statement-start-p))
10641 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
10642 'same)
10643 (save-excursion
10644 (let ((c-recognize-typeless-decls nil))
10645 ;; Turn off recognition of constructs that lacks a
10646 ;; type in this case, since that's more likely to be
10647 ;; a macro followed by a block.
10648 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
10649 (c-add-stmt-syntax 'func-decl-cont nil t
10650 containing-sexp paren-state))
10652 ;;CASE F: continued statement and the only preceding items are
10653 ;;annotations.
10654 ((and (c-major-mode-is 'java-mode)
10655 (setq placeholder (point))
10656 (c-beginning-of-statement-1)
10657 (progn
10658 (while (and (c-forward-annotation)
10659 (< (point) placeholder))
10660 (c-forward-syntactic-ws))
10662 (prog1
10663 (>= (point) placeholder)
10664 (goto-char placeholder)))
10665 (c-beginning-of-statement-1 containing-sexp)
10666 (c-add-syntax 'annotation-var-cont (point)))
10668 ;; CASE G: a template list continuation?
10669 ;; Mostly a duplication of case 5D.3 to fix templates-19:
10670 ((and (c-major-mode-is 'c++-mode)
10671 (save-excursion
10672 (goto-char indent-point)
10673 (c-with-syntax-table c++-template-syntax-table
10674 (setq placeholder (c-up-list-backward)))
10675 (and placeholder
10676 (eq (char-after placeholder) ?<)
10677 (/= (char-before placeholder) ?<)
10678 (progn
10679 (goto-char (1+ placeholder))
10680 (not (looking-at c-<-op-cont-regexp))))))
10681 (c-with-syntax-table c++-template-syntax-table
10682 (goto-char placeholder)
10683 (c-beginning-of-statement-1 containing-sexp t))
10684 (if (save-excursion
10685 (c-backward-syntactic-ws containing-sexp)
10686 (eq (char-before) ?<))
10687 ;; In a nested template arglist.
10688 (progn
10689 (goto-char placeholder)
10690 (c-syntactic-skip-backward "^,;" containing-sexp t)
10691 (c-forward-syntactic-ws))
10692 (back-to-indentation))
10693 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
10694 ;; template aware.
10695 (c-add-syntax 'template-args-cont (point) placeholder))
10697 ;; CASE D: continued statement.
10699 (c-beginning-of-statement-1 containing-sexp)
10700 (c-add-stmt-syntax 'statement-cont nil nil
10701 containing-sexp paren-state))
10704 ;; The next autoload was added by RMS on 2005/8/9 - don't know why (ACM,
10705 ;; 2005/11/29).
10706 ;;;###autoload
10707 (defun c-guess-basic-syntax ()
10708 "Return the syntactic context of the current line."
10709 (save-excursion
10710 (beginning-of-line)
10711 (c-save-buffer-state
10712 ((indent-point (point))
10713 (case-fold-search nil)
10714 ;; A whole ugly bunch of various temporary variables. Have
10715 ;; to declare them here since it's not possible to declare
10716 ;; a variable with only the scope of a cond test and the
10717 ;; following result clauses, and most of this function is a
10718 ;; single gigantic cond. :P
10719 literal char-before-ip before-ws-ip char-after-ip macro-start
10720 in-macro-expr c-syntactic-context placeholder c-in-literal-cache
10721 step-type tmpsymbol keyword injava-inher special-brace-list tmp-pos
10722 containing-<
10723 ;; The following record some positions for the containing
10724 ;; declaration block if we're directly within one:
10725 ;; `containing-decl-open' is the position of the open
10726 ;; brace. `containing-decl-start' is the start of the
10727 ;; declaration. `containing-decl-kwd' is the keyword
10728 ;; symbol of the keyword that tells what kind of block it
10729 ;; is.
10730 containing-decl-open
10731 containing-decl-start
10732 containing-decl-kwd
10733 ;; The open paren of the closest surrounding sexp or nil if
10734 ;; there is none.
10735 containing-sexp
10736 ;; The position after the closest preceding brace sexp
10737 ;; (nested sexps are ignored), or the position after
10738 ;; `containing-sexp' if there is none, or (point-min) if
10739 ;; `containing-sexp' is nil.
10741 ;; The paren state outside `containing-sexp', or at
10742 ;; `indent-point' if `containing-sexp' is nil.
10743 (paren-state (c-parse-state))
10744 ;; There's always at most one syntactic element which got
10745 ;; an anchor pos. It's stored in syntactic-relpos.
10746 syntactic-relpos
10747 (c-stmt-delim-chars c-stmt-delim-chars))
10749 ;; Check if we're directly inside an enclosing declaration
10750 ;; level block.
10751 (when (and (setq containing-sexp
10752 (c-most-enclosing-brace paren-state))
10753 (progn
10754 (goto-char containing-sexp)
10755 (eq (char-after) ?{))
10756 (setq placeholder
10757 (c-looking-at-decl-block
10758 (c-most-enclosing-brace paren-state
10759 containing-sexp)
10760 t)))
10761 (setq containing-decl-open containing-sexp
10762 containing-decl-start (point)
10763 containing-sexp nil)
10764 (goto-char placeholder)
10765 (setq containing-decl-kwd (and (looking-at c-keywords-regexp)
10766 (c-keyword-sym (match-string 1)))))
10768 ;; Init some position variables.
10769 (if paren-state
10770 (progn
10771 (setq containing-sexp (car paren-state)
10772 paren-state (cdr paren-state))
10773 (if (consp containing-sexp)
10774 (save-excursion
10775 (goto-char (cdr containing-sexp))
10776 (if (and (c-major-mode-is 'c++-mode)
10777 (c-back-over-member-initializer-braces))
10778 (c-syntactic-skip-backward "^}" nil t))
10779 (setq lim (point))
10780 (if paren-state
10781 ;; Ignore balanced paren. The next entry
10782 ;; can't be another one.
10783 (setq containing-sexp (car paren-state)
10784 paren-state (cdr paren-state))
10785 ;; If there is no surrounding open paren then
10786 ;; put the last balanced pair back on paren-state.
10787 (setq paren-state (cons containing-sexp paren-state)
10788 containing-sexp nil)))
10789 (setq lim (1+ containing-sexp))))
10790 (setq lim (point-min)))
10792 ;; If we're in a parenthesis list then ',' delimits the
10793 ;; "statements" rather than being an operator (with the
10794 ;; exception of the "for" clause). This difference is
10795 ;; typically only noticeable when statements are used in macro
10796 ;; arglists.
10797 (when (and containing-sexp
10798 (eq (char-after containing-sexp) ?\())
10799 (setq c-stmt-delim-chars c-stmt-delim-chars-with-comma))
10800 ;; cache char before and after indent point, and move point to
10801 ;; the most likely position to perform the majority of tests
10802 (goto-char indent-point)
10803 (c-backward-syntactic-ws lim)
10804 (setq before-ws-ip (point)
10805 char-before-ip (char-before))
10806 (goto-char indent-point)
10807 (skip-chars-forward " \t")
10808 (setq char-after-ip (char-after))
10810 ;; are we in a literal?
10811 (setq literal (c-in-literal lim))
10813 ;; now figure out syntactic qualities of the current line
10814 (cond
10816 ;; CASE 1: in a string.
10817 ((eq literal 'string)
10818 (c-add-syntax 'string (c-point 'bopl)))
10820 ;; CASE 2: in a C or C++ style comment.
10821 ((and (memq literal '(c c++))
10822 ;; This is a kludge for XEmacs where we use
10823 ;; `buffer-syntactic-context', which doesn't correctly
10824 ;; recognize "\*/" to end a block comment.
10825 ;; `parse-partial-sexp' which is used by
10826 ;; `c-literal-limits' will however do that in most
10827 ;; versions, which results in that we get nil from
10828 ;; `c-literal-limits' even when `c-in-literal' claims
10829 ;; we're inside a comment.
10830 (setq placeholder (c-literal-start lim)))
10831 (c-add-syntax literal placeholder))
10833 ;; CASE 3: in a cpp preprocessor macro continuation.
10834 ((and (save-excursion
10835 (when (c-beginning-of-macro)
10836 (setq macro-start (point))))
10837 (/= macro-start (c-point 'boi))
10838 (progn
10839 (setq tmpsymbol 'cpp-macro-cont)
10840 (or (not c-syntactic-indentation-in-macros)
10841 (save-excursion
10842 (goto-char macro-start)
10843 ;; If at the beginning of the body of a #define
10844 ;; directive then analyze as cpp-define-intro
10845 ;; only. Go on with the syntactic analysis
10846 ;; otherwise. in-macro-expr is set if we're in a
10847 ;; cpp expression, i.e. before the #define body
10848 ;; or anywhere in a non-#define directive.
10849 (if (c-forward-to-cpp-define-body)
10850 (let ((indent-boi (c-point 'boi indent-point)))
10851 (setq in-macro-expr (> (point) indent-boi)
10852 tmpsymbol 'cpp-define-intro)
10853 (= (point) indent-boi))
10854 (setq in-macro-expr t)
10855 nil)))))
10856 (c-add-syntax tmpsymbol macro-start)
10857 (setq macro-start nil))
10859 ;; CASE 11: an else clause?
10860 ((looking-at "else\\>[^_]")
10861 (c-beginning-of-statement-1 containing-sexp)
10862 (c-add-stmt-syntax 'else-clause nil t
10863 containing-sexp paren-state))
10865 ;; CASE 12: while closure of a do/while construct?
10866 ((and (looking-at "while\\>[^_]")
10867 (save-excursion
10868 (prog1 (eq (c-beginning-of-statement-1 containing-sexp)
10869 'beginning)
10870 (setq placeholder (point)))))
10871 (goto-char placeholder)
10872 (c-add-stmt-syntax 'do-while-closure nil t
10873 containing-sexp paren-state))
10875 ;; CASE 13: A catch or finally clause? This case is simpler
10876 ;; than if-else and do-while, because a block is required
10877 ;; after every try, catch and finally.
10878 ((save-excursion
10879 (and (cond ((c-major-mode-is 'c++-mode)
10880 (looking-at "catch\\>[^_]"))
10881 ((c-major-mode-is 'java-mode)
10882 (looking-at "\\(catch\\|finally\\)\\>[^_]")))
10883 (and (c-safe (c-backward-syntactic-ws)
10884 (c-backward-sexp)
10886 (eq (char-after) ?{)
10887 (c-safe (c-backward-syntactic-ws)
10888 (c-backward-sexp)
10890 (if (eq (char-after) ?\()
10891 (c-safe (c-backward-sexp) t)
10893 (looking-at "\\(try\\|catch\\)\\>[^_]")
10894 (setq placeholder (point))))
10895 (goto-char placeholder)
10896 (c-add-stmt-syntax 'catch-clause nil t
10897 containing-sexp paren-state))
10899 ;; CASE 18: A substatement we can recognize by keyword.
10900 ((save-excursion
10901 (and c-opt-block-stmt-key
10902 (not (eq char-before-ip ?\;))
10903 (not (c-at-vsemi-p before-ws-ip))
10904 (not (memq char-after-ip '(?\) ?\] ?,)))
10905 (or (not (eq char-before-ip ?}))
10906 (c-looking-at-inexpr-block-backward c-state-cache))
10907 (> (point)
10908 (progn
10909 ;; Ought to cache the result from the
10910 ;; c-beginning-of-statement-1 calls here.
10911 (setq placeholder (point))
10912 (while (eq (setq step-type
10913 (c-beginning-of-statement-1 lim))
10914 'label))
10915 (if (eq step-type 'previous)
10916 (goto-char placeholder)
10917 (setq placeholder (point))
10918 (if (and (eq step-type 'same)
10919 (not (looking-at c-opt-block-stmt-key)))
10920 ;; Step up to the containing statement if we
10921 ;; stayed in the same one.
10922 (let (step)
10923 (while (eq
10924 (setq step
10925 (c-beginning-of-statement-1 lim))
10926 'label))
10927 (if (eq step 'up)
10928 (setq placeholder (point))
10929 ;; There was no containing statement after all.
10930 (goto-char placeholder)))))
10931 placeholder))
10932 (if (looking-at c-block-stmt-2-key)
10933 ;; Require a parenthesis after these keywords.
10934 ;; Necessary to catch e.g. synchronized in Java,
10935 ;; which can be used both as statement and
10936 ;; modifier.
10937 (and (zerop (c-forward-token-2 1 nil))
10938 (eq (char-after) ?\())
10939 (looking-at c-opt-block-stmt-key))))
10941 (if (eq step-type 'up)
10942 ;; CASE 18A: Simple substatement.
10943 (progn
10944 (goto-char placeholder)
10945 (cond
10946 ((eq char-after-ip ?{)
10947 (c-add-stmt-syntax 'substatement-open nil nil
10948 containing-sexp paren-state))
10949 ((save-excursion
10950 (goto-char indent-point)
10951 (back-to-indentation)
10952 (c-forward-label))
10953 (c-add-stmt-syntax 'substatement-label nil nil
10954 containing-sexp paren-state))
10956 (c-add-stmt-syntax 'substatement nil nil
10957 containing-sexp paren-state))))
10959 ;; CASE 18B: Some other substatement. This is shared
10960 ;; with case 10.
10961 (c-guess-continued-construct indent-point
10962 char-after-ip
10963 placeholder
10965 paren-state)))
10967 ;; CASE 14: A case or default label
10968 ((save-excursion
10969 (and (looking-at c-label-kwds-regexp)
10970 (or (c-major-mode-is 'idl-mode)
10971 (and
10972 containing-sexp
10973 (goto-char containing-sexp)
10974 (eq (char-after) ?{)
10975 (progn (c-backward-syntactic-ws) t)
10976 (eq (char-before) ?\))
10977 (c-go-list-backward)
10978 (progn (c-backward-syntactic-ws) t)
10979 (c-simple-skip-symbol-backward)
10980 (looking-at c-block-stmt-2-key)))))
10981 (if containing-sexp
10982 (progn
10983 (goto-char containing-sexp)
10984 (setq lim (c-most-enclosing-brace c-state-cache
10985 containing-sexp))
10986 (c-backward-to-block-anchor lim)
10987 (c-add-stmt-syntax 'case-label nil t lim paren-state))
10988 ;; Got a bogus label at the top level. In lack of better
10989 ;; alternatives, anchor it on (point-min).
10990 (c-add-syntax 'case-label (point-min))))
10992 ;; CASE 15: any other label
10993 ((save-excursion
10994 (back-to-indentation)
10995 (and (not (looking-at c-syntactic-ws-start))
10996 (not (looking-at c-label-kwds-regexp))
10997 (c-forward-label)))
10998 (cond (containing-decl-open
10999 (setq placeholder (c-add-class-syntax 'inclass
11000 containing-decl-open
11001 containing-decl-start
11002 containing-decl-kwd
11003 paren-state))
11004 ;; Append access-label with the same anchor point as
11005 ;; inclass gets.
11006 (c-append-syntax 'access-label placeholder))
11008 (containing-sexp
11009 (goto-char containing-sexp)
11010 (setq lim (c-most-enclosing-brace c-state-cache
11011 containing-sexp))
11012 (save-excursion
11013 (setq tmpsymbol
11014 (if (and (eq (c-beginning-of-statement-1 lim) 'up)
11015 (looking-at "switch\\>[^_]"))
11016 ;; If the surrounding statement is a switch then
11017 ;; let's analyze all labels as switch labels, so
11018 ;; that they get lined up consistently.
11019 'case-label
11020 'label)))
11021 (c-backward-to-block-anchor lim)
11022 (c-add-stmt-syntax tmpsymbol nil t lim paren-state))
11025 ;; A label on the top level. Treat it as a class
11026 ;; context. (point-min) is the closest we get to the
11027 ;; class open brace.
11028 (c-add-syntax 'access-label (point-min)))))
11030 ;; CASE 4: In-expression statement. C.f. cases 7B, 16A and
11031 ;; 17E.
11032 ((setq placeholder (c-looking-at-inexpr-block
11033 (c-safe-position containing-sexp paren-state)
11034 containing-sexp
11035 ;; Have to turn on the heuristics after
11036 ;; the point even though it doesn't work
11037 ;; very well. C.f. test case class-16.pike.
11039 (setq tmpsymbol (assq (car placeholder)
11040 '((inexpr-class . class-open)
11041 (inexpr-statement . block-open))))
11042 (if tmpsymbol
11043 ;; It's a statement block or an anonymous class.
11044 (setq tmpsymbol (cdr tmpsymbol))
11045 ;; It's a Pike lambda. Check whether we are between the
11046 ;; lambda keyword and the argument list or at the defun
11047 ;; opener.
11048 (setq tmpsymbol (if (eq char-after-ip ?{)
11049 'inline-open
11050 'lambda-intro-cont)))
11051 (goto-char (cdr placeholder))
11052 (back-to-indentation)
11053 (c-add-stmt-syntax tmpsymbol nil t
11054 (c-most-enclosing-brace c-state-cache (point))
11055 paren-state)
11056 (unless (eq (point) (cdr placeholder))
11057 (c-add-syntax (car placeholder))))
11059 ;; CASE 5: Line is inside a declaration level block or at top level.
11060 ((or containing-decl-open (null containing-sexp))
11061 (cond
11063 ;; CASE 5A: we are looking at a defun, brace list, class,
11064 ;; or inline-inclass method opening brace
11065 ((setq special-brace-list
11066 (or (and c-special-brace-lists
11067 (c-looking-at-special-brace-list))
11068 (eq char-after-ip ?{)))
11069 (cond
11071 ;; CASE 5A.1: Non-class declaration block open.
11072 ((save-excursion
11073 (let (tmp)
11074 (and (eq char-after-ip ?{)
11075 (setq tmp (c-looking-at-decl-block containing-sexp t))
11076 (progn
11077 (setq placeholder (point))
11078 (goto-char tmp)
11079 (looking-at c-symbol-key))
11080 (c-keyword-member
11081 (c-keyword-sym (setq keyword (match-string 0)))
11082 'c-other-block-decl-kwds))))
11083 (goto-char placeholder)
11084 (c-add-stmt-syntax
11085 (if (string-equal keyword "extern")
11086 ;; Special case for extern-lang-open.
11087 'extern-lang-open
11088 (intern (concat keyword "-open")))
11089 nil t containing-sexp paren-state))
11091 ;; CASE 5A.2: we are looking at a class opening brace
11092 ((save-excursion
11093 (goto-char indent-point)
11094 (skip-chars-forward " \t")
11095 (and (eq (char-after) ?{)
11096 (c-looking-at-decl-block containing-sexp t)
11097 (setq placeholder (point))))
11098 (c-add-syntax 'class-open placeholder))
11100 ;; CASE 5A.3: brace list open
11101 ((save-excursion
11102 (c-beginning-of-decl-1 lim)
11103 (while (cond
11104 ((looking-at c-specifier-key)
11105 (c-forward-keyword-clause 1))
11106 ((and c-opt-cpp-prefix
11107 (looking-at c-noise-macro-with-parens-name-re))
11108 (c-forward-noise-clause))))
11109 (setq placeholder (c-point 'boi))
11110 (or (consp special-brace-list)
11111 (and (or (save-excursion
11112 (goto-char indent-point)
11113 (setq tmpsymbol nil)
11114 (while (and (> (point) placeholder)
11115 (zerop (c-backward-token-2 1 t))
11116 (not (looking-at "=\\([^=]\\|$\\)")))
11117 (and c-opt-inexpr-brace-list-key
11118 (not tmpsymbol)
11119 (looking-at c-opt-inexpr-brace-list-key)
11120 (setq tmpsymbol 'topmost-intro-cont)))
11121 (looking-at "=\\([^=]\\|$\\)"))
11122 (looking-at c-brace-list-key))
11123 (save-excursion
11124 (while (and (< (point) indent-point)
11125 (zerop (c-forward-token-2 1 t))
11126 (not (memq (char-after) '(?\; ?\()))))
11127 (not (memq (char-after) '(?\; ?\()))
11128 ))))
11129 (if (and (not c-auto-newline-analysis)
11130 (c-major-mode-is 'java-mode)
11131 (eq tmpsymbol 'topmost-intro-cont))
11132 ;; We're in Java and have found that the open brace
11133 ;; belongs to a "new Foo[]" initialization list,
11134 ;; which means the brace list is part of an
11135 ;; expression and not a top level definition. We
11136 ;; therefore treat it as any topmost continuation
11137 ;; even though the semantically correct symbol still
11138 ;; is brace-list-open, on the same grounds as in
11139 ;; case B.2.
11140 (progn
11141 (c-beginning-of-statement-1 lim)
11142 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
11143 (c-add-syntax 'brace-list-open placeholder)))
11145 ;; CASE 5A.4: inline defun open
11146 ((and containing-decl-open
11147 (not (c-keyword-member containing-decl-kwd
11148 'c-other-block-decl-kwds)))
11149 (c-add-syntax 'inline-open)
11150 (c-add-class-syntax 'inclass
11151 containing-decl-open
11152 containing-decl-start
11153 containing-decl-kwd
11154 paren-state))
11156 ;; CASE 5A.5: ordinary defun open
11158 (save-excursion
11159 (c-beginning-of-decl-1 lim)
11160 (while (cond
11161 ((looking-at c-specifier-key)
11162 (c-forward-keyword-clause 1))
11163 ((and c-opt-cpp-prefix
11164 (looking-at c-noise-macro-with-parens-name-re))
11165 (c-forward-noise-clause))))
11166 (c-add-syntax 'defun-open (c-point 'boi))
11167 ;; Bogus to use bol here, but it's the legacy. (Resolved,
11168 ;; 2007-11-09)
11169 ))))
11171 ;; CASE 5R: Member init list. (Used to be part of CASE 5B.1)
11172 ;; Note there is no limit on the backward search here, since member
11173 ;; init lists can, in practice, be very large.
11174 ((save-excursion
11175 (when (and (c-major-mode-is 'c++-mode)
11176 (setq placeholder (c-back-over-member-initializers)))
11177 (setq tmp-pos (point))))
11178 (if (= (c-point 'bosws) (1+ tmp-pos))
11179 (progn
11180 ;; There is no preceding member init clause.
11181 ;; Indent relative to the beginning of indentation
11182 ;; for the topmost-intro line that contains the
11183 ;; prototype's open paren.
11184 (goto-char placeholder)
11185 (c-add-syntax 'member-init-intro (c-point 'boi)))
11186 ;; Indent relative to the first member init clause.
11187 (goto-char (1+ tmp-pos))
11188 (c-forward-syntactic-ws)
11189 (c-add-syntax 'member-init-cont (point))))
11191 ;; CASE 5B: After a function header but before the body (or
11192 ;; the ending semicolon if there's no body).
11193 ((save-excursion
11194 (when (setq placeholder (c-just-after-func-arglist-p
11195 (max lim (c-determine-limit 500))))
11196 (setq tmp-pos (point))))
11197 (cond
11199 ;; CASE 5B.1: Member init list.
11200 ((eq (char-after tmp-pos) ?:)
11201 ;; There is no preceding member init clause.
11202 ;; Indent relative to the beginning of indentation
11203 ;; for the topmost-intro line that contains the
11204 ;; prototype's open paren.
11205 (goto-char placeholder)
11206 (c-add-syntax 'member-init-intro (c-point 'boi)))
11208 ;; CASE 5B.2: K&R arg decl intro
11209 ((and c-recognize-knr-p
11210 (c-in-knr-argdecl lim))
11211 (c-beginning-of-statement-1 lim)
11212 (c-add-syntax 'knr-argdecl-intro (c-point 'boi))
11213 (if containing-decl-open
11214 (c-add-class-syntax 'inclass
11215 containing-decl-open
11216 containing-decl-start
11217 containing-decl-kwd
11218 paren-state)))
11220 ;; CASE 5B.4: Nether region after a C++ or Java func
11221 ;; decl, which could include a `throws' declaration.
11223 (c-beginning-of-statement-1 lim)
11224 (c-add-syntax 'func-decl-cont (c-point 'boi))
11227 ;; CASE 5C: inheritance line. could be first inheritance
11228 ;; line, or continuation of a multiple inheritance
11229 ((or (and (c-major-mode-is 'c++-mode)
11230 (progn
11231 (when (eq char-after-ip ?,)
11232 (skip-chars-forward " \t")
11233 (forward-char))
11234 (looking-at c-opt-postfix-decl-spec-key)))
11235 (and (or (eq char-before-ip ?:)
11236 ;; watch out for scope operator
11237 (save-excursion
11238 (and (eq char-after-ip ?:)
11239 (c-safe (forward-char 1) t)
11240 (not (eq (char-after) ?:))
11242 (save-excursion
11243 (c-beginning-of-statement-1 lim)
11244 (when (looking-at c-opt-<>-sexp-key)
11245 (goto-char (match-end 1))
11246 (c-forward-syntactic-ws)
11247 (c-forward-<>-arglist nil)
11248 (c-forward-syntactic-ws))
11249 (looking-at c-class-key)))
11250 ;; for Java
11251 (and (c-major-mode-is 'java-mode)
11252 (let ((fence (save-excursion
11253 (c-beginning-of-statement-1 lim)
11254 (point)))
11255 cont done)
11256 (save-excursion
11257 (while (not done)
11258 (cond ((looking-at c-opt-postfix-decl-spec-key)
11259 (setq injava-inher (cons cont (point))
11260 done t))
11261 ((or (not (c-safe (c-forward-sexp -1) t))
11262 (<= (point) fence))
11263 (setq done t))
11265 (setq cont t)))
11266 injava-inher)
11267 (not (c-crosses-statement-barrier-p (cdr injava-inher)
11268 (point)))
11270 (cond
11272 ;; CASE 5C.1: non-hanging colon on an inher intro
11273 ((eq char-after-ip ?:)
11274 (c-beginning-of-statement-1 lim)
11275 (c-add-syntax 'inher-intro (c-point 'boi))
11276 ;; don't add inclass symbol since relative point already
11277 ;; contains any class offset
11280 ;; CASE 5C.2: hanging colon on an inher intro
11281 ((eq char-before-ip ?:)
11282 (c-beginning-of-statement-1 lim)
11283 (c-add-syntax 'inher-intro (c-point 'boi))
11284 (if containing-decl-open
11285 (c-add-class-syntax 'inclass
11286 containing-decl-open
11287 containing-decl-start
11288 containing-decl-kwd
11289 paren-state)))
11291 ;; CASE 5C.3: in a Java implements/extends
11292 (injava-inher
11293 (let ((where (cdr injava-inher))
11294 (cont (car injava-inher)))
11295 (goto-char where)
11296 (cond ((looking-at "throws\\>[^_]")
11297 (c-add-syntax 'func-decl-cont
11298 (progn (c-beginning-of-statement-1 lim)
11299 (c-point 'boi))))
11300 (cont (c-add-syntax 'inher-cont where))
11301 (t (c-add-syntax 'inher-intro
11302 (progn (goto-char (cdr injava-inher))
11303 (c-beginning-of-statement-1 lim)
11304 (point))))
11307 ;; CASE 5C.4: a continued inheritance line
11309 (c-beginning-of-inheritance-list lim)
11310 (c-add-syntax 'inher-cont (point))
11311 ;; don't add inclass symbol since relative point already
11312 ;; contains any class offset
11315 ;; CASE 5P: AWK pattern or function or continuation
11316 ;; thereof.
11317 ((c-major-mode-is 'awk-mode)
11318 (setq placeholder (point))
11319 (c-add-stmt-syntax
11320 (if (and (eq (c-beginning-of-statement-1) 'same)
11321 (/= (point) placeholder))
11322 'topmost-intro-cont
11323 'topmost-intro)
11324 nil nil
11325 containing-sexp paren-state))
11327 ;; CASE 5D: this could be a top-level initialization, a
11328 ;; member init list continuation, or a template argument
11329 ;; list continuation.
11330 ((save-excursion
11331 ;; Note: We use the fact that lim is always after any
11332 ;; preceding brace sexp.
11333 (if c-recognize-<>-arglists
11334 (while (and
11335 (progn
11336 (c-syntactic-skip-backward "^;,=<>" lim t)
11337 (> (point) lim))
11339 (when c-overloadable-operators-regexp
11340 (when (setq placeholder (c-after-special-operator-id lim))
11341 (goto-char placeholder)
11343 (cond
11344 ((eq (char-before) ?>)
11345 (or (c-backward-<>-arglist nil lim)
11346 (backward-char))
11348 ((eq (char-before) ?<)
11349 (backward-char)
11350 (if (save-excursion
11351 (c-forward-<>-arglist nil))
11352 (progn (forward-char)
11353 nil)
11355 (t nil)))))
11356 ;; NB: No c-after-special-operator-id stuff in this
11357 ;; clause - we assume only C++ needs it.
11358 (c-syntactic-skip-backward "^;,=" lim t))
11359 (memq (char-before) '(?, ?= ?<)))
11360 (cond
11362 ;; CASE 5D.3: perhaps a template list continuation?
11363 ((and (c-major-mode-is 'c++-mode)
11364 (save-excursion
11365 (save-restriction
11366 (c-with-syntax-table c++-template-syntax-table
11367 (goto-char indent-point)
11368 (setq placeholder (c-up-list-backward))
11369 (and placeholder
11370 (eq (char-after placeholder) ?<))))))
11371 (c-with-syntax-table c++-template-syntax-table
11372 (goto-char placeholder)
11373 (c-beginning-of-statement-1 lim t))
11374 (if (save-excursion
11375 (c-backward-syntactic-ws lim)
11376 (eq (char-before) ?<))
11377 ;; In a nested template arglist.
11378 (progn
11379 (goto-char placeholder)
11380 (c-syntactic-skip-backward "^,;" lim t)
11381 (c-forward-syntactic-ws))
11382 (back-to-indentation))
11383 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
11384 ;; template aware.
11385 (c-add-syntax 'template-args-cont (point) placeholder))
11387 ;; CASE 5D.4: perhaps a multiple inheritance line?
11388 ((and (c-major-mode-is 'c++-mode)
11389 (save-excursion
11390 (c-beginning-of-statement-1 lim)
11391 (setq placeholder (point))
11392 (if (looking-at "static\\>[^_]")
11393 (c-forward-token-2 1 nil indent-point))
11394 (and (looking-at c-class-key)
11395 (zerop (c-forward-token-2 2 nil indent-point))
11396 (if (eq (char-after) ?<)
11397 (c-with-syntax-table c++-template-syntax-table
11398 (zerop (c-forward-token-2 1 t indent-point)))
11400 (eq (char-after) ?:))))
11401 (goto-char placeholder)
11402 (c-add-syntax 'inher-cont (c-point 'boi)))
11404 ;; CASE 5D.5: Continuation of the "expression part" of a
11405 ;; top level construct. Or, perhaps, an unrecognized construct.
11407 (while (and (setq placeholder (point))
11408 (eq (car (c-beginning-of-decl-1 containing-sexp)) ; Can't use `lim' here.
11409 'same)
11410 (save-excursion
11411 (c-backward-syntactic-ws)
11412 (eq (char-before) ?}))
11413 (< (point) placeholder)))
11414 (c-add-stmt-syntax
11415 (cond
11416 ((eq (point) placeholder) 'statement) ; unrecognized construct
11417 ;; A preceding comma at the top level means that a
11418 ;; new variable declaration starts here. Use
11419 ;; topmost-intro-cont for it, for consistency with
11420 ;; the first variable declaration. C.f. case 5N.
11421 ((eq char-before-ip ?,) 'topmost-intro-cont)
11422 (t 'statement-cont))
11423 nil nil containing-sexp paren-state))
11426 ;; CASE 5F: Close of a non-class declaration level block.
11427 ((and (eq char-after-ip ?})
11428 (c-keyword-member containing-decl-kwd
11429 'c-other-block-decl-kwds))
11430 ;; This is inconsistent: Should use `containing-decl-open'
11431 ;; here if it's at boi, like in case 5J.
11432 (goto-char containing-decl-start)
11433 (c-add-stmt-syntax
11434 (if (string-equal (symbol-name containing-decl-kwd) "extern")
11435 ;; Special case for compatibility with the
11436 ;; extern-lang syntactic symbols.
11437 'extern-lang-close
11438 (intern (concat (symbol-name containing-decl-kwd)
11439 "-close")))
11440 nil t
11441 (c-most-enclosing-brace paren-state (point))
11442 paren-state))
11444 ;; CASE 5G: we are looking at the brace which closes the
11445 ;; enclosing nested class decl
11446 ((and containing-sexp
11447 (eq char-after-ip ?})
11448 (eq containing-decl-open containing-sexp))
11449 (c-add-class-syntax 'class-close
11450 containing-decl-open
11451 containing-decl-start
11452 containing-decl-kwd
11453 paren-state))
11455 ;; CASE 5H: we could be looking at subsequent knr-argdecls
11456 ((and c-recognize-knr-p
11457 (not containing-sexp) ; can't be knr inside braces.
11458 (not (eq char-before-ip ?}))
11459 (save-excursion
11460 (setq placeholder (cdr (c-beginning-of-decl-1 lim)))
11461 (and placeholder
11462 ;; Do an extra check to avoid tripping up on
11463 ;; statements that occur in invalid contexts
11464 ;; (e.g. in macro bodies where we don't really
11465 ;; know the context of what we're looking at).
11466 (not (and c-opt-block-stmt-key
11467 (looking-at c-opt-block-stmt-key)))))
11468 (< placeholder indent-point))
11469 (goto-char placeholder)
11470 (c-add-syntax 'knr-argdecl (point)))
11472 ;; CASE 5I: ObjC method definition.
11473 ((and c-opt-method-key
11474 (looking-at c-opt-method-key))
11475 (c-beginning-of-statement-1 nil t)
11476 (if (= (point) indent-point)
11477 ;; Handle the case when it's the first (non-comment)
11478 ;; thing in the buffer. Can't look for a 'same return
11479 ;; value from cbos1 since ObjC directives currently
11480 ;; aren't recognized fully, so that we get 'same
11481 ;; instead of 'previous if it moved over a preceding
11482 ;; directive.
11483 (goto-char (point-min)))
11484 (c-add-syntax 'objc-method-intro (c-point 'boi)))
11486 ;; CASE 5N: At a variable declaration that follows a class
11487 ;; definition or some other block declaration that doesn't
11488 ;; end at the closing '}'. C.f. case 5D.5.
11489 ((progn
11490 (c-backward-syntactic-ws lim)
11491 (and (eq (char-before) ?})
11492 (save-excursion
11493 (let ((start (point)))
11494 (if (and c-state-cache
11495 (consp (car c-state-cache))
11496 (eq (cdar c-state-cache) (point)))
11497 ;; Speed up the backward search a bit.
11498 (goto-char (caar c-state-cache)))
11499 (c-beginning-of-decl-1 containing-sexp) ; Can't use `lim' here.
11500 (setq placeholder (point))
11501 (if (= start (point))
11502 ;; The '}' is unbalanced.
11504 (c-end-of-decl-1)
11505 (>= (point) indent-point))))))
11506 (goto-char placeholder)
11507 (c-add-stmt-syntax 'topmost-intro-cont nil nil
11508 containing-sexp paren-state))
11510 ;; NOTE: The point is at the end of the previous token here.
11512 ;; CASE 5J: we are at the topmost level, make
11513 ;; sure we skip back past any access specifiers
11514 ((and
11515 ;; A macro continuation line is never at top level.
11516 (not (and macro-start
11517 (> indent-point macro-start)))
11518 (save-excursion
11519 (setq placeholder (point))
11520 (or (memq char-before-ip '(?\; ?{ ?} nil))
11521 (c-at-vsemi-p before-ws-ip)
11522 (when (and (eq char-before-ip ?:)
11523 (eq (c-beginning-of-statement-1 lim)
11524 'label))
11525 (c-backward-syntactic-ws lim)
11526 (setq placeholder (point)))
11527 (and (c-major-mode-is 'objc-mode)
11528 (catch 'not-in-directive
11529 (c-beginning-of-statement-1 lim)
11530 (setq placeholder (point))
11531 (while (and (c-forward-objc-directive)
11532 (< (point) indent-point))
11533 (c-forward-syntactic-ws)
11534 (if (>= (point) indent-point)
11535 (throw 'not-in-directive t))
11536 (setq placeholder (point)))
11537 nil)))))
11538 ;; For historic reasons we anchor at bol of the last
11539 ;; line of the previous declaration. That's clearly
11540 ;; highly bogus and useless, and it makes our lives hard
11541 ;; to remain compatible. :P
11542 (goto-char placeholder)
11543 (c-add-syntax 'topmost-intro (c-point 'bol))
11544 (if containing-decl-open
11545 (if (c-keyword-member containing-decl-kwd
11546 'c-other-block-decl-kwds)
11547 (progn
11548 (goto-char (c-brace-anchor-point containing-decl-open))
11549 (c-add-stmt-syntax
11550 (if (string-equal (symbol-name containing-decl-kwd)
11551 "extern")
11552 ;; Special case for compatibility with the
11553 ;; extern-lang syntactic symbols.
11554 'inextern-lang
11555 (intern (concat "in"
11556 (symbol-name containing-decl-kwd))))
11557 nil t
11558 (c-most-enclosing-brace paren-state (point))
11559 paren-state))
11560 (c-add-class-syntax 'inclass
11561 containing-decl-open
11562 containing-decl-start
11563 containing-decl-kwd
11564 paren-state)))
11565 (when (and c-syntactic-indentation-in-macros
11566 macro-start
11567 (/= macro-start (c-point 'boi indent-point)))
11568 (c-add-syntax 'cpp-define-intro)
11569 (setq macro-start nil)))
11571 ;; CASE 5K: we are at an ObjC method definition
11572 ;; continuation line.
11573 ((and c-opt-method-key
11574 (save-excursion
11575 (c-beginning-of-statement-1 lim)
11576 (beginning-of-line)
11577 (when (looking-at c-opt-method-key)
11578 (setq placeholder (point)))))
11579 (c-add-syntax 'objc-method-args-cont placeholder))
11581 ;; CASE 5L: we are at the first argument of a template
11582 ;; arglist that begins on the previous line.
11583 ((and c-recognize-<>-arglists
11584 (eq (char-before) ?<)
11585 (not (and c-overloadable-operators-regexp
11586 (c-after-special-operator-id lim))))
11587 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
11588 (c-add-syntax 'template-args-cont (c-point 'boi)))
11590 ;; CASE 5Q: we are at a statement within a macro.
11591 (macro-start
11592 (c-beginning-of-statement-1 containing-sexp)
11593 (c-add-stmt-syntax 'statement nil t containing-sexp paren-state))
11595 ;;CASE 5N: We are at a topmost continuation line and the only
11596 ;;preceding items are annotations.
11597 ((and (c-major-mode-is 'java-mode)
11598 (setq placeholder (point))
11599 (c-beginning-of-statement-1)
11600 (progn
11601 (while (and (c-forward-annotation))
11602 (c-forward-syntactic-ws))
11604 (prog1
11605 (>= (point) placeholder)
11606 (goto-char placeholder)))
11607 (c-add-syntax 'annotation-top-cont (c-point 'boi)))
11609 ;; CASE 5M: we are at a topmost continuation line
11611 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
11612 (when (c-major-mode-is 'objc-mode)
11613 (setq placeholder (point))
11614 (while (and (c-forward-objc-directive)
11615 (< (point) indent-point))
11616 (c-forward-syntactic-ws)
11617 (setq placeholder (point)))
11618 (goto-char placeholder))
11619 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
11622 ;; (CASE 6 has been removed.)
11624 ;; CASE 7: line is an expression, not a statement. Most
11625 ;; likely we are either in a function prototype or a function
11626 ;; call argument list
11627 ((not (or (and c-special-brace-lists
11628 (save-excursion
11629 (goto-char containing-sexp)
11630 (c-looking-at-special-brace-list)))
11631 (eq (char-after containing-sexp) ?{)))
11632 (cond
11634 ;; CASE 7A: we are looking at the arglist closing paren.
11635 ;; C.f. case 7F.
11636 ((memq char-after-ip '(?\) ?\]))
11637 (goto-char containing-sexp)
11638 (setq placeholder (c-point 'boi))
11639 (if (and (c-safe (backward-up-list 1) t)
11640 (>= (point) placeholder))
11641 (progn
11642 (forward-char)
11643 (skip-chars-forward " \t"))
11644 (goto-char placeholder))
11645 (c-add-stmt-syntax 'arglist-close (list containing-sexp) t
11646 (c-most-enclosing-brace paren-state (point))
11647 paren-state))
11649 ;; CASE 7B: Looking at the opening brace of an
11650 ;; in-expression block or brace list. C.f. cases 4, 16A
11651 ;; and 17E.
11652 ((and (eq char-after-ip ?{)
11653 (progn
11654 (setq placeholder (c-inside-bracelist-p (point)
11655 paren-state))
11656 (if placeholder
11657 (setq tmpsymbol '(brace-list-open . inexpr-class))
11658 (setq tmpsymbol '(block-open . inexpr-statement)
11659 placeholder
11660 (cdr-safe (c-looking-at-inexpr-block
11661 (c-safe-position containing-sexp
11662 paren-state)
11663 containing-sexp)))
11664 ;; placeholder is nil if it's a block directly in
11665 ;; a function arglist. That makes us skip out of
11666 ;; this case.
11668 (goto-char placeholder)
11669 (back-to-indentation)
11670 (c-add-stmt-syntax (car tmpsymbol) nil t
11671 (c-most-enclosing-brace paren-state (point))
11672 paren-state)
11673 (if (/= (point) placeholder)
11674 (c-add-syntax (cdr tmpsymbol))))
11676 ;; CASE 7C: we are looking at the first argument in an empty
11677 ;; argument list. Use arglist-close if we're actually
11678 ;; looking at a close paren or bracket.
11679 ((memq char-before-ip '(?\( ?\[))
11680 (goto-char containing-sexp)
11681 (setq placeholder (c-point 'boi))
11682 (if (and (c-safe (backward-up-list 1) t)
11683 (>= (point) placeholder))
11684 (progn
11685 (forward-char)
11686 (skip-chars-forward " \t"))
11687 (goto-char placeholder))
11688 (c-add-stmt-syntax 'arglist-intro (list containing-sexp) t
11689 (c-most-enclosing-brace paren-state (point))
11690 paren-state))
11692 ;; CASE 7D: we are inside a conditional test clause. treat
11693 ;; these things as statements
11694 ((progn
11695 (goto-char containing-sexp)
11696 (and (c-safe (c-forward-sexp -1) t)
11697 (looking-at "\\<for\\>[^_]")))
11698 (goto-char (1+ containing-sexp))
11699 (c-forward-syntactic-ws indent-point)
11700 (if (eq char-before-ip ?\;)
11701 (c-add-syntax 'statement (point))
11702 (c-add-syntax 'statement-cont (point))
11705 ;; CASE 7E: maybe a continued ObjC method call. This is the
11706 ;; case when we are inside a [] bracketed exp, and what
11707 ;; precede the opening bracket is not an identifier.
11708 ((and c-opt-method-key
11709 (eq (char-after containing-sexp) ?\[)
11710 (progn
11711 (goto-char (1- containing-sexp))
11712 (c-backward-syntactic-ws (c-point 'bod))
11713 (if (not (looking-at c-symbol-key))
11714 (c-add-syntax 'objc-method-call-cont containing-sexp))
11717 ;; CASE 7F: we are looking at an arglist continuation line,
11718 ;; but the preceding argument is on the same line as the
11719 ;; opening paren. This case includes multi-line
11720 ;; mathematical paren groupings, but we could be on a
11721 ;; for-list continuation line. C.f. case 7A.
11722 ((progn
11723 (goto-char (1+ containing-sexp))
11724 (< (save-excursion
11725 (c-forward-syntactic-ws)
11726 (point))
11727 (c-point 'bonl)))
11728 (goto-char containing-sexp) ; paren opening the arglist
11729 (setq placeholder (c-point 'boi))
11730 (if (and (c-safe (backward-up-list 1) t)
11731 (>= (point) placeholder))
11732 (progn
11733 (forward-char)
11734 (skip-chars-forward " \t"))
11735 (goto-char placeholder))
11736 (c-add-stmt-syntax 'arglist-cont-nonempty (list containing-sexp) t
11737 (c-most-enclosing-brace c-state-cache (point))
11738 paren-state))
11740 ;; CASE 7G: we are looking at just a normal arglist
11741 ;; continuation line
11742 (t (c-forward-syntactic-ws indent-point)
11743 (c-add-syntax 'arglist-cont (c-point 'boi)))
11746 ;; CASE 8: func-local multi-inheritance line
11747 ((and (c-major-mode-is 'c++-mode)
11748 (save-excursion
11749 (goto-char indent-point)
11750 (skip-chars-forward " \t")
11751 (looking-at c-opt-postfix-decl-spec-key)))
11752 (goto-char indent-point)
11753 (skip-chars-forward " \t")
11754 (cond
11756 ;; CASE 8A: non-hanging colon on an inher intro
11757 ((eq char-after-ip ?:)
11758 (c-backward-syntactic-ws lim)
11759 (c-add-syntax 'inher-intro (c-point 'boi)))
11761 ;; CASE 8B: hanging colon on an inher intro
11762 ((eq char-before-ip ?:)
11763 (c-add-syntax 'inher-intro (c-point 'boi)))
11765 ;; CASE 8C: a continued inheritance line
11767 (c-beginning-of-inheritance-list lim)
11768 (c-add-syntax 'inher-cont (point))
11771 ;; CASE 9: we are inside a brace-list
11772 ((and (not (c-major-mode-is 'awk-mode)) ; Maybe this isn't needed (ACM, 2002/3/29)
11773 (setq special-brace-list
11774 (or (and c-special-brace-lists ;;;; ALWAYS NIL FOR AWK!!
11775 (save-excursion
11776 (goto-char containing-sexp)
11777 (c-looking-at-special-brace-list)))
11778 (c-inside-bracelist-p containing-sexp paren-state))))
11779 (cond
11781 ;; CASE 9A: In the middle of a special brace list opener.
11782 ((and (consp special-brace-list)
11783 (save-excursion
11784 (goto-char containing-sexp)
11785 (eq (char-after) ?\())
11786 (eq char-after-ip (car (cdr special-brace-list))))
11787 (goto-char (car (car special-brace-list)))
11788 (skip-chars-backward " \t")
11789 (if (and (bolp)
11790 (assoc 'statement-cont
11791 (setq placeholder (c-guess-basic-syntax))))
11792 (setq c-syntactic-context placeholder)
11793 (c-beginning-of-statement-1
11794 (c-safe-position (1- containing-sexp) paren-state))
11795 (c-forward-token-2 0)
11796 (while (cond
11797 ((looking-at c-specifier-key)
11798 (c-forward-keyword-clause 1))
11799 ((and c-opt-cpp-prefix
11800 (looking-at c-noise-macro-with-parens-name-re))
11801 (c-forward-noise-clause))))
11802 (c-add-syntax 'brace-list-open (c-point 'boi))))
11804 ;; CASE 9B: brace-list-close brace
11805 ((if (consp special-brace-list)
11806 ;; Check special brace list closer.
11807 (progn
11808 (goto-char (car (car special-brace-list)))
11809 (save-excursion
11810 (goto-char indent-point)
11811 (back-to-indentation)
11813 ;; We were between the special close char and the `)'.
11814 (and (eq (char-after) ?\))
11815 (eq (1+ (point)) (cdr (car special-brace-list))))
11816 ;; We were before the special close char.
11817 (and (eq (char-after) (cdr (cdr special-brace-list)))
11818 (zerop (c-forward-token-2))
11819 (eq (1+ (point)) (cdr (car special-brace-list)))))))
11820 ;; Normal brace list check.
11821 (and (eq char-after-ip ?})
11822 (c-safe (goto-char (c-up-list-backward (point))) t)
11823 (= (point) containing-sexp)))
11824 (if (eq (point) (c-point 'boi))
11825 (c-add-syntax 'brace-list-close (point))
11826 (setq lim (c-most-enclosing-brace c-state-cache (point)))
11827 (c-beginning-of-statement-1 lim nil nil t)
11828 (c-add-stmt-syntax 'brace-list-close nil t lim paren-state)))
11831 ;; Prepare for the rest of the cases below by going to the
11832 ;; token following the opening brace
11833 (if (consp special-brace-list)
11834 (progn
11835 (goto-char (car (car special-brace-list)))
11836 (c-forward-token-2 1 nil indent-point))
11837 (goto-char containing-sexp))
11838 (forward-char)
11839 (let ((start (point)))
11840 (c-forward-syntactic-ws indent-point)
11841 (goto-char (max start (c-point 'bol))))
11842 (c-skip-ws-forward indent-point)
11843 (cond
11845 ;; CASE 9C: we're looking at the first line in a brace-list
11846 ((= (point) indent-point)
11847 (if (consp special-brace-list)
11848 (goto-char (car (car special-brace-list)))
11849 (goto-char containing-sexp))
11850 (if (eq (point) (c-point 'boi))
11851 (c-add-syntax 'brace-list-intro (point))
11852 (setq lim (c-most-enclosing-brace c-state-cache (point)))
11853 (c-beginning-of-statement-1 lim)
11854 (c-add-stmt-syntax 'brace-list-intro nil t lim paren-state)))
11856 ;; CASE 9D: this is just a later brace-list-entry or
11857 ;; brace-entry-open
11858 (t (if (or (eq char-after-ip ?{)
11859 (and c-special-brace-lists
11860 (save-excursion
11861 (goto-char indent-point)
11862 (c-forward-syntactic-ws (c-point 'eol))
11863 (c-looking-at-special-brace-list (point)))))
11864 (c-add-syntax 'brace-entry-open (point))
11865 (c-add-syntax 'brace-list-entry (point))
11867 ))))
11869 ;; CASE 10: A continued statement or top level construct.
11870 ((and (not (memq char-before-ip '(?\; ?:)))
11871 (not (c-at-vsemi-p before-ws-ip))
11872 (or (not (eq char-before-ip ?}))
11873 (c-looking-at-inexpr-block-backward c-state-cache))
11874 (> (point)
11875 (save-excursion
11876 (c-beginning-of-statement-1 containing-sexp)
11877 (setq placeholder (point))))
11878 (/= placeholder containing-sexp))
11879 ;; This is shared with case 18.
11880 (c-guess-continued-construct indent-point
11881 char-after-ip
11882 placeholder
11883 containing-sexp
11884 paren-state))
11886 ;; CASE 16: block close brace, possibly closing the defun or
11887 ;; the class
11888 ((eq char-after-ip ?})
11889 ;; From here on we have the next containing sexp in lim.
11890 (setq lim (c-most-enclosing-brace paren-state))
11891 (goto-char containing-sexp)
11892 (cond
11894 ;; CASE 16E: Closing a statement block? This catches
11895 ;; cases where it's preceded by a statement keyword,
11896 ;; which works even when used in an "invalid" context,
11897 ;; e.g. a macro argument.
11898 ((c-after-conditional)
11899 (c-backward-to-block-anchor lim)
11900 (c-add-stmt-syntax 'block-close nil t lim paren-state))
11902 ;; CASE 16A: closing a lambda defun or an in-expression
11903 ;; block? C.f. cases 4, 7B and 17E.
11904 ((setq placeholder (c-looking-at-inexpr-block
11905 (c-safe-position containing-sexp paren-state)
11906 nil))
11907 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
11908 'inline-close
11909 'block-close))
11910 (goto-char containing-sexp)
11911 (back-to-indentation)
11912 (if (= containing-sexp (point))
11913 (c-add-syntax tmpsymbol (point))
11914 (goto-char (cdr placeholder))
11915 (back-to-indentation)
11916 (c-add-stmt-syntax tmpsymbol nil t
11917 (c-most-enclosing-brace paren-state (point))
11918 paren-state)
11919 (if (/= (point) (cdr placeholder))
11920 (c-add-syntax (car placeholder)))))
11922 ;; CASE 16B: does this close an inline or a function in
11923 ;; a non-class declaration level block?
11924 ((save-excursion
11925 (and lim
11926 (progn
11927 (goto-char lim)
11928 (c-looking-at-decl-block
11929 (c-most-enclosing-brace paren-state lim)
11930 nil))
11931 (setq placeholder (point))))
11932 (c-backward-to-decl-anchor lim)
11933 (back-to-indentation)
11934 (if (save-excursion
11935 (goto-char placeholder)
11936 (looking-at c-other-decl-block-key))
11937 (c-add-syntax 'defun-close (point))
11938 (c-add-syntax 'inline-close (point))))
11940 ;; CASE 16F: Can be a defun-close of a function declared
11941 ;; in a statement block, e.g. in Pike or when using gcc
11942 ;; extensions, but watch out for macros followed by
11943 ;; blocks. Let it through to be handled below.
11944 ;; C.f. cases B.3 and 17G.
11945 ((save-excursion
11946 (and (not (c-at-statement-start-p))
11947 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
11948 (setq placeholder (point))
11949 (let ((c-recognize-typeless-decls nil))
11950 ;; Turn off recognition of constructs that
11951 ;; lacks a type in this case, since that's more
11952 ;; likely to be a macro followed by a block.
11953 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
11954 (back-to-indentation)
11955 (if (/= (point) containing-sexp)
11956 (goto-char placeholder))
11957 (c-add-stmt-syntax 'defun-close nil t lim paren-state))
11959 ;; CASE 16C: If there is an enclosing brace then this is
11960 ;; a block close since defun closes inside declaration
11961 ;; level blocks have been handled above.
11962 (lim
11963 ;; If the block is preceded by a case/switch label on
11964 ;; the same line, we anchor at the first preceding label
11965 ;; at boi. The default handling in c-add-stmt-syntax
11966 ;; really fixes it better, but we do like this to keep
11967 ;; the indentation compatible with version 5.28 and
11968 ;; earlier. C.f. case 17H.
11969 (while (and (/= (setq placeholder (point)) (c-point 'boi))
11970 (eq (c-beginning-of-statement-1 lim) 'label)))
11971 (goto-char placeholder)
11972 (if (looking-at c-label-kwds-regexp)
11973 (c-add-syntax 'block-close (point))
11974 (goto-char containing-sexp)
11975 ;; c-backward-to-block-anchor not necessary here; those
11976 ;; situations are handled in case 16E above.
11977 (c-add-stmt-syntax 'block-close nil t lim paren-state)))
11979 ;; CASE 16D: Only top level defun close left.
11981 (goto-char containing-sexp)
11982 (c-backward-to-decl-anchor lim)
11983 (c-add-stmt-syntax 'defun-close nil nil
11984 (c-most-enclosing-brace paren-state)
11985 paren-state))
11988 ;; CASE 19: line is an expression, not a statement, and is directly
11989 ;; contained by a template delimiter. Most likely, we are in a
11990 ;; template arglist within a statement. This case is based on CASE
11991 ;; 7. At some point in the future, we may wish to create more
11992 ;; syntactic symbols such as `template-intro',
11993 ;; `template-cont-nonempty', etc., and distinguish between them as we
11994 ;; do for `arglist-intro' etc. (2009-12-07).
11995 ((and c-recognize-<>-arglists
11996 (setq containing-< (c-up-list-backward indent-point containing-sexp))
11997 (eq (char-after containing-<) ?\<))
11998 (setq placeholder (c-point 'boi containing-<))
11999 (goto-char containing-sexp) ; Most nested Lbrace/Lparen (but not
12000 ; '<') before indent-point.
12001 (if (>= (point) placeholder)
12002 (progn
12003 (forward-char)
12004 (skip-chars-forward " \t"))
12005 (goto-char placeholder))
12006 (c-add-stmt-syntax 'template-args-cont (list containing-<) t
12007 (c-most-enclosing-brace c-state-cache (point))
12008 paren-state))
12010 ;; CASE 17: Statement or defun catchall.
12012 (goto-char indent-point)
12013 ;; Back up statements until we find one that starts at boi.
12014 (while (let* ((prev-point (point))
12015 (last-step-type (c-beginning-of-statement-1
12016 containing-sexp)))
12017 (if (= (point) prev-point)
12018 (progn
12019 (setq step-type (or step-type last-step-type))
12020 nil)
12021 (setq step-type last-step-type)
12022 (/= (point) (c-point 'boi)))))
12023 (cond
12025 ;; CASE 17B: continued statement
12026 ((and (eq step-type 'same)
12027 (/= (point) indent-point))
12028 (c-add-stmt-syntax 'statement-cont nil nil
12029 containing-sexp paren-state))
12031 ;; CASE 17A: After a case/default label?
12032 ((progn
12033 (while (and (eq step-type 'label)
12034 (not (looking-at c-label-kwds-regexp)))
12035 (setq step-type
12036 (c-beginning-of-statement-1 containing-sexp)))
12037 (eq step-type 'label))
12038 (c-add-stmt-syntax (if (eq char-after-ip ?{)
12039 'statement-case-open
12040 'statement-case-intro)
12041 nil t containing-sexp paren-state))
12043 ;; CASE 17D: any old statement
12044 ((progn
12045 (while (eq step-type 'label)
12046 (setq step-type
12047 (c-beginning-of-statement-1 containing-sexp)))
12048 (eq step-type 'previous))
12049 (c-add-stmt-syntax 'statement nil t
12050 containing-sexp paren-state)
12051 (if (eq char-after-ip ?{)
12052 (c-add-syntax 'block-open)))
12054 ;; CASE 17I: Inside a substatement block.
12055 ((progn
12056 ;; The following tests are all based on containing-sexp.
12057 (goto-char containing-sexp)
12058 ;; From here on we have the next containing sexp in lim.
12059 (setq lim (c-most-enclosing-brace paren-state containing-sexp))
12060 (c-after-conditional))
12061 (c-backward-to-block-anchor lim)
12062 (c-add-stmt-syntax 'statement-block-intro nil t
12063 lim paren-state)
12064 (if (eq char-after-ip ?{)
12065 (c-add-syntax 'block-open)))
12067 ;; CASE 17E: first statement in an in-expression block.
12068 ;; C.f. cases 4, 7B and 16A.
12069 ((setq placeholder (c-looking-at-inexpr-block
12070 (c-safe-position containing-sexp paren-state)
12071 nil))
12072 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
12073 'defun-block-intro
12074 'statement-block-intro))
12075 (back-to-indentation)
12076 (if (= containing-sexp (point))
12077 (c-add-syntax tmpsymbol (point))
12078 (goto-char (cdr placeholder))
12079 (back-to-indentation)
12080 (c-add-stmt-syntax tmpsymbol nil t
12081 (c-most-enclosing-brace c-state-cache (point))
12082 paren-state)
12083 (if (/= (point) (cdr placeholder))
12084 (c-add-syntax (car placeholder))))
12085 (if (eq char-after-ip ?{)
12086 (c-add-syntax 'block-open)))
12088 ;; CASE 17F: first statement in an inline, or first
12089 ;; statement in a top-level defun. we can tell this is it
12090 ;; if there are no enclosing braces that haven't been
12091 ;; narrowed out by a class (i.e. don't use bod here).
12092 ((save-excursion
12093 (or (not (setq placeholder (c-most-enclosing-brace
12094 paren-state)))
12095 (and (progn
12096 (goto-char placeholder)
12097 (eq (char-after) ?{))
12098 (c-looking-at-decl-block (c-most-enclosing-brace
12099 paren-state (point))
12100 nil))))
12101 (c-backward-to-decl-anchor lim)
12102 (back-to-indentation)
12103 (c-add-syntax 'defun-block-intro (point)))
12105 ;; CASE 17G: First statement in a function declared inside
12106 ;; a normal block. This can occur in Pike and with
12107 ;; e.g. the gcc extensions, but watch out for macros
12108 ;; followed by blocks. C.f. cases B.3 and 16F.
12109 ((save-excursion
12110 (and (not (c-at-statement-start-p))
12111 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
12112 (setq placeholder (point))
12113 (let ((c-recognize-typeless-decls nil))
12114 ;; Turn off recognition of constructs that lacks
12115 ;; a type in this case, since that's more likely
12116 ;; to be a macro followed by a block.
12117 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
12118 (back-to-indentation)
12119 (if (/= (point) containing-sexp)
12120 (goto-char placeholder))
12121 (c-add-stmt-syntax 'defun-block-intro nil t
12122 lim paren-state))
12124 ;; CASE 17H: First statement in a block.
12126 ;; If the block is preceded by a case/switch label on the
12127 ;; same line, we anchor at the first preceding label at
12128 ;; boi. The default handling in c-add-stmt-syntax is
12129 ;; really fixes it better, but we do like this to keep the
12130 ;; indentation compatible with version 5.28 and earlier.
12131 ;; C.f. case 16C.
12132 (while (and (/= (setq placeholder (point)) (c-point 'boi))
12133 (eq (c-beginning-of-statement-1 lim) 'label)))
12134 (goto-char placeholder)
12135 (if (looking-at c-label-kwds-regexp)
12136 (c-add-syntax 'statement-block-intro (point))
12137 (goto-char containing-sexp)
12138 ;; c-backward-to-block-anchor not necessary here; those
12139 ;; situations are handled in case 17I above.
12140 (c-add-stmt-syntax 'statement-block-intro nil t
12141 lim paren-state))
12142 (if (eq char-after-ip ?{)
12143 (c-add-syntax 'block-open)))
12147 ;; now we need to look at any modifiers
12148 (goto-char indent-point)
12149 (skip-chars-forward " \t")
12151 ;; are we looking at a comment only line?
12152 (when (and (looking-at c-comment-start-regexp)
12153 (/= (c-forward-token-2 0 nil (c-point 'eol)) 0))
12154 (c-append-syntax 'comment-intro))
12156 ;; we might want to give additional offset to friends (in C++).
12157 (when (and c-opt-friend-key
12158 (looking-at c-opt-friend-key))
12159 (c-append-syntax 'friend))
12161 ;; Set syntactic-relpos.
12162 (let ((p c-syntactic-context))
12163 (while (and p
12164 (if (integerp (c-langelem-pos (car p)))
12165 (progn
12166 (setq syntactic-relpos (c-langelem-pos (car p)))
12167 nil)
12169 (setq p (cdr p))))
12171 ;; Start of or a continuation of a preprocessor directive?
12172 (if (and macro-start
12173 (eq macro-start (c-point 'boi))
12174 (not (and (c-major-mode-is 'pike-mode)
12175 (eq (char-after (1+ macro-start)) ?\"))))
12176 (c-append-syntax 'cpp-macro)
12177 (when (and c-syntactic-indentation-in-macros macro-start)
12178 (if in-macro-expr
12179 (when (or
12180 (< syntactic-relpos macro-start)
12181 (not (or
12182 (assq 'arglist-intro c-syntactic-context)
12183 (assq 'arglist-cont c-syntactic-context)
12184 (assq 'arglist-cont-nonempty c-syntactic-context)
12185 (assq 'arglist-close c-syntactic-context))))
12186 ;; If inside a cpp expression, i.e. anywhere in a
12187 ;; cpp directive except a #define body, we only let
12188 ;; through the syntactic analysis that is internal
12189 ;; in the expression. That means the arglist
12190 ;; elements, if they are anchored inside the cpp
12191 ;; expression.
12192 (setq c-syntactic-context nil)
12193 (c-add-syntax 'cpp-macro-cont macro-start))
12194 (when (and (eq macro-start syntactic-relpos)
12195 (not (assq 'cpp-define-intro c-syntactic-context))
12196 (save-excursion
12197 (goto-char macro-start)
12198 (or (not (c-forward-to-cpp-define-body))
12199 (<= (point) (c-point 'boi indent-point)))))
12200 ;; Inside a #define body and the syntactic analysis is
12201 ;; anchored on the start of the #define. In this case
12202 ;; we add cpp-define-intro to get the extra
12203 ;; indentation of the #define body.
12204 (c-add-syntax 'cpp-define-intro)))))
12206 ;; return the syntax
12207 c-syntactic-context)))
12210 ;; Indentation calculation.
12212 (defun c-evaluate-offset (offset langelem symbol)
12213 ;; offset can be a number, a function, a variable, a list, or one of
12214 ;; the symbols + or -
12216 ;; This function might do hidden buffer changes.
12217 (let ((res
12218 (cond
12219 ((numberp offset) offset)
12220 ((vectorp offset) offset)
12221 ((null offset) nil)
12223 ((eq offset '+) c-basic-offset)
12224 ((eq offset '-) (- c-basic-offset))
12225 ((eq offset '++) (* 2 c-basic-offset))
12226 ((eq offset '--) (* 2 (- c-basic-offset)))
12227 ((eq offset '*) (/ c-basic-offset 2))
12228 ((eq offset '/) (/ (- c-basic-offset) 2))
12230 ((functionp offset)
12231 (c-evaluate-offset
12232 (funcall offset
12233 (cons (c-langelem-sym langelem)
12234 (c-langelem-pos langelem)))
12235 langelem symbol))
12237 ((listp offset)
12238 (cond
12239 ((eq (car offset) 'quote)
12240 (c-benign-error "The offset %S for %s was mistakenly quoted"
12241 offset symbol)
12242 nil)
12244 ((memq (car offset) '(min max))
12245 (let (res val (method (car offset)))
12246 (setq offset (cdr offset))
12247 (while offset
12248 (setq val (c-evaluate-offset (car offset) langelem symbol))
12249 (cond
12250 ((not val))
12251 ((not res)
12252 (setq res val))
12253 ((integerp val)
12254 (if (vectorp res)
12255 (c-benign-error "\
12256 Error evaluating offset %S for %s: \
12257 Cannot combine absolute offset %S with relative %S in `%s' method"
12258 (car offset) symbol res val method)
12259 (setq res (funcall method res val))))
12261 (if (integerp res)
12262 (c-benign-error "\
12263 Error evaluating offset %S for %s: \
12264 Cannot combine relative offset %S with absolute %S in `%s' method"
12265 (car offset) symbol res val method)
12266 (setq res (vector (funcall method (aref res 0)
12267 (aref val 0)))))))
12268 (setq offset (cdr offset)))
12269 res))
12271 ((eq (car offset) 'add)
12272 (let (res val)
12273 (setq offset (cdr offset))
12274 (while offset
12275 (setq val (c-evaluate-offset (car offset) langelem symbol))
12276 (cond
12277 ((not val))
12278 ((not res)
12279 (setq res val))
12280 ((integerp val)
12281 (if (vectorp res)
12282 (setq res (vector (+ (aref res 0) val)))
12283 (setq res (+ res val))))
12285 (if (vectorp res)
12286 (c-benign-error "\
12287 Error evaluating offset %S for %s: \
12288 Cannot combine absolute offsets %S and %S in `add' method"
12289 (car offset) symbol res val)
12290 (setq res val)))) ; Override.
12291 (setq offset (cdr offset)))
12292 res))
12295 (let (res)
12296 (when (eq (car offset) 'first)
12297 (setq offset (cdr offset)))
12298 (while (and (not res) offset)
12299 (setq res (c-evaluate-offset (car offset) langelem symbol)
12300 offset (cdr offset)))
12301 res))))
12303 ((and (symbolp offset) (boundp offset))
12304 (symbol-value offset))
12307 (c-benign-error "Unknown offset format %S for %s" offset symbol)
12308 nil))))
12310 (if (or (null res) (integerp res)
12311 (and (vectorp res) (= (length res) 1) (integerp (aref res 0))))
12313 (c-benign-error "Error evaluating offset %S for %s: Got invalid value %S"
12314 offset symbol res)
12315 nil)))
12317 (defun c-calc-offset (langelem)
12318 ;; Get offset from LANGELEM which is a list beginning with the
12319 ;; syntactic symbol and followed by any analysis data it provides.
12320 ;; That data may be zero or more elements, but if at least one is
12321 ;; given then the first is the anchor position (or nil). The symbol
12322 ;; is matched against `c-offsets-alist' and the offset calculated
12323 ;; from that is returned.
12325 ;; This function might do hidden buffer changes.
12326 (let* ((symbol (c-langelem-sym langelem))
12327 (match (assq symbol c-offsets-alist))
12328 (offset (cdr-safe match)))
12329 (if match
12330 (setq offset (c-evaluate-offset offset langelem symbol))
12331 (if c-strict-syntax-p
12332 (c-benign-error "No offset found for syntactic symbol %s" symbol))
12333 (setq offset 0))
12334 (if (vectorp offset)
12335 offset
12336 (or (and (numberp offset) offset)
12337 (and (symbolp offset) (symbol-value offset))
12341 (defun c-get-offset (langelem)
12342 ;; This is a compatibility wrapper for `c-calc-offset' in case
12343 ;; someone is calling it directly. It takes an old style syntactic
12344 ;; element on the form (SYMBOL . ANCHOR-POS) and converts it to the
12345 ;; new list form.
12347 ;; This function might do hidden buffer changes.
12348 (if (c-langelem-pos langelem)
12349 (c-calc-offset (list (c-langelem-sym langelem)
12350 (c-langelem-pos langelem)))
12351 (c-calc-offset langelem)))
12353 (defun c-get-syntactic-indentation (langelems)
12354 ;; Calculate the syntactic indentation from a syntactic description
12355 ;; as returned by `c-guess-syntax'.
12357 ;; Note that topmost-intro always has an anchor position at bol, for
12358 ;; historical reasons. It's often used together with other symbols
12359 ;; that has more sane positions. Since we always use the first
12360 ;; found anchor position, we rely on that these other symbols always
12361 ;; precede topmost-intro in the LANGELEMS list.
12363 ;; This function might do hidden buffer changes.
12364 (let ((indent 0) anchor)
12366 (while langelems
12367 (let* ((c-syntactic-element (car langelems))
12368 (res (c-calc-offset c-syntactic-element)))
12370 (if (vectorp res)
12371 ;; Got an absolute column that overrides any indentation
12372 ;; we've collected so far, but not the relative
12373 ;; indentation we might get for the nested structures
12374 ;; further down the langelems list.
12375 (setq indent (elt res 0)
12376 anchor (point-min)) ; A position at column 0.
12378 ;; Got a relative change of the current calculated
12379 ;; indentation.
12380 (setq indent (+ indent res))
12382 ;; Use the anchor position from the first syntactic
12383 ;; element with one.
12384 (unless anchor
12385 (setq anchor (c-langelem-pos (car langelems)))))
12387 (setq langelems (cdr langelems))))
12389 (if anchor
12390 (+ indent (save-excursion
12391 (goto-char anchor)
12392 (current-column)))
12393 indent)))
12396 (cc-provide 'cc-engine)
12398 ;; Local Variables:
12399 ;; indent-tabs-mode: t
12400 ;; tab-width: 8
12401 ;; End:
12402 ;;; cc-engine.el ends here