Correct two search limits in c-before-change-check_<>-operators.
[emacs.git] / lisp / progmodes / cc-engine.el
blob65e28c11e21c663c8488611ad68bef440d69edb9
1 ;;; cc-engine.el --- core syntax guessing engine for CC mode
3 ;; Copyright (C) 1985, 1987, 1992-2012 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, and
87 ;; to "hide" obtrusive characters in preprocessor lines.
89 ;; This property is used on single characters and is therefore
90 ;; always treated as front and rear nonsticky (or start and end open
91 ;; in XEmacs vocabulary). It's therefore installed on
92 ;; `text-property-default-nonsticky' if that variable exists (Emacs
93 ;; >= 21).
95 ;; 'c-is-sws and 'c-in-sws
96 ;; Used by `c-forward-syntactic-ws' and `c-backward-syntactic-ws' to
97 ;; speed them up. See the comment blurb before `c-put-is-sws'
98 ;; below for further details.
100 ;; 'c-type
101 ;; This property is used on single characters to mark positions with
102 ;; special syntactic relevance of various sorts. Its primary use is
103 ;; to avoid glitches when multiline constructs are refontified
104 ;; interactively (on font lock decoration level 3). It's cleared in
105 ;; a region before it's fontified and is then put on relevant chars
106 ;; in that region as they are encountered during the fontification.
107 ;; The value specifies the kind of position:
109 ;; 'c-decl-arg-start
110 ;; Put on the last char of the token preceding each declaration
111 ;; inside a declaration style arglist (typically in a function
112 ;; prototype).
114 ;; 'c-decl-end
115 ;; Put on the last char of the token preceding a declaration.
116 ;; This is used in cases where declaration boundaries can't be
117 ;; recognized simply by looking for a token like ";" or "}".
118 ;; `c-type-decl-end-used' must be set if this is used (see also
119 ;; `c-find-decl-spots').
121 ;; 'c-<>-arg-sep
122 ;; Put on the commas that separate arguments in angle bracket
123 ;; arglists like C++ template arglists.
125 ;; 'c-decl-id-start and 'c-decl-type-start
126 ;; Put on the last char of the token preceding each declarator
127 ;; in the declarator list of a declaration. They are also used
128 ;; between the identifiers cases like enum declarations.
129 ;; 'c-decl-type-start is used when the declarators are types,
130 ;; 'c-decl-id-start otherwise.
132 ;; 'c-awk-NL-prop
133 ;; Used in AWK mode to mark the various kinds of newlines. See
134 ;; cc-awk.el.
136 ;;; Code:
138 (eval-when-compile
139 (let ((load-path
140 (if (and (boundp 'byte-compile-dest-file)
141 (stringp byte-compile-dest-file))
142 (cons (file-name-directory byte-compile-dest-file) load-path)
143 load-path)))
144 (load "cc-bytecomp" nil t)))
146 (cc-require 'cc-defs)
147 (cc-require-when-compile 'cc-langs)
148 (cc-require 'cc-vars)
150 ;; Silence the compiler.
151 (cc-bytecomp-defun buffer-syntactic-context) ; XEmacs
154 ;; Make declarations for all the `c-lang-defvar' variables in cc-langs.
156 (defmacro c-declare-lang-variables ()
157 `(progn
158 ,@(apply 'nconc
159 (mapcar (lambda (init)
160 `(,(if (elt init 2)
161 `(defvar ,(car init) nil ,(elt init 2))
162 `(defvar ,(car init) nil))
163 (make-variable-buffer-local ',(car init))))
164 (cdr c-lang-variable-inits)))))
165 (c-declare-lang-variables)
168 ;;; Internal state variables.
170 ;; Internal state of hungry delete key feature
171 (defvar c-hungry-delete-key nil)
172 (make-variable-buffer-local 'c-hungry-delete-key)
174 ;; The electric flag (toggled by `c-toggle-electric-state').
175 ;; If t, electric actions (like automatic reindentation, and (if
176 ;; c-auto-newline is also set) auto newlining) will happen when an electric
177 ;; key like `{' is pressed (or an electric keyword like `else').
178 (defvar c-electric-flag t)
179 (make-variable-buffer-local 'c-electric-flag)
181 ;; Internal state of auto newline feature.
182 (defvar c-auto-newline nil)
183 (make-variable-buffer-local 'c-auto-newline)
185 ;; Included in the mode line to indicate the active submodes.
186 ;; (defvar c-submode-indicators nil)
187 ;; (make-variable-buffer-local 'c-submode-indicators)
189 (defun c-calculate-state (arg prevstate)
190 ;; Calculate the new state of PREVSTATE, t or nil, based on arg. If
191 ;; arg is nil or zero, toggle the state. If arg is negative, turn
192 ;; the state off, and if arg is positive, turn the state on
193 (if (or (not arg)
194 (zerop (setq arg (prefix-numeric-value arg))))
195 (not prevstate)
196 (> arg 0)))
199 ;; Basic handling of preprocessor directives.
201 ;; This is a dynamically bound cache used together with
202 ;; `c-query-macro-start' and `c-query-and-set-macro-start'. It only
203 ;; works as long as point doesn't cross a macro boundary.
204 (defvar c-macro-start 'unknown)
206 (defsubst c-query-and-set-macro-start ()
207 (if (symbolp c-macro-start)
208 (setq c-macro-start (save-excursion
209 (c-save-buffer-state ()
210 (and (c-beginning-of-macro)
211 (point)))))
212 c-macro-start))
214 (defsubst c-query-macro-start ()
215 (if (symbolp c-macro-start)
216 (save-excursion
217 (c-save-buffer-state ()
218 (and (c-beginning-of-macro)
219 (point))))
220 c-macro-start))
222 ;; One element macro cache to cope with continual movement within very large
223 ;; CPP macros.
224 (defvar c-macro-cache nil)
225 (make-variable-buffer-local 'c-macro-cache)
226 ;; Nil or cons of the bounds of the most recent CPP form probed by
227 ;; `c-beginning-of-macro', `c-end-of-macro' or `c-syntactic-end-of-macro'.
228 ;; The cdr will be nil if we know only the start of the CPP form.
229 (defvar c-macro-cache-start-pos nil)
230 (make-variable-buffer-local 'c-macro-cache-start-pos)
231 ;; The starting position from where we determined `c-macro-cache'.
232 (defvar c-macro-cache-syntactic nil)
233 (make-variable-buffer-local 'c-macro-cache-syntactic)
234 ;; non-nil iff `c-macro-cache' has both elements set AND the cdr is at a
235 ;; syntactic end of macro, not merely an apparent one.
237 (defun c-invalidate-macro-cache (beg end)
238 ;; Called from a before-change function. If the change region is before or
239 ;; in the macro characterized by `c-macro-cache' etc., nullify it
240 ;; appropriately. BEG and END are the standard before-change-functions
241 ;; parameters. END isn't used.
242 (cond
243 ((null c-macro-cache))
244 ((< beg (car c-macro-cache))
245 (setq c-macro-cache nil
246 c-macro-cache-start-pos nil
247 c-macro-cache-syntactic nil))
248 ((and (cdr c-macro-cache)
249 (< beg (cdr c-macro-cache)))
250 (setcdr c-macro-cache nil)
251 (setq c-macro-cache-start-pos beg
252 c-macro-cache-syntactic nil))))
254 (defun c-beginning-of-macro (&optional lim)
255 "Go to the beginning of a preprocessor directive.
256 Leave point at the beginning of the directive and return t if in one,
257 otherwise return nil and leave point unchanged.
259 Note that this function might do hidden buffer changes. See the
260 comment at the start of cc-engine.el for more info."
261 (let ((here (point)))
262 (when c-opt-cpp-prefix
263 (if (and (car c-macro-cache)
264 (>= (point) (car c-macro-cache))
265 (or (and (cdr c-macro-cache)
266 (<= (point) (cdr c-macro-cache)))
267 (<= (point) c-macro-cache-start-pos)))
268 (unless (< (car c-macro-cache) (or lim (point-min)))
269 (progn (goto-char (max (or lim (point-min)) (car c-macro-cache)))
270 (setq c-macro-cache-start-pos
271 (max c-macro-cache-start-pos here))
273 (setq c-macro-cache nil
274 c-macro-cache-start-pos nil
275 c-macro-cache-syntactic nil)
277 (save-restriction
278 (if lim (narrow-to-region lim (point-max)))
279 (beginning-of-line)
280 (while (eq (char-before (1- (point))) ?\\)
281 (forward-line -1))
282 (back-to-indentation)
283 (if (and (<= (point) here)
284 (looking-at c-opt-cpp-start))
285 (progn
286 (setq c-macro-cache (cons (point) nil)
287 c-macro-cache-start-pos here)
289 (goto-char here)
290 nil))))))
292 (defun c-end-of-macro ()
293 "Go to the end of a preprocessor directive.
294 More accurately, move the point to the end of the closest following
295 line that doesn't end with a line continuation backslash - no check is
296 done that the point is inside a cpp directive to begin with.
298 Note that this function might do hidden buffer changes. See the
299 comment at the start of cc-engine.el for more info."
300 (if (and (cdr c-macro-cache)
301 (<= (point) (cdr c-macro-cache))
302 (>= (point) (car c-macro-cache)))
303 (goto-char (cdr c-macro-cache))
304 (unless (and (car c-macro-cache)
305 (<= (point) c-macro-cache-start-pos)
306 (>= (point) (car c-macro-cache)))
307 (setq c-macro-cache nil
308 c-macro-cache-start-pos nil
309 c-macro-cache-syntactic nil))
310 (while (progn
311 (end-of-line)
312 (when (and (eq (char-before) ?\\)
313 (not (eobp)))
314 (forward-char)
315 t)))
316 (when (car c-macro-cache)
317 (setcdr c-macro-cache (point)))))
319 (defun c-syntactic-end-of-macro ()
320 ;; Go to the end of a CPP directive, or a "safe" pos just before.
322 ;; This is normally the end of the next non-escaped line. A "safe"
323 ;; position is one not within a string or comment. (The EOL on a line
324 ;; comment is NOT "safe").
326 ;; This function must only be called from the beginning of a CPP construct.
328 ;; Note that this function might do hidden buffer changes. See the comment
329 ;; at the start of cc-engine.el for more info.
330 (let* ((here (point))
331 (there (progn (c-end-of-macro) (point)))
333 (unless c-macro-cache-syntactic
334 (setq s (parse-partial-sexp here there))
335 (while (and (or (nth 3 s) ; in a string
336 (nth 4 s)) ; in a comment (maybe at end of line comment)
337 (> there here)) ; No infinite loops, please.
338 (setq there (1- (nth 8 s)))
339 (setq s (parse-partial-sexp here there)))
340 (setq c-macro-cache-syntactic (car c-macro-cache)))
341 (point)))
343 (defun c-forward-over-cpp-define-id ()
344 ;; Assuming point is at the "#" that introduces a preprocessor
345 ;; directive, it's moved forward to the end of the identifier which is
346 ;; "#define"d (or whatever c-opt-cpp-macro-define specifies). Non-nil
347 ;; is returned in this case, in all other cases nil is returned and
348 ;; point isn't moved.
350 ;; This function might do hidden buffer changes.
351 (when (and c-opt-cpp-macro-define-id
352 (looking-at c-opt-cpp-macro-define-id))
353 (goto-char (match-end 0))))
355 (defun c-forward-to-cpp-define-body ()
356 ;; Assuming point is at the "#" that introduces a preprocessor
357 ;; directive, it's moved forward to the start of the definition body
358 ;; if it's a "#define" (or whatever c-opt-cpp-macro-define
359 ;; specifies). Non-nil is returned in this case, in all other cases
360 ;; nil is returned and point isn't moved.
362 ;; This function might do hidden buffer changes.
363 (when (and c-opt-cpp-macro-define-start
364 (looking-at c-opt-cpp-macro-define-start)
365 (not (= (match-end 0) (c-point 'eol))))
366 (goto-char (match-end 0))))
369 ;;; Basic utility functions.
371 (defun c-syntactic-content (from to paren-level)
372 ;; Return the given region as a string where all syntactic
373 ;; whitespace is removed or, where necessary, replaced with a single
374 ;; space. If PAREN-LEVEL is given then all parens in the region are
375 ;; collapsed to "()", "[]" etc.
377 ;; This function might do hidden buffer changes.
379 (save-excursion
380 (save-restriction
381 (narrow-to-region from to)
382 (goto-char from)
383 (let* ((parts (list nil)) (tail parts) pos in-paren)
385 (while (re-search-forward c-syntactic-ws-start to t)
386 (goto-char (setq pos (match-beginning 0)))
387 (c-forward-syntactic-ws)
388 (if (= (point) pos)
389 (forward-char)
391 (when paren-level
392 (save-excursion
393 (setq in-paren (= (car (parse-partial-sexp from pos 1)) 1)
394 pos (point))))
396 (if (and (> pos from)
397 (< (point) to)
398 (looking-at "\\w\\|\\s_")
399 (save-excursion
400 (goto-char (1- pos))
401 (looking-at "\\w\\|\\s_")))
402 (progn
403 (setcdr tail (list (buffer-substring-no-properties from pos)
404 " "))
405 (setq tail (cddr tail)))
406 (setcdr tail (list (buffer-substring-no-properties from pos)))
407 (setq tail (cdr tail)))
409 (when in-paren
410 (when (= (car (parse-partial-sexp pos to -1)) -1)
411 (setcdr tail (list (buffer-substring-no-properties
412 (1- (point)) (point))))
413 (setq tail (cdr tail))))
415 (setq from (point))))
417 (setcdr tail (list (buffer-substring-no-properties from to)))
418 (apply 'concat (cdr parts))))))
420 (defun c-shift-line-indentation (shift-amt)
421 ;; Shift the indentation of the current line with the specified
422 ;; amount (positive inwards). The buffer is modified only if
423 ;; SHIFT-AMT isn't equal to zero.
424 (let ((pos (- (point-max) (point)))
425 (c-macro-start c-macro-start)
426 tmp-char-inserted)
427 (if (zerop shift-amt)
429 ;; If we're on an empty line inside a macro, we take the point
430 ;; to be at the current indentation and shift it to the
431 ;; appropriate column. This way we don't treat the extra
432 ;; whitespace out to the line continuation as indentation.
433 (when (and (c-query-and-set-macro-start)
434 (looking-at "[ \t]*\\\\$")
435 (save-excursion
436 (skip-chars-backward " \t")
437 (bolp)))
438 (insert ?x)
439 (backward-char)
440 (setq tmp-char-inserted t))
441 (unwind-protect
442 (let ((col (current-indentation)))
443 (delete-region (c-point 'bol) (c-point 'boi))
444 (beginning-of-line)
445 (indent-to (+ col shift-amt)))
446 (when tmp-char-inserted
447 (delete-char 1))))
448 ;; If initial point was within line's indentation and we're not on
449 ;; a line with a line continuation in a macro, position after the
450 ;; indentation. Else stay at same point in text.
451 (if (and (< (point) (c-point 'boi))
452 (not tmp-char-inserted))
453 (back-to-indentation)
454 (if (> (- (point-max) pos) (point))
455 (goto-char (- (point-max) pos))))))
457 (defsubst c-keyword-sym (keyword)
458 ;; Return non-nil if the string KEYWORD is a known keyword. More
459 ;; precisely, the value is the symbol for the keyword in
460 ;; `c-keywords-obarray'.
461 (intern-soft keyword c-keywords-obarray))
463 (defsubst c-keyword-member (keyword-sym lang-constant)
464 ;; Return non-nil if the symbol KEYWORD-SYM, as returned by
465 ;; `c-keyword-sym', is a member of LANG-CONSTANT, which is the name
466 ;; of a language constant that ends with "-kwds". If KEYWORD-SYM is
467 ;; nil then the result is nil.
468 (get keyword-sym lang-constant))
470 ;; String syntax chars, suitable for skip-syntax-(forward|backward).
471 (defconst c-string-syntax (if (memq 'gen-string-delim c-emacs-features)
472 "\"|"
473 "\""))
475 ;; Regexp matching string limit syntax.
476 (defconst c-string-limit-regexp (if (memq 'gen-string-delim c-emacs-features)
477 "\\s\"\\|\\s|"
478 "\\s\""))
480 ;; Regexp matching WS followed by string limit syntax.
481 (defconst c-ws*-string-limit-regexp
482 (concat "[ \t]*\\(" c-string-limit-regexp "\\)"))
484 ;; Holds formatted error strings for the few cases where parse errors
485 ;; are reported.
486 (defvar c-parsing-error nil)
487 (make-variable-buffer-local 'c-parsing-error)
489 (defun c-echo-parsing-error (&optional quiet)
490 (when (and c-report-syntactic-errors c-parsing-error (not quiet))
491 (c-benign-error "%s" c-parsing-error))
492 c-parsing-error)
494 ;; Faces given to comments and string literals. This is used in some
495 ;; situations to speed up recognition; it isn't mandatory that font
496 ;; locking is in use. This variable is extended with the face in
497 ;; `c-doc-face-name' when fontification is activated in cc-fonts.el.
498 (defvar c-literal-faces
499 (append '(font-lock-comment-face font-lock-string-face)
500 (when (facep 'font-lock-comment-delimiter-face)
501 ;; New in Emacs 22.
502 '(font-lock-comment-delimiter-face))))
504 (defsubst c-put-c-type-property (pos value)
505 ;; Put a c-type property with the given value at POS.
506 (c-put-char-property pos 'c-type value))
508 (defun c-clear-c-type-property (from to value)
509 ;; Remove all occurrences of the c-type property that has the given
510 ;; value in the region between FROM and TO. VALUE is assumed to not
511 ;; be nil.
513 ;; Note: This assumes that c-type is put on single chars only; it's
514 ;; very inefficient if matching properties cover large regions.
515 (save-excursion
516 (goto-char from)
517 (while (progn
518 (when (eq (get-text-property (point) 'c-type) value)
519 (c-clear-char-property (point) 'c-type))
520 (goto-char (next-single-property-change (point) 'c-type nil to))
521 (< (point) to)))))
524 ;; Some debug tools to visualize various special positions. This
525 ;; debug code isn't as portable as the rest of CC Mode.
527 (cc-bytecomp-defun overlays-in)
528 (cc-bytecomp-defun overlay-get)
529 (cc-bytecomp-defun overlay-start)
530 (cc-bytecomp-defun overlay-end)
531 (cc-bytecomp-defun delete-overlay)
532 (cc-bytecomp-defun overlay-put)
533 (cc-bytecomp-defun make-overlay)
535 (defun c-debug-add-face (beg end face)
536 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay)
537 (while overlays
538 (setq overlay (car overlays)
539 overlays (cdr overlays))
540 (when (eq (overlay-get overlay 'face) face)
541 (setq beg (min beg (overlay-start overlay))
542 end (max end (overlay-end overlay)))
543 (delete-overlay overlay)))
544 (overlay-put (make-overlay beg end) 'face face)))
546 (defun c-debug-remove-face (beg end face)
547 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay
548 (ol-beg beg) (ol-end end))
549 (while overlays
550 (setq overlay (car overlays)
551 overlays (cdr overlays))
552 (when (eq (overlay-get overlay 'face) face)
553 (setq ol-beg (min ol-beg (overlay-start overlay))
554 ol-end (max ol-end (overlay-end overlay)))
555 (delete-overlay overlay)))
556 (when (< ol-beg beg)
557 (overlay-put (make-overlay ol-beg beg) 'face face))
558 (when (> ol-end end)
559 (overlay-put (make-overlay end ol-end) 'face face))))
562 ;; `c-beginning-of-statement-1' and accompanying stuff.
564 ;; KLUDGE ALERT: c-maybe-labelp is used to pass information between
565 ;; c-crosses-statement-barrier-p and c-beginning-of-statement-1. A
566 ;; better way should be implemented, but this will at least shut up
567 ;; the byte compiler.
568 (defvar c-maybe-labelp)
570 ;; New awk-compatible version of c-beginning-of-statement-1, ACM 2002/6/22
572 ;; Macros used internally in c-beginning-of-statement-1 for the
573 ;; automaton actions.
574 (defmacro c-bos-push-state ()
575 '(setq stack (cons (cons state saved-pos)
576 stack)))
577 (defmacro c-bos-pop-state (&optional do-if-done)
578 `(if (setq state (car (car stack))
579 saved-pos (cdr (car stack))
580 stack (cdr stack))
582 ,do-if-done
583 (throw 'loop nil)))
584 (defmacro c-bos-pop-state-and-retry ()
585 '(throw 'loop (setq state (car (car stack))
586 saved-pos (cdr (car stack))
587 ;; Throw nil if stack is empty, else throw non-nil.
588 stack (cdr stack))))
589 (defmacro c-bos-save-pos ()
590 '(setq saved-pos (vector pos tok ptok pptok)))
591 (defmacro c-bos-restore-pos ()
592 '(unless (eq (elt saved-pos 0) start)
593 (setq pos (elt saved-pos 0)
594 tok (elt saved-pos 1)
595 ptok (elt saved-pos 2)
596 pptok (elt saved-pos 3))
597 (goto-char pos)
598 (setq sym nil)))
599 (defmacro c-bos-save-error-info (missing got)
600 `(setq saved-pos (vector pos ,missing ,got)))
601 (defmacro c-bos-report-error ()
602 '(unless noerror
603 (setq c-parsing-error
604 (format "No matching `%s' found for `%s' on line %d"
605 (elt saved-pos 1)
606 (elt saved-pos 2)
607 (1+ (count-lines (point-min)
608 (c-point 'bol (elt saved-pos 0))))))))
610 (defun c-beginning-of-statement-1 (&optional lim ignore-labels
611 noerror comma-delim)
612 "Move to the start of the current statement or declaration, or to
613 the previous one if already at the beginning of one. Only
614 statements/declarations on the same level are considered, i.e. don't
615 move into or out of sexps (not even normal expression parentheses).
617 If point is already at the earliest statement within braces or parens,
618 this function doesn't move back into any whitespace preceding it; it
619 returns 'same in this case.
621 Stop at statement continuation tokens like \"else\", \"catch\",
622 \"finally\" and the \"while\" in \"do ... while\" if the start point
623 is within the continuation. If starting at such a token, move to the
624 corresponding statement start. If at the beginning of a statement,
625 move to the closest containing statement if there is any. This might
626 also stop at a continuation clause.
628 Labels are treated as part of the following statements if
629 IGNORE-LABELS is non-nil. (FIXME: Doesn't work if we stop at a known
630 statement start keyword.) Otherwise, each label is treated as a
631 separate statement.
633 Macros are ignored \(i.e. skipped over) unless point is within one, in
634 which case the content of the macro is treated as normal code. Aside
635 from any normal statement starts found in it, stop at the first token
636 of the content in the macro, i.e. the expression of an \"#if\" or the
637 start of the definition in a \"#define\". Also stop at start of
638 macros before leaving them.
640 Return:
641 'label if stopped at a label or \"case...:\" or \"default:\";
642 'same if stopped at the beginning of the current statement;
643 'up if stepped to a containing statement;
644 'previous if stepped to a preceding statement;
645 'beginning if stepped from a statement continuation clause to
646 its start clause; or
647 'macro if stepped to a macro start.
648 Note that 'same and not 'label is returned if stopped at the same
649 label without crossing the colon character.
651 LIM may be given to limit the search. If the search hits the limit,
652 point will be left at the closest following token, or at the start
653 position if that is less ('same is returned in this case).
655 NOERROR turns off error logging to `c-parsing-error'.
657 Normally only ';' and virtual semicolons are considered to delimit
658 statements, but if COMMA-DELIM is non-nil then ',' is treated
659 as a delimiter too.
661 Note that this function might do hidden buffer changes. See the
662 comment at the start of cc-engine.el for more info."
664 ;; The bulk of this function is a pushdown automaton that looks at statement
665 ;; boundaries and the tokens (such as "while") in c-opt-block-stmt-key. Its
666 ;; purpose is to keep track of nested statements, ensuring that such
667 ;; statements are skipped over in their entirety (somewhat akin to what C-M-p
668 ;; does with nested braces/brackets/parentheses).
670 ;; Note: The position of a boundary is the following token.
672 ;; Beginning with the current token (the one following point), move back one
673 ;; sexp at a time (where a sexp is, more or less, either a token or the
674 ;; entire contents of a brace/bracket/paren pair). Each time a statement
675 ;; boundary is crossed or a "while"-like token is found, update the state of
676 ;; the PDA. Stop at the beginning of a statement when the stack (holding
677 ;; nested statement info) is empty and the position has been moved.
679 ;; The following variables constitute the PDA:
681 ;; sym: This is either the "while"-like token (e.g. 'for) we've just
682 ;; scanned back over, 'boundary if we've just gone back over a
683 ;; statement boundary, or nil otherwise.
684 ;; state: takes one of the values (nil else else-boundary while
685 ;; while-boundary catch catch-boundary).
686 ;; nil means "no "while"-like token yet scanned".
687 ;; 'else, for example, means "just gone back over an else".
688 ;; 'else-boundary means "just gone back over a statement boundary
689 ;; immediately after having gone back over an else".
690 ;; saved-pos: A vector of either saved positions (tok ptok pptok, etc.) or
691 ;; of error reporting information.
692 ;; stack: The stack onto which the PDA pushes its state. Each entry
693 ;; consists of a saved value of state and saved-pos. An entry is
694 ;; pushed when we move back over a "continuation" token (e.g. else)
695 ;; and popped when we encounter the corresponding opening token
696 ;; (e.g. if).
699 ;; The following diagram briefly outlines the PDA.
701 ;; Common state:
702 ;; "else": Push state, goto state `else'.
703 ;; "while": Push state, goto state `while'.
704 ;; "catch" or "finally": Push state, goto state `catch'.
705 ;; boundary: Pop state.
706 ;; other: Do nothing special.
708 ;; State `else':
709 ;; boundary: Goto state `else-boundary'.
710 ;; other: Error, pop state, retry token.
712 ;; State `else-boundary':
713 ;; "if": Pop state.
714 ;; boundary: Error, pop state.
715 ;; other: See common state.
717 ;; State `while':
718 ;; boundary: Save position, goto state `while-boundary'.
719 ;; other: Pop state, retry token.
721 ;; State `while-boundary':
722 ;; "do": Pop state.
723 ;; boundary: Restore position if it's not at start, pop state. [*see below]
724 ;; other: See common state.
726 ;; State `catch':
727 ;; boundary: Goto state `catch-boundary'.
728 ;; other: Error, pop state, retry token.
730 ;; State `catch-boundary':
731 ;; "try": Pop state.
732 ;; "catch": Goto state `catch'.
733 ;; boundary: Error, pop state.
734 ;; other: See common state.
736 ;; [*] In the `while-boundary' state, we had pushed a 'while state, and were
737 ;; searching for a "do" which would have opened a do-while. If we didn't
738 ;; find it, we discard the analysis done since the "while", go back to this
739 ;; token in the buffer and restart the scanning there, this time WITHOUT
740 ;; pushing the 'while state onto the stack.
742 ;; In addition to the above there is some special handling of labels
743 ;; and macros.
745 (let ((case-fold-search nil)
746 (start (point))
747 macro-start
748 (delims (if comma-delim '(?\; ?,) '(?\;)))
749 (c-stmt-delim-chars (if comma-delim
750 c-stmt-delim-chars-with-comma
751 c-stmt-delim-chars))
752 c-in-literal-cache c-maybe-labelp after-case:-pos saved
753 ;; Current position.
755 ;; Position of last stmt boundary character (e.g. ;).
756 boundary-pos
757 ;; The position of the last sexp or bound that follows the
758 ;; first found colon, i.e. the start of the nonlabel part of
759 ;; the statement. It's `start' if a colon is found just after
760 ;; the start.
761 after-labels-pos
762 ;; Like `after-labels-pos', but the first such position inside
763 ;; a label, i.e. the start of the last label before the start
764 ;; of the nonlabel part of the statement.
765 last-label-pos
766 ;; The last position where a label is possible provided the
767 ;; statement started there. It's nil as long as no invalid
768 ;; label content has been found (according to
769 ;; `c-nonlabel-token-key'). It's `start' if no valid label
770 ;; content was found in the label. Note that we might still
771 ;; regard it a label if it starts with `c-label-kwds'.
772 label-good-pos
773 ;; Putative positions of the components of a bitfield declaration,
774 ;; e.g. "int foo : NUM_FOO_BITS ;"
775 bitfield-type-pos bitfield-id-pos bitfield-size-pos
776 ;; Symbol just scanned back over (e.g. 'while or 'boundary).
777 ;; See above.
779 ;; Current state in the automaton. See above.
780 state
781 ;; Current saved positions. See above.
782 saved-pos
783 ;; Stack of conses (state . saved-pos).
784 stack
785 ;; Regexp which matches "for", "if", etc.
786 (cond-key (or c-opt-block-stmt-key
787 "\\<\\>")) ; Matches nothing.
788 ;; Return value.
789 (ret 'same)
790 ;; Positions of the last three sexps or bounds we've stopped at.
791 tok ptok pptok)
793 (save-restriction
794 (if lim (narrow-to-region lim (point-max)))
796 (if (save-excursion
797 (and (c-beginning-of-macro)
798 (/= (point) start)))
799 (setq macro-start (point)))
801 ;; Try to skip back over unary operator characters, to register
802 ;; that we've moved.
803 (while (progn
804 (setq pos (point))
805 (c-backward-syntactic-ws)
806 ;; Protect post-++/-- operators just before a virtual semicolon.
807 (and (not (c-at-vsemi-p))
808 (/= (skip-chars-backward "-+!*&~@`#") 0))))
810 ;; Skip back over any semicolon here. If it was a bare semicolon, we're
811 ;; done. Later on we ignore the boundaries for statements that don't
812 ;; contain any sexp. The only thing that is affected is that the error
813 ;; checking is a little less strict, and we really don't bother.
814 (if (and (memq (char-before) delims)
815 (progn (forward-char -1)
816 (setq saved (point))
817 (c-backward-syntactic-ws)
818 (or (memq (char-before) delims)
819 (memq (char-before) '(?: nil))
820 (eq (char-syntax (char-before)) ?\()
821 (c-at-vsemi-p))))
822 (setq ret 'previous
823 pos saved)
825 ;; Begin at start and not pos to detect macros if we stand
826 ;; directly after the #.
827 (goto-char start)
828 (if (looking-at "\\<\\|\\W")
829 ;; Record this as the first token if not starting inside it.
830 (setq tok start))
833 ;; The following while loop goes back one sexp (balanced parens,
834 ;; etc. with contents, or symbol or suchlike) each iteration. This
835 ;; movement is accomplished with a call to c-backward-sexp approx 170
836 ;; lines below.
838 ;; The loop is exited only by throwing nil to the (catch 'loop ...):
839 ;; 1. On reaching the start of a macro;
840 ;; 2. On having passed a stmt boundary with the PDA stack empty;
841 ;; 3. On reaching the start of an Objective C method def;
842 ;; 4. From macro `c-bos-pop-state'; when the stack is empty;
843 ;; 5. From macro `c-bos-pop-state-and-retry' when the stack is empty.
844 (while
845 (catch 'loop ;; Throw nil to break, non-nil to continue.
846 (cond
847 ;; Are we in a macro, just after the opening #?
848 ((save-excursion
849 (and macro-start ; Always NIL for AWK.
850 (progn (skip-chars-backward " \t")
851 (eq (char-before) ?#))
852 (progn (setq saved (1- (point)))
853 (beginning-of-line)
854 (not (eq (char-before (1- (point))) ?\\)))
855 (looking-at c-opt-cpp-start)
856 (progn (skip-chars-forward " \t")
857 (eq (point) saved))))
858 (goto-char saved)
859 (if (and (c-forward-to-cpp-define-body)
860 (progn (c-forward-syntactic-ws start)
861 (< (point) start)))
862 ;; Stop at the first token in the content of the macro.
863 (setq pos (point)
864 ignore-labels t) ; Avoid the label check on exit.
865 (setq pos saved
866 ret 'macro
867 ignore-labels t))
868 (throw 'loop nil)) ; 1. Start of macro.
870 ;; Do a round through the automaton if we've just passed a
871 ;; statement boundary or passed a "while"-like token.
872 ((or sym
873 (and (looking-at cond-key)
874 (setq sym (intern (match-string 1)))))
876 (when (and (< pos start) (null stack))
877 (throw 'loop nil)) ; 2. Statement boundary.
879 ;; The PDA state handling.
881 ;; Refer to the description of the PDA in the opening
882 ;; comments. In the following OR form, the first leaf
883 ;; attempts to handles one of the specific actions detailed
884 ;; (e.g., finding token "if" whilst in state `else-boundary').
885 ;; We drop through to the second leaf (which handles common
886 ;; state) if no specific handler is found in the first cond.
887 ;; If a parsing error is detected (e.g. an "else" with no
888 ;; preceding "if"), we throw to the enclosing catch.
890 ;; Note that the (eq state 'else) means
891 ;; "we've just passed an else", NOT "we're looking for an
892 ;; else".
893 (or (cond
894 ((eq state 'else)
895 (if (eq sym 'boundary)
896 (setq state 'else-boundary)
897 (c-bos-report-error)
898 (c-bos-pop-state-and-retry)))
900 ((eq state 'else-boundary)
901 (cond ((eq sym 'if)
902 (c-bos-pop-state (setq ret 'beginning)))
903 ((eq sym 'boundary)
904 (c-bos-report-error)
905 (c-bos-pop-state))))
907 ((eq state 'while)
908 (if (and (eq sym 'boundary)
909 ;; Since this can cause backtracking we do a
910 ;; little more careful analysis to avoid it:
911 ;; If there's a label in front of the while
912 ;; it can't be part of a do-while.
913 (not after-labels-pos))
914 (progn (c-bos-save-pos)
915 (setq state 'while-boundary))
916 (c-bos-pop-state-and-retry))) ; Can't be a do-while
918 ((eq state 'while-boundary)
919 (cond ((eq sym 'do)
920 (c-bos-pop-state (setq ret 'beginning)))
921 ((eq sym 'boundary) ; isn't a do-while
922 (c-bos-restore-pos) ; the position of the while
923 (c-bos-pop-state)))) ; no longer searching for do.
925 ((eq state 'catch)
926 (if (eq sym 'boundary)
927 (setq state 'catch-boundary)
928 (c-bos-report-error)
929 (c-bos-pop-state-and-retry)))
931 ((eq state 'catch-boundary)
932 (cond
933 ((eq sym 'try)
934 (c-bos-pop-state (setq ret 'beginning)))
935 ((eq sym 'catch)
936 (setq state 'catch))
937 ((eq sym 'boundary)
938 (c-bos-report-error)
939 (c-bos-pop-state)))))
941 ;; This is state common. We get here when the previous
942 ;; cond statement found no particular state handler.
943 (cond ((eq sym 'boundary)
944 ;; If we have a boundary at the start
945 ;; position we push a frame to go to the
946 ;; previous statement.
947 (if (>= pos start)
948 (c-bos-push-state)
949 (c-bos-pop-state)))
950 ((eq sym 'else)
951 (c-bos-push-state)
952 (c-bos-save-error-info 'if 'else)
953 (setq state 'else))
954 ((eq sym 'while)
955 ;; Is this a real while, or a do-while?
956 ;; The next `when' triggers unless we are SURE that
957 ;; the `while' is not the tail end of a `do-while'.
958 (when (or (not pptok)
959 (memq (char-after pptok) delims)
960 ;; The following kludge is to prevent
961 ;; infinite recursion when called from
962 ;; c-awk-after-if-for-while-condition-p,
963 ;; or the like.
964 (and (eq (point) start)
965 (c-vsemi-status-unknown-p))
966 (c-at-vsemi-p pptok))
967 ;; Since this can cause backtracking we do a
968 ;; little more careful analysis to avoid it: If
969 ;; the while isn't followed by a (possibly
970 ;; virtual) semicolon it can't be a do-while.
971 (c-bos-push-state)
972 (setq state 'while)))
973 ((memq sym '(catch finally))
974 (c-bos-push-state)
975 (c-bos-save-error-info 'try sym)
976 (setq state 'catch))))
978 (when c-maybe-labelp
979 ;; We're either past a statement boundary or at the
980 ;; start of a statement, so throw away any label data
981 ;; for the previous one.
982 (setq after-labels-pos nil
983 last-label-pos nil
984 c-maybe-labelp nil))))
986 ;; Step to the previous sexp, but not if we crossed a
987 ;; boundary, since that doesn't consume an sexp.
988 (if (eq sym 'boundary)
989 (setq ret 'previous)
991 ;; HERE IS THE SINGLE PLACE INSIDE THE PDA LOOP WHERE WE MOVE
992 ;; BACKWARDS THROUGH THE SOURCE.
994 (c-backward-syntactic-ws)
995 (let ((before-sws-pos (point))
996 ;; The end position of the area to search for statement
997 ;; barriers in this round.
998 (maybe-after-boundary-pos pos))
1000 ;; Go back over exactly one logical sexp, taking proper
1001 ;; account of macros and escaped EOLs.
1002 (while
1003 (progn
1004 (unless (c-safe (c-backward-sexp) t)
1005 ;; Give up if we hit an unbalanced block. Since the
1006 ;; stack won't be empty the code below will report a
1007 ;; suitable error.
1008 (throw 'loop nil))
1009 (cond
1010 ;; Have we moved into a macro?
1011 ((and (not macro-start)
1012 (c-beginning-of-macro))
1013 ;; Have we crossed a statement boundary? If not,
1014 ;; keep going back until we find one or a "real" sexp.
1015 (and
1016 (save-excursion
1017 (c-end-of-macro)
1018 (not (c-crosses-statement-barrier-p
1019 (point) maybe-after-boundary-pos)))
1020 (setq maybe-after-boundary-pos (point))))
1021 ;; Have we just gone back over an escaped NL? This
1022 ;; doesn't count as a sexp.
1023 ((looking-at "\\\\$")))))
1025 ;; Have we crossed a statement boundary?
1026 (setq boundary-pos
1027 (cond
1028 ;; Are we at a macro beginning?
1029 ((and (not macro-start)
1030 c-opt-cpp-prefix
1031 (looking-at c-opt-cpp-prefix))
1032 (save-excursion
1033 (c-end-of-macro)
1034 (c-crosses-statement-barrier-p
1035 (point) maybe-after-boundary-pos)))
1036 ;; Just gone back over a brace block?
1037 ((and
1038 (eq (char-after) ?{)
1039 (not (c-looking-at-inexpr-block lim nil t)))
1040 (save-excursion
1041 (c-forward-sexp) (point)))
1042 ;; Just gone back over some paren block?
1043 ((looking-at "\\s\(")
1044 (save-excursion
1045 (goto-char (1+ (c-down-list-backward
1046 before-sws-pos)))
1047 (c-crosses-statement-barrier-p
1048 (point) maybe-after-boundary-pos)))
1049 ;; Just gone back over an ordinary symbol of some sort?
1050 (t (c-crosses-statement-barrier-p
1051 (point) maybe-after-boundary-pos))))
1053 (when boundary-pos
1054 (setq pptok ptok
1055 ptok tok
1056 tok boundary-pos
1057 sym 'boundary)
1058 ;; Like a C "continue". Analyze the next sexp.
1059 (throw 'loop t))))
1061 ;; ObjC method def?
1062 (when (and c-opt-method-key
1063 (setq saved (c-in-method-def-p)))
1064 (setq pos saved
1065 ignore-labels t) ; Avoid the label check on exit.
1066 (throw 'loop nil)) ; 3. ObjC method def.
1068 ;; Might we have a bitfield declaration, "<type> <id> : <size>"?
1069 (if c-has-bitfields
1070 (cond
1071 ;; The : <size> and <id> fields?
1072 ((and (numberp c-maybe-labelp)
1073 (not bitfield-size-pos)
1074 (save-excursion
1075 (goto-char (or tok start))
1076 (not (looking-at c-keywords-regexp)))
1077 (not (looking-at c-keywords-regexp))
1078 (not (c-punctuation-in (point) c-maybe-labelp)))
1079 (setq bitfield-size-pos (or tok start)
1080 bitfield-id-pos (point)))
1081 ;; The <type> field?
1082 ((and bitfield-id-pos
1083 (not bitfield-type-pos))
1084 (if (and (looking-at c-symbol-key) ; Can only be an integer type. :-)
1085 (not (looking-at c-not-primitive-type-keywords-regexp))
1086 (not (c-punctuation-in (point) tok)))
1087 (setq bitfield-type-pos (point))
1088 (setq bitfield-size-pos nil
1089 bitfield-id-pos nil)))))
1091 ;; Handle labels.
1092 (unless (eq ignore-labels t)
1093 (when (numberp c-maybe-labelp)
1094 ;; `c-crosses-statement-barrier-p' has found a colon, so we
1095 ;; might be in a label now. Have we got a real label
1096 ;; (including a case label) or something like C++'s "public:"?
1097 ;; A case label might use an expression rather than a token.
1098 (setq after-case:-pos (or tok start))
1099 (if (or (looking-at c-nonlabel-token-key) ; e.g. "while" or "'a'"
1100 ;; Catch C++'s inheritance construct "class foo : bar".
1101 (save-excursion
1102 (and
1103 (c-safe (c-backward-sexp) t)
1104 (looking-at c-nonlabel-token-2-key))))
1105 (setq c-maybe-labelp nil)
1106 (if after-labels-pos ; Have we already encountered a label?
1107 (if (not last-label-pos)
1108 (setq last-label-pos (or tok start)))
1109 (setq after-labels-pos (or tok start)))
1110 (setq c-maybe-labelp t
1111 label-good-pos nil))) ; bogus "label"
1113 (when (and (not label-good-pos) ; i.e. no invalid "label"'s yet
1114 ; been found.
1115 (looking-at c-nonlabel-token-key)) ; e.g. "while :"
1116 ;; We're in a potential label and it's the first
1117 ;; time we've found something that isn't allowed in
1118 ;; one.
1119 (setq label-good-pos (or tok start))))
1121 ;; We've moved back by a sexp, so update the token positions.
1122 (setq sym nil
1123 pptok ptok
1124 ptok tok
1125 tok (point)
1126 pos tok) ; always non-nil
1127 ) ; end of (catch loop ....)
1128 ) ; end of sexp-at-a-time (while ....)
1130 ;; If the stack isn't empty there might be errors to report.
1131 (while stack
1132 (if (and (vectorp saved-pos) (eq (length saved-pos) 3))
1133 (c-bos-report-error))
1134 (setq saved-pos (cdr (car stack))
1135 stack (cdr stack)))
1137 (when (and (eq ret 'same)
1138 (not (memq sym '(boundary ignore nil))))
1139 ;; Need to investigate closer whether we've crossed
1140 ;; between a substatement and its containing statement.
1141 (if (setq saved (if (looking-at c-block-stmt-1-key)
1142 ptok
1143 pptok))
1144 (cond ((> start saved) (setq pos saved))
1145 ((= start saved) (setq ret 'up)))))
1147 (when (and (not ignore-labels)
1148 (eq c-maybe-labelp t)
1149 (not (eq ret 'beginning))
1150 after-labels-pos
1151 (not bitfield-type-pos) ; Bitfields take precedence over labels.
1152 (or (not label-good-pos)
1153 (<= label-good-pos pos)
1154 (progn
1155 (goto-char (if (and last-label-pos
1156 (< last-label-pos start))
1157 last-label-pos
1158 pos))
1159 (looking-at c-label-kwds-regexp))))
1160 ;; We're in a label. Maybe we should step to the statement
1161 ;; after it.
1162 (if (< after-labels-pos start)
1163 (setq pos after-labels-pos)
1164 (setq ret 'label)
1165 (if (and last-label-pos (< last-label-pos start))
1166 ;; Might have jumped over several labels. Go to the last one.
1167 (setq pos last-label-pos)))))
1169 ;; Have we got "case <expression>:"?
1170 (goto-char pos)
1171 (when (and after-case:-pos
1172 (not (eq ret 'beginning))
1173 (looking-at c-case-kwds-regexp))
1174 (if (< after-case:-pos start)
1175 (setq pos after-case:-pos))
1176 (if (eq ret 'same)
1177 (setq ret 'label)))
1179 ;; Skip over the unary operators that can start the statement.
1180 (while (progn
1181 (c-backward-syntactic-ws)
1182 ;; protect AWK post-inc/decrement operators, etc.
1183 (and (not (c-at-vsemi-p (point)))
1184 (/= (skip-chars-backward "-+!*&~@`#") 0)))
1185 (setq pos (point)))
1186 (goto-char pos)
1187 ret)))
1189 (defun c-punctuation-in (from to)
1190 "Return non-nil if there is a non-comment non-macro punctuation character
1191 between FROM and TO. FROM must not be in a string or comment. The returned
1192 value is the position of the first such character."
1193 (save-excursion
1194 (goto-char from)
1195 (let ((pos (point)))
1196 (while (progn (skip-chars-forward c-symbol-chars to)
1197 (c-forward-syntactic-ws to)
1198 (> (point) pos))
1199 (setq pos (point))))
1200 (and (< (point) to) (point))))
1202 (defun c-crosses-statement-barrier-p (from to)
1203 "Return non-nil if buffer positions FROM to TO cross one or more
1204 statement or declaration boundaries. The returned value is actually
1205 the position of the earliest boundary char. FROM must not be within
1206 a string or comment.
1208 The variable `c-maybe-labelp' is set to the position of the first `:' that
1209 might start a label (i.e. not part of `::' and not preceded by `?'). If a
1210 single `?' is found, then `c-maybe-labelp' is cleared.
1212 For AWK, a statement which is terminated by an EOL (not a \; or a }) is
1213 regarded as having a \"virtual semicolon\" immediately after the last token on
1214 the line. If this virtual semicolon is _at_ from, the function recognizes it.
1216 Note that this function might do hidden buffer changes. See the
1217 comment at the start of cc-engine.el for more info."
1218 (let* ((skip-chars
1219 ;; If the current language has CPP macros, insert # into skip-chars.
1220 (if c-opt-cpp-symbol
1221 (concat (substring c-stmt-delim-chars 0 1) ; "^"
1222 c-opt-cpp-symbol ; usually "#"
1223 (substring c-stmt-delim-chars 1)) ; e.g. ";{}?:"
1224 c-stmt-delim-chars))
1225 (non-skip-list
1226 (append (substring skip-chars 1) nil)) ; e.g. (?# ?\; ?{ ?} ?? ?:)
1227 lit-range vsemi-pos)
1228 (save-restriction
1229 (widen)
1230 (save-excursion
1231 (catch 'done
1232 (goto-char from)
1233 (while (progn (skip-chars-forward
1234 skip-chars
1235 (min to (c-point 'bonl)))
1236 (< (point) to))
1237 (cond
1238 ;; Virtual semicolon?
1239 ((and (bolp)
1240 (save-excursion
1241 (progn
1242 (if (setq lit-range (c-literal-limits from)) ; Have we landed in a string/comment?
1243 (goto-char (car lit-range)))
1244 (c-backward-syntactic-ws) ; ? put a limit here, maybe?
1245 (setq vsemi-pos (point))
1246 (c-at-vsemi-p))))
1247 (throw 'done vsemi-pos))
1248 ;; In a string/comment?
1249 ((setq lit-range (c-literal-limits from))
1250 (goto-char (cdr lit-range)))
1251 ((eq (char-after) ?:)
1252 (forward-char)
1253 (if (and (eq (char-after) ?:)
1254 (< (point) to))
1255 ;; Ignore scope operators.
1256 (forward-char)
1257 (setq c-maybe-labelp (1- (point)))))
1258 ((eq (char-after) ??)
1259 ;; A question mark. Can't be a label, so stop
1260 ;; looking for more : and ?.
1261 (setq c-maybe-labelp nil
1262 skip-chars (substring c-stmt-delim-chars 0 -2)))
1263 ;; At a CPP construct?
1264 ((and c-opt-cpp-symbol (looking-at c-opt-cpp-symbol)
1265 (save-excursion
1266 (forward-line 0)
1267 (looking-at c-opt-cpp-prefix)))
1268 (c-end-of-macro))
1269 ((memq (char-after) non-skip-list)
1270 (throw 'done (point)))))
1271 ;; In trailing space after an as yet undetected virtual semicolon?
1272 (c-backward-syntactic-ws from)
1273 (if (and (< (point) to)
1274 (c-at-vsemi-p))
1275 (point)
1276 nil))))))
1278 (defun c-at-statement-start-p ()
1279 "Return non-nil if the point is at the first token in a statement
1280 or somewhere in the syntactic whitespace before it.
1282 A \"statement\" here is not restricted to those inside code blocks.
1283 Any kind of declaration-like construct that occur outside function
1284 bodies is also considered a \"statement\".
1286 Note that this function might do hidden buffer changes. See the
1287 comment at the start of cc-engine.el for more info."
1289 (save-excursion
1290 (let ((end (point))
1291 c-maybe-labelp)
1292 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1293 (or (bobp)
1294 (eq (char-before) ?})
1295 (and (eq (char-before) ?{)
1296 (not (and c-special-brace-lists
1297 (progn (backward-char)
1298 (c-looking-at-special-brace-list)))))
1299 (c-crosses-statement-barrier-p (point) end)))))
1301 (defun c-at-expression-start-p ()
1302 "Return non-nil if the point is at the first token in an expression or
1303 statement, or somewhere in the syntactic whitespace before it.
1305 An \"expression\" here is a bit different from the normal language
1306 grammar sense: It's any sequence of expression tokens except commas,
1307 unless they are enclosed inside parentheses of some kind. Also, an
1308 expression never continues past an enclosing parenthesis, but it might
1309 contain parenthesis pairs of any sort except braces.
1311 Since expressions never cross statement boundaries, this function also
1312 recognizes statement beginnings, just like `c-at-statement-start-p'.
1314 Note that this function might do hidden buffer changes. See the
1315 comment at the start of cc-engine.el for more info."
1317 (save-excursion
1318 (let ((end (point))
1319 (c-stmt-delim-chars c-stmt-delim-chars-with-comma)
1320 c-maybe-labelp)
1321 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1322 (or (bobp)
1323 (memq (char-before) '(?{ ?}))
1324 (save-excursion (backward-char)
1325 (looking-at "\\s("))
1326 (c-crosses-statement-barrier-p (point) end)))))
1329 ;; A set of functions that covers various idiosyncrasies in
1330 ;; implementations of `forward-comment'.
1332 ;; Note: Some emacsen considers incorrectly that any line comment
1333 ;; ending with a backslash continues to the next line. I can't think
1334 ;; of any way to work around that in a reliable way without changing
1335 ;; the buffer, though. Suggestions welcome. ;) (No, temporarily
1336 ;; changing the syntax for backslash doesn't work since we must treat
1337 ;; escapes in string literals correctly.)
1339 (defun c-forward-single-comment ()
1340 "Move forward past whitespace and the closest following comment, if any.
1341 Return t if a comment was found, nil otherwise. In either case, the
1342 point is moved past the following whitespace. Line continuations,
1343 i.e. a backslashes followed by line breaks, are treated as whitespace.
1344 The line breaks that end line comments are considered to be the
1345 comment enders, so the point will be put on the beginning of the next
1346 line if it moved past a line comment.
1348 This function does not do any hidden buffer changes."
1350 (let ((start (point)))
1351 (when (looking-at "\\([ \t\n\r\f\v]\\|\\\\[\n\r]\\)+")
1352 (goto-char (match-end 0)))
1354 (when (forward-comment 1)
1355 (if (eobp)
1356 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1357 ;; forwards at eob.
1360 ;; Emacs includes the ending newline in a b-style (c++)
1361 ;; comment, but XEmacs doesn't. We depend on the Emacs
1362 ;; behavior (which also is symmetric).
1363 (if (and (eolp) (elt (parse-partial-sexp start (point)) 7))
1364 (condition-case nil (forward-char 1)))
1366 t))))
1368 (defsubst c-forward-comments ()
1369 "Move forward past all following whitespace and comments.
1370 Line continuations, i.e. a backslashes followed by line breaks, are
1371 treated as whitespace.
1373 Note that this function might do hidden buffer changes. See the
1374 comment at the start of cc-engine.el for more info."
1376 (while (or
1377 ;; If forward-comment in at least XEmacs 21 is given a large
1378 ;; positive value, it'll loop all the way through if it hits
1379 ;; eob.
1380 (and (forward-comment 5)
1381 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1382 ;; forwards at eob.
1383 (not (eobp)))
1385 (when (looking-at "\\\\[\n\r]")
1386 (forward-char 2)
1387 t))))
1389 (defun c-backward-single-comment ()
1390 "Move backward past whitespace and the closest preceding comment, if any.
1391 Return t if a comment was found, nil otherwise. In either case, the
1392 point is moved past the preceding whitespace. Line continuations,
1393 i.e. a backslashes followed by line breaks, are treated as whitespace.
1394 The line breaks that end line comments are considered to be the
1395 comment enders, so the point cannot be at the end of the same line to
1396 move over a line comment.
1398 This function does not do any hidden buffer changes."
1400 (let ((start (point)))
1401 ;; When we got newline terminated comments, forward-comment in all
1402 ;; supported emacsen so far will stop at eol of each line not
1403 ;; ending with a comment when moving backwards. This corrects for
1404 ;; that, and at the same time handles line continuations.
1405 (while (progn
1406 (skip-chars-backward " \t\n\r\f\v")
1407 (and (looking-at "[\n\r]")
1408 (eq (char-before) ?\\)))
1409 (backward-char))
1411 (if (bobp)
1412 ;; Some emacsen (e.g. Emacs 19.34) return t when moving
1413 ;; backwards at bob.
1416 ;; Leave point after the closest following newline if we've
1417 ;; backed up over any above, since forward-comment won't move
1418 ;; backward over a line comment if point is at the end of the
1419 ;; same line.
1420 (re-search-forward "\\=\\s *[\n\r]" start t)
1422 (if (if (let (open-paren-in-column-0-is-defun-start) (forward-comment -1))
1423 (if (eolp)
1424 ;; If forward-comment above succeeded and we're at eol
1425 ;; then the newline we moved over above didn't end a
1426 ;; line comment, so we give it another go.
1427 (let (open-paren-in-column-0-is-defun-start)
1428 (forward-comment -1))
1431 ;; Emacs <= 20 and XEmacs move back over the closer of a
1432 ;; block comment that lacks an opener.
1433 (if (looking-at "\\*/")
1434 (progn (forward-char 2) nil)
1435 t)))))
1437 (defsubst c-backward-comments ()
1438 "Move backward past all preceding whitespace and comments.
1439 Line continuations, i.e. a backslashes followed by line breaks, are
1440 treated as whitespace. The line breaks that end line comments are
1441 considered to be the comment enders, so the point cannot be at the end
1442 of the same line to move over a line comment. Unlike
1443 c-backward-syntactic-ws, this function doesn't move back over
1444 preprocessor directives.
1446 Note that this function might do hidden buffer changes. See the
1447 comment at the start of cc-engine.el for more info."
1449 (let ((start (point)))
1450 (while (and
1451 ;; `forward-comment' in some emacsen (e.g. XEmacs 21.4)
1452 ;; return t when moving backwards at bob.
1453 (not (bobp))
1455 (if (let (open-paren-in-column-0-is-defun-start)
1456 (forward-comment -1))
1457 (if (looking-at "\\*/")
1458 ;; Emacs <= 20 and XEmacs move back over the
1459 ;; closer of a block comment that lacks an opener.
1460 (progn (forward-char 2) nil)
1463 ;; XEmacs treats line continuations as whitespace but
1464 ;; only in the backward direction, which seems a bit
1465 ;; odd. Anyway, this is necessary for Emacs.
1466 (when (and (looking-at "[\n\r]")
1467 (eq (char-before) ?\\)
1468 (< (point) start))
1469 (backward-char)
1470 t))))))
1473 ;; Tools for skipping over syntactic whitespace.
1475 ;; The following functions use text properties to cache searches over
1476 ;; large regions of syntactic whitespace. It works as follows:
1478 ;; o If a syntactic whitespace region contains anything but simple
1479 ;; whitespace (i.e. space, tab and line breaks), the text property
1480 ;; `c-in-sws' is put over it. At places where we have stopped
1481 ;; within that region there's also a `c-is-sws' text property.
1482 ;; That since there typically are nested whitespace inside that
1483 ;; must be handled separately, e.g. whitespace inside a comment or
1484 ;; cpp directive. Thus, from one point with `c-is-sws' it's safe
1485 ;; to jump to another point with that property within the same
1486 ;; `c-in-sws' region. It can be likened to a ladder where
1487 ;; `c-in-sws' marks the bars and `c-is-sws' the rungs.
1489 ;; o The `c-is-sws' property is put on the simple whitespace chars at
1490 ;; a "rung position" and also maybe on the first following char.
1491 ;; As many characters as can be conveniently found in this range
1492 ;; are marked, but no assumption can be made that the whole range
1493 ;; is marked (it could be clobbered by later changes, for
1494 ;; instance).
1496 ;; Note that some part of the beginning of a sequence of simple
1497 ;; whitespace might be part of the end of a preceding line comment
1498 ;; or cpp directive and must not be considered part of the "rung".
1499 ;; Such whitespace is some amount of horizontal whitespace followed
1500 ;; by a newline. In the case of cpp directives it could also be
1501 ;; two newlines with horizontal whitespace between them.
1503 ;; The reason to include the first following char is to cope with
1504 ;; "rung positions" that doesn't have any ordinary whitespace. If
1505 ;; `c-is-sws' is put on a token character it does not have
1506 ;; `c-in-sws' set simultaneously. That's the only case when that
1507 ;; can occur, and the reason for not extending the `c-in-sws'
1508 ;; region to cover it is that the `c-in-sws' region could then be
1509 ;; accidentally merged with a following one if the token is only
1510 ;; one character long.
1512 ;; o On buffer changes the `c-in-sws' and `c-is-sws' properties are
1513 ;; removed in the changed region. If the change was inside
1514 ;; syntactic whitespace that means that the "ladder" is broken, but
1515 ;; a later call to `c-forward-sws' or `c-backward-sws' will use the
1516 ;; parts on either side and use an ordinary search only to "repair"
1517 ;; the gap.
1519 ;; Special care needs to be taken if a region is removed: If there
1520 ;; are `c-in-sws' on both sides of it which do not connect inside
1521 ;; the region then they can't be joined. If e.g. a marked macro is
1522 ;; broken, syntactic whitespace inside the new text might be
1523 ;; marked. If those marks would become connected with the old
1524 ;; `c-in-sws' range around the macro then we could get a ladder
1525 ;; with one end outside the macro and the other at some whitespace
1526 ;; within it.
1528 ;; The main motivation for this system is to increase the speed in
1529 ;; skipping over the large whitespace regions that can occur at the
1530 ;; top level in e.g. header files that contain a lot of comments and
1531 ;; cpp directives. For small comments inside code it's probably
1532 ;; slower than using `forward-comment' straightforwardly, but speed is
1533 ;; not a significant factor there anyway.
1535 ; (defface c-debug-is-sws-face
1536 ; '((t (:background "GreenYellow")))
1537 ; "Debug face to mark the `c-is-sws' property.")
1538 ; (defface c-debug-in-sws-face
1539 ; '((t (:underline t)))
1540 ; "Debug face to mark the `c-in-sws' property.")
1542 ; (defun c-debug-put-sws-faces ()
1543 ; ;; Put the sws debug faces on all the `c-is-sws' and `c-in-sws'
1544 ; ;; properties in the buffer.
1545 ; (interactive)
1546 ; (save-excursion
1547 ; (c-save-buffer-state (in-face)
1548 ; (goto-char (point-min))
1549 ; (setq in-face (if (get-text-property (point) 'c-is-sws)
1550 ; (point)))
1551 ; (while (progn
1552 ; (goto-char (next-single-property-change
1553 ; (point) 'c-is-sws nil (point-max)))
1554 ; (if in-face
1555 ; (progn
1556 ; (c-debug-add-face in-face (point) 'c-debug-is-sws-face)
1557 ; (setq in-face nil))
1558 ; (setq in-face (point)))
1559 ; (not (eobp))))
1560 ; (goto-char (point-min))
1561 ; (setq in-face (if (get-text-property (point) 'c-in-sws)
1562 ; (point)))
1563 ; (while (progn
1564 ; (goto-char (next-single-property-change
1565 ; (point) 'c-in-sws nil (point-max)))
1566 ; (if in-face
1567 ; (progn
1568 ; (c-debug-add-face in-face (point) 'c-debug-in-sws-face)
1569 ; (setq in-face nil))
1570 ; (setq in-face (point)))
1571 ; (not (eobp)))))))
1573 (defmacro c-debug-sws-msg (&rest args)
1574 ;;`(message ,@args)
1577 (defmacro c-put-is-sws (beg end)
1578 ;; This macro does a hidden buffer change.
1579 `(let ((beg ,beg) (end ,end))
1580 (put-text-property beg end 'c-is-sws t)
1581 ,@(when (facep 'c-debug-is-sws-face)
1582 `((c-debug-add-face beg end 'c-debug-is-sws-face)))))
1584 (defmacro c-put-in-sws (beg end)
1585 ;; This macro does a hidden buffer change.
1586 `(let ((beg ,beg) (end ,end))
1587 (put-text-property beg end 'c-in-sws t)
1588 ,@(when (facep 'c-debug-is-sws-face)
1589 `((c-debug-add-face beg end 'c-debug-in-sws-face)))))
1591 (defmacro c-remove-is-sws (beg end)
1592 ;; This macro does a hidden buffer change.
1593 `(let ((beg ,beg) (end ,end))
1594 (remove-text-properties beg end '(c-is-sws nil))
1595 ,@(when (facep 'c-debug-is-sws-face)
1596 `((c-debug-remove-face beg end 'c-debug-is-sws-face)))))
1598 (defmacro c-remove-in-sws (beg end)
1599 ;; This macro does a hidden buffer change.
1600 `(let ((beg ,beg) (end ,end))
1601 (remove-text-properties beg end '(c-in-sws nil))
1602 ,@(when (facep 'c-debug-is-sws-face)
1603 `((c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1605 (defmacro c-remove-is-and-in-sws (beg end)
1606 ;; This macro does a hidden buffer change.
1607 `(let ((beg ,beg) (end ,end))
1608 (remove-text-properties beg end '(c-is-sws nil c-in-sws nil))
1609 ,@(when (facep 'c-debug-is-sws-face)
1610 `((c-debug-remove-face beg end 'c-debug-is-sws-face)
1611 (c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1613 (defsubst c-invalidate-sws-region-after (beg end)
1614 ;; Called from `after-change-functions'. Note that if
1615 ;; `c-forward-sws' or `c-backward-sws' are used outside
1616 ;; `c-save-buffer-state' or similar then this will remove the cache
1617 ;; properties right after they're added.
1619 ;; This function does hidden buffer changes.
1621 (save-excursion
1622 ;; Adjust the end to remove the properties in any following simple
1623 ;; ws up to and including the next line break, if there is any
1624 ;; after the changed region. This is necessary e.g. when a rung
1625 ;; marked empty line is converted to a line comment by inserting
1626 ;; "//" before the line break. In that case the line break would
1627 ;; keep the rung mark which could make a later `c-backward-sws'
1628 ;; move into the line comment instead of over it.
1629 (goto-char end)
1630 (skip-chars-forward " \t\f\v")
1631 (when (and (eolp) (not (eobp)))
1632 (setq end (1+ (point)))))
1634 (when (and (= beg end)
1635 (get-text-property beg 'c-in-sws)
1636 (> beg (point-min))
1637 (get-text-property (1- beg) 'c-in-sws))
1638 ;; Ensure that an `c-in-sws' range gets broken. Note that it isn't
1639 ;; safe to keep a range that was continuous before the change. E.g:
1641 ;; #define foo
1642 ;; \
1643 ;; bar
1645 ;; There can be a "ladder" between "#" and "b". Now, if the newline
1646 ;; after "foo" is removed then "bar" will become part of the cpp
1647 ;; directive instead of a syntactically relevant token. In that
1648 ;; case there's no longer syntactic ws from "#" to "b".
1649 (setq beg (1- beg)))
1651 (c-debug-sws-msg "c-invalidate-sws-region-after [%s..%s]" beg end)
1652 (c-remove-is-and-in-sws beg end))
1654 (defun c-forward-sws ()
1655 ;; Used by `c-forward-syntactic-ws' to implement the unbounded search.
1657 ;; This function might do hidden buffer changes.
1659 (let (;; `rung-pos' is set to a position as early as possible in the
1660 ;; unmarked part of the simple ws region.
1661 (rung-pos (point)) next-rung-pos rung-end-pos last-put-in-sws-pos
1662 rung-is-marked next-rung-is-marked simple-ws-end
1663 ;; `safe-start' is set when it's safe to cache the start position.
1664 ;; It's not set if we've initially skipped over comments and line
1665 ;; continuations since we might have gone out through the end of a
1666 ;; macro then. This provision makes `c-forward-sws' not populate the
1667 ;; cache in the majority of cases, but otoh is `c-backward-sws' by far
1668 ;; more common.
1669 safe-start)
1671 ;; Skip simple ws and do a quick check on the following character to see
1672 ;; if it's anything that can't start syntactic ws, so we can bail out
1673 ;; early in the majority of cases when there just are a few ws chars.
1674 (skip-chars-forward " \t\n\r\f\v")
1675 (when (looking-at c-syntactic-ws-start)
1677 (setq rung-end-pos (min (1+ (point)) (point-max)))
1678 (if (setq rung-is-marked (text-property-any rung-pos rung-end-pos
1679 'c-is-sws t))
1680 ;; Find the last rung position to avoid setting properties in all
1681 ;; the cases when the marked rung is complete.
1682 ;; (`next-single-property-change' is certain to move at least one
1683 ;; step forward.)
1684 (setq rung-pos (1- (next-single-property-change
1685 rung-is-marked 'c-is-sws nil rung-end-pos)))
1686 ;; Got no marked rung here. Since the simple ws might have started
1687 ;; inside a line comment or cpp directive we must set `rung-pos' as
1688 ;; high as possible.
1689 (setq rung-pos (point)))
1691 (while
1692 (progn
1693 (while
1694 (when (and rung-is-marked
1695 (get-text-property (point) 'c-in-sws))
1697 ;; The following search is the main reason that `c-in-sws'
1698 ;; and `c-is-sws' aren't combined to one property.
1699 (goto-char (next-single-property-change
1700 (point) 'c-in-sws nil (point-max)))
1701 (unless (get-text-property (point) 'c-is-sws)
1702 ;; If the `c-in-sws' region extended past the last
1703 ;; `c-is-sws' char we have to go back a bit.
1704 (or (get-text-property (1- (point)) 'c-is-sws)
1705 (goto-char (previous-single-property-change
1706 (point) 'c-is-sws)))
1707 (backward-char))
1709 (c-debug-sws-msg
1710 "c-forward-sws cached move %s -> %s (max %s)"
1711 rung-pos (point) (point-max))
1713 (setq rung-pos (point))
1714 (and (> (skip-chars-forward " \t\n\r\f\v") 0)
1715 (not (eobp))))
1717 ;; We'll loop here if there is simple ws after the last rung.
1718 ;; That means that there's been some change in it and it's
1719 ;; possible that we've stepped into another ladder, so extend
1720 ;; the previous one to join with it if there is one, and try to
1721 ;; use the cache again.
1722 (c-debug-sws-msg
1723 "c-forward-sws extending rung with [%s..%s] (max %s)"
1724 (1+ rung-pos) (1+ (point)) (point-max))
1725 (unless (get-text-property (point) 'c-is-sws)
1726 ;; Remove any `c-in-sws' property from the last char of
1727 ;; the rung before we mark it with `c-is-sws', so that we
1728 ;; won't connect with the remains of a broken "ladder".
1729 (c-remove-in-sws (point) (1+ (point))))
1730 (c-put-is-sws (1+ rung-pos)
1731 (1+ (point)))
1732 (c-put-in-sws rung-pos
1733 (setq rung-pos (point)
1734 last-put-in-sws-pos rung-pos)))
1736 (setq simple-ws-end (point))
1737 (c-forward-comments)
1739 (cond
1740 ((/= (point) simple-ws-end)
1741 ;; Skipped over comments. Don't cache at eob in case the buffer
1742 ;; is narrowed.
1743 (not (eobp)))
1745 ((save-excursion
1746 (and c-opt-cpp-prefix
1747 (looking-at c-opt-cpp-start)
1748 (progn (skip-chars-backward " \t")
1749 (bolp))
1750 (or (bobp)
1751 (progn (backward-char)
1752 (not (eq (char-before) ?\\))))))
1753 ;; Skip a preprocessor directive.
1754 (end-of-line)
1755 (while (and (eq (char-before) ?\\)
1756 (= (forward-line 1) 0))
1757 (end-of-line))
1758 (forward-line 1)
1759 (setq safe-start t)
1760 ;; Don't cache at eob in case the buffer is narrowed.
1761 (not (eobp)))))
1763 ;; We've searched over a piece of non-white syntactic ws. See if this
1764 ;; can be cached.
1765 (setq next-rung-pos (point))
1766 (skip-chars-forward " \t\n\r\f\v")
1767 (setq rung-end-pos (min (1+ (point)) (point-max)))
1769 (if (or
1770 ;; Cache if we haven't skipped comments only, and if we started
1771 ;; either from a marked rung or from a completely uncached
1772 ;; position.
1773 (and safe-start
1774 (or rung-is-marked
1775 (not (get-text-property simple-ws-end 'c-in-sws))))
1777 ;; See if there's a marked rung in the encountered simple ws. If
1778 ;; so then we can cache, unless `safe-start' is nil. Even then
1779 ;; we need to do this to check if the cache can be used for the
1780 ;; next step.
1781 (and (setq next-rung-is-marked
1782 (text-property-any next-rung-pos rung-end-pos
1783 'c-is-sws t))
1784 safe-start))
1786 (progn
1787 (c-debug-sws-msg
1788 "c-forward-sws caching [%s..%s] - [%s..%s] (max %s)"
1789 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1790 (point-max))
1792 ;; Remove the properties for any nested ws that might be cached.
1793 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
1794 ;; anyway.
1795 (c-remove-is-sws (1+ simple-ws-end) next-rung-pos)
1796 (unless (and rung-is-marked (= rung-pos simple-ws-end))
1797 (c-put-is-sws rung-pos
1798 (1+ simple-ws-end))
1799 (setq rung-is-marked t))
1800 (c-put-in-sws rung-pos
1801 (setq rung-pos (point)
1802 last-put-in-sws-pos rung-pos))
1803 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
1804 ;; Remove any `c-in-sws' property from the last char of
1805 ;; the rung before we mark it with `c-is-sws', so that we
1806 ;; won't connect with the remains of a broken "ladder".
1807 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
1808 (c-put-is-sws next-rung-pos
1809 rung-end-pos))
1811 (c-debug-sws-msg
1812 "c-forward-sws not caching [%s..%s] - [%s..%s] (max %s)"
1813 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1814 (point-max))
1816 ;; Set `rung-pos' for the next rung. It's the same thing here as
1817 ;; initially, except that the rung position is set as early as
1818 ;; possible since we can't be in the ending ws of a line comment or
1819 ;; cpp directive now.
1820 (if (setq rung-is-marked next-rung-is-marked)
1821 (setq rung-pos (1- (next-single-property-change
1822 rung-is-marked 'c-is-sws nil rung-end-pos)))
1823 (setq rung-pos next-rung-pos))
1824 (setq safe-start t)))
1826 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
1827 ;; another one after the point (which might occur when editing inside a
1828 ;; comment or macro).
1829 (when (eq last-put-in-sws-pos (point))
1830 (cond ((< last-put-in-sws-pos (point-max))
1831 (c-debug-sws-msg
1832 "c-forward-sws clearing at %s for cache separation"
1833 last-put-in-sws-pos)
1834 (c-remove-in-sws last-put-in-sws-pos
1835 (1+ last-put-in-sws-pos)))
1837 ;; If at eob we have to clear the last character before the end
1838 ;; instead since the buffer might be narrowed and there might
1839 ;; be a `c-in-sws' after (point-max). In this case it's
1840 ;; necessary to clear both properties.
1841 (c-debug-sws-msg
1842 "c-forward-sws clearing thoroughly at %s for cache separation"
1843 (1- last-put-in-sws-pos))
1844 (c-remove-is-and-in-sws (1- last-put-in-sws-pos)
1845 last-put-in-sws-pos))))
1848 (defun c-backward-sws ()
1849 ;; Used by `c-backward-syntactic-ws' to implement the unbounded search.
1851 ;; This function might do hidden buffer changes.
1853 (let (;; `rung-pos' is set to a position as late as possible in the unmarked
1854 ;; part of the simple ws region.
1855 (rung-pos (point)) next-rung-pos last-put-in-sws-pos
1856 rung-is-marked simple-ws-beg cmt-skip-pos)
1858 ;; Skip simple horizontal ws and do a quick check on the preceding
1859 ;; character to see if it's anything that can't end syntactic ws, so we can
1860 ;; bail out early in the majority of cases when there just are a few ws
1861 ;; chars. Newlines are complicated in the backward direction, so we can't
1862 ;; skip over them.
1863 (skip-chars-backward " \t\f")
1864 (when (and (not (bobp))
1865 (save-excursion
1866 (backward-char)
1867 (looking-at c-syntactic-ws-end)))
1869 ;; Try to find a rung position in the simple ws preceding point, so that
1870 ;; we can get a cache hit even if the last bit of the simple ws has
1871 ;; changed recently.
1872 (setq simple-ws-beg (point))
1873 (skip-chars-backward " \t\n\r\f\v")
1874 (if (setq rung-is-marked (text-property-any
1875 (point) (min (1+ rung-pos) (point-max))
1876 'c-is-sws t))
1877 ;; `rung-pos' will be the earliest marked position, which means that
1878 ;; there might be later unmarked parts in the simple ws region.
1879 ;; It's not worth the effort to fix that; the last part of the
1880 ;; simple ws is also typically edited often, so it could be wasted.
1881 (goto-char (setq rung-pos rung-is-marked))
1882 (goto-char simple-ws-beg))
1884 (while
1885 (progn
1886 (while
1887 (when (and rung-is-marked
1888 (not (bobp))
1889 (get-text-property (1- (point)) 'c-in-sws))
1891 ;; The following search is the main reason that `c-in-sws'
1892 ;; and `c-is-sws' aren't combined to one property.
1893 (goto-char (previous-single-property-change
1894 (point) 'c-in-sws nil (point-min)))
1895 (unless (get-text-property (point) 'c-is-sws)
1896 ;; If the `c-in-sws' region extended past the first
1897 ;; `c-is-sws' char we have to go forward a bit.
1898 (goto-char (next-single-property-change
1899 (point) 'c-is-sws)))
1901 (c-debug-sws-msg
1902 "c-backward-sws cached move %s <- %s (min %s)"
1903 (point) rung-pos (point-min))
1905 (setq rung-pos (point))
1906 (if (and (< (min (skip-chars-backward " \t\f\v")
1907 (progn
1908 (setq simple-ws-beg (point))
1909 (skip-chars-backward " \t\n\r\f\v")))
1911 (setq rung-is-marked
1912 (text-property-any (point) rung-pos
1913 'c-is-sws t)))
1915 (goto-char simple-ws-beg)
1916 nil))
1918 ;; We'll loop here if there is simple ws before the first rung.
1919 ;; That means that there's been some change in it and it's
1920 ;; possible that we've stepped into another ladder, so extend
1921 ;; the previous one to join with it if there is one, and try to
1922 ;; use the cache again.
1923 (c-debug-sws-msg
1924 "c-backward-sws extending rung with [%s..%s] (min %s)"
1925 rung-is-marked rung-pos (point-min))
1926 (unless (get-text-property (1- rung-pos) 'c-is-sws)
1927 ;; Remove any `c-in-sws' property from the last char of
1928 ;; the rung before we mark it with `c-is-sws', so that we
1929 ;; won't connect with the remains of a broken "ladder".
1930 (c-remove-in-sws (1- rung-pos) rung-pos))
1931 (c-put-is-sws rung-is-marked
1932 rung-pos)
1933 (c-put-in-sws rung-is-marked
1934 (1- rung-pos))
1935 (setq rung-pos rung-is-marked
1936 last-put-in-sws-pos rung-pos))
1938 (c-backward-comments)
1939 (setq cmt-skip-pos (point))
1941 (cond
1942 ((and c-opt-cpp-prefix
1943 (/= cmt-skip-pos simple-ws-beg)
1944 (c-beginning-of-macro))
1945 ;; Inside a cpp directive. See if it should be skipped over.
1946 (let ((cpp-beg (point)))
1948 ;; Move back over all line continuations in the region skipped
1949 ;; over by `c-backward-comments'. If we go past it then we
1950 ;; started inside the cpp directive.
1951 (goto-char simple-ws-beg)
1952 (beginning-of-line)
1953 (while (and (> (point) cmt-skip-pos)
1954 (progn (backward-char)
1955 (eq (char-before) ?\\)))
1956 (beginning-of-line))
1958 (if (< (point) cmt-skip-pos)
1959 ;; Don't move past the cpp directive if we began inside
1960 ;; it. Note that the position at the end of the last line
1961 ;; of the macro is also considered to be within it.
1962 (progn (goto-char cmt-skip-pos)
1963 nil)
1965 ;; It's worthwhile to spend a little bit of effort on finding
1966 ;; the end of the macro, to get a good `simple-ws-beg'
1967 ;; position for the cache. Note that `c-backward-comments'
1968 ;; could have stepped over some comments before going into
1969 ;; the macro, and then `simple-ws-beg' must be kept on the
1970 ;; same side of those comments.
1971 (goto-char simple-ws-beg)
1972 (skip-chars-backward " \t\n\r\f\v")
1973 (if (eq (char-before) ?\\)
1974 (forward-char))
1975 (forward-line 1)
1976 (if (< (point) simple-ws-beg)
1977 ;; Might happen if comments after the macro were skipped
1978 ;; over.
1979 (setq simple-ws-beg (point)))
1981 (goto-char cpp-beg)
1982 t)))
1984 ((/= (save-excursion
1985 (skip-chars-forward " \t\n\r\f\v" simple-ws-beg)
1986 (setq next-rung-pos (point)))
1987 simple-ws-beg)
1988 ;; Skipped over comments. Must put point at the end of
1989 ;; the simple ws at point since we might be after a line
1990 ;; comment or cpp directive that's been partially
1991 ;; narrowed out, and we can't risk marking the simple ws
1992 ;; at the end of it.
1993 (goto-char next-rung-pos)
1994 t)))
1996 ;; We've searched over a piece of non-white syntactic ws. See if this
1997 ;; can be cached.
1998 (setq next-rung-pos (point))
1999 (skip-chars-backward " \t\f\v")
2001 (if (or
2002 ;; Cache if we started either from a marked rung or from a
2003 ;; completely uncached position.
2004 rung-is-marked
2005 (not (get-text-property (1- simple-ws-beg) 'c-in-sws))
2007 ;; Cache if there's a marked rung in the encountered simple ws.
2008 (save-excursion
2009 (skip-chars-backward " \t\n\r\f\v")
2010 (text-property-any (point) (min (1+ next-rung-pos) (point-max))
2011 'c-is-sws t)))
2013 (progn
2014 (c-debug-sws-msg
2015 "c-backward-sws caching [%s..%s] - [%s..%s] (min %s)"
2016 (point) (1+ next-rung-pos)
2017 simple-ws-beg (min (1+ rung-pos) (point-max))
2018 (point-min))
2020 ;; Remove the properties for any nested ws that might be cached.
2021 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
2022 ;; anyway.
2023 (c-remove-is-sws (1+ next-rung-pos) simple-ws-beg)
2024 (unless (and rung-is-marked (= simple-ws-beg rung-pos))
2025 (let ((rung-end-pos (min (1+ rung-pos) (point-max))))
2026 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
2027 ;; Remove any `c-in-sws' property from the last char of
2028 ;; the rung before we mark it with `c-is-sws', so that we
2029 ;; won't connect with the remains of a broken "ladder".
2030 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
2031 (c-put-is-sws simple-ws-beg
2032 rung-end-pos)
2033 (setq rung-is-marked t)))
2034 (c-put-in-sws (setq simple-ws-beg (point)
2035 last-put-in-sws-pos simple-ws-beg)
2036 rung-pos)
2037 (c-put-is-sws (setq rung-pos simple-ws-beg)
2038 (1+ next-rung-pos)))
2040 (c-debug-sws-msg
2041 "c-backward-sws not caching [%s..%s] - [%s..%s] (min %s)"
2042 (point) (1+ next-rung-pos)
2043 simple-ws-beg (min (1+ rung-pos) (point-max))
2044 (point-min))
2045 (setq rung-pos next-rung-pos
2046 simple-ws-beg (point))
2049 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
2050 ;; another one before the point (which might occur when editing inside a
2051 ;; comment or macro).
2052 (when (eq last-put-in-sws-pos (point))
2053 (cond ((< (point-min) last-put-in-sws-pos)
2054 (c-debug-sws-msg
2055 "c-backward-sws clearing at %s for cache separation"
2056 (1- last-put-in-sws-pos))
2057 (c-remove-in-sws (1- last-put-in-sws-pos)
2058 last-put-in-sws-pos))
2059 ((> (point-min) 1)
2060 ;; If at bob and the buffer is narrowed, we have to clear the
2061 ;; character we're standing on instead since there might be a
2062 ;; `c-in-sws' before (point-min). In this case it's necessary
2063 ;; to clear both properties.
2064 (c-debug-sws-msg
2065 "c-backward-sws clearing thoroughly at %s for cache separation"
2066 last-put-in-sws-pos)
2067 (c-remove-is-and-in-sws last-put-in-sws-pos
2068 (1+ last-put-in-sws-pos)))))
2072 ;; Other whitespace tools
2073 (defun c-partial-ws-p (beg end)
2074 ;; Is the region (beg end) WS, and is there WS (or BOB/EOB) next to the
2075 ;; region? This is a "heuristic" function. .....
2077 ;; The motivation for the second bit is to check whether removing this
2078 ;; region would coalesce two symbols.
2080 ;; FIXME!!! This function doesn't check virtual semicolons in any way. Be
2081 ;; careful about using this function for, e.g. AWK. (2007/3/7)
2082 (save-excursion
2083 (let ((end+1 (min (1+ end) (point-max))))
2084 (or (progn (goto-char (max (point-min) (1- beg)))
2085 (c-skip-ws-forward end)
2086 (eq (point) end))
2087 (progn (goto-char beg)
2088 (c-skip-ws-forward end+1)
2089 (eq (point) end+1))))))
2091 ;; A system for finding noteworthy parens before the point.
2093 (defconst c-state-cache-too-far 5000)
2094 ;; A maximum comfortable scanning distance, e.g. between
2095 ;; `c-state-cache-good-pos' and "HERE" (where we call c-parse-state). When
2096 ;; this distance is exceeded, we take "emergency measures", e.g. by clearing
2097 ;; the cache and starting again from point-min or a beginning of defun. This
2098 ;; value can be tuned for efficiency or set to a lower value for testing.
2100 (defvar c-state-cache nil)
2101 (make-variable-buffer-local 'c-state-cache)
2102 ;; The state cache used by `c-parse-state' to cut down the amount of
2103 ;; searching. It's the result from some earlier `c-parse-state' call. See
2104 ;; `c-parse-state''s doc string for details of its structure.
2106 ;; The use of the cached info is more effective if the next
2107 ;; `c-parse-state' call is on a line close by the one the cached state
2108 ;; was made at; the cache can actually slow down a little if the
2109 ;; cached state was made very far back in the buffer. The cache is
2110 ;; most effective if `c-parse-state' is used on each line while moving
2111 ;; forward.
2113 (defvar c-state-cache-good-pos 1)
2114 (make-variable-buffer-local 'c-state-cache-good-pos)
2115 ;; This is a position where `c-state-cache' is known to be correct, or
2116 ;; nil (see below). It's a position inside one of the recorded unclosed
2117 ;; parens or the top level, but not further nested inside any literal or
2118 ;; subparen that is closed before the last recorded position.
2120 ;; The exact position is chosen to try to be close to yet earlier than
2121 ;; the position where `c-state-cache' will be called next. Right now
2122 ;; the heuristic is to set it to the position after the last found
2123 ;; closing paren (of any type) before the line on which
2124 ;; `c-parse-state' was called. That is chosen primarily to work well
2125 ;; with refontification of the current line.
2127 ;; 2009-07-28: When `c-state-point-min' and the last position where
2128 ;; `c-parse-state' or for which `c-invalidate-state-cache' was called, are
2129 ;; both in the same literal, there is no such "good position", and
2130 ;; c-state-cache-good-pos is then nil. This is the ONLY circumstance in which
2131 ;; it can be nil. In this case, `c-state-point-min-literal' will be non-nil.
2133 ;; 2009-06-12: In a brace desert, c-state-cache-good-pos may also be in
2134 ;; the middle of the desert, as long as it is not within a brace pair
2135 ;; recorded in `c-state-cache' or a paren/bracket pair.
2138 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2139 ;; We maintain a simple cache of positions which aren't in a literal, so as to
2140 ;; speed up testing for non-literality.
2141 (defconst c-state-nonlit-pos-interval 3000)
2142 ;; The approximate interval between entries in `c-state-nonlit-pos-cache'.
2144 (defvar c-state-nonlit-pos-cache nil)
2145 (make-variable-buffer-local 'c-state-nonlit-pos-cache)
2146 ;; A list of buffer positions which are known not to be in a literal or a cpp
2147 ;; construct. This is ordered with higher positions at the front of the list.
2148 ;; Only those which are less than `c-state-nonlit-pos-cache-limit' are valid.
2150 (defvar c-state-nonlit-pos-cache-limit 1)
2151 (make-variable-buffer-local 'c-state-nonlit-pos-cache-limit)
2152 ;; An upper limit on valid entries in `c-state-nonlit-pos-cache'. This is
2153 ;; reduced by buffer changes, and increased by invocations of
2154 ;; `c-state-literal-at'.
2156 (defvar c-state-semi-nonlit-pos-cache nil)
2157 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache)
2158 ;; A list of buffer positions which are known not to be in a literal. This is
2159 ;; ordered with higher positions at the front of the list. Only those which
2160 ;; are less than `c-state-semi-nonlit-pos-cache-limit' are valid.
2162 (defvar c-state-semi-nonlit-pos-cache-limit 1)
2163 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache-limit)
2164 ;; An upper limit on valid entries in `c-state-semi-nonlit-pos-cache'. This is
2165 ;; reduced by buffer changes, and increased by invocations of
2166 ;; `c-state-literal-at'. FIXME!!!
2168 (defsubst c-state-pp-to-literal (from to)
2169 ;; Do a parse-partial-sexp from FROM to TO, returning either
2170 ;; (STATE TYPE (BEG . END)) if TO is in a literal; or
2171 ;; (STATE) otherwise,
2172 ;; where STATE is the parsing state at TO, TYPE is the type of the literal
2173 ;; (one of 'c, 'c++, 'string) and (BEG . END) is the boundaries of the literal.
2175 ;; Only elements 3 (in a string), 4 (in a comment), 5 (following a quote),
2176 ;; 7 (comment type) and 8 (start of comment/string) (and possibly 9) of
2177 ;; STATE are valid.
2178 (save-excursion
2179 (let ((s (parse-partial-sexp from to))
2181 (when (or (nth 3 s) (nth 4 s)) ; in a string or comment
2182 (setq ty (cond
2183 ((nth 3 s) 'string)
2184 ((eq (nth 7 s) t) 'c++)
2185 (t 'c)))
2186 (parse-partial-sexp (point) (point-max)
2187 nil ; TARGETDEPTH
2188 nil ; STOPBEFORE
2189 s ; OLDSTATE
2190 'syntax-table)) ; stop at end of literal
2191 (if ty
2192 `(,s ,ty (,(nth 8 s) . ,(point)))
2193 `(,s)))))
2195 (defun c-state-safe-place (here)
2196 ;; Return a buffer position before HERE which is "safe", i.e. outside any
2197 ;; string, comment, or macro.
2199 ;; NOTE: This function manipulates `c-state-nonlit-pos-cache'. This cache
2200 ;; MAY NOT contain any positions within macros, since macros are frequently
2201 ;; turned into comments by use of the `c-cpp-delimiter' category properties.
2202 ;; We cannot rely on this mechanism whilst determining a cache pos since
2203 ;; this function is also called from outwith `c-parse-state'.
2204 (save-restriction
2205 (widen)
2206 (save-excursion
2207 (let ((c c-state-nonlit-pos-cache)
2208 pos npos high-pos lit macro-beg macro-end)
2209 ;; Trim the cache to take account of buffer changes.
2210 (while (and c (> (car c) c-state-nonlit-pos-cache-limit))
2211 (setq c (cdr c)))
2212 (setq c-state-nonlit-pos-cache c)
2214 (while (and c (> (car c) here))
2215 (setq high-pos (car c))
2216 (setq c (cdr c)))
2217 (setq pos (or (car c) (point-min)))
2219 (unless high-pos
2220 (while
2221 ;; Add an element to `c-state-nonlit-pos-cache' each iteration.
2222 (and
2223 (<= (setq npos (+ pos c-state-nonlit-pos-interval)) here)
2225 ;; Test for being in a literal. If so, go to after it.
2226 (progn
2227 (setq lit (car (cddr (c-state-pp-to-literal pos npos))))
2228 (or (null lit)
2229 (prog1 (<= (cdr lit) here)
2230 (setq npos (cdr lit)))))
2232 ;; Test for being in a macro. If so, go to after it.
2233 (progn
2234 (goto-char npos)
2235 (setq macro-beg
2236 (and (c-beginning-of-macro) (/= (point) npos) (point)))
2237 (when macro-beg
2238 (c-syntactic-end-of-macro)
2239 (or (eobp) (forward-char))
2240 (setq macro-end (point)))
2241 (or (null macro-beg)
2242 (prog1 (<= macro-end here)
2243 (setq npos macro-end)))))
2245 (setq pos npos)
2246 (setq c-state-nonlit-pos-cache (cons pos c-state-nonlit-pos-cache)))
2247 ;; Add one extra element above HERE so as to to avoid the previous
2248 ;; expensive calculation when the next call is close to the current
2249 ;; one. This is especially useful when inside a large macro.
2250 (setq c-state-nonlit-pos-cache (cons npos c-state-nonlit-pos-cache)))
2252 (if (> pos c-state-nonlit-pos-cache-limit)
2253 (setq c-state-nonlit-pos-cache-limit pos))
2254 pos))))
2256 (defun c-state-semi-safe-place (here)
2257 ;; Return a buffer position before HERE which is "safe", i.e. outside any
2258 ;; string or comment. It may be in a macro.
2259 (save-restriction
2260 (widen)
2261 (save-excursion
2262 (let ((c c-state-semi-nonlit-pos-cache)
2263 pos npos high-pos lit macro-beg macro-end)
2264 ;; Trim the cache to take account of buffer changes.
2265 (while (and c (> (car c) c-state-semi-nonlit-pos-cache-limit))
2266 (setq c (cdr c)))
2267 (setq c-state-semi-nonlit-pos-cache c)
2269 (while (and c (> (car c) here))
2270 (setq high-pos (car c))
2271 (setq c (cdr c)))
2272 (setq pos (or (car c) (point-min)))
2274 (unless high-pos
2275 (while
2276 ;; Add an element to `c-state-semi-nonlit-pos-cache' each iteration.
2277 (and
2278 (<= (setq npos (+ pos c-state-nonlit-pos-interval)) here)
2280 ;; Test for being in a literal. If so, go to after it.
2281 (progn
2282 (setq lit (car (cddr (c-state-pp-to-literal pos npos))))
2283 (or (null lit)
2284 (prog1 (<= (cdr lit) here)
2285 (setq npos (cdr lit))))))
2287 (setq pos npos)
2288 (setq c-state-semi-nonlit-pos-cache
2289 (cons pos c-state-semi-nonlit-pos-cache))))
2291 (if (> pos c-state-semi-nonlit-pos-cache-limit)
2292 (setq c-state-semi-nonlit-pos-cache-limit pos))
2293 pos))))
2295 (defun c-state-literal-at (here)
2296 ;; If position HERE is inside a literal, return (START . END), the
2297 ;; boundaries of the literal (which may be outside the accessible bit of the
2298 ;; buffer). Otherwise, return nil.
2300 ;; This function is almost the same as `c-literal-limits'. Previously, it
2301 ;; differed in that it was a lower level function, and that it rigorously
2302 ;; followed the syntax from BOB. `c-literal-limits' is now (2011-12)
2303 ;; virtually identical to this function.
2304 (save-restriction
2305 (widen)
2306 (save-excursion
2307 (let ((pos (c-state-safe-place here)))
2308 (car (cddr (c-state-pp-to-literal pos here)))))))
2310 (defsubst c-state-lit-beg (pos)
2311 ;; Return the start of the literal containing POS, or POS itself.
2312 (or (car (c-state-literal-at pos))
2313 pos))
2315 (defsubst c-state-cache-non-literal-place (pos state)
2316 ;; Return a position outside of a string/comment/macro at or before POS.
2317 ;; STATE is the parse-partial-sexp state at POS.
2318 (let ((res (if (or (nth 3 state) ; in a string?
2319 (nth 4 state)) ; in a comment?
2320 (nth 8 state)
2321 pos)))
2322 (save-excursion
2323 (goto-char res)
2324 (if (c-beginning-of-macro)
2325 (point)
2326 res))))
2328 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2329 ;; Stuff to do with point-min, and coping with any literal there.
2330 (defvar c-state-point-min 1)
2331 (make-variable-buffer-local 'c-state-point-min)
2332 ;; This is (point-min) when `c-state-cache' was last calculated. A change of
2333 ;; narrowing is likely to affect the parens that are visible before the point.
2335 (defvar c-state-point-min-lit-type nil)
2336 (make-variable-buffer-local 'c-state-point-min-lit-type)
2337 (defvar c-state-point-min-lit-start nil)
2338 (make-variable-buffer-local 'c-state-point-min-lit-start)
2339 ;; These two variables define the literal, if any, containing point-min.
2340 ;; Their values are, respectively, 'string, c, or c++, and the start of the
2341 ;; literal. If there's no literal there, they're both nil.
2343 (defvar c-state-min-scan-pos 1)
2344 (make-variable-buffer-local 'c-state-min-scan-pos)
2345 ;; This is the earliest buffer-pos from which scanning can be done. It is
2346 ;; either the end of the literal containing point-min, or point-min itself.
2347 ;; It becomes nil if the buffer is changed earlier than this point.
2348 (defun c-state-get-min-scan-pos ()
2349 ;; Return the lowest valid scanning pos. This will be the end of the
2350 ;; literal enclosing point-min, or point-min itself.
2351 (or c-state-min-scan-pos
2352 (save-restriction
2353 (save-excursion
2354 (widen)
2355 (goto-char c-state-point-min-lit-start)
2356 (if (eq c-state-point-min-lit-type 'string)
2357 (forward-sexp)
2358 (forward-comment 1))
2359 (setq c-state-min-scan-pos (point))))))
2361 (defun c-state-mark-point-min-literal ()
2362 ;; Determine the properties of any literal containing POINT-MIN, setting the
2363 ;; variables `c-state-point-min-lit-type', `c-state-point-min-lit-start',
2364 ;; and `c-state-min-scan-pos' accordingly. The return value is meaningless.
2365 (let ((p-min (point-min))
2366 lit)
2367 (save-restriction
2368 (widen)
2369 (setq lit (c-state-literal-at p-min))
2370 (if lit
2371 (setq c-state-point-min-lit-type
2372 (save-excursion
2373 (goto-char (car lit))
2374 (cond
2375 ((looking-at c-block-comment-start-regexp) 'c)
2376 ((looking-at c-line-comment-starter) 'c++)
2377 (t 'string)))
2378 c-state-point-min-lit-start (car lit)
2379 c-state-min-scan-pos (cdr lit))
2380 (setq c-state-point-min-lit-type nil
2381 c-state-point-min-lit-start nil
2382 c-state-min-scan-pos p-min)))))
2385 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2386 ;; A variable which signals a brace dessert - helpful for reducing the number
2387 ;; of fruitless backward scans.
2388 (defvar c-state-brace-pair-desert nil)
2389 (make-variable-buffer-local 'c-state-brace-pair-desert)
2390 ;; Used only in `c-append-lower-brace-pair-to-state-cache'. It is set when
2391 ;; that defun has searched backwards for a brace pair and not found one. Its
2392 ;; value is either nil or a cons (PA . FROM), where PA is the position of the
2393 ;; enclosing opening paren/brace/bracket which bounds the backwards search (or
2394 ;; nil when at top level) and FROM is where the backward search started. It
2395 ;; is reset to nil in `c-invalidate-state-cache'.
2398 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2399 ;; Lowish level functions/macros which work directly on `c-state-cache', or a
2400 ;; list of like structure.
2401 (defmacro c-state-cache-top-lparen (&optional cache)
2402 ;; Return the address of the top left brace/bracket/paren recorded in CACHE
2403 ;; (default `c-state-cache') (or nil).
2404 (let ((cash (or cache 'c-state-cache)))
2405 `(if (consp (car ,cash))
2406 (caar ,cash)
2407 (car ,cash))))
2409 (defmacro c-state-cache-top-paren (&optional cache)
2410 ;; Return the address of the latest brace/bracket/paren (whether left or
2411 ;; right) recorded in CACHE (default `c-state-cache') or nil.
2412 (let ((cash (or cache 'c-state-cache)))
2413 `(if (consp (car ,cash))
2414 (cdar ,cash)
2415 (car ,cash))))
2417 (defmacro c-state-cache-after-top-paren (&optional cache)
2418 ;; Return the position just after the latest brace/bracket/paren (whether
2419 ;; left or right) recorded in CACHE (default `c-state-cache') or nil.
2420 (let ((cash (or cache 'c-state-cache)))
2421 `(if (consp (car ,cash))
2422 (cdar ,cash)
2423 (and (car ,cash)
2424 (1+ (car ,cash))))))
2426 (defun c-get-cache-scan-pos (here)
2427 ;; From the state-cache, determine the buffer position from which we might
2428 ;; scan forward to HERE to update this cache. This position will be just
2429 ;; after a paren/brace/bracket recorded in the cache, if possible, otherwise
2430 ;; return the earliest position in the accessible region which isn't within
2431 ;; a literal. If the visible portion of the buffer is entirely within a
2432 ;; literal, return NIL.
2433 (let ((c c-state-cache) elt)
2434 ;(while (>= (or (c-state-cache-top-lparen c) 1) here)
2435 (while (and c
2436 (>= (c-state-cache-top-lparen c) here))
2437 (setq c (cdr c)))
2439 (setq elt (car c))
2440 (cond
2441 ((consp elt)
2442 (if (> (cdr elt) here)
2443 (1+ (car elt))
2444 (cdr elt)))
2445 (elt (1+ elt))
2446 ((<= (c-state-get-min-scan-pos) here)
2447 (c-state-get-min-scan-pos))
2448 (t nil))))
2450 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2451 ;; Variables which keep track of preprocessor constructs.
2452 (defvar c-state-old-cpp-beg nil)
2453 (make-variable-buffer-local 'c-state-old-cpp-beg)
2454 (defvar c-state-old-cpp-end nil)
2455 (make-variable-buffer-local 'c-state-old-cpp-end)
2456 ;; These are the limits of the macro containing point at the previous call of
2457 ;; `c-parse-state', or nil.
2459 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2460 ;; Defuns which analyze the buffer, yet don't change `c-state-cache'.
2461 (defun c-get-fallback-scan-pos (here)
2462 ;; Return a start position for building `c-state-cache' from
2463 ;; scratch. This will be at the top level, 2 defuns back.
2464 (save-excursion
2465 ;; Go back 2 bods, but ignore any bogus positions returned by
2466 ;; beginning-of-defun (i.e. open paren in column zero).
2467 (goto-char here)
2468 (let ((cnt 2))
2469 (while (not (or (bobp) (zerop cnt)))
2470 (c-beginning-of-defun-1) ; Pure elisp BOD.
2471 (if (eq (char-after) ?\{)
2472 (setq cnt (1- cnt)))))
2473 (point)))
2475 (defun c-state-balance-parens-backwards (here- here+ top)
2476 ;; Return the position of the opening paren/brace/bracket before HERE- which
2477 ;; matches the outermost close p/b/b between HERE+ and TOP. Except when
2478 ;; there's a macro, HERE- and HERE+ are the same. Like this:
2480 ;; ............................................
2481 ;; | |
2482 ;; ( [ ( .........#macro.. ) ( ) ] )
2483 ;; ^ ^ ^ ^
2484 ;; | | | |
2485 ;; return HERE- HERE+ TOP
2487 ;; If there aren't enough opening paren/brace/brackets, return the position
2488 ;; of the outermost one found, or HERE- if there are none. If there are no
2489 ;; closing p/b/bs between HERE+ and TOP, return HERE-. HERE-/+ and TOP
2490 ;; must not be inside literals. Only the accessible portion of the buffer
2491 ;; will be scanned.
2493 ;; PART 1: scan from `here+' up to `top', accumulating ")"s which enclose
2494 ;; `here'. Go round the next loop each time we pass over such a ")". These
2495 ;; probably match "("s before `here-'.
2496 (let (pos pa ren+1 lonely-rens)
2497 (save-excursion
2498 (save-restriction
2499 (narrow-to-region (point-min) top) ; This can move point, sometimes.
2500 (setq pos here+)
2501 (c-safe
2502 (while
2503 (setq ren+1 (scan-lists pos 1 1)) ; might signal
2504 (setq lonely-rens (cons ren+1 lonely-rens)
2505 pos ren+1)))))
2507 ;; PART 2: Scan back before `here-' searching for the "("s
2508 ;; matching/mismatching the ")"s found above. We only need to direct the
2509 ;; caller to scan when we've encountered unmatched right parens.
2510 (setq pos here-)
2511 (when lonely-rens
2512 (c-safe
2513 (while
2514 (and lonely-rens ; actual values aren't used.
2515 (setq pa (scan-lists pos -1 1)))
2516 (setq pos pa)
2517 (setq lonely-rens (cdr lonely-rens)))))
2518 pos))
2520 (defun c-parse-state-get-strategy (here good-pos)
2521 ;; Determine the scanning strategy for adjusting `c-parse-state', attempting
2522 ;; to minimize the amount of scanning. HERE is the pertinent position in
2523 ;; the buffer, GOOD-POS is a position where `c-state-cache' (possibly with
2524 ;; its head trimmed) is known to be good, or nil if there is no such
2525 ;; position.
2527 ;; The return value is a list, one of the following:
2529 ;; o - ('forward CACHE-POS START-POINT) - scan forward from START-POINT,
2530 ;; which is not less than CACHE-POS.
2531 ;; o - ('backward CACHE-POS nil) - scan backwards (from HERE).
2532 ;; o - ('BOD nil START-POINT) - scan forwards from START-POINT, which is at the
2533 ;; top level.
2534 ;; o - ('IN-LIT nil nil) - point is inside the literal containing point-min.
2535 ;; , where CACHE-POS is the highest position recorded in `c-state-cache' at
2536 ;; or below HERE.
2537 (let ((cache-pos (c-get-cache-scan-pos here)) ; highest position below HERE in cache (or 1)
2538 BOD-pos ; position of 2nd BOD before HERE.
2539 strategy ; 'forward, 'backward, 'BOD, or 'IN-LIT.
2540 start-point
2541 how-far) ; putative scanning distance.
2542 (setq good-pos (or good-pos (c-state-get-min-scan-pos)))
2543 (cond
2544 ((< here (c-state-get-min-scan-pos))
2545 (setq strategy 'IN-LIT
2546 start-point nil
2547 cache-pos nil
2548 how-far 0))
2549 ((<= good-pos here)
2550 (setq strategy 'forward
2551 start-point (max good-pos cache-pos)
2552 how-far (- here start-point)))
2553 ((< (- good-pos here) (- here cache-pos)) ; FIXME!!! ; apply some sort of weighting.
2554 (setq strategy 'backward
2555 how-far (- good-pos here)))
2557 (setq strategy 'forward
2558 how-far (- here cache-pos)
2559 start-point cache-pos)))
2561 ;; Might we be better off starting from the top level, two defuns back,
2562 ;; instead?
2563 (when (> how-far c-state-cache-too-far)
2564 (setq BOD-pos (c-get-fallback-scan-pos here)) ; somewhat EXPENSIVE!!!
2565 (if (< (- here BOD-pos) how-far)
2566 (setq strategy 'BOD
2567 start-point BOD-pos)))
2569 (list
2570 strategy
2571 (and (memq strategy '(forward backward)) cache-pos)
2572 (and (memq strategy '(forward BOD)) start-point))))
2575 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2576 ;; Routines which change `c-state-cache' and associated values.
2577 (defun c-renarrow-state-cache ()
2578 ;; The region (more precisely, point-min) has changed since we
2579 ;; calculated `c-state-cache'. Amend `c-state-cache' accordingly.
2580 (if (< (point-min) c-state-point-min)
2581 ;; If point-min has MOVED BACKWARDS then we drop the state completely.
2582 ;; It would be possible to do a better job here and recalculate the top
2583 ;; only.
2584 (progn
2585 (c-state-mark-point-min-literal)
2586 (setq c-state-cache nil
2587 c-state-cache-good-pos c-state-min-scan-pos
2588 c-state-brace-pair-desert nil))
2590 ;; point-min has MOVED FORWARD.
2592 ;; Is the new point-min inside a (different) literal?
2593 (unless (and c-state-point-min-lit-start ; at prev. point-min
2594 (< (point-min) (c-state-get-min-scan-pos)))
2595 (c-state-mark-point-min-literal))
2597 ;; Cut off a bit of the tail from `c-state-cache'.
2598 (let ((ptr (cons nil c-state-cache))
2600 (while (and (setq pa (c-state-cache-top-lparen (cdr ptr)))
2601 (>= pa (point-min)))
2602 (setq ptr (cdr ptr)))
2604 (when (consp ptr)
2605 (if (eq (cdr ptr) c-state-cache)
2606 (setq c-state-cache nil
2607 c-state-cache-good-pos c-state-min-scan-pos)
2608 (setcdr ptr nil)
2609 (setq c-state-cache-good-pos (1+ (c-state-cache-top-lparen))))
2612 (setq c-state-point-min (point-min)))
2614 (defun c-append-lower-brace-pair-to-state-cache (from &optional upper-lim)
2615 ;; If there is a brace pair preceding FROM in the buffer (not necessarily
2616 ;; immediately preceding), push a cons onto `c-state-cache' to represent it.
2617 ;; FROM must not be inside a literal. If UPPER-LIM is non-nil, we append
2618 ;; the highest brace pair whose "}" is below UPPER-LIM.
2620 ;; Return non-nil when this has been done.
2622 ;; This routine should be fast. Since it can get called a LOT, we maintain
2623 ;; `c-state-brace-pair-desert', a small cache of "failures", such that we
2624 ;; reduce the time wasted in repeated fruitless searches in brace deserts.
2625 (save-excursion
2626 (save-restriction
2627 (let ((bra from) ce ; Positions of "{" and "}".
2628 new-cons
2629 (cache-pos (c-state-cache-top-lparen)) ; might be nil.
2630 (macro-start-or-from
2631 (progn (goto-char from)
2632 (c-beginning-of-macro)
2633 (point))))
2634 (or upper-lim (setq upper-lim from))
2636 ;; If we're essentially repeating a fruitless search, just give up.
2637 (unless (and c-state-brace-pair-desert
2638 (eq cache-pos (car c-state-brace-pair-desert))
2639 (<= from (cdr c-state-brace-pair-desert)))
2640 ;; Only search what we absolutely need to:
2641 (if (and c-state-brace-pair-desert
2642 (eq cache-pos (car c-state-brace-pair-desert)))
2643 (narrow-to-region (cdr c-state-brace-pair-desert) (point-max)))
2645 ;; In the next pair of nested loops, the inner one moves back past a
2646 ;; pair of (mis-)matching parens or brackets; the outer one moves
2647 ;; back over a sequence of unmatched close brace/paren/bracket each
2648 ;; time round.
2649 (while
2650 (progn
2651 (c-safe
2652 (while
2653 (and (setq ce (scan-lists bra -1 -1)) ; back past )/]/}; might signal
2654 (setq bra (scan-lists ce -1 1)) ; back past (/[/{; might signal
2655 (or (> ce upper-lim)
2656 (not (eq (char-after bra) ?\{))
2657 (and (goto-char bra)
2658 (c-beginning-of-macro)
2659 (< (point) macro-start-or-from))))))
2660 (and ce (< ce bra)))
2661 (setq bra ce)) ; If we just backed over an unbalanced closing
2662 ; brace, ignore it.
2664 (if (and ce (< bra ce) (eq (char-after bra) ?\{))
2665 ;; We've found the desired brace-pair.
2666 (progn
2667 (setq new-cons (cons bra (1+ ce)))
2668 (cond
2669 ((consp (car c-state-cache))
2670 (setcar c-state-cache new-cons))
2671 ((and (numberp (car c-state-cache)) ; probably never happens
2672 (< ce (car c-state-cache)))
2673 (setcdr c-state-cache
2674 (cons new-cons (cdr c-state-cache))))
2675 (t (setq c-state-cache (cons new-cons c-state-cache)))))
2677 ;; We haven't found a brace pair. Record this.
2678 (setq c-state-brace-pair-desert (cons cache-pos from))))))))
2680 (defsubst c-state-push-any-brace-pair (bra+1 macro-start-or-here)
2681 ;; If BRA+1 is nil, do nothing. Otherwise, BRA+1 is the buffer position
2682 ;; following a {, and that brace has a (mis-)matching } (or ]), and we
2683 ;; "push" "a" brace pair onto `c-state-cache'.
2685 ;; Here "push" means overwrite the top element if it's itself a brace-pair,
2686 ;; otherwise push it normally.
2688 ;; The brace pair we push is normally the one surrounding BRA+1, but if the
2689 ;; latter is inside a macro, not being a macro containing
2690 ;; MACRO-START-OR-HERE, we scan backwards through the buffer for a non-macro
2691 ;; base pair. This latter case is assumed to be rare.
2693 ;; Note: POINT is not preserved in this routine.
2694 (if bra+1
2695 (if (or (> bra+1 macro-start-or-here)
2696 (progn (goto-char bra+1)
2697 (not (c-beginning-of-macro))))
2698 (setq c-state-cache
2699 (cons (cons (1- bra+1)
2700 (scan-lists bra+1 1 1))
2701 (if (consp (car c-state-cache))
2702 (cdr c-state-cache)
2703 c-state-cache)))
2704 ;; N.B. This defsubst codes one method for the simple, normal case,
2705 ;; and a more sophisticated, slower way for the general case. Don't
2706 ;; eliminate this defsubst - it's a speed optimization.
2707 (c-append-lower-brace-pair-to-state-cache (1- bra+1)))))
2709 (defun c-append-to-state-cache (from)
2710 ;; Scan the buffer from FROM to (point-max), adding elements into
2711 ;; `c-state-cache' for braces etc. Return a candidate for
2712 ;; `c-state-cache-good-pos'.
2714 ;; FROM must be after the latest brace/paren/bracket in `c-state-cache', if
2715 ;; any. Typically, it is immediately after it. It must not be inside a
2716 ;; literal.
2717 (let ((here-bol (c-point 'bol (point-max)))
2718 (macro-start-or-here
2719 (save-excursion (goto-char (point-max))
2720 (if (c-beginning-of-macro)
2721 (point)
2722 (point-max))))
2723 pa+1 ; pos just after an opening PAren (or brace).
2724 (ren+1 from) ; usually a pos just after an closing paREN etc.
2725 ; Is actually the pos. to scan for a (/{/[ from,
2726 ; which sometimes is after a silly )/}/].
2727 paren+1 ; Pos after some opening or closing paren.
2728 paren+1s ; A list of `paren+1's; used to determine a
2729 ; good-pos.
2730 bra+1 ce+1 ; just after L/R bra-ces.
2731 bra+1s ; list of OLD values of bra+1.
2732 mstart) ; start of a macro.
2734 (save-excursion
2735 ;; Each time round the following loop, we enter a successively deeper
2736 ;; level of brace/paren nesting. (Except sometimes we "continue at
2737 ;; the existing level".) `pa+1' is a pos inside an opening
2738 ;; brace/paren/bracket, usually just after it.
2739 (while
2740 (progn
2741 ;; Each time round the next loop moves forward over an opening then
2742 ;; a closing brace/bracket/paren. This loop is white hot, so it
2743 ;; plays ugly tricks to go fast. DON'T PUT ANYTHING INTO THIS
2744 ;; LOOP WHICH ISN'T ABSOLUTELY NECESSARY!!! It terminates when a
2745 ;; call of `scan-lists' signals an error, which happens when there
2746 ;; are no more b/b/p's to scan.
2747 (c-safe
2748 (while t
2749 (setq pa+1 (scan-lists ren+1 1 -1) ; Into (/{/[; might signal
2750 paren+1s (cons pa+1 paren+1s))
2751 (setq ren+1 (scan-lists pa+1 1 1)) ; Out of )/}/]; might signal
2752 (if (and (eq (char-before pa+1) ?{)) ; Check for a macro later.
2753 (setq bra+1 pa+1))
2754 (setcar paren+1s ren+1)))
2756 (if (and pa+1 (> pa+1 ren+1))
2757 ;; We've just entered a deeper nesting level.
2758 (progn
2759 ;; Insert the brace pair (if present) and the single open
2760 ;; paren/brace/bracket into `c-state-cache' It cannot be
2761 ;; inside a macro, except one around point, because of what
2762 ;; `c-neutralize-syntax-in-CPP' has done.
2763 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2764 ;; Insert the opening brace/bracket/paren position.
2765 (setq c-state-cache (cons (1- pa+1) c-state-cache))
2766 ;; Clear admin stuff for the next more nested part of the scan.
2767 (setq ren+1 pa+1 pa+1 nil bra+1 nil bra+1s nil)
2768 t) ; Carry on the loop
2770 ;; All open p/b/b's at this nesting level, if any, have probably
2771 ;; been closed by matching/mismatching ones. We're probably
2772 ;; finished - we just need to check for having found an
2773 ;; unmatched )/}/], which we ignore. Such a )/}/] can't be in a
2774 ;; macro, due the action of `c-neutralize-syntax-in-CPP'.
2775 (c-safe (setq ren+1 (scan-lists ren+1 1 1)))))) ; acts as loop control.
2777 ;; Record the final, innermost, brace-pair if there is one.
2778 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2780 ;; Determine a good pos
2781 (while (and (setq paren+1 (car paren+1s))
2782 (> (if (> paren+1 macro-start-or-here)
2783 paren+1
2784 (goto-char paren+1)
2785 (setq mstart (and (c-beginning-of-macro)
2786 (point)))
2787 (or mstart paren+1))
2788 here-bol))
2789 (setq paren+1s (cdr paren+1s)))
2790 (cond
2791 ((and paren+1 mstart)
2792 (min paren+1 mstart))
2793 (paren+1)
2794 (t from)))))
2796 (defun c-remove-stale-state-cache (good-pos pps-point)
2797 ;; Remove stale entries from the `c-cache-state', i.e. those which will
2798 ;; not be in it when it is amended for position (point-max).
2799 ;; Additionally, the "outermost" open-brace entry before (point-max)
2800 ;; will be converted to a cons if the matching close-brace is scanned.
2802 ;; GOOD-POS is a "maximal" "safe position" - there must be no open
2803 ;; parens/braces/brackets between GOOD-POS and (point-max).
2805 ;; As a second thing, calculate the result of parse-partial-sexp at
2806 ;; PPS-POINT, w.r.t. GOOD-POS. The motivation here is that
2807 ;; `c-state-cache-good-pos' may become PPS-POINT, but the caller may need to
2808 ;; adjust it to get outside a string/comment. (Sorry about this! The code
2809 ;; needs to be FAST).
2811 ;; Return a list (GOOD-POS SCAN-BACK-POS PPS-STATE), where
2812 ;; o - GOOD-POS is a position where the new value `c-state-cache' is known
2813 ;; to be good (we aim for this to be as high as possible);
2814 ;; o - SCAN-BACK-POS, if not nil, indicates there may be a brace pair
2815 ;; preceding POS which needs to be recorded in `c-state-cache'. It is a
2816 ;; position to scan backwards from.
2817 ;; o - PPS-STATE is the parse-partial-sexp state at PPS-POINT.
2818 (save-restriction
2819 (narrow-to-region 1 (point-max))
2820 (save-excursion
2821 (let* ((in-macro-start ; start of macro containing (point-max) or nil.
2822 (save-excursion
2823 (goto-char (point-max))
2824 (and (c-beginning-of-macro)
2825 (point))))
2826 (good-pos-actual-macro-start ; Start of macro containing good-pos
2827 ; or nil
2828 (and (< good-pos (point-max))
2829 (save-excursion
2830 (goto-char good-pos)
2831 (and (c-beginning-of-macro)
2832 (point)))))
2833 (good-pos-actual-macro-end ; End of this macro, (maybe
2834 ; (point-max)), or nil.
2835 (and good-pos-actual-macro-start
2836 (save-excursion
2837 (goto-char good-pos-actual-macro-start)
2838 (c-end-of-macro)
2839 (point))))
2840 pps-state ; Will be 9 or 10 elements long.
2842 upper-lim ; ,beyond which `c-state-cache' entries are removed
2843 scan-back-pos
2844 pair-beg pps-point-state target-depth)
2846 ;; Remove entries beyond (point-max). Also remove any entries inside
2847 ;; a macro, unless (point-max) is in the same macro.
2848 (setq upper-lim
2849 (if (or (null c-state-old-cpp-beg)
2850 (and (> (point-max) c-state-old-cpp-beg)
2851 (< (point-max) c-state-old-cpp-end)))
2852 (point-max)
2853 (min (point-max) c-state-old-cpp-beg)))
2854 (while (and c-state-cache (>= (c-state-cache-top-lparen) upper-lim))
2855 (setq c-state-cache (cdr c-state-cache)))
2856 ;; If `upper-lim' is inside the last recorded brace pair, remove its
2857 ;; RBrace and indicate we'll need to search backwards for a previous
2858 ;; brace pair.
2859 (when (and c-state-cache
2860 (consp (car c-state-cache))
2861 (> (cdar c-state-cache) upper-lim))
2862 (setcar c-state-cache (caar c-state-cache))
2863 (setq scan-back-pos (car c-state-cache)))
2865 ;; The next loop jumps forward out of a nested level of parens each
2866 ;; time round; the corresponding elements in `c-state-cache' are
2867 ;; removed. `pos' is just after the brace-pair or the open paren at
2868 ;; (car c-state-cache). There can be no open parens/braces/brackets
2869 ;; between `good-pos'/`good-pos-actual-macro-start' and (point-max),
2870 ;; due to the interface spec to this function.
2871 (setq pos (if (and good-pos-actual-macro-end
2872 (not (eq good-pos-actual-macro-start
2873 in-macro-start)))
2874 (1+ good-pos-actual-macro-end) ; get outside the macro as
2875 ; marked by a `category' text property.
2876 good-pos))
2877 (goto-char pos)
2878 (while (and c-state-cache
2879 (< (point) (point-max)))
2880 (cond
2881 ((null pps-state) ; first time through
2882 (setq target-depth -1))
2883 ((eq (car pps-state) target-depth) ; found closing ),},]
2884 (setq target-depth (1- (car pps-state))))
2885 ;; Do nothing when we've merely reached pps-point.
2888 ;; Scan!
2889 (setq pps-state
2890 (parse-partial-sexp
2891 (point) (if (< (point) pps-point) pps-point (point-max))
2892 target-depth
2893 nil pps-state))
2895 (if (= (point) pps-point)
2896 (setq pps-point-state pps-state))
2898 (when (eq (car pps-state) target-depth)
2899 (setq pos (point)) ; POS is now just after an R-paren/brace.
2900 (cond
2901 ((and (consp (car c-state-cache))
2902 (eq (point) (cdar c-state-cache)))
2903 ;; We've just moved out of the paren pair containing the brace-pair
2904 ;; at (car c-state-cache). `pair-beg' is where the open paren is,
2905 ;; and is potentially where the open brace of a cons in
2906 ;; c-state-cache will be.
2907 (setq pair-beg (car-safe (cdr c-state-cache))
2908 c-state-cache (cdr-safe (cdr c-state-cache)))) ; remove {}pair + containing Lparen.
2909 ((numberp (car c-state-cache))
2910 (setq pair-beg (car c-state-cache)
2911 c-state-cache (cdr c-state-cache))) ; remove this
2912 ; containing Lparen
2913 ((numberp (cadr c-state-cache))
2914 (setq pair-beg (cadr c-state-cache)
2915 c-state-cache (cddr c-state-cache))) ; Remove a paren pair
2916 ; together with enclosed brace pair.
2917 ;; (t nil) ; Ignore an unmated Rparen.
2920 (if (< (point) pps-point)
2921 (setq pps-state (parse-partial-sexp (point) pps-point
2922 nil nil ; TARGETDEPTH, STOPBEFORE
2923 pps-state)))
2925 ;; If the last paren pair we moved out of was actually a brace pair,
2926 ;; insert it into `c-state-cache'.
2927 (when (and pair-beg (eq (char-after pair-beg) ?{))
2928 (if (consp (car-safe c-state-cache))
2929 (setq c-state-cache (cdr c-state-cache)))
2930 (setq c-state-cache (cons (cons pair-beg pos)
2931 c-state-cache)))
2933 (list pos scan-back-pos pps-state)))))
2935 (defun c-remove-stale-state-cache-backwards (here cache-pos)
2936 ;; Strip stale elements of `c-state-cache' by moving backwards through the
2937 ;; buffer, and inform the caller of the scenario detected.
2939 ;; HERE is the position we're setting `c-state-cache' for.
2940 ;; CACHE-POS is just after the latest recorded position in `c-state-cache'
2941 ;; before HERE, or a position at or near point-min which isn't in a
2942 ;; literal.
2944 ;; This function must only be called only when (> `c-state-cache-good-pos'
2945 ;; HERE). Usually the gap between CACHE-POS and HERE is large. It is thus
2946 ;; optimized to eliminate (or minimize) scanning between these two
2947 ;; positions.
2949 ;; Return a three element list (GOOD-POS SCAN-BACK-POS FWD-FLAG), where:
2950 ;; o - GOOD-POS is a "good position", where `c-state-cache' is valid, or
2951 ;; could become so after missing elements are inserted into
2952 ;; `c-state-cache'. This is JUST AFTER an opening or closing
2953 ;; brace/paren/bracket which is already in `c-state-cache' or just before
2954 ;; one otherwise. exceptionally (when there's no such b/p/b handy) the BOL
2955 ;; before `here''s line, or the start of the literal containing it.
2956 ;; o - SCAN-BACK-POS, if non-nil, indicates there may be a brace pair
2957 ;; preceding POS which isn't recorded in `c-state-cache'. It is a position
2958 ;; to scan backwards from.
2959 ;; o - FWD-FLAG, if non-nil, indicates there may be parens/braces between
2960 ;; POS and HERE which aren't recorded in `c-state-cache'.
2962 ;; The comments in this defun use "paren" to mean parenthesis or square
2963 ;; bracket (as contrasted with a brace), and "(" and ")" likewise.
2965 ;; . {..} (..) (..) ( .. { } ) (...) ( .... . ..)
2966 ;; | | | | | |
2967 ;; CP E here D C good
2968 (let ((pos c-state-cache-good-pos)
2969 pa ren ; positions of "(" and ")"
2970 dropped-cons ; whether the last element dropped from `c-state-cache'
2971 ; was a cons (representing a brace-pair)
2972 good-pos ; see above.
2973 lit ; (START . END) of a literal containing some point.
2974 here-lit-start here-lit-end ; bounds of literal containing `here'
2975 ; or `here' itself.
2976 here- here+ ; start/end of macro around HERE, or HERE
2977 (here-bol (c-point 'bol here))
2978 (too-far-back (max (- here c-state-cache-too-far) (point-min))))
2980 ;; Remove completely irrelevant entries from `c-state-cache'.
2981 (while (and c-state-cache
2982 (>= (setq pa (c-state-cache-top-lparen)) here))
2983 (setq dropped-cons (consp (car c-state-cache)))
2984 (setq c-state-cache (cdr c-state-cache))
2985 (setq pos pa))
2986 ;; At this stage, (> pos here);
2987 ;; (< (c-state-cache-top-lparen) here) (or is nil).
2989 (cond
2990 ((and (consp (car c-state-cache))
2991 (> (cdar c-state-cache) here))
2992 ;; CASE 1: The top of the cache is a brace pair which now encloses
2993 ;; `here'. As good-pos, return the address. of the "{". Since we've no
2994 ;; knowledge of what's inside these braces, we have no alternative but
2995 ;; to direct the caller to scan the buffer from the opening brace.
2996 (setq pos (caar c-state-cache))
2997 (setcar c-state-cache pos)
2998 (list (1+ pos) pos t)) ; return value. We've just converted a brace pair
2999 ; entry into a { entry, so the caller needs to
3000 ; search for a brace pair before the {.
3002 ;; `here' might be inside a literal. Check for this.
3003 ((progn
3004 (setq lit (c-state-literal-at here)
3005 here-lit-start (or (car lit) here)
3006 here-lit-end (or (cdr lit) here))
3007 ;; Has `here' just "newly entered" a macro?
3008 (save-excursion
3009 (goto-char here-lit-start)
3010 (if (and (c-beginning-of-macro)
3011 (or (null c-state-old-cpp-beg)
3012 (not (= (point) c-state-old-cpp-beg))))
3013 (progn
3014 (setq here- (point))
3015 (c-end-of-macro)
3016 (setq here+ (point)))
3017 (setq here- here-lit-start
3018 here+ here-lit-end)))
3020 ;; `here' might be nested inside any depth of parens (or brackets but
3021 ;; not braces). Scan backwards to find the outermost such opening
3022 ;; paren, if there is one. This will be the scan position to return.
3023 (save-restriction
3024 (narrow-to-region cache-pos (point-max))
3025 (setq pos (c-state-balance-parens-backwards here- here+ pos)))
3026 nil)) ; for the cond
3028 ((< pos here-lit-start)
3029 ;; CASE 2: Address of outermost ( or [ which now encloses `here', but
3030 ;; didn't enclose the (previous) `c-state-cache-good-pos'. If there is
3031 ;; a brace pair preceding this, it will already be in `c-state-cache',
3032 ;; unless there was a brace pair after it, i.e. there'll only be one to
3033 ;; scan for if we've just deleted one.
3034 (list pos (and dropped-cons pos) t)) ; Return value.
3036 ;; `here' isn't enclosed in a (previously unrecorded) bracket/paren.
3037 ;; Further forward scanning isn't needed, but we still need to find a
3038 ;; GOOD-POS. Step out of all enclosing "("s on HERE's line.
3039 ((progn
3040 (save-restriction
3041 (narrow-to-region here-bol (point-max))
3042 (setq pos here-lit-start)
3043 (c-safe (while (setq pa (scan-lists pos -1 1))
3044 (setq pos pa)))) ; might signal
3045 nil)) ; for the cond
3047 ((setq ren (c-safe-scan-lists pos -1 -1 too-far-back))
3048 ;; CASE 3: After a }/)/] before `here''s BOL.
3049 (list (1+ ren) (and dropped-cons pos) nil)) ; Return value
3052 ;; CASE 4; Best of a bad job: BOL before `here-bol', or beginning of
3053 ;; literal containing it.
3054 (setq good-pos (c-state-lit-beg (c-point 'bopl here-bol)))
3055 (list good-pos (and dropped-cons good-pos) nil)))))
3058 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3059 ;; Externally visible routines.
3061 (defun c-state-cache-init ()
3062 (setq c-state-cache nil
3063 c-state-cache-good-pos 1
3064 c-state-nonlit-pos-cache nil
3065 c-state-nonlit-pos-cache-limit 1
3066 c-state-brace-pair-desert nil
3067 c-state-point-min 1
3068 c-state-point-min-lit-type nil
3069 c-state-point-min-lit-start nil
3070 c-state-min-scan-pos 1
3071 c-state-old-cpp-beg nil
3072 c-state-old-cpp-end nil)
3073 (c-state-mark-point-min-literal))
3075 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3076 ;; Debugging routines to dump `c-state-cache' in a "replayable" form.
3077 ;; (defmacro c-sc-de (elt) ; "c-state-cache-dump-element"
3078 ;; `(format ,(concat "(setq " (symbol-name elt) " %s) ") ,elt))
3079 ;; (defmacro c-sc-qde (elt) ; "c-state-cache-quote-dump-element"
3080 ;; `(format ,(concat "(setq " (symbol-name elt) " '%s) ") ,elt))
3081 ;; (defun c-state-dump ()
3082 ;; ;; For debugging.
3083 ;; ;(message
3084 ;; (concat
3085 ;; (c-sc-qde c-state-cache)
3086 ;; (c-sc-de c-state-cache-good-pos)
3087 ;; (c-sc-qde c-state-nonlit-pos-cache)
3088 ;; (c-sc-de c-state-nonlit-pos-cache-limit)
3089 ;; (c-sc-qde c-state-brace-pair-desert)
3090 ;; (c-sc-de c-state-point-min)
3091 ;; (c-sc-de c-state-point-min-lit-type)
3092 ;; (c-sc-de c-state-point-min-lit-start)
3093 ;; (c-sc-de c-state-min-scan-pos)
3094 ;; (c-sc-de c-state-old-cpp-beg)
3095 ;; (c-sc-de c-state-old-cpp-end)))
3096 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3098 (defun c-invalidate-state-cache-1 (here)
3099 ;; Invalidate all info on `c-state-cache' that applies to the buffer at HERE
3100 ;; or higher and set `c-state-cache-good-pos' accordingly. The cache is
3101 ;; left in a consistent state.
3103 ;; This is much like `c-whack-state-after', but it never changes a paren
3104 ;; pair element into an open paren element. Doing that would mean that the
3105 ;; new open paren wouldn't have the required preceding paren pair element.
3107 ;; This function is called from c-after-change.
3109 ;; The caches of non-literals:
3110 (if (< here c-state-nonlit-pos-cache-limit)
3111 (setq c-state-nonlit-pos-cache-limit here))
3112 (if (< here c-state-semi-nonlit-pos-cache-limit)
3113 (setq c-state-semi-nonlit-pos-cache-limit here))
3115 ;; `c-state-cache':
3116 ;; Case 1: if `here' is in a literal containing point-min, everything
3117 ;; becomes (or is already) nil.
3118 (if (or (null c-state-cache-good-pos)
3119 (< here (c-state-get-min-scan-pos)))
3120 (setq c-state-cache nil
3121 c-state-cache-good-pos nil
3122 c-state-min-scan-pos nil)
3124 ;; Truncate `c-state-cache' and set `c-state-cache-good-pos' to a value
3125 ;; below `here'. To maintain its consistency, we may need to insert a new
3126 ;; brace pair.
3127 (let ((here-bol (c-point 'bol here))
3128 too-high-pa ; recorded {/(/[ next above here, or nil.
3129 dropped-cons ; was the last removed element a brace pair?
3131 ;; The easy bit - knock over-the-top bits off `c-state-cache'.
3132 (while (and c-state-cache
3133 (>= (setq pa (c-state-cache-top-paren)) here))
3134 (setq dropped-cons (consp (car c-state-cache))
3135 too-high-pa (c-state-cache-top-lparen)
3136 c-state-cache (cdr c-state-cache)))
3138 ;; Do we need to add in an earlier brace pair, having lopped one off?
3139 (if (and dropped-cons
3140 (< too-high-pa (+ here c-state-cache-too-far)))
3141 (c-append-lower-brace-pair-to-state-cache too-high-pa here-bol))
3142 (setq c-state-cache-good-pos (or (c-state-cache-after-top-paren)
3143 (c-state-get-min-scan-pos)))))
3145 ;; The brace-pair desert marker:
3146 (when (car c-state-brace-pair-desert)
3147 (if (< here (car c-state-brace-pair-desert))
3148 (setq c-state-brace-pair-desert nil)
3149 (if (< here (cdr c-state-brace-pair-desert))
3150 (setcdr c-state-brace-pair-desert here)))))
3152 (defun c-parse-state-1 ()
3153 ;; Find and record all noteworthy parens between some good point earlier in
3154 ;; the file and point. That good point is at least the beginning of the
3155 ;; top-level construct we are in, or the beginning of the preceding
3156 ;; top-level construct if we aren't in one.
3158 ;; The returned value is a list of the noteworthy parens with the last one
3159 ;; first. If an element in the list is an integer, it's the position of an
3160 ;; open paren (of any type) which has not been closed before the point. If
3161 ;; an element is a cons, it gives the position of a closed BRACE paren
3162 ;; pair[*]; the car is the start brace position and the cdr is the position
3163 ;; following the closing brace. Only the last closed brace paren pair
3164 ;; before each open paren and before the point is recorded, and thus the
3165 ;; state never contains two cons elements in succession. When a close brace
3166 ;; has no matching open brace (e.g., the matching brace is outside the
3167 ;; visible region), it is not represented in the returned value.
3169 ;; [*] N.B. The close "brace" might be a mismatching close bracket or paren.
3170 ;; This defun explicitly treats mismatching parens/braces/brackets as
3171 ;; matching. It is the open brace which makes it a "brace" pair.
3173 ;; If POINT is within a macro, open parens and brace pairs within
3174 ;; THIS macro MIGHT be recorded. This depends on whether their
3175 ;; syntactic properties have been suppressed by
3176 ;; `c-neutralize-syntax-in-CPP'. This might need fixing (2008-12-11).
3178 ;; Currently no characters which are given paren syntax with the
3179 ;; syntax-table property are recorded, i.e. angle bracket arglist
3180 ;; parens are never present here. Note that this might change.
3182 ;; BUG: This function doesn't cope entirely well with unbalanced
3183 ;; parens in macros. (2008-12-11: this has probably been resolved
3184 ;; by the function `c-neutralize-syntax-in-CPP'.) E.g. in the
3185 ;; following case the brace before the macro isn't balanced with the
3186 ;; one after it:
3188 ;; {
3189 ;; #define X {
3190 ;; }
3192 ;; Note to maintainers: this function DOES get called with point
3193 ;; within comments and strings, so don't assume it doesn't!
3195 ;; This function might do hidden buffer changes.
3196 (let* ((here (point))
3197 (here-bopl (c-point 'bopl))
3198 strategy ; 'forward, 'backward etc..
3199 ;; Candidate positions to start scanning from:
3200 cache-pos ; highest position below HERE already existing in
3201 ; cache (or 1).
3202 good-pos
3203 start-point
3204 bopl-state
3206 scan-backward-pos scan-forward-p) ; used for 'backward.
3207 ;; If POINT-MIN has changed, adjust the cache
3208 (unless (= (point-min) c-state-point-min)
3209 (c-renarrow-state-cache))
3211 ;; Strategy?
3212 (setq res (c-parse-state-get-strategy here c-state-cache-good-pos)
3213 strategy (car res)
3214 cache-pos (cadr res)
3215 start-point (nth 2 res))
3217 (when (eq strategy 'BOD)
3218 (setq c-state-cache nil
3219 c-state-cache-good-pos start-point))
3221 ;; SCAN!
3222 (save-restriction
3223 (cond
3224 ((memq strategy '(forward BOD))
3225 (narrow-to-region (point-min) here)
3226 (setq res (c-remove-stale-state-cache start-point here-bopl))
3227 (setq cache-pos (car res)
3228 scan-backward-pos (cadr res)
3229 bopl-state (car (cddr res))) ; will be nil if (< here-bopl
3230 ; start-point)
3231 (if scan-backward-pos
3232 (c-append-lower-brace-pair-to-state-cache scan-backward-pos))
3233 (setq good-pos
3234 (c-append-to-state-cache cache-pos))
3235 (setq c-state-cache-good-pos
3236 (if (and bopl-state
3237 (< good-pos (- here c-state-cache-too-far)))
3238 (c-state-cache-non-literal-place here-bopl bopl-state)
3239 good-pos)))
3241 ((eq strategy 'backward)
3242 (setq res (c-remove-stale-state-cache-backwards here cache-pos)
3243 good-pos (car res)
3244 scan-backward-pos (cadr res)
3245 scan-forward-p (car (cddr res)))
3246 (if scan-backward-pos
3247 (c-append-lower-brace-pair-to-state-cache
3248 scan-backward-pos))
3249 (setq c-state-cache-good-pos
3250 (if scan-forward-p
3251 (progn (narrow-to-region (point-min) here)
3252 (c-append-to-state-cache good-pos))
3253 good-pos)))
3255 (t ; (eq strategy 'IN-LIT)
3256 (setq c-state-cache nil
3257 c-state-cache-good-pos nil)))))
3259 c-state-cache)
3261 (defun c-invalidate-state-cache (here)
3262 ;; This is a wrapper over `c-invalidate-state-cache-1'.
3264 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3265 ;; of all parens in preprocessor constructs, except for any such construct
3266 ;; containing point. We can then call `c-invalidate-state-cache-1' without
3267 ;; worrying further about macros and template delimiters.
3268 (c-with-<->-as-parens-suppressed
3269 (if (and c-state-old-cpp-beg
3270 (< c-state-old-cpp-beg here))
3271 (c-with-all-but-one-cpps-commented-out
3272 c-state-old-cpp-beg
3273 (min c-state-old-cpp-end here)
3274 (c-invalidate-state-cache-1 here))
3275 (c-with-cpps-commented-out
3276 (c-invalidate-state-cache-1 here)))))
3278 (defun c-parse-state ()
3279 ;; This is a wrapper over `c-parse-state-1'. See that function for a
3280 ;; description of the functionality and return value.
3282 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3283 ;; of all parens in preprocessor constructs, except for any such construct
3284 ;; containing point. We can then call `c-parse-state-1' without worrying
3285 ;; further about macros and template delimiters.
3286 (let (here-cpp-beg here-cpp-end)
3287 (save-excursion
3288 (when (c-beginning-of-macro)
3289 (setq here-cpp-beg (point))
3290 (unless
3291 (> (setq here-cpp-end (c-syntactic-end-of-macro))
3292 here-cpp-beg)
3293 (setq here-cpp-beg nil here-cpp-end nil))))
3294 ;; FIXME!!! Put in a `condition-case' here to protect the integrity of the
3295 ;; subsystem.
3296 (prog1
3297 (c-with-<->-as-parens-suppressed
3298 (if (and here-cpp-beg (> here-cpp-end here-cpp-beg))
3299 (c-with-all-but-one-cpps-commented-out
3300 here-cpp-beg here-cpp-end
3301 (c-parse-state-1))
3302 (c-with-cpps-commented-out
3303 (c-parse-state-1))))
3304 (setq c-state-old-cpp-beg (and here-cpp-beg (copy-marker here-cpp-beg t))
3305 c-state-old-cpp-end (and here-cpp-end (copy-marker here-cpp-end t)))
3308 ;; Debug tool to catch cache inconsistencies. This is called from
3309 ;; 000tests.el.
3310 (defvar c-debug-parse-state nil)
3311 (unless (fboundp 'c-real-parse-state)
3312 (fset 'c-real-parse-state (symbol-function 'c-parse-state)))
3313 (cc-bytecomp-defun c-real-parse-state)
3315 (defvar c-parse-state-state nil)
3316 (defun c-record-parse-state-state ()
3317 (setq c-parse-state-state
3318 (mapcar
3319 (lambda (arg)
3320 (cons arg (symbol-value arg)))
3321 '(c-state-cache
3322 c-state-cache-good-pos
3323 c-state-nonlit-pos-cache
3324 c-state-nonlit-pos-cache-limit
3325 c-state-brace-pair-desert
3326 c-state-point-min
3327 c-state-point-min-lit-type
3328 c-state-point-min-lit-start
3329 c-state-min-scan-pos
3330 c-state-old-cpp-beg
3331 c-state-old-cpp-end))))
3332 (defun c-replay-parse-state-state ()
3333 (message
3334 (concat "(setq "
3335 (mapconcat
3336 (lambda (arg)
3337 (format "%s %s%s" (car arg) (if (atom (cdr arg)) "" "'") (cdr arg)))
3338 c-parse-state-state " ")
3339 ")")))
3341 (defun c-debug-parse-state ()
3342 (let ((here (point)) (res1 (c-real-parse-state)) res2)
3343 (let ((c-state-cache nil)
3344 (c-state-cache-good-pos 1)
3345 (c-state-nonlit-pos-cache nil)
3346 (c-state-nonlit-pos-cache-limit 1)
3347 (c-state-brace-pair-desert nil)
3348 (c-state-point-min 1)
3349 (c-state-point-min-lit-type nil)
3350 (c-state-point-min-lit-start nil)
3351 (c-state-min-scan-pos 1)
3352 (c-state-old-cpp-beg nil)
3353 (c-state-old-cpp-end nil))
3354 (setq res2 (c-real-parse-state)))
3355 (unless (equal res1 res2)
3356 ;; The cache can actually go further back due to the ad-hoc way
3357 ;; the first paren is found, so try to whack off a bit of its
3358 ;; start before complaining.
3359 ;; (save-excursion
3360 ;; (goto-char (or (c-least-enclosing-brace res2) (point)))
3361 ;; (c-beginning-of-defun-1)
3362 ;; (while (not (or (bobp) (eq (char-after) ?{)))
3363 ;; (c-beginning-of-defun-1))
3364 ;; (unless (equal (c-whack-state-before (point) res1) res2)
3365 ;; (message (concat "c-parse-state inconsistency at %s: "
3366 ;; "using cache: %s, from scratch: %s")
3367 ;; here res1 res2)))
3368 (message (concat "c-parse-state inconsistency at %s: "
3369 "using cache: %s, from scratch: %s")
3370 here res1 res2)
3371 (message "Old state:")
3372 (c-replay-parse-state-state))
3373 (c-record-parse-state-state)
3374 res1))
3376 (defun c-toggle-parse-state-debug (&optional arg)
3377 (interactive "P")
3378 (setq c-debug-parse-state (c-calculate-state arg c-debug-parse-state))
3379 (fset 'c-parse-state (symbol-function (if c-debug-parse-state
3380 'c-debug-parse-state
3381 'c-real-parse-state)))
3382 (c-keep-region-active))
3383 (when c-debug-parse-state
3384 (c-toggle-parse-state-debug 1))
3387 (defun c-whack-state-before (bufpos paren-state)
3388 ;; Whack off any state information from PAREN-STATE which lies
3389 ;; before BUFPOS. Not destructive on PAREN-STATE.
3390 (let* ((newstate (list nil))
3391 (ptr newstate)
3392 car)
3393 (while paren-state
3394 (setq car (car paren-state)
3395 paren-state (cdr paren-state))
3396 (if (< (if (consp car) (car car) car) bufpos)
3397 (setq paren-state nil)
3398 (setcdr ptr (list car))
3399 (setq ptr (cdr ptr))))
3400 (cdr newstate)))
3402 (defun c-whack-state-after (bufpos paren-state)
3403 ;; Whack off any state information from PAREN-STATE which lies at or
3404 ;; after BUFPOS. Not destructive on PAREN-STATE.
3405 (catch 'done
3406 (while paren-state
3407 (let ((car (car paren-state)))
3408 (if (consp car)
3409 ;; just check the car, because in a balanced brace
3410 ;; expression, it must be impossible for the corresponding
3411 ;; close brace to be before point, but the open brace to
3412 ;; be after.
3413 (if (<= bufpos (car car))
3414 nil ; whack it off
3415 (if (< bufpos (cdr car))
3416 ;; its possible that the open brace is before
3417 ;; bufpos, but the close brace is after. In that
3418 ;; case, convert this to a non-cons element. The
3419 ;; rest of the state is before bufpos, so we're
3420 ;; done.
3421 (throw 'done (cons (car car) (cdr paren-state)))
3422 ;; we know that both the open and close braces are
3423 ;; before bufpos, so we also know that everything else
3424 ;; on state is before bufpos.
3425 (throw 'done paren-state)))
3426 (if (<= bufpos car)
3427 nil ; whack it off
3428 ;; it's before bufpos, so everything else should too.
3429 (throw 'done paren-state)))
3430 (setq paren-state (cdr paren-state)))
3431 nil)))
3433 (defun c-most-enclosing-brace (paren-state &optional bufpos)
3434 ;; Return the bufpos of the innermost enclosing open paren before
3435 ;; bufpos, or nil if none was found.
3436 (let (enclosingp)
3437 (or bufpos (setq bufpos 134217727))
3438 (while paren-state
3439 (setq enclosingp (car paren-state)
3440 paren-state (cdr paren-state))
3441 (if (or (consp enclosingp)
3442 (>= enclosingp bufpos))
3443 (setq enclosingp nil)
3444 (setq paren-state nil)))
3445 enclosingp))
3447 (defun c-least-enclosing-brace (paren-state)
3448 ;; Return the bufpos of the outermost enclosing open paren, or nil
3449 ;; if none was found.
3450 (let (pos elem)
3451 (while paren-state
3452 (setq elem (car paren-state)
3453 paren-state (cdr paren-state))
3454 (if (integerp elem)
3455 (setq pos elem)))
3456 pos))
3458 (defun c-safe-position (bufpos paren-state)
3459 ;; Return the closest "safe" position recorded on PAREN-STATE that
3460 ;; is higher up than BUFPOS. Return nil if PAREN-STATE doesn't
3461 ;; contain any. Return nil if BUFPOS is nil, which is useful to
3462 ;; find the closest limit before a given limit that might be nil.
3464 ;; A "safe" position is a position at or after a recorded open
3465 ;; paren, or after a recorded close paren. The returned position is
3466 ;; thus either the first position after a close brace, or the first
3467 ;; position after an enclosing paren, or at the enclosing paren in
3468 ;; case BUFPOS is immediately after it.
3469 (when bufpos
3470 (let (elem)
3471 (catch 'done
3472 (while paren-state
3473 (setq elem (car paren-state))
3474 (if (consp elem)
3475 (cond ((< (cdr elem) bufpos)
3476 (throw 'done (cdr elem)))
3477 ((< (car elem) bufpos)
3478 ;; See below.
3479 (throw 'done (min (1+ (car elem)) bufpos))))
3480 (if (< elem bufpos)
3481 ;; elem is the position at and not after the opening paren, so
3482 ;; we can go forward one more step unless it's equal to
3483 ;; bufpos. This is useful in some cases avoid an extra paren
3484 ;; level between the safe position and bufpos.
3485 (throw 'done (min (1+ elem) bufpos))))
3486 (setq paren-state (cdr paren-state)))))))
3488 (defun c-beginning-of-syntax ()
3489 ;; This is used for `font-lock-beginning-of-syntax-function'. It
3490 ;; goes to the closest previous point that is known to be outside
3491 ;; any string literal or comment. `c-state-cache' is used if it has
3492 ;; a position in the vicinity.
3493 (let* ((paren-state c-state-cache)
3494 elem
3496 (pos (catch 'done
3497 ;; Note: Similar code in `c-safe-position'. The
3498 ;; difference is that we accept a safe position at
3499 ;; the point and don't bother to go forward past open
3500 ;; parens.
3501 (while paren-state
3502 (setq elem (car paren-state))
3503 (if (consp elem)
3504 (cond ((<= (cdr elem) (point))
3505 (throw 'done (cdr elem)))
3506 ((<= (car elem) (point))
3507 (throw 'done (car elem))))
3508 (if (<= elem (point))
3509 (throw 'done elem)))
3510 (setq paren-state (cdr paren-state)))
3511 (point-min))))
3513 (if (> pos (- (point) 4000))
3514 (goto-char pos)
3515 ;; The position is far back. Try `c-beginning-of-defun-1'
3516 ;; (although we can't be entirely sure it will go to a position
3517 ;; outside a comment or string in current emacsen). FIXME:
3518 ;; Consult `syntax-ppss' here.
3519 (c-beginning-of-defun-1)
3520 (if (< (point) pos)
3521 (goto-char pos)))))
3524 ;; Tools for scanning identifiers and other tokens.
3526 (defun c-on-identifier ()
3527 "Return non-nil if the point is on or directly after an identifier.
3528 Keywords are recognized and not considered identifiers. If an
3529 identifier is detected, the returned value is its starting position.
3530 If an identifier ends at the point and another begins at it \(can only
3531 happen in Pike) then the point for the preceding one is returned.
3533 Note that this function might do hidden buffer changes. See the
3534 comment at the start of cc-engine.el for more info."
3536 ;; FIXME: Shouldn't this function handle "operator" in C++?
3538 (save-excursion
3539 (skip-syntax-backward "w_")
3543 ;; Check for a normal (non-keyword) identifier.
3544 (and (looking-at c-symbol-start)
3545 (not (looking-at c-keywords-regexp))
3546 (point))
3548 (when (c-major-mode-is 'pike-mode)
3549 ;; Handle the `<operator> syntax in Pike.
3550 (let ((pos (point)))
3551 (skip-chars-backward "-!%&*+/<=>^|~[]()")
3552 (and (if (< (skip-chars-backward "`") 0)
3554 (goto-char pos)
3555 (eq (char-after) ?\`))
3556 (looking-at c-symbol-key)
3557 (>= (match-end 0) pos)
3558 (point))))
3560 ;; Handle the "operator +" syntax in C++.
3561 (when (and c-overloadable-operators-regexp
3562 (= (c-backward-token-2 0) 0))
3564 (cond ((and (looking-at c-overloadable-operators-regexp)
3565 (or (not c-opt-op-identifier-prefix)
3566 (and (= (c-backward-token-2 1) 0)
3567 (looking-at c-opt-op-identifier-prefix))))
3568 (point))
3570 ((save-excursion
3571 (and c-opt-op-identifier-prefix
3572 (looking-at c-opt-op-identifier-prefix)
3573 (= (c-forward-token-2 1) 0)
3574 (looking-at c-overloadable-operators-regexp)))
3575 (point))))
3579 (defsubst c-simple-skip-symbol-backward ()
3580 ;; If the point is at the end of a symbol then skip backward to the
3581 ;; beginning of it. Don't move otherwise. Return non-nil if point
3582 ;; moved.
3584 ;; This function might do hidden buffer changes.
3585 (or (< (skip-syntax-backward "w_") 0)
3586 (and (c-major-mode-is 'pike-mode)
3587 ;; Handle the `<operator> syntax in Pike.
3588 (let ((pos (point)))
3589 (if (and (< (skip-chars-backward "-!%&*+/<=>^|~[]()") 0)
3590 (< (skip-chars-backward "`") 0)
3591 (looking-at c-symbol-key)
3592 (>= (match-end 0) pos))
3594 (goto-char pos)
3595 nil)))))
3597 (defun c-beginning-of-current-token (&optional back-limit)
3598 ;; Move to the beginning of the current token. Do not move if not
3599 ;; in the middle of one. BACK-LIMIT may be used to bound the
3600 ;; backward search; if given it's assumed to be at the boundary
3601 ;; between two tokens. Return non-nil if the point is moved, nil
3602 ;; otherwise.
3604 ;; This function might do hidden buffer changes.
3605 (let ((start (point)))
3606 (if (looking-at "\\w\\|\\s_")
3607 (skip-syntax-backward "w_" back-limit)
3608 (when (< (skip-syntax-backward ".()" back-limit) 0)
3609 (while (let ((pos (or (and (looking-at c-nonsymbol-token-regexp)
3610 (match-end 0))
3611 ;; `c-nonsymbol-token-regexp' should always match
3612 ;; since we've skipped backward over punctuator
3613 ;; or paren syntax, but consume one char in case
3614 ;; it doesn't so that we don't leave point before
3615 ;; some earlier incorrect token.
3616 (1+ (point)))))
3617 (if (<= pos start)
3618 (goto-char pos))))))
3619 (< (point) start)))
3621 (defun c-end-of-current-token (&optional back-limit)
3622 ;; Move to the end of the current token. Do not move if not in the
3623 ;; middle of one. BACK-LIMIT may be used to bound the backward
3624 ;; search; if given it's assumed to be at the boundary between two
3625 ;; tokens. Return non-nil if the point is moved, nil otherwise.
3627 ;; This function might do hidden buffer changes.
3628 (let ((start (point)))
3629 (cond ((< (skip-syntax-backward "w_" (1- start)) 0)
3630 (skip-syntax-forward "w_"))
3631 ((< (skip-syntax-backward ".()" back-limit) 0)
3632 (while (progn
3633 (if (looking-at c-nonsymbol-token-regexp)
3634 (goto-char (match-end 0))
3635 ;; `c-nonsymbol-token-regexp' should always match since
3636 ;; we've skipped backward over punctuator or paren
3637 ;; syntax, but move forward in case it doesn't so that
3638 ;; we don't leave point earlier than we started with.
3639 (forward-char))
3640 (< (point) start)))))
3641 (> (point) start)))
3643 (defconst c-jump-syntax-balanced
3644 (if (memq 'gen-string-delim c-emacs-features)
3645 "\\w\\|\\s_\\|\\s\(\\|\\s\)\\|\\s\"\\|\\s|"
3646 "\\w\\|\\s_\\|\\s\(\\|\\s\)\\|\\s\""))
3648 (defconst c-jump-syntax-unbalanced
3649 (if (memq 'gen-string-delim c-emacs-features)
3650 "\\w\\|\\s_\\|\\s\"\\|\\s|"
3651 "\\w\\|\\s_\\|\\s\""))
3653 (defun c-forward-token-2 (&optional count balanced limit)
3654 "Move forward by tokens.
3655 A token is defined as all symbols and identifiers which aren't
3656 syntactic whitespace \(note that multicharacter tokens like \"==\" are
3657 treated properly). Point is always either left at the beginning of a
3658 token or not moved at all. COUNT specifies the number of tokens to
3659 move; a negative COUNT moves in the opposite direction. A COUNT of 0
3660 moves to the next token beginning only if not already at one. If
3661 BALANCED is true, move over balanced parens, otherwise move into them.
3662 Also, if BALANCED is true, never move out of an enclosing paren.
3664 LIMIT sets the limit for the movement and defaults to the point limit.
3665 The case when LIMIT is set in the middle of a token, comment or macro
3666 is handled correctly, i.e. the point won't be left there.
3668 Return the number of tokens left to move \(positive or negative). If
3669 BALANCED is true, a move over a balanced paren counts as one. Note
3670 that if COUNT is 0 and no appropriate token beginning is found, 1 will
3671 be returned. Thus, a return value of 0 guarantees that point is at
3672 the requested position and a return value less \(without signs) than
3673 COUNT guarantees that point is at the beginning of some token.
3675 Note that this function might do hidden buffer changes. See the
3676 comment at the start of cc-engine.el for more info."
3678 (or count (setq count 1))
3679 (if (< count 0)
3680 (- (c-backward-token-2 (- count) balanced limit))
3682 (let ((jump-syntax (if balanced
3683 c-jump-syntax-balanced
3684 c-jump-syntax-unbalanced))
3685 (last (point))
3686 (prev (point)))
3688 (if (zerop count)
3689 ;; If count is zero we should jump if in the middle of a token.
3690 (c-end-of-current-token))
3692 (save-restriction
3693 (if limit (narrow-to-region (point-min) limit))
3694 (if (/= (point)
3695 (progn (c-forward-syntactic-ws) (point)))
3696 ;; Skip whitespace. Count this as a move if we did in
3697 ;; fact move.
3698 (setq count (max (1- count) 0)))
3700 (if (eobp)
3701 ;; Moved out of bounds. Make sure the returned count isn't zero.
3702 (progn
3703 (if (zerop count) (setq count 1))
3704 (goto-char last))
3706 ;; Use `condition-case' to avoid having the limit tests
3707 ;; inside the loop.
3708 (condition-case nil
3709 (while (and
3710 (> count 0)
3711 (progn
3712 (setq last (point))
3713 (cond ((looking-at jump-syntax)
3714 (goto-char (scan-sexps (point) 1))
3716 ((looking-at c-nonsymbol-token-regexp)
3717 (goto-char (match-end 0))
3719 ;; `c-nonsymbol-token-regexp' above should always
3720 ;; match if there are correct tokens. Try to
3721 ;; widen to see if the limit was set in the
3722 ;; middle of one, else fall back to treating
3723 ;; the offending thing as a one character token.
3724 ((and limit
3725 (save-restriction
3726 (widen)
3727 (looking-at c-nonsymbol-token-regexp)))
3728 nil)
3730 (forward-char)
3731 t))))
3732 (c-forward-syntactic-ws)
3733 (setq prev last
3734 count (1- count)))
3735 (error (goto-char last)))
3737 (when (eobp)
3738 (goto-char prev)
3739 (setq count (1+ count)))))
3741 count)))
3743 (defun c-backward-token-2 (&optional count balanced limit)
3744 "Move backward by tokens.
3745 See `c-forward-token-2' for details."
3747 (or count (setq count 1))
3748 (if (< count 0)
3749 (- (c-forward-token-2 (- count) balanced limit))
3751 (or limit (setq limit (point-min)))
3752 (let ((jump-syntax (if balanced
3753 c-jump-syntax-balanced
3754 c-jump-syntax-unbalanced))
3755 (last (point)))
3757 (if (zerop count)
3758 ;; The count is zero so try to skip to the beginning of the
3759 ;; current token.
3760 (if (> (point)
3761 (progn (c-beginning-of-current-token) (point)))
3762 (if (< (point) limit)
3763 ;; The limit is inside the same token, so return 1.
3764 (setq count 1))
3766 ;; We're not in the middle of a token. If there's
3767 ;; whitespace after the point then we must move backward,
3768 ;; so set count to 1 in that case.
3769 (and (looking-at c-syntactic-ws-start)
3770 ;; If we're looking at a '#' that might start a cpp
3771 ;; directive then we have to do a more elaborate check.
3772 (or (/= (char-after) ?#)
3773 (not c-opt-cpp-prefix)
3774 (save-excursion
3775 (and (= (point)
3776 (progn (beginning-of-line)
3777 (looking-at "[ \t]*")
3778 (match-end 0)))
3779 (or (bobp)
3780 (progn (backward-char)
3781 (not (eq (char-before) ?\\)))))))
3782 (setq count 1))))
3784 ;; Use `condition-case' to avoid having to check for buffer
3785 ;; limits in `backward-char', `scan-sexps' and `goto-char' below.
3786 (condition-case nil
3787 (while (and
3788 (> count 0)
3789 (progn
3790 (c-backward-syntactic-ws)
3791 (backward-char)
3792 (if (looking-at jump-syntax)
3793 (goto-char (scan-sexps (1+ (point)) -1))
3794 ;; This can be very inefficient if there's a long
3795 ;; sequence of operator tokens without any separation.
3796 ;; That doesn't happen in practice, anyway.
3797 (c-beginning-of-current-token))
3798 (>= (point) limit)))
3799 (setq last (point)
3800 count (1- count)))
3801 (error (goto-char last)))
3803 (if (< (point) limit)
3804 (goto-char last))
3806 count)))
3808 (defun c-forward-token-1 (&optional count balanced limit)
3809 "Like `c-forward-token-2' but doesn't treat multicharacter operator
3810 tokens like \"==\" as single tokens, i.e. all sequences of symbol
3811 characters are jumped over character by character. This function is
3812 for compatibility only; it's only a wrapper over `c-forward-token-2'."
3813 (let ((c-nonsymbol-token-regexp "\\s.\\|\\s\(\\|\\s\)"))
3814 (c-forward-token-2 count balanced limit)))
3816 (defun c-backward-token-1 (&optional count balanced limit)
3817 "Like `c-backward-token-2' but doesn't treat multicharacter operator
3818 tokens like \"==\" as single tokens, i.e. all sequences of symbol
3819 characters are jumped over character by character. This function is
3820 for compatibility only; it's only a wrapper over `c-backward-token-2'."
3821 (let ((c-nonsymbol-token-regexp "\\s.\\|\\s\(\\|\\s\)"))
3822 (c-backward-token-2 count balanced limit)))
3825 ;; Tools for doing searches restricted to syntactically relevant text.
3827 (defun c-syntactic-re-search-forward (regexp &optional bound noerror
3828 paren-level not-inside-token
3829 lookbehind-submatch)
3830 "Like `re-search-forward', but only report matches that are found
3831 in syntactically significant text. I.e. matches in comments, macros
3832 or string literals are ignored. The start point is assumed to be
3833 outside any comment, macro or string literal, or else the content of
3834 that region is taken as syntactically significant text.
3836 If PAREN-LEVEL is non-nil, an additional restriction is added to
3837 ignore matches in nested paren sexps. The search will also not go
3838 outside the current list sexp, which has the effect that if the point
3839 should be moved to BOUND when no match is found \(i.e. NOERROR is
3840 neither nil nor t), then it will be at the closing paren if the end of
3841 the current list sexp is encountered first.
3843 If NOT-INSIDE-TOKEN is non-nil, matches in the middle of tokens are
3844 ignored. Things like multicharacter operators and special symbols
3845 \(e.g. \"`()\" in Pike) are handled but currently not floating point
3846 constants.
3848 If LOOKBEHIND-SUBMATCH is non-nil, it's taken as a number of a
3849 subexpression in REGEXP. The end of that submatch is used as the
3850 position to check for syntactic significance. If LOOKBEHIND-SUBMATCH
3851 isn't used or if that subexpression didn't match then the start
3852 position of the whole match is used instead. The \"look behind\"
3853 subexpression is never tested before the starting position, so it
3854 might be a good idea to include \\=\\= as a match alternative in it.
3856 Optimization note: Matches might be missed if the \"look behind\"
3857 subexpression can match the end of nonwhite syntactic whitespace,
3858 i.e. the end of comments or cpp directives. This since the function
3859 skips over such things before resuming the search. It's on the other
3860 hand not safe to assume that the \"look behind\" subexpression never
3861 matches syntactic whitespace.
3863 Bug: Unbalanced parens inside cpp directives are currently not handled
3864 correctly \(i.e. they don't get ignored as they should) when
3865 PAREN-LEVEL is set.
3867 Note that this function might do hidden buffer changes. See the
3868 comment at the start of cc-engine.el for more info."
3870 (or bound (setq bound (point-max)))
3871 (if paren-level (setq paren-level -1))
3873 ;;(message "c-syntactic-re-search-forward %s %s %S" (point) bound regexp)
3875 (let ((start (point))
3877 ;; Start position for the last search.
3878 search-pos
3879 ;; The `parse-partial-sexp' state between the start position
3880 ;; and the point.
3881 state
3882 ;; The current position after the last state update. The next
3883 ;; `parse-partial-sexp' continues from here.
3884 (state-pos (point))
3885 ;; The position at which to check the state and the state
3886 ;; there. This is separate from `state-pos' since we might
3887 ;; need to back up before doing the next search round.
3888 check-pos check-state
3889 ;; Last position known to end a token.
3890 (last-token-end-pos (point-min))
3891 ;; Set when a valid match is found.
3892 found)
3894 (condition-case err
3895 (while
3896 (and
3897 (progn
3898 (setq search-pos (point))
3899 (re-search-forward regexp bound noerror))
3901 (progn
3902 (setq state (parse-partial-sexp
3903 state-pos (match-beginning 0) paren-level nil state)
3904 state-pos (point))
3905 (if (setq check-pos (and lookbehind-submatch
3906 (or (not paren-level)
3907 (>= (car state) 0))
3908 (match-end lookbehind-submatch)))
3909 (setq check-state (parse-partial-sexp
3910 state-pos check-pos paren-level nil state))
3911 (setq check-pos state-pos
3912 check-state state))
3914 ;; NOTE: If we got a look behind subexpression and get
3915 ;; an insignificant match in something that isn't
3916 ;; syntactic whitespace (i.e. strings or in nested
3917 ;; parentheses), then we can never skip more than a
3918 ;; single character from the match start position
3919 ;; (i.e. `state-pos' here) before continuing the
3920 ;; search. That since the look behind subexpression
3921 ;; might match the end of the insignificant region in
3922 ;; the next search.
3924 (cond
3925 ((elt check-state 7)
3926 ;; Match inside a line comment. Skip to eol. Use
3927 ;; `re-search-forward' instead of `skip-chars-forward' to get
3928 ;; the right bound behavior.
3929 (re-search-forward "[\n\r]" bound noerror))
3931 ((elt check-state 4)
3932 ;; Match inside a block comment. Skip to the '*/'.
3933 (search-forward "*/" bound noerror))
3935 ((and (not (elt check-state 5))
3936 (eq (char-before check-pos) ?/)
3937 (not (c-get-char-property (1- check-pos) 'syntax-table))
3938 (memq (char-after check-pos) '(?/ ?*)))
3939 ;; Match in the middle of the opener of a block or line
3940 ;; comment.
3941 (if (= (char-after check-pos) ?/)
3942 (re-search-forward "[\n\r]" bound noerror)
3943 (search-forward "*/" bound noerror)))
3945 ;; The last `parse-partial-sexp' above might have
3946 ;; stopped short of the real check position if the end
3947 ;; of the current sexp was encountered in paren-level
3948 ;; mode. The checks above are always false in that
3949 ;; case, and since they can do better skipping in
3950 ;; lookbehind-submatch mode, we do them before
3951 ;; checking the paren level.
3953 ((and paren-level
3954 (/= (setq tmp (car check-state)) 0))
3955 ;; Check the paren level first since we're short of the
3956 ;; syntactic checking position if the end of the
3957 ;; current sexp was encountered by `parse-partial-sexp'.
3958 (if (> tmp 0)
3960 ;; Inside a nested paren sexp.
3961 (if lookbehind-submatch
3962 ;; See the NOTE above.
3963 (progn (goto-char state-pos) t)
3964 ;; Skip out of the paren quickly.
3965 (setq state (parse-partial-sexp state-pos bound 0 nil state)
3966 state-pos (point)))
3968 ;; Have exited the current paren sexp.
3969 (if noerror
3970 (progn
3971 ;; The last `parse-partial-sexp' call above
3972 ;; has left us just after the closing paren
3973 ;; in this case, so we can modify the bound
3974 ;; to leave the point at the right position
3975 ;; upon return.
3976 (setq bound (1- (point)))
3977 nil)
3978 (signal 'search-failed (list regexp)))))
3980 ((setq tmp (elt check-state 3))
3981 ;; Match inside a string.
3982 (if (or lookbehind-submatch
3983 (not (integerp tmp)))
3984 ;; See the NOTE above.
3985 (progn (goto-char state-pos) t)
3986 ;; Skip to the end of the string before continuing.
3987 (let ((ender (make-string 1 tmp)) (continue t))
3988 (while (if (search-forward ender bound noerror)
3989 (progn
3990 (setq state (parse-partial-sexp
3991 state-pos (point) nil nil state)
3992 state-pos (point))
3993 (elt state 3))
3994 (setq continue nil)))
3995 continue)))
3997 ((save-excursion
3998 (save-match-data
3999 (c-beginning-of-macro start)))
4000 ;; Match inside a macro. Skip to the end of it.
4001 (c-end-of-macro)
4002 (cond ((<= (point) bound) t)
4003 (noerror nil)
4004 (t (signal 'search-failed (list regexp)))))
4006 ((and not-inside-token
4007 (or (< check-pos last-token-end-pos)
4008 (< check-pos
4009 (save-excursion
4010 (goto-char check-pos)
4011 (save-match-data
4012 (c-end-of-current-token last-token-end-pos))
4013 (setq last-token-end-pos (point))))))
4014 ;; Inside a token.
4015 (if lookbehind-submatch
4016 ;; See the NOTE above.
4017 (goto-char state-pos)
4018 (goto-char (min last-token-end-pos bound))))
4021 ;; A real match.
4022 (setq found t)
4023 nil)))
4025 ;; Should loop to search again, but take care to avoid
4026 ;; looping on the same spot.
4027 (or (/= search-pos (point))
4028 (if (= (point) bound)
4029 (if noerror
4031 (signal 'search-failed (list regexp)))
4032 (forward-char)
4033 t))))
4035 (error
4036 (goto-char start)
4037 (signal (car err) (cdr err))))
4039 ;;(message "c-syntactic-re-search-forward done %s" (or (match-end 0) (point)))
4041 (if found
4042 (progn
4043 (goto-char (match-end 0))
4044 (match-end 0))
4046 ;; Search failed. Set point as appropriate.
4047 (if (eq noerror t)
4048 (goto-char start)
4049 (goto-char bound))
4050 nil)))
4052 (defvar safe-pos-list) ; bound in c-syntactic-skip-backward
4054 (defsubst c-ssb-lit-begin ()
4055 ;; Return the start of the literal point is in, or nil.
4056 ;; We read and write the variables `safe-pos', `safe-pos-list', `state'
4057 ;; bound in the caller.
4059 ;; Use `parse-partial-sexp' from a safe position down to the point to check
4060 ;; if it's outside comments and strings.
4061 (save-excursion
4062 (let ((pos (point)) safe-pos state pps-end-pos)
4063 ;; Pick a safe position as close to the point as possible.
4065 ;; FIXME: Consult `syntax-ppss' here if our cache doesn't give a good
4066 ;; position.
4068 (while (and safe-pos-list
4069 (> (car safe-pos-list) (point)))
4070 (setq safe-pos-list (cdr safe-pos-list)))
4071 (unless (setq safe-pos (car-safe safe-pos-list))
4072 (setq safe-pos (max (or (c-safe-position
4073 (point) (or c-state-cache
4074 (c-parse-state)))
4076 (point-min))
4077 safe-pos-list (list safe-pos)))
4079 ;; Cache positions along the way to use if we have to back up more. We
4080 ;; cache every closing paren on the same level. If the paren cache is
4081 ;; relevant in this region then we're typically already on the same
4082 ;; level as the target position. Note that we might cache positions
4083 ;; after opening parens in case safe-pos is in a nested list. That's
4084 ;; both uncommon and harmless.
4085 (while (progn
4086 (setq state (parse-partial-sexp
4087 safe-pos pos 0))
4088 (< (point) pos))
4089 (setq safe-pos (point)
4090 safe-pos-list (cons safe-pos safe-pos-list)))
4092 ;; If the state contains the start of the containing sexp we cache that
4093 ;; position too, so that parse-partial-sexp in the next run has a bigger
4094 ;; chance of starting at the same level as the target position and thus
4095 ;; will get more good safe positions into the list.
4096 (if (elt state 1)
4097 (setq safe-pos (1+ (elt state 1))
4098 safe-pos-list (cons safe-pos safe-pos-list)))
4100 (if (or (elt state 3) (elt state 4))
4101 ;; Inside string or comment. Continue search at the
4102 ;; beginning of it.
4103 (elt state 8)))))
4105 (defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4106 "Like `skip-chars-backward' but only look at syntactically relevant chars,
4107 i.e. don't stop at positions inside syntactic whitespace or string
4108 literals. Preprocessor directives are also ignored, with the exception
4109 of the one that the point starts within, if any. If LIMIT is given,
4110 it's assumed to be at a syntactically relevant position.
4112 If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4113 sexps, and the search will also not go outside the current paren sexp.
4114 However, if LIMIT or the buffer limit is reached inside a nested paren
4115 then the point will be left at the limit.
4117 Non-nil is returned if the point moved, nil otherwise.
4119 Note that this function might do hidden buffer changes. See the
4120 comment at the start of cc-engine.el for more info."
4122 (let ((start (point))
4123 state-2
4124 ;; A list of syntactically relevant positions in descending
4125 ;; order. It's used to avoid scanning repeatedly over
4126 ;; potentially large regions with `parse-partial-sexp' to verify
4127 ;; each position. Used in `c-ssb-lit-begin'
4128 safe-pos-list
4129 ;; The result from `c-beginning-of-macro' at the start position or the
4130 ;; start position itself if it isn't within a macro. Evaluated on
4131 ;; demand.
4132 start-macro-beg
4133 ;; The earliest position after the current one with the same paren
4134 ;; level. Used only when `paren-level' is set.
4135 lit-beg
4136 (paren-level-pos (point)))
4138 (while
4139 (progn
4140 ;; The next loop "tries" to find the end point each time round,
4141 ;; loops when it hasn't succeeded.
4142 (while
4143 (and
4144 (< (skip-chars-backward skip-chars limit) 0)
4146 (let ((pos (point)) state-2 pps-end-pos)
4148 (cond
4149 ;; Don't stop inside a literal
4150 ((setq lit-beg (c-ssb-lit-begin))
4151 (goto-char lit-beg)
4154 ((and paren-level
4155 (save-excursion
4156 (setq state-2 (parse-partial-sexp
4157 pos paren-level-pos -1)
4158 pps-end-pos (point))
4159 (/= (car state-2) 0)))
4160 ;; Not at the right level.
4162 (if (and (< (car state-2) 0)
4163 ;; We stop above if we go out of a paren.
4164 ;; Now check whether it precedes or is
4165 ;; nested in the starting sexp.
4166 (save-excursion
4167 (setq state-2
4168 (parse-partial-sexp
4169 pps-end-pos paren-level-pos
4170 nil nil state-2))
4171 (< (car state-2) 0)))
4173 ;; We've stopped short of the starting position
4174 ;; so the hit was inside a nested list. Go up
4175 ;; until we are at the right level.
4176 (condition-case nil
4177 (progn
4178 (goto-char (scan-lists pos -1
4179 (- (car state-2))))
4180 (setq paren-level-pos (point))
4181 (if (and limit (>= limit paren-level-pos))
4182 (progn
4183 (goto-char limit)
4184 nil)
4186 (error
4187 (goto-char (or limit (point-min)))
4188 nil))
4190 ;; The hit was outside the list at the start
4191 ;; position. Go to the start of the list and exit.
4192 (goto-char (1+ (elt state-2 1)))
4193 nil))
4195 ((c-beginning-of-macro limit)
4196 ;; Inside a macro.
4197 (if (< (point)
4198 (or start-macro-beg
4199 (setq start-macro-beg
4200 (save-excursion
4201 (goto-char start)
4202 (c-beginning-of-macro limit)
4203 (point)))))
4206 ;; It's inside the same macro we started in so it's
4207 ;; a relevant match.
4208 (goto-char pos)
4209 nil))))))
4211 (> (point)
4212 (progn
4213 ;; Skip syntactic ws afterwards so that we don't stop at the
4214 ;; end of a comment if `skip-chars' is something like "^/".
4215 (c-backward-syntactic-ws)
4216 (point)))))
4218 ;; We might want to extend this with more useful return values in
4219 ;; the future.
4220 (/= (point) start)))
4222 ;; The following is an alternative implementation of
4223 ;; `c-syntactic-skip-backward' that uses backward movement to keep
4224 ;; track of the syntactic context. It turned out to be generally
4225 ;; slower than the one above which uses forward checks from earlier
4226 ;; safe positions.
4228 ;;(defconst c-ssb-stop-re
4229 ;; ;; The regexp matching chars `c-syntactic-skip-backward' needs to
4230 ;; ;; stop at to avoid going into comments and literals.
4231 ;; (concat
4232 ;; ;; Match comment end syntax and string literal syntax. Also match
4233 ;; ;; '/' for block comment endings (not covered by comment end
4234 ;; ;; syntax).
4235 ;; "\\s>\\|/\\|\\s\""
4236 ;; (if (memq 'gen-string-delim c-emacs-features)
4237 ;; "\\|\\s|"
4238 ;; "")
4239 ;; (if (memq 'gen-comment-delim c-emacs-features)
4240 ;; "\\|\\s!"
4241 ;; "")))
4243 ;;(defconst c-ssb-stop-paren-re
4244 ;; ;; Like `c-ssb-stop-re' but also stops at paren chars.
4245 ;; (concat c-ssb-stop-re "\\|\\s(\\|\\s)"))
4247 ;;(defconst c-ssb-sexp-end-re
4248 ;; ;; Regexp matching the ending syntax of a complex sexp.
4249 ;; (concat c-string-limit-regexp "\\|\\s)"))
4251 ;;(defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4252 ;; "Like `skip-chars-backward' but only look at syntactically relevant chars,
4253 ;;i.e. don't stop at positions inside syntactic whitespace or string
4254 ;;literals. Preprocessor directives are also ignored. However, if the
4255 ;;point is within a comment, string literal or preprocessor directory to
4256 ;;begin with, its contents is treated as syntactically relevant chars.
4257 ;;If LIMIT is given, it limits the backward search and the point will be
4258 ;;left there if no earlier position is found.
4260 ;;If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4261 ;;sexps, and the search will also not go outside the current paren sexp.
4262 ;;However, if LIMIT or the buffer limit is reached inside a nested paren
4263 ;;then the point will be left at the limit.
4265 ;;Non-nil is returned if the point moved, nil otherwise.
4267 ;;Note that this function might do hidden buffer changes. See the
4268 ;;comment at the start of cc-engine.el for more info."
4270 ;; (save-restriction
4271 ;; (when limit
4272 ;; (narrow-to-region limit (point-max)))
4274 ;; (let ((start (point)))
4275 ;; (catch 'done
4276 ;; (while (let ((last-pos (point))
4277 ;; (stop-pos (progn
4278 ;; (skip-chars-backward skip-chars)
4279 ;; (point))))
4281 ;; ;; Skip back over the same region as
4282 ;; ;; `skip-chars-backward' above, but keep to
4283 ;; ;; syntactically relevant positions.
4284 ;; (goto-char last-pos)
4285 ;; (while (and
4286 ;; ;; `re-search-backward' with a single char regexp
4287 ;; ;; should be fast.
4288 ;; (re-search-backward
4289 ;; (if paren-level c-ssb-stop-paren-re c-ssb-stop-re)
4290 ;; stop-pos 'move)
4292 ;; (progn
4293 ;; (cond
4294 ;; ((looking-at "\\s(")
4295 ;; ;; `paren-level' is set and we've found the
4296 ;; ;; start of the containing paren.
4297 ;; (forward-char)
4298 ;; (throw 'done t))
4300 ;; ((looking-at c-ssb-sexp-end-re)
4301 ;; ;; We're at the end of a string literal or paren
4302 ;; ;; sexp (if `paren-level' is set).
4303 ;; (forward-char)
4304 ;; (condition-case nil
4305 ;; (c-backward-sexp)
4306 ;; (error
4307 ;; (goto-char limit)
4308 ;; (throw 'done t))))
4310 ;; (t
4311 ;; (forward-char)
4312 ;; ;; At the end of some syntactic ws or possibly
4313 ;; ;; after a plain '/' operator.
4314 ;; (let ((pos (point)))
4315 ;; (c-backward-syntactic-ws)
4316 ;; (if (= pos (point))
4317 ;; ;; Was a plain '/' operator. Go past it.
4318 ;; (backward-char)))))
4320 ;; (> (point) stop-pos))))
4322 ;; ;; Now the point is either at `stop-pos' or at some
4323 ;; ;; position further back if `stop-pos' was at a
4324 ;; ;; syntactically irrelevant place.
4326 ;; ;; Skip additional syntactic ws so that we don't stop
4327 ;; ;; at the end of a comment if `skip-chars' is
4328 ;; ;; something like "^/".
4329 ;; (c-backward-syntactic-ws)
4331 ;; (< (point) stop-pos))))
4333 ;; ;; We might want to extend this with more useful return values
4334 ;; ;; in the future.
4335 ;; (/= (point) start))))
4338 ;; Tools for handling comments and string literals.
4340 (defun c-in-literal (&optional lim detect-cpp)
4341 "Return the type of literal point is in, if any.
4342 The return value is `c' if in a C-style comment, `c++' if in a C++
4343 style comment, `string' if in a string literal, `pound' if DETECT-CPP
4344 is non-nil and in a preprocessor line, or nil if somewhere else.
4345 Optional LIM is used as the backward limit of the search. If omitted,
4346 or nil, `c-beginning-of-defun' is used.
4348 The last point calculated is cached if the cache is enabled, i.e. if
4349 `c-in-literal-cache' is bound to a two element vector.
4351 Note that this function might do hidden buffer changes. See the
4352 comment at the start of cc-engine.el for more info."
4353 (save-restriction
4354 (widen)
4355 (let* ((safe-place (c-state-semi-safe-place (point)))
4356 (lit (c-state-pp-to-literal safe-place (point))))
4357 (or (cadr lit)
4358 (and detect-cpp
4359 (save-excursion (c-beginning-of-macro))
4360 'pound)))))
4362 (defun c-literal-limits (&optional lim near not-in-delimiter)
4363 "Return a cons of the beginning and end positions of the comment or
4364 string surrounding point (including both delimiters), or nil if point
4365 isn't in one. If LIM is non-nil, it's used as the \"safe\" position
4366 to start parsing from. If NEAR is non-nil, then the limits of any
4367 literal next to point is returned. \"Next to\" means there's only
4368 spaces and tabs between point and the literal. The search for such a
4369 literal is done first in forward direction. If NOT-IN-DELIMITER is
4370 non-nil, the case when point is inside a starting delimiter won't be
4371 recognized. This only has effect for comments which have starting
4372 delimiters with more than one character.
4374 Note that this function might do hidden buffer changes. See the
4375 comment at the start of cc-engine.el for more info."
4377 (save-excursion
4378 (let* ((pos (point))
4379 (lim (or lim (c-state-semi-safe-place pos)))
4380 (pp-to-lit (save-restriction
4381 (widen)
4382 (c-state-pp-to-literal lim pos)))
4383 (state (car pp-to-lit))
4384 (lit-limits (car (cddr pp-to-lit))))
4386 (cond
4387 (lit-limits)
4388 ((and (not not-in-delimiter)
4389 (not (elt state 5))
4390 (eq (char-before) ?/)
4391 (looking-at "[/*]")) ; FIXME!!! use c-line/block-comment-starter. 2008-09-28.
4392 ;; We're standing in a comment starter.
4393 (backward-char 1)
4394 (cons (point) (progn (c-forward-single-comment) (point))))
4396 (near
4397 (goto-char pos)
4398 ;; Search forward for a literal.
4399 (skip-chars-forward " \t")
4400 (cond
4401 ((looking-at c-string-limit-regexp) ; String.
4402 (cons (point) (or (c-safe (c-forward-sexp 1) (point))
4403 (point-max))))
4405 ((looking-at c-comment-start-regexp) ; Line or block comment.
4406 (cons (point) (progn (c-forward-single-comment) (point))))
4409 ;; Search backward.
4410 (skip-chars-backward " \t")
4412 (let ((end (point)) beg)
4413 (cond
4414 ((save-excursion
4415 (< (skip-syntax-backward c-string-syntax) 0)) ; String.
4416 (setq beg (c-safe (c-backward-sexp 1) (point))))
4418 ((and (c-safe (forward-char -2) t)
4419 (looking-at "*/"))
4420 ;; Block comment. Due to the nature of line
4421 ;; comments, they will always be covered by the
4422 ;; normal case above.
4423 (goto-char end)
4424 (c-backward-single-comment)
4425 ;; If LIM is bogus, beg will be bogus.
4426 (setq beg (point))))
4428 (if beg (cons beg end))))))
4429 ))))
4431 ;; In case external callers use this; it did have a docstring.
4432 (defalias 'c-literal-limits-fast 'c-literal-limits)
4434 (defun c-collect-line-comments (range)
4435 "If the argument is a cons of two buffer positions (such as returned by
4436 `c-literal-limits'), and that range contains a C++ style line comment,
4437 then an extended range is returned that contains all adjacent line
4438 comments (i.e. all comments that starts in the same column with no
4439 empty lines or non-whitespace characters between them). Otherwise the
4440 argument is returned.
4442 Note that this function might do hidden buffer changes. See the
4443 comment at the start of cc-engine.el for more info."
4445 (save-excursion
4446 (condition-case nil
4447 (if (and (consp range) (progn
4448 (goto-char (car range))
4449 (looking-at c-line-comment-starter)))
4450 (let ((col (current-column))
4451 (beg (point))
4452 (bopl (c-point 'bopl))
4453 (end (cdr range)))
4454 ;; Got to take care in the backward direction to handle
4455 ;; comments which are preceded by code.
4456 (while (and (c-backward-single-comment)
4457 (>= (point) bopl)
4458 (looking-at c-line-comment-starter)
4459 (= col (current-column)))
4460 (setq beg (point)
4461 bopl (c-point 'bopl)))
4462 (goto-char end)
4463 (while (and (progn (skip-chars-forward " \t")
4464 (looking-at c-line-comment-starter))
4465 (= col (current-column))
4466 (prog1 (zerop (forward-line 1))
4467 (setq end (point)))))
4468 (cons beg end))
4469 range)
4470 (error range))))
4472 (defun c-literal-type (range)
4473 "Convenience function that given the result of `c-literal-limits',
4474 returns nil or the type of literal that the range surrounds, one
4475 of the symbols 'c, 'c++ or 'string. It's much faster than using
4476 `c-in-literal' and is intended to be used when you need both the
4477 type of a literal and its limits.
4479 Note that this function might do hidden buffer changes. See the
4480 comment at the start of cc-engine.el for more info."
4482 (if (consp range)
4483 (save-excursion
4484 (goto-char (car range))
4485 (cond ((looking-at c-string-limit-regexp) 'string)
4486 ((or (looking-at "//") ; c++ line comment
4487 (and (looking-at "\\s<") ; comment starter
4488 (looking-at "#"))) ; awk comment.
4489 'c++)
4490 (t 'c))) ; Assuming the range is valid.
4491 range))
4493 (defsubst c-determine-limit-get-base (start try-size)
4494 ;; Get a "safe place" approximately TRY-SIZE characters before START.
4495 ;; This doesn't preserve point.
4496 (let* ((pos (max (- start try-size) (point-min)))
4497 (base (c-state-semi-safe-place pos))
4498 (s (parse-partial-sexp base pos)))
4499 (if (or (nth 4 s) (nth 3 s)) ; comment or string
4500 (nth 8 s)
4501 (point))))
4503 (defun c-determine-limit (how-far-back &optional start try-size)
4504 ;; Return a buffer position HOW-FAR-BACK non-literal characters from START
4505 ;; (default point). This is done by going back further in the buffer then
4506 ;; searching forward for literals. The position found won't be in a
4507 ;; literal. We start searching for the sought position TRY-SIZE (default
4508 ;; twice HOW-FAR-BACK) bytes back from START. This function must be fast.
4509 ;; :-)
4510 (save-excursion
4511 (let* ((start (or start (point)))
4512 (try-size (or try-size (* 2 how-far-back)))
4513 (base (c-determine-limit-get-base start try-size))
4514 (pos base)
4516 (s (parse-partial-sexp pos pos)) ; null state.
4517 stack elt size
4518 (count 0))
4519 (while (< pos start)
4520 ;; Move forward one literal each time round this loop.
4521 ;; Move forward to the start of a comment or string.
4522 (setq s (parse-partial-sexp
4524 start
4525 nil ; target-depth
4526 nil ; stop-before
4527 s ; state
4528 'syntax-table)) ; stop-comment
4530 ;; Gather details of the non-literal-bit - starting pos and size.
4531 (setq size (- (if (or (nth 4 s) (nth 3 s))
4532 (nth 8 s)
4533 (point))
4534 pos))
4535 (if (> size 0)
4536 (setq stack (cons (cons pos size) stack)))
4538 ;; Move forward to the end of the comment/string.
4539 (if (or (nth 4 s) (nth 3 s))
4540 (setq s (parse-partial-sexp
4541 (point)
4542 start
4543 nil ; target-depth
4544 nil ; stop-before
4545 s ; state
4546 'syntax-table))) ; stop-comment
4547 (setq pos (point)))
4549 ;; Now try and find enough non-literal characters recorded on the stack.
4550 ;; Go back one recorded literal each time round this loop.
4551 (while (and (< count how-far-back)
4552 stack)
4553 (setq elt (car stack)
4554 stack (cdr stack))
4555 (setq count (+ count (cdr elt))))
4557 ;; Have we found enough yet?
4558 (cond
4559 ((>= count how-far-back)
4560 (+ (car elt) (- count how-far-back)))
4561 ((eq base (point-min))
4562 (point-min))
4564 (c-determine-limit (- how-far-back count) base try-size))))))
4566 (defun c-determine-+ve-limit (how-far &optional start-pos)
4567 ;; Return a buffer position about HOW-FAR non-literal characters forward
4568 ;; from START-POS (default point), which must not be inside a literal.
4569 (save-excursion
4570 (let ((pos (or start-pos (point)))
4571 (count how-far)
4572 (s (parse-partial-sexp (point) (point)))) ; null state
4573 (while (and (not (eobp))
4574 (> count 0))
4575 ;; Scan over counted characters.
4576 (setq s (parse-partial-sexp
4578 (min (+ pos count) (point-max))
4579 nil ; target-depth
4580 nil ; stop-before
4581 s ; state
4582 'syntax-table)) ; stop-comment
4583 (setq count (- count (- (point) pos) 1)
4584 pos (point))
4585 ;; Scan over literal characters.
4586 (if (nth 8 s)
4587 (setq s (parse-partial-sexp
4589 (point-max)
4590 nil ; target-depth
4591 nil ; stop-before
4592 s ; state
4593 'syntax-table) ; stop-comment
4594 pos (point))))
4595 (point))))
4598 ;; `c-find-decl-spots' and accompanying stuff.
4600 ;; Variables used in `c-find-decl-spots' to cache the search done for
4601 ;; the first declaration in the last call. When that function starts,
4602 ;; it needs to back up over syntactic whitespace to look at the last
4603 ;; token before the region being searched. That can sometimes cause
4604 ;; moves back and forth over a quite large region of comments and
4605 ;; macros, which would be repeated for each changed character when
4606 ;; we're called during fontification, since font-lock refontifies the
4607 ;; current line for each change. Thus it's worthwhile to cache the
4608 ;; first match.
4610 ;; `c-find-decl-syntactic-pos' is a syntactically relevant position in
4611 ;; the syntactic whitespace less or equal to some start position.
4612 ;; There's no cached value if it's nil.
4614 ;; `c-find-decl-match-pos' is the match position if
4615 ;; `c-find-decl-prefix-search' matched before the syntactic whitespace
4616 ;; at `c-find-decl-syntactic-pos', or nil if there's no such match.
4617 (defvar c-find-decl-syntactic-pos nil)
4618 (make-variable-buffer-local 'c-find-decl-syntactic-pos)
4619 (defvar c-find-decl-match-pos nil)
4620 (make-variable-buffer-local 'c-find-decl-match-pos)
4622 (defsubst c-invalidate-find-decl-cache (change-min-pos)
4623 (and c-find-decl-syntactic-pos
4624 (< change-min-pos c-find-decl-syntactic-pos)
4625 (setq c-find-decl-syntactic-pos nil)))
4627 ; (defface c-debug-decl-spot-face
4628 ; '((t (:background "Turquoise")))
4629 ; "Debug face to mark the spots where `c-find-decl-spots' stopped.")
4630 ; (defface c-debug-decl-sws-face
4631 ; '((t (:background "Khaki")))
4632 ; "Debug face to mark the syntactic whitespace between the declaration
4633 ; spots and the preceding token end.")
4635 (defmacro c-debug-put-decl-spot-faces (match-pos decl-pos)
4636 (when (facep 'c-debug-decl-spot-face)
4637 `(c-save-buffer-state ((match-pos ,match-pos) (decl-pos ,decl-pos))
4638 (c-debug-add-face (max match-pos (point-min)) decl-pos
4639 'c-debug-decl-sws-face)
4640 (c-debug-add-face decl-pos (min (1+ decl-pos) (point-max))
4641 'c-debug-decl-spot-face))))
4642 (defmacro c-debug-remove-decl-spot-faces (beg end)
4643 (when (facep 'c-debug-decl-spot-face)
4644 `(c-save-buffer-state ()
4645 (c-debug-remove-face ,beg ,end 'c-debug-decl-spot-face)
4646 (c-debug-remove-face ,beg ,end 'c-debug-decl-sws-face))))
4648 (defmacro c-find-decl-prefix-search ()
4649 ;; Macro used inside `c-find-decl-spots'. It ought to be a defun,
4650 ;; but it contains lots of free variables that refer to things
4651 ;; inside `c-find-decl-spots'. The point is left at `cfd-match-pos'
4652 ;; if there is a match, otherwise at `cfd-limit'.
4654 ;; This macro might do hidden buffer changes.
4656 '(progn
4657 ;; Find the next property match position if we haven't got one already.
4658 (unless cfd-prop-match
4659 (save-excursion
4660 (while (progn
4661 (goto-char (next-single-property-change
4662 (point) 'c-type nil cfd-limit))
4663 (and (< (point) cfd-limit)
4664 (not (eq (c-get-char-property (1- (point)) 'c-type)
4665 'c-decl-end)))))
4666 (setq cfd-prop-match (point))))
4668 ;; Find the next `c-decl-prefix-or-start-re' match if we haven't
4669 ;; got one already.
4670 (unless cfd-re-match
4672 (if (> cfd-re-match-end (point))
4673 (goto-char cfd-re-match-end))
4675 (while (if (setq cfd-re-match-end
4676 (re-search-forward c-decl-prefix-or-start-re
4677 cfd-limit 'move))
4679 ;; Match. Check if it's inside a comment or string literal.
4680 (c-got-face-at
4681 (if (setq cfd-re-match (match-end 1))
4682 ;; Matched the end of a token preceding a decl spot.
4683 (progn
4684 (goto-char cfd-re-match)
4685 (1- cfd-re-match))
4686 ;; Matched a token that start a decl spot.
4687 (goto-char (match-beginning 0))
4688 (point))
4689 c-literal-faces)
4691 ;; No match. Finish up and exit the loop.
4692 (setq cfd-re-match cfd-limit)
4693 nil)
4695 ;; Skip out of comments and string literals.
4696 (while (progn
4697 (goto-char (next-single-property-change
4698 (point) 'face nil cfd-limit))
4699 (and (< (point) cfd-limit)
4700 (c-got-face-at (point) c-literal-faces)))))
4702 ;; If we matched at the decl start, we have to back up over the
4703 ;; preceding syntactic ws to set `cfd-match-pos' and to catch
4704 ;; any decl spots in the syntactic ws.
4705 (unless cfd-re-match
4706 (c-backward-syntactic-ws)
4707 (setq cfd-re-match (point))))
4709 ;; Choose whichever match is closer to the start.
4710 (if (< cfd-re-match cfd-prop-match)
4711 (setq cfd-match-pos cfd-re-match
4712 cfd-re-match nil)
4713 (setq cfd-match-pos cfd-prop-match
4714 cfd-prop-match nil))
4716 (goto-char cfd-match-pos)
4718 (when (< cfd-match-pos cfd-limit)
4719 ;; Skip forward past comments only so we don't skip macros.
4720 (c-forward-comments)
4721 ;; Set the position to continue at. We can avoid going over
4722 ;; the comments skipped above a second time, but it's possible
4723 ;; that the comment skipping has taken us past `cfd-prop-match'
4724 ;; since the property might be used inside comments.
4725 (setq cfd-continue-pos (if cfd-prop-match
4726 (min cfd-prop-match (point))
4727 (point))))))
4729 (defun c-find-decl-spots (cfd-limit cfd-decl-re cfd-face-checklist cfd-fun)
4730 ;; Call CFD-FUN for each possible spot for a declaration, cast or
4731 ;; label from the point to CFD-LIMIT.
4733 ;; CFD-FUN is called with point at the start of the spot. It's passed two
4734 ;; arguments: The first is the end position of the token preceding the spot,
4735 ;; or 0 for the implicit match at bob. The second is a flag that is t when
4736 ;; the match is inside a macro. Point should be moved forward by at least
4737 ;; one token.
4739 ;; If CFD-FUN adds `c-decl-end' properties somewhere below the current spot,
4740 ;; it should return non-nil to ensure that the next search will find them.
4742 ;; Such a spot is:
4743 ;; o The first token after bob.
4744 ;; o The first token after the end of submatch 1 in
4745 ;; `c-decl-prefix-or-start-re' when that submatch matches.
4746 ;; o The start of each `c-decl-prefix-or-start-re' match when
4747 ;; submatch 1 doesn't match.
4748 ;; o The first token after the end of each occurrence of the
4749 ;; `c-type' text property with the value `c-decl-end', provided
4750 ;; `c-type-decl-end-used' is set.
4752 ;; Only a spot that match CFD-DECL-RE and whose face is in the
4753 ;; CFD-FACE-CHECKLIST list causes CFD-FUN to be called. The face
4754 ;; check is disabled if CFD-FACE-CHECKLIST is nil.
4756 ;; If the match is inside a macro then the buffer is narrowed to the
4757 ;; end of it, so that CFD-FUN can investigate the following tokens
4758 ;; without matching something that begins inside a macro and ends
4759 ;; outside it. It's to avoid this work that the CFD-DECL-RE and
4760 ;; CFD-FACE-CHECKLIST checks exist.
4762 ;; The spots are visited approximately in order from top to bottom.
4763 ;; It's however the positions where `c-decl-prefix-or-start-re'
4764 ;; matches and where `c-decl-end' properties are found that are in
4765 ;; order. Since the spots often are at the following token, they
4766 ;; might be visited out of order insofar as more spots are reported
4767 ;; later on within the syntactic whitespace between the match
4768 ;; positions and their spots.
4770 ;; It's assumed that comments and strings are fontified in the
4771 ;; searched range.
4773 ;; This is mainly used in fontification, and so has an elaborate
4774 ;; cache to handle repeated calls from the same start position; see
4775 ;; the variables above.
4777 ;; All variables in this function begin with `cfd-' to avoid name
4778 ;; collision with the (dynamically bound) variables used in CFD-FUN.
4780 ;; This function might do hidden buffer changes.
4782 (let ((cfd-start-pos (point))
4783 (cfd-buffer-end (point-max))
4784 ;; The end of the token preceding the decl spot last found
4785 ;; with `c-decl-prefix-or-start-re'. `cfd-limit' if there's
4786 ;; no match.
4787 cfd-re-match
4788 ;; The end position of the last `c-decl-prefix-or-start-re'
4789 ;; match. If this is greater than `cfd-continue-pos', the
4790 ;; next regexp search is started here instead.
4791 (cfd-re-match-end (point-min))
4792 ;; The end of the last `c-decl-end' found by
4793 ;; `c-find-decl-prefix-search'. `cfd-limit' if there's no
4794 ;; match. If searching for the property isn't needed then we
4795 ;; disable it by setting it to `cfd-limit' directly.
4796 (cfd-prop-match (unless c-type-decl-end-used cfd-limit))
4797 ;; The end of the token preceding the decl spot last found by
4798 ;; `c-find-decl-prefix-search'. 0 for the implicit match at
4799 ;; bob. `cfd-limit' if there's no match. In other words,
4800 ;; this is the minimum of `cfd-re-match' and `cfd-prop-match'.
4801 (cfd-match-pos cfd-limit)
4802 ;; The position to continue searching at.
4803 cfd-continue-pos
4804 ;; The position of the last "real" token we've stopped at.
4805 ;; This can be greater than `cfd-continue-pos' when we get
4806 ;; hits inside macros or at `c-decl-end' positions inside
4807 ;; comments.
4808 (cfd-token-pos 0)
4809 ;; The end position of the last entered macro.
4810 (cfd-macro-end 0))
4812 ;; Initialize by finding a syntactically relevant start position
4813 ;; before the point, and do the first `c-decl-prefix-or-start-re'
4814 ;; search unless we're at bob.
4816 (let (start-in-literal start-in-macro syntactic-pos)
4817 ;; Must back up a bit since we look for the end of the previous
4818 ;; statement or declaration, which is earlier than the first
4819 ;; returned match.
4821 (cond
4822 ;; First we need to move to a syntactically relevant position.
4823 ;; Begin by backing out of comment or string literals.
4824 ((and
4825 (when (c-got-face-at (point) c-literal-faces)
4826 ;; Try to use the faces to back up to the start of the
4827 ;; literal. FIXME: What if the point is on a declaration
4828 ;; inside a comment?
4829 (while (and (not (bobp))
4830 (c-got-face-at (1- (point)) c-literal-faces))
4831 (goto-char (previous-single-property-change
4832 (point) 'face nil (point-min))))
4834 ;; XEmacs doesn't fontify the quotes surrounding string
4835 ;; literals.
4836 (and (featurep 'xemacs)
4837 (eq (get-text-property (point) 'face)
4838 'font-lock-string-face)
4839 (not (bobp))
4840 (progn (backward-char)
4841 (not (looking-at c-string-limit-regexp)))
4842 (forward-char))
4844 ;; Don't trust the literal to contain only literal faces
4845 ;; (the font lock package might not have fontified the
4846 ;; start of it at all, for instance) so check that we have
4847 ;; arrived at something that looks like a start or else
4848 ;; resort to `c-literal-limits'.
4849 (unless (looking-at c-literal-start-regexp)
4850 (let ((range (c-literal-limits)))
4851 (if range (goto-char (car range)))))
4853 (setq start-in-literal (point)))
4855 ;; The start is in a literal. If the limit is in the same
4856 ;; one we don't have to find a syntactic position etc. We
4857 ;; only check that if the limit is at or before bonl to save
4858 ;; time; it covers the by far most common case when font-lock
4859 ;; refontifies the current line only.
4860 (<= cfd-limit (c-point 'bonl cfd-start-pos))
4861 (save-excursion
4862 (goto-char cfd-start-pos)
4863 (while (progn
4864 (goto-char (next-single-property-change
4865 (point) 'face nil cfd-limit))
4866 (and (< (point) cfd-limit)
4867 (c-got-face-at (point) c-literal-faces))))
4868 (= (point) cfd-limit)))
4870 ;; Completely inside a literal. Set up variables to trig the
4871 ;; (< cfd-continue-pos cfd-start-pos) case below and it'll
4872 ;; find a suitable start position.
4873 (setq cfd-continue-pos start-in-literal))
4875 ;; Check if the region might be completely inside a macro, to
4876 ;; optimize that like the completely-inside-literal above.
4877 ((save-excursion
4878 (and (= (forward-line 1) 0)
4879 (bolp) ; forward-line has funny behavior at eob.
4880 (>= (point) cfd-limit)
4881 (progn (backward-char)
4882 (eq (char-before) ?\\))))
4883 ;; (Maybe) completely inside a macro. Only need to trig the
4884 ;; (< cfd-continue-pos cfd-start-pos) case below to make it
4885 ;; set things up.
4886 (setq cfd-continue-pos (1- cfd-start-pos)
4887 start-in-macro t))
4890 ;; Back out of any macro so we don't miss any declaration
4891 ;; that could follow after it.
4892 (when (c-beginning-of-macro)
4893 (setq start-in-macro t))
4895 ;; Now we're at a proper syntactically relevant position so we
4896 ;; can use the cache. But first clear it if it applied
4897 ;; further down.
4898 (c-invalidate-find-decl-cache cfd-start-pos)
4900 (setq syntactic-pos (point))
4901 (unless (eq syntactic-pos c-find-decl-syntactic-pos)
4902 ;; Don't have to do this if the cache is relevant here,
4903 ;; typically if the same line is refontified again. If
4904 ;; we're just some syntactic whitespace further down we can
4905 ;; still use the cache to limit the skipping.
4906 (c-backward-syntactic-ws c-find-decl-syntactic-pos))
4908 ;; If we hit `c-find-decl-syntactic-pos' and
4909 ;; `c-find-decl-match-pos' is set then we install the cached
4910 ;; values. If we hit `c-find-decl-syntactic-pos' and
4911 ;; `c-find-decl-match-pos' is nil then we know there's no decl
4912 ;; prefix in the whitespace before `c-find-decl-syntactic-pos'
4913 ;; and so we can continue the search from this point. If we
4914 ;; didn't hit `c-find-decl-syntactic-pos' then we're now in
4915 ;; the right spot to begin searching anyway.
4916 (if (and (eq (point) c-find-decl-syntactic-pos)
4917 c-find-decl-match-pos)
4918 (setq cfd-match-pos c-find-decl-match-pos
4919 cfd-continue-pos syntactic-pos)
4921 (setq c-find-decl-syntactic-pos syntactic-pos)
4923 (when (if (bobp)
4924 ;; Always consider bob a match to get the first
4925 ;; declaration in the file. Do this separately instead of
4926 ;; letting `c-decl-prefix-or-start-re' match bob, so that
4927 ;; regexp always can consume at least one character to
4928 ;; ensure that we won't get stuck in an infinite loop.
4929 (setq cfd-re-match 0)
4930 (backward-char)
4931 (c-beginning-of-current-token)
4932 (< (point) cfd-limit))
4933 ;; Do an initial search now. In the bob case above it's
4934 ;; only done to search for a `c-decl-end' spot.
4935 (c-find-decl-prefix-search))
4937 (setq c-find-decl-match-pos (and (< cfd-match-pos cfd-start-pos)
4938 cfd-match-pos)))))
4940 ;; Advance `cfd-continue-pos' if it's before the start position.
4941 ;; The closest continue position that might have effect at or
4942 ;; after the start depends on what we started in. This also
4943 ;; finds a suitable start position in the special cases when the
4944 ;; region is completely within a literal or macro.
4945 (when (and cfd-continue-pos (< cfd-continue-pos cfd-start-pos))
4947 (cond
4948 (start-in-macro
4949 ;; If we're in a macro then it's the closest preceding token
4950 ;; in the macro. Check this before `start-in-literal',
4951 ;; since if we're inside a literal in a macro, the preceding
4952 ;; token is earlier than any `c-decl-end' spot inside the
4953 ;; literal (comment).
4954 (goto-char (or start-in-literal cfd-start-pos))
4955 ;; The only syntactic ws in macros are comments.
4956 (c-backward-comments)
4957 (backward-char)
4958 (c-beginning-of-current-token))
4960 (start-in-literal
4961 ;; If we're in a comment it can only be the closest
4962 ;; preceding `c-decl-end' position within that comment, if
4963 ;; any. Go back to the beginning of such a property so that
4964 ;; `c-find-decl-prefix-search' will find the end of it.
4965 ;; (Can't stop at the end and install it directly on
4966 ;; `cfd-prop-match' since that variable might be cleared
4967 ;; after `cfd-fun' below.)
4969 ;; Note that if the literal is a string then the property
4970 ;; search will simply skip to the beginning of it right
4971 ;; away.
4972 (if (not c-type-decl-end-used)
4973 (goto-char start-in-literal)
4974 (goto-char cfd-start-pos)
4975 (while (progn
4976 (goto-char (previous-single-property-change
4977 (point) 'c-type nil start-in-literal))
4978 (and (> (point) start-in-literal)
4979 (not (eq (c-get-char-property (point) 'c-type)
4980 'c-decl-end))))))
4982 (when (= (point) start-in-literal)
4983 ;; Didn't find any property inside the comment, so we can
4984 ;; skip it entirely. (This won't skip past a string, but
4985 ;; that'll be handled quickly by the next
4986 ;; `c-find-decl-prefix-search' anyway.)
4987 (c-forward-single-comment)
4988 (if (> (point) cfd-limit)
4989 (goto-char cfd-limit))))
4992 ;; If we started in normal code, the only match that might
4993 ;; apply before the start is what we already got in
4994 ;; `cfd-match-pos' so we can continue at the start position.
4995 ;; (Note that we don't get here if the first match is below
4996 ;; it.)
4997 (goto-char cfd-start-pos)))
4999 ;; Delete found matches if they are before our new continue
5000 ;; position, so that `c-find-decl-prefix-search' won't back up
5001 ;; to them later on.
5002 (setq cfd-continue-pos (point))
5003 (when (and cfd-re-match (< cfd-re-match cfd-continue-pos))
5004 (setq cfd-re-match nil))
5005 (when (and cfd-prop-match (< cfd-prop-match cfd-continue-pos))
5006 (setq cfd-prop-match nil)))
5008 (if syntactic-pos
5009 ;; This is the normal case and we got a proper syntactic
5010 ;; position. If there's a match then it's always outside
5011 ;; macros and comments, so advance to the next token and set
5012 ;; `cfd-token-pos'. The loop below will later go back using
5013 ;; `cfd-continue-pos' to fix declarations inside the
5014 ;; syntactic ws.
5015 (when (and cfd-match-pos (< cfd-match-pos syntactic-pos))
5016 (goto-char syntactic-pos)
5017 (c-forward-syntactic-ws)
5018 (and cfd-continue-pos
5019 (< cfd-continue-pos (point))
5020 (setq cfd-token-pos (point))))
5022 ;; Have one of the special cases when the region is completely
5023 ;; within a literal or macro. `cfd-continue-pos' is set to a
5024 ;; good start position for the search, so do it.
5025 (c-find-decl-prefix-search)))
5027 ;; Now loop. Round what? (ACM, 2006/7/5). We already got the first match.
5029 (while (progn
5030 (while (and
5031 (< cfd-match-pos cfd-limit)
5034 ;; Kludge to filter out matches on the "<" that
5035 ;; aren't open parens, for the sake of languages
5036 ;; that got `c-recognize-<>-arglists' set.
5037 (and (eq (char-before cfd-match-pos) ?<)
5038 (not (c-get-char-property (1- cfd-match-pos)
5039 'syntax-table)))
5041 ;; If `cfd-continue-pos' is less or equal to
5042 ;; `cfd-token-pos', we've got a hit inside a macro
5043 ;; that's in the syntactic whitespace before the last
5044 ;; "real" declaration we've checked. If they're equal
5045 ;; we've arrived at the declaration a second time, so
5046 ;; there's nothing to do.
5047 (= cfd-continue-pos cfd-token-pos)
5049 (progn
5050 ;; If `cfd-continue-pos' is less than `cfd-token-pos'
5051 ;; we're still searching for declarations embedded in
5052 ;; the syntactic whitespace. In that case we need
5053 ;; only to skip comments and not macros, since they
5054 ;; can't be nested, and that's already been done in
5055 ;; `c-find-decl-prefix-search'.
5056 (when (> cfd-continue-pos cfd-token-pos)
5057 (c-forward-syntactic-ws)
5058 (setq cfd-token-pos (point)))
5060 ;; Continue if the following token fails the
5061 ;; CFD-DECL-RE and CFD-FACE-CHECKLIST checks.
5062 (when (or (>= (point) cfd-limit)
5063 (not (looking-at cfd-decl-re))
5064 (and cfd-face-checklist
5065 (not (c-got-face-at
5066 (point) cfd-face-checklist))))
5067 (goto-char cfd-continue-pos)
5068 t)))
5070 (< (point) cfd-limit))
5071 (c-find-decl-prefix-search))
5073 (< (point) cfd-limit))
5075 (when (and
5076 (>= (point) cfd-start-pos)
5078 (progn
5079 ;; Narrow to the end of the macro if we got a hit inside
5080 ;; one, to avoid recognizing things that start inside the
5081 ;; macro and end outside it.
5082 (when (> cfd-match-pos cfd-macro-end)
5083 ;; Not in the same macro as in the previous round.
5084 (save-excursion
5085 (goto-char cfd-match-pos)
5086 (setq cfd-macro-end
5087 (if (save-excursion (and (c-beginning-of-macro)
5088 (< (point) cfd-match-pos)))
5089 (progn (c-end-of-macro)
5090 (point))
5091 0))))
5093 (if (zerop cfd-macro-end)
5095 (if (> cfd-macro-end (point))
5096 (progn (narrow-to-region (point-min) cfd-macro-end)
5098 ;; The matched token was the last thing in the macro,
5099 ;; so the whole match is bogus.
5100 (setq cfd-macro-end 0)
5101 nil))))
5103 (c-debug-put-decl-spot-faces cfd-match-pos (point))
5104 (if (funcall cfd-fun cfd-match-pos (/= cfd-macro-end 0))
5105 (setq cfd-prop-match nil))
5107 (when (/= cfd-macro-end 0)
5108 ;; Restore limits if we did macro narrowing above.
5109 (narrow-to-region (point-min) cfd-buffer-end)))
5111 (goto-char cfd-continue-pos)
5112 (if (= cfd-continue-pos cfd-limit)
5113 (setq cfd-match-pos cfd-limit)
5114 (c-find-decl-prefix-search))))) ; Moves point, sets cfd-continue-pos,
5115 ; cfd-match-pos, etc.
5118 ;; A cache for found types.
5120 ;; Buffer local variable that contains an obarray with the types we've
5121 ;; found. If a declaration is recognized somewhere we record the
5122 ;; fully qualified identifier in it to recognize it as a type
5123 ;; elsewhere in the file too. This is not accurate since we do not
5124 ;; bother with the scoping rules of the languages, but in practice the
5125 ;; same name is seldom used as both a type and something else in a
5126 ;; file, and we only use this as a last resort in ambiguous cases (see
5127 ;; `c-forward-decl-or-cast-1').
5129 ;; Not every type need be in this cache. However, things which have
5130 ;; ceased to be types must be removed from it.
5132 ;; Template types in C++ are added here too but with the template
5133 ;; arglist replaced with "<>" in references or "<" for the one in the
5134 ;; primary type. E.g. the type "Foo<A,B>::Bar<C>" is stored as
5135 ;; "Foo<>::Bar<". This avoids storing very long strings (since C++
5136 ;; template specs can be fairly sized programs in themselves) and
5137 ;; improves the hit ratio (it's a type regardless of the template
5138 ;; args; it's just not the same type, but we're only interested in
5139 ;; recognizing types, not telling distinct types apart). Note that
5140 ;; template types in references are added here too; from the example
5141 ;; above there will also be an entry "Foo<".
5142 (defvar c-found-types nil)
5143 (make-variable-buffer-local 'c-found-types)
5145 (defsubst c-clear-found-types ()
5146 ;; Clears `c-found-types'.
5147 (setq c-found-types (make-vector 53 0)))
5149 (defun c-add-type (from to)
5150 ;; Add the given region as a type in `c-found-types'. If the region
5151 ;; doesn't match an existing type but there is a type which is equal
5152 ;; to the given one except that the last character is missing, then
5153 ;; the shorter type is removed. That's done to avoid adding all
5154 ;; prefixes of a type as it's being entered and font locked. This
5155 ;; doesn't cover cases like when characters are removed from a type
5156 ;; or added in the middle. We'd need the position of point when the
5157 ;; font locking is invoked to solve this well.
5159 ;; This function might do hidden buffer changes.
5160 (let ((type (c-syntactic-content from to c-recognize-<>-arglists)))
5161 (unless (intern-soft type c-found-types)
5162 (unintern (substring type 0 -1) c-found-types)
5163 (intern type c-found-types))))
5165 (defun c-unfind-type (name)
5166 ;; Remove the "NAME" from c-found-types, if present.
5167 (unintern name c-found-types))
5169 (defsubst c-check-type (from to)
5170 ;; Return non-nil if the given region contains a type in
5171 ;; `c-found-types'.
5173 ;; This function might do hidden buffer changes.
5174 (intern-soft (c-syntactic-content from to c-recognize-<>-arglists)
5175 c-found-types))
5177 (defun c-list-found-types ()
5178 ;; Return all the types in `c-found-types' as a sorted list of
5179 ;; strings.
5180 (let (type-list)
5181 (mapatoms (lambda (type)
5182 (setq type-list (cons (symbol-name type)
5183 type-list)))
5184 c-found-types)
5185 (sort type-list 'string-lessp)))
5187 ;; Shut up the byte compiler.
5188 (defvar c-maybe-stale-found-type)
5190 (defun c-trim-found-types (beg end old-len)
5191 ;; An after change function which, in conjunction with the info in
5192 ;; c-maybe-stale-found-type (set in c-before-change), removes a type
5193 ;; from `c-found-types', should this type have become stale. For
5194 ;; example, this happens to "foo" when "foo \n bar();" becomes
5195 ;; "foo(); \n bar();". Such stale types, if not removed, foul up
5196 ;; the fontification.
5198 ;; Have we, perhaps, added non-ws characters to the front/back of a found
5199 ;; type?
5200 (when (> end beg)
5201 (save-excursion
5202 (when (< end (point-max))
5203 (goto-char end)
5204 (if (and (c-beginning-of-current-token) ; only moves when we started in the middle
5205 (progn (goto-char end)
5206 (c-end-of-current-token)))
5207 (c-unfind-type (buffer-substring-no-properties
5208 end (point)))))
5209 (when (> beg (point-min))
5210 (goto-char beg)
5211 (if (and (c-end-of-current-token) ; only moves when we started in the middle
5212 (progn (goto-char beg)
5213 (c-beginning-of-current-token)))
5214 (c-unfind-type (buffer-substring-no-properties
5215 (point) beg))))))
5217 (if c-maybe-stale-found-type ; e.g. (c-decl-id-start "foo" 97 107 " (* ooka) " "o")
5218 (cond
5219 ;; Changing the amount of (already existing) whitespace - don't do anything.
5220 ((and (c-partial-ws-p beg end)
5221 (or (= beg end) ; removal of WS
5222 (string-match "^[ \t\n\r\f\v]*$" (nth 5 c-maybe-stale-found-type)))))
5224 ;; The syntactic relationship which defined a "found type" has been
5225 ;; destroyed.
5226 ((eq (car c-maybe-stale-found-type) 'c-decl-id-start)
5227 (c-unfind-type (cadr c-maybe-stale-found-type)))
5228 ;; ((eq (car c-maybe-stale-found-type) 'c-decl-type-start) FIXME!!!
5232 ;; Setting and removing syntax properties on < and > in languages (C++
5233 ;; and Java) where they can be template/generic delimiters as well as
5234 ;; their normal meaning of "less/greater than".
5236 ;; Normally, < and > have syntax 'punctuation'. When they are found to
5237 ;; be delimiters, they are marked as such with the category properties
5238 ;; c-<-as-paren-syntax, c->-as-paren-syntax respectively.
5240 ;; STRATEGY:
5242 ;; It is impossible to determine with certainty whether a <..> pair in
5243 ;; C++ is two comparison operators or is template delimiters, unless
5244 ;; one duplicates a lot of a C++ compiler. For example, the following
5245 ;; code fragment:
5247 ;; foo (a < b, c > d) ;
5249 ;; could be a function call with two integer parameters (each a
5250 ;; relational expression), or it could be a constructor for class foo
5251 ;; taking one parameter d of templated type "a < b, c >". They are
5252 ;; somewhat easier to distinguish in Java.
5254 ;; The strategy now (2010-01) adopted is to mark and unmark < and
5255 ;; > IN MATCHING PAIRS ONLY. [Previously, they were marked
5256 ;; individually when their context so indicated. This gave rise to
5257 ;; intractable problems when one of a matching pair was deleted, or
5258 ;; pulled into a literal.]
5260 ;; At each buffer change, the syntax-table properties are removed in a
5261 ;; before-change function and reapplied, when needed, in an
5262 ;; after-change function. It is far more important that the
5263 ;; properties get removed when they they are spurious than that they
5264 ;; be present when wanted.
5265 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5266 (defun c-clear-<-pair-props (&optional pos)
5267 ;; POS (default point) is at a < character. If it is marked with
5268 ;; open paren syntax-table text property, remove the property,
5269 ;; together with the close paren property on the matching > (if
5270 ;; any).
5271 (save-excursion
5272 (if pos
5273 (goto-char pos)
5274 (setq pos (point)))
5275 (when (equal (c-get-char-property (point) 'syntax-table)
5276 c-<-as-paren-syntax)
5277 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5278 (c-go-list-forward))
5279 (when (equal (c-get-char-property (1- (point)) 'syntax-table)
5280 c->-as-paren-syntax) ; should always be true.
5281 (c-clear-char-property (1- (point)) 'category))
5282 (c-clear-char-property pos 'category))))
5284 (defun c-clear->-pair-props (&optional pos)
5285 ;; POS (default point) is at a > character. If it is marked with
5286 ;; close paren syntax-table property, remove the property, together
5287 ;; with the open paren property on the matching < (if any).
5288 (save-excursion
5289 (if pos
5290 (goto-char pos)
5291 (setq pos (point)))
5292 (when (equal (c-get-char-property (point) 'syntax-table)
5293 c->-as-paren-syntax)
5294 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5295 (c-go-up-list-backward))
5296 (when (equal (c-get-char-property (point) 'syntax-table)
5297 c-<-as-paren-syntax) ; should always be true.
5298 (c-clear-char-property (point) 'category))
5299 (c-clear-char-property pos 'category))))
5301 (defun c-clear-<>-pair-props (&optional pos)
5302 ;; POS (default point) is at a < or > character. If it has an
5303 ;; open/close paren syntax-table property, remove this property both
5304 ;; from the current character and its partner (which will also be
5305 ;; thusly marked).
5306 (cond
5307 ((eq (char-after) ?\<)
5308 (c-clear-<-pair-props pos))
5309 ((eq (char-after) ?\>)
5310 (c-clear->-pair-props pos))
5311 (t (c-benign-error
5312 "c-clear-<>-pair-props called from wrong position"))))
5314 (defun c-clear-<-pair-props-if-match-after (lim &optional pos)
5315 ;; POS (default point) is at a < character. If it is both marked
5316 ;; with open/close paren syntax-table property, and has a matching >
5317 ;; (also marked) which is after LIM, remove the property both from
5318 ;; the current > and its partner. Return t when this happens, nil
5319 ;; when it doesn't.
5320 (save-excursion
5321 (if pos
5322 (goto-char pos)
5323 (setq pos (point)))
5324 (when (equal (c-get-char-property (point) 'syntax-table)
5325 c-<-as-paren-syntax)
5326 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5327 (c-go-list-forward))
5328 (when (and (>= (point) lim)
5329 (equal (c-get-char-property (1- (point)) 'syntax-table)
5330 c->-as-paren-syntax)) ; should always be true.
5331 (c-unmark-<->-as-paren (1- (point)))
5332 (c-unmark-<->-as-paren pos))
5333 t)))
5335 (defun c-clear->-pair-props-if-match-before (lim &optional pos)
5336 ;; POS (default point) is at a > character. If it is both marked
5337 ;; with open/close paren syntax-table property, and has a matching <
5338 ;; (also marked) which is before LIM, remove the property both from
5339 ;; the current < and its partner. Return t when this happens, nil
5340 ;; when it doesn't.
5341 (save-excursion
5342 (if pos
5343 (goto-char pos)
5344 (setq pos (point)))
5345 (when (equal (c-get-char-property (point) 'syntax-table)
5346 c->-as-paren-syntax)
5347 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5348 (c-go-up-list-backward))
5349 (when (and (<= (point) lim)
5350 (equal (c-get-char-property (point) 'syntax-table)
5351 c-<-as-paren-syntax)) ; should always be true.
5352 (c-unmark-<->-as-paren (point))
5353 (c-unmark-<->-as-paren pos))
5354 t)))
5356 ;; Set by c-common-init in cc-mode.el.
5357 (defvar c-new-BEG)
5358 (defvar c-new-END)
5360 (defun c-before-change-check-<>-operators (beg end)
5361 ;; Unmark certain pairs of "< .... >" which are currently marked as
5362 ;; template/generic delimiters. (This marking is via syntax-table
5363 ;; text properties).
5365 ;; These pairs are those which are in the current "statement" (i.e.,
5366 ;; the region between the {, }, or ; before BEG and the one after
5367 ;; END), and which enclose any part of the interval (BEG END).
5369 ;; Note that in C++ (?and Java), template/generic parens cannot
5370 ;; enclose a brace or semicolon, so we use these as bounds on the
5371 ;; region we must work on.
5373 ;; This function is called from before-change-functions (via
5374 ;; c-get-state-before-change-functions). Thus the buffer is widened,
5375 ;; and point is undefined, both at entry and exit.
5377 ;; FIXME!!! This routine ignores the possibility of macros entirely.
5378 ;; 2010-01-29.
5379 (save-excursion
5380 (let ((beg-lit-limits (progn (goto-char beg) (c-literal-limits)))
5381 (end-lit-limits (progn (goto-char end) (c-literal-limits)))
5382 new-beg new-end need-new-beg need-new-end)
5383 ;; Locate the barrier before the changed region
5384 (goto-char (if beg-lit-limits (car beg-lit-limits) beg))
5385 (c-syntactic-skip-backward "^;{}" (c-determine-limit 512))
5386 (setq new-beg (point))
5388 ;; Remove the syntax-table properties from each pertinent <...> pair.
5389 ;; Firsly, the ones with the < before beg and > after beg.
5390 (while (c-search-forward-char-property 'category 'c-<-as-paren-syntax beg)
5391 (if (c-clear-<-pair-props-if-match-after beg (1- (point)))
5392 (setq need-new-beg t)))
5394 ;; Locate the barrier after END.
5395 (goto-char (if end-lit-limits (cdr end-lit-limits) end))
5396 (c-syntactic-re-search-forward "[;{}]" (c-determine-+ve-limit 512) 'end)
5397 (setq new-end (point))
5399 ;; Remove syntax-table properties from the remaining pertinent <...>
5400 ;; pairs, those with a > after end and < before end.
5401 (while (c-search-backward-char-property 'category 'c->-as-paren-syntax end)
5402 (if (c-clear->-pair-props-if-match-before end)
5403 (setq need-new-end t)))
5405 ;; Extend the fontification region, if needed.
5406 (when need-new-beg
5407 (goto-char new-beg)
5408 (c-forward-syntactic-ws)
5409 (and (< (point) c-new-BEG) (setq c-new-BEG (point))))
5411 (when need-new-end
5412 (and (> new-end c-new-END) (setq c-new-END new-end))))))
5416 (defun c-after-change-check-<>-operators (beg end)
5417 ;; This is called from `after-change-functions' when
5418 ;; c-recognize-<>-arglists' is set. It ensures that no "<" or ">"
5419 ;; chars with paren syntax become part of another operator like "<<"
5420 ;; or ">=".
5422 ;; This function might do hidden buffer changes.
5424 (save-excursion
5425 (goto-char beg)
5426 (when (or (looking-at "[<>]")
5427 (< (skip-chars-backward "<>") 0))
5429 (goto-char beg)
5430 (c-beginning-of-current-token)
5431 (when (and (< (point) beg)
5432 (looking-at c-<>-multichar-token-regexp)
5433 (< beg (setq beg (match-end 0))))
5434 (while (progn (skip-chars-forward "^<>" beg)
5435 (< (point) beg))
5436 (c-clear-<>-pair-props)
5437 (forward-char))))
5439 (when (< beg end)
5440 (goto-char end)
5441 (when (or (looking-at "[<>]")
5442 (< (skip-chars-backward "<>") 0))
5444 (goto-char end)
5445 (c-beginning-of-current-token)
5446 (when (and (< (point) end)
5447 (looking-at c-<>-multichar-token-regexp)
5448 (< end (setq end (match-end 0))))
5449 (while (progn (skip-chars-forward "^<>" end)
5450 (< (point) end))
5451 (c-clear-<>-pair-props)
5452 (forward-char)))))))
5456 ;; Handling of small scale constructs like types and names.
5458 ;; Dynamically bound variable that instructs `c-forward-type' to also
5459 ;; treat possible types (i.e. those that it normally returns 'maybe or
5460 ;; 'found for) as actual types (and always return 'found for them).
5461 ;; This means that it records them in `c-record-type-identifiers' if
5462 ;; that is set, and that it adds them to `c-found-types'.
5463 (defvar c-promote-possible-types nil)
5465 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
5466 ;; mark up successfully parsed arglists with paren syntax properties on
5467 ;; the surrounding angle brackets and with `c-<>-arg-sep' in the
5468 ;; `c-type' property of each argument separating comma.
5470 ;; Setting this variable also makes `c-forward-<>-arglist' recurse into
5471 ;; all arglists for side effects (i.e. recording types), otherwise it
5472 ;; exploits any existing paren syntax properties to quickly jump to the
5473 ;; end of already parsed arglists.
5475 ;; Marking up the arglists is not the default since doing that correctly
5476 ;; depends on a proper value for `c-restricted-<>-arglists'.
5477 (defvar c-parse-and-markup-<>-arglists nil)
5479 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
5480 ;; not accept arglists that contain binary operators.
5482 ;; This is primarily used to handle C++ template arglists. C++
5483 ;; disambiguates them by checking whether the preceding name is a
5484 ;; template or not. We can't do that, so we assume it is a template
5485 ;; if it can be parsed as one. That usually works well since
5486 ;; comparison expressions on the forms "a < b > c" or "a < b, c > d"
5487 ;; in almost all cases would be pointless.
5489 ;; However, in function arglists, e.g. in "foo (a < b, c > d)", we
5490 ;; should let the comma separate the function arguments instead. And
5491 ;; in a context where the value of the expression is taken, e.g. in
5492 ;; "if (a < b || c > d)", it's probably not a template.
5493 (defvar c-restricted-<>-arglists nil)
5495 ;; Dynamically bound variables that instructs
5496 ;; `c-forward-keyword-clause', `c-forward-<>-arglist',
5497 ;; `c-forward-name', `c-forward-type', `c-forward-decl-or-cast-1', and
5498 ;; `c-forward-label' to record the ranges of all the type and
5499 ;; reference identifiers they encounter. They will build lists on
5500 ;; these variables where each element is a cons of the buffer
5501 ;; positions surrounding each identifier. This recording is only
5502 ;; activated when `c-record-type-identifiers' is non-nil.
5504 ;; All known types that can't be identifiers are recorded, and also
5505 ;; other possible types if `c-promote-possible-types' is set.
5506 ;; Recording is however disabled inside angle bracket arglists that
5507 ;; are encountered inside names and other angle bracket arglists.
5508 ;; Such occurrences are taken care of by `c-font-lock-<>-arglists'
5509 ;; instead.
5511 ;; Only the names in C++ template style references (e.g. "tmpl" in
5512 ;; "tmpl<a,b>::foo") are recorded as references, other references
5513 ;; aren't handled here.
5515 ;; `c-forward-label' records the label identifier(s) on
5516 ;; `c-record-ref-identifiers'.
5517 (defvar c-record-type-identifiers nil)
5518 (defvar c-record-ref-identifiers nil)
5520 ;; This variable will receive a cons cell of the range of the last
5521 ;; single identifier symbol stepped over by `c-forward-name' if it's
5522 ;; successful. This is the range that should be put on one of the
5523 ;; record lists above by the caller. It's assigned nil if there's no
5524 ;; such symbol in the name.
5525 (defvar c-last-identifier-range nil)
5527 (defmacro c-record-type-id (range)
5528 (if (eq (car-safe range) 'cons)
5529 ;; Always true.
5530 `(setq c-record-type-identifiers
5531 (cons ,range c-record-type-identifiers))
5532 `(let ((range ,range))
5533 (if range
5534 (setq c-record-type-identifiers
5535 (cons range c-record-type-identifiers))))))
5537 (defmacro c-record-ref-id (range)
5538 (if (eq (car-safe range) 'cons)
5539 ;; Always true.
5540 `(setq c-record-ref-identifiers
5541 (cons ,range c-record-ref-identifiers))
5542 `(let ((range ,range))
5543 (if range
5544 (setq c-record-ref-identifiers
5545 (cons range c-record-ref-identifiers))))))
5547 ;; Dynamically bound variable that instructs `c-forward-type' to
5548 ;; record the ranges of types that only are found. Behaves otherwise
5549 ;; like `c-record-type-identifiers'.
5550 (defvar c-record-found-types nil)
5552 (defmacro c-forward-keyword-prefixed-id (type)
5553 ;; Used internally in `c-forward-keyword-clause' to move forward
5554 ;; over a type (if TYPE is 'type) or a name (otherwise) which
5555 ;; possibly is prefixed by keywords and their associated clauses.
5556 ;; Try with a type/name first to not trip up on those that begin
5557 ;; with a keyword. Return t if a known or found type is moved
5558 ;; over. The point is clobbered if nil is returned. If range
5559 ;; recording is enabled, the identifier is recorded on as a type
5560 ;; if TYPE is 'type or as a reference if TYPE is 'ref.
5562 ;; This macro might do hidden buffer changes.
5563 `(let (res)
5564 (while (if (setq res ,(if (eq type 'type)
5565 `(c-forward-type)
5566 `(c-forward-name)))
5568 (and (looking-at c-keywords-regexp)
5569 (c-forward-keyword-clause 1))))
5570 (when (memq res '(t known found prefix))
5571 ,(when (eq type 'ref)
5572 `(when c-record-type-identifiers
5573 (c-record-ref-id c-last-identifier-range)))
5574 t)))
5576 (defmacro c-forward-id-comma-list (type update-safe-pos)
5577 ;; Used internally in `c-forward-keyword-clause' to move forward
5578 ;; over a comma separated list of types or names using
5579 ;; `c-forward-keyword-prefixed-id'.
5581 ;; This macro might do hidden buffer changes.
5582 `(while (and (progn
5583 ,(when update-safe-pos
5584 `(setq safe-pos (point)))
5585 (eq (char-after) ?,))
5586 (progn
5587 (forward-char)
5588 (c-forward-syntactic-ws)
5589 (c-forward-keyword-prefixed-id ,type)))))
5591 (defun c-forward-keyword-clause (match)
5592 ;; Submatch MATCH in the current match data is assumed to surround a
5593 ;; token. If it's a keyword, move over it and any immediately
5594 ;; following clauses associated with it, stopping at the start of
5595 ;; the next token. t is returned in that case, otherwise the point
5596 ;; stays and nil is returned. The kind of clauses that are
5597 ;; recognized are those specified by `c-type-list-kwds',
5598 ;; `c-ref-list-kwds', `c-colon-type-list-kwds',
5599 ;; `c-paren-nontype-kwds', `c-paren-type-kwds', `c-<>-type-kwds',
5600 ;; and `c-<>-arglist-kwds'.
5602 ;; This function records identifier ranges on
5603 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5604 ;; `c-record-type-identifiers' is non-nil.
5606 ;; Note that for `c-colon-type-list-kwds', which doesn't necessary
5607 ;; apply directly after the keyword, the type list is moved over
5608 ;; only when there is no unaccounted token before it (i.e. a token
5609 ;; that isn't moved over due to some other keyword list). The
5610 ;; identifier ranges in the list are still recorded if that should
5611 ;; be done, though.
5613 ;; This function might do hidden buffer changes.
5615 (let ((kwd-sym (c-keyword-sym (match-string match))) safe-pos pos
5616 ;; The call to `c-forward-<>-arglist' below is made after
5617 ;; `c-<>-sexp-kwds' keywords, so we're certain they actually
5618 ;; are angle bracket arglists and `c-restricted-<>-arglists'
5619 ;; should therefore be nil.
5620 (c-parse-and-markup-<>-arglists t)
5621 c-restricted-<>-arglists)
5623 (when kwd-sym
5624 (goto-char (match-end match))
5625 (c-forward-syntactic-ws)
5626 (setq safe-pos (point))
5628 (cond
5629 ((and (c-keyword-member kwd-sym 'c-type-list-kwds)
5630 (c-forward-keyword-prefixed-id type))
5631 ;; There's a type directly after a keyword in `c-type-list-kwds'.
5632 (c-forward-id-comma-list type t))
5634 ((and (c-keyword-member kwd-sym 'c-ref-list-kwds)
5635 (c-forward-keyword-prefixed-id ref))
5636 ;; There's a name directly after a keyword in `c-ref-list-kwds'.
5637 (c-forward-id-comma-list ref t))
5639 ((and (c-keyword-member kwd-sym 'c-paren-any-kwds)
5640 (eq (char-after) ?\())
5641 ;; There's an open paren after a keyword in `c-paren-any-kwds'.
5643 (forward-char)
5644 (when (and (setq pos (c-up-list-forward))
5645 (eq (char-before pos) ?\)))
5646 (when (and c-record-type-identifiers
5647 (c-keyword-member kwd-sym 'c-paren-type-kwds))
5648 ;; Use `c-forward-type' on every identifier we can find
5649 ;; inside the paren, to record the types.
5650 (while (c-syntactic-re-search-forward c-symbol-start pos t)
5651 (goto-char (match-beginning 0))
5652 (unless (c-forward-type)
5653 (looking-at c-symbol-key) ; Always matches.
5654 (goto-char (match-end 0)))))
5656 (goto-char pos)
5657 (c-forward-syntactic-ws)
5658 (setq safe-pos (point))))
5660 ((and (c-keyword-member kwd-sym 'c-<>-sexp-kwds)
5661 (eq (char-after) ?<)
5662 (c-forward-<>-arglist (c-keyword-member kwd-sym 'c-<>-type-kwds)))
5663 (c-forward-syntactic-ws)
5664 (setq safe-pos (point)))
5666 ((and (c-keyword-member kwd-sym 'c-nonsymbol-sexp-kwds)
5667 (not (looking-at c-symbol-start))
5668 (c-safe (c-forward-sexp) t))
5669 (c-forward-syntactic-ws)
5670 (setq safe-pos (point))))
5672 (when (c-keyword-member kwd-sym 'c-colon-type-list-kwds)
5673 (if (eq (char-after) ?:)
5674 ;; If we are at the colon already, we move over the type
5675 ;; list after it.
5676 (progn
5677 (forward-char)
5678 (c-forward-syntactic-ws)
5679 (when (c-forward-keyword-prefixed-id type)
5680 (c-forward-id-comma-list type t)))
5681 ;; Not at the colon, so stop here. But the identifier
5682 ;; ranges in the type list later on should still be
5683 ;; recorded.
5684 (and c-record-type-identifiers
5685 (progn
5686 ;; If a keyword matched both one of the types above and
5687 ;; this one, we match `c-colon-type-list-re' after the
5688 ;; clause matched above.
5689 (goto-char safe-pos)
5690 (looking-at c-colon-type-list-re))
5691 (progn
5692 (goto-char (match-end 0))
5693 (c-forward-syntactic-ws)
5694 (c-forward-keyword-prefixed-id type))
5695 ;; There's a type after the `c-colon-type-list-re' match
5696 ;; after a keyword in `c-colon-type-list-kwds'.
5697 (c-forward-id-comma-list type nil))))
5699 (goto-char safe-pos)
5700 t)))
5702 ;; cc-mode requires cc-fonts.
5703 (declare-function c-fontify-recorded-types-and-refs "cc-fonts" ())
5705 (defun c-forward-<>-arglist (all-types)
5706 ;; The point is assumed to be at a "<". Try to treat it as the open
5707 ;; paren of an angle bracket arglist and move forward to the
5708 ;; corresponding ">". If successful, the point is left after the
5709 ;; ">" and t is returned, otherwise the point isn't moved and nil is
5710 ;; returned. If ALL-TYPES is t then all encountered arguments in
5711 ;; the arglist that might be types are treated as found types.
5713 ;; The variable `c-parse-and-markup-<>-arglists' controls how this
5714 ;; function handles text properties on the angle brackets and argument
5715 ;; separating commas.
5717 ;; `c-restricted-<>-arglists' controls how lenient the template
5718 ;; arglist recognition should be.
5720 ;; This function records identifier ranges on
5721 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5722 ;; `c-record-type-identifiers' is non-nil.
5724 ;; This function might do hidden buffer changes.
5726 (let ((start (point))
5727 ;; If `c-record-type-identifiers' is set then activate
5728 ;; recording of any found types that constitute an argument in
5729 ;; the arglist.
5730 (c-record-found-types (if c-record-type-identifiers t)))
5731 (if (catch 'angle-bracket-arglist-escape
5732 (setq c-record-found-types
5733 (c-forward-<>-arglist-recur all-types)))
5734 (progn
5735 (when (consp c-record-found-types)
5736 (setq c-record-type-identifiers
5737 ;; `nconc' doesn't mind that the tail of
5738 ;; `c-record-found-types' is t.
5739 (nconc c-record-found-types c-record-type-identifiers)))
5740 (if (c-major-mode-is 'java-mode) (c-fontify-recorded-types-and-refs))
5743 (goto-char start)
5744 nil)))
5746 (defun c-forward-<>-arglist-recur (all-types)
5747 ;; Recursive part of `c-forward-<>-arglist'.
5749 ;; This function might do hidden buffer changes.
5751 (let ((start (point)) res pos tmp
5752 ;; Cover this so that any recorded found type ranges are
5753 ;; automatically lost if it turns out to not be an angle
5754 ;; bracket arglist. It's propagated through the return value
5755 ;; on successful completion.
5756 (c-record-found-types c-record-found-types)
5757 ;; List that collects the positions after the argument
5758 ;; separating ',' in the arglist.
5759 arg-start-pos)
5760 ;; If the '<' has paren open syntax then we've marked it as an angle
5761 ;; bracket arglist before, so skip to the end.
5762 (if (and (not c-parse-and-markup-<>-arglists)
5763 (c-get-char-property (point) 'syntax-table))
5765 (progn
5766 (forward-char)
5767 (if (and (c-go-up-list-forward)
5768 (eq (char-before) ?>))
5770 ;; Got unmatched paren angle brackets. We don't clear the paren
5771 ;; syntax properties and retry, on the basis that it's very
5772 ;; unlikely that paren angle brackets become operators by code
5773 ;; manipulation. It's far more likely that it doesn't match due
5774 ;; to narrowing or some temporary change.
5775 (goto-char start)
5776 nil))
5778 (forward-char) ; Forward over the opening '<'.
5780 (unless (looking-at c-<-op-cont-regexp)
5781 ;; go forward one non-alphanumeric character (group) per iteration of
5782 ;; this loop.
5783 (while (and
5784 (progn
5785 (c-forward-syntactic-ws)
5786 (let ((orig-record-found-types c-record-found-types))
5787 (when (or (and c-record-type-identifiers all-types)
5788 (c-major-mode-is 'java-mode))
5789 ;; All encountered identifiers are types, so set the
5790 ;; promote flag and parse the type.
5791 (progn
5792 (c-forward-syntactic-ws)
5793 (if (looking-at "\\?")
5794 (forward-char)
5795 (when (looking-at c-identifier-start)
5796 (let ((c-promote-possible-types t)
5797 (c-record-found-types t))
5798 (c-forward-type))))
5800 (c-forward-syntactic-ws)
5802 (when (or (looking-at "extends")
5803 (looking-at "super"))
5804 (forward-word)
5805 (c-forward-syntactic-ws)
5806 (let ((c-promote-possible-types t)
5807 (c-record-found-types t))
5808 (c-forward-type)
5809 (c-forward-syntactic-ws))))))
5811 (setq pos (point)) ; e.g. first token inside the '<'
5813 ;; Note: These regexps exploit the match order in \| so
5814 ;; that "<>" is matched by "<" rather than "[^>:-]>".
5815 (c-syntactic-re-search-forward
5816 ;; Stop on ',', '|', '&', '+' and '-' to catch
5817 ;; common binary operators that could be between
5818 ;; two comparison expressions "a<b" and "c>d".
5819 "[<;{},|+&-]\\|[>)]"
5820 nil t t))
5822 (cond
5823 ((eq (char-before) ?>)
5824 ;; Either an operator starting with '>' or the end of
5825 ;; the angle bracket arglist.
5827 (if (looking-at c->-op-cont-regexp)
5828 (progn
5829 (goto-char (match-end 0))
5830 t) ; Continue the loop.
5832 ;; The angle bracket arglist is finished.
5833 (when c-parse-and-markup-<>-arglists
5834 (while arg-start-pos
5835 (c-put-c-type-property (1- (car arg-start-pos))
5836 'c-<>-arg-sep)
5837 (setq arg-start-pos (cdr arg-start-pos)))
5838 (c-mark-<-as-paren start)
5839 (c-mark->-as-paren (1- (point))))
5840 (setq res t)
5841 nil)) ; Exit the loop.
5843 ((eq (char-before) ?<)
5844 ;; Either an operator starting with '<' or a nested arglist.
5845 (setq pos (point))
5846 (let (id-start id-end subres keyword-match)
5847 (cond
5848 ;; The '<' begins a multi-char operator.
5849 ((looking-at c-<-op-cont-regexp)
5850 (setq tmp (match-end 0))
5851 (goto-char (match-end 0)))
5852 ;; We're at a nested <.....>
5853 ((progn
5854 (setq tmp pos)
5855 (backward-char) ; to the '<'
5856 (and
5857 (save-excursion
5858 ;; There's always an identifier before an angle
5859 ;; bracket arglist, or a keyword in `c-<>-type-kwds'
5860 ;; or `c-<>-arglist-kwds'.
5861 (c-backward-syntactic-ws)
5862 (setq id-end (point))
5863 (c-simple-skip-symbol-backward)
5864 (when (or (setq keyword-match
5865 (looking-at c-opt-<>-sexp-key))
5866 (not (looking-at c-keywords-regexp)))
5867 (setq id-start (point))))
5868 (setq subres
5869 (let ((c-promote-possible-types t)
5870 (c-record-found-types t))
5871 (c-forward-<>-arglist-recur
5872 (and keyword-match
5873 (c-keyword-member
5874 (c-keyword-sym (match-string 1))
5875 'c-<>-type-kwds)))))))
5877 ;; It was an angle bracket arglist.
5878 (setq c-record-found-types subres)
5880 ;; Record the identifier before the template as a type
5881 ;; or reference depending on whether the arglist is last
5882 ;; in a qualified identifier.
5883 (when (and c-record-type-identifiers
5884 (not keyword-match))
5885 (if (and c-opt-identifier-concat-key
5886 (progn
5887 (c-forward-syntactic-ws)
5888 (looking-at c-opt-identifier-concat-key)))
5889 (c-record-ref-id (cons id-start id-end))
5890 (c-record-type-id (cons id-start id-end)))))
5892 ;; At a "less than" operator.
5894 (forward-char)
5896 t) ; carry on looping.
5898 ((and (not c-restricted-<>-arglists)
5899 (or (and (eq (char-before) ?&)
5900 (not (eq (char-after) ?&)))
5901 (eq (char-before) ?,)))
5902 ;; Just another argument. Record the position. The
5903 ;; type check stuff that made us stop at it is at
5904 ;; the top of the loop.
5905 (setq arg-start-pos (cons (point) arg-start-pos)))
5908 ;; Got a character that can't be in an angle bracket
5909 ;; arglist argument. Abort using `throw', since
5910 ;; it's useless to try to find a surrounding arglist
5911 ;; if we're nested.
5912 (throw 'angle-bracket-arglist-escape nil))))))
5913 (if res
5914 (or c-record-found-types t)))))
5916 (defun c-backward-<>-arglist (all-types &optional limit)
5917 ;; The point is assumed to be directly after a ">". Try to treat it
5918 ;; as the close paren of an angle bracket arglist and move back to
5919 ;; the corresponding "<". If successful, the point is left at
5920 ;; the "<" and t is returned, otherwise the point isn't moved and
5921 ;; nil is returned. ALL-TYPES is passed on to
5922 ;; `c-forward-<>-arglist'.
5924 ;; If the optional LIMIT is given, it bounds the backward search.
5925 ;; It's then assumed to be at a syntactically relevant position.
5927 ;; This is a wrapper around `c-forward-<>-arglist'. See that
5928 ;; function for more details.
5930 (let ((start (point)))
5931 (backward-char)
5932 (if (and (not c-parse-and-markup-<>-arglists)
5933 (c-get-char-property (point) 'syntax-table))
5935 (if (and (c-go-up-list-backward)
5936 (eq (char-after) ?<))
5938 ;; See corresponding note in `c-forward-<>-arglist'.
5939 (goto-char start)
5940 nil)
5942 (while (progn
5943 (c-syntactic-skip-backward "^<;{}" limit t)
5945 (and
5946 (if (eq (char-before) ?<)
5948 ;; Stopped at bob or a char that isn't allowed in an
5949 ;; arglist, so we've failed.
5950 (goto-char start)
5951 nil)
5953 (if (> (point)
5954 (progn (c-beginning-of-current-token)
5955 (point)))
5956 ;; If we moved then the "<" was part of some
5957 ;; multicharacter token.
5960 (backward-char)
5961 (let ((beg-pos (point)))
5962 (if (c-forward-<>-arglist all-types)
5963 (cond ((= (point) start)
5964 ;; Matched the arglist. Break the while.
5965 (goto-char beg-pos)
5966 nil)
5967 ((> (point) start)
5968 ;; We started from a non-paren ">" inside an
5969 ;; arglist.
5970 (goto-char start)
5971 nil)
5973 ;; Matched a shorter arglist. Can be a nested
5974 ;; one so continue looking.
5975 (goto-char beg-pos)
5977 t))))))
5979 (/= (point) start))))
5981 (defun c-forward-name ()
5982 ;; Move forward over a complete name if at the beginning of one,
5983 ;; stopping at the next following token. A keyword, as such,
5984 ;; doesn't count as a name. If the point is not at something that
5985 ;; is recognized as a name then it stays put.
5987 ;; A name could be something as simple as "foo" in C or something as
5988 ;; complex as "X<Y<class A<int>::B, BIT_MAX >> b>, ::operator<> ::
5989 ;; Z<(a>b)> :: operator const X<&foo>::T Q::G<unsigned short
5990 ;; int>::*volatile const" in C++ (this function is actually little
5991 ;; more than a `looking-at' call in all modes except those that,
5992 ;; like C++, have `c-recognize-<>-arglists' set).
5994 ;; Return
5995 ;; o - nil if no name is found;
5996 ;; o - 'template if it's an identifier ending with an angle bracket
5997 ;; arglist;
5998 ;; o - 'operator of it's an operator identifier;
5999 ;; o - t if it's some other kind of name.
6001 ;; This function records identifier ranges on
6002 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6003 ;; `c-record-type-identifiers' is non-nil.
6005 ;; This function might do hidden buffer changes.
6007 (let ((pos (point)) (start (point)) res id-start id-end
6008 ;; Turn off `c-promote-possible-types' here since we might
6009 ;; call `c-forward-<>-arglist' and we don't want it to promote
6010 ;; every suspect thing in the arglist to a type. We're
6011 ;; typically called from `c-forward-type' in this case, and
6012 ;; the caller only wants the top level type that it finds to
6013 ;; be promoted.
6014 c-promote-possible-types)
6015 (while
6016 (and
6017 (looking-at c-identifier-key)
6019 (progn
6020 ;; Check for keyword. We go to the last symbol in
6021 ;; `c-identifier-key' first.
6022 (goto-char (setq id-end (match-end 0)))
6023 (c-simple-skip-symbol-backward)
6024 (setq id-start (point))
6026 (if (looking-at c-keywords-regexp)
6027 (when (and (c-major-mode-is 'c++-mode)
6028 (looking-at
6029 (cc-eval-when-compile
6030 (concat "\\(operator\\|\\(template\\)\\)"
6031 "\\(" (c-lang-const c-nonsymbol-key c++)
6032 "\\|$\\)")))
6033 (if (match-beginning 2)
6034 ;; "template" is only valid inside an
6035 ;; identifier if preceded by "::".
6036 (save-excursion
6037 (c-backward-syntactic-ws)
6038 (and (c-safe (backward-char 2) t)
6039 (looking-at "::")))
6042 ;; Handle a C++ operator or template identifier.
6043 (goto-char id-end)
6044 (c-forward-syntactic-ws)
6045 (cond ((eq (char-before id-end) ?e)
6046 ;; Got "... ::template".
6047 (let ((subres (c-forward-name)))
6048 (when subres
6049 (setq pos (point)
6050 res subres))))
6052 ((looking-at c-identifier-start)
6053 ;; Got a cast operator.
6054 (when (c-forward-type)
6055 (setq pos (point)
6056 res 'operator)
6057 ;; Now we should match a sequence of either
6058 ;; '*', '&' or a name followed by ":: *",
6059 ;; where each can be followed by a sequence
6060 ;; of `c-opt-type-modifier-key'.
6061 (while (cond ((looking-at "[*&]")
6062 (goto-char (match-end 0))
6064 ((looking-at c-identifier-start)
6065 (and (c-forward-name)
6066 (looking-at "::")
6067 (progn
6068 (goto-char (match-end 0))
6069 (c-forward-syntactic-ws)
6070 (eq (char-after) ?*))
6071 (progn
6072 (forward-char)
6073 t))))
6074 (while (progn
6075 (c-forward-syntactic-ws)
6076 (setq pos (point))
6077 (looking-at c-opt-type-modifier-key))
6078 (goto-char (match-end 1))))))
6080 ((looking-at c-overloadable-operators-regexp)
6081 ;; Got some other operator.
6082 (setq c-last-identifier-range
6083 (cons (point) (match-end 0)))
6084 (goto-char (match-end 0))
6085 (c-forward-syntactic-ws)
6086 (setq pos (point)
6087 res 'operator)))
6089 nil)
6091 ;; `id-start' is equal to `id-end' if we've jumped over
6092 ;; an identifier that doesn't end with a symbol token.
6093 ;; That can occur e.g. for Java import directives on the
6094 ;; form "foo.bar.*".
6095 (when (and id-start (/= id-start id-end))
6096 (setq c-last-identifier-range
6097 (cons id-start id-end)))
6098 (goto-char id-end)
6099 (c-forward-syntactic-ws)
6100 (setq pos (point)
6101 res t)))
6103 (progn
6104 (goto-char pos)
6105 (when (or c-opt-identifier-concat-key
6106 c-recognize-<>-arglists)
6108 (cond
6109 ((and c-opt-identifier-concat-key
6110 (looking-at c-opt-identifier-concat-key))
6111 ;; Got a concatenated identifier. This handles the
6112 ;; cases with tricky syntactic whitespace that aren't
6113 ;; covered in `c-identifier-key'.
6114 (goto-char (match-end 0))
6115 (c-forward-syntactic-ws)
6118 ((and c-recognize-<>-arglists
6119 (eq (char-after) ?<))
6120 ;; Maybe an angle bracket arglist.
6121 (when (let ((c-record-type-identifiers t)
6122 (c-record-found-types t))
6123 (c-forward-<>-arglist nil))
6125 (c-add-type start (1+ pos))
6126 (c-forward-syntactic-ws)
6127 (setq pos (point)
6128 c-last-identifier-range nil)
6130 (if (and c-opt-identifier-concat-key
6131 (looking-at c-opt-identifier-concat-key))
6133 ;; Continue if there's an identifier concatenation
6134 ;; operator after the template argument.
6135 (progn
6136 (when (and c-record-type-identifiers id-start)
6137 (c-record-ref-id (cons id-start id-end)))
6138 (forward-char 2)
6139 (c-forward-syntactic-ws)
6142 (when (and c-record-type-identifiers id-start)
6143 (c-record-type-id (cons id-start id-end)))
6144 (setq res 'template)
6145 nil)))
6146 )))))
6148 (goto-char pos)
6149 res))
6151 (defun c-forward-type (&optional brace-block-too)
6152 ;; Move forward over a type spec if at the beginning of one,
6153 ;; stopping at the next following token. The keyword "typedef"
6154 ;; isn't part of a type spec here.
6156 ;; BRACE-BLOCK-TOO, when non-nil, means move over the brace block in
6157 ;; constructs like "struct foo {...} bar ;" or "struct {...} bar;".
6158 ;; The current (2009-03-10) intention is to convert all uses of
6159 ;; `c-forward-type' to call with this parameter set, then to
6160 ;; eliminate it.
6162 ;; Return
6163 ;; o - t if it's a known type that can't be a name or other
6164 ;; expression;
6165 ;; o - 'known if it's an otherwise known type (according to
6166 ;; `*-font-lock-extra-types');
6167 ;; o - 'prefix if it's a known prefix of a type;
6168 ;; o - 'found if it's a type that matches one in `c-found-types';
6169 ;; o - 'maybe if it's an identifier that might be a type; or
6170 ;; o - nil if it can't be a type (the point isn't moved then).
6172 ;; The point is assumed to be at the beginning of a token.
6174 ;; Note that this function doesn't skip past the brace definition
6175 ;; that might be considered part of the type, e.g.
6176 ;; "enum {a, b, c} foo".
6178 ;; This function records identifier ranges on
6179 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6180 ;; `c-record-type-identifiers' is non-nil.
6182 ;; This function might do hidden buffer changes.
6183 (when (and c-recognize-<>-arglists
6184 (looking-at "<"))
6185 (c-forward-<>-arglist t)
6186 (c-forward-syntactic-ws))
6188 (let ((start (point)) pos res name-res id-start id-end id-range)
6190 ;; Skip leading type modifiers. If any are found we know it's a
6191 ;; prefix of a type.
6192 (when c-opt-type-modifier-key ; e.g. "const" "volatile", but NOT "typedef"
6193 (while (looking-at c-opt-type-modifier-key)
6194 (goto-char (match-end 1))
6195 (c-forward-syntactic-ws)
6196 (setq res 'prefix)))
6198 (cond
6199 ((looking-at c-type-prefix-key) ; e.g. "struct", "class", but NOT
6200 ; "typedef".
6201 (goto-char (match-end 1))
6202 (c-forward-syntactic-ws)
6203 (setq pos (point))
6205 (setq name-res (c-forward-name))
6206 (setq res (not (null name-res)))
6207 (when (eq name-res t)
6208 ;; In many languages the name can be used without the
6209 ;; prefix, so we add it to `c-found-types'.
6210 (c-add-type pos (point))
6211 (when (and c-record-type-identifiers
6212 c-last-identifier-range)
6213 (c-record-type-id c-last-identifier-range)))
6214 (when (and brace-block-too
6215 (memq res '(t nil))
6216 (eq (char-after) ?\{)
6217 (save-excursion
6218 (c-safe
6219 (progn (c-forward-sexp)
6220 (c-forward-syntactic-ws)
6221 (setq pos (point))))))
6222 (goto-char pos)
6223 (setq res t))
6224 (unless res (goto-char start))) ; invalid syntax
6226 ((progn
6227 (setq pos nil)
6228 (if (looking-at c-identifier-start)
6229 (save-excursion
6230 (setq id-start (point)
6231 name-res (c-forward-name))
6232 (when name-res
6233 (setq id-end (point)
6234 id-range c-last-identifier-range))))
6235 (and (cond ((looking-at c-primitive-type-key)
6236 (setq res t))
6237 ((c-with-syntax-table c-identifier-syntax-table
6238 (looking-at c-known-type-key))
6239 (setq res 'known)))
6240 (or (not id-end)
6241 (>= (save-excursion
6242 (save-match-data
6243 (goto-char (match-end 1))
6244 (c-forward-syntactic-ws)
6245 (setq pos (point))))
6246 id-end)
6247 (setq res nil))))
6248 ;; Looking at a primitive or known type identifier. We've
6249 ;; checked for a name first so that we don't go here if the
6250 ;; known type match only is a prefix of another name.
6252 (setq id-end (match-end 1))
6254 (when (and c-record-type-identifiers
6255 (or c-promote-possible-types (eq res t)))
6256 (c-record-type-id (cons (match-beginning 1) (match-end 1))))
6258 (if (and c-opt-type-component-key
6259 (save-match-data
6260 (looking-at c-opt-type-component-key)))
6261 ;; There might be more keywords for the type.
6262 (let (safe-pos)
6263 (c-forward-keyword-clause 1)
6264 (while (progn
6265 (setq safe-pos (point))
6266 (looking-at c-opt-type-component-key))
6267 (when (and c-record-type-identifiers
6268 (looking-at c-primitive-type-key))
6269 (c-record-type-id (cons (match-beginning 1)
6270 (match-end 1))))
6271 (c-forward-keyword-clause 1))
6272 (if (looking-at c-primitive-type-key)
6273 (progn
6274 (when c-record-type-identifiers
6275 (c-record-type-id (cons (match-beginning 1)
6276 (match-end 1))))
6277 (c-forward-keyword-clause 1)
6278 (setq res t))
6279 (goto-char safe-pos)
6280 (setq res 'prefix)))
6281 (unless (save-match-data (c-forward-keyword-clause 1))
6282 (if pos
6283 (goto-char pos)
6284 (goto-char (match-end 1))
6285 (c-forward-syntactic-ws)))))
6287 (name-res
6288 (cond ((eq name-res t)
6289 ;; A normal identifier.
6290 (goto-char id-end)
6291 (if (or res c-promote-possible-types)
6292 (progn
6293 (c-add-type id-start id-end)
6294 (when (and c-record-type-identifiers id-range)
6295 (c-record-type-id id-range))
6296 (unless res
6297 (setq res 'found)))
6298 (setq res (if (c-check-type id-start id-end)
6299 ;; It's an identifier that has been used as
6300 ;; a type somewhere else.
6301 'found
6302 ;; It's an identifier that might be a type.
6303 'maybe))))
6304 ((eq name-res 'template)
6305 ;; A template is a type.
6306 (goto-char id-end)
6307 (setq res t))
6309 ;; Otherwise it's an operator identifier, which is not a type.
6310 (goto-char start)
6311 (setq res nil)))))
6313 (when res
6314 ;; Skip trailing type modifiers. If any are found we know it's
6315 ;; a type.
6316 (when c-opt-type-modifier-key
6317 (while (looking-at c-opt-type-modifier-key) ; e.g. "const", "volatile"
6318 (goto-char (match-end 1))
6319 (c-forward-syntactic-ws)
6320 (setq res t)))
6321 ;; Step over any type suffix operator. Do not let the existence
6322 ;; of these alter the classification of the found type, since
6323 ;; these operators typically are allowed in normal expressions
6324 ;; too.
6325 (when c-opt-type-suffix-key
6326 (while (looking-at c-opt-type-suffix-key)
6327 (goto-char (match-end 1))
6328 (c-forward-syntactic-ws)))
6330 (when c-opt-type-concat-key ; Only/mainly for pike.
6331 ;; Look for a trailing operator that concatenates the type
6332 ;; with a following one, and if so step past that one through
6333 ;; a recursive call. Note that we don't record concatenated
6334 ;; types in `c-found-types' - it's the component types that
6335 ;; are recorded when appropriate.
6336 (setq pos (point))
6337 (let* ((c-promote-possible-types (or (memq res '(t known))
6338 c-promote-possible-types))
6339 ;; If we can't promote then set `c-record-found-types' so that
6340 ;; we can merge in the types from the second part afterwards if
6341 ;; it turns out to be a known type there.
6342 (c-record-found-types (and c-record-type-identifiers
6343 (not c-promote-possible-types)))
6344 subres)
6345 (if (and (looking-at c-opt-type-concat-key)
6347 (progn
6348 (goto-char (match-end 1))
6349 (c-forward-syntactic-ws)
6350 (setq subres (c-forward-type))))
6352 (progn
6353 ;; If either operand certainly is a type then both are, but we
6354 ;; don't let the existence of the operator itself promote two
6355 ;; uncertain types to a certain one.
6356 (cond ((eq res t))
6357 ((eq subres t)
6358 (unless (eq name-res 'template)
6359 (c-add-type id-start id-end))
6360 (when (and c-record-type-identifiers id-range)
6361 (c-record-type-id id-range))
6362 (setq res t))
6363 ((eq res 'known))
6364 ((eq subres 'known)
6365 (setq res 'known))
6366 ((eq res 'found))
6367 ((eq subres 'found)
6368 (setq res 'found))
6370 (setq res 'maybe)))
6372 (when (and (eq res t)
6373 (consp c-record-found-types))
6374 ;; Merge in the ranges of any types found by the second
6375 ;; `c-forward-type'.
6376 (setq c-record-type-identifiers
6377 ;; `nconc' doesn't mind that the tail of
6378 ;; `c-record-found-types' is t.
6379 (nconc c-record-found-types
6380 c-record-type-identifiers))))
6382 (goto-char pos))))
6384 (when (and c-record-found-types (memq res '(known found)) id-range)
6385 (setq c-record-found-types
6386 (cons id-range c-record-found-types))))
6388 ;;(message "c-forward-type %s -> %s: %s" start (point) res)
6390 res))
6392 (defun c-forward-annotation ()
6393 ;; Used for Java code only at the moment. Assumes point is on the
6394 ;; @, moves forward an annotation. returns nil if there is no
6395 ;; annotation at point.
6396 (and (looking-at "@")
6397 (progn (forward-char) t)
6398 (c-forward-type)
6399 (progn (c-forward-syntactic-ws) t)
6400 (if (looking-at "(")
6401 (c-go-list-forward)
6402 t)))
6405 ;; Handling of large scale constructs like statements and declarations.
6407 ;; Macro used inside `c-forward-decl-or-cast-1'. It ought to be a
6408 ;; defsubst or perhaps even a defun, but it contains lots of free
6409 ;; variables that refer to things inside `c-forward-decl-or-cast-1'.
6410 (defmacro c-fdoc-shift-type-backward (&optional short)
6411 ;; `c-forward-decl-or-cast-1' can consume an arbitrary length list
6412 ;; of types when parsing a declaration, which means that it
6413 ;; sometimes consumes the identifier in the declaration as a type.
6414 ;; This is used to "backtrack" and make the last type be treated as
6415 ;; an identifier instead.
6416 `(progn
6417 ,(unless short
6418 ;; These identifiers are bound only in the inner let.
6419 '(setq identifier-type at-type
6420 identifier-start type-start
6421 got-parens nil
6422 got-identifier t
6423 got-suffix t
6424 got-suffix-after-parens id-start
6425 paren-depth 0))
6427 (if (setq at-type (if (eq backup-at-type 'prefix)
6429 backup-at-type))
6430 (setq type-start backup-type-start
6431 id-start backup-id-start)
6432 (setq type-start start-pos
6433 id-start start-pos))
6435 ;; When these flags already are set we've found specifiers that
6436 ;; unconditionally signal these attributes - backtracking doesn't
6437 ;; change that. So keep them set in that case.
6438 (or at-type-decl
6439 (setq at-type-decl backup-at-type-decl))
6440 (or maybe-typeless
6441 (setq maybe-typeless backup-maybe-typeless))
6443 ,(unless short
6444 ;; This identifier is bound only in the inner let.
6445 '(setq start id-start))))
6447 (defun c-forward-decl-or-cast-1 (preceding-token-end context last-cast-end)
6448 ;; Move forward over a declaration or a cast if at the start of one.
6449 ;; The point is assumed to be at the start of some token. Nil is
6450 ;; returned if no declaration or cast is recognized, and the point
6451 ;; is clobbered in that case.
6453 ;; If a declaration is parsed:
6455 ;; The point is left at the first token after the first complete
6456 ;; declarator, if there is one. The return value is a cons where
6457 ;; the car is the position of the first token in the declarator. (See
6458 ;; below for the cdr.)
6459 ;; Some examples:
6461 ;; void foo (int a, char *b) stuff ...
6462 ;; car ^ ^ point
6463 ;; float (*a)[], b;
6464 ;; car ^ ^ point
6465 ;; unsigned int a = c_style_initializer, b;
6466 ;; car ^ ^ point
6467 ;; unsigned int a (cplusplus_style_initializer), b;
6468 ;; car ^ ^ point (might change)
6469 ;; class Foo : public Bar {}
6470 ;; car ^ ^ point
6471 ;; class PikeClass (int a, string b) stuff ...
6472 ;; car ^ ^ point
6473 ;; enum bool;
6474 ;; car ^ ^ point
6475 ;; enum bool flag;
6476 ;; car ^ ^ point
6477 ;; void cplusplus_function (int x) throw (Bad);
6478 ;; car ^ ^ point
6479 ;; Foo::Foo (int b) : Base (b) {}
6480 ;; car ^ ^ point
6482 ;; The cdr of the return value is non-nil when a
6483 ;; `c-typedef-decl-kwds' specifier is found in the declaration.
6484 ;; Specifically it is a dotted pair (A . B) where B is t when a
6485 ;; `c-typedef-kwds' ("typedef") is present, and A is t when some
6486 ;; other `c-typedef-decl-kwds' (e.g. class, struct, enum)
6487 ;; specifier is present. I.e., (some of) the declared
6488 ;; identifier(s) are types.
6490 ;; If a cast is parsed:
6492 ;; The point is left at the first token after the closing paren of
6493 ;; the cast. The return value is `cast'. Note that the start
6494 ;; position must be at the first token inside the cast parenthesis
6495 ;; to recognize it.
6497 ;; PRECEDING-TOKEN-END is the first position after the preceding
6498 ;; token, i.e. on the other side of the syntactic ws from the point.
6499 ;; Use a value less than or equal to (point-min) if the point is at
6500 ;; the first token in (the visible part of) the buffer.
6502 ;; CONTEXT is a symbol that describes the context at the point:
6503 ;; 'decl In a comma-separated declaration context (typically
6504 ;; inside a function declaration arglist).
6505 ;; '<> In an angle bracket arglist.
6506 ;; 'arglist Some other type of arglist.
6507 ;; nil Some other context or unknown context. Includes
6508 ;; within the parens of an if, for, ... construct.
6510 ;; LAST-CAST-END is the first token after the closing paren of a
6511 ;; preceding cast, or nil if none is known. If
6512 ;; `c-forward-decl-or-cast-1' is used in succession, it should be
6513 ;; the position after the closest preceding call where a cast was
6514 ;; matched. In that case it's used to discover chains of casts like
6515 ;; "(a) (b) c".
6517 ;; This function records identifier ranges on
6518 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6519 ;; `c-record-type-identifiers' is non-nil.
6521 ;; This function might do hidden buffer changes.
6523 (let (;; `start-pos' is used below to point to the start of the
6524 ;; first type, i.e. after any leading specifiers. It might
6525 ;; also point at the beginning of the preceding syntactic
6526 ;; whitespace.
6527 (start-pos (point))
6528 ;; Set to the result of `c-forward-type'.
6529 at-type
6530 ;; The position of the first token in what we currently
6531 ;; believe is the type in the declaration or cast, after any
6532 ;; specifiers and their associated clauses.
6533 type-start
6534 ;; The position of the first token in what we currently
6535 ;; believe is the declarator for the first identifier. Set
6536 ;; when the type is found, and moved forward over any
6537 ;; `c-decl-hangon-kwds' and their associated clauses that
6538 ;; occurs after the type.
6539 id-start
6540 ;; These store `at-type', `type-start' and `id-start' of the
6541 ;; identifier before the one in those variables. The previous
6542 ;; identifier might turn out to be the real type in a
6543 ;; declaration if the last one has to be the declarator in it.
6544 ;; If `backup-at-type' is nil then the other variables have
6545 ;; undefined values.
6546 backup-at-type backup-type-start backup-id-start
6547 ;; Set if we've found a specifier (apart from "typedef") that makes
6548 ;; the defined identifier(s) types.
6549 at-type-decl
6550 ;; Set if we've a "typedef" keyword.
6551 at-typedef
6552 ;; Set if we've found a specifier that can start a declaration
6553 ;; where there's no type.
6554 maybe-typeless
6555 ;; If a specifier is found that also can be a type prefix,
6556 ;; these flags are set instead of those above. If we need to
6557 ;; back up an identifier, they are copied to the real flag
6558 ;; variables. Thus they only take effect if we fail to
6559 ;; interpret it as a type.
6560 backup-at-type-decl backup-maybe-typeless
6561 ;; Whether we've found a declaration or a cast. We might know
6562 ;; this before we've found the type in it. It's 'ids if we've
6563 ;; found two consecutive identifiers (usually a sure sign, but
6564 ;; we should allow that in labels too), and t if we've found a
6565 ;; specifier keyword (a 100% sure sign).
6566 at-decl-or-cast
6567 ;; Set when we need to back up to parse this as a declaration
6568 ;; but not as a cast.
6569 backup-if-not-cast
6570 ;; For casts, the return position.
6571 cast-end
6572 ;; Save `c-record-type-identifiers' and
6573 ;; `c-record-ref-identifiers' since ranges are recorded
6574 ;; speculatively and should be thrown away if it turns out
6575 ;; that it isn't a declaration or cast.
6576 (save-rec-type-ids c-record-type-identifiers)
6577 (save-rec-ref-ids c-record-ref-identifiers))
6579 (while (c-forward-annotation)
6580 (c-forward-syntactic-ws))
6582 ;; Check for a type. Unknown symbols are treated as possible
6583 ;; types, but they could also be specifiers disguised through
6584 ;; macros like __INLINE__, so we recognize both types and known
6585 ;; specifiers after them too.
6586 (while
6587 (let* ((start (point)) kwd-sym kwd-clause-end found-type)
6589 ;; Look for a specifier keyword clause.
6590 (when (or (looking-at c-prefix-spec-kwds-re)
6591 (and (c-major-mode-is 'java-mode)
6592 (looking-at "@[A-Za-z0-9]+")))
6593 (if (looking-at c-typedef-key)
6594 (setq at-typedef t))
6595 (setq kwd-sym (c-keyword-sym (match-string 1)))
6596 (save-excursion
6597 (c-forward-keyword-clause 1)
6598 (setq kwd-clause-end (point))))
6600 (when (setq found-type (c-forward-type t)) ; brace-block-too
6601 ;; Found a known or possible type or a prefix of a known type.
6603 (when at-type
6604 ;; Got two identifiers with nothing but whitespace
6605 ;; between them. That can only happen in declarations.
6606 (setq at-decl-or-cast 'ids)
6608 (when (eq at-type 'found)
6609 ;; If the previous identifier is a found type we
6610 ;; record it as a real one; it might be some sort of
6611 ;; alias for a prefix like "unsigned".
6612 (save-excursion
6613 (goto-char type-start)
6614 (let ((c-promote-possible-types t))
6615 (c-forward-type)))))
6617 (setq backup-at-type at-type
6618 backup-type-start type-start
6619 backup-id-start id-start
6620 at-type found-type
6621 type-start start
6622 id-start (point)
6623 ;; The previous ambiguous specifier/type turned out
6624 ;; to be a type since we've parsed another one after
6625 ;; it, so clear these backup flags.
6626 backup-at-type-decl nil
6627 backup-maybe-typeless nil))
6629 (if kwd-sym
6630 (progn
6631 ;; Handle known specifier keywords and
6632 ;; `c-decl-hangon-kwds' which can occur after known
6633 ;; types.
6635 (if (c-keyword-member kwd-sym 'c-decl-hangon-kwds)
6636 ;; It's a hang-on keyword that can occur anywhere.
6637 (progn
6638 (setq at-decl-or-cast t)
6639 (if at-type
6640 ;; Move the identifier start position if
6641 ;; we've passed a type.
6642 (setq id-start kwd-clause-end)
6643 ;; Otherwise treat this as a specifier and
6644 ;; move the fallback position.
6645 (setq start-pos kwd-clause-end))
6646 (goto-char kwd-clause-end))
6648 ;; It's an ordinary specifier so we know that
6649 ;; anything before this can't be the type.
6650 (setq backup-at-type nil
6651 start-pos kwd-clause-end)
6653 (if found-type
6654 ;; It's ambiguous whether this keyword is a
6655 ;; specifier or a type prefix, so set the backup
6656 ;; flags. (It's assumed that `c-forward-type'
6657 ;; moved further than `c-forward-keyword-clause'.)
6658 (progn
6659 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
6660 (setq backup-at-type-decl t))
6661 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
6662 (setq backup-maybe-typeless t)))
6664 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
6665 ;; This test only happens after we've scanned a type.
6666 ;; So, with valid syntax, kwd-sym can't be 'typedef.
6667 (setq at-type-decl t))
6668 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
6669 (setq maybe-typeless t))
6671 ;; Haven't matched a type so it's an unambiguous
6672 ;; specifier keyword and we know we're in a
6673 ;; declaration.
6674 (setq at-decl-or-cast t)
6676 (goto-char kwd-clause-end))))
6678 ;; If the type isn't known we continue so that we'll jump
6679 ;; over all specifiers and type identifiers. The reason
6680 ;; to do this for a known type prefix is to make things
6681 ;; like "unsigned INT16" work.
6682 (and found-type (not (eq found-type t))))))
6684 (cond
6685 ((eq at-type t)
6686 ;; If a known type was found, we still need to skip over any
6687 ;; hangon keyword clauses after it. Otherwise it has already
6688 ;; been done in the loop above.
6689 (while (looking-at c-decl-hangon-key)
6690 (c-forward-keyword-clause 1))
6691 (setq id-start (point)))
6693 ((eq at-type 'prefix)
6694 ;; A prefix type is itself a primitive type when it's not
6695 ;; followed by another type.
6696 (setq at-type t))
6698 ((not at-type)
6699 ;; Got no type but set things up to continue anyway to handle
6700 ;; the various cases when a declaration doesn't start with a
6701 ;; type.
6702 (setq id-start start-pos))
6704 ((and (eq at-type 'maybe)
6705 (c-major-mode-is 'c++-mode))
6706 ;; If it's C++ then check if the last "type" ends on the form
6707 ;; "foo::foo" or "foo::~foo", i.e. if it's the name of a
6708 ;; (con|de)structor.
6709 (save-excursion
6710 (let (name end-2 end-1)
6711 (goto-char id-start)
6712 (c-backward-syntactic-ws)
6713 (setq end-2 (point))
6714 (when (and
6715 (c-simple-skip-symbol-backward)
6716 (progn
6717 (setq name
6718 (buffer-substring-no-properties (point) end-2))
6719 ;; Cheating in the handling of syntactic ws below.
6720 (< (skip-chars-backward ":~ \t\n\r\v\f") 0))
6721 (progn
6722 (setq end-1 (point))
6723 (c-simple-skip-symbol-backward))
6724 (>= (point) type-start)
6725 (equal (buffer-substring-no-properties (point) end-1)
6726 name))
6727 ;; It is a (con|de)structor name. In that case the
6728 ;; declaration is typeless so zap out any preceding
6729 ;; identifier(s) that we might have taken as types.
6730 (goto-char type-start)
6731 (setq at-type nil
6732 backup-at-type nil
6733 id-start type-start))))))
6735 ;; Check for and step over a type decl expression after the thing
6736 ;; that is or might be a type. This can't be skipped since we
6737 ;; need the correct end position of the declarator for
6738 ;; `max-type-decl-end-*'.
6739 (let ((start (point)) (paren-depth 0) pos
6740 ;; True if there's a non-open-paren match of
6741 ;; `c-type-decl-prefix-key'.
6742 got-prefix
6743 ;; True if the declarator is surrounded by a parenthesis pair.
6744 got-parens
6745 ;; True if there is an identifier in the declarator.
6746 got-identifier
6747 ;; True if there's a non-close-paren match of
6748 ;; `c-type-decl-suffix-key'.
6749 got-suffix
6750 ;; True if there's a prefix match outside the outermost
6751 ;; paren pair that surrounds the declarator.
6752 got-prefix-before-parens
6753 ;; True if there's a suffix match outside the outermost
6754 ;; paren pair that surrounds the declarator. The value is
6755 ;; the position of the first suffix match.
6756 got-suffix-after-parens
6757 ;; True if we've parsed the type decl to a token that is
6758 ;; known to end declarations in this context.
6759 at-decl-end
6760 ;; The earlier values of `at-type' and `type-start' if we've
6761 ;; shifted the type backwards.
6762 identifier-type identifier-start
6763 ;; If `c-parse-and-markup-<>-arglists' is set we need to
6764 ;; turn it off during the name skipping below to avoid
6765 ;; getting `c-type' properties that might be bogus. That
6766 ;; can happen since we don't know if
6767 ;; `c-restricted-<>-arglists' will be correct inside the
6768 ;; arglist paren that gets entered.
6769 c-parse-and-markup-<>-arglists)
6771 (goto-char id-start)
6773 ;; Skip over type decl prefix operators. (Note similar code in
6774 ;; `c-font-lock-declarators'.)
6775 (while (and (looking-at c-type-decl-prefix-key)
6776 (if (and (c-major-mode-is 'c++-mode)
6777 (match-beginning 3))
6778 ;; If the second submatch matches in C++ then
6779 ;; we're looking at an identifier that's a
6780 ;; prefix only if it specifies a member pointer.
6781 (when (setq got-identifier (c-forward-name))
6782 (if (looking-at "\\(::\\)")
6783 ;; We only check for a trailing "::" and
6784 ;; let the "*" that should follow be
6785 ;; matched in the next round.
6786 (progn (setq got-identifier nil) t)
6787 ;; It turned out to be the real identifier,
6788 ;; so stop.
6789 nil))
6792 (if (eq (char-after) ?\()
6793 (progn
6794 (setq paren-depth (1+ paren-depth))
6795 (forward-char))
6796 (unless got-prefix-before-parens
6797 (setq got-prefix-before-parens (= paren-depth 0)))
6798 (setq got-prefix t)
6799 (goto-char (match-end 1)))
6800 (c-forward-syntactic-ws))
6802 (setq got-parens (> paren-depth 0))
6804 ;; Skip over an identifier.
6805 (or got-identifier
6806 (and (looking-at c-identifier-start)
6807 (setq got-identifier (c-forward-name))))
6809 ;; Skip over type decl suffix operators.
6810 (while (if (looking-at c-type-decl-suffix-key)
6812 (if (eq (char-after) ?\))
6813 (when (> paren-depth 0)
6814 (setq paren-depth (1- paren-depth))
6815 (forward-char)
6817 (when (if (save-match-data (looking-at "\\s\("))
6818 (c-safe (c-forward-sexp 1) t)
6819 (goto-char (match-end 1))
6821 (when (and (not got-suffix-after-parens)
6822 (= paren-depth 0))
6823 (setq got-suffix-after-parens (match-beginning 0)))
6824 (setq got-suffix t)))
6826 ;; No suffix matched. We might have matched the
6827 ;; identifier as a type and the open paren of a
6828 ;; function arglist as a type decl prefix. In that
6829 ;; case we should "backtrack": Reinterpret the last
6830 ;; type as the identifier, move out of the arglist and
6831 ;; continue searching for suffix operators.
6833 ;; Do this even if there's no preceding type, to cope
6834 ;; with old style function declarations in K&R C,
6835 ;; (con|de)structors in C++ and `c-typeless-decl-kwds'
6836 ;; style declarations. That isn't applicable in an
6837 ;; arglist context, though.
6838 (when (and (= paren-depth 1)
6839 (not got-prefix-before-parens)
6840 (not (eq at-type t))
6841 (or backup-at-type
6842 maybe-typeless
6843 backup-maybe-typeless
6844 (when c-recognize-typeless-decls
6845 (not context)))
6846 (setq pos (c-up-list-forward (point)))
6847 (eq (char-before pos) ?\)))
6848 (c-fdoc-shift-type-backward)
6849 (goto-char pos)
6852 (c-forward-syntactic-ws))
6854 (when (and (or maybe-typeless backup-maybe-typeless)
6855 (not got-identifier)
6856 (not got-prefix)
6857 at-type)
6858 ;; Have found no identifier but `c-typeless-decl-kwds' has
6859 ;; matched so we know we're inside a declaration. The
6860 ;; preceding type must be the identifier instead.
6861 (c-fdoc-shift-type-backward))
6863 (setq
6864 at-decl-or-cast
6865 (catch 'at-decl-or-cast
6867 ;; CASE 1
6868 (when (> paren-depth 0)
6869 ;; Encountered something inside parens that isn't matched by
6870 ;; the `c-type-decl-*' regexps, so it's not a type decl
6871 ;; expression. Try to skip out to the same paren depth to
6872 ;; not confuse the cast check below.
6873 (c-safe (goto-char (scan-lists (point) 1 paren-depth)))
6874 ;; If we've found a specifier keyword then it's a
6875 ;; declaration regardless.
6876 (throw 'at-decl-or-cast (eq at-decl-or-cast t)))
6878 (setq at-decl-end
6879 (looking-at (cond ((eq context '<>) "[,>]")
6880 (context "[,\)]")
6881 (t "[,;]"))))
6883 ;; Now we've collected info about various characteristics of
6884 ;; the construct we're looking at. Below follows a decision
6885 ;; tree based on that. It's ordered to check more certain
6886 ;; signs before less certain ones.
6888 (if got-identifier
6889 (progn
6891 ;; CASE 2
6892 (when (and (or at-type maybe-typeless)
6893 (not (or got-prefix got-parens)))
6894 ;; Got another identifier directly after the type, so it's a
6895 ;; declaration.
6896 (throw 'at-decl-or-cast t))
6898 (when (and got-parens
6899 (not got-prefix)
6900 (not got-suffix-after-parens)
6901 (or backup-at-type
6902 maybe-typeless
6903 backup-maybe-typeless))
6904 ;; Got a declaration of the form "foo bar (gnu);" where we've
6905 ;; recognized "bar" as the type and "gnu" as the declarator.
6906 ;; In this case it's however more likely that "bar" is the
6907 ;; declarator and "gnu" a function argument or initializer (if
6908 ;; `c-recognize-paren-inits' is set), since the parens around
6909 ;; "gnu" would be superfluous if it's a declarator. Shift the
6910 ;; type one step backward.
6911 (c-fdoc-shift-type-backward)))
6913 ;; Found no identifier.
6915 (if backup-at-type
6916 (progn
6919 ;; CASE 3
6920 (when (= (point) start)
6921 ;; Got a plain list of identifiers. If a colon follows it's
6922 ;; a valid label, or maybe a bitfield. Otherwise the last
6923 ;; one probably is the declared identifier and we should
6924 ;; back up to the previous type, providing it isn't a cast.
6925 (if (and (eq (char-after) ?:)
6926 (not (c-major-mode-is 'java-mode)))
6927 (cond
6928 ;; If we've found a specifier keyword then it's a
6929 ;; declaration regardless.
6930 ((eq at-decl-or-cast t)
6931 (throw 'at-decl-or-cast t))
6932 ((and c-has-bitfields
6933 (eq at-decl-or-cast 'ids)) ; bitfield.
6934 (setq backup-if-not-cast t)
6935 (throw 'at-decl-or-cast t)))
6937 (setq backup-if-not-cast t)
6938 (throw 'at-decl-or-cast t)))
6940 ;; CASE 4
6941 (when (and got-suffix
6942 (not got-prefix)
6943 (not got-parens))
6944 ;; Got a plain list of identifiers followed by some suffix.
6945 ;; If this isn't a cast then the last identifier probably is
6946 ;; the declared one and we should back up to the previous
6947 ;; type.
6948 (setq backup-if-not-cast t)
6949 (throw 'at-decl-or-cast t)))
6951 ;; CASE 5
6952 (when (eq at-type t)
6953 ;; If the type is known we know that there can't be any
6954 ;; identifier somewhere else, and it's only in declarations in
6955 ;; e.g. function prototypes and in casts that the identifier may
6956 ;; be left out.
6957 (throw 'at-decl-or-cast t))
6959 (when (= (point) start)
6960 ;; Only got a single identifier (parsed as a type so far).
6961 ;; CASE 6
6962 (if (and
6963 ;; Check that the identifier isn't at the start of an
6964 ;; expression.
6965 at-decl-end
6966 (cond
6967 ((eq context 'decl)
6968 ;; Inside an arglist that contains declarations. If K&R
6969 ;; style declarations and parenthesis style initializers
6970 ;; aren't allowed then the single identifier must be a
6971 ;; type, else we require that it's known or found
6972 ;; (primitive types are handled above).
6973 (or (and (not c-recognize-knr-p)
6974 (not c-recognize-paren-inits))
6975 (memq at-type '(known found))))
6976 ((eq context '<>)
6977 ;; Inside a template arglist. Accept known and found
6978 ;; types; other identifiers could just as well be
6979 ;; constants in C++.
6980 (memq at-type '(known found)))))
6981 (throw 'at-decl-or-cast t)
6982 ;; CASE 7
6983 ;; Can't be a valid declaration or cast, but if we've found a
6984 ;; specifier it can't be anything else either, so treat it as
6985 ;; an invalid/unfinished declaration or cast.
6986 (throw 'at-decl-or-cast at-decl-or-cast))))
6988 (if (and got-parens
6989 (not got-prefix)
6990 (not context)
6991 (not (eq at-type t))
6992 (or backup-at-type
6993 maybe-typeless
6994 backup-maybe-typeless
6995 (when c-recognize-typeless-decls
6996 (or (not got-suffix)
6997 (not (looking-at
6998 c-after-suffixed-type-maybe-decl-key))))))
6999 ;; Got an empty paren pair and a preceding type that probably
7000 ;; really is the identifier. Shift the type backwards to make
7001 ;; the last one the identifier. This is analogous to the
7002 ;; "backtracking" done inside the `c-type-decl-suffix-key' loop
7003 ;; above.
7005 ;; Exception: In addition to the conditions in that
7006 ;; "backtracking" code, do not shift backward if we're not
7007 ;; looking at either `c-after-suffixed-type-decl-key' or "[;,]".
7008 ;; Since there's no preceding type, the shift would mean that
7009 ;; the declaration is typeless. But if the regexp doesn't match
7010 ;; then we will simply fall through in the tests below and not
7011 ;; recognize it at all, so it's better to try it as an abstract
7012 ;; declarator instead.
7013 (c-fdoc-shift-type-backward)
7015 ;; Still no identifier.
7016 ;; CASE 8
7017 (when (and got-prefix (or got-parens got-suffix))
7018 ;; Require `got-prefix' together with either `got-parens' or
7019 ;; `got-suffix' to recognize it as an abstract declarator:
7020 ;; `got-parens' only is probably an empty function call.
7021 ;; `got-suffix' only can build an ordinary expression together
7022 ;; with the preceding identifier which we've taken as a type.
7023 ;; We could actually accept on `got-prefix' only, but that can
7024 ;; easily occur temporarily while writing an expression so we
7025 ;; avoid that case anyway. We could do a better job if we knew
7026 ;; the point when the fontification was invoked.
7027 (throw 'at-decl-or-cast t))
7029 ;; CASE 9
7030 (when (and at-type
7031 (not got-prefix)
7032 (not got-parens)
7033 got-suffix-after-parens
7034 (eq (char-after got-suffix-after-parens) ?\())
7035 ;; Got a type, no declarator but a paren suffix. I.e. it's a
7036 ;; normal function call after all (or perhaps a C++ style object
7037 ;; instantiation expression).
7038 (throw 'at-decl-or-cast nil))))
7040 ;; CASE 10
7041 (when at-decl-or-cast
7042 ;; By now we've located the type in the declaration that we know
7043 ;; we're in.
7044 (throw 'at-decl-or-cast t))
7046 ;; CASE 11
7047 (when (and got-identifier
7048 (not context)
7049 (looking-at c-after-suffixed-type-decl-key)
7050 (if (and got-parens
7051 (not got-prefix)
7052 (not got-suffix)
7053 (not (eq at-type t)))
7054 ;; Shift the type backward in the case that there's a
7055 ;; single identifier inside parens. That can only
7056 ;; occur in K&R style function declarations so it's
7057 ;; more likely that it really is a function call.
7058 ;; Therefore we only do this after
7059 ;; `c-after-suffixed-type-decl-key' has matched.
7060 (progn (c-fdoc-shift-type-backward) t)
7061 got-suffix-after-parens))
7062 ;; A declaration according to `c-after-suffixed-type-decl-key'.
7063 (throw 'at-decl-or-cast t))
7065 ;; CASE 12
7066 (when (and (or got-prefix (not got-parens))
7067 (memq at-type '(t known)))
7068 ;; It's a declaration if a known type precedes it and it can't be a
7069 ;; function call.
7070 (throw 'at-decl-or-cast t))
7072 ;; If we get here we can't tell if this is a type decl or a normal
7073 ;; expression by looking at it alone. (That's under the assumption
7074 ;; that normal expressions always can look like type decl expressions,
7075 ;; which isn't really true but the cases where it doesn't hold are so
7076 ;; uncommon (e.g. some placements of "const" in C++) it's not worth
7077 ;; the effort to look for them.)
7079 (unless (or at-decl-end (looking-at "=[^=]"))
7080 ;; If this is a declaration it should end here or its initializer(*)
7081 ;; should start here, so check for allowed separation tokens. Note
7082 ;; that this rule doesn't work e.g. with a K&R arglist after a
7083 ;; function header.
7085 ;; *) Don't check for C++ style initializers using parens
7086 ;; since those already have been matched as suffixes.
7088 ;; If `at-decl-or-cast' is then we've found some other sign that
7089 ;; it's a declaration or cast, so then it's probably an
7090 ;; invalid/unfinished one.
7091 (throw 'at-decl-or-cast at-decl-or-cast))
7093 ;; Below are tests that only should be applied when we're certain to
7094 ;; not have parsed halfway through an expression.
7096 ;; CASE 14
7097 (when (memq at-type '(t known))
7098 ;; The expression starts with a known type so treat it as a
7099 ;; declaration.
7100 (throw 'at-decl-or-cast t))
7102 ;; CASE 15
7103 (when (and (c-major-mode-is 'c++-mode)
7104 ;; In C++ we check if the identifier is a known type, since
7105 ;; (con|de)structors use the class name as identifier.
7106 ;; We've always shifted over the identifier as a type and
7107 ;; then backed up again in this case.
7108 identifier-type
7109 (or (memq identifier-type '(found known))
7110 (and (eq (char-after identifier-start) ?~)
7111 ;; `at-type' probably won't be 'found for
7112 ;; destructors since the "~" is then part of the
7113 ;; type name being checked against the list of
7114 ;; known types, so do a check without that
7115 ;; operator.
7116 (or (save-excursion
7117 (goto-char (1+ identifier-start))
7118 (c-forward-syntactic-ws)
7119 (c-with-syntax-table
7120 c-identifier-syntax-table
7121 (looking-at c-known-type-key)))
7122 (save-excursion
7123 (goto-char (1+ identifier-start))
7124 ;; We have already parsed the type earlier,
7125 ;; so it'd be possible to cache the end
7126 ;; position instead of redoing it here, but
7127 ;; then we'd need to keep track of another
7128 ;; position everywhere.
7129 (c-check-type (point)
7130 (progn (c-forward-type)
7131 (point))))))))
7132 (throw 'at-decl-or-cast t))
7134 (if got-identifier
7135 (progn
7136 ;; CASE 16
7137 (when (and got-prefix-before-parens
7138 at-type
7139 (or at-decl-end (looking-at "=[^=]"))
7140 (not context)
7141 (not got-suffix))
7142 ;; Got something like "foo * bar;". Since we're not inside an
7143 ;; arglist it would be a meaningless expression because the
7144 ;; result isn't used. We therefore choose to recognize it as
7145 ;; a declaration. Do not allow a suffix since it could then
7146 ;; be a function call.
7147 (throw 'at-decl-or-cast t))
7149 ;; CASE 17
7150 (when (and (or got-suffix-after-parens
7151 (looking-at "=[^=]"))
7152 (eq at-type 'found)
7153 (not (eq context 'arglist)))
7154 ;; Got something like "a (*b) (c);" or "a (b) = c;". It could
7155 ;; be an odd expression or it could be a declaration. Treat
7156 ;; it as a declaration if "a" has been used as a type
7157 ;; somewhere else (if it's a known type we won't get here).
7158 (throw 'at-decl-or-cast t)))
7160 ;; CASE 18
7161 (when (and context
7162 (or got-prefix
7163 (and (eq context 'decl)
7164 (not c-recognize-paren-inits)
7165 (or got-parens got-suffix))))
7166 ;; Got a type followed by an abstract declarator. If `got-prefix'
7167 ;; is set it's something like "a *" without anything after it. If
7168 ;; `got-parens' or `got-suffix' is set it's "a()", "a[]", "a()[]",
7169 ;; or similar, which we accept only if the context rules out
7170 ;; expressions.
7171 (throw 'at-decl-or-cast t)))
7173 ;; If we had a complete symbol table here (which rules out
7174 ;; `c-found-types') we should return t due to the disambiguation rule
7175 ;; (in at least C++) that anything that can be parsed as a declaration
7176 ;; is a declaration. Now we're being more defensive and prefer to
7177 ;; highlight things like "foo (bar);" as a declaration only if we're
7178 ;; inside an arglist that contains declarations.
7179 (eq context 'decl))))
7181 ;; The point is now after the type decl expression.
7183 (cond
7184 ;; Check for a cast.
7185 ((save-excursion
7186 (and
7187 c-cast-parens
7189 ;; Should be the first type/identifier in a cast paren.
7190 (> preceding-token-end (point-min))
7191 (memq (char-before preceding-token-end) c-cast-parens)
7193 ;; The closing paren should follow.
7194 (progn
7195 (c-forward-syntactic-ws)
7196 (looking-at "\\s\)"))
7198 ;; There should be a primary expression after it.
7199 (let (pos)
7200 (forward-char)
7201 (c-forward-syntactic-ws)
7202 (setq cast-end (point))
7203 (and (looking-at c-primary-expr-regexp)
7204 (progn
7205 (setq pos (match-end 0))
7207 ;; Check if the expression begins with a prefix keyword.
7208 (match-beginning 2)
7209 (if (match-beginning 1)
7210 ;; Expression begins with an ambiguous operator. Treat
7211 ;; it as a cast if it's a type decl or if we've
7212 ;; recognized the type somewhere else.
7213 (or at-decl-or-cast
7214 (memq at-type '(t known found)))
7215 ;; Unless it's a keyword, it's the beginning of a primary
7216 ;; expression.
7217 (not (looking-at c-keywords-regexp)))))
7218 ;; If `c-primary-expr-regexp' matched a nonsymbol token, check
7219 ;; that it matched a whole one so that we don't e.g. confuse
7220 ;; the operator '-' with '->'. It's ok if it matches further,
7221 ;; though, since it e.g. can match the float '.5' while the
7222 ;; operator regexp only matches '.'.
7223 (or (not (looking-at c-nonsymbol-token-regexp))
7224 (<= (match-end 0) pos))))
7226 ;; There should either be a cast before it or something that isn't an
7227 ;; identifier or close paren.
7228 (> preceding-token-end (point-min))
7229 (progn
7230 (goto-char (1- preceding-token-end))
7231 (or (eq (point) last-cast-end)
7232 (progn
7233 (c-backward-syntactic-ws)
7234 (if (< (skip-syntax-backward "w_") 0)
7235 ;; It's a symbol. Accept it only if it's one of the
7236 ;; keywords that can precede an expression (without
7237 ;; surrounding parens).
7238 (looking-at c-simple-stmt-key)
7239 (and
7240 ;; Check that it isn't a close paren (block close is ok,
7241 ;; though).
7242 (not (memq (char-before) '(?\) ?\])))
7243 ;; Check that it isn't a nonsymbol identifier.
7244 (not (c-on-identifier)))))))))
7246 ;; Handle the cast.
7247 (when (and c-record-type-identifiers at-type (not (eq at-type t)))
7248 (let ((c-promote-possible-types t))
7249 (goto-char type-start)
7250 (c-forward-type)))
7252 (goto-char cast-end)
7253 'cast)
7255 (at-decl-or-cast
7256 ;; We're at a declaration. Highlight the type and the following
7257 ;; declarators.
7259 (when backup-if-not-cast
7260 (c-fdoc-shift-type-backward t))
7262 (when (and (eq context 'decl) (looking-at ","))
7263 ;; Make sure to propagate the `c-decl-arg-start' property to
7264 ;; the next argument if it's set in this one, to cope with
7265 ;; interactive refontification.
7266 (c-put-c-type-property (point) 'c-decl-arg-start))
7268 (when (and c-record-type-identifiers at-type (not (eq at-type t)))
7269 (let ((c-promote-possible-types t))
7270 (save-excursion
7271 (goto-char type-start)
7272 (c-forward-type))))
7274 (cons id-start
7275 (and (or at-type-decl at-typedef)
7276 (cons at-type-decl at-typedef))))
7279 ;; False alarm. Restore the recorded ranges.
7280 (setq c-record-type-identifiers save-rec-type-ids
7281 c-record-ref-identifiers save-rec-ref-ids)
7282 nil))))
7284 (defun c-forward-label (&optional assume-markup preceding-token-end limit)
7285 ;; Assuming that point is at the beginning of a token, check if it starts a
7286 ;; label and if so move over it and return non-nil (t in default situations,
7287 ;; specific symbols (see below) for interesting situations), otherwise don't
7288 ;; move and return nil. "Label" here means "most things with a colon".
7290 ;; More precisely, a "label" is regarded as one of:
7291 ;; (i) a goto target like "foo:" - returns the symbol `goto-target';
7292 ;; (ii) A case label - either the entire construct "case FOO:", or just the
7293 ;; bare "case", should the colon be missing. We return t;
7294 ;; (iii) a keyword which needs a colon, like "default:" or "private:"; We
7295 ;; return t;
7296 ;; (iv) One of QT's "extended" C++ variants of
7297 ;; "private:"/"protected:"/"public:"/"more:" looking like "public slots:".
7298 ;; Returns the symbol `qt-2kwds-colon'.
7299 ;; (v) QT's construct "signals:". Returns the symbol `qt-1kwd-colon'.
7300 ;; (vi) One of the keywords matched by `c-opt-extra-label-key' (without any
7301 ;; colon). Currently (2006-03), this applies only to Objective C's
7302 ;; keywords "@private", "@protected", and "@public". Returns t.
7304 ;; One of the things which will NOT be recognized as a label is a bit-field
7305 ;; element of a struct, something like "int foo:5".
7307 ;; The end of the label is taken to be just after the colon, or the end of
7308 ;; the first submatch in `c-opt-extra-label-key'. The point is directly
7309 ;; after the end on return. The terminating char gets marked with
7310 ;; `c-decl-end' to improve recognition of the following declaration or
7311 ;; statement.
7313 ;; If ASSUME-MARKUP is non-nil, it's assumed that the preceding
7314 ;; label, if any, has already been marked up like that.
7316 ;; If PRECEDING-TOKEN-END is given, it should be the first position
7317 ;; after the preceding token, i.e. on the other side of the
7318 ;; syntactic ws from the point. Use a value less than or equal to
7319 ;; (point-min) if the point is at the first token in (the visible
7320 ;; part of) the buffer.
7322 ;; The optional LIMIT limits the forward scan for the colon.
7324 ;; This function records the ranges of the label symbols on
7325 ;; `c-record-ref-identifiers' if `c-record-type-identifiers' (!) is
7326 ;; non-nil.
7328 ;; This function might do hidden buffer changes.
7330 (let ((start (point))
7331 label-end
7332 qt-symbol-idx
7333 macro-start ; if we're in one.
7334 label-type
7335 kwd)
7336 (cond
7337 ;; "case" or "default" (Doesn't apply to AWK).
7338 ((looking-at c-label-kwds-regexp)
7339 (let ((kwd-end (match-end 1)))
7340 ;; Record only the keyword itself for fontification, since in
7341 ;; case labels the following is a constant expression and not
7342 ;; a label.
7343 (when c-record-type-identifiers
7344 (c-record-ref-id (cons (match-beginning 1) kwd-end)))
7346 ;; Find the label end.
7347 (goto-char kwd-end)
7348 (setq label-type
7349 (if (and (c-syntactic-re-search-forward
7350 ;; Stop on chars that aren't allowed in expressions,
7351 ;; and on operator chars that would be meaningless
7352 ;; there. FIXME: This doesn't cope with ?: operators.
7353 "[;{=,@]\\|\\(\\=\\|[^:]\\):\\([^:]\\|\\'\\)"
7354 limit t t nil 1)
7355 (match-beginning 2))
7357 (progn ; there's a proper :
7358 (goto-char (match-beginning 2)) ; just after the :
7359 (c-put-c-type-property (1- (point)) 'c-decl-end)
7362 ;; It's an unfinished label. We consider the keyword enough
7363 ;; to recognize it as a label, so that it gets fontified.
7364 ;; Leave the point at the end of it, but don't put any
7365 ;; `c-decl-end' marker.
7366 (goto-char kwd-end)
7367 t))))
7369 ;; @private, @protected, @public, in Objective C, or similar.
7370 ((and c-opt-extra-label-key
7371 (looking-at c-opt-extra-label-key))
7372 ;; For a `c-opt-extra-label-key' match, we record the whole
7373 ;; thing for fontification. That's to get the leading '@' in
7374 ;; Objective-C protection labels fontified.
7375 (goto-char (match-end 1))
7376 (when c-record-type-identifiers
7377 (c-record-ref-id (cons (match-beginning 1) (point))))
7378 (c-put-c-type-property (1- (point)) 'c-decl-end)
7379 (setq label-type t))
7381 ;; All other cases of labels.
7382 ((and c-recognize-colon-labels ; nil for AWK and IDL, otherwise t.
7384 ;; A colon label must have something before the colon.
7385 (not (eq (char-after) ?:))
7387 ;; Check that we're not after a token that can't precede a label.
7389 ;; Trivially succeeds when there's no preceding token.
7390 ;; Succeeds when we're at a virtual semicolon.
7391 (if preceding-token-end
7392 (<= preceding-token-end (point-min))
7393 (save-excursion
7394 (c-backward-syntactic-ws)
7395 (setq preceding-token-end (point))
7396 (or (bobp)
7397 (c-at-vsemi-p))))
7399 ;; Check if we're after a label, if we're after a closing
7400 ;; paren that belong to statement, and with
7401 ;; `c-label-prefix-re'. It's done in different order
7402 ;; depending on `assume-markup' since the checks have
7403 ;; different expensiveness.
7404 (if assume-markup
7406 (eq (c-get-char-property (1- preceding-token-end) 'c-type)
7407 'c-decl-end)
7409 (save-excursion
7410 (goto-char (1- preceding-token-end))
7411 (c-beginning-of-current-token)
7412 (or (looking-at c-label-prefix-re)
7413 (looking-at c-block-stmt-1-key)))
7415 (and (eq (char-before preceding-token-end) ?\))
7416 (c-after-conditional)))
7419 (save-excursion
7420 (goto-char (1- preceding-token-end))
7421 (c-beginning-of-current-token)
7422 (or (looking-at c-label-prefix-re)
7423 (looking-at c-block-stmt-1-key)))
7425 (cond
7426 ((eq (char-before preceding-token-end) ?\))
7427 (c-after-conditional))
7429 ((eq (char-before preceding-token-end) ?:)
7430 ;; Might be after another label, so check it recursively.
7431 (save-restriction
7432 (save-excursion
7433 (goto-char (1- preceding-token-end))
7434 ;; Essentially the same as the
7435 ;; `c-syntactic-re-search-forward' regexp below.
7436 (setq macro-start
7437 (save-excursion (and (c-beginning-of-macro)
7438 (point))))
7439 (if macro-start (narrow-to-region macro-start (point-max)))
7440 (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+" nil t)
7441 ;; Note: the following should work instead of the
7442 ;; narrow-to-region above. Investigate why not,
7443 ;; sometime. ACM, 2006-03-31.
7444 ;; (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+"
7445 ;; macro-start t)
7446 (let ((pte (point))
7447 ;; If the caller turned on recording for us,
7448 ;; it shouldn't apply when we check the
7449 ;; preceding label.
7450 c-record-type-identifiers)
7451 ;; A label can't start at a cpp directive. Check for
7452 ;; this, since c-forward-syntactic-ws would foul up on it.
7453 (unless (and c-opt-cpp-prefix (looking-at c-opt-cpp-prefix))
7454 (c-forward-syntactic-ws)
7455 (c-forward-label nil pte start))))))))))
7457 ;; Point is still at the beginning of the possible label construct.
7459 ;; Check that the next nonsymbol token is ":", or that we're in one
7460 ;; of QT's "slots" declarations. Allow '(' for the sake of macro
7461 ;; arguments. FIXME: Should build this regexp from the language
7462 ;; constants.
7463 (cond
7464 ;; public: protected: private:
7465 ((and
7466 (c-major-mode-is 'c++-mode)
7467 (search-forward-regexp
7468 "\\=p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\>[^_]" nil t)
7469 (progn (backward-char)
7470 (c-forward-syntactic-ws limit)
7471 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon.
7472 (forward-char)
7473 (setq label-type t))
7474 ;; QT double keyword like "protected slots:" or goto target.
7475 ((progn (goto-char start) nil))
7476 ((when (c-syntactic-re-search-forward
7477 "[ \t\n[:?;{=*/%&|,<>!@+-]" limit t t) ; not at EOB
7478 (backward-char)
7479 (setq label-end (point))
7480 (setq qt-symbol-idx
7481 (and (c-major-mode-is 'c++-mode)
7482 (string-match
7483 "\\(p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\|more\\)\\>"
7484 (buffer-substring start (point)))))
7485 (c-forward-syntactic-ws limit)
7486 (cond
7487 ((looking-at ":\\([^:]\\|\\'\\)") ; A single colon.
7488 (forward-char)
7489 (setq label-type
7490 (if (or (string= "signals" ; Special QT macro
7491 (setq kwd (buffer-substring-no-properties start label-end)))
7492 (string= "Q_SIGNALS" kwd))
7493 'qt-1kwd-colon
7494 'goto-target)))
7495 ((and qt-symbol-idx
7496 (search-forward-regexp "\\=\\(slots\\|Q_SLOTS\\)\\>" limit t)
7497 (progn (c-forward-syntactic-ws limit)
7498 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon
7499 (forward-char)
7500 (setq label-type 'qt-2kwds-colon)))))))
7502 (save-restriction
7503 (narrow-to-region start (point))
7505 ;; Check that `c-nonlabel-token-key' doesn't match anywhere.
7506 (catch 'check-label
7507 (goto-char start)
7508 (while (progn
7509 (when (looking-at c-nonlabel-token-key)
7510 (goto-char start)
7511 (setq label-type nil)
7512 (throw 'check-label nil))
7513 (and (c-safe (c-forward-sexp)
7514 (c-forward-syntactic-ws)
7516 (not (eobp)))))
7518 ;; Record the identifiers in the label for fontification, unless
7519 ;; it begins with `c-label-kwds' in which case the following
7520 ;; identifiers are part of a (constant) expression that
7521 ;; shouldn't be fontified.
7522 (when (and c-record-type-identifiers
7523 (progn (goto-char start)
7524 (not (looking-at c-label-kwds-regexp))))
7525 (while (c-syntactic-re-search-forward c-symbol-key nil t)
7526 (c-record-ref-id (cons (match-beginning 0)
7527 (match-end 0)))))
7529 (c-put-c-type-property (1- (point-max)) 'c-decl-end)
7530 (goto-char (point-max)))))
7533 ;; Not a label.
7534 (goto-char start)))
7535 label-type))
7537 (defun c-forward-objc-directive ()
7538 ;; Assuming the point is at the beginning of a token, try to move
7539 ;; forward to the end of the Objective-C directive that starts
7540 ;; there. Return t if a directive was fully recognized, otherwise
7541 ;; the point is moved as far as one could be successfully parsed and
7542 ;; nil is returned.
7544 ;; This function records identifier ranges on
7545 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
7546 ;; `c-record-type-identifiers' is non-nil.
7548 ;; This function might do hidden buffer changes.
7550 (let ((start (point))
7551 start-char
7552 (c-promote-possible-types t)
7554 ;; Turn off recognition of angle bracket arglists while parsing
7555 ;; types here since the protocol reference list might then be
7556 ;; considered part of the preceding name or superclass-name.
7557 c-recognize-<>-arglists)
7559 (if (or
7560 (when (looking-at
7561 (eval-when-compile
7562 (c-make-keywords-re t
7563 (append (c-lang-const c-protection-kwds objc)
7564 '("@end"))
7565 'objc-mode)))
7566 (goto-char (match-end 1))
7569 (and
7570 (looking-at
7571 (eval-when-compile
7572 (c-make-keywords-re t
7573 '("@interface" "@implementation" "@protocol")
7574 'objc-mode)))
7576 ;; Handle the name of the class itself.
7577 (progn
7578 ; (c-forward-token-2) ; 2006/1/13 This doesn't move if the token's
7579 ; at EOB.
7580 (goto-char (match-end 0))
7581 (setq lim (point))
7582 (c-skip-ws-forward)
7583 (c-forward-type))
7585 (catch 'break
7586 ;; Look for ": superclass-name" or "( category-name )".
7587 (when (looking-at "[:\(]")
7588 (setq start-char (char-after))
7589 (forward-char)
7590 (c-forward-syntactic-ws)
7591 (unless (c-forward-type) (throw 'break nil))
7592 (when (eq start-char ?\()
7593 (unless (eq (char-after) ?\)) (throw 'break nil))
7594 (forward-char)
7595 (c-forward-syntactic-ws)))
7597 ;; Look for a protocol reference list.
7598 (if (eq (char-after) ?<)
7599 (let ((c-recognize-<>-arglists t)
7600 (c-parse-and-markup-<>-arglists t)
7601 c-restricted-<>-arglists)
7602 (c-forward-<>-arglist t))
7603 t))))
7605 (progn
7606 (c-backward-syntactic-ws lim)
7607 (c-clear-c-type-property start (1- (point)) 'c-decl-end)
7608 (c-put-c-type-property (1- (point)) 'c-decl-end)
7611 (c-clear-c-type-property start (point) 'c-decl-end)
7612 nil)))
7614 (defun c-beginning-of-inheritance-list (&optional lim)
7615 ;; Go to the first non-whitespace after the colon that starts a
7616 ;; multiple inheritance introduction. Optional LIM is the farthest
7617 ;; back we should search.
7619 ;; This function might do hidden buffer changes.
7620 (c-with-syntax-table c++-template-syntax-table
7621 (c-backward-token-2 0 t lim)
7622 (while (and (or (looking-at c-symbol-start)
7623 (looking-at "[<,]\\|::"))
7624 (zerop (c-backward-token-2 1 t lim))))))
7626 (defun c-in-method-def-p ()
7627 ;; Return nil if we aren't in a method definition, otherwise the
7628 ;; position of the initial [+-].
7630 ;; This function might do hidden buffer changes.
7631 (save-excursion
7632 (beginning-of-line)
7633 (and c-opt-method-key
7634 (looking-at c-opt-method-key)
7635 (point))
7638 ;; Contributed by Kevin Ryde <user42@zip.com.au>.
7639 (defun c-in-gcc-asm-p ()
7640 ;; Return non-nil if point is within a gcc \"asm\" block.
7642 ;; This should be called with point inside an argument list.
7644 ;; Only one level of enclosing parentheses is considered, so for
7645 ;; instance `nil' is returned when in a function call within an asm
7646 ;; operand.
7648 ;; This function might do hidden buffer changes.
7650 (and c-opt-asm-stmt-key
7651 (save-excursion
7652 (beginning-of-line)
7653 (backward-up-list 1)
7654 (c-beginning-of-statement-1 (point-min) nil t)
7655 (looking-at c-opt-asm-stmt-key))))
7657 (defun c-at-toplevel-p ()
7658 "Return a determination as to whether point is \"at the top level\".
7659 Informally, \"at the top level\" is anywhere where you can write
7660 a function.
7662 More precisely, being at the top-level means that point is either
7663 outside any enclosing block (such as a function definition), or
7664 directly inside a class, namespace or other block that contains
7665 another declaration level.
7667 If point is not at the top-level (e.g. it is inside a method
7668 definition), then nil is returned. Otherwise, if point is at a
7669 top-level not enclosed within a class definition, t is returned.
7670 Otherwise, a 2-vector is returned where the zeroth element is the
7671 buffer position of the start of the class declaration, and the first
7672 element is the buffer position of the enclosing class's opening
7673 brace.
7675 Note that this function might do hidden buffer changes. See the
7676 comment at the start of cc-engine.el for more info."
7677 (let ((paren-state (c-parse-state)))
7678 (or (not (c-most-enclosing-brace paren-state))
7679 (c-search-uplist-for-classkey paren-state))))
7681 (defun c-just-after-func-arglist-p (&optional lim)
7682 ;; Return non-nil if the point is in the region after the argument
7683 ;; list of a function and its opening brace (or semicolon in case it
7684 ;; got no body). If there are K&R style argument declarations in
7685 ;; that region, the point has to be inside the first one for this
7686 ;; function to recognize it.
7688 ;; If successful, the point is moved to the first token after the
7689 ;; function header (see `c-forward-decl-or-cast-1' for details) and
7690 ;; the position of the opening paren of the function arglist is
7691 ;; returned.
7693 ;; The point is clobbered if not successful.
7695 ;; LIM is used as bound for backward buffer searches.
7697 ;; This function might do hidden buffer changes.
7699 (let ((beg (point)) end id-start)
7700 (and
7701 (eq (c-beginning-of-statement-1 lim) 'same)
7703 (not (and (c-major-mode-is 'objc-mode)
7704 (c-forward-objc-directive)))
7706 (setq id-start
7707 (car-safe (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil)))
7708 (< id-start beg)
7710 ;; There should not be a '=' or ',' between beg and the
7711 ;; start of the declaration since that means we were in the
7712 ;; "expression part" of the declaration.
7713 (or (> (point) beg)
7714 (not (looking-at "[=,]")))
7716 (save-excursion
7717 ;; Check that there's an arglist paren in the
7718 ;; declaration.
7719 (goto-char id-start)
7720 (cond ((eq (char-after) ?\()
7721 ;; The declarator is a paren expression, so skip past it
7722 ;; so that we don't get stuck on that instead of the
7723 ;; function arglist.
7724 (c-forward-sexp))
7725 ((and c-opt-op-identifier-prefix
7726 (looking-at c-opt-op-identifier-prefix))
7727 ;; Don't trip up on "operator ()".
7728 (c-forward-token-2 2 t)))
7729 (and (< (point) beg)
7730 (c-syntactic-re-search-forward "(" beg t t)
7731 (1- (point)))))))
7733 (defun c-in-knr-argdecl (&optional lim)
7734 ;; Return the position of the first argument declaration if point is
7735 ;; inside a K&R style argument declaration list, nil otherwise.
7736 ;; `c-recognize-knr-p' is not checked. If LIM is non-nil, it's a
7737 ;; position that bounds the backward search for the argument list.
7739 ;; Point must be within a possible K&R region, e.g. just before a top-level
7740 ;; "{". It must be outside of parens and brackets. The test can return
7741 ;; false positives otherwise.
7743 ;; This function might do hidden buffer changes.
7745 (save-excursion
7746 (save-restriction
7747 ;; If we're in a macro, our search range is restricted to it. Narrow to
7748 ;; the searchable range.
7749 (let* ((macro-start (save-excursion (and (c-beginning-of-macro) (point))))
7750 (macro-end (save-excursion (and macro-start (c-end-of-macro) (point))))
7751 (low-lim (max (or lim (point-min)) (or macro-start (point-min))))
7752 before-lparen after-rparen
7753 (pp-count-out 20)) ; Max number of paren/brace constructs before
7754 ; we give up
7755 (narrow-to-region low-lim (or macro-end (point-max)))
7757 ;; Search backwards for the defun's argument list. We give up if we
7758 ;; encounter a "}" (end of a previous defun) an "=" (which can't be in
7759 ;; a knr region) or BOB.
7761 ;; The criterion for a paren structure being the arg list is:
7762 ;; o - there is non-WS stuff after it but before any "{"; AND
7763 ;; o - the token after it isn't a ";" AND
7764 ;; o - it is preceded by either an identifier (the function name) or
7765 ;; a macro expansion like "DEFUN (...)"; AND
7766 ;; o - its content is a non-empty comma-separated list of identifiers
7767 ;; (an empty arg list won't have a knr region).
7769 ;; The following snippet illustrates these rules:
7770 ;; int foo (bar, baz, yuk)
7771 ;; int bar [] ;
7772 ;; int (*baz) (my_type) ;
7773 ;; int (*) (void) (*yuk) (void) ;
7774 ;; {
7776 (catch 'knr
7777 (while (> pp-count-out 0) ; go back one paren/bracket pair each time.
7778 (setq pp-count-out (1- pp-count-out))
7779 (c-syntactic-skip-backward "^)]}=")
7780 (cond ((eq (char-before) ?\))
7781 (setq after-rparen (point)))
7782 ((eq (char-before) ?\])
7783 (setq after-rparen nil))
7784 (t ; either } (hit previous defun) or = or no more
7785 ; parens/brackets.
7786 (throw 'knr nil)))
7788 (if after-rparen
7789 ;; We're inside a paren. Could it be our argument list....?
7791 (and
7792 (progn
7793 (goto-char after-rparen)
7794 (unless (c-go-list-backward) (throw 'knr nil)) ;
7795 ;; FIXME!!! What about macros between the parens? 2007/01/20
7796 (setq before-lparen (point)))
7798 ;; It can't be the arg list if next token is ; or {
7799 (progn (goto-char after-rparen)
7800 (c-forward-syntactic-ws)
7801 (not (memq (char-after) '(?\; ?\{ ?\=))))
7803 ;; Is the thing preceding the list an identifier (the
7804 ;; function name), or a macro expansion?
7805 (progn
7806 (goto-char before-lparen)
7807 (eq (c-backward-token-2) 0)
7808 (or (eq (c-on-identifier) (point))
7809 (and (eq (char-after) ?\))
7810 (c-go-up-list-backward)
7811 (eq (c-backward-token-2) 0)
7812 (eq (c-on-identifier) (point)))))
7814 ;; Have we got a non-empty list of comma-separated
7815 ;; identifiers?
7816 (progn
7817 (goto-char before-lparen)
7818 (c-forward-token-2) ; to first token inside parens
7819 (and
7820 (c-on-identifier)
7821 (c-forward-token-2)
7822 (catch 'id-list
7823 (while (eq (char-after) ?\,)
7824 (c-forward-token-2)
7825 (unless (c-on-identifier) (throw 'id-list nil))
7826 (c-forward-token-2))
7827 (eq (char-after) ?\))))))
7829 ;; ...Yes. We've identified the function's argument list.
7830 (throw 'knr
7831 (progn (goto-char after-rparen)
7832 (c-forward-syntactic-ws)
7833 (point)))
7835 ;; ...No. The current parens aren't the function's arg list.
7836 (goto-char before-lparen))
7838 (or (c-go-list-backward) ; backwards over [ .... ]
7839 (throw 'knr nil)))))))))
7841 (defun c-skip-conditional ()
7842 ;; skip forward over conditional at point, including any predicate
7843 ;; statements in parentheses. No error checking is performed.
7845 ;; This function might do hidden buffer changes.
7846 (c-forward-sexp (cond
7847 ;; else if()
7848 ((looking-at (concat "\\<else"
7849 "\\([ \t\n]\\|\\\\\n\\)+"
7850 "if\\>\\([^_]\\|$\\)"))
7852 ;; do, else, try, finally
7853 ((looking-at (concat "\\<\\("
7854 "do\\|else\\|try\\|finally"
7855 "\\)\\>\\([^_]\\|$\\)"))
7857 ;; for, if, while, switch, catch, synchronized, foreach
7858 (t 2))))
7860 (defun c-after-conditional (&optional lim)
7861 ;; If looking at the token after a conditional then return the
7862 ;; position of its start, otherwise return nil.
7864 ;; This function might do hidden buffer changes.
7865 (save-excursion
7866 (and (zerop (c-backward-token-2 1 t lim))
7867 (or (looking-at c-block-stmt-1-key)
7868 (and (eq (char-after) ?\()
7869 (zerop (c-backward-token-2 1 t lim))
7870 (looking-at c-block-stmt-2-key)))
7871 (point))))
7873 (defun c-after-special-operator-id (&optional lim)
7874 ;; If the point is after an operator identifier that isn't handled
7875 ;; like an ordinary symbol (i.e. like "operator =" in C++) then the
7876 ;; position of the start of that identifier is returned. nil is
7877 ;; returned otherwise. The point may be anywhere in the syntactic
7878 ;; whitespace after the last token of the operator identifier.
7880 ;; This function might do hidden buffer changes.
7881 (save-excursion
7882 (and c-overloadable-operators-regexp
7883 (zerop (c-backward-token-2 1 nil lim))
7884 (looking-at c-overloadable-operators-regexp)
7885 (or (not c-opt-op-identifier-prefix)
7886 (and
7887 (zerop (c-backward-token-2 1 nil lim))
7888 (looking-at c-opt-op-identifier-prefix)))
7889 (point))))
7891 (defsubst c-backward-to-block-anchor (&optional lim)
7892 ;; Assuming point is at a brace that opens a statement block of some
7893 ;; kind, move to the proper anchor point for that block. It might
7894 ;; need to be adjusted further by c-add-stmt-syntax, but the
7895 ;; position at return is suitable as start position for that
7896 ;; function.
7898 ;; This function might do hidden buffer changes.
7899 (unless (= (point) (c-point 'boi))
7900 (let ((start (c-after-conditional lim)))
7901 (if start
7902 (goto-char start)))))
7904 (defsubst c-backward-to-decl-anchor (&optional lim)
7905 ;; Assuming point is at a brace that opens the block of a top level
7906 ;; declaration of some kind, move to the proper anchor point for
7907 ;; that block.
7909 ;; This function might do hidden buffer changes.
7910 (unless (= (point) (c-point 'boi))
7911 (c-beginning-of-statement-1 lim)))
7913 (defun c-search-decl-header-end ()
7914 ;; Search forward for the end of the "header" of the current
7915 ;; declaration. That's the position where the definition body
7916 ;; starts, or the first variable initializer, or the ending
7917 ;; semicolon. I.e. search forward for the closest following
7918 ;; (syntactically relevant) '{', '=' or ';' token. Point is left
7919 ;; _after_ the first found token, or at point-max if none is found.
7921 ;; This function might do hidden buffer changes.
7923 (let ((base (point)))
7924 (if (c-major-mode-is 'c++-mode)
7926 ;; In C++ we need to take special care to handle operator
7927 ;; tokens and those pesky template brackets.
7928 (while (and
7929 (c-syntactic-re-search-forward "[;{<=]" nil 'move t t)
7931 (c-end-of-current-token base)
7932 ;; Handle operator identifiers, i.e. ignore any
7933 ;; operator token preceded by "operator".
7934 (save-excursion
7935 (and (c-safe (c-backward-sexp) t)
7936 (looking-at c-opt-op-identifier-prefix)))
7937 (and (eq (char-before) ?<)
7938 (c-with-syntax-table c++-template-syntax-table
7939 (if (c-safe (goto-char (c-up-list-forward (point))))
7941 (goto-char (point-max))
7942 nil)))))
7943 (setq base (point)))
7945 (while (and
7946 (c-syntactic-re-search-forward "[;{=]" nil 'move t t)
7947 (c-end-of-current-token base))
7948 (setq base (point))))))
7950 (defun c-beginning-of-decl-1 (&optional lim)
7951 ;; Go to the beginning of the current declaration, or the beginning
7952 ;; of the previous one if already at the start of it. Point won't
7953 ;; be moved out of any surrounding paren. Return a cons cell of the
7954 ;; form (MOVE . KNR-POS). MOVE is like the return value from
7955 ;; `c-beginning-of-statement-1'. If point skipped over some K&R
7956 ;; style argument declarations (and they are to be recognized) then
7957 ;; KNR-POS is set to the start of the first such argument
7958 ;; declaration, otherwise KNR-POS is nil. If LIM is non-nil, it's a
7959 ;; position that bounds the backward search.
7961 ;; NB: Cases where the declaration continues after the block, as in
7962 ;; "struct foo { ... } bar;", are currently recognized as two
7963 ;; declarations, e.g. "struct foo { ... }" and "bar;" in this case.
7965 ;; This function might do hidden buffer changes.
7966 (catch 'return
7967 (let* ((start (point))
7968 (last-stmt-start (point))
7969 (move (c-beginning-of-statement-1 lim nil t)))
7971 ;; `c-beginning-of-statement-1' stops at a block start, but we
7972 ;; want to continue if the block doesn't begin a top level
7973 ;; construct, i.e. if it isn't preceded by ';', '}', ':', bob,
7974 ;; or an open paren.
7975 (let ((beg (point)) tentative-move)
7976 ;; Go back one "statement" each time round the loop until we're just
7977 ;; after a ;, }, or :, or at BOB or the start of a macro or start of
7978 ;; an ObjC method. This will move over a multiple declaration whose
7979 ;; components are comma separated.
7980 (while (and
7981 ;; Must check with c-opt-method-key in ObjC mode.
7982 (not (and c-opt-method-key
7983 (looking-at c-opt-method-key)))
7984 (/= last-stmt-start (point))
7985 (progn
7986 (c-backward-syntactic-ws lim)
7987 (not (memq (char-before) '(?\; ?} ?: nil))))
7988 (save-excursion
7989 (backward-char)
7990 (not (looking-at "\\s(")))
7991 ;; Check that we don't move from the first thing in a
7992 ;; macro to its header.
7993 (not (eq (setq tentative-move
7994 (c-beginning-of-statement-1 lim nil t))
7995 'macro)))
7996 (setq last-stmt-start beg
7997 beg (point)
7998 move tentative-move))
7999 (goto-char beg))
8001 (when c-recognize-knr-p
8002 (let ((fallback-pos (point)) knr-argdecl-start)
8003 ;; Handle K&R argdecls. Back up after the "statement" jumped
8004 ;; over by `c-beginning-of-statement-1', unless it was the
8005 ;; function body, in which case we're sitting on the opening
8006 ;; brace now. Then test if we're in a K&R argdecl region and
8007 ;; that we started at the other side of the first argdecl in
8008 ;; it.
8009 (unless (eq (char-after) ?{)
8010 (goto-char last-stmt-start))
8011 (if (and (setq knr-argdecl-start (c-in-knr-argdecl lim))
8012 (< knr-argdecl-start start)
8013 (progn
8014 (goto-char knr-argdecl-start)
8015 (not (eq (c-beginning-of-statement-1 lim nil t) 'macro))))
8016 (throw 'return
8017 (cons (if (eq (char-after fallback-pos) ?{)
8018 'previous
8019 'same)
8020 knr-argdecl-start))
8021 (goto-char fallback-pos))))
8023 ;; `c-beginning-of-statement-1' counts each brace block as a separate
8024 ;; statement, so the result will be 'previous if we've moved over any.
8025 ;; So change our result back to 'same if necessary.
8027 ;; If they were brace list initializers we might not have moved over a
8028 ;; declaration boundary though, so change it to 'same if we've moved
8029 ;; past a '=' before '{', but not ';'. (This ought to be integrated
8030 ;; into `c-beginning-of-statement-1', so we avoid this extra pass which
8031 ;; potentially can search over a large amount of text.). Take special
8032 ;; pains not to get mislead by C++'s "operator=", and the like.
8033 (if (and (eq move 'previous)
8034 (c-with-syntax-table (if (c-major-mode-is 'c++-mode)
8035 c++-template-syntax-table
8036 (syntax-table))
8037 (save-excursion
8038 (and
8039 (progn
8040 (while ; keep going back to "[;={"s until we either find
8041 ; no more, or get to one which isn't an "operator ="
8042 (and (c-syntactic-re-search-forward "[;={]" start t t t)
8043 (eq (char-before) ?=)
8044 c-overloadable-operators-regexp
8045 c-opt-op-identifier-prefix
8046 (save-excursion
8047 (eq (c-backward-token-2) 0)
8048 (looking-at c-overloadable-operators-regexp)
8049 (eq (c-backward-token-2) 0)
8050 (looking-at c-opt-op-identifier-prefix))))
8051 (eq (char-before) ?=))
8052 (c-syntactic-re-search-forward "[;{]" start t t)
8053 (eq (char-before) ?{)
8054 (c-safe (goto-char (c-up-list-forward (point))) t)
8055 (not (c-syntactic-re-search-forward ";" start t t))))))
8056 (cons 'same nil)
8057 (cons move nil)))))
8059 (defun c-end-of-decl-1 ()
8060 ;; Assuming point is at the start of a declaration (as detected by
8061 ;; e.g. `c-beginning-of-decl-1'), go to the end of it. Unlike
8062 ;; `c-beginning-of-decl-1', this function handles the case when a
8063 ;; block is followed by identifiers in e.g. struct declarations in C
8064 ;; or C++. If a proper end was found then t is returned, otherwise
8065 ;; point is moved as far as possible within the current sexp and nil
8066 ;; is returned. This function doesn't handle macros; use
8067 ;; `c-end-of-macro' instead in those cases.
8069 ;; This function might do hidden buffer changes.
8070 (let ((start (point))
8071 (decl-syntax-table (if (c-major-mode-is 'c++-mode)
8072 c++-template-syntax-table
8073 (syntax-table))))
8074 (catch 'return
8075 (c-search-decl-header-end)
8077 (when (and c-recognize-knr-p
8078 (eq (char-before) ?\;)
8079 (c-in-knr-argdecl start))
8080 ;; Stopped at the ';' in a K&R argdecl section which is
8081 ;; detected using the same criteria as in
8082 ;; `c-beginning-of-decl-1'. Move to the following block
8083 ;; start.
8084 (c-syntactic-re-search-forward "{" nil 'move t))
8086 (when (eq (char-before) ?{)
8087 ;; Encountered a block in the declaration. Jump over it.
8088 (condition-case nil
8089 (goto-char (c-up-list-forward (point)))
8090 (error (goto-char (point-max))
8091 (throw 'return nil)))
8092 (if (or (not c-opt-block-decls-with-vars-key)
8093 (save-excursion
8094 (c-with-syntax-table decl-syntax-table
8095 (let ((lim (point)))
8096 (goto-char start)
8097 (not (and
8098 ;; Check for `c-opt-block-decls-with-vars-key'
8099 ;; before the first paren.
8100 (c-syntactic-re-search-forward
8101 (concat "[;=\(\[{]\\|\\("
8102 c-opt-block-decls-with-vars-key
8103 "\\)")
8104 lim t t t)
8105 (match-beginning 1)
8106 (not (eq (char-before) ?_))
8107 ;; Check that the first following paren is
8108 ;; the block.
8109 (c-syntactic-re-search-forward "[;=\(\[{]"
8110 lim t t t)
8111 (eq (char-before) ?{)))))))
8112 ;; The declaration doesn't have any of the
8113 ;; `c-opt-block-decls-with-vars' keywords in the
8114 ;; beginning, so it ends here at the end of the block.
8115 (throw 'return t)))
8117 (c-with-syntax-table decl-syntax-table
8118 (while (progn
8119 (if (eq (char-before) ?\;)
8120 (throw 'return t))
8121 (c-syntactic-re-search-forward ";" nil 'move t))))
8122 nil)))
8124 (defun c-looking-at-decl-block (containing-sexp goto-start &optional limit)
8125 ;; Assuming the point is at an open brace, check if it starts a
8126 ;; block that contains another declaration level, i.e. that isn't a
8127 ;; statement block or a brace list, and if so return non-nil.
8129 ;; If the check is successful, the return value is the start of the
8130 ;; keyword that tells what kind of construct it is, i.e. typically
8131 ;; what `c-decl-block-key' matched. Also, if GOTO-START is set then
8132 ;; the point will be at the start of the construct, before any
8133 ;; leading specifiers, otherwise it's at the returned position.
8135 ;; The point is clobbered if the check is unsuccessful.
8137 ;; CONTAINING-SEXP is the position of the open of the surrounding
8138 ;; paren, or nil if none.
8140 ;; The optional LIMIT limits the backward search for the start of
8141 ;; the construct. It's assumed to be at a syntactically relevant
8142 ;; position.
8144 ;; If any template arglists are found in the searched region before
8145 ;; the open brace, they get marked with paren syntax.
8147 ;; This function might do hidden buffer changes.
8149 (let ((open-brace (point)) kwd-start first-specifier-pos)
8150 (c-syntactic-skip-backward c-block-prefix-charset limit t)
8152 (when (and c-recognize-<>-arglists
8153 (eq (char-before) ?>))
8154 ;; Could be at the end of a template arglist.
8155 (let ((c-parse-and-markup-<>-arglists t)
8156 (c-disallow-comma-in-<>-arglists
8157 (and containing-sexp
8158 (not (eq (char-after containing-sexp) ?{)))))
8159 (while (and
8160 (c-backward-<>-arglist nil limit)
8161 (progn
8162 (c-syntactic-skip-backward c-block-prefix-charset limit t)
8163 (eq (char-before) ?>))))))
8165 ;; Note: Can't get bogus hits inside template arglists below since they
8166 ;; have gotten paren syntax above.
8167 (when (and
8168 ;; If `goto-start' is set we begin by searching for the
8169 ;; first possible position of a leading specifier list.
8170 ;; The `c-decl-block-key' search continues from there since
8171 ;; we know it can't match earlier.
8172 (if goto-start
8173 (when (c-syntactic-re-search-forward c-symbol-start
8174 open-brace t t)
8175 (goto-char (setq first-specifier-pos (match-beginning 0)))
8179 (cond
8180 ((c-syntactic-re-search-forward c-decl-block-key open-brace t t t)
8181 (goto-char (setq kwd-start (match-beginning 0)))
8184 ;; Found a keyword that can't be a type?
8185 (match-beginning 1)
8187 ;; Can be a type too, in which case it's the return type of a
8188 ;; function (under the assumption that no declaration level
8189 ;; block construct starts with a type).
8190 (not (c-forward-type))
8192 ;; Jumped over a type, but it could be a declaration keyword
8193 ;; followed by the declared identifier that we've jumped over
8194 ;; instead (e.g. in "class Foo {"). If it indeed is a type
8195 ;; then we should be at the declarator now, so check for a
8196 ;; valid declarator start.
8198 ;; Note: This doesn't cope with the case when a declared
8199 ;; identifier is followed by e.g. '(' in a language where '('
8200 ;; also might be part of a declarator expression. Currently
8201 ;; there's no such language.
8202 (not (or (looking-at c-symbol-start)
8203 (looking-at c-type-decl-prefix-key)))))
8205 ;; In Pike a list of modifiers may be followed by a brace
8206 ;; to make them apply to many identifiers. Note that the
8207 ;; match data will be empty on return in this case.
8208 ((and (c-major-mode-is 'pike-mode)
8209 (progn
8210 (goto-char open-brace)
8211 (= (c-backward-token-2) 0))
8212 (looking-at c-specifier-key)
8213 ;; Use this variant to avoid yet another special regexp.
8214 (c-keyword-member (c-keyword-sym (match-string 1))
8215 'c-modifier-kwds))
8216 (setq kwd-start (point))
8217 t)))
8219 ;; Got a match.
8221 (if goto-start
8222 ;; Back up over any preceding specifiers and their clauses
8223 ;; by going forward from `first-specifier-pos', which is the
8224 ;; earliest possible position where the specifier list can
8225 ;; start.
8226 (progn
8227 (goto-char first-specifier-pos)
8229 (while (< (point) kwd-start)
8230 (if (looking-at c-symbol-key)
8231 ;; Accept any plain symbol token on the ground that
8232 ;; it's a specifier masked through a macro (just
8233 ;; like `c-forward-decl-or-cast-1' skip forward over
8234 ;; such tokens).
8236 ;; Could be more restrictive wrt invalid keywords,
8237 ;; but that'd only occur in invalid code so there's
8238 ;; no use spending effort on it.
8239 (let ((end (match-end 0)))
8240 (unless (c-forward-keyword-clause 0)
8241 (goto-char end)
8242 (c-forward-syntactic-ws)))
8244 ;; Can't parse a declaration preamble and is still
8245 ;; before `kwd-start'. That means `first-specifier-pos'
8246 ;; was in some earlier construct. Search again.
8247 (if (c-syntactic-re-search-forward c-symbol-start
8248 kwd-start 'move t)
8249 (goto-char (setq first-specifier-pos (match-beginning 0)))
8250 ;; Got no preamble before the block declaration keyword.
8251 (setq first-specifier-pos kwd-start))))
8253 (goto-char first-specifier-pos))
8254 (goto-char kwd-start))
8256 kwd-start)))
8258 (defun c-search-uplist-for-classkey (paren-state)
8259 ;; Check if the closest containing paren sexp is a declaration
8260 ;; block, returning a 2 element vector in that case. Aref 0
8261 ;; contains the bufpos at boi of the class key line, and aref 1
8262 ;; contains the bufpos of the open brace. This function is an
8263 ;; obsolete wrapper for `c-looking-at-decl-block'.
8265 ;; This function might do hidden buffer changes.
8266 (let ((open-paren-pos (c-most-enclosing-brace paren-state)))
8267 (when open-paren-pos
8268 (save-excursion
8269 (goto-char open-paren-pos)
8270 (when (and (eq (char-after) ?{)
8271 (c-looking-at-decl-block
8272 (c-safe-position open-paren-pos paren-state)
8273 nil))
8274 (back-to-indentation)
8275 (vector (point) open-paren-pos))))))
8277 (defmacro c-pull-open-brace (ps)
8278 ;; Pull the next open brace from PS (which has the form of paren-state),
8279 ;; skipping over any brace pairs. Returns NIL when PS is exhausted.
8280 `(progn
8281 (while (consp (car ,ps))
8282 (setq ,ps (cdr ,ps)))
8283 (prog1 (car ,ps)
8284 (setq ,ps (cdr ,ps)))))
8286 (defun c-most-enclosing-decl-block (paren-state)
8287 ;; Return the buffer position of the most enclosing decl-block brace (in the
8288 ;; sense of c-looking-at-decl-block) in the PAREN-STATE structure, or nil if
8289 ;; none was found.
8290 (let* ((open-brace (c-pull-open-brace paren-state))
8291 (next-open-brace (c-pull-open-brace paren-state)))
8292 (while (and open-brace
8293 (save-excursion
8294 (goto-char open-brace)
8295 (not (c-looking-at-decl-block next-open-brace nil))))
8296 (setq open-brace next-open-brace
8297 next-open-brace (c-pull-open-brace paren-state)))
8298 open-brace))
8300 (defun c-cheap-inside-bracelist-p (paren-state)
8301 ;; Return the position of the L-brace if point is inside a brace list
8302 ;; initialization of an array, etc. This is an approximate function,
8303 ;; designed for speed over accuracy. It will not find every bracelist, but
8304 ;; a non-nil result is reliable. We simply search for "= {" (naturally with
8305 ;; syntactic whitespace allowed). PAREN-STATE is the normal thing that it
8306 ;; is everywhere else.
8307 (let (b-pos)
8308 (save-excursion
8309 (while
8310 (and (setq b-pos (c-pull-open-brace paren-state))
8311 (progn (goto-char b-pos)
8312 (c-backward-sws)
8313 (c-backward-token-2)
8314 (not (looking-at "=")))))
8315 b-pos)))
8317 (defun c-inside-bracelist-p (containing-sexp paren-state)
8318 ;; return the buffer position of the beginning of the brace list
8319 ;; statement if we're inside a brace list, otherwise return nil.
8320 ;; CONTAINING-SEXP is the buffer pos of the innermost containing
8321 ;; paren. PAREN-STATE is the remainder of the state of enclosing
8322 ;; braces
8324 ;; N.B.: This algorithm can potentially get confused by cpp macros
8325 ;; placed in inconvenient locations. It's a trade-off we make for
8326 ;; speed.
8328 ;; This function might do hidden buffer changes.
8330 ;; This will pick up brace list declarations.
8331 (c-safe
8332 (save-excursion
8333 (goto-char containing-sexp)
8334 (c-forward-sexp -1)
8335 (let (bracepos)
8336 (if (and (or (looking-at c-brace-list-key)
8337 (progn (c-forward-sexp -1)
8338 (looking-at c-brace-list-key)))
8339 (setq bracepos (c-down-list-forward (point)))
8340 (not (c-crosses-statement-barrier-p (point)
8341 (- bracepos 2))))
8342 (point)))))
8343 ;; this will pick up array/aggregate init lists, even if they are nested.
8344 (save-excursion
8345 (let ((class-key
8346 ;; Pike can have class definitions anywhere, so we must
8347 ;; check for the class key here.
8348 (and (c-major-mode-is 'pike-mode)
8349 c-decl-block-key))
8350 bufpos braceassignp lim next-containing)
8351 (while (and (not bufpos)
8352 containing-sexp)
8353 (when paren-state
8354 (if (consp (car paren-state))
8355 (setq lim (cdr (car paren-state))
8356 paren-state (cdr paren-state))
8357 (setq lim (car paren-state)))
8358 (when paren-state
8359 (setq next-containing (car paren-state)
8360 paren-state (cdr paren-state))))
8361 (goto-char containing-sexp)
8362 (if (c-looking-at-inexpr-block next-containing next-containing)
8363 ;; We're in an in-expression block of some kind. Do not
8364 ;; check nesting. We deliberately set the limit to the
8365 ;; containing sexp, so that c-looking-at-inexpr-block
8366 ;; doesn't check for an identifier before it.
8367 (setq containing-sexp nil)
8368 ;; see if the open brace is preceded by = or [...] in
8369 ;; this statement, but watch out for operator=
8370 (setq braceassignp 'dontknow)
8371 (c-backward-token-2 1 t lim)
8372 ;; Checks to do only on the first sexp before the brace.
8373 (when (and c-opt-inexpr-brace-list-key
8374 (eq (char-after) ?\[))
8375 ;; In Java, an initialization brace list may follow
8376 ;; directly after "new Foo[]", so check for a "new"
8377 ;; earlier.
8378 (while (eq braceassignp 'dontknow)
8379 (setq braceassignp
8380 (cond ((/= (c-backward-token-2 1 t lim) 0) nil)
8381 ((looking-at c-opt-inexpr-brace-list-key) t)
8382 ((looking-at "\\sw\\|\\s_\\|[.[]")
8383 ;; Carry on looking if this is an
8384 ;; identifier (may contain "." in Java)
8385 ;; or another "[]" sexp.
8386 'dontknow)
8387 (t nil)))))
8388 ;; Checks to do on all sexps before the brace, up to the
8389 ;; beginning of the statement.
8390 (while (eq braceassignp 'dontknow)
8391 (cond ((eq (char-after) ?\;)
8392 (setq braceassignp nil))
8393 ((and class-key
8394 (looking-at class-key))
8395 (setq braceassignp nil))
8396 ((eq (char-after) ?=)
8397 ;; We've seen a =, but must check earlier tokens so
8398 ;; that it isn't something that should be ignored.
8399 (setq braceassignp 'maybe)
8400 (while (and (eq braceassignp 'maybe)
8401 (zerop (c-backward-token-2 1 t lim)))
8402 (setq braceassignp
8403 (cond
8404 ;; Check for operator =
8405 ((and c-opt-op-identifier-prefix
8406 (looking-at c-opt-op-identifier-prefix))
8407 nil)
8408 ;; Check for `<opchar>= in Pike.
8409 ((and (c-major-mode-is 'pike-mode)
8410 (or (eq (char-after) ?`)
8411 ;; Special case for Pikes
8412 ;; `[]=, since '[' is not in
8413 ;; the punctuation class.
8414 (and (eq (char-after) ?\[)
8415 (eq (char-before) ?`))))
8416 nil)
8417 ((looking-at "\\s.") 'maybe)
8418 ;; make sure we're not in a C++ template
8419 ;; argument assignment
8420 ((and
8421 (c-major-mode-is 'c++-mode)
8422 (save-excursion
8423 (let ((here (point))
8424 (pos< (progn
8425 (skip-chars-backward "^<>")
8426 (point))))
8427 (and (eq (char-before) ?<)
8428 (not (c-crosses-statement-barrier-p
8429 pos< here))
8430 (not (c-in-literal))
8431 ))))
8432 nil)
8433 (t t))))))
8434 (if (and (eq braceassignp 'dontknow)
8435 (/= (c-backward-token-2 1 t lim) 0))
8436 (setq braceassignp nil)))
8437 (if (not braceassignp)
8438 (if (eq (char-after) ?\;)
8439 ;; Brace lists can't contain a semicolon, so we're done.
8440 (setq containing-sexp nil)
8441 ;; Go up one level.
8442 (setq containing-sexp next-containing
8443 lim nil
8444 next-containing nil))
8445 ;; we've hit the beginning of the aggregate list
8446 (c-beginning-of-statement-1
8447 (c-most-enclosing-brace paren-state))
8448 (setq bufpos (point))))
8450 bufpos))
8453 (defun c-looking-at-special-brace-list (&optional lim)
8454 ;; If we're looking at the start of a pike-style list, ie `({ })',
8455 ;; `([ ])', `(< >)' etc, a cons of a cons of its starting and ending
8456 ;; positions and its entry in c-special-brace-lists is returned, nil
8457 ;; otherwise. The ending position is nil if the list is still open.
8458 ;; LIM is the limit for forward search. The point may either be at
8459 ;; the `(' or at the following paren character. Tries to check the
8460 ;; matching closer, but assumes it's correct if no balanced paren is
8461 ;; found (i.e. the case `({ ... } ... )' is detected as _not_ being
8462 ;; a special brace list).
8464 ;; This function might do hidden buffer changes.
8465 (if c-special-brace-lists
8466 (condition-case ()
8467 (save-excursion
8468 (let ((beg (point))
8469 inner-beg end type)
8470 (c-forward-syntactic-ws)
8471 (if (eq (char-after) ?\()
8472 (progn
8473 (forward-char 1)
8474 (c-forward-syntactic-ws)
8475 (setq inner-beg (point))
8476 (setq type (assq (char-after) c-special-brace-lists)))
8477 (if (setq type (assq (char-after) c-special-brace-lists))
8478 (progn
8479 (setq inner-beg (point))
8480 (c-backward-syntactic-ws)
8481 (forward-char -1)
8482 (setq beg (if (eq (char-after) ?\()
8483 (point)
8484 nil)))))
8485 (if (and beg type)
8486 (if (and (c-safe
8487 (goto-char beg)
8488 (c-forward-sexp 1)
8489 (setq end (point))
8490 (= (char-before) ?\)))
8491 (c-safe
8492 (goto-char inner-beg)
8493 (if (looking-at "\\s(")
8494 ;; Check balancing of the inner paren
8495 ;; below.
8496 (progn
8497 (c-forward-sexp 1)
8499 ;; If the inner char isn't a paren then
8500 ;; we can't check balancing, so just
8501 ;; check the char before the outer
8502 ;; closing paren.
8503 (goto-char end)
8504 (backward-char)
8505 (c-backward-syntactic-ws)
8506 (= (char-before) (cdr type)))))
8507 (if (or (/= (char-syntax (char-before)) ?\))
8508 (= (progn
8509 (c-forward-syntactic-ws)
8510 (point))
8511 (1- end)))
8512 (cons (cons beg end) type))
8513 (cons (list beg) type)))))
8514 (error nil))))
8516 (defun c-looking-at-bos (&optional lim)
8517 ;; Return non-nil if between two statements or declarations, assuming
8518 ;; point is not inside a literal or comment.
8520 ;; Obsolete - `c-at-statement-start-p' or `c-at-expression-start-p'
8521 ;; are recommended instead.
8523 ;; This function might do hidden buffer changes.
8524 (c-at-statement-start-p))
8525 (make-obsolete 'c-looking-at-bos 'c-at-statement-start-p "22.1")
8527 (defun c-looking-at-inexpr-block (lim containing-sexp &optional check-at-end)
8528 ;; Return non-nil if we're looking at the beginning of a block
8529 ;; inside an expression. The value returned is actually a cons of
8530 ;; either 'inlambda, 'inexpr-statement or 'inexpr-class and the
8531 ;; position of the beginning of the construct.
8533 ;; LIM limits the backward search. CONTAINING-SEXP is the start
8534 ;; position of the closest containing list. If it's nil, the
8535 ;; containing paren isn't used to decide whether we're inside an
8536 ;; expression or not. If both LIM and CONTAINING-SEXP are used, LIM
8537 ;; needs to be farther back.
8539 ;; If CHECK-AT-END is non-nil then extra checks at the end of the
8540 ;; brace block might be done. It should only be used when the
8541 ;; construct can be assumed to be complete, i.e. when the original
8542 ;; starting position was further down than that.
8544 ;; This function might do hidden buffer changes.
8546 (save-excursion
8547 (let ((res 'maybe) passed-paren
8548 (closest-lim (or containing-sexp lim (point-min)))
8549 ;; Look at the character after point only as a last resort
8550 ;; when we can't disambiguate.
8551 (block-follows (and (eq (char-after) ?{) (point))))
8553 (while (and (eq res 'maybe)
8554 (progn (c-backward-syntactic-ws)
8555 (> (point) closest-lim))
8556 (not (bobp))
8557 (progn (backward-char)
8558 (looking-at "[\]\).]\\|\\w\\|\\s_"))
8559 (c-safe (forward-char)
8560 (goto-char (scan-sexps (point) -1))))
8562 (setq res
8563 (if (looking-at c-keywords-regexp)
8564 (let ((kw-sym (c-keyword-sym (match-string 1))))
8565 (cond
8566 ((and block-follows
8567 (c-keyword-member kw-sym 'c-inexpr-class-kwds))
8568 (and (not (eq passed-paren ?\[))
8569 (or (not (looking-at c-class-key))
8570 ;; If the class definition is at the start of
8571 ;; a statement, we don't consider it an
8572 ;; in-expression class.
8573 (let ((prev (point)))
8574 (while (and
8575 (= (c-backward-token-2 1 nil closest-lim) 0)
8576 (eq (char-syntax (char-after)) ?w))
8577 (setq prev (point)))
8578 (goto-char prev)
8579 (not (c-at-statement-start-p)))
8580 ;; Also, in Pike we treat it as an
8581 ;; in-expression class if it's used in an
8582 ;; object clone expression.
8583 (save-excursion
8584 (and check-at-end
8585 (c-major-mode-is 'pike-mode)
8586 (progn (goto-char block-follows)
8587 (zerop (c-forward-token-2 1 t)))
8588 (eq (char-after) ?\())))
8589 (cons 'inexpr-class (point))))
8590 ((c-keyword-member kw-sym 'c-inexpr-block-kwds)
8591 (when (not passed-paren)
8592 (cons 'inexpr-statement (point))))
8593 ((c-keyword-member kw-sym 'c-lambda-kwds)
8594 (when (or (not passed-paren)
8595 (eq passed-paren ?\())
8596 (cons 'inlambda (point))))
8597 ((c-keyword-member kw-sym 'c-block-stmt-kwds)
8598 nil)
8600 'maybe)))
8602 (if (looking-at "\\s(")
8603 (if passed-paren
8604 (if (and (eq passed-paren ?\[)
8605 (eq (char-after) ?\[))
8606 ;; Accept several square bracket sexps for
8607 ;; Java array initializations.
8608 'maybe)
8609 (setq passed-paren (char-after))
8610 'maybe)
8611 'maybe))))
8613 (if (eq res 'maybe)
8614 (when (and c-recognize-paren-inexpr-blocks
8615 block-follows
8616 containing-sexp
8617 (eq (char-after containing-sexp) ?\())
8618 (goto-char containing-sexp)
8619 (if (or (save-excursion
8620 (c-backward-syntactic-ws lim)
8621 (and (> (point) (or lim (point-min)))
8622 (c-on-identifier)))
8623 (and c-special-brace-lists
8624 (c-looking-at-special-brace-list)))
8626 (cons 'inexpr-statement (point))))
8628 res))))
8630 (defun c-looking-at-inexpr-block-backward (paren-state)
8631 ;; Returns non-nil if we're looking at the end of an in-expression
8632 ;; block, otherwise the same as `c-looking-at-inexpr-block'.
8633 ;; PAREN-STATE is the paren state relevant at the current position.
8635 ;; This function might do hidden buffer changes.
8636 (save-excursion
8637 ;; We currently only recognize a block.
8638 (let ((here (point))
8639 (elem (car-safe paren-state))
8640 containing-sexp)
8641 (when (and (consp elem)
8642 (progn (goto-char (cdr elem))
8643 (c-forward-syntactic-ws here)
8644 (= (point) here)))
8645 (goto-char (car elem))
8646 (if (setq paren-state (cdr paren-state))
8647 (setq containing-sexp (car-safe paren-state)))
8648 (c-looking-at-inexpr-block (c-safe-position containing-sexp
8649 paren-state)
8650 containing-sexp)))))
8652 (defun c-at-macro-vsemi-p (&optional pos)
8653 ;; Is there a "virtual semicolon" at POS or point?
8654 ;; (See cc-defs.el for full details of "virtual semicolons".)
8656 ;; This is true when point is at the last non syntactic WS position on the
8657 ;; line, there is a macro call last on the line, and this particular macro's
8658 ;; name is defined by the regexp `c-vs-macro-regexp' as not needing a
8659 ;; semicolon.
8660 (save-excursion
8661 (save-restriction
8662 (widen)
8663 (if pos
8664 (goto-char pos)
8665 (setq pos (point)))
8666 (and
8667 c-macro-with-semi-re
8668 (eq (skip-chars-backward " \t") 0)
8670 ;; Check we've got nothing after this except comments and empty lines
8671 ;; joined by escaped EOLs.
8672 (skip-chars-forward " \t") ; always returns non-nil.
8673 (progn
8674 (while ; go over 1 block comment per iteration.
8675 (and
8676 (looking-at "\\(\\\\[\n\r][ \t]*\\)*")
8677 (goto-char (match-end 0))
8678 (cond
8679 ((looking-at c-block-comment-start-regexp)
8680 (and (forward-comment 1)
8681 (skip-chars-forward " \t"))) ; always returns non-nil
8682 ((looking-at c-line-comment-start-regexp)
8683 (end-of-line)
8684 nil)
8685 (t nil))))
8686 (eolp))
8688 (goto-char pos)
8689 (progn (c-backward-syntactic-ws)
8690 (eq (point) pos))
8692 ;; Check for one of the listed macros being before point.
8693 (or (not (eq (char-before) ?\)))
8694 (when (c-go-list-backward)
8695 (c-backward-syntactic-ws)
8697 (c-simple-skip-symbol-backward)
8698 (looking-at c-macro-with-semi-re)
8699 (goto-char pos)
8700 (not (c-in-literal)))))) ; The most expensive check last.
8702 (defun c-macro-vsemi-status-unknown-p () t) ; See cc-defs.el.
8705 ;; `c-guess-basic-syntax' and the functions that precedes it below
8706 ;; implements the main decision tree for determining the syntactic
8707 ;; analysis of the current line of code.
8709 ;; Dynamically bound to t when `c-guess-basic-syntax' is called during
8710 ;; auto newline analysis.
8711 (defvar c-auto-newline-analysis nil)
8713 (defun c-brace-anchor-point (bracepos)
8714 ;; BRACEPOS is the position of a brace in a construct like "namespace
8715 ;; Bar {". Return the anchor point in this construct; this is the
8716 ;; earliest symbol on the brace's line which isn't earlier than
8717 ;; "namespace".
8719 ;; Currently (2007-08-17), "like namespace" means "matches
8720 ;; c-other-block-decl-kwds". It doesn't work with "class" or "struct"
8721 ;; or anything like that.
8722 (save-excursion
8723 (let ((boi (c-point 'boi bracepos)))
8724 (goto-char bracepos)
8725 (while (and (> (point) boi)
8726 (not (looking-at c-other-decl-block-key)))
8727 (c-backward-token-2))
8728 (if (> (point) boi) (point) boi))))
8730 (defsubst c-add-syntax (symbol &rest args)
8731 ;; A simple function to prepend a new syntax element to
8732 ;; `c-syntactic-context'. Using `setq' on it is unsafe since it
8733 ;; should always be dynamically bound but since we read it first
8734 ;; we'll fail properly anyway if this function is misused.
8735 (setq c-syntactic-context (cons (cons symbol args)
8736 c-syntactic-context)))
8738 (defsubst c-append-syntax (symbol &rest args)
8739 ;; Like `c-add-syntax' but appends to the end of the syntax list.
8740 ;; (Normally not necessary.)
8741 (setq c-syntactic-context (nconc c-syntactic-context
8742 (list (cons symbol args)))))
8744 (defun c-add-stmt-syntax (syntax-symbol
8745 syntax-extra-args
8746 stop-at-boi-only
8747 containing-sexp
8748 paren-state)
8749 ;; Add the indicated SYNTAX-SYMBOL to `c-syntactic-context', extending it as
8750 ;; needed with further syntax elements of the types `substatement',
8751 ;; `inexpr-statement', `arglist-cont-nonempty', `statement-block-intro', and
8752 ;; `defun-block-intro'.
8754 ;; Do the generic processing to anchor the given syntax symbol on
8755 ;; the preceding statement: Skip over any labels and containing
8756 ;; statements on the same line, and then search backward until we
8757 ;; find a statement or block start that begins at boi without a
8758 ;; label or comment.
8760 ;; Point is assumed to be at the prospective anchor point for the
8761 ;; given SYNTAX-SYMBOL. More syntax entries are added if we need to
8762 ;; skip past open parens and containing statements. Most of the added
8763 ;; syntax elements will get the same anchor point - the exception is
8764 ;; for an anchor in a construct like "namespace"[*] - this is as early
8765 ;; as possible in the construct but on the same line as the {.
8767 ;; [*] i.e. with a keyword matching c-other-block-decl-kwds.
8769 ;; SYNTAX-EXTRA-ARGS are a list of the extra arguments for the
8770 ;; syntax symbol. They are appended after the anchor point.
8772 ;; If STOP-AT-BOI-ONLY is nil, we can stop in the middle of the line
8773 ;; if the current statement starts there.
8775 ;; Note: It's not a problem if PAREN-STATE "overshoots"
8776 ;; CONTAINING-SEXP, i.e. contains info about parens further down.
8778 ;; This function might do hidden buffer changes.
8780 (if (= (point) (c-point 'boi))
8781 ;; This is by far the most common case, so let's give it special
8782 ;; treatment.
8783 (apply 'c-add-syntax syntax-symbol (point) syntax-extra-args)
8785 (let ((syntax-last c-syntactic-context)
8786 (boi (c-point 'boi))
8787 ;; Set when we're on a label, so that we don't stop there.
8788 ;; FIXME: To be complete we should check if we're on a label
8789 ;; now at the start.
8790 on-label)
8792 ;; Use point as the anchor point for "namespace", "extern", etc.
8793 (apply 'c-add-syntax syntax-symbol
8794 (if (rassq syntax-symbol c-other-decl-block-key-in-symbols-alist)
8795 (point) nil)
8796 syntax-extra-args)
8798 ;; Loop while we have to back out of containing blocks.
8799 (while
8800 (and
8801 (catch 'back-up-block
8803 ;; Loop while we have to back up statements.
8804 (while (or (/= (point) boi)
8805 on-label
8806 (looking-at c-comment-start-regexp))
8808 ;; Skip past any comments that stands between the
8809 ;; statement start and boi.
8810 (let ((savepos (point)))
8811 (while (and (/= savepos boi)
8812 (c-backward-single-comment))
8813 (setq savepos (point)
8814 boi (c-point 'boi)))
8815 (goto-char savepos))
8817 ;; Skip to the beginning of this statement or backward
8818 ;; another one.
8819 (let ((old-pos (point))
8820 (old-boi boi)
8821 (step-type (c-beginning-of-statement-1 containing-sexp)))
8822 (setq boi (c-point 'boi)
8823 on-label (eq step-type 'label))
8825 (cond ((= (point) old-pos)
8826 ;; If we didn't move we're at the start of a block and
8827 ;; have to continue outside it.
8828 (throw 'back-up-block t))
8830 ((and (eq step-type 'up)
8831 (>= (point) old-boi)
8832 (looking-at "else\\>[^_]")
8833 (save-excursion
8834 (goto-char old-pos)
8835 (looking-at "if\\>[^_]")))
8836 ;; Special case to avoid deeper and deeper indentation
8837 ;; of "else if" clauses.
8840 ((and (not stop-at-boi-only)
8841 (/= old-pos old-boi)
8842 (memq step-type '(up previous)))
8843 ;; If stop-at-boi-only is nil, we shouldn't back up
8844 ;; over previous or containing statements to try to
8845 ;; reach boi, so go back to the last position and
8846 ;; exit.
8847 (goto-char old-pos)
8848 (throw 'back-up-block nil))
8851 (if (and (not stop-at-boi-only)
8852 (memq step-type '(up previous beginning)))
8853 ;; If we've moved into another statement then we
8854 ;; should no longer try to stop in the middle of a
8855 ;; line.
8856 (setq stop-at-boi-only t))
8858 ;; Record this as a substatement if we skipped up one
8859 ;; level.
8860 (when (eq step-type 'up)
8861 (c-add-syntax 'substatement nil))))
8864 containing-sexp)
8866 ;; Now we have to go out of this block.
8867 (goto-char containing-sexp)
8869 ;; Don't stop in the middle of a special brace list opener
8870 ;; like "({".
8871 (when c-special-brace-lists
8872 (let ((special-list (c-looking-at-special-brace-list)))
8873 (when (and special-list
8874 (< (car (car special-list)) (point)))
8875 (setq containing-sexp (car (car special-list)))
8876 (goto-char containing-sexp))))
8878 (setq paren-state (c-whack-state-after containing-sexp paren-state)
8879 containing-sexp (c-most-enclosing-brace paren-state)
8880 boi (c-point 'boi))
8882 ;; Analyze the construct in front of the block we've stepped out
8883 ;; from and add the right syntactic element for it.
8884 (let ((paren-pos (point))
8885 (paren-char (char-after))
8886 step-type)
8888 (if (eq paren-char ?\()
8889 ;; Stepped out of a parenthesis block, so we're in an
8890 ;; expression now.
8891 (progn
8892 (when (/= paren-pos boi)
8893 (if (and c-recognize-paren-inexpr-blocks
8894 (progn
8895 (c-backward-syntactic-ws containing-sexp)
8896 (or (not (looking-at "\\>"))
8897 (not (c-on-identifier))))
8898 (save-excursion
8899 (goto-char (1+ paren-pos))
8900 (c-forward-syntactic-ws)
8901 (eq (char-after) ?{)))
8902 ;; Stepped out of an in-expression statement. This
8903 ;; syntactic element won't get an anchor pos.
8904 (c-add-syntax 'inexpr-statement)
8906 ;; A parenthesis normally belongs to an arglist.
8907 (c-add-syntax 'arglist-cont-nonempty nil paren-pos)))
8909 (goto-char (max boi
8910 (if containing-sexp
8911 (1+ containing-sexp)
8912 (point-min))))
8913 (setq step-type 'same
8914 on-label nil))
8916 ;; Stepped out of a brace block.
8917 (setq step-type (c-beginning-of-statement-1 containing-sexp)
8918 on-label (eq step-type 'label))
8920 (if (and (eq step-type 'same)
8921 (/= paren-pos (point)))
8922 (let (inexpr)
8923 (cond
8924 ((save-excursion
8925 (goto-char paren-pos)
8926 (setq inexpr (c-looking-at-inexpr-block
8927 (c-safe-position containing-sexp paren-state)
8928 containing-sexp)))
8929 (c-add-syntax (if (eq (car inexpr) 'inlambda)
8930 'defun-block-intro
8931 'statement-block-intro)
8932 nil))
8933 ((looking-at c-other-decl-block-key)
8934 (c-add-syntax
8935 (cdr (assoc (match-string 1)
8936 c-other-decl-block-key-in-symbols-alist))
8937 (max (c-point 'boi paren-pos) (point))))
8938 (t (c-add-syntax 'defun-block-intro nil))))
8940 (c-add-syntax 'statement-block-intro nil)))
8942 (if (= paren-pos boi)
8943 ;; Always done if the open brace was at boi. The
8944 ;; c-beginning-of-statement-1 call above is necessary
8945 ;; anyway, to decide the type of block-intro to add.
8946 (goto-char paren-pos)
8947 (setq boi (c-point 'boi)))
8950 ;; Fill in the current point as the anchor for all the symbols
8951 ;; added above.
8952 (let ((p c-syntactic-context) q)
8953 (while (not (eq p syntax-last))
8954 (setq q (cdr (car p))) ; e.g. (nil 28) [from (arglist-cont-nonempty nil 28)]
8955 (while q
8956 (unless (car q)
8957 (setcar q (point)))
8958 (setq q (cdr q)))
8959 (setq p (cdr p))))
8962 (defun c-add-class-syntax (symbol
8963 containing-decl-open
8964 containing-decl-start
8965 containing-decl-kwd
8966 paren-state)
8967 ;; The inclass and class-close syntactic symbols are added in
8968 ;; several places and some work is needed to fix everything.
8969 ;; Therefore it's collected here.
8971 ;; This function might do hidden buffer changes.
8972 (goto-char containing-decl-open)
8973 (if (and (eq symbol 'inclass) (= (point) (c-point 'boi)))
8974 (progn
8975 (c-add-syntax symbol containing-decl-open)
8976 containing-decl-open)
8977 (goto-char containing-decl-start)
8978 ;; Ought to use `c-add-stmt-syntax' instead of backing up to boi
8979 ;; here, but we have to do like this for compatibility.
8980 (back-to-indentation)
8981 (c-add-syntax symbol (point))
8982 (if (and (c-keyword-member containing-decl-kwd
8983 'c-inexpr-class-kwds)
8984 (/= containing-decl-start (c-point 'boi containing-decl-start)))
8985 (c-add-syntax 'inexpr-class))
8986 (point)))
8988 (defun c-guess-continued-construct (indent-point
8989 char-after-ip
8990 beg-of-same-or-containing-stmt
8991 containing-sexp
8992 paren-state)
8993 ;; This function contains the decision tree reached through both
8994 ;; cases 18 and 10. It's a continued statement or top level
8995 ;; construct of some kind.
8997 ;; This function might do hidden buffer changes.
8999 (let (special-brace-list placeholder)
9000 (goto-char indent-point)
9001 (skip-chars-forward " \t")
9003 (cond
9004 ;; (CASE A removed.)
9005 ;; CASE B: open braces for class or brace-lists
9006 ((setq special-brace-list
9007 (or (and c-special-brace-lists
9008 (c-looking-at-special-brace-list))
9009 (eq char-after-ip ?{)))
9011 (cond
9012 ;; CASE B.1: class-open
9013 ((save-excursion
9014 (and (eq (char-after) ?{)
9015 (c-looking-at-decl-block containing-sexp t)
9016 (setq beg-of-same-or-containing-stmt (point))))
9017 (c-add-syntax 'class-open beg-of-same-or-containing-stmt))
9019 ;; CASE B.2: brace-list-open
9020 ((or (consp special-brace-list)
9021 (save-excursion
9022 (goto-char beg-of-same-or-containing-stmt)
9023 (c-syntactic-re-search-forward "=\\([^=]\\|$\\)"
9024 indent-point t t t)))
9025 ;; The most semantically accurate symbol here is
9026 ;; brace-list-open, but we normally report it simply as a
9027 ;; statement-cont. The reason is that one normally adjusts
9028 ;; brace-list-open for brace lists as top-level constructs,
9029 ;; and brace lists inside statements is a completely different
9030 ;; context. C.f. case 5A.3.
9031 (c-beginning-of-statement-1 containing-sexp)
9032 (c-add-stmt-syntax (if c-auto-newline-analysis
9033 ;; Turn off the dwim above when we're
9034 ;; analyzing the nature of the brace
9035 ;; for the auto newline feature.
9036 'brace-list-open
9037 'statement-cont)
9038 nil nil
9039 containing-sexp paren-state))
9041 ;; CASE B.3: The body of a function declared inside a normal
9042 ;; block. Can occur e.g. in Pike and when using gcc
9043 ;; extensions, but watch out for macros followed by blocks.
9044 ;; C.f. cases E, 16F and 17G.
9045 ((and (not (c-at-statement-start-p))
9046 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
9047 'same)
9048 (save-excursion
9049 (let ((c-recognize-typeless-decls nil))
9050 ;; Turn off recognition of constructs that lacks a
9051 ;; type in this case, since that's more likely to be
9052 ;; a macro followed by a block.
9053 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
9054 (c-add-stmt-syntax 'defun-open nil t
9055 containing-sexp paren-state))
9057 ;; CASE B.4: Continued statement with block open. The most
9058 ;; accurate analysis is perhaps `statement-cont' together with
9059 ;; `block-open' but we play DWIM and use `substatement-open'
9060 ;; instead. The rationale is that this typically is a macro
9061 ;; followed by a block which makes it very similar to a
9062 ;; statement with a substatement block.
9064 (c-add-stmt-syntax 'substatement-open nil nil
9065 containing-sexp paren-state))
9068 ;; CASE C: iostream insertion or extraction operator
9069 ((and (looking-at "\\(<<\\|>>\\)\\([^=]\\|$\\)")
9070 (save-excursion
9071 (goto-char beg-of-same-or-containing-stmt)
9072 ;; If there is no preceding streamop in the statement
9073 ;; then indent this line as a normal statement-cont.
9074 (when (c-syntactic-re-search-forward
9075 "\\(<<\\|>>\\)\\([^=]\\|$\\)" indent-point 'move t t)
9076 (c-add-syntax 'stream-op (c-point 'boi))
9077 t))))
9079 ;; CASE E: In the "K&R region" of a function declared inside a
9080 ;; normal block. C.f. case B.3.
9081 ((and (save-excursion
9082 ;; Check that the next token is a '{'. This works as
9083 ;; long as no language that allows nested function
9084 ;; definitions allows stuff like member init lists, K&R
9085 ;; declarations or throws clauses there.
9087 ;; Note that we do a forward search for something ahead
9088 ;; of the indentation line here. That's not good since
9089 ;; the user might not have typed it yet. Unfortunately
9090 ;; it's exceedingly tricky to recognize a function
9091 ;; prototype in a code block without resorting to this.
9092 (c-forward-syntactic-ws)
9093 (eq (char-after) ?{))
9094 (not (c-at-statement-start-p))
9095 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
9096 'same)
9097 (save-excursion
9098 (let ((c-recognize-typeless-decls nil))
9099 ;; Turn off recognition of constructs that lacks a
9100 ;; type in this case, since that's more likely to be
9101 ;; a macro followed by a block.
9102 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
9103 (c-add-stmt-syntax 'func-decl-cont nil t
9104 containing-sexp paren-state))
9106 ;;CASE F: continued statement and the only preceding items are
9107 ;;annotations.
9108 ((and (c-major-mode-is 'java-mode)
9109 (setq placeholder (point))
9110 (c-beginning-of-statement-1)
9111 (progn
9112 (while (and (c-forward-annotation)
9113 (< (point) placeholder))
9114 (c-forward-syntactic-ws))
9116 (prog1
9117 (>= (point) placeholder)
9118 (goto-char placeholder)))
9119 (c-beginning-of-statement-1 containing-sexp)
9120 (c-add-syntax 'annotation-var-cont (point)))
9122 ;; CASE G: a template list continuation?
9123 ;; Mostly a duplication of case 5D.3 to fix templates-19:
9124 ((and (c-major-mode-is 'c++-mode)
9125 (save-excursion
9126 (goto-char indent-point)
9127 (c-with-syntax-table c++-template-syntax-table
9128 (setq placeholder (c-up-list-backward)))
9129 (and placeholder
9130 (eq (char-after placeholder) ?<)
9131 (/= (char-before placeholder) ?<)
9132 (progn
9133 (goto-char (1+ placeholder))
9134 (not (looking-at c-<-op-cont-regexp))))))
9135 (c-with-syntax-table c++-template-syntax-table
9136 (goto-char placeholder)
9137 (c-beginning-of-statement-1 containing-sexp t)
9138 (if (save-excursion
9139 (c-backward-syntactic-ws containing-sexp)
9140 (eq (char-before) ?<))
9141 ;; In a nested template arglist.
9142 (progn
9143 (goto-char placeholder)
9144 (c-syntactic-skip-backward "^,;" containing-sexp t)
9145 (c-forward-syntactic-ws))
9146 (back-to-indentation)))
9147 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
9148 ;; template aware.
9149 (c-add-syntax 'template-args-cont (point) placeholder))
9151 ;; CASE D: continued statement.
9153 (c-beginning-of-statement-1 containing-sexp)
9154 (c-add-stmt-syntax 'statement-cont nil nil
9155 containing-sexp paren-state))
9158 ;; The next autoload was added by RMS on 2005/8/9 - don't know why (ACM,
9159 ;; 2005/11/29).
9160 ;;;###autoload
9161 (defun c-guess-basic-syntax ()
9162 "Return the syntactic context of the current line."
9163 (save-excursion
9164 (beginning-of-line)
9165 (c-save-buffer-state
9166 ((indent-point (point))
9167 (case-fold-search nil)
9168 ;; A whole ugly bunch of various temporary variables. Have
9169 ;; to declare them here since it's not possible to declare
9170 ;; a variable with only the scope of a cond test and the
9171 ;; following result clauses, and most of this function is a
9172 ;; single gigantic cond. :P
9173 literal char-before-ip before-ws-ip char-after-ip macro-start
9174 in-macro-expr c-syntactic-context placeholder c-in-literal-cache
9175 step-type tmpsymbol keyword injava-inher special-brace-list tmp-pos
9176 containing-<
9177 ;; The following record some positions for the containing
9178 ;; declaration block if we're directly within one:
9179 ;; `containing-decl-open' is the position of the open
9180 ;; brace. `containing-decl-start' is the start of the
9181 ;; declaration. `containing-decl-kwd' is the keyword
9182 ;; symbol of the keyword that tells what kind of block it
9183 ;; is.
9184 containing-decl-open
9185 containing-decl-start
9186 containing-decl-kwd
9187 ;; The open paren of the closest surrounding sexp or nil if
9188 ;; there is none.
9189 containing-sexp
9190 ;; The position after the closest preceding brace sexp
9191 ;; (nested sexps are ignored), or the position after
9192 ;; `containing-sexp' if there is none, or (point-min) if
9193 ;; `containing-sexp' is nil.
9195 ;; The paren state outside `containing-sexp', or at
9196 ;; `indent-point' if `containing-sexp' is nil.
9197 (paren-state (c-parse-state))
9198 ;; There's always at most one syntactic element which got
9199 ;; an anchor pos. It's stored in syntactic-relpos.
9200 syntactic-relpos
9201 (c-stmt-delim-chars c-stmt-delim-chars))
9203 ;; Check if we're directly inside an enclosing declaration
9204 ;; level block.
9205 (when (and (setq containing-sexp
9206 (c-most-enclosing-brace paren-state))
9207 (progn
9208 (goto-char containing-sexp)
9209 (eq (char-after) ?{))
9210 (setq placeholder
9211 (c-looking-at-decl-block
9212 (c-most-enclosing-brace paren-state
9213 containing-sexp)
9214 t)))
9215 (setq containing-decl-open containing-sexp
9216 containing-decl-start (point)
9217 containing-sexp nil)
9218 (goto-char placeholder)
9219 (setq containing-decl-kwd (and (looking-at c-keywords-regexp)
9220 (c-keyword-sym (match-string 1)))))
9222 ;; Init some position variables.
9223 (if c-state-cache
9224 (progn
9225 (setq containing-sexp (car paren-state)
9226 paren-state (cdr paren-state))
9227 (if (consp containing-sexp)
9228 (progn
9229 (setq lim (cdr containing-sexp))
9230 (if (cdr c-state-cache)
9231 ;; Ignore balanced paren. The next entry
9232 ;; can't be another one.
9233 (setq containing-sexp (car (cdr c-state-cache))
9234 paren-state (cdr paren-state))
9235 ;; If there is no surrounding open paren then
9236 ;; put the last balanced pair back on paren-state.
9237 (setq paren-state (cons containing-sexp paren-state)
9238 containing-sexp nil)))
9239 (setq lim (1+ containing-sexp))))
9240 (setq lim (point-min)))
9241 (when (c-beginning-of-macro)
9242 (goto-char indent-point)
9243 (let ((lim1 (c-determine-limit 2000)))
9244 (setq lim (max lim lim1))))
9246 ;; If we're in a parenthesis list then ',' delimits the
9247 ;; "statements" rather than being an operator (with the
9248 ;; exception of the "for" clause). This difference is
9249 ;; typically only noticeable when statements are used in macro
9250 ;; arglists.
9251 (when (and containing-sexp
9252 (eq (char-after containing-sexp) ?\())
9253 (setq c-stmt-delim-chars c-stmt-delim-chars-with-comma))
9254 ;; cache char before and after indent point, and move point to
9255 ;; the most likely position to perform the majority of tests
9256 (goto-char indent-point)
9257 (c-backward-syntactic-ws lim)
9258 (setq before-ws-ip (point)
9259 char-before-ip (char-before))
9260 (goto-char indent-point)
9261 (skip-chars-forward " \t")
9262 (setq char-after-ip (char-after))
9264 ;; are we in a literal?
9265 (setq literal (c-in-literal lim))
9267 ;; now figure out syntactic qualities of the current line
9268 (cond
9270 ;; CASE 1: in a string.
9271 ((eq literal 'string)
9272 (c-add-syntax 'string (c-point 'bopl)))
9274 ;; CASE 2: in a C or C++ style comment.
9275 ((and (memq literal '(c c++))
9276 ;; This is a kludge for XEmacs where we use
9277 ;; `buffer-syntactic-context', which doesn't correctly
9278 ;; recognize "\*/" to end a block comment.
9279 ;; `parse-partial-sexp' which is used by
9280 ;; `c-literal-limits' will however do that in most
9281 ;; versions, which results in that we get nil from
9282 ;; `c-literal-limits' even when `c-in-literal' claims
9283 ;; we're inside a comment.
9284 (setq placeholder (c-literal-limits lim)))
9285 (c-add-syntax literal (car placeholder)))
9287 ;; CASE 3: in a cpp preprocessor macro continuation.
9288 ((and (save-excursion
9289 (when (c-beginning-of-macro)
9290 (setq macro-start (point))))
9291 (/= macro-start (c-point 'boi))
9292 (progn
9293 (setq tmpsymbol 'cpp-macro-cont)
9294 (or (not c-syntactic-indentation-in-macros)
9295 (save-excursion
9296 (goto-char macro-start)
9297 ;; If at the beginning of the body of a #define
9298 ;; directive then analyze as cpp-define-intro
9299 ;; only. Go on with the syntactic analysis
9300 ;; otherwise. in-macro-expr is set if we're in a
9301 ;; cpp expression, i.e. before the #define body
9302 ;; or anywhere in a non-#define directive.
9303 (if (c-forward-to-cpp-define-body)
9304 (let ((indent-boi (c-point 'boi indent-point)))
9305 (setq in-macro-expr (> (point) indent-boi)
9306 tmpsymbol 'cpp-define-intro)
9307 (= (point) indent-boi))
9308 (setq in-macro-expr t)
9309 nil)))))
9310 (c-add-syntax tmpsymbol macro-start)
9311 (setq macro-start nil))
9313 ;; CASE 11: an else clause?
9314 ((looking-at "else\\>[^_]")
9315 (c-beginning-of-statement-1 containing-sexp)
9316 (c-add-stmt-syntax 'else-clause nil t
9317 containing-sexp paren-state))
9319 ;; CASE 12: while closure of a do/while construct?
9320 ((and (looking-at "while\\>[^_]")
9321 (save-excursion
9322 (prog1 (eq (c-beginning-of-statement-1 containing-sexp)
9323 'beginning)
9324 (setq placeholder (point)))))
9325 (goto-char placeholder)
9326 (c-add-stmt-syntax 'do-while-closure nil t
9327 containing-sexp paren-state))
9329 ;; CASE 13: A catch or finally clause? This case is simpler
9330 ;; than if-else and do-while, because a block is required
9331 ;; after every try, catch and finally.
9332 ((save-excursion
9333 (and (cond ((c-major-mode-is 'c++-mode)
9334 (looking-at "catch\\>[^_]"))
9335 ((c-major-mode-is 'java-mode)
9336 (looking-at "\\(catch\\|finally\\)\\>[^_]")))
9337 (and (c-safe (c-backward-syntactic-ws)
9338 (c-backward-sexp)
9340 (eq (char-after) ?{)
9341 (c-safe (c-backward-syntactic-ws)
9342 (c-backward-sexp)
9344 (if (eq (char-after) ?\()
9345 (c-safe (c-backward-sexp) t)
9347 (looking-at "\\(try\\|catch\\)\\>[^_]")
9348 (setq placeholder (point))))
9349 (goto-char placeholder)
9350 (c-add-stmt-syntax 'catch-clause nil t
9351 containing-sexp paren-state))
9353 ;; CASE 18: A substatement we can recognize by keyword.
9354 ((save-excursion
9355 (and c-opt-block-stmt-key
9356 (not (eq char-before-ip ?\;))
9357 (not (c-at-vsemi-p before-ws-ip))
9358 (not (memq char-after-ip '(?\) ?\] ?,)))
9359 (or (not (eq char-before-ip ?}))
9360 (c-looking-at-inexpr-block-backward c-state-cache))
9361 (> (point)
9362 (progn
9363 ;; Ought to cache the result from the
9364 ;; c-beginning-of-statement-1 calls here.
9365 (setq placeholder (point))
9366 (while (eq (setq step-type
9367 (c-beginning-of-statement-1 lim))
9368 'label))
9369 (if (eq step-type 'previous)
9370 (goto-char placeholder)
9371 (setq placeholder (point))
9372 (if (and (eq step-type 'same)
9373 (not (looking-at c-opt-block-stmt-key)))
9374 ;; Step up to the containing statement if we
9375 ;; stayed in the same one.
9376 (let (step)
9377 (while (eq
9378 (setq step
9379 (c-beginning-of-statement-1 lim))
9380 'label))
9381 (if (eq step 'up)
9382 (setq placeholder (point))
9383 ;; There was no containing statement after all.
9384 (goto-char placeholder)))))
9385 placeholder))
9386 (if (looking-at c-block-stmt-2-key)
9387 ;; Require a parenthesis after these keywords.
9388 ;; Necessary to catch e.g. synchronized in Java,
9389 ;; which can be used both as statement and
9390 ;; modifier.
9391 (and (zerop (c-forward-token-2 1 nil))
9392 (eq (char-after) ?\())
9393 (looking-at c-opt-block-stmt-key))))
9395 (if (eq step-type 'up)
9396 ;; CASE 18A: Simple substatement.
9397 (progn
9398 (goto-char placeholder)
9399 (cond
9400 ((eq char-after-ip ?{)
9401 (c-add-stmt-syntax 'substatement-open nil nil
9402 containing-sexp paren-state))
9403 ((save-excursion
9404 (goto-char indent-point)
9405 (back-to-indentation)
9406 (c-forward-label))
9407 (c-add-stmt-syntax 'substatement-label nil nil
9408 containing-sexp paren-state))
9410 (c-add-stmt-syntax 'substatement nil nil
9411 containing-sexp paren-state))))
9413 ;; CASE 18B: Some other substatement. This is shared
9414 ;; with case 10.
9415 (c-guess-continued-construct indent-point
9416 char-after-ip
9417 placeholder
9419 paren-state)))
9421 ;; CASE 14: A case or default label
9422 ((looking-at c-label-kwds-regexp)
9423 (if containing-sexp
9424 (progn
9425 (goto-char containing-sexp)
9426 (setq lim (c-most-enclosing-brace c-state-cache
9427 containing-sexp))
9428 (c-backward-to-block-anchor lim)
9429 (c-add-stmt-syntax 'case-label nil t lim paren-state))
9430 ;; Got a bogus label at the top level. In lack of better
9431 ;; alternatives, anchor it on (point-min).
9432 (c-add-syntax 'case-label (point-min))))
9434 ;; CASE 15: any other label
9435 ((save-excursion
9436 (back-to-indentation)
9437 (and (not (looking-at c-syntactic-ws-start))
9438 (c-forward-label)))
9439 (cond (containing-decl-open
9440 (setq placeholder (c-add-class-syntax 'inclass
9441 containing-decl-open
9442 containing-decl-start
9443 containing-decl-kwd
9444 paren-state))
9445 ;; Append access-label with the same anchor point as
9446 ;; inclass gets.
9447 (c-append-syntax 'access-label placeholder))
9449 (containing-sexp
9450 (goto-char containing-sexp)
9451 (setq lim (c-most-enclosing-brace c-state-cache
9452 containing-sexp))
9453 (save-excursion
9454 (setq tmpsymbol
9455 (if (and (eq (c-beginning-of-statement-1 lim) 'up)
9456 (looking-at "switch\\>[^_]"))
9457 ;; If the surrounding statement is a switch then
9458 ;; let's analyze all labels as switch labels, so
9459 ;; that they get lined up consistently.
9460 'case-label
9461 'label)))
9462 (c-backward-to-block-anchor lim)
9463 (c-add-stmt-syntax tmpsymbol nil t lim paren-state))
9466 ;; A label on the top level. Treat it as a class
9467 ;; context. (point-min) is the closest we get to the
9468 ;; class open brace.
9469 (c-add-syntax 'access-label (point-min)))))
9471 ;; CASE 4: In-expression statement. C.f. cases 7B, 16A and
9472 ;; 17E.
9473 ((setq placeholder (c-looking-at-inexpr-block
9474 (c-safe-position containing-sexp paren-state)
9475 containing-sexp
9476 ;; Have to turn on the heuristics after
9477 ;; the point even though it doesn't work
9478 ;; very well. C.f. test case class-16.pike.
9480 (setq tmpsymbol (assq (car placeholder)
9481 '((inexpr-class . class-open)
9482 (inexpr-statement . block-open))))
9483 (if tmpsymbol
9484 ;; It's a statement block or an anonymous class.
9485 (setq tmpsymbol (cdr tmpsymbol))
9486 ;; It's a Pike lambda. Check whether we are between the
9487 ;; lambda keyword and the argument list or at the defun
9488 ;; opener.
9489 (setq tmpsymbol (if (eq char-after-ip ?{)
9490 'inline-open
9491 'lambda-intro-cont)))
9492 (goto-char (cdr placeholder))
9493 (back-to-indentation)
9494 (c-add-stmt-syntax tmpsymbol nil t
9495 (c-most-enclosing-brace c-state-cache (point))
9496 paren-state)
9497 (unless (eq (point) (cdr placeholder))
9498 (c-add-syntax (car placeholder))))
9500 ;; CASE 5: Line is inside a declaration level block or at top level.
9501 ((or containing-decl-open (null containing-sexp))
9502 (cond
9504 ;; CASE 5A: we are looking at a defun, brace list, class,
9505 ;; or inline-inclass method opening brace
9506 ((setq special-brace-list
9507 (or (and c-special-brace-lists
9508 (c-looking-at-special-brace-list))
9509 (eq char-after-ip ?{)))
9510 (cond
9512 ;; CASE 5A.1: Non-class declaration block open.
9513 ((save-excursion
9514 (let (tmp)
9515 (and (eq char-after-ip ?{)
9516 (setq tmp (c-looking-at-decl-block containing-sexp t))
9517 (progn
9518 (setq placeholder (point))
9519 (goto-char tmp)
9520 (looking-at c-symbol-key))
9521 (c-keyword-member
9522 (c-keyword-sym (setq keyword (match-string 0)))
9523 'c-other-block-decl-kwds))))
9524 (goto-char placeholder)
9525 (c-add-stmt-syntax
9526 (if (string-equal keyword "extern")
9527 ;; Special case for extern-lang-open.
9528 'extern-lang-open
9529 (intern (concat keyword "-open")))
9530 nil t containing-sexp paren-state))
9532 ;; CASE 5A.2: we are looking at a class opening brace
9533 ((save-excursion
9534 (goto-char indent-point)
9535 (skip-chars-forward " \t")
9536 (and (eq (char-after) ?{)
9537 (c-looking-at-decl-block containing-sexp t)
9538 (setq placeholder (point))))
9539 (c-add-syntax 'class-open placeholder))
9541 ;; CASE 5A.3: brace list open
9542 ((save-excursion
9543 (c-beginning-of-decl-1 lim)
9544 (while (looking-at c-specifier-key)
9545 (goto-char (match-end 1))
9546 (c-forward-syntactic-ws indent-point))
9547 (setq placeholder (c-point 'boi))
9548 (or (consp special-brace-list)
9549 (and (or (save-excursion
9550 (goto-char indent-point)
9551 (setq tmpsymbol nil)
9552 (while (and (> (point) placeholder)
9553 (zerop (c-backward-token-2 1 t))
9554 (/= (char-after) ?=))
9555 (and c-opt-inexpr-brace-list-key
9556 (not tmpsymbol)
9557 (looking-at c-opt-inexpr-brace-list-key)
9558 (setq tmpsymbol 'topmost-intro-cont)))
9559 (eq (char-after) ?=))
9560 (looking-at c-brace-list-key))
9561 (save-excursion
9562 (while (and (< (point) indent-point)
9563 (zerop (c-forward-token-2 1 t))
9564 (not (memq (char-after) '(?\; ?\()))))
9565 (not (memq (char-after) '(?\; ?\()))
9566 ))))
9567 (if (and (not c-auto-newline-analysis)
9568 (c-major-mode-is 'java-mode)
9569 (eq tmpsymbol 'topmost-intro-cont))
9570 ;; We're in Java and have found that the open brace
9571 ;; belongs to a "new Foo[]" initialization list,
9572 ;; which means the brace list is part of an
9573 ;; expression and not a top level definition. We
9574 ;; therefore treat it as any topmost continuation
9575 ;; even though the semantically correct symbol still
9576 ;; is brace-list-open, on the same grounds as in
9577 ;; case B.2.
9578 (progn
9579 (c-beginning-of-statement-1 lim)
9580 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
9581 (c-add-syntax 'brace-list-open placeholder)))
9583 ;; CASE 5A.4: inline defun open
9584 ((and containing-decl-open
9585 (not (c-keyword-member containing-decl-kwd
9586 'c-other-block-decl-kwds)))
9587 (c-add-syntax 'inline-open)
9588 (c-add-class-syntax 'inclass
9589 containing-decl-open
9590 containing-decl-start
9591 containing-decl-kwd
9592 paren-state))
9594 ;; CASE 5A.5: ordinary defun open
9596 (save-excursion
9597 (c-beginning-of-decl-1 lim)
9598 (while (looking-at c-specifier-key)
9599 (goto-char (match-end 1))
9600 (c-forward-syntactic-ws indent-point))
9601 (c-add-syntax 'defun-open (c-point 'boi))
9602 ;; Bogus to use bol here, but it's the legacy. (Resolved,
9603 ;; 2007-11-09)
9604 ))))
9606 ;; CASE 5B: After a function header but before the body (or
9607 ;; the ending semicolon if there's no body).
9608 ((save-excursion
9609 (when (setq placeholder (c-just-after-func-arglist-p
9610 (max lim (c-determine-limit 500))))
9611 (setq tmp-pos (point))))
9612 (cond
9614 ;; CASE 5B.1: Member init list.
9615 ((eq (char-after tmp-pos) ?:)
9616 (if (or (>= tmp-pos indent-point)
9617 (= (c-point 'bosws) (1+ tmp-pos)))
9618 (progn
9619 ;; There is no preceding member init clause.
9620 ;; Indent relative to the beginning of indentation
9621 ;; for the topmost-intro line that contains the
9622 ;; prototype's open paren.
9623 (goto-char placeholder)
9624 (c-add-syntax 'member-init-intro (c-point 'boi)))
9625 ;; Indent relative to the first member init clause.
9626 (goto-char (1+ tmp-pos))
9627 (c-forward-syntactic-ws)
9628 (c-add-syntax 'member-init-cont (point))))
9630 ;; CASE 5B.2: K&R arg decl intro
9631 ((and c-recognize-knr-p
9632 (c-in-knr-argdecl lim))
9633 (c-beginning-of-statement-1 lim)
9634 (c-add-syntax 'knr-argdecl-intro (c-point 'boi))
9635 (if containing-decl-open
9636 (c-add-class-syntax 'inclass
9637 containing-decl-open
9638 containing-decl-start
9639 containing-decl-kwd
9640 paren-state)))
9642 ;; CASE 5B.4: Nether region after a C++ or Java func
9643 ;; decl, which could include a `throws' declaration.
9645 (c-beginning-of-statement-1 lim)
9646 (c-add-syntax 'func-decl-cont (c-point 'boi))
9649 ;; CASE 5C: inheritance line. could be first inheritance
9650 ;; line, or continuation of a multiple inheritance
9651 ((or (and (c-major-mode-is 'c++-mode)
9652 (progn
9653 (when (eq char-after-ip ?,)
9654 (skip-chars-forward " \t")
9655 (forward-char))
9656 (looking-at c-opt-postfix-decl-spec-key)))
9657 (and (or (eq char-before-ip ?:)
9658 ;; watch out for scope operator
9659 (save-excursion
9660 (and (eq char-after-ip ?:)
9661 (c-safe (forward-char 1) t)
9662 (not (eq (char-after) ?:))
9664 (save-excursion
9665 (c-backward-syntactic-ws lim)
9666 (if (eq char-before-ip ?:)
9667 (progn
9668 (forward-char -1)
9669 (c-backward-syntactic-ws lim)))
9670 (back-to-indentation)
9671 (looking-at c-class-key)))
9672 ;; for Java
9673 (and (c-major-mode-is 'java-mode)
9674 (let ((fence (save-excursion
9675 (c-beginning-of-statement-1 lim)
9676 (point)))
9677 cont done)
9678 (save-excursion
9679 (while (not done)
9680 (cond ((looking-at c-opt-postfix-decl-spec-key)
9681 (setq injava-inher (cons cont (point))
9682 done t))
9683 ((or (not (c-safe (c-forward-sexp -1) t))
9684 (<= (point) fence))
9685 (setq done t))
9687 (setq cont t)))
9688 injava-inher)
9689 (not (c-crosses-statement-barrier-p (cdr injava-inher)
9690 (point)))
9692 (cond
9694 ;; CASE 5C.1: non-hanging colon on an inher intro
9695 ((eq char-after-ip ?:)
9696 (c-beginning-of-statement-1 lim)
9697 (c-add-syntax 'inher-intro (c-point 'boi))
9698 ;; don't add inclass symbol since relative point already
9699 ;; contains any class offset
9702 ;; CASE 5C.2: hanging colon on an inher intro
9703 ((eq char-before-ip ?:)
9704 (c-beginning-of-statement-1 lim)
9705 (c-add-syntax 'inher-intro (c-point 'boi))
9706 (if containing-decl-open
9707 (c-add-class-syntax 'inclass
9708 containing-decl-open
9709 containing-decl-start
9710 containing-decl-kwd
9711 paren-state)))
9713 ;; CASE 5C.3: in a Java implements/extends
9714 (injava-inher
9715 (let ((where (cdr injava-inher))
9716 (cont (car injava-inher)))
9717 (goto-char where)
9718 (cond ((looking-at "throws\\>[^_]")
9719 (c-add-syntax 'func-decl-cont
9720 (progn (c-beginning-of-statement-1 lim)
9721 (c-point 'boi))))
9722 (cont (c-add-syntax 'inher-cont where))
9723 (t (c-add-syntax 'inher-intro
9724 (progn (goto-char (cdr injava-inher))
9725 (c-beginning-of-statement-1 lim)
9726 (point))))
9729 ;; CASE 5C.4: a continued inheritance line
9731 (c-beginning-of-inheritance-list lim)
9732 (c-add-syntax 'inher-cont (point))
9733 ;; don't add inclass symbol since relative point already
9734 ;; contains any class offset
9737 ;; CASE 5D: this could be a top-level initialization, a
9738 ;; member init list continuation, or a template argument
9739 ;; list continuation.
9740 ((save-excursion
9741 ;; Note: We use the fact that lim is always after any
9742 ;; preceding brace sexp.
9743 (if c-recognize-<>-arglists
9744 (while (and
9745 (progn
9746 (c-syntactic-skip-backward "^;,=<>" lim t)
9747 (> (point) lim))
9749 (when c-overloadable-operators-regexp
9750 (when (setq placeholder (c-after-special-operator-id lim))
9751 (goto-char placeholder)
9753 (cond
9754 ((eq (char-before) ?>)
9755 (or (c-backward-<>-arglist nil lim)
9756 (backward-char))
9758 ((eq (char-before) ?<)
9759 (backward-char)
9760 (if (save-excursion
9761 (c-forward-<>-arglist nil))
9762 (progn (forward-char)
9763 nil)
9765 (t nil)))))
9766 ;; NB: No c-after-special-operator-id stuff in this
9767 ;; clause - we assume only C++ needs it.
9768 (c-syntactic-skip-backward "^;,=" lim t))
9769 (memq (char-before) '(?, ?= ?<)))
9770 (cond
9772 ;; CASE 5D.3: perhaps a template list continuation?
9773 ((and (c-major-mode-is 'c++-mode)
9774 (save-excursion
9775 (save-restriction
9776 (c-with-syntax-table c++-template-syntax-table
9777 (goto-char indent-point)
9778 (setq placeholder (c-up-list-backward))
9779 (and placeholder
9780 (eq (char-after placeholder) ?<))))))
9781 (c-with-syntax-table c++-template-syntax-table
9782 (goto-char placeholder)
9783 (c-beginning-of-statement-1 lim t)
9784 (if (save-excursion
9785 (c-backward-syntactic-ws lim)
9786 (eq (char-before) ?<))
9787 ;; In a nested template arglist.
9788 (progn
9789 (goto-char placeholder)
9790 (c-syntactic-skip-backward "^,;" lim t)
9791 (c-forward-syntactic-ws))
9792 (back-to-indentation)))
9793 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
9794 ;; template aware.
9795 (c-add-syntax 'template-args-cont (point) placeholder))
9797 ;; CASE 5D.4: perhaps a multiple inheritance line?
9798 ((and (c-major-mode-is 'c++-mode)
9799 (save-excursion
9800 (c-beginning-of-statement-1 lim)
9801 (setq placeholder (point))
9802 (if (looking-at "static\\>[^_]")
9803 (c-forward-token-2 1 nil indent-point))
9804 (and (looking-at c-class-key)
9805 (zerop (c-forward-token-2 2 nil indent-point))
9806 (if (eq (char-after) ?<)
9807 (c-with-syntax-table c++-template-syntax-table
9808 (zerop (c-forward-token-2 1 t indent-point)))
9810 (eq (char-after) ?:))))
9811 (goto-char placeholder)
9812 (c-add-syntax 'inher-cont (c-point 'boi)))
9814 ;; CASE 5D.5: Continuation of the "expression part" of a
9815 ;; top level construct. Or, perhaps, an unrecognized construct.
9817 (while (and (setq placeholder (point))
9818 (eq (car (c-beginning-of-decl-1 containing-sexp)) ; Can't use `lim' here.
9819 'same)
9820 (save-excursion
9821 (c-backward-syntactic-ws)
9822 (eq (char-before) ?}))
9823 (< (point) placeholder)))
9824 (c-add-stmt-syntax
9825 (cond
9826 ((eq (point) placeholder) 'statement) ; unrecognized construct
9827 ;; A preceding comma at the top level means that a
9828 ;; new variable declaration starts here. Use
9829 ;; topmost-intro-cont for it, for consistency with
9830 ;; the first variable declaration. C.f. case 5N.
9831 ((eq char-before-ip ?,) 'topmost-intro-cont)
9832 (t 'statement-cont))
9833 nil nil containing-sexp paren-state))
9836 ;; CASE 5F: Close of a non-class declaration level block.
9837 ((and (eq char-after-ip ?})
9838 (c-keyword-member containing-decl-kwd
9839 'c-other-block-decl-kwds))
9840 ;; This is inconsistent: Should use `containing-decl-open'
9841 ;; here if it's at boi, like in case 5J.
9842 (goto-char containing-decl-start)
9843 (c-add-stmt-syntax
9844 (if (string-equal (symbol-name containing-decl-kwd) "extern")
9845 ;; Special case for compatibility with the
9846 ;; extern-lang syntactic symbols.
9847 'extern-lang-close
9848 (intern (concat (symbol-name containing-decl-kwd)
9849 "-close")))
9850 nil t
9851 (c-most-enclosing-brace paren-state (point))
9852 paren-state))
9854 ;; CASE 5G: we are looking at the brace which closes the
9855 ;; enclosing nested class decl
9856 ((and containing-sexp
9857 (eq char-after-ip ?})
9858 (eq containing-decl-open containing-sexp))
9859 (c-add-class-syntax 'class-close
9860 containing-decl-open
9861 containing-decl-start
9862 containing-decl-kwd
9863 paren-state))
9865 ;; CASE 5H: we could be looking at subsequent knr-argdecls
9866 ((and c-recognize-knr-p
9867 (not containing-sexp) ; can't be knr inside braces.
9868 (not (eq char-before-ip ?}))
9869 (save-excursion
9870 (setq placeholder (cdr (c-beginning-of-decl-1 lim)))
9871 (and placeholder
9872 ;; Do an extra check to avoid tripping up on
9873 ;; statements that occur in invalid contexts
9874 ;; (e.g. in macro bodies where we don't really
9875 ;; know the context of what we're looking at).
9876 (not (and c-opt-block-stmt-key
9877 (looking-at c-opt-block-stmt-key)))))
9878 (< placeholder indent-point))
9879 (goto-char placeholder)
9880 (c-add-syntax 'knr-argdecl (point)))
9882 ;; CASE 5I: ObjC method definition.
9883 ((and c-opt-method-key
9884 (looking-at c-opt-method-key))
9885 (c-beginning-of-statement-1 nil t)
9886 (if (= (point) indent-point)
9887 ;; Handle the case when it's the first (non-comment)
9888 ;; thing in the buffer. Can't look for a 'same return
9889 ;; value from cbos1 since ObjC directives currently
9890 ;; aren't recognized fully, so that we get 'same
9891 ;; instead of 'previous if it moved over a preceding
9892 ;; directive.
9893 (goto-char (point-min)))
9894 (c-add-syntax 'objc-method-intro (c-point 'boi)))
9896 ;; CASE 5P: AWK pattern or function or continuation
9897 ;; thereof.
9898 ((c-major-mode-is 'awk-mode)
9899 (setq placeholder (point))
9900 (c-add-stmt-syntax
9901 (if (and (eq (c-beginning-of-statement-1) 'same)
9902 (/= (point) placeholder))
9903 'topmost-intro-cont
9904 'topmost-intro)
9905 nil nil
9906 containing-sexp paren-state))
9908 ;; CASE 5N: At a variable declaration that follows a class
9909 ;; definition or some other block declaration that doesn't
9910 ;; end at the closing '}'. C.f. case 5D.5.
9911 ((progn
9912 (c-backward-syntactic-ws lim)
9913 (and (eq (char-before) ?})
9914 (save-excursion
9915 (let ((start (point)))
9916 (if (and c-state-cache
9917 (consp (car c-state-cache))
9918 (eq (cdar c-state-cache) (point)))
9919 ;; Speed up the backward search a bit.
9920 (goto-char (caar c-state-cache)))
9921 (c-beginning-of-decl-1 containing-sexp) ; Can't use `lim' here.
9922 (setq placeholder (point))
9923 (if (= start (point))
9924 ;; The '}' is unbalanced.
9926 (c-end-of-decl-1)
9927 (>= (point) indent-point))))))
9928 (goto-char placeholder)
9929 (c-add-stmt-syntax 'topmost-intro-cont nil nil
9930 containing-sexp paren-state))
9932 ;; NOTE: The point is at the end of the previous token here.
9934 ;; CASE 5J: we are at the topmost level, make
9935 ;; sure we skip back past any access specifiers
9936 ((and
9937 ;; A macro continuation line is never at top level.
9938 (not (and macro-start
9939 (> indent-point macro-start)))
9940 (save-excursion
9941 (setq placeholder (point))
9942 (or (memq char-before-ip '(?\; ?{ ?} nil))
9943 (c-at-vsemi-p before-ws-ip)
9944 (when (and (eq char-before-ip ?:)
9945 (eq (c-beginning-of-statement-1 lim)
9946 'label))
9947 (c-backward-syntactic-ws lim)
9948 (setq placeholder (point)))
9949 (and (c-major-mode-is 'objc-mode)
9950 (catch 'not-in-directive
9951 (c-beginning-of-statement-1 lim)
9952 (setq placeholder (point))
9953 (while (and (c-forward-objc-directive)
9954 (< (point) indent-point))
9955 (c-forward-syntactic-ws)
9956 (if (>= (point) indent-point)
9957 (throw 'not-in-directive t))
9958 (setq placeholder (point)))
9959 nil)))))
9960 ;; For historic reasons we anchor at bol of the last
9961 ;; line of the previous declaration. That's clearly
9962 ;; highly bogus and useless, and it makes our lives hard
9963 ;; to remain compatible. :P
9964 (goto-char placeholder)
9965 (c-add-syntax 'topmost-intro (c-point 'bol))
9966 (if containing-decl-open
9967 (if (c-keyword-member containing-decl-kwd
9968 'c-other-block-decl-kwds)
9969 (progn
9970 (goto-char (c-brace-anchor-point containing-decl-open))
9971 (c-add-stmt-syntax
9972 (if (string-equal (symbol-name containing-decl-kwd)
9973 "extern")
9974 ;; Special case for compatibility with the
9975 ;; extern-lang syntactic symbols.
9976 'inextern-lang
9977 (intern (concat "in"
9978 (symbol-name containing-decl-kwd))))
9979 nil t
9980 (c-most-enclosing-brace paren-state (point))
9981 paren-state))
9982 (c-add-class-syntax 'inclass
9983 containing-decl-open
9984 containing-decl-start
9985 containing-decl-kwd
9986 paren-state)))
9987 (when (and c-syntactic-indentation-in-macros
9988 macro-start
9989 (/= macro-start (c-point 'boi indent-point)))
9990 (c-add-syntax 'cpp-define-intro)
9991 (setq macro-start nil)))
9993 ;; CASE 5K: we are at an ObjC method definition
9994 ;; continuation line.
9995 ((and c-opt-method-key
9996 (save-excursion
9997 (c-beginning-of-statement-1 lim)
9998 (beginning-of-line)
9999 (when (looking-at c-opt-method-key)
10000 (setq placeholder (point)))))
10001 (c-add-syntax 'objc-method-args-cont placeholder))
10003 ;; CASE 5L: we are at the first argument of a template
10004 ;; arglist that begins on the previous line.
10005 ((and c-recognize-<>-arglists
10006 (eq (char-before) ?<)
10007 (not (and c-overloadable-operators-regexp
10008 (c-after-special-operator-id lim))))
10009 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
10010 (c-add-syntax 'template-args-cont (c-point 'boi)))
10012 ;; CASE 5Q: we are at a statement within a macro.
10013 (macro-start
10014 (c-beginning-of-statement-1 containing-sexp)
10015 (c-add-stmt-syntax 'statement nil t containing-sexp paren-state))
10017 ;;CASE 5N: We are at a topmost continuation line and the only
10018 ;;preceding items are annotations.
10019 ((and (c-major-mode-is 'java-mode)
10020 (setq placeholder (point))
10021 (c-beginning-of-statement-1)
10022 (progn
10023 (while (and (c-forward-annotation))
10024 (c-forward-syntactic-ws))
10026 (prog1
10027 (>= (point) placeholder)
10028 (goto-char placeholder)))
10029 (c-add-syntax 'annotation-top-cont (c-point 'boi)))
10031 ;; CASE 5M: we are at a topmost continuation line
10033 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
10034 (when (c-major-mode-is 'objc-mode)
10035 (setq placeholder (point))
10036 (while (and (c-forward-objc-directive)
10037 (< (point) indent-point))
10038 (c-forward-syntactic-ws)
10039 (setq placeholder (point)))
10040 (goto-char placeholder))
10041 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
10045 ;; (CASE 6 has been removed.)
10047 ;; CASE 7: line is an expression, not a statement. Most
10048 ;; likely we are either in a function prototype or a function
10049 ;; call argument list
10050 ((not (or (and c-special-brace-lists
10051 (save-excursion
10052 (goto-char containing-sexp)
10053 (c-looking-at-special-brace-list)))
10054 (eq (char-after containing-sexp) ?{)))
10055 (cond
10057 ;; CASE 7A: we are looking at the arglist closing paren.
10058 ;; C.f. case 7F.
10059 ((memq char-after-ip '(?\) ?\]))
10060 (goto-char containing-sexp)
10061 (setq placeholder (c-point 'boi))
10062 (if (and (c-safe (backward-up-list 1) t)
10063 (>= (point) placeholder))
10064 (progn
10065 (forward-char)
10066 (skip-chars-forward " \t"))
10067 (goto-char placeholder))
10068 (c-add-stmt-syntax 'arglist-close (list containing-sexp) t
10069 (c-most-enclosing-brace paren-state (point))
10070 paren-state))
10072 ;; CASE 7B: Looking at the opening brace of an
10073 ;; in-expression block or brace list. C.f. cases 4, 16A
10074 ;; and 17E.
10075 ((and (eq char-after-ip ?{)
10076 (progn
10077 (setq placeholder (c-inside-bracelist-p (point)
10078 paren-state))
10079 (if placeholder
10080 (setq tmpsymbol '(brace-list-open . inexpr-class))
10081 (setq tmpsymbol '(block-open . inexpr-statement)
10082 placeholder
10083 (cdr-safe (c-looking-at-inexpr-block
10084 (c-safe-position containing-sexp
10085 paren-state)
10086 containing-sexp)))
10087 ;; placeholder is nil if it's a block directly in
10088 ;; a function arglist. That makes us skip out of
10089 ;; this case.
10091 (goto-char placeholder)
10092 (back-to-indentation)
10093 (c-add-stmt-syntax (car tmpsymbol) nil t
10094 (c-most-enclosing-brace paren-state (point))
10095 paren-state)
10096 (if (/= (point) placeholder)
10097 (c-add-syntax (cdr tmpsymbol))))
10099 ;; CASE 7C: we are looking at the first argument in an empty
10100 ;; argument list. Use arglist-close if we're actually
10101 ;; looking at a close paren or bracket.
10102 ((memq char-before-ip '(?\( ?\[))
10103 (goto-char containing-sexp)
10104 (setq placeholder (c-point 'boi))
10105 (if (and (c-safe (backward-up-list 1) t)
10106 (>= (point) placeholder))
10107 (progn
10108 (forward-char)
10109 (skip-chars-forward " \t"))
10110 (goto-char placeholder))
10111 (c-add-stmt-syntax 'arglist-intro (list containing-sexp) t
10112 (c-most-enclosing-brace paren-state (point))
10113 paren-state))
10115 ;; CASE 7D: we are inside a conditional test clause. treat
10116 ;; these things as statements
10117 ((progn
10118 (goto-char containing-sexp)
10119 (and (c-safe (c-forward-sexp -1) t)
10120 (looking-at "\\<for\\>[^_]")))
10121 (goto-char (1+ containing-sexp))
10122 (c-forward-syntactic-ws indent-point)
10123 (if (eq char-before-ip ?\;)
10124 (c-add-syntax 'statement (point))
10125 (c-add-syntax 'statement-cont (point))
10128 ;; CASE 7E: maybe a continued ObjC method call. This is the
10129 ;; case when we are inside a [] bracketed exp, and what
10130 ;; precede the opening bracket is not an identifier.
10131 ((and c-opt-method-key
10132 (eq (char-after containing-sexp) ?\[)
10133 (progn
10134 (goto-char (1- containing-sexp))
10135 (c-backward-syntactic-ws (c-point 'bod))
10136 (if (not (looking-at c-symbol-key))
10137 (c-add-syntax 'objc-method-call-cont containing-sexp))
10140 ;; CASE 7F: we are looking at an arglist continuation line,
10141 ;; but the preceding argument is on the same line as the
10142 ;; opening paren. This case includes multi-line
10143 ;; mathematical paren groupings, but we could be on a
10144 ;; for-list continuation line. C.f. case 7A.
10145 ((progn
10146 (goto-char (1+ containing-sexp))
10147 (< (save-excursion
10148 (c-forward-syntactic-ws)
10149 (point))
10150 (c-point 'bonl)))
10151 (goto-char containing-sexp) ; paren opening the arglist
10152 (setq placeholder (c-point 'boi))
10153 (if (and (c-safe (backward-up-list 1) t)
10154 (>= (point) placeholder))
10155 (progn
10156 (forward-char)
10157 (skip-chars-forward " \t"))
10158 (goto-char placeholder))
10159 (c-add-stmt-syntax 'arglist-cont-nonempty (list containing-sexp) t
10160 (c-most-enclosing-brace c-state-cache (point))
10161 paren-state))
10163 ;; CASE 7G: we are looking at just a normal arglist
10164 ;; continuation line
10165 (t (c-forward-syntactic-ws indent-point)
10166 (c-add-syntax 'arglist-cont (c-point 'boi)))
10169 ;; CASE 8: func-local multi-inheritance line
10170 ((and (c-major-mode-is 'c++-mode)
10171 (save-excursion
10172 (goto-char indent-point)
10173 (skip-chars-forward " \t")
10174 (looking-at c-opt-postfix-decl-spec-key)))
10175 (goto-char indent-point)
10176 (skip-chars-forward " \t")
10177 (cond
10179 ;; CASE 8A: non-hanging colon on an inher intro
10180 ((eq char-after-ip ?:)
10181 (c-backward-syntactic-ws lim)
10182 (c-add-syntax 'inher-intro (c-point 'boi)))
10184 ;; CASE 8B: hanging colon on an inher intro
10185 ((eq char-before-ip ?:)
10186 (c-add-syntax 'inher-intro (c-point 'boi)))
10188 ;; CASE 8C: a continued inheritance line
10190 (c-beginning-of-inheritance-list lim)
10191 (c-add-syntax 'inher-cont (point))
10194 ;; CASE 9: we are inside a brace-list
10195 ((and (not (c-major-mode-is 'awk-mode)) ; Maybe this isn't needed (ACM, 2002/3/29)
10196 (setq special-brace-list
10197 (or (and c-special-brace-lists ;;;; ALWAYS NIL FOR AWK!!
10198 (save-excursion
10199 (goto-char containing-sexp)
10200 (c-looking-at-special-brace-list)))
10201 (c-inside-bracelist-p containing-sexp paren-state))))
10202 (cond
10204 ;; CASE 9A: In the middle of a special brace list opener.
10205 ((and (consp special-brace-list)
10206 (save-excursion
10207 (goto-char containing-sexp)
10208 (eq (char-after) ?\())
10209 (eq char-after-ip (car (cdr special-brace-list))))
10210 (goto-char (car (car special-brace-list)))
10211 (skip-chars-backward " \t")
10212 (if (and (bolp)
10213 (assoc 'statement-cont
10214 (setq placeholder (c-guess-basic-syntax))))
10215 (setq c-syntactic-context placeholder)
10216 (c-beginning-of-statement-1
10217 (c-safe-position (1- containing-sexp) paren-state))
10218 (c-forward-token-2 0)
10219 (while (looking-at c-specifier-key)
10220 (goto-char (match-end 1))
10221 (c-forward-syntactic-ws))
10222 (c-add-syntax 'brace-list-open (c-point 'boi))))
10224 ;; CASE 9B: brace-list-close brace
10225 ((if (consp special-brace-list)
10226 ;; Check special brace list closer.
10227 (progn
10228 (goto-char (car (car special-brace-list)))
10229 (save-excursion
10230 (goto-char indent-point)
10231 (back-to-indentation)
10233 ;; We were between the special close char and the `)'.
10234 (and (eq (char-after) ?\))
10235 (eq (1+ (point)) (cdr (car special-brace-list))))
10236 ;; We were before the special close char.
10237 (and (eq (char-after) (cdr (cdr special-brace-list)))
10238 (zerop (c-forward-token-2))
10239 (eq (1+ (point)) (cdr (car special-brace-list)))))))
10240 ;; Normal brace list check.
10241 (and (eq char-after-ip ?})
10242 (c-safe (goto-char (c-up-list-backward (point))) t)
10243 (= (point) containing-sexp)))
10244 (if (eq (point) (c-point 'boi))
10245 (c-add-syntax 'brace-list-close (point))
10246 (setq lim (c-most-enclosing-brace c-state-cache (point)))
10247 (c-beginning-of-statement-1 lim)
10248 (c-add-stmt-syntax 'brace-list-close nil t lim paren-state)))
10251 ;; Prepare for the rest of the cases below by going to the
10252 ;; token following the opening brace
10253 (if (consp special-brace-list)
10254 (progn
10255 (goto-char (car (car special-brace-list)))
10256 (c-forward-token-2 1 nil indent-point))
10257 (goto-char containing-sexp))
10258 (forward-char)
10259 (let ((start (point)))
10260 (c-forward-syntactic-ws indent-point)
10261 (goto-char (max start (c-point 'bol))))
10262 (c-skip-ws-forward indent-point)
10263 (cond
10265 ;; CASE 9C: we're looking at the first line in a brace-list
10266 ((= (point) indent-point)
10267 (if (consp special-brace-list)
10268 (goto-char (car (car special-brace-list)))
10269 (goto-char containing-sexp))
10270 (if (eq (point) (c-point 'boi))
10271 (c-add-syntax 'brace-list-intro (point))
10272 (setq lim (c-most-enclosing-brace c-state-cache (point)))
10273 (c-beginning-of-statement-1 lim)
10274 (c-add-stmt-syntax 'brace-list-intro nil t lim paren-state)))
10276 ;; CASE 9D: this is just a later brace-list-entry or
10277 ;; brace-entry-open
10278 (t (if (or (eq char-after-ip ?{)
10279 (and c-special-brace-lists
10280 (save-excursion
10281 (goto-char indent-point)
10282 (c-forward-syntactic-ws (c-point 'eol))
10283 (c-looking-at-special-brace-list (point)))))
10284 (c-add-syntax 'brace-entry-open (point))
10285 (c-add-syntax 'brace-list-entry (point))
10287 ))))
10289 ;; CASE 10: A continued statement or top level construct.
10290 ((and (not (memq char-before-ip '(?\; ?:)))
10291 (not (c-at-vsemi-p before-ws-ip))
10292 (or (not (eq char-before-ip ?}))
10293 (c-looking-at-inexpr-block-backward c-state-cache))
10294 (> (point)
10295 (save-excursion
10296 (c-beginning-of-statement-1 containing-sexp)
10297 (setq placeholder (point))))
10298 (/= placeholder containing-sexp))
10299 ;; This is shared with case 18.
10300 (c-guess-continued-construct indent-point
10301 char-after-ip
10302 placeholder
10303 containing-sexp
10304 paren-state))
10306 ;; CASE 16: block close brace, possibly closing the defun or
10307 ;; the class
10308 ((eq char-after-ip ?})
10309 ;; From here on we have the next containing sexp in lim.
10310 (setq lim (c-most-enclosing-brace paren-state))
10311 (goto-char containing-sexp)
10312 (cond
10314 ;; CASE 16E: Closing a statement block? This catches
10315 ;; cases where it's preceded by a statement keyword,
10316 ;; which works even when used in an "invalid" context,
10317 ;; e.g. a macro argument.
10318 ((c-after-conditional)
10319 (c-backward-to-block-anchor lim)
10320 (c-add-stmt-syntax 'block-close nil t lim paren-state))
10322 ;; CASE 16A: closing a lambda defun or an in-expression
10323 ;; block? C.f. cases 4, 7B and 17E.
10324 ((setq placeholder (c-looking-at-inexpr-block
10325 (c-safe-position containing-sexp paren-state)
10326 nil))
10327 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
10328 'inline-close
10329 'block-close))
10330 (goto-char containing-sexp)
10331 (back-to-indentation)
10332 (if (= containing-sexp (point))
10333 (c-add-syntax tmpsymbol (point))
10334 (goto-char (cdr placeholder))
10335 (back-to-indentation)
10336 (c-add-stmt-syntax tmpsymbol nil t
10337 (c-most-enclosing-brace paren-state (point))
10338 paren-state)
10339 (if (/= (point) (cdr placeholder))
10340 (c-add-syntax (car placeholder)))))
10342 ;; CASE 16B: does this close an inline or a function in
10343 ;; a non-class declaration level block?
10344 ((save-excursion
10345 (and lim
10346 (progn
10347 (goto-char lim)
10348 (c-looking-at-decl-block
10349 (c-most-enclosing-brace paren-state lim)
10350 nil))
10351 (setq placeholder (point))))
10352 (c-backward-to-decl-anchor lim)
10353 (back-to-indentation)
10354 (if (save-excursion
10355 (goto-char placeholder)
10356 (looking-at c-other-decl-block-key))
10357 (c-add-syntax 'defun-close (point))
10358 (c-add-syntax 'inline-close (point))))
10360 ;; CASE 16F: Can be a defun-close of a function declared
10361 ;; in a statement block, e.g. in Pike or when using gcc
10362 ;; extensions, but watch out for macros followed by
10363 ;; blocks. Let it through to be handled below.
10364 ;; C.f. cases B.3 and 17G.
10365 ((save-excursion
10366 (and (not (c-at-statement-start-p))
10367 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
10368 (setq placeholder (point))
10369 (let ((c-recognize-typeless-decls nil))
10370 ;; Turn off recognition of constructs that
10371 ;; lacks a type in this case, since that's more
10372 ;; likely to be a macro followed by a block.
10373 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
10374 (back-to-indentation)
10375 (if (/= (point) containing-sexp)
10376 (goto-char placeholder))
10377 (c-add-stmt-syntax 'defun-close nil t lim paren-state))
10379 ;; CASE 16C: If there is an enclosing brace then this is
10380 ;; a block close since defun closes inside declaration
10381 ;; level blocks have been handled above.
10382 (lim
10383 ;; If the block is preceded by a case/switch label on
10384 ;; the same line, we anchor at the first preceding label
10385 ;; at boi. The default handling in c-add-stmt-syntax
10386 ;; really fixes it better, but we do like this to keep
10387 ;; the indentation compatible with version 5.28 and
10388 ;; earlier. C.f. case 17H.
10389 (while (and (/= (setq placeholder (point)) (c-point 'boi))
10390 (eq (c-beginning-of-statement-1 lim) 'label)))
10391 (goto-char placeholder)
10392 (if (looking-at c-label-kwds-regexp)
10393 (c-add-syntax 'block-close (point))
10394 (goto-char containing-sexp)
10395 ;; c-backward-to-block-anchor not necessary here; those
10396 ;; situations are handled in case 16E above.
10397 (c-add-stmt-syntax 'block-close nil t lim paren-state)))
10399 ;; CASE 16D: Only top level defun close left.
10401 (goto-char containing-sexp)
10402 (c-backward-to-decl-anchor lim)
10403 (c-add-stmt-syntax 'defun-close nil nil
10404 (c-most-enclosing-brace paren-state)
10405 paren-state))
10408 ;; CASE 19: line is an expression, not a statement, and is directly
10409 ;; contained by a template delimiter. Most likely, we are in a
10410 ;; template arglist within a statement. This case is based on CASE
10411 ;; 7. At some point in the future, we may wish to create more
10412 ;; syntactic symbols such as `template-intro',
10413 ;; `template-cont-nonempty', etc., and distinguish between them as we
10414 ;; do for `arglist-intro' etc. (2009-12-07).
10415 ((and c-recognize-<>-arglists
10416 (setq containing-< (c-up-list-backward indent-point containing-sexp))
10417 (eq (char-after containing-<) ?\<))
10418 (setq placeholder (c-point 'boi containing-<))
10419 (goto-char containing-sexp) ; Most nested Lbrace/Lparen (but not
10420 ; '<') before indent-point.
10421 (if (>= (point) placeholder)
10422 (progn
10423 (forward-char)
10424 (skip-chars-forward " \t"))
10425 (goto-char placeholder))
10426 (c-add-stmt-syntax 'template-args-cont (list containing-<) t
10427 (c-most-enclosing-brace c-state-cache (point))
10428 paren-state))
10430 ;; CASE 17: Statement or defun catchall.
10432 (goto-char indent-point)
10433 ;; Back up statements until we find one that starts at boi.
10434 (while (let* ((prev-point (point))
10435 (last-step-type (c-beginning-of-statement-1
10436 containing-sexp)))
10437 (if (= (point) prev-point)
10438 (progn
10439 (setq step-type (or step-type last-step-type))
10440 nil)
10441 (setq step-type last-step-type)
10442 (/= (point) (c-point 'boi)))))
10443 (cond
10445 ;; CASE 17B: continued statement
10446 ((and (eq step-type 'same)
10447 (/= (point) indent-point))
10448 (c-add-stmt-syntax 'statement-cont nil nil
10449 containing-sexp paren-state))
10451 ;; CASE 17A: After a case/default label?
10452 ((progn
10453 (while (and (eq step-type 'label)
10454 (not (looking-at c-label-kwds-regexp)))
10455 (setq step-type
10456 (c-beginning-of-statement-1 containing-sexp)))
10457 (eq step-type 'label))
10458 (c-add-stmt-syntax (if (eq char-after-ip ?{)
10459 'statement-case-open
10460 'statement-case-intro)
10461 nil t containing-sexp paren-state))
10463 ;; CASE 17D: any old statement
10464 ((progn
10465 (while (eq step-type 'label)
10466 (setq step-type
10467 (c-beginning-of-statement-1 containing-sexp)))
10468 (eq step-type 'previous))
10469 (c-add-stmt-syntax 'statement nil t
10470 containing-sexp paren-state)
10471 (if (eq char-after-ip ?{)
10472 (c-add-syntax 'block-open)))
10474 ;; CASE 17I: Inside a substatement block.
10475 ((progn
10476 ;; The following tests are all based on containing-sexp.
10477 (goto-char containing-sexp)
10478 ;; From here on we have the next containing sexp in lim.
10479 (setq lim (c-most-enclosing-brace paren-state containing-sexp))
10480 (c-after-conditional))
10481 (c-backward-to-block-anchor lim)
10482 (c-add-stmt-syntax 'statement-block-intro nil t
10483 lim paren-state)
10484 (if (eq char-after-ip ?{)
10485 (c-add-syntax 'block-open)))
10487 ;; CASE 17E: first statement in an in-expression block.
10488 ;; C.f. cases 4, 7B and 16A.
10489 ((setq placeholder (c-looking-at-inexpr-block
10490 (c-safe-position containing-sexp paren-state)
10491 nil))
10492 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
10493 'defun-block-intro
10494 'statement-block-intro))
10495 (back-to-indentation)
10496 (if (= containing-sexp (point))
10497 (c-add-syntax tmpsymbol (point))
10498 (goto-char (cdr placeholder))
10499 (back-to-indentation)
10500 (c-add-stmt-syntax tmpsymbol nil t
10501 (c-most-enclosing-brace c-state-cache (point))
10502 paren-state)
10503 (if (/= (point) (cdr placeholder))
10504 (c-add-syntax (car placeholder))))
10505 (if (eq char-after-ip ?{)
10506 (c-add-syntax 'block-open)))
10508 ;; CASE 17F: first statement in an inline, or first
10509 ;; statement in a top-level defun. we can tell this is it
10510 ;; if there are no enclosing braces that haven't been
10511 ;; narrowed out by a class (i.e. don't use bod here).
10512 ((save-excursion
10513 (or (not (setq placeholder (c-most-enclosing-brace
10514 paren-state)))
10515 (and (progn
10516 (goto-char placeholder)
10517 (eq (char-after) ?{))
10518 (c-looking-at-decl-block (c-most-enclosing-brace
10519 paren-state (point))
10520 nil))))
10521 (c-backward-to-decl-anchor lim)
10522 (back-to-indentation)
10523 (c-add-syntax 'defun-block-intro (point)))
10525 ;; CASE 17G: First statement in a function declared inside
10526 ;; a normal block. This can occur in Pike and with
10527 ;; e.g. the gcc extensions, but watch out for macros
10528 ;; followed by blocks. C.f. cases B.3 and 16F.
10529 ((save-excursion
10530 (and (not (c-at-statement-start-p))
10531 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
10532 (setq placeholder (point))
10533 (let ((c-recognize-typeless-decls nil))
10534 ;; Turn off recognition of constructs that lacks
10535 ;; a type in this case, since that's more likely
10536 ;; to be a macro followed by a block.
10537 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
10538 (back-to-indentation)
10539 (if (/= (point) containing-sexp)
10540 (goto-char placeholder))
10541 (c-add-stmt-syntax 'defun-block-intro nil t
10542 lim paren-state))
10544 ;; CASE 17H: First statement in a block.
10546 ;; If the block is preceded by a case/switch label on the
10547 ;; same line, we anchor at the first preceding label at
10548 ;; boi. The default handling in c-add-stmt-syntax is
10549 ;; really fixes it better, but we do like this to keep the
10550 ;; indentation compatible with version 5.28 and earlier.
10551 ;; C.f. case 16C.
10552 (while (and (/= (setq placeholder (point)) (c-point 'boi))
10553 (eq (c-beginning-of-statement-1 lim) 'label)))
10554 (goto-char placeholder)
10555 (if (looking-at c-label-kwds-regexp)
10556 (c-add-syntax 'statement-block-intro (point))
10557 (goto-char containing-sexp)
10558 ;; c-backward-to-block-anchor not necessary here; those
10559 ;; situations are handled in case 17I above.
10560 (c-add-stmt-syntax 'statement-block-intro nil t
10561 lim paren-state))
10562 (if (eq char-after-ip ?{)
10563 (c-add-syntax 'block-open)))
10567 ;; now we need to look at any modifiers
10568 (goto-char indent-point)
10569 (skip-chars-forward " \t")
10571 ;; are we looking at a comment only line?
10572 (when (and (looking-at c-comment-start-regexp)
10573 (/= (c-forward-token-2 0 nil (c-point 'eol)) 0))
10574 (c-append-syntax 'comment-intro))
10576 ;; we might want to give additional offset to friends (in C++).
10577 (when (and c-opt-friend-key
10578 (looking-at c-opt-friend-key))
10579 (c-append-syntax 'friend))
10581 ;; Set syntactic-relpos.
10582 (let ((p c-syntactic-context))
10583 (while (and p
10584 (if (integerp (c-langelem-pos (car p)))
10585 (progn
10586 (setq syntactic-relpos (c-langelem-pos (car p)))
10587 nil)
10589 (setq p (cdr p))))
10591 ;; Start of or a continuation of a preprocessor directive?
10592 (if (and macro-start
10593 (eq macro-start (c-point 'boi))
10594 (not (and (c-major-mode-is 'pike-mode)
10595 (eq (char-after (1+ macro-start)) ?\"))))
10596 (c-append-syntax 'cpp-macro)
10597 (when (and c-syntactic-indentation-in-macros macro-start)
10598 (if in-macro-expr
10599 (when (or
10600 (< syntactic-relpos macro-start)
10601 (not (or
10602 (assq 'arglist-intro c-syntactic-context)
10603 (assq 'arglist-cont c-syntactic-context)
10604 (assq 'arglist-cont-nonempty c-syntactic-context)
10605 (assq 'arglist-close c-syntactic-context))))
10606 ;; If inside a cpp expression, i.e. anywhere in a
10607 ;; cpp directive except a #define body, we only let
10608 ;; through the syntactic analysis that is internal
10609 ;; in the expression. That means the arglist
10610 ;; elements, if they are anchored inside the cpp
10611 ;; expression.
10612 (setq c-syntactic-context nil)
10613 (c-add-syntax 'cpp-macro-cont macro-start))
10614 (when (and (eq macro-start syntactic-relpos)
10615 (not (assq 'cpp-define-intro c-syntactic-context))
10616 (save-excursion
10617 (goto-char macro-start)
10618 (or (not (c-forward-to-cpp-define-body))
10619 (<= (point) (c-point 'boi indent-point)))))
10620 ;; Inside a #define body and the syntactic analysis is
10621 ;; anchored on the start of the #define. In this case
10622 ;; we add cpp-define-intro to get the extra
10623 ;; indentation of the #define body.
10624 (c-add-syntax 'cpp-define-intro)))))
10626 ;; return the syntax
10627 c-syntactic-context)))
10630 ;; Indentation calculation.
10632 (defun c-evaluate-offset (offset langelem symbol)
10633 ;; offset can be a number, a function, a variable, a list, or one of
10634 ;; the symbols + or -
10636 ;; This function might do hidden buffer changes.
10637 (let ((res
10638 (cond
10639 ((numberp offset) offset)
10640 ((vectorp offset) offset)
10641 ((null offset) nil)
10643 ((eq offset '+) c-basic-offset)
10644 ((eq offset '-) (- c-basic-offset))
10645 ((eq offset '++) (* 2 c-basic-offset))
10646 ((eq offset '--) (* 2 (- c-basic-offset)))
10647 ((eq offset '*) (/ c-basic-offset 2))
10648 ((eq offset '/) (/ (- c-basic-offset) 2))
10650 ((functionp offset)
10651 (c-evaluate-offset
10652 (funcall offset
10653 (cons (c-langelem-sym langelem)
10654 (c-langelem-pos langelem)))
10655 langelem symbol))
10657 ((listp offset)
10658 (cond
10659 ((eq (car offset) 'quote)
10660 (c-benign-error "The offset %S for %s was mistakenly quoted"
10661 offset symbol)
10662 nil)
10664 ((memq (car offset) '(min max))
10665 (let (res val (method (car offset)))
10666 (setq offset (cdr offset))
10667 (while offset
10668 (setq val (c-evaluate-offset (car offset) langelem symbol))
10669 (cond
10670 ((not val))
10671 ((not res)
10672 (setq res val))
10673 ((integerp val)
10674 (if (vectorp res)
10675 (c-benign-error "\
10676 Error evaluating offset %S for %s: \
10677 Cannot combine absolute offset %S with relative %S in `%s' method"
10678 (car offset) symbol res val method)
10679 (setq res (funcall method res val))))
10681 (if (integerp res)
10682 (c-benign-error "\
10683 Error evaluating offset %S for %s: \
10684 Cannot combine relative offset %S with absolute %S in `%s' method"
10685 (car offset) symbol res val method)
10686 (setq res (vector (funcall method (aref res 0)
10687 (aref val 0)))))))
10688 (setq offset (cdr offset)))
10689 res))
10691 ((eq (car offset) 'add)
10692 (let (res val)
10693 (setq offset (cdr offset))
10694 (while offset
10695 (setq val (c-evaluate-offset (car offset) langelem symbol))
10696 (cond
10697 ((not val))
10698 ((not res)
10699 (setq res val))
10700 ((integerp val)
10701 (if (vectorp res)
10702 (setq res (vector (+ (aref res 0) val)))
10703 (setq res (+ res val))))
10705 (if (vectorp res)
10706 (c-benign-error "\
10707 Error evaluating offset %S for %s: \
10708 Cannot combine absolute offsets %S and %S in `add' method"
10709 (car offset) symbol res val)
10710 (setq res val)))) ; Override.
10711 (setq offset (cdr offset)))
10712 res))
10715 (let (res)
10716 (when (eq (car offset) 'first)
10717 (setq offset (cdr offset)))
10718 (while (and (not res) offset)
10719 (setq res (c-evaluate-offset (car offset) langelem symbol)
10720 offset (cdr offset)))
10721 res))))
10723 ((and (symbolp offset) (boundp offset))
10724 (symbol-value offset))
10727 (c-benign-error "Unknown offset format %S for %s" offset symbol)
10728 nil))))
10730 (if (or (null res) (integerp res)
10731 (and (vectorp res) (= (length res) 1) (integerp (aref res 0))))
10733 (c-benign-error "Error evaluating offset %S for %s: Got invalid value %S"
10734 offset symbol res)
10735 nil)))
10737 (defun c-calc-offset (langelem)
10738 ;; Get offset from LANGELEM which is a list beginning with the
10739 ;; syntactic symbol and followed by any analysis data it provides.
10740 ;; That data may be zero or more elements, but if at least one is
10741 ;; given then the first is the anchor position (or nil). The symbol
10742 ;; is matched against `c-offsets-alist' and the offset calculated
10743 ;; from that is returned.
10745 ;; This function might do hidden buffer changes.
10746 (let* ((symbol (c-langelem-sym langelem))
10747 (match (assq symbol c-offsets-alist))
10748 (offset (cdr-safe match)))
10749 (if match
10750 (setq offset (c-evaluate-offset offset langelem symbol))
10751 (if c-strict-syntax-p
10752 (c-benign-error "No offset found for syntactic symbol %s" symbol))
10753 (setq offset 0))
10754 (if (vectorp offset)
10755 offset
10756 (or (and (numberp offset) offset)
10757 (and (symbolp offset) (symbol-value offset))
10761 (defun c-get-offset (langelem)
10762 ;; This is a compatibility wrapper for `c-calc-offset' in case
10763 ;; someone is calling it directly. It takes an old style syntactic
10764 ;; element on the form (SYMBOL . ANCHOR-POS) and converts it to the
10765 ;; new list form.
10767 ;; This function might do hidden buffer changes.
10768 (if (c-langelem-pos langelem)
10769 (c-calc-offset (list (c-langelem-sym langelem)
10770 (c-langelem-pos langelem)))
10771 (c-calc-offset langelem)))
10773 (defun c-get-syntactic-indentation (langelems)
10774 ;; Calculate the syntactic indentation from a syntactic description
10775 ;; as returned by `c-guess-syntax'.
10777 ;; Note that topmost-intro always has an anchor position at bol, for
10778 ;; historical reasons. It's often used together with other symbols
10779 ;; that has more sane positions. Since we always use the first
10780 ;; found anchor position, we rely on that these other symbols always
10781 ;; precede topmost-intro in the LANGELEMS list.
10783 ;; This function might do hidden buffer changes.
10784 (let ((indent 0) anchor)
10786 (while langelems
10787 (let* ((c-syntactic-element (car langelems))
10788 (res (c-calc-offset c-syntactic-element)))
10790 (if (vectorp res)
10791 ;; Got an absolute column that overrides any indentation
10792 ;; we've collected so far, but not the relative
10793 ;; indentation we might get for the nested structures
10794 ;; further down the langelems list.
10795 (setq indent (elt res 0)
10796 anchor (point-min)) ; A position at column 0.
10798 ;; Got a relative change of the current calculated
10799 ;; indentation.
10800 (setq indent (+ indent res))
10802 ;; Use the anchor position from the first syntactic
10803 ;; element with one.
10804 (unless anchor
10805 (setq anchor (c-langelem-pos (car langelems)))))
10807 (setq langelems (cdr langelems))))
10809 (if anchor
10810 (+ indent (save-excursion
10811 (goto-char anchor)
10812 (current-column)))
10813 indent)))
10816 (cc-provide 'cc-engine)
10818 ;;; cc-engine.el ends here