Backport the :end-of-capability fix
[emacs.git] / lisp / progmodes / cc-engine.el
blobb8051b274d2a68c079f8eda4de5f964d6398edc3
1 ;;; cc-engine.el --- core syntax guessing engine for CC mode -*- coding: utf-8 -*-
3 ;; Copyright (C) 1985, 1987, 1992-2015 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)
151 ;; Make declarations for all the `c-lang-defvar' variables in cc-langs.
153 (defmacro c-declare-lang-variables ()
154 `(progn
155 ,@(apply 'nconc
156 (mapcar (lambda (init)
157 `(,(if (elt init 2)
158 `(defvar ,(car init) nil ,(elt init 2))
159 `(defvar ,(car init) nil))
160 (make-variable-buffer-local ',(car init))))
161 (cdr c-lang-variable-inits)))))
162 (c-declare-lang-variables)
165 ;;; Internal state variables.
167 ;; Internal state of hungry delete key feature
168 (defvar c-hungry-delete-key nil)
169 (make-variable-buffer-local 'c-hungry-delete-key)
171 ;; The electric flag (toggled by `c-toggle-electric-state').
172 ;; If t, electric actions (like automatic reindentation, and (if
173 ;; c-auto-newline is also set) auto newlining) will happen when an electric
174 ;; key like `{' is pressed (or an electric keyword like `else').
175 (defvar c-electric-flag t)
176 (make-variable-buffer-local 'c-electric-flag)
178 ;; Internal state of auto newline feature.
179 (defvar c-auto-newline nil)
180 (make-variable-buffer-local 'c-auto-newline)
182 ;; Included in the mode line to indicate the active submodes.
183 ;; (defvar c-submode-indicators nil)
184 ;; (make-variable-buffer-local 'c-submode-indicators)
186 (defun c-calculate-state (arg prevstate)
187 ;; Calculate the new state of PREVSTATE, t or nil, based on arg. If
188 ;; arg is nil or zero, toggle the state. If arg is negative, turn
189 ;; the state off, and if arg is positive, turn the state on
190 (if (or (not arg)
191 (zerop (setq arg (prefix-numeric-value arg))))
192 (not prevstate)
193 (> arg 0)))
196 ;; Basic handling of preprocessor directives.
198 ;; This is a dynamically bound cache used together with
199 ;; `c-query-macro-start' and `c-query-and-set-macro-start'. It only
200 ;; works as long as point doesn't cross a macro boundary.
201 (defvar c-macro-start 'unknown)
203 (defsubst c-query-and-set-macro-start ()
204 (if (symbolp c-macro-start)
205 (setq c-macro-start (save-excursion
206 (c-save-buffer-state ()
207 (and (c-beginning-of-macro)
208 (point)))))
209 c-macro-start))
211 (defsubst c-query-macro-start ()
212 (if (symbolp c-macro-start)
213 (save-excursion
214 (c-save-buffer-state ()
215 (and (c-beginning-of-macro)
216 (point))))
217 c-macro-start))
219 ;; One element macro cache to cope with continual movement within very large
220 ;; CPP macros.
221 (defvar c-macro-cache nil)
222 (make-variable-buffer-local 'c-macro-cache)
223 ;; Nil or cons of the bounds of the most recent CPP form probed by
224 ;; `c-beginning-of-macro', `c-end-of-macro' or `c-syntactic-end-of-macro'.
225 ;; The cdr will be nil if we know only the start of the CPP form.
226 (defvar c-macro-cache-start-pos nil)
227 (make-variable-buffer-local 'c-macro-cache-start-pos)
228 ;; The starting position from where we determined `c-macro-cache'.
229 (defvar c-macro-cache-syntactic nil)
230 (make-variable-buffer-local 'c-macro-cache-syntactic)
231 ;; non-nil iff `c-macro-cache' has both elements set AND the cdr is at a
232 ;; syntactic end of macro, not merely an apparent one.
234 (defun c-invalidate-macro-cache (beg end)
235 ;; Called from a before-change function. If the change region is before or
236 ;; in the macro characterized by `c-macro-cache' etc., nullify it
237 ;; appropriately. BEG and END are the standard before-change-functions
238 ;; parameters. END isn't used.
239 (cond
240 ((null c-macro-cache))
241 ((< beg (car c-macro-cache))
242 (setq c-macro-cache nil
243 c-macro-cache-start-pos nil
244 c-macro-cache-syntactic nil))
245 ((and (cdr c-macro-cache)
246 (< beg (cdr c-macro-cache)))
247 (setcdr c-macro-cache nil)
248 (setq c-macro-cache-start-pos beg
249 c-macro-cache-syntactic nil))))
251 (defun c-macro-is-genuine-p ()
252 ;; Check that the ostensible CPP construct at point is a real one. In
253 ;; particular, if point is on the first line of a narrowed buffer, make sure
254 ;; that the "#" isn't, say, the second character of a "##" operator. Return
255 ;; t when the macro is real, nil otherwise.
256 (let ((here (point)))
257 (beginning-of-line)
258 (prog1
259 (if (and (eq (point) (point-min))
260 (/= (point) 1))
261 (save-restriction
262 (widen)
263 (beginning-of-line)
264 (and (looking-at c-anchored-cpp-prefix)
265 (eq (match-beginning 1) here)))
267 (goto-char here))))
269 (defun c-beginning-of-macro (&optional lim)
270 "Go to the beginning of a preprocessor directive.
271 Leave point at the beginning of the directive and return t if in one,
272 otherwise return nil and leave point unchanged.
274 Note that this function might do hidden buffer changes. See the
275 comment at the start of cc-engine.el for more info."
276 (let ((here (point)))
277 (when c-opt-cpp-prefix
278 (if (and (car c-macro-cache)
279 (>= (point) (car c-macro-cache))
280 (or (and (cdr c-macro-cache)
281 (<= (point) (cdr c-macro-cache)))
282 (<= (point) c-macro-cache-start-pos)))
283 (unless (< (car c-macro-cache) (or lim (point-min)))
284 (progn (goto-char (max (or lim (point-min)) (car c-macro-cache)))
285 (setq c-macro-cache-start-pos
286 (max c-macro-cache-start-pos here))
288 (setq c-macro-cache nil
289 c-macro-cache-start-pos nil
290 c-macro-cache-syntactic nil)
292 (save-restriction
293 (if lim (narrow-to-region lim (point-max)))
294 (beginning-of-line)
295 (while (eq (char-before (1- (point))) ?\\)
296 (forward-line -1))
297 (back-to-indentation)
298 (if (and (<= (point) here)
299 (looking-at c-opt-cpp-start)
300 (c-macro-is-genuine-p))
301 (progn
302 (setq c-macro-cache (cons (point) nil)
303 c-macro-cache-start-pos here)
305 (goto-char here)
306 nil))))))
308 (defun c-end-of-macro ()
309 "Go to the end of a preprocessor directive.
310 More accurately, move the point to the end of the closest following
311 line that doesn't end with a line continuation backslash - no check is
312 done that the point is inside a cpp directive to begin with.
314 Note that this function might do hidden buffer changes. See the
315 comment at the start of cc-engine.el for more info."
316 (if (and (cdr c-macro-cache)
317 (<= (point) (cdr c-macro-cache))
318 (>= (point) (car c-macro-cache)))
319 (goto-char (cdr c-macro-cache))
320 (unless (and (car c-macro-cache)
321 (<= (point) c-macro-cache-start-pos)
322 (>= (point) (car c-macro-cache)))
323 (setq c-macro-cache nil
324 c-macro-cache-start-pos nil
325 c-macro-cache-syntactic nil))
326 (while (progn
327 (end-of-line)
328 (when (and (eq (char-before) ?\\)
329 (not (eobp)))
330 (forward-char)
331 t)))
332 (when (car c-macro-cache)
333 (setcdr c-macro-cache (point)))))
335 (defun c-syntactic-end-of-macro ()
336 ;; Go to the end of a CPP directive, or a "safe" pos just before.
338 ;; This is normally the end of the next non-escaped line. A "safe"
339 ;; position is one not within a string or comment. (The EOL on a line
340 ;; comment is NOT "safe").
342 ;; This function must only be called from the beginning of a CPP construct.
344 ;; Note that this function might do hidden buffer changes. See the comment
345 ;; at the start of cc-engine.el for more info.
346 (let* ((here (point))
347 (there (progn (c-end-of-macro) (point)))
349 (unless c-macro-cache-syntactic
350 (setq s (parse-partial-sexp here there))
351 (while (and (or (nth 3 s) ; in a string
352 (nth 4 s)) ; in a comment (maybe at end of line comment)
353 (> there here)) ; No infinite loops, please.
354 (setq there (1- (nth 8 s)))
355 (setq s (parse-partial-sexp here there)))
356 (setq c-macro-cache-syntactic (car c-macro-cache)))
357 (point)))
359 (defun c-forward-over-cpp-define-id ()
360 ;; Assuming point is at the "#" that introduces a preprocessor
361 ;; directive, it's moved forward to the end of the identifier which is
362 ;; "#define"d (or whatever c-opt-cpp-macro-define specifies). Non-nil
363 ;; is returned in this case, in all other cases nil is returned and
364 ;; point isn't moved.
366 ;; This function might do hidden buffer changes.
367 (when (and c-opt-cpp-macro-define-id
368 (looking-at c-opt-cpp-macro-define-id))
369 (goto-char (match-end 0))))
371 (defun c-forward-to-cpp-define-body ()
372 ;; Assuming point is at the "#" that introduces a preprocessor
373 ;; directive, it's moved forward to the start of the definition body
374 ;; if it's a "#define" (or whatever c-opt-cpp-macro-define
375 ;; specifies). Non-nil is returned in this case, in all other cases
376 ;; nil is returned and point isn't moved.
378 ;; This function might do hidden buffer changes.
379 (when (and c-opt-cpp-macro-define-start
380 (looking-at c-opt-cpp-macro-define-start)
381 (not (= (match-end 0) (c-point 'eol))))
382 (goto-char (match-end 0))))
385 ;;; Basic utility functions.
387 (defun c-syntactic-content (from to paren-level)
388 ;; Return the given region as a string where all syntactic
389 ;; whitespace is removed or, where necessary, replaced with a single
390 ;; space. If PAREN-LEVEL is given then all parens in the region are
391 ;; collapsed to "()", "[]" etc.
393 ;; This function might do hidden buffer changes.
395 (save-excursion
396 (save-restriction
397 (narrow-to-region from to)
398 (goto-char from)
399 (let* ((parts (list nil)) (tail parts) pos in-paren)
401 (while (re-search-forward c-syntactic-ws-start to t)
402 (goto-char (setq pos (match-beginning 0)))
403 (c-forward-syntactic-ws)
404 (if (= (point) pos)
405 (forward-char)
407 (when paren-level
408 (save-excursion
409 (setq in-paren (= (car (parse-partial-sexp from pos 1)) 1)
410 pos (point))))
412 (if (and (> pos from)
413 (< (point) to)
414 (looking-at "\\w\\|\\s_")
415 (save-excursion
416 (goto-char (1- pos))
417 (looking-at "\\w\\|\\s_")))
418 (progn
419 (setcdr tail (list (buffer-substring-no-properties from pos)
420 " "))
421 (setq tail (cddr tail)))
422 (setcdr tail (list (buffer-substring-no-properties from pos)))
423 (setq tail (cdr tail)))
425 (when in-paren
426 (when (= (car (parse-partial-sexp pos to -1)) -1)
427 (setcdr tail (list (buffer-substring-no-properties
428 (1- (point)) (point))))
429 (setq tail (cdr tail))))
431 (setq from (point))))
433 (setcdr tail (list (buffer-substring-no-properties from to)))
434 (apply 'concat (cdr parts))))))
436 (defun c-shift-line-indentation (shift-amt)
437 ;; Shift the indentation of the current line with the specified
438 ;; amount (positive inwards). The buffer is modified only if
439 ;; SHIFT-AMT isn't equal to zero.
440 (let ((pos (- (point-max) (point)))
441 (c-macro-start c-macro-start)
442 tmp-char-inserted)
443 (if (zerop shift-amt)
445 ;; If we're on an empty line inside a macro, we take the point
446 ;; to be at the current indentation and shift it to the
447 ;; appropriate column. This way we don't treat the extra
448 ;; whitespace out to the line continuation as indentation.
449 (when (and (c-query-and-set-macro-start)
450 (looking-at "[ \t]*\\\\$")
451 (save-excursion
452 (skip-chars-backward " \t")
453 (bolp)))
454 (insert ?x)
455 (backward-char)
456 (setq tmp-char-inserted t))
457 (unwind-protect
458 (let ((col (current-indentation)))
459 (delete-region (c-point 'bol) (c-point 'boi))
460 (beginning-of-line)
461 (indent-to (+ col shift-amt)))
462 (when tmp-char-inserted
463 (delete-char 1))))
464 ;; If initial point was within line's indentation and we're not on
465 ;; a line with a line continuation in a macro, position after the
466 ;; indentation. Else stay at same point in text.
467 (if (and (< (point) (c-point 'boi))
468 (not tmp-char-inserted))
469 (back-to-indentation)
470 (if (> (- (point-max) pos) (point))
471 (goto-char (- (point-max) pos))))))
473 (defsubst c-keyword-sym (keyword)
474 ;; Return non-nil if the string KEYWORD is a known keyword. More
475 ;; precisely, the value is the symbol for the keyword in
476 ;; `c-keywords-obarray'.
477 (intern-soft keyword c-keywords-obarray))
479 (defsubst c-keyword-member (keyword-sym lang-constant)
480 ;; Return non-nil if the symbol KEYWORD-SYM, as returned by
481 ;; `c-keyword-sym', is a member of LANG-CONSTANT, which is the name
482 ;; of a language constant that ends with "-kwds". If KEYWORD-SYM is
483 ;; nil then the result is nil.
484 (get keyword-sym lang-constant))
486 ;; String syntax chars, suitable for skip-syntax-(forward|backward).
487 (defconst c-string-syntax (if (memq 'gen-string-delim c-emacs-features)
488 "\"|"
489 "\""))
491 ;; Regexp matching string limit syntax.
492 (defconst c-string-limit-regexp (if (memq 'gen-string-delim c-emacs-features)
493 "\\s\"\\|\\s|"
494 "\\s\""))
496 ;; Regexp matching WS followed by string limit syntax.
497 (defconst c-ws*-string-limit-regexp
498 (concat "[ \t]*\\(" c-string-limit-regexp "\\)"))
500 ;; Holds formatted error strings for the few cases where parse errors
501 ;; are reported.
502 (defvar c-parsing-error nil)
503 (make-variable-buffer-local 'c-parsing-error)
505 (defun c-echo-parsing-error (&optional quiet)
506 (when (and c-report-syntactic-errors c-parsing-error (not quiet))
507 (c-benign-error "%s" c-parsing-error))
508 c-parsing-error)
510 ;; Faces given to comments and string literals. This is used in some
511 ;; situations to speed up recognition; it isn't mandatory that font
512 ;; locking is in use. This variable is extended with the face in
513 ;; `c-doc-face-name' when fontification is activated in cc-fonts.el.
514 (defvar c-literal-faces
515 (append '(font-lock-comment-face font-lock-string-face)
516 (when (facep 'font-lock-comment-delimiter-face)
517 ;; New in Emacs 22.
518 '(font-lock-comment-delimiter-face))))
520 (defsubst c-put-c-type-property (pos value)
521 ;; Put a c-type property with the given value at POS.
522 (c-put-char-property pos 'c-type value))
524 (defun c-clear-c-type-property (from to value)
525 ;; Remove all occurrences of the c-type property that has the given
526 ;; value in the region between FROM and TO. VALUE is assumed to not
527 ;; be nil.
529 ;; Note: This assumes that c-type is put on single chars only; it's
530 ;; very inefficient if matching properties cover large regions.
531 (save-excursion
532 (goto-char from)
533 (while (progn
534 (when (eq (get-text-property (point) 'c-type) value)
535 (c-clear-char-property (point) 'c-type))
536 (goto-char (next-single-property-change (point) 'c-type nil to))
537 (< (point) to)))))
540 ;; Some debug tools to visualize various special positions. This
541 ;; debug code isn't as portable as the rest of CC Mode.
543 (cc-bytecomp-defun overlays-in)
544 (cc-bytecomp-defun overlay-get)
545 (cc-bytecomp-defun overlay-start)
546 (cc-bytecomp-defun overlay-end)
547 (cc-bytecomp-defun delete-overlay)
548 (cc-bytecomp-defun overlay-put)
549 (cc-bytecomp-defun make-overlay)
551 (defun c-debug-add-face (beg end face)
552 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay)
553 (while overlays
554 (setq overlay (car overlays)
555 overlays (cdr overlays))
556 (when (eq (overlay-get overlay 'face) face)
557 (setq beg (min beg (overlay-start overlay))
558 end (max end (overlay-end overlay)))
559 (delete-overlay overlay)))
560 (overlay-put (make-overlay beg end) 'face face)))
562 (defun c-debug-remove-face (beg end face)
563 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay
564 (ol-beg beg) (ol-end end))
565 (while overlays
566 (setq overlay (car overlays)
567 overlays (cdr overlays))
568 (when (eq (overlay-get overlay 'face) face)
569 (setq ol-beg (min ol-beg (overlay-start overlay))
570 ol-end (max ol-end (overlay-end overlay)))
571 (delete-overlay overlay)))
572 (when (< ol-beg beg)
573 (overlay-put (make-overlay ol-beg beg) 'face face))
574 (when (> ol-end end)
575 (overlay-put (make-overlay end ol-end) 'face face))))
578 ;; `c-beginning-of-statement-1' and accompanying stuff.
580 ;; KLUDGE ALERT: c-maybe-labelp is used to pass information between
581 ;; c-crosses-statement-barrier-p and c-beginning-of-statement-1. A
582 ;; better way should be implemented, but this will at least shut up
583 ;; the byte compiler.
584 (defvar c-maybe-labelp)
586 ;; New awk-compatible version of c-beginning-of-statement-1, ACM 2002/6/22
588 ;; Macros used internally in c-beginning-of-statement-1 for the
589 ;; automaton actions.
590 (defmacro c-bos-push-state ()
591 '(setq stack (cons (cons state saved-pos)
592 stack)))
593 (defmacro c-bos-pop-state (&optional do-if-done)
594 `(if (setq state (car (car stack))
595 saved-pos (cdr (car stack))
596 stack (cdr stack))
598 ,do-if-done
599 (throw 'loop nil)))
600 (defmacro c-bos-pop-state-and-retry ()
601 '(throw 'loop (setq state (car (car stack))
602 saved-pos (cdr (car stack))
603 ;; Throw nil if stack is empty, else throw non-nil.
604 stack (cdr stack))))
605 (defmacro c-bos-save-pos ()
606 '(setq saved-pos (vector pos tok ptok pptok)))
607 (defmacro c-bos-restore-pos ()
608 '(unless (eq (elt saved-pos 0) start)
609 (setq pos (elt saved-pos 0)
610 tok (elt saved-pos 1)
611 ptok (elt saved-pos 2)
612 pptok (elt saved-pos 3))
613 (goto-char pos)
614 (setq sym nil)))
615 (defmacro c-bos-save-error-info (missing got)
616 `(setq saved-pos (vector pos ,missing ,got)))
617 (defmacro c-bos-report-error ()
618 '(unless noerror
619 (setq c-parsing-error
620 (format "No matching `%s' found for `%s' on line %d"
621 (elt saved-pos 1)
622 (elt saved-pos 2)
623 (1+ (count-lines (point-min)
624 (c-point 'bol (elt saved-pos 0))))))))
626 (defun c-beginning-of-statement-1 (&optional lim ignore-labels
627 noerror comma-delim)
628 "Move to the start of the current statement or declaration, or to
629 the previous one if already at the beginning of one. Only
630 statements/declarations on the same level are considered, i.e. don't
631 move into or out of sexps (not even normal expression parentheses).
633 If point is already at the earliest statement within braces or parens,
634 this function doesn't move back into any whitespace preceding it; it
635 returns 'same in this case.
637 Stop at statement continuation tokens like \"else\", \"catch\",
638 \"finally\" and the \"while\" in \"do ... while\" if the start point
639 is within the continuation. If starting at such a token, move to the
640 corresponding statement start. If at the beginning of a statement,
641 move to the closest containing statement if there is any. This might
642 also stop at a continuation clause.
644 Labels are treated as part of the following statements if
645 IGNORE-LABELS is non-nil. (FIXME: Doesn't work if we stop at a known
646 statement start keyword.) Otherwise, each label is treated as a
647 separate statement.
649 Macros are ignored \(i.e. skipped over) unless point is within one, in
650 which case the content of the macro is treated as normal code. Aside
651 from any normal statement starts found in it, stop at the first token
652 of the content in the macro, i.e. the expression of an \"#if\" or the
653 start of the definition in a \"#define\". Also stop at start of
654 macros before leaving them.
656 Return:
657 'label if stopped at a label or \"case...:\" or \"default:\";
658 'same if stopped at the beginning of the current statement;
659 'up if stepped to a containing statement;
660 'previous if stepped to a preceding statement;
661 'beginning if stepped from a statement continuation clause to
662 its start clause; or
663 'macro if stepped to a macro start.
664 Note that 'same and not 'label is returned if stopped at the same
665 label without crossing the colon character.
667 LIM may be given to limit the search. If the search hits the limit,
668 point will be left at the closest following token, or at the start
669 position if that is less ('same is returned in this case).
671 NOERROR turns off error logging to `c-parsing-error'.
673 Normally only ';' and virtual semicolons are considered to delimit
674 statements, but if COMMA-DELIM is non-nil then ',' is treated
675 as a delimiter too.
677 Note that this function might do hidden buffer changes. See the
678 comment at the start of cc-engine.el for more info."
680 ;; The bulk of this function is a pushdown automaton that looks at statement
681 ;; boundaries and the tokens (such as "while") in c-opt-block-stmt-key. Its
682 ;; purpose is to keep track of nested statements, ensuring that such
683 ;; statements are skipped over in their entirety (somewhat akin to what C-M-p
684 ;; does with nested braces/brackets/parentheses).
686 ;; Note: The position of a boundary is the following token.
688 ;; Beginning with the current token (the one following point), move back one
689 ;; sexp at a time (where a sexp is, more or less, either a token or the
690 ;; entire contents of a brace/bracket/paren pair). Each time a statement
691 ;; boundary is crossed or a "while"-like token is found, update the state of
692 ;; the PDA. Stop at the beginning of a statement when the stack (holding
693 ;; nested statement info) is empty and the position has been moved.
695 ;; The following variables constitute the PDA:
697 ;; sym: This is either the "while"-like token (e.g. 'for) we've just
698 ;; scanned back over, 'boundary if we've just gone back over a
699 ;; statement boundary, or nil otherwise.
700 ;; state: takes one of the values (nil else else-boundary while
701 ;; while-boundary catch catch-boundary).
702 ;; nil means "no "while"-like token yet scanned".
703 ;; 'else, for example, means "just gone back over an else".
704 ;; 'else-boundary means "just gone back over a statement boundary
705 ;; immediately after having gone back over an else".
706 ;; saved-pos: A vector of either saved positions (tok ptok pptok, etc.) or
707 ;; of error reporting information.
708 ;; stack: The stack onto which the PDA pushes its state. Each entry
709 ;; consists of a saved value of state and saved-pos. An entry is
710 ;; pushed when we move back over a "continuation" token (e.g. else)
711 ;; and popped when we encounter the corresponding opening token
712 ;; (e.g. if).
715 ;; The following diagram briefly outlines the PDA.
717 ;; Common state:
718 ;; "else": Push state, goto state `else'.
719 ;; "while": Push state, goto state `while'.
720 ;; "catch" or "finally": Push state, goto state `catch'.
721 ;; boundary: Pop state.
722 ;; other: Do nothing special.
724 ;; State `else':
725 ;; boundary: Goto state `else-boundary'.
726 ;; other: Error, pop state, retry token.
728 ;; State `else-boundary':
729 ;; "if": Pop state.
730 ;; boundary: Error, pop state.
731 ;; other: See common state.
733 ;; State `while':
734 ;; boundary: Save position, goto state `while-boundary'.
735 ;; other: Pop state, retry token.
737 ;; State `while-boundary':
738 ;; "do": Pop state.
739 ;; boundary: Restore position if it's not at start, pop state. [*see below]
740 ;; other: See common state.
742 ;; State `catch':
743 ;; boundary: Goto state `catch-boundary'.
744 ;; other: Error, pop state, retry token.
746 ;; State `catch-boundary':
747 ;; "try": Pop state.
748 ;; "catch": Goto state `catch'.
749 ;; boundary: Error, pop state.
750 ;; other: See common state.
752 ;; [*] In the `while-boundary' state, we had pushed a 'while state, and were
753 ;; searching for a "do" which would have opened a do-while. If we didn't
754 ;; find it, we discard the analysis done since the "while", go back to this
755 ;; token in the buffer and restart the scanning there, this time WITHOUT
756 ;; pushing the 'while state onto the stack.
758 ;; In addition to the above there is some special handling of labels
759 ;; and macros.
761 (let ((case-fold-search nil)
762 (start (point))
763 macro-start
764 (delims (if comma-delim '(?\; ?,) '(?\;)))
765 (c-stmt-delim-chars (if comma-delim
766 c-stmt-delim-chars-with-comma
767 c-stmt-delim-chars))
768 c-in-literal-cache c-maybe-labelp after-case:-pos saved
769 ;; Current position.
771 ;; Position of last stmt boundary character (e.g. ;).
772 boundary-pos
773 ;; The position of the last sexp or bound that follows the
774 ;; first found colon, i.e. the start of the nonlabel part of
775 ;; the statement. It's `start' if a colon is found just after
776 ;; the start.
777 after-labels-pos
778 ;; Like `after-labels-pos', but the first such position inside
779 ;; a label, i.e. the start of the last label before the start
780 ;; of the nonlabel part of the statement.
781 last-label-pos
782 ;; The last position where a label is possible provided the
783 ;; statement started there. It's nil as long as no invalid
784 ;; label content has been found (according to
785 ;; `c-nonlabel-token-key'). It's `start' if no valid label
786 ;; content was found in the label. Note that we might still
787 ;; regard it a label if it starts with `c-label-kwds'.
788 label-good-pos
789 ;; Putative positions of the components of a bitfield declaration,
790 ;; e.g. "int foo : NUM_FOO_BITS ;"
791 bitfield-type-pos bitfield-id-pos bitfield-size-pos
792 ;; Symbol just scanned back over (e.g. 'while or 'boundary).
793 ;; See above.
795 ;; Current state in the automaton. See above.
796 state
797 ;; Current saved positions. See above.
798 saved-pos
799 ;; Stack of conses (state . saved-pos).
800 stack
801 ;; Regexp which matches "for", "if", etc.
802 (cond-key (or c-opt-block-stmt-key
803 "\\<\\>")) ; Matches nothing.
804 ;; Return value.
805 (ret 'same)
806 ;; Positions of the last three sexps or bounds we've stopped at.
807 tok ptok pptok)
809 (save-restriction
810 (if lim (narrow-to-region lim (point-max)))
812 (if (save-excursion
813 (and (c-beginning-of-macro)
814 (/= (point) start)))
815 (setq macro-start (point)))
817 ;; Try to skip back over unary operator characters, to register
818 ;; that we've moved.
819 (while (progn
820 (setq pos (point))
821 (c-backward-syntactic-ws)
822 ;; Protect post-++/-- operators just before a virtual semicolon.
823 (and (not (c-at-vsemi-p))
824 (/= (skip-chars-backward "-+!*&~@`#") 0))))
826 ;; Skip back over any semicolon here. If it was a bare semicolon, we're
827 ;; done. Later on we ignore the boundaries for statements that don't
828 ;; contain any sexp. The only thing that is affected is that the error
829 ;; checking is a little less strict, and we really don't bother.
830 (if (and (memq (char-before) delims)
831 (progn (forward-char -1)
832 (setq saved (point))
833 (c-backward-syntactic-ws)
834 (or (memq (char-before) delims)
835 (memq (char-before) '(?: nil))
836 (eq (char-syntax (char-before)) ?\()
837 (c-at-vsemi-p))))
838 (setq ret 'previous
839 pos saved)
841 ;; Begin at start and not pos to detect macros if we stand
842 ;; directly after the #.
843 (goto-char start)
844 (if (looking-at "\\<\\|\\W")
845 ;; Record this as the first token if not starting inside it.
846 (setq tok start))
849 ;; The following while loop goes back one sexp (balanced parens,
850 ;; etc. with contents, or symbol or suchlike) each iteration. This
851 ;; movement is accomplished with a call to c-backward-sexp approx 170
852 ;; lines below.
854 ;; The loop is exited only by throwing nil to the (catch 'loop ...):
855 ;; 1. On reaching the start of a macro;
856 ;; 2. On having passed a stmt boundary with the PDA stack empty;
857 ;; 3. On reaching the start of an Objective C method def;
858 ;; 4. From macro `c-bos-pop-state'; when the stack is empty;
859 ;; 5. From macro `c-bos-pop-state-and-retry' when the stack is empty.
860 (while
861 (catch 'loop ;; Throw nil to break, non-nil to continue.
862 (cond
863 ;; Are we in a macro, just after the opening #?
864 ((save-excursion
865 (and macro-start ; Always NIL for AWK.
866 (progn (skip-chars-backward " \t")
867 (eq (char-before) ?#))
868 (progn (setq saved (1- (point)))
869 (beginning-of-line)
870 (not (eq (char-before (1- (point))) ?\\)))
871 (looking-at c-opt-cpp-start)
872 (progn (skip-chars-forward " \t")
873 (eq (point) saved))))
874 (goto-char saved)
875 (if (and (c-forward-to-cpp-define-body)
876 (progn (c-forward-syntactic-ws start)
877 (< (point) start)))
878 ;; Stop at the first token in the content of the macro.
879 (setq pos (point)
880 ignore-labels t) ; Avoid the label check on exit.
881 (setq pos saved
882 ret 'macro
883 ignore-labels t))
884 (throw 'loop nil)) ; 1. Start of macro.
886 ;; Do a round through the automaton if we've just passed a
887 ;; statement boundary or passed a "while"-like token.
888 ((or sym
889 (and (looking-at cond-key)
890 (setq sym (intern (match-string 1)))))
892 (when (and (< pos start) (null stack))
893 (throw 'loop nil)) ; 2. Statement boundary.
895 ;; The PDA state handling.
897 ;; Refer to the description of the PDA in the opening
898 ;; comments. In the following OR form, the first leaf
899 ;; attempts to handles one of the specific actions detailed
900 ;; (e.g., finding token "if" whilst in state `else-boundary').
901 ;; We drop through to the second leaf (which handles common
902 ;; state) if no specific handler is found in the first cond.
903 ;; If a parsing error is detected (e.g. an "else" with no
904 ;; preceding "if"), we throw to the enclosing catch.
906 ;; Note that the (eq state 'else) means
907 ;; "we've just passed an else", NOT "we're looking for an
908 ;; else".
909 (or (cond
910 ((eq state 'else)
911 (if (eq sym 'boundary)
912 (setq state 'else-boundary)
913 (c-bos-report-error)
914 (c-bos-pop-state-and-retry)))
916 ((eq state 'else-boundary)
917 (cond ((eq sym 'if)
918 (c-bos-pop-state (setq ret 'beginning)))
919 ((eq sym 'boundary)
920 (c-bos-report-error)
921 (c-bos-pop-state))))
923 ((eq state 'while)
924 (if (and (eq sym 'boundary)
925 ;; Since this can cause backtracking we do a
926 ;; little more careful analysis to avoid it:
927 ;; If there's a label in front of the while
928 ;; it can't be part of a do-while.
929 (not after-labels-pos))
930 (progn (c-bos-save-pos)
931 (setq state 'while-boundary))
932 (c-bos-pop-state-and-retry))) ; Can't be a do-while
934 ((eq state 'while-boundary)
935 (cond ((eq sym 'do)
936 (c-bos-pop-state (setq ret 'beginning)))
937 ((eq sym 'boundary) ; isn't a do-while
938 (c-bos-restore-pos) ; the position of the while
939 (c-bos-pop-state)))) ; no longer searching for do.
941 ((eq state 'catch)
942 (if (eq sym 'boundary)
943 (setq state 'catch-boundary)
944 (c-bos-report-error)
945 (c-bos-pop-state-and-retry)))
947 ((eq state 'catch-boundary)
948 (cond
949 ((eq sym 'try)
950 (c-bos-pop-state (setq ret 'beginning)))
951 ((eq sym 'catch)
952 (setq state 'catch))
953 ((eq sym 'boundary)
954 (c-bos-report-error)
955 (c-bos-pop-state)))))
957 ;; This is state common. We get here when the previous
958 ;; cond statement found no particular state handler.
959 (cond ((eq sym 'boundary)
960 ;; If we have a boundary at the start
961 ;; position we push a frame to go to the
962 ;; previous statement.
963 (if (>= pos start)
964 (c-bos-push-state)
965 (c-bos-pop-state)))
966 ((eq sym 'else)
967 (c-bos-push-state)
968 (c-bos-save-error-info 'if 'else)
969 (setq state 'else))
970 ((eq sym 'while)
971 ;; Is this a real while, or a do-while?
972 ;; The next `when' triggers unless we are SURE that
973 ;; the `while' is not the tail end of a `do-while'.
974 (when (or (not pptok)
975 (memq (char-after pptok) delims)
976 ;; The following kludge is to prevent
977 ;; infinite recursion when called from
978 ;; c-awk-after-if-for-while-condition-p,
979 ;; or the like.
980 (and (eq (point) start)
981 (c-vsemi-status-unknown-p))
982 (c-at-vsemi-p pptok))
983 ;; Since this can cause backtracking we do a
984 ;; little more careful analysis to avoid it: If
985 ;; the while isn't followed by a (possibly
986 ;; virtual) semicolon it can't be a do-while.
987 (c-bos-push-state)
988 (setq state 'while)))
989 ((memq sym '(catch finally))
990 (c-bos-push-state)
991 (c-bos-save-error-info 'try sym)
992 (setq state 'catch))))
994 (when c-maybe-labelp
995 ;; We're either past a statement boundary or at the
996 ;; start of a statement, so throw away any label data
997 ;; for the previous one.
998 (setq after-labels-pos nil
999 last-label-pos nil
1000 c-maybe-labelp nil))))
1002 ;; Step to the previous sexp, but not if we crossed a
1003 ;; boundary, since that doesn't consume an sexp.
1004 (if (eq sym 'boundary)
1005 (setq ret 'previous)
1007 ;; HERE IS THE SINGLE PLACE INSIDE THE PDA LOOP WHERE WE MOVE
1008 ;; BACKWARDS THROUGH THE SOURCE.
1010 (c-backward-syntactic-ws)
1011 (let ((before-sws-pos (point))
1012 ;; The end position of the area to search for statement
1013 ;; barriers in this round.
1014 (maybe-after-boundary-pos pos))
1016 ;; Go back over exactly one logical sexp, taking proper
1017 ;; account of macros and escaped EOLs.
1018 (while
1019 (progn
1020 (unless (c-safe (c-backward-sexp) t)
1021 ;; Give up if we hit an unbalanced block. Since the
1022 ;; stack won't be empty the code below will report a
1023 ;; suitable error.
1024 (throw 'loop nil))
1025 (cond
1026 ;; Have we moved into a macro?
1027 ((and (not macro-start)
1028 (c-beginning-of-macro))
1029 ;; Have we crossed a statement boundary? If not,
1030 ;; keep going back until we find one or a "real" sexp.
1031 (and
1032 (save-excursion
1033 (c-end-of-macro)
1034 (not (c-crosses-statement-barrier-p
1035 (point) maybe-after-boundary-pos)))
1036 (setq maybe-after-boundary-pos (point))))
1037 ;; Have we just gone back over an escaped NL? This
1038 ;; doesn't count as a sexp.
1039 ((looking-at "\\\\$")))))
1041 ;; Have we crossed a statement boundary?
1042 (setq boundary-pos
1043 (cond
1044 ;; Are we at a macro beginning?
1045 ((and (not macro-start)
1046 c-opt-cpp-prefix
1047 (looking-at c-opt-cpp-prefix))
1048 (save-excursion
1049 (c-end-of-macro)
1050 (c-crosses-statement-barrier-p
1051 (point) maybe-after-boundary-pos)))
1052 ;; Just gone back over a brace block?
1053 ((and
1054 (eq (char-after) ?{)
1055 (not (c-looking-at-inexpr-block lim nil t)))
1056 (save-excursion
1057 (c-forward-sexp) (point)))
1058 ;; Just gone back over some paren block?
1059 ((looking-at "\\s\(")
1060 (save-excursion
1061 (goto-char (1+ (c-down-list-backward
1062 before-sws-pos)))
1063 (c-crosses-statement-barrier-p
1064 (point) maybe-after-boundary-pos)))
1065 ;; Just gone back over an ordinary symbol of some sort?
1066 (t (c-crosses-statement-barrier-p
1067 (point) maybe-after-boundary-pos))))
1069 (when boundary-pos
1070 (setq pptok ptok
1071 ptok tok
1072 tok boundary-pos
1073 sym 'boundary)
1074 ;; Like a C "continue". Analyze the next sexp.
1075 (throw 'loop t))))
1077 ;; ObjC method def?
1078 (when (and c-opt-method-key
1079 (setq saved (c-in-method-def-p)))
1080 (setq pos saved
1081 ignore-labels t) ; Avoid the label check on exit.
1082 (throw 'loop nil)) ; 3. ObjC method def.
1084 ;; Might we have a bitfield declaration, "<type> <id> : <size>"?
1085 (if c-has-bitfields
1086 (cond
1087 ;; The : <size> and <id> fields?
1088 ((and (numberp c-maybe-labelp)
1089 (not bitfield-size-pos)
1090 (save-excursion
1091 (goto-char (or tok start))
1092 (not (looking-at c-keywords-regexp)))
1093 (not (looking-at c-keywords-regexp))
1094 (not (c-punctuation-in (point) c-maybe-labelp)))
1095 (setq bitfield-size-pos (or tok start)
1096 bitfield-id-pos (point)))
1097 ;; The <type> field?
1098 ((and bitfield-id-pos
1099 (not bitfield-type-pos))
1100 (if (and (looking-at c-symbol-key) ; Can only be an integer type. :-)
1101 (not (looking-at c-not-primitive-type-keywords-regexp))
1102 (not (c-punctuation-in (point) tok)))
1103 (setq bitfield-type-pos (point))
1104 (setq bitfield-size-pos nil
1105 bitfield-id-pos nil)))))
1107 ;; Handle labels.
1108 (unless (eq ignore-labels t)
1109 (when (numberp c-maybe-labelp)
1110 ;; `c-crosses-statement-barrier-p' has found a colon, so we
1111 ;; might be in a label now. Have we got a real label
1112 ;; (including a case label) or something like C++'s "public:"?
1113 ;; A case label might use an expression rather than a token.
1114 (setq after-case:-pos (or tok start))
1115 (if (or (looking-at c-nonlabel-token-key) ; e.g. "while" or "'a'"
1116 ;; Catch C++'s inheritance construct "class foo : bar".
1117 (save-excursion
1118 (and
1119 (c-safe (c-backward-sexp) t)
1120 (looking-at c-nonlabel-token-2-key))))
1121 (setq c-maybe-labelp nil)
1122 (if after-labels-pos ; Have we already encountered a label?
1123 (if (not last-label-pos)
1124 (setq last-label-pos (or tok start)))
1125 (setq after-labels-pos (or tok start)))
1126 (setq c-maybe-labelp t
1127 label-good-pos nil))) ; bogus "label"
1129 (when (and (not label-good-pos) ; i.e. no invalid "label"'s yet
1130 ; been found.
1131 (looking-at c-nonlabel-token-key)) ; e.g. "while :"
1132 ;; We're in a potential label and it's the first
1133 ;; time we've found something that isn't allowed in
1134 ;; one.
1135 (setq label-good-pos (or tok start))))
1137 ;; We've moved back by a sexp, so update the token positions.
1138 (setq sym nil
1139 pptok ptok
1140 ptok tok
1141 tok (point)
1142 pos tok) ; always non-nil
1143 ) ; end of (catch loop ....)
1144 ) ; end of sexp-at-a-time (while ....)
1146 ;; If the stack isn't empty there might be errors to report.
1147 (while stack
1148 (if (and (vectorp saved-pos) (eq (length saved-pos) 3))
1149 (c-bos-report-error))
1150 (setq saved-pos (cdr (car stack))
1151 stack (cdr stack)))
1153 (when (and (eq ret 'same)
1154 (not (memq sym '(boundary ignore nil))))
1155 ;; Need to investigate closer whether we've crossed
1156 ;; between a substatement and its containing statement.
1157 (if (setq saved
1158 (cond ((and (looking-at c-block-stmt-1-2-key)
1159 (eq (char-after ptok) ?\())
1160 pptok)
1161 ((looking-at c-block-stmt-1-key)
1162 ptok)
1163 (t pptok)))
1164 (cond ((> start saved) (setq pos saved))
1165 ((= start saved) (setq ret 'up)))))
1167 (when (and (not ignore-labels)
1168 (eq c-maybe-labelp t)
1169 (not (eq ret 'beginning))
1170 after-labels-pos
1171 (not bitfield-type-pos) ; Bitfields take precedence over labels.
1172 (or (not label-good-pos)
1173 (<= label-good-pos pos)
1174 (progn
1175 (goto-char (if (and last-label-pos
1176 (< last-label-pos start))
1177 last-label-pos
1178 pos))
1179 (looking-at c-label-kwds-regexp))))
1180 ;; We're in a label. Maybe we should step to the statement
1181 ;; after it.
1182 (if (< after-labels-pos start)
1183 (setq pos after-labels-pos)
1184 (setq ret 'label)
1185 (if (and last-label-pos (< last-label-pos start))
1186 ;; Might have jumped over several labels. Go to the last one.
1187 (setq pos last-label-pos)))))
1189 ;; Have we got "case <expression>:"?
1190 (goto-char pos)
1191 (when (and after-case:-pos
1192 (not (eq ret 'beginning))
1193 (looking-at c-case-kwds-regexp))
1194 (if (< after-case:-pos start)
1195 (setq pos after-case:-pos))
1196 (if (eq ret 'same)
1197 (setq ret 'label)))
1199 ;; Skip over the unary operators that can start the statement.
1200 (while (progn
1201 (c-backward-syntactic-ws)
1202 ;; protect AWK post-inc/decrement operators, etc.
1203 (and (not (c-at-vsemi-p (point)))
1204 (/= (skip-chars-backward "-+!*&~@`#") 0)))
1205 (setq pos (point)))
1206 (goto-char pos)
1207 ret)))
1209 (defun c-punctuation-in (from to)
1210 "Return non-nil if there is a non-comment non-macro punctuation character
1211 between FROM and TO. FROM must not be in a string or comment. The returned
1212 value is the position of the first such character."
1213 (save-excursion
1214 (goto-char from)
1215 (let ((pos (point)))
1216 (while (progn (skip-chars-forward c-symbol-chars to)
1217 (c-forward-syntactic-ws to)
1218 (> (point) pos))
1219 (setq pos (point))))
1220 (and (< (point) to) (point))))
1222 (defun c-crosses-statement-barrier-p (from to)
1223 "Return non-nil if buffer positions FROM to TO cross one or more
1224 statement or declaration boundaries. The returned value is actually
1225 the position of the earliest boundary char. FROM must not be within
1226 a string or comment.
1228 The variable `c-maybe-labelp' is set to the position of the first `:' that
1229 might start a label (i.e. not part of `::' and not preceded by `?'). If a
1230 single `?' is found, then `c-maybe-labelp' is cleared.
1232 For AWK, a statement which is terminated by an EOL (not a \; or a }) is
1233 regarded as having a \"virtual semicolon\" immediately after the last token on
1234 the line. If this virtual semicolon is _at_ from, the function recognizes it.
1236 Note that this function might do hidden buffer changes. See the
1237 comment at the start of cc-engine.el for more info."
1238 (let* ((skip-chars
1239 ;; If the current language has CPP macros, insert # into skip-chars.
1240 (if c-opt-cpp-symbol
1241 (concat (substring c-stmt-delim-chars 0 1) ; "^"
1242 c-opt-cpp-symbol ; usually "#"
1243 (substring c-stmt-delim-chars 1)) ; e.g. ";{}?:"
1244 c-stmt-delim-chars))
1245 (non-skip-list
1246 (append (substring skip-chars 1) nil)) ; e.g. (?# ?\; ?{ ?} ?? ?:)
1247 lit-range vsemi-pos)
1248 (save-restriction
1249 (widen)
1250 (save-excursion
1251 (catch 'done
1252 (goto-char from)
1253 (while (progn (skip-chars-forward
1254 skip-chars
1255 (min to (c-point 'bonl)))
1256 (< (point) to))
1257 (cond
1258 ;; Virtual semicolon?
1259 ((and (bolp)
1260 (save-excursion
1261 (progn
1262 (if (setq lit-range (c-literal-limits from)) ; Have we landed in a string/comment?
1263 (goto-char (car lit-range)))
1264 (c-backward-syntactic-ws) ; ? put a limit here, maybe?
1265 (setq vsemi-pos (point))
1266 (c-at-vsemi-p))))
1267 (throw 'done vsemi-pos))
1268 ;; In a string/comment?
1269 ((setq lit-range (c-literal-limits from))
1270 (goto-char (cdr lit-range)))
1271 ((eq (char-after) ?:)
1272 (forward-char)
1273 (if (and (eq (char-after) ?:)
1274 (< (point) to))
1275 ;; Ignore scope operators.
1276 (forward-char)
1277 (setq c-maybe-labelp (1- (point)))))
1278 ((eq (char-after) ??)
1279 ;; A question mark. Can't be a label, so stop
1280 ;; looking for more : and ?.
1281 (setq c-maybe-labelp nil
1282 skip-chars (substring c-stmt-delim-chars 0 -2)))
1283 ;; At a CPP construct or a "#" or "##" operator?
1284 ((and c-opt-cpp-symbol (looking-at c-opt-cpp-symbol))
1285 (if (save-excursion
1286 (skip-chars-backward " \t")
1287 (and (bolp)
1288 (or (bobp)
1289 (not (eq (char-before (1- (point))) ?\\)))))
1290 (c-end-of-macro)
1291 (skip-chars-forward c-opt-cpp-symbol)))
1292 ((memq (char-after) non-skip-list)
1293 (throw 'done (point)))))
1294 ;; In trailing space after an as yet undetected virtual semicolon?
1295 (c-backward-syntactic-ws from)
1296 (when (and (bolp) (not (bobp))) ; Can happen in AWK Mode with an
1297 ; unterminated string/regexp.
1298 (backward-char))
1299 (if (and (< (point) to)
1300 (c-at-vsemi-p))
1301 (point)
1302 nil))))))
1304 (defun c-at-statement-start-p ()
1305 "Return non-nil if the point is at the first token in a statement
1306 or somewhere in the syntactic whitespace before it.
1308 A \"statement\" here is not restricted to those inside code blocks.
1309 Any kind of declaration-like construct that occur outside function
1310 bodies is also considered a \"statement\".
1312 Note that this function might do hidden buffer changes. See the
1313 comment at the start of cc-engine.el for more info."
1315 (save-excursion
1316 (let ((end (point))
1317 c-maybe-labelp)
1318 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1319 (or (bobp)
1320 (eq (char-before) ?})
1321 (and (eq (char-before) ?{)
1322 (not (and c-special-brace-lists
1323 (progn (backward-char)
1324 (c-looking-at-special-brace-list)))))
1325 (c-crosses-statement-barrier-p (point) end)))))
1327 (defun c-at-expression-start-p ()
1328 "Return non-nil if the point is at the first token in an expression or
1329 statement, or somewhere in the syntactic whitespace before it.
1331 An \"expression\" here is a bit different from the normal language
1332 grammar sense: It's any sequence of expression tokens except commas,
1333 unless they are enclosed inside parentheses of some kind. Also, an
1334 expression never continues past an enclosing parenthesis, but it might
1335 contain parenthesis pairs of any sort except braces.
1337 Since expressions never cross statement boundaries, this function also
1338 recognizes statement beginnings, just like `c-at-statement-start-p'.
1340 Note that this function might do hidden buffer changes. See the
1341 comment at the start of cc-engine.el for more info."
1343 (save-excursion
1344 (let ((end (point))
1345 (c-stmt-delim-chars c-stmt-delim-chars-with-comma)
1346 c-maybe-labelp)
1347 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1348 (or (bobp)
1349 (memq (char-before) '(?{ ?}))
1350 (save-excursion (backward-char)
1351 (looking-at "\\s("))
1352 (c-crosses-statement-barrier-p (point) end)))))
1355 ;; A set of functions that covers various idiosyncrasies in
1356 ;; implementations of `forward-comment'.
1358 ;; Note: Some emacsen considers incorrectly that any line comment
1359 ;; ending with a backslash continues to the next line. I can't think
1360 ;; of any way to work around that in a reliable way without changing
1361 ;; the buffer, though. Suggestions welcome. ;) (No, temporarily
1362 ;; changing the syntax for backslash doesn't work since we must treat
1363 ;; escapes in string literals correctly.)
1365 (defun c-forward-single-comment ()
1366 "Move forward past whitespace and the closest following comment, if any.
1367 Return t if a comment was found, nil otherwise. In either case, the
1368 point is moved past the following whitespace. Line continuations,
1369 i.e. a backslashes followed by line breaks, are treated as whitespace.
1370 The line breaks that end line comments are considered to be the
1371 comment enders, so the point will be put on the beginning of the next
1372 line if it moved past a line comment.
1374 This function does not do any hidden buffer changes."
1376 (let ((start (point)))
1377 (when (looking-at "\\([ \t\n\r\f\v]\\|\\\\[\n\r]\\)+")
1378 (goto-char (match-end 0)))
1380 (when (forward-comment 1)
1381 (if (eobp)
1382 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1383 ;; forwards at eob.
1386 ;; Emacs includes the ending newline in a b-style (c++)
1387 ;; comment, but XEmacs doesn't. We depend on the Emacs
1388 ;; behavior (which also is symmetric).
1389 (if (and (eolp) (elt (parse-partial-sexp start (point)) 7))
1390 (condition-case nil (forward-char 1)))
1392 t))))
1394 (defsubst c-forward-comments ()
1395 "Move forward past all following whitespace and comments.
1396 Line continuations, i.e. a backslashes followed by line breaks, are
1397 treated as whitespace.
1399 Note that this function might do hidden buffer changes. See the
1400 comment at the start of cc-engine.el for more info."
1402 (while (or
1403 ;; If forward-comment in at least XEmacs 21 is given a large
1404 ;; positive value, it'll loop all the way through if it hits
1405 ;; eob.
1406 (and (forward-comment 5)
1407 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1408 ;; forwards at eob.
1409 (not (eobp)))
1411 (when (looking-at "\\\\[\n\r]")
1412 (forward-char 2)
1413 t))))
1415 (defun c-backward-single-comment ()
1416 "Move backward past whitespace and the closest preceding comment, if any.
1417 Return t if a comment was found, nil otherwise. In either case, the
1418 point is moved past the preceding whitespace. Line continuations,
1419 i.e. a backslashes followed by line breaks, are treated as whitespace.
1420 The line breaks that end line comments are considered to be the
1421 comment enders, so the point cannot be at the end of the same line to
1422 move over a line comment.
1424 This function does not do any hidden buffer changes."
1426 (let ((start (point)))
1427 ;; When we got newline terminated comments, forward-comment in all
1428 ;; supported emacsen so far will stop at eol of each line not
1429 ;; ending with a comment when moving backwards. This corrects for
1430 ;; that, and at the same time handles line continuations.
1431 (while (progn
1432 (skip-chars-backward " \t\n\r\f\v")
1433 (and (looking-at "[\n\r]")
1434 (eq (char-before) ?\\)))
1435 (backward-char))
1437 (if (bobp)
1438 ;; Some emacsen (e.g. Emacs 19.34) return t when moving
1439 ;; backwards at bob.
1442 ;; Leave point after the closest following newline if we've
1443 ;; backed up over any above, since forward-comment won't move
1444 ;; backward over a line comment if point is at the end of the
1445 ;; same line.
1446 (re-search-forward "\\=\\s *[\n\r]" start t)
1448 (if (if (let (open-paren-in-column-0-is-defun-start) (forward-comment -1))
1449 (if (eolp)
1450 ;; If forward-comment above succeeded and we're at eol
1451 ;; then the newline we moved over above didn't end a
1452 ;; line comment, so we give it another go.
1453 (let (open-paren-in-column-0-is-defun-start)
1454 (forward-comment -1))
1457 ;; Emacs <= 20 and XEmacs move back over the closer of a
1458 ;; block comment that lacks an opener.
1459 (if (looking-at "\\*/")
1460 (progn (forward-char 2) nil)
1461 t)))))
1463 (defsubst c-backward-comments ()
1464 "Move backward past all preceding whitespace and comments.
1465 Line continuations, i.e. a backslashes followed by line breaks, are
1466 treated as whitespace. The line breaks that end line comments are
1467 considered to be the comment enders, so the point cannot be at the end
1468 of the same line to move over a line comment. Unlike
1469 c-backward-syntactic-ws, this function doesn't move back over
1470 preprocessor directives.
1472 Note that this function might do hidden buffer changes. See the
1473 comment at the start of cc-engine.el for more info."
1475 (let ((start (point)))
1476 (while (and
1477 ;; `forward-comment' in some emacsen (e.g. XEmacs 21.4)
1478 ;; return t when moving backwards at bob.
1479 (not (bobp))
1481 (if (let (open-paren-in-column-0-is-defun-start moved-comment)
1482 (while
1483 (and (not (setq moved-comment (forward-comment -1)))
1484 ;; Cope specifically with ^M^J here -
1485 ;; forward-comment sometimes gets stuck after ^Ms,
1486 ;; sometimes after ^M^J.
1488 (when (eq (char-before) ?\r)
1489 (backward-char)
1491 (when (and (eq (char-before) ?\n)
1492 (eq (char-before (1- (point))) ?\r))
1493 (backward-char 2)
1494 t))))
1495 moved-comment)
1496 (if (looking-at "\\*/")
1497 ;; Emacs <= 20 and XEmacs move back over the
1498 ;; closer of a block comment that lacks an opener.
1499 (progn (forward-char 2) nil)
1502 ;; XEmacs treats line continuations as whitespace but
1503 ;; only in the backward direction, which seems a bit
1504 ;; odd. Anyway, this is necessary for Emacs.
1505 (when (and (looking-at "[\n\r]")
1506 (eq (char-before) ?\\)
1507 (< (point) start))
1508 (backward-char)
1509 t))))))
1512 ;; Tools for skipping over syntactic whitespace.
1514 ;; The following functions use text properties to cache searches over
1515 ;; large regions of syntactic whitespace. It works as follows:
1517 ;; o If a syntactic whitespace region contains anything but simple
1518 ;; whitespace (i.e. space, tab and line breaks), the text property
1519 ;; `c-in-sws' is put over it. At places where we have stopped
1520 ;; within that region there's also a `c-is-sws' text property.
1521 ;; That since there typically are nested whitespace inside that
1522 ;; must be handled separately, e.g. whitespace inside a comment or
1523 ;; cpp directive. Thus, from one point with `c-is-sws' it's safe
1524 ;; to jump to another point with that property within the same
1525 ;; `c-in-sws' region. It can be likened to a ladder where
1526 ;; `c-in-sws' marks the bars and `c-is-sws' the rungs.
1528 ;; o The `c-is-sws' property is put on the simple whitespace chars at
1529 ;; a "rung position" and also maybe on the first following char.
1530 ;; As many characters as can be conveniently found in this range
1531 ;; are marked, but no assumption can be made that the whole range
1532 ;; is marked (it could be clobbered by later changes, for
1533 ;; instance).
1535 ;; Note that some part of the beginning of a sequence of simple
1536 ;; whitespace might be part of the end of a preceding line comment
1537 ;; or cpp directive and must not be considered part of the "rung".
1538 ;; Such whitespace is some amount of horizontal whitespace followed
1539 ;; by a newline. In the case of cpp directives it could also be
1540 ;; two newlines with horizontal whitespace between them.
1542 ;; The reason to include the first following char is to cope with
1543 ;; "rung positions" that doesn't have any ordinary whitespace. If
1544 ;; `c-is-sws' is put on a token character it does not have
1545 ;; `c-in-sws' set simultaneously. That's the only case when that
1546 ;; can occur, and the reason for not extending the `c-in-sws'
1547 ;; region to cover it is that the `c-in-sws' region could then be
1548 ;; accidentally merged with a following one if the token is only
1549 ;; one character long.
1551 ;; o On buffer changes the `c-in-sws' and `c-is-sws' properties are
1552 ;; removed in the changed region. If the change was inside
1553 ;; syntactic whitespace that means that the "ladder" is broken, but
1554 ;; a later call to `c-forward-sws' or `c-backward-sws' will use the
1555 ;; parts on either side and use an ordinary search only to "repair"
1556 ;; the gap.
1558 ;; Special care needs to be taken if a region is removed: If there
1559 ;; are `c-in-sws' on both sides of it which do not connect inside
1560 ;; the region then they can't be joined. If e.g. a marked macro is
1561 ;; broken, syntactic whitespace inside the new text might be
1562 ;; marked. If those marks would become connected with the old
1563 ;; `c-in-sws' range around the macro then we could get a ladder
1564 ;; with one end outside the macro and the other at some whitespace
1565 ;; within it.
1567 ;; The main motivation for this system is to increase the speed in
1568 ;; skipping over the large whitespace regions that can occur at the
1569 ;; top level in e.g. header files that contain a lot of comments and
1570 ;; cpp directives. For small comments inside code it's probably
1571 ;; slower than using `forward-comment' straightforwardly, but speed is
1572 ;; not a significant factor there anyway.
1574 ; (defface c-debug-is-sws-face
1575 ; '((t (:background "GreenYellow")))
1576 ; "Debug face to mark the `c-is-sws' property.")
1577 ; (defface c-debug-in-sws-face
1578 ; '((t (:underline t)))
1579 ; "Debug face to mark the `c-in-sws' property.")
1581 ; (defun c-debug-put-sws-faces ()
1582 ; ;; Put the sws debug faces on all the `c-is-sws' and `c-in-sws'
1583 ; ;; properties in the buffer.
1584 ; (interactive)
1585 ; (save-excursion
1586 ; (c-save-buffer-state (in-face)
1587 ; (goto-char (point-min))
1588 ; (setq in-face (if (get-text-property (point) 'c-is-sws)
1589 ; (point)))
1590 ; (while (progn
1591 ; (goto-char (next-single-property-change
1592 ; (point) 'c-is-sws nil (point-max)))
1593 ; (if in-face
1594 ; (progn
1595 ; (c-debug-add-face in-face (point) 'c-debug-is-sws-face)
1596 ; (setq in-face nil))
1597 ; (setq in-face (point)))
1598 ; (not (eobp))))
1599 ; (goto-char (point-min))
1600 ; (setq in-face (if (get-text-property (point) 'c-in-sws)
1601 ; (point)))
1602 ; (while (progn
1603 ; (goto-char (next-single-property-change
1604 ; (point) 'c-in-sws nil (point-max)))
1605 ; (if in-face
1606 ; (progn
1607 ; (c-debug-add-face in-face (point) 'c-debug-in-sws-face)
1608 ; (setq in-face nil))
1609 ; (setq in-face (point)))
1610 ; (not (eobp)))))))
1612 (defmacro c-debug-sws-msg (&rest args)
1613 ;;`(message ,@args)
1616 (defmacro c-put-is-sws (beg end)
1617 ;; This macro does a hidden buffer change.
1618 `(let ((beg ,beg) (end ,end))
1619 (put-text-property beg end 'c-is-sws t)
1620 ,@(when (facep 'c-debug-is-sws-face)
1621 `((c-debug-add-face beg end 'c-debug-is-sws-face)))))
1623 (defmacro c-put-in-sws (beg end)
1624 ;; This macro does a hidden buffer change.
1625 `(let ((beg ,beg) (end ,end))
1626 (put-text-property beg end 'c-in-sws t)
1627 ,@(when (facep 'c-debug-is-sws-face)
1628 `((c-debug-add-face beg end 'c-debug-in-sws-face)))))
1630 (defmacro c-remove-is-sws (beg end)
1631 ;; This macro does a hidden buffer change.
1632 `(let ((beg ,beg) (end ,end))
1633 (remove-text-properties beg end '(c-is-sws nil))
1634 ,@(when (facep 'c-debug-is-sws-face)
1635 `((c-debug-remove-face beg end 'c-debug-is-sws-face)))))
1637 (defmacro c-remove-in-sws (beg end)
1638 ;; This macro does a hidden buffer change.
1639 `(let ((beg ,beg) (end ,end))
1640 (remove-text-properties beg end '(c-in-sws nil))
1641 ,@(when (facep 'c-debug-is-sws-face)
1642 `((c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1644 (defmacro c-remove-is-and-in-sws (beg end)
1645 ;; This macro does a hidden buffer change.
1646 `(let ((beg ,beg) (end ,end))
1647 (remove-text-properties beg end '(c-is-sws nil c-in-sws nil))
1648 ,@(when (facep 'c-debug-is-sws-face)
1649 `((c-debug-remove-face beg end 'c-debug-is-sws-face)
1650 (c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1652 (defsubst c-invalidate-sws-region-after (beg end)
1653 ;; Called from `after-change-functions'. Note that if
1654 ;; `c-forward-sws' or `c-backward-sws' are used outside
1655 ;; `c-save-buffer-state' or similar then this will remove the cache
1656 ;; properties right after they're added.
1658 ;; This function does hidden buffer changes.
1660 (save-excursion
1661 ;; Adjust the end to remove the properties in any following simple
1662 ;; ws up to and including the next line break, if there is any
1663 ;; after the changed region. This is necessary e.g. when a rung
1664 ;; marked empty line is converted to a line comment by inserting
1665 ;; "//" before the line break. In that case the line break would
1666 ;; keep the rung mark which could make a later `c-backward-sws'
1667 ;; move into the line comment instead of over it.
1668 (goto-char end)
1669 (skip-chars-forward " \t\f\v")
1670 (when (and (eolp) (not (eobp)))
1671 (setq end (1+ (point)))))
1673 (when (and (= beg end)
1674 (get-text-property beg 'c-in-sws)
1675 (> beg (point-min))
1676 (get-text-property (1- beg) 'c-in-sws))
1677 ;; Ensure that an `c-in-sws' range gets broken. Note that it isn't
1678 ;; safe to keep a range that was continuous before the change. E.g:
1680 ;; #define foo
1681 ;; \
1682 ;; bar
1684 ;; There can be a "ladder" between "#" and "b". Now, if the newline
1685 ;; after "foo" is removed then "bar" will become part of the cpp
1686 ;; directive instead of a syntactically relevant token. In that
1687 ;; case there's no longer syntactic ws from "#" to "b".
1688 (setq beg (1- beg)))
1690 (c-debug-sws-msg "c-invalidate-sws-region-after [%s..%s]" beg end)
1691 (c-remove-is-and-in-sws beg end))
1693 (defun c-forward-sws ()
1694 ;; Used by `c-forward-syntactic-ws' to implement the unbounded search.
1696 ;; This function might do hidden buffer changes.
1698 (let (;; `rung-pos' is set to a position as early as possible in the
1699 ;; unmarked part of the simple ws region.
1700 (rung-pos (point)) next-rung-pos rung-end-pos last-put-in-sws-pos
1701 rung-is-marked next-rung-is-marked simple-ws-end
1702 ;; `safe-start' is set when it's safe to cache the start position.
1703 ;; It's not set if we've initially skipped over comments and line
1704 ;; continuations since we might have gone out through the end of a
1705 ;; macro then. This provision makes `c-forward-sws' not populate the
1706 ;; cache in the majority of cases, but otoh is `c-backward-sws' by far
1707 ;; more common.
1708 safe-start)
1710 ;; Skip simple ws and do a quick check on the following character to see
1711 ;; if it's anything that can't start syntactic ws, so we can bail out
1712 ;; early in the majority of cases when there just are a few ws chars.
1713 (skip-chars-forward " \t\n\r\f\v")
1714 (when (looking-at c-syntactic-ws-start)
1716 (setq rung-end-pos (min (1+ (point)) (point-max)))
1717 (if (setq rung-is-marked (text-property-any rung-pos rung-end-pos
1718 'c-is-sws t))
1719 ;; Find the last rung position to avoid setting properties in all
1720 ;; the cases when the marked rung is complete.
1721 ;; (`next-single-property-change' is certain to move at least one
1722 ;; step forward.)
1723 (setq rung-pos (1- (next-single-property-change
1724 rung-is-marked 'c-is-sws nil rung-end-pos)))
1725 ;; Got no marked rung here. Since the simple ws might have started
1726 ;; inside a line comment or cpp directive we must set `rung-pos' as
1727 ;; high as possible.
1728 (setq rung-pos (point)))
1730 (with-silent-modifications
1731 (while
1732 (progn
1733 (while
1734 (when (and rung-is-marked
1735 (get-text-property (point) 'c-in-sws))
1737 ;; The following search is the main reason that `c-in-sws'
1738 ;; and `c-is-sws' aren't combined to one property.
1739 (goto-char (next-single-property-change
1740 (point) 'c-in-sws nil (point-max)))
1741 (unless (get-text-property (point) 'c-is-sws)
1742 ;; If the `c-in-sws' region extended past the last
1743 ;; `c-is-sws' char we have to go back a bit.
1744 (or (get-text-property (1- (point)) 'c-is-sws)
1745 (goto-char (previous-single-property-change
1746 (point) 'c-is-sws)))
1747 (backward-char))
1749 (c-debug-sws-msg
1750 "c-forward-sws cached move %s -> %s (max %s)"
1751 rung-pos (point) (point-max))
1753 (setq rung-pos (point))
1754 (and (> (skip-chars-forward " \t\n\r\f\v") 0)
1755 (not (eobp))))
1757 ;; We'll loop here if there is simple ws after the last rung.
1758 ;; That means that there's been some change in it and it's
1759 ;; possible that we've stepped into another ladder, so extend
1760 ;; the previous one to join with it if there is one, and try to
1761 ;; use the cache again.
1762 (c-debug-sws-msg
1763 "c-forward-sws extending rung with [%s..%s] (max %s)"
1764 (1+ rung-pos) (1+ (point)) (point-max))
1765 (unless (get-text-property (point) 'c-is-sws)
1766 ;; Remove any `c-in-sws' property from the last char of
1767 ;; the rung before we mark it with `c-is-sws', so that we
1768 ;; won't connect with the remains of a broken "ladder".
1769 (c-remove-in-sws (point) (1+ (point))))
1770 (c-put-is-sws (1+ rung-pos)
1771 (1+ (point)))
1772 (c-put-in-sws rung-pos
1773 (setq rung-pos (point)
1774 last-put-in-sws-pos rung-pos)))
1776 (setq simple-ws-end (point))
1777 (c-forward-comments)
1779 (cond
1780 ((/= (point) simple-ws-end)
1781 ;; Skipped over comments. Don't cache at eob in case the buffer
1782 ;; is narrowed.
1783 (not (eobp)))
1785 ((save-excursion
1786 (and c-opt-cpp-prefix
1787 (looking-at c-opt-cpp-start)
1788 (progn (skip-chars-backward " \t")
1789 (bolp))
1790 (or (bobp)
1791 (progn (backward-char)
1792 (not (eq (char-before) ?\\))))))
1793 ;; Skip a preprocessor directive.
1794 (end-of-line)
1795 (while (and (eq (char-before) ?\\)
1796 (= (forward-line 1) 0))
1797 (end-of-line))
1798 (forward-line 1)
1799 (setq safe-start t)
1800 ;; Don't cache at eob in case the buffer is narrowed.
1801 (not (eobp)))))
1803 ;; We've searched over a piece of non-white syntactic ws. See if this
1804 ;; can be cached.
1805 (setq next-rung-pos (point))
1806 (skip-chars-forward " \t\n\r\f\v")
1807 (setq rung-end-pos (min (1+ (point)) (point-max)))
1809 (if (or
1810 ;; Cache if we haven't skipped comments only, and if we started
1811 ;; either from a marked rung or from a completely uncached
1812 ;; position.
1813 (and safe-start
1814 (or rung-is-marked
1815 (not (get-text-property simple-ws-end 'c-in-sws))))
1817 ;; See if there's a marked rung in the encountered simple ws. If
1818 ;; so then we can cache, unless `safe-start' is nil. Even then
1819 ;; we need to do this to check if the cache can be used for the
1820 ;; next step.
1821 (and (setq next-rung-is-marked
1822 (text-property-any next-rung-pos rung-end-pos
1823 'c-is-sws t))
1824 safe-start))
1826 (progn
1827 (c-debug-sws-msg
1828 "c-forward-sws caching [%s..%s] - [%s..%s] (max %s)"
1829 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1830 (point-max))
1832 ;; Remove the properties for any nested ws that might be cached.
1833 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
1834 ;; anyway.
1835 (c-remove-is-sws (1+ simple-ws-end) next-rung-pos)
1836 (unless (and rung-is-marked (= rung-pos simple-ws-end))
1837 (c-put-is-sws rung-pos
1838 (1+ simple-ws-end))
1839 (setq rung-is-marked t))
1840 (c-put-in-sws rung-pos
1841 (setq rung-pos (point)
1842 last-put-in-sws-pos rung-pos))
1843 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
1844 ;; Remove any `c-in-sws' property from the last char of
1845 ;; the rung before we mark it with `c-is-sws', so that we
1846 ;; won't connect with the remains of a broken "ladder".
1847 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
1848 (c-put-is-sws next-rung-pos
1849 rung-end-pos))
1851 (c-debug-sws-msg
1852 "c-forward-sws not caching [%s..%s] - [%s..%s] (max %s)"
1853 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1854 (point-max))
1856 ;; Set `rung-pos' for the next rung. It's the same thing here as
1857 ;; initially, except that the rung position is set as early as
1858 ;; possible since we can't be in the ending ws of a line comment or
1859 ;; cpp directive now.
1860 (if (setq rung-is-marked next-rung-is-marked)
1861 (setq rung-pos (1- (next-single-property-change
1862 rung-is-marked 'c-is-sws nil rung-end-pos)))
1863 (setq rung-pos next-rung-pos))
1864 (setq safe-start t)))
1866 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
1867 ;; another one after the point (which might occur when editing inside a
1868 ;; comment or macro).
1869 (when (eq last-put-in-sws-pos (point))
1870 (cond ((< last-put-in-sws-pos (point-max))
1871 (c-debug-sws-msg
1872 "c-forward-sws clearing at %s for cache separation"
1873 last-put-in-sws-pos)
1874 (c-remove-in-sws last-put-in-sws-pos
1875 (1+ last-put-in-sws-pos)))
1877 ;; If at eob we have to clear the last character before the end
1878 ;; instead since the buffer might be narrowed and there might
1879 ;; be a `c-in-sws' after (point-max). In this case it's
1880 ;; necessary to clear both properties.
1881 (c-debug-sws-msg
1882 "c-forward-sws clearing thoroughly at %s for cache separation"
1883 (1- last-put-in-sws-pos))
1884 (c-remove-is-and-in-sws (1- last-put-in-sws-pos)
1885 last-put-in-sws-pos))))
1886 ))))
1888 (defun c-backward-sws ()
1889 ;; Used by `c-backward-syntactic-ws' to implement the unbounded search.
1891 ;; This function might do hidden buffer changes.
1893 (let (;; `rung-pos' is set to a position as late as possible in the unmarked
1894 ;; part of the simple ws region.
1895 (rung-pos (point)) next-rung-pos last-put-in-sws-pos
1896 rung-is-marked simple-ws-beg cmt-skip-pos)
1898 ;; Skip simple horizontal ws and do a quick check on the preceding
1899 ;; character to see if it's anything that can't end syntactic ws, so we can
1900 ;; bail out early in the majority of cases when there just are a few ws
1901 ;; chars. Newlines are complicated in the backward direction, so we can't
1902 ;; skip over them.
1903 (skip-chars-backward " \t\f")
1904 (when (and (not (bobp))
1905 (save-excursion
1906 (backward-char)
1907 (looking-at c-syntactic-ws-end)))
1909 ;; Try to find a rung position in the simple ws preceding point, so that
1910 ;; we can get a cache hit even if the last bit of the simple ws has
1911 ;; changed recently.
1912 (setq simple-ws-beg (point))
1913 (skip-chars-backward " \t\n\r\f\v")
1914 (if (setq rung-is-marked (text-property-any
1915 (point) (min (1+ rung-pos) (point-max))
1916 'c-is-sws t))
1917 ;; `rung-pos' will be the earliest marked position, which means that
1918 ;; there might be later unmarked parts in the simple ws region.
1919 ;; It's not worth the effort to fix that; the last part of the
1920 ;; simple ws is also typically edited often, so it could be wasted.
1921 (goto-char (setq rung-pos rung-is-marked))
1922 (goto-char simple-ws-beg))
1924 (with-silent-modifications
1925 (while
1926 (progn
1927 (while
1928 (when (and rung-is-marked
1929 (not (bobp))
1930 (get-text-property (1- (point)) 'c-in-sws))
1932 ;; The following search is the main reason that `c-in-sws'
1933 ;; and `c-is-sws' aren't combined to one property.
1934 (goto-char (previous-single-property-change
1935 (point) 'c-in-sws nil (point-min)))
1936 (unless (get-text-property (point) 'c-is-sws)
1937 ;; If the `c-in-sws' region extended past the first
1938 ;; `c-is-sws' char we have to go forward a bit.
1939 (goto-char (next-single-property-change
1940 (point) 'c-is-sws)))
1942 (c-debug-sws-msg
1943 "c-backward-sws cached move %s <- %s (min %s)"
1944 (point) rung-pos (point-min))
1946 (setq rung-pos (point))
1947 (if (and (< (min (skip-chars-backward " \t\f\v")
1948 (progn
1949 (setq simple-ws-beg (point))
1950 (skip-chars-backward " \t\n\r\f\v")))
1952 (setq rung-is-marked
1953 (text-property-any (point) rung-pos
1954 'c-is-sws t)))
1956 (goto-char simple-ws-beg)
1957 nil))
1959 ;; We'll loop here if there is simple ws before the first rung.
1960 ;; That means that there's been some change in it and it's
1961 ;; possible that we've stepped into another ladder, so extend
1962 ;; the previous one to join with it if there is one, and try to
1963 ;; use the cache again.
1964 (c-debug-sws-msg
1965 "c-backward-sws extending rung with [%s..%s] (min %s)"
1966 rung-is-marked rung-pos (point-min))
1967 (unless (get-text-property (1- rung-pos) 'c-is-sws)
1968 ;; Remove any `c-in-sws' property from the last char of
1969 ;; the rung before we mark it with `c-is-sws', so that we
1970 ;; won't connect with the remains of a broken "ladder".
1971 (c-remove-in-sws (1- rung-pos) rung-pos))
1972 (c-put-is-sws rung-is-marked
1973 rung-pos)
1974 (c-put-in-sws rung-is-marked
1975 (1- rung-pos))
1976 (setq rung-pos rung-is-marked
1977 last-put-in-sws-pos rung-pos))
1979 (c-backward-comments)
1980 (setq cmt-skip-pos (point))
1982 (cond
1983 ((and c-opt-cpp-prefix
1984 (/= cmt-skip-pos simple-ws-beg)
1985 (c-beginning-of-macro))
1986 ;; Inside a cpp directive. See if it should be skipped over.
1987 (let ((cpp-beg (point)))
1989 ;; Move back over all line continuations in the region skipped
1990 ;; over by `c-backward-comments'. If we go past it then we
1991 ;; started inside the cpp directive.
1992 (goto-char simple-ws-beg)
1993 (beginning-of-line)
1994 (while (and (> (point) cmt-skip-pos)
1995 (progn (backward-char)
1996 (eq (char-before) ?\\)))
1997 (beginning-of-line))
1999 (if (< (point) cmt-skip-pos)
2000 ;; Don't move past the cpp directive if we began inside
2001 ;; it. Note that the position at the end of the last line
2002 ;; of the macro is also considered to be within it.
2003 (progn (goto-char cmt-skip-pos)
2004 nil)
2006 ;; It's worthwhile to spend a little bit of effort on finding
2007 ;; the end of the macro, to get a good `simple-ws-beg'
2008 ;; position for the cache. Note that `c-backward-comments'
2009 ;; could have stepped over some comments before going into
2010 ;; the macro, and then `simple-ws-beg' must be kept on the
2011 ;; same side of those comments.
2012 (goto-char simple-ws-beg)
2013 (skip-chars-backward " \t\n\r\f\v")
2014 (if (eq (char-before) ?\\)
2015 (forward-char))
2016 (forward-line 1)
2017 (if (< (point) simple-ws-beg)
2018 ;; Might happen if comments after the macro were skipped
2019 ;; over.
2020 (setq simple-ws-beg (point)))
2022 (goto-char cpp-beg)
2023 t)))
2025 ((/= (save-excursion
2026 (skip-chars-forward " \t\n\r\f\v" simple-ws-beg)
2027 (setq next-rung-pos (point)))
2028 simple-ws-beg)
2029 ;; Skipped over comments. Must put point at the end of
2030 ;; the simple ws at point since we might be after a line
2031 ;; comment or cpp directive that's been partially
2032 ;; narrowed out, and we can't risk marking the simple ws
2033 ;; at the end of it.
2034 (goto-char next-rung-pos)
2035 t)))
2037 ;; We've searched over a piece of non-white syntactic ws. See if this
2038 ;; can be cached.
2039 (setq next-rung-pos (point))
2040 (skip-chars-backward " \t\f\v")
2042 (if (or
2043 ;; Cache if we started either from a marked rung or from a
2044 ;; completely uncached position.
2045 rung-is-marked
2046 (not (get-text-property (1- simple-ws-beg) 'c-in-sws))
2048 ;; Cache if there's a marked rung in the encountered simple ws.
2049 (save-excursion
2050 (skip-chars-backward " \t\n\r\f\v")
2051 (text-property-any (point) (min (1+ next-rung-pos) (point-max))
2052 'c-is-sws t)))
2054 (progn
2055 (c-debug-sws-msg
2056 "c-backward-sws caching [%s..%s] - [%s..%s] (min %s)"
2057 (point) (1+ next-rung-pos)
2058 simple-ws-beg (min (1+ rung-pos) (point-max))
2059 (point-min))
2061 ;; Remove the properties for any nested ws that might be cached.
2062 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
2063 ;; anyway.
2064 (c-remove-is-sws (1+ next-rung-pos) simple-ws-beg)
2065 (unless (and rung-is-marked (= simple-ws-beg rung-pos))
2066 (let ((rung-end-pos (min (1+ rung-pos) (point-max))))
2067 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
2068 ;; Remove any `c-in-sws' property from the last char of
2069 ;; the rung before we mark it with `c-is-sws', so that we
2070 ;; won't connect with the remains of a broken "ladder".
2071 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
2072 (c-put-is-sws simple-ws-beg
2073 rung-end-pos)
2074 (setq rung-is-marked t)))
2075 (c-put-in-sws (setq simple-ws-beg (point)
2076 last-put-in-sws-pos simple-ws-beg)
2077 rung-pos)
2078 (c-put-is-sws (setq rung-pos simple-ws-beg)
2079 (1+ next-rung-pos)))
2081 (c-debug-sws-msg
2082 "c-backward-sws not caching [%s..%s] - [%s..%s] (min %s)"
2083 (point) (1+ next-rung-pos)
2084 simple-ws-beg (min (1+ rung-pos) (point-max))
2085 (point-min))
2086 (setq rung-pos next-rung-pos
2087 simple-ws-beg (point))
2090 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
2091 ;; another one before the point (which might occur when editing inside a
2092 ;; comment or macro).
2093 (when (eq last-put-in-sws-pos (point))
2094 (cond ((< (point-min) last-put-in-sws-pos)
2095 (c-debug-sws-msg
2096 "c-backward-sws clearing at %s for cache separation"
2097 (1- last-put-in-sws-pos))
2098 (c-remove-in-sws (1- last-put-in-sws-pos)
2099 last-put-in-sws-pos))
2100 ((> (point-min) 1)
2101 ;; If at bob and the buffer is narrowed, we have to clear the
2102 ;; character we're standing on instead since there might be a
2103 ;; `c-in-sws' before (point-min). In this case it's necessary
2104 ;; to clear both properties.
2105 (c-debug-sws-msg
2106 "c-backward-sws clearing thoroughly at %s for cache separation"
2107 last-put-in-sws-pos)
2108 (c-remove-is-and-in-sws last-put-in-sws-pos
2109 (1+ last-put-in-sws-pos)))))
2110 ))))
2113 ;; Other whitespace tools
2114 (defun c-partial-ws-p (beg end)
2115 ;; Is the region (beg end) WS, and is there WS (or BOB/EOB) next to the
2116 ;; region? This is a "heuristic" function. .....
2118 ;; The motivation for the second bit is to check whether removing this
2119 ;; region would coalesce two symbols.
2121 ;; FIXME!!! This function doesn't check virtual semicolons in any way. Be
2122 ;; careful about using this function for, e.g. AWK. (2007/3/7)
2123 (save-excursion
2124 (let ((end+1 (min (1+ end) (point-max))))
2125 (or (progn (goto-char (max (point-min) (1- beg)))
2126 (c-skip-ws-forward end)
2127 (eq (point) end))
2128 (progn (goto-char beg)
2129 (c-skip-ws-forward end+1)
2130 (eq (point) end+1))))))
2132 ;; A system for finding noteworthy parens before the point.
2134 (defconst c-state-cache-too-far 5000)
2135 ;; A maximum comfortable scanning distance, e.g. between
2136 ;; `c-state-cache-good-pos' and "HERE" (where we call c-parse-state). When
2137 ;; this distance is exceeded, we take "emergency measures", e.g. by clearing
2138 ;; the cache and starting again from point-min or a beginning of defun. This
2139 ;; value can be tuned for efficiency or set to a lower value for testing.
2141 (defvar c-state-cache nil)
2142 (make-variable-buffer-local 'c-state-cache)
2143 ;; The state cache used by `c-parse-state' to cut down the amount of
2144 ;; searching. It's the result from some earlier `c-parse-state' call. See
2145 ;; `c-parse-state''s doc string for details of its structure.
2147 ;; The use of the cached info is more effective if the next
2148 ;; `c-parse-state' call is on a line close by the one the cached state
2149 ;; was made at; the cache can actually slow down a little if the
2150 ;; cached state was made very far back in the buffer. The cache is
2151 ;; most effective if `c-parse-state' is used on each line while moving
2152 ;; forward.
2154 (defvar c-state-cache-good-pos 1)
2155 (make-variable-buffer-local 'c-state-cache-good-pos)
2156 ;; This is a position where `c-state-cache' is known to be correct, or
2157 ;; nil (see below). It's a position inside one of the recorded unclosed
2158 ;; parens or the top level, but not further nested inside any literal or
2159 ;; subparen that is closed before the last recorded position.
2161 ;; The exact position is chosen to try to be close to yet earlier than
2162 ;; the position where `c-state-cache' will be called next. Right now
2163 ;; the heuristic is to set it to the position after the last found
2164 ;; closing paren (of any type) before the line on which
2165 ;; `c-parse-state' was called. That is chosen primarily to work well
2166 ;; with refontification of the current line.
2168 ;; 2009-07-28: When `c-state-point-min' and the last position where
2169 ;; `c-parse-state' or for which `c-invalidate-state-cache' was called, are
2170 ;; both in the same literal, there is no such "good position", and
2171 ;; c-state-cache-good-pos is then nil. This is the ONLY circumstance in which
2172 ;; it can be nil. In this case, `c-state-point-min-literal' will be non-nil.
2174 ;; 2009-06-12: In a brace desert, c-state-cache-good-pos may also be in
2175 ;; the middle of the desert, as long as it is not within a brace pair
2176 ;; recorded in `c-state-cache' or a paren/bracket pair.
2179 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2180 ;; We maintain a simple cache of positions which aren't in a literal, so as to
2181 ;; speed up testing for non-literality.
2182 (defconst c-state-nonlit-pos-interval 3000)
2183 ;; The approximate interval between entries in `c-state-nonlit-pos-cache'.
2185 (defvar c-state-nonlit-pos-cache nil)
2186 (make-variable-buffer-local 'c-state-nonlit-pos-cache)
2187 ;; A list of buffer positions which are known not to be in a literal or a cpp
2188 ;; construct. This is ordered with higher positions at the front of the list.
2189 ;; Only those which are less than `c-state-nonlit-pos-cache-limit' are valid.
2191 (defvar c-state-nonlit-pos-cache-limit 1)
2192 (make-variable-buffer-local 'c-state-nonlit-pos-cache-limit)
2193 ;; An upper limit on valid entries in `c-state-nonlit-pos-cache'. This is
2194 ;; reduced by buffer changes, and increased by invocations of
2195 ;; `c-state-literal-at'.
2197 (defvar c-state-semi-nonlit-pos-cache nil)
2198 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache)
2199 ;; A list of buffer positions which are known not to be in a literal. This is
2200 ;; ordered with higher positions at the front of the list. Only those which
2201 ;; are less than `c-state-semi-nonlit-pos-cache-limit' are valid.
2203 (defvar c-state-semi-nonlit-pos-cache-limit 1)
2204 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache-limit)
2205 ;; An upper limit on valid entries in `c-state-semi-nonlit-pos-cache'. This is
2206 ;; reduced by buffer changes, and increased by invocations of
2207 ;; `c-state-literal-at'. FIXME!!!
2209 (defsubst c-state-pp-to-literal (from to &optional not-in-delimiter)
2210 ;; Do a parse-partial-sexp from FROM to TO, returning either
2211 ;; (STATE TYPE (BEG . END)) if TO is in a literal; or
2212 ;; (STATE) otherwise,
2213 ;; where STATE is the parsing state at TO, TYPE is the type of the literal
2214 ;; (one of 'c, 'c++, 'string) and (BEG . END) is the boundaries of the literal.
2216 ;; Unless NOT-IN-DELIMITER is non-nil, when TO is inside a two-character
2217 ;; comment opener, this is recognized as being in a comment literal.
2219 ;; Only elements 3 (in a string), 4 (in a comment), 5 (following a quote),
2220 ;; 7 (comment type) and 8 (start of comment/string) (and possibly 9) of
2221 ;; STATE are valid.
2222 (save-excursion
2223 (let ((s (parse-partial-sexp from to))
2224 ty co-st)
2225 (cond
2226 ((or (nth 3 s) (nth 4 s)) ; in a string or comment
2227 (setq ty (cond
2228 ((nth 3 s) 'string)
2229 ((nth 7 s) 'c++)
2230 (t 'c)))
2231 (parse-partial-sexp (point) (point-max)
2232 nil ; TARGETDEPTH
2233 nil ; STOPBEFORE
2234 s ; OLDSTATE
2235 'syntax-table) ; stop at end of literal
2236 `(,s ,ty (,(nth 8 s) . ,(point))))
2238 ((and (not not-in-delimiter) ; inside a comment starter
2239 (not (bobp))
2240 (progn (backward-char)
2241 (and (not (looking-at "\\s!"))
2242 (looking-at c-comment-start-regexp))))
2243 (setq ty (if (looking-at c-block-comment-start-regexp) 'c 'c++)
2244 co-st (point))
2245 (forward-comment 1)
2246 `(,s ,ty (,co-st . ,(point))))
2248 (t `(,s))))))
2250 (defun c-state-safe-place (here)
2251 ;; Return a buffer position before HERE which is "safe", i.e. outside any
2252 ;; string, comment, or macro.
2254 ;; NOTE: This function manipulates `c-state-nonlit-pos-cache'. This cache
2255 ;; MAY NOT contain any positions within macros, since macros are frequently
2256 ;; turned into comments by use of the `c-cpp-delimiter' category properties.
2257 ;; We cannot rely on this mechanism whilst determining a cache pos since
2258 ;; this function is also called from outwith `c-parse-state'.
2259 (save-restriction
2260 (widen)
2261 (save-excursion
2262 (let ((c c-state-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-nonlit-pos-cache-limit))
2266 (setq c (cdr c)))
2267 (setq c-state-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-nonlit-pos-cache' each iteration.
2277 (and
2278 (setq npos
2279 (when (<= (+ pos c-state-nonlit-pos-interval) here)
2280 (+ pos c-state-nonlit-pos-interval)))
2282 ;; Test for being in a literal. If so, go to after it.
2283 (progn
2284 (setq lit (car (cddr (c-state-pp-to-literal pos npos))))
2285 (or (null lit)
2286 (prog1 (<= (cdr lit) here)
2287 (setq npos (cdr lit)))))
2289 ;; Test for being in a macro. If so, go to after it.
2290 (progn
2291 (goto-char npos)
2292 (setq macro-beg
2293 (and (c-beginning-of-macro) (/= (point) npos) (point)))
2294 (when macro-beg
2295 (c-syntactic-end-of-macro)
2296 (or (eobp) (forward-char))
2297 (setq macro-end (point)))
2298 (or (null macro-beg)
2299 (prog1 (<= macro-end here)
2300 (setq npos macro-end)))))
2302 (setq pos npos)
2303 (setq c-state-nonlit-pos-cache (cons pos c-state-nonlit-pos-cache)))
2304 ;; Add one extra element above HERE so as to to avoid the previous
2305 ;; expensive calculation when the next call is close to the current
2306 ;; one. This is especially useful when inside a large macro.
2307 (when npos
2308 (setq c-state-nonlit-pos-cache
2309 (cons npos c-state-nonlit-pos-cache))))
2311 (if (> pos c-state-nonlit-pos-cache-limit)
2312 (setq c-state-nonlit-pos-cache-limit pos))
2313 pos))))
2315 (defun c-state-semi-safe-place (here)
2316 ;; Return a buffer position before HERE which is "safe", i.e. outside any
2317 ;; string or comment. It may be in a macro.
2318 (save-restriction
2319 (widen)
2320 (save-excursion
2321 (let ((c c-state-semi-nonlit-pos-cache)
2322 pos npos high-pos lit macro-beg macro-end)
2323 ;; Trim the cache to take account of buffer changes.
2324 (while (and c (> (car c) c-state-semi-nonlit-pos-cache-limit))
2325 (setq c (cdr c)))
2326 (setq c-state-semi-nonlit-pos-cache c)
2328 (while (and c (> (car c) here))
2329 (setq high-pos (car c))
2330 (setq c (cdr c)))
2331 (setq pos (or (car c) (point-min)))
2333 (unless high-pos
2334 (while
2335 ;; Add an element to `c-state-semi-nonlit-pos-cache' each iteration.
2336 (and
2337 (<= (setq npos (+ pos c-state-nonlit-pos-interval)) here)
2339 ;; Test for being in a literal. If so, go to after it.
2340 (progn
2341 (setq lit (car (cddr (c-state-pp-to-literal pos npos))))
2342 (or (null lit)
2343 (prog1 (<= (cdr lit) here)
2344 (setq npos (cdr lit))))))
2346 (setq pos npos)
2347 (setq c-state-semi-nonlit-pos-cache
2348 (cons pos c-state-semi-nonlit-pos-cache))))
2350 (if (> pos c-state-semi-nonlit-pos-cache-limit)
2351 (setq c-state-semi-nonlit-pos-cache-limit pos))
2352 pos))))
2354 (defun c-state-literal-at (here)
2355 ;; If position HERE is inside a literal, return (START . END), the
2356 ;; boundaries of the literal (which may be outside the accessible bit of the
2357 ;; buffer). Otherwise, return nil.
2359 ;; This function is almost the same as `c-literal-limits'. Previously, it
2360 ;; differed in that it was a lower level function, and that it rigorously
2361 ;; followed the syntax from BOB. `c-literal-limits' is now (2011-12)
2362 ;; virtually identical to this function.
2363 (save-restriction
2364 (widen)
2365 (save-excursion
2366 (let ((pos (c-state-safe-place here)))
2367 (car (cddr (c-state-pp-to-literal pos here)))))))
2369 (defsubst c-state-lit-beg (pos)
2370 ;; Return the start of the literal containing POS, or POS itself.
2371 (or (car (c-state-literal-at pos))
2372 pos))
2374 (defsubst c-state-cache-non-literal-place (pos state)
2375 ;; Return a position outside of a string/comment/macro at or before POS.
2376 ;; STATE is the parse-partial-sexp state at POS.
2377 (let ((res (if (or (nth 3 state) ; in a string?
2378 (nth 4 state)) ; in a comment?
2379 (nth 8 state)
2380 pos)))
2381 (save-excursion
2382 (goto-char res)
2383 (if (c-beginning-of-macro)
2384 (point)
2385 res))))
2387 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2388 ;; Stuff to do with point-min, and coping with any literal there.
2389 (defvar c-state-point-min 1)
2390 (make-variable-buffer-local 'c-state-point-min)
2391 ;; This is (point-min) when `c-state-cache' was last calculated. A change of
2392 ;; narrowing is likely to affect the parens that are visible before the point.
2394 (defvar c-state-point-min-lit-type nil)
2395 (make-variable-buffer-local 'c-state-point-min-lit-type)
2396 (defvar c-state-point-min-lit-start nil)
2397 (make-variable-buffer-local 'c-state-point-min-lit-start)
2398 ;; These two variables define the literal, if any, containing point-min.
2399 ;; Their values are, respectively, 'string, c, or c++, and the start of the
2400 ;; literal. If there's no literal there, they're both nil.
2402 (defvar c-state-min-scan-pos 1)
2403 (make-variable-buffer-local 'c-state-min-scan-pos)
2404 ;; This is the earliest buffer-pos from which scanning can be done. It is
2405 ;; either the end of the literal containing point-min, or point-min itself.
2406 ;; It becomes nil if the buffer is changed earlier than this point.
2407 (defun c-state-get-min-scan-pos ()
2408 ;; Return the lowest valid scanning pos. This will be the end of the
2409 ;; literal enclosing point-min, or point-min itself.
2410 (or c-state-min-scan-pos
2411 (save-restriction
2412 (save-excursion
2413 (widen)
2414 (goto-char c-state-point-min-lit-start)
2415 (if (eq c-state-point-min-lit-type 'string)
2416 (forward-sexp)
2417 (forward-comment 1))
2418 (setq c-state-min-scan-pos (point))))))
2420 (defun c-state-mark-point-min-literal ()
2421 ;; Determine the properties of any literal containing POINT-MIN, setting the
2422 ;; variables `c-state-point-min-lit-type', `c-state-point-min-lit-start',
2423 ;; and `c-state-min-scan-pos' accordingly. The return value is meaningless.
2424 (let ((p-min (point-min))
2425 lit)
2426 (save-restriction
2427 (widen)
2428 (setq lit (c-state-literal-at p-min))
2429 (if lit
2430 (setq c-state-point-min-lit-type
2431 (save-excursion
2432 (goto-char (car lit))
2433 (cond
2434 ((looking-at c-block-comment-start-regexp) 'c)
2435 ((looking-at c-line-comment-starter) 'c++)
2436 (t 'string)))
2437 c-state-point-min-lit-start (car lit)
2438 c-state-min-scan-pos (cdr lit))
2439 (setq c-state-point-min-lit-type nil
2440 c-state-point-min-lit-start nil
2441 c-state-min-scan-pos p-min)))))
2444 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2445 ;; A variable which signals a brace dessert - helpful for reducing the number
2446 ;; of fruitless backward scans.
2447 (defvar c-state-brace-pair-desert nil)
2448 (make-variable-buffer-local 'c-state-brace-pair-desert)
2449 ;; Used only in `c-append-lower-brace-pair-to-state-cache'. It is set when
2450 ;; that defun has searched backwards for a brace pair and not found one. Its
2451 ;; value is either nil or a cons (PA . FROM), where PA is the position of the
2452 ;; enclosing opening paren/brace/bracket which bounds the backwards search (or
2453 ;; nil when at top level) and FROM is where the backward search started. It
2454 ;; is reset to nil in `c-invalidate-state-cache'.
2457 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2458 ;; Lowish level functions/macros which work directly on `c-state-cache', or a
2459 ;; list of like structure.
2460 (defmacro c-state-cache-top-lparen (&optional cache)
2461 ;; Return the address of the top left brace/bracket/paren recorded in CACHE
2462 ;; (default `c-state-cache') (or nil).
2463 (let ((cash (or cache 'c-state-cache)))
2464 `(if (consp (car ,cash))
2465 (caar ,cash)
2466 (car ,cash))))
2468 (defmacro c-state-cache-top-paren (&optional cache)
2469 ;; Return the address of the latest brace/bracket/paren (whether left or
2470 ;; right) recorded in CACHE (default `c-state-cache') or nil.
2471 (let ((cash (or cache 'c-state-cache)))
2472 `(if (consp (car ,cash))
2473 (cdar ,cash)
2474 (car ,cash))))
2476 (defmacro c-state-cache-after-top-paren (&optional cache)
2477 ;; Return the position just after the latest brace/bracket/paren (whether
2478 ;; left or right) recorded in CACHE (default `c-state-cache') or nil.
2479 (let ((cash (or cache 'c-state-cache)))
2480 `(if (consp (car ,cash))
2481 (cdar ,cash)
2482 (and (car ,cash)
2483 (1+ (car ,cash))))))
2485 (defun c-get-cache-scan-pos (here)
2486 ;; From the state-cache, determine the buffer position from which we might
2487 ;; scan forward to HERE to update this cache. This position will be just
2488 ;; after a paren/brace/bracket recorded in the cache, if possible, otherwise
2489 ;; return the earliest position in the accessible region which isn't within
2490 ;; a literal. If the visible portion of the buffer is entirely within a
2491 ;; literal, return NIL.
2492 (let ((c c-state-cache) elt)
2493 ;(while (>= (or (c-state-cache-top-lparen c) 1) here)
2494 (while (and c
2495 (>= (c-state-cache-top-lparen c) here))
2496 (setq c (cdr c)))
2498 (setq elt (car c))
2499 (cond
2500 ((consp elt)
2501 (if (> (cdr elt) here)
2502 (1+ (car elt))
2503 (cdr elt)))
2504 (elt (1+ elt))
2505 ((<= (c-state-get-min-scan-pos) here)
2506 (c-state-get-min-scan-pos))
2507 (t nil))))
2509 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2510 ;; Variables which keep track of preprocessor constructs.
2511 (defvar c-state-old-cpp-beg-marker nil)
2512 (make-variable-buffer-local 'c-state-old-cpp-beg-marker)
2513 (defvar c-state-old-cpp-beg nil)
2514 (make-variable-buffer-local 'c-state-old-cpp-beg)
2515 (defvar c-state-old-cpp-end-marker nil)
2516 (make-variable-buffer-local 'c-state-old-cpp-end-marker)
2517 (defvar c-state-old-cpp-end nil)
2518 (make-variable-buffer-local 'c-state-old-cpp-end)
2519 ;; These are the limits of the macro containing point at the previous call of
2520 ;; `c-parse-state', or nil.
2522 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2523 ;; Defuns which analyze the buffer, yet don't change `c-state-cache'.
2524 (defun c-state-balance-parens-backwards (here- here+ top)
2525 ;; Return the position of the opening paren/brace/bracket before HERE- which
2526 ;; matches the outermost close p/b/b between HERE+ and TOP. Except when
2527 ;; there's a macro, HERE- and HERE+ are the same. Like this:
2529 ;; ............................................
2530 ;; | |
2531 ;; ( [ ( .........#macro.. ) ( ) ] )
2532 ;; ^ ^ ^ ^
2533 ;; | | | |
2534 ;; return HERE- HERE+ TOP
2536 ;; If there aren't enough opening paren/brace/brackets, return the position
2537 ;; of the outermost one found, or HERE- if there are none. If there are no
2538 ;; closing p/b/bs between HERE+ and TOP, return HERE-. HERE-/+ and TOP
2539 ;; must not be inside literals. Only the accessible portion of the buffer
2540 ;; will be scanned.
2542 ;; PART 1: scan from `here+' up to `top', accumulating ")"s which enclose
2543 ;; `here'. Go round the next loop each time we pass over such a ")". These
2544 ;; probably match "("s before `here-'.
2545 (let (pos pa ren+1 lonely-rens)
2546 (save-excursion
2547 (save-restriction
2548 (narrow-to-region (point-min) top) ; This can move point, sometimes.
2549 (setq pos here+)
2550 (c-safe
2551 (while
2552 (setq ren+1 (scan-lists pos 1 1)) ; might signal
2553 (setq lonely-rens (cons ren+1 lonely-rens)
2554 pos ren+1)))))
2556 ;; PART 2: Scan back before `here-' searching for the "("s
2557 ;; matching/mismatching the ")"s found above. We only need to direct the
2558 ;; caller to scan when we've encountered unmatched right parens.
2559 (setq pos here-)
2560 (when lonely-rens
2561 (c-safe
2562 (while
2563 (and lonely-rens ; actual values aren't used.
2564 (setq pa (scan-lists pos -1 1)))
2565 (setq pos pa)
2566 (setq lonely-rens (cdr lonely-rens)))))
2567 pos))
2569 (defun c-parse-state-get-strategy (here good-pos)
2570 ;; Determine the scanning strategy for adjusting `c-parse-state', attempting
2571 ;; to minimize the amount of scanning. HERE is the pertinent position in
2572 ;; the buffer, GOOD-POS is a position where `c-state-cache' (possibly with
2573 ;; its head trimmed) is known to be good, or nil if there is no such
2574 ;; position.
2576 ;; The return value is a list, one of the following:
2578 ;; o - ('forward START-POINT) - scan forward from START-POINT,
2579 ;; which is not less than the highest position in `c-state-cache' below HERE,
2580 ;; which is after GOOD-POS.
2581 ;; o - ('backward nil) - scan backwards (from HERE).
2582 ;; o - ('back-and-forward START-POINT) - like 'forward, but when HERE is earlier
2583 ;; than GOOD-POS.
2584 ;; o - ('IN-LIT nil) - point is inside the literal containing point-min.
2585 (let ((cache-pos (c-get-cache-scan-pos here)) ; highest position below HERE in cache (or 1)
2586 strategy ; 'forward, 'backward, or 'IN-LIT.
2587 start-point)
2588 (setq good-pos (or good-pos (c-state-get-min-scan-pos)))
2589 (cond
2590 ((< here (c-state-get-min-scan-pos))
2591 (setq strategy 'IN-LIT))
2592 ((<= good-pos here)
2593 (setq strategy 'forward
2594 start-point (max good-pos cache-pos)))
2595 ((< (- good-pos here) (- here cache-pos)) ; FIXME!!! ; apply some sort of weighting.
2596 (setq strategy 'backward))
2598 (setq strategy 'back-and-forward
2599 start-point cache-pos)))
2600 (list strategy start-point)))
2603 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2604 ;; Routines which change `c-state-cache' and associated values.
2605 (defun c-renarrow-state-cache ()
2606 ;; The region (more precisely, point-min) has changed since we
2607 ;; calculated `c-state-cache'. Amend `c-state-cache' accordingly.
2608 (if (< (point-min) c-state-point-min)
2609 ;; If point-min has MOVED BACKWARDS then we drop the state completely.
2610 ;; It would be possible to do a better job here and recalculate the top
2611 ;; only.
2612 (progn
2613 (c-state-mark-point-min-literal)
2614 (setq c-state-cache nil
2615 c-state-cache-good-pos c-state-min-scan-pos
2616 c-state-brace-pair-desert nil))
2618 ;; point-min has MOVED FORWARD.
2620 ;; Is the new point-min inside a (different) literal?
2621 (unless (and c-state-point-min-lit-start ; at prev. point-min
2622 (< (point-min) (c-state-get-min-scan-pos)))
2623 (c-state-mark-point-min-literal))
2625 ;; Cut off a bit of the tail from `c-state-cache'.
2626 (let ((ptr (cons nil c-state-cache))
2628 (while (and (setq pa (c-state-cache-top-lparen (cdr ptr)))
2629 (>= pa (point-min)))
2630 (setq ptr (cdr ptr)))
2632 (when (consp ptr)
2633 (if (eq (cdr ptr) c-state-cache)
2634 (setq c-state-cache nil
2635 c-state-cache-good-pos c-state-min-scan-pos)
2636 (setcdr ptr nil)
2637 (setq c-state-cache-good-pos (1+ (c-state-cache-top-lparen))))
2640 (setq c-state-point-min (point-min)))
2642 (defun c-append-lower-brace-pair-to-state-cache (from here &optional upper-lim)
2643 ;; If there is a brace pair preceding FROM in the buffer, at the same level
2644 ;; of nesting (not necessarily immediately preceding), push a cons onto
2645 ;; `c-state-cache' to represent it. FROM must not be inside a literal. If
2646 ;; UPPER-LIM is non-nil, we append the highest brace pair whose "}" is below
2647 ;; UPPER-LIM.
2649 ;; Return non-nil when this has been done.
2651 ;; The situation it copes with is this transformation:
2653 ;; OLD: { (.) {...........}
2654 ;; ^ ^
2655 ;; FROM HERE
2657 ;; NEW: { {....} (.) {.........
2658 ;; ^ ^ ^
2659 ;; LOWER BRACE PAIR HERE or HERE
2661 ;; This routine should be fast. Since it can get called a LOT, we maintain
2662 ;; `c-state-brace-pair-desert', a small cache of "failures", such that we
2663 ;; reduce the time wasted in repeated fruitless searches in brace deserts.
2664 (save-excursion
2665 (save-restriction
2666 (let* (new-cons
2667 (cache-pos (c-state-cache-top-lparen)) ; might be nil.
2668 (macro-start-or-from
2669 (progn (goto-char from)
2670 (c-beginning-of-macro)
2671 (point)))
2672 (bra ; Position of "{".
2673 ;; Don't start scanning in the middle of a CPP construct unless
2674 ;; it contains HERE - these constructs, in Emacs, are "commented
2675 ;; out" with category properties.
2676 (if (eq (c-get-char-property macro-start-or-from 'category)
2677 'c-cpp-delimiter)
2678 macro-start-or-from
2679 from))
2680 ce) ; Position of "}"
2681 (or upper-lim (setq upper-lim from))
2683 ;; If we're essentially repeating a fruitless search, just give up.
2684 (unless (and c-state-brace-pair-desert
2685 (eq cache-pos (car c-state-brace-pair-desert))
2686 (or (null (car c-state-brace-pair-desert))
2687 (> from (car c-state-brace-pair-desert)))
2688 (<= from (cdr c-state-brace-pair-desert)))
2689 ;; DESERT-LIM. Avoid repeated searching through the cached desert.
2690 (let ((desert-lim
2691 (and c-state-brace-pair-desert
2692 (eq cache-pos (car c-state-brace-pair-desert))
2693 (>= from (cdr c-state-brace-pair-desert))
2694 (cdr c-state-brace-pair-desert)))
2695 ;; CACHE-LIM. This limit will be necessary when an opening
2696 ;; paren at `cache-pos' has just had its matching close paren
2697 ;; inserted into the buffer. `cache-pos' continues to be a
2698 ;; search bound, even though the algorithm below would skip
2699 ;; over the new paren pair.
2700 (cache-lim (and cache-pos (< cache-pos from) cache-pos)))
2701 (narrow-to-region
2702 (cond
2703 ((and desert-lim cache-lim)
2704 (max desert-lim cache-lim))
2705 (desert-lim)
2706 (cache-lim)
2707 ((point-min)))
2708 ;; The top limit is EOB to ensure that `bra' is inside the
2709 ;; accessible part of the buffer at the next scan operation.
2710 (1+ (buffer-size))))
2712 ;; In the next pair of nested loops, the inner one moves back past a
2713 ;; pair of (mis-)matching parens or brackets; the outer one moves
2714 ;; back over a sequence of unmatched close brace/paren/bracket each
2715 ;; time round.
2716 (while
2717 (progn
2718 (c-safe
2719 (while
2720 (and (setq ce (scan-lists bra -1 -1)) ; back past )/]/}; might signal
2721 (setq bra (scan-lists ce -1 1)) ; back past (/[/{; might signal
2722 (or (> bra here) ;(> ce here)
2723 (and
2724 (< ce here)
2725 (or (not (eq (char-after bra) ?\{))
2726 (and (goto-char bra)
2727 (c-beginning-of-macro)
2728 (< (point) macro-start-or-from))))))))
2729 (and ce (< ce bra)))
2730 (setq bra ce)) ; If we just backed over an unbalanced closing
2731 ; brace, ignore it.
2733 (if (and ce (< ce here) (< bra ce) (eq (char-after bra) ?\{))
2734 ;; We've found the desired brace-pair.
2735 (progn
2736 (setq new-cons (cons bra (1+ ce)))
2737 (cond
2738 ((consp (car c-state-cache))
2739 (setcar c-state-cache new-cons))
2740 ((and (numberp (car c-state-cache)) ; probably never happens
2741 (< ce (car c-state-cache)))
2742 (setcdr c-state-cache
2743 (cons new-cons (cdr c-state-cache))))
2744 (t (setq c-state-cache (cons new-cons c-state-cache)))))
2746 ;; We haven't found a brace pair. Record this in the cache.
2747 (setq c-state-brace-pair-desert
2748 (cons (if (and ce (< bra ce) (> ce here)) ; {..} straddling HERE?
2750 (point-min))
2751 (min here from)))))))))
2753 (defsubst c-state-push-any-brace-pair (bra+1 macro-start-or-here)
2754 ;; If BRA+1 is nil, do nothing. Otherwise, BRA+1 is the buffer position
2755 ;; following a {, and that brace has a (mis-)matching } (or ]), and we
2756 ;; "push" "a" brace pair onto `c-state-cache'.
2758 ;; Here "push" means overwrite the top element if it's itself a brace-pair,
2759 ;; otherwise push it normally.
2761 ;; The brace pair we push is normally the one surrounding BRA+1, but if the
2762 ;; latter is inside a macro, not being a macro containing
2763 ;; MACRO-START-OR-HERE, we scan backwards through the buffer for a non-macro
2764 ;; base pair. This latter case is assumed to be rare.
2766 ;; Note: POINT is not preserved in this routine.
2767 (if bra+1
2768 (if (or (> bra+1 macro-start-or-here)
2769 (progn (goto-char bra+1)
2770 (not (c-beginning-of-macro))))
2771 (setq c-state-cache
2772 (cons (cons (1- bra+1)
2773 (scan-lists bra+1 1 1))
2774 (if (consp (car c-state-cache))
2775 (cdr c-state-cache)
2776 c-state-cache)))
2777 ;; N.B. This defsubst codes one method for the simple, normal case,
2778 ;; and a more sophisticated, slower way for the general case. Don't
2779 ;; eliminate this defsubst - it's a speed optimization.
2780 (c-append-lower-brace-pair-to-state-cache (1- bra+1) (point-max)))))
2782 (defun c-append-to-state-cache (from here)
2783 ;; Scan the buffer from FROM to HERE, adding elements into `c-state-cache'
2784 ;; for braces etc. Return a candidate for `c-state-cache-good-pos'.
2786 ;; FROM must be after the latest brace/paren/bracket in `c-state-cache', if
2787 ;; any. Typically, it is immediately after it. It must not be inside a
2788 ;; literal.
2789 (let ((here-bol (c-point 'bol here))
2790 (macro-start-or-here
2791 (save-excursion (goto-char here)
2792 (if (c-beginning-of-macro)
2793 (point)
2794 here)))
2795 pa+1 ; pos just after an opening PAren (or brace).
2796 (ren+1 from) ; usually a pos just after an closing paREN etc.
2797 ; Is actually the pos. to scan for a (/{/[ from,
2798 ; which sometimes is after a silly )/}/].
2799 paren+1 ; Pos after some opening or closing paren.
2800 paren+1s ; A list of `paren+1's; used to determine a
2801 ; good-pos.
2802 bra+1 ce+1 ; just after L/R bra-ces.
2803 bra+1s ; list of OLD values of bra+1.
2804 mstart) ; start of a macro.
2806 (save-excursion
2807 (save-restriction
2808 (narrow-to-region (point-min) here)
2809 ;; Each time round the following loop, we enter a successively deeper
2810 ;; level of brace/paren nesting. (Except sometimes we "continue at
2811 ;; the existing level".) `pa+1' is a pos inside an opening
2812 ;; brace/paren/bracket, usually just after it.
2813 (while
2814 (progn
2815 ;; Each time round the next loop moves forward over an opening then
2816 ;; a closing brace/bracket/paren. This loop is white hot, so it
2817 ;; plays ugly tricks to go fast. DON'T PUT ANYTHING INTO THIS
2818 ;; LOOP WHICH ISN'T ABSOLUTELY NECESSARY!!! It terminates when a
2819 ;; call of `scan-lists' signals an error, which happens when there
2820 ;; are no more b/b/p's to scan.
2821 (c-safe
2822 (while t
2823 (setq pa+1 (scan-lists ren+1 1 -1) ; Into (/{/[; might signal
2824 paren+1s (cons pa+1 paren+1s))
2825 (setq ren+1 (scan-lists pa+1 1 1)) ; Out of )/}/]; might signal
2826 (if (and (eq (char-before pa+1) ?{)) ; Check for a macro later.
2827 (setq bra+1 pa+1))
2828 (setcar paren+1s ren+1)))
2830 (if (and pa+1 (> pa+1 ren+1))
2831 ;; We've just entered a deeper nesting level.
2832 (progn
2833 ;; Insert the brace pair (if present) and the single open
2834 ;; paren/brace/bracket into `c-state-cache' It cannot be
2835 ;; inside a macro, except one around point, because of what
2836 ;; `c-neutralize-syntax-in-CPP' has done.
2837 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2838 ;; Insert the opening brace/bracket/paren position.
2839 (setq c-state-cache (cons (1- pa+1) c-state-cache))
2840 ;; Clear admin stuff for the next more nested part of the scan.
2841 (setq ren+1 pa+1 pa+1 nil bra+1 nil bra+1s nil)
2842 t) ; Carry on the loop
2844 ;; All open p/b/b's at this nesting level, if any, have probably
2845 ;; been closed by matching/mismatching ones. We're probably
2846 ;; finished - we just need to check for having found an
2847 ;; unmatched )/}/], which we ignore. Such a )/}/] can't be in a
2848 ;; macro, due the action of `c-neutralize-syntax-in-CPP'.
2849 (c-safe (setq ren+1 (scan-lists ren+1 1 1)))))) ; acts as loop control.
2851 ;; Record the final, innermost, brace-pair if there is one.
2852 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2854 ;; Determine a good pos
2855 (while (and (setq paren+1 (car paren+1s))
2856 (> (if (> paren+1 macro-start-or-here)
2857 paren+1
2858 (goto-char paren+1)
2859 (setq mstart (and (c-beginning-of-macro)
2860 (point)))
2861 (or mstart paren+1))
2862 here-bol))
2863 (setq paren+1s (cdr paren+1s)))
2864 (cond
2865 ((and paren+1 mstart)
2866 (min paren+1 mstart))
2867 (paren+1)
2868 (t from))))))
2870 (defun c-remove-stale-state-cache (start-point here pps-point)
2871 ;; Remove stale entries from the `c-cache-state', i.e. those which will
2872 ;; not be in it when it is amended for position HERE. This may involve
2873 ;; replacing a CONS element for a brace pair containing HERE with its car.
2874 ;; Additionally, the "outermost" open-brace entry before HERE will be
2875 ;; converted to a cons if the matching close-brace is below HERE.
2877 ;; START-POINT is a "maximal" "safe position" - there must be no open
2878 ;; parens/braces/brackets between START-POINT and HERE.
2880 ;; As a second thing, calculate the result of parse-partial-sexp at
2881 ;; PPS-POINT, w.r.t. START-POINT. The motivation here is that
2882 ;; `c-state-cache-good-pos' may become PPS-POINT, but the caller may need to
2883 ;; adjust it to get outside a string/comment. (Sorry about this! The code
2884 ;; needs to be FAST).
2886 ;; Return a list (GOOD-POS SCAN-BACK-POS CONS-SEPARATED PPS-STATE), where
2887 ;; o - GOOD-POS is a position where the new value `c-state-cache' is known
2888 ;; to be good (we aim for this to be as high as possible);
2889 ;; o - SCAN-BACK-POS, if not nil, indicates there may be a brace pair
2890 ;; preceding POS which needs to be recorded in `c-state-cache'. It is a
2891 ;; position to scan backwards from. It is the position of the "{" of the
2892 ;; last element to be removed from `c-state-cache', when that elt is a
2893 ;; cons, otherwise nil.
2894 ;; o - CONS-SEPARATED is t when a cons element in `c-state-cache' has been
2895 ;; replaced by its car because HERE lies inside the brace pair represented
2896 ;; by the cons.
2897 ;; o - PPS-STATE is the parse-partial-sexp state at PPS-POINT.
2898 (save-excursion
2899 (save-restriction
2900 (narrow-to-region 1 (point-max))
2901 (let* ((in-macro-start ; start of macro containing HERE or nil.
2902 (save-excursion
2903 (goto-char here)
2904 (and (c-beginning-of-macro)
2905 (point))))
2906 (start-point-actual-macro-start ; Start of macro containing
2907 ; start-point or nil
2908 (and (< start-point here)
2909 (save-excursion
2910 (goto-char start-point)
2911 (and (c-beginning-of-macro)
2912 (point)))))
2913 (start-point-actual-macro-end ; End of this macro, (maybe
2914 ; HERE), or nil.
2915 (and start-point-actual-macro-start
2916 (save-excursion
2917 (goto-char start-point-actual-macro-start)
2918 (c-end-of-macro)
2919 (point))))
2920 pps-state ; Will be 9 or 10 elements long.
2922 upper-lim ; ,beyond which `c-state-cache' entries are removed
2923 scan-back-pos
2924 cons-separated
2925 pair-beg pps-point-state target-depth)
2927 ;; Remove entries beyond HERE. Also remove any entries inside
2928 ;; a macro, unless HERE is in the same macro.
2929 (setq upper-lim
2930 (if (or (null c-state-old-cpp-beg)
2931 (and (> here c-state-old-cpp-beg)
2932 (< here c-state-old-cpp-end)))
2933 here
2934 (min here c-state-old-cpp-beg)))
2935 (while (and c-state-cache (>= (c-state-cache-top-lparen) upper-lim))
2936 (setq scan-back-pos (car-safe (car c-state-cache)))
2937 (setq c-state-cache (cdr c-state-cache)))
2939 ;; If `upper-lim' is inside the last recorded brace pair, remove its
2940 ;; RBrace and indicate we'll need to search backwards for a previous
2941 ;; brace pair.
2942 (when (and c-state-cache
2943 (consp (car c-state-cache))
2944 (> (cdar c-state-cache) upper-lim))
2945 (setcar c-state-cache (caar c-state-cache))
2946 (setq scan-back-pos (car c-state-cache)
2947 cons-separated t))
2949 ;; The next loop jumps forward out of a nested level of parens each
2950 ;; time round; the corresponding elements in `c-state-cache' are
2951 ;; removed. `pos' is just after the brace-pair or the open paren at
2952 ;; (car c-state-cache). There can be no open parens/braces/brackets
2953 ;; between `start-point'/`start-point-actual-macro-start' and HERE,
2954 ;; due to the interface spec to this function.
2955 (setq pos (if (and start-point-actual-macro-end
2956 (not (eq start-point-actual-macro-start
2957 in-macro-start)))
2958 (1+ start-point-actual-macro-end) ; get outside the macro as
2959 ; marked by a `category' text property.
2960 start-point))
2961 (goto-char pos)
2962 (while (and c-state-cache
2963 (or (numberp (car c-state-cache)) ; Have we a { at all?
2964 (cdr c-state-cache))
2965 (< (point) here))
2966 (cond
2967 ((null pps-state) ; first time through
2968 (setq target-depth -1))
2969 ((eq (car pps-state) target-depth) ; found closing ),},]
2970 (setq target-depth (1- (car pps-state))))
2971 ;; Do nothing when we've merely reached pps-point.
2974 ;; Scan!
2975 (setq pps-state
2976 (parse-partial-sexp
2977 (point) (if (< (point) pps-point) pps-point here)
2978 target-depth
2979 nil pps-state))
2981 (if (= (point) pps-point)
2982 (setq pps-point-state pps-state))
2984 (when (eq (car pps-state) target-depth)
2985 (setq pos (point)) ; POS is now just after an R-paren/brace.
2986 (cond
2987 ((and (consp (car c-state-cache))
2988 (eq (point) (cdar c-state-cache)))
2989 ;; We've just moved out of the paren pair containing the brace-pair
2990 ;; at (car c-state-cache). `pair-beg' is where the open paren is,
2991 ;; and is potentially where the open brace of a cons in
2992 ;; c-state-cache will be.
2993 (setq pair-beg (car-safe (cdr c-state-cache))
2994 c-state-cache (cdr-safe (cdr c-state-cache)))) ; remove {}pair + containing Lparen.
2995 ((numberp (car c-state-cache))
2996 (setq pair-beg (car c-state-cache)
2997 c-state-cache (cdr c-state-cache))) ; remove this
2998 ; containing Lparen
2999 ((numberp (cadr c-state-cache))
3000 (setq pair-beg (cadr c-state-cache)
3001 c-state-cache (cddr c-state-cache))) ; Remove a paren pair
3002 ; together with enclosed brace pair.
3003 ;; (t nil) ; Ignore an unmated Rparen.
3006 (if (< (point) pps-point)
3007 (setq pps-state (parse-partial-sexp (point) pps-point
3008 nil nil ; TARGETDEPTH, STOPBEFORE
3009 pps-state)))
3011 ;; If the last paren pair we moved out of was actually a brace pair,
3012 ;; insert it into `c-state-cache'.
3013 (when (and pair-beg (eq (char-after pair-beg) ?{))
3014 (if (consp (car-safe c-state-cache))
3015 (setq c-state-cache (cdr c-state-cache)))
3016 (setq c-state-cache (cons (cons pair-beg pos)
3017 c-state-cache)))
3019 (list pos scan-back-pos cons-separated pps-state)))))
3021 (defun c-remove-stale-state-cache-backwards (here)
3022 ;; Strip stale elements of `c-state-cache' by moving backwards through the
3023 ;; buffer, and inform the caller of the scenario detected.
3025 ;; HERE is the position we're setting `c-state-cache' for.
3026 ;; CACHE-POS (a locally bound variable) is just after the latest recorded
3027 ;; position in `c-state-cache' before HERE, or a position at or near
3028 ;; point-min which isn't in a literal.
3030 ;; This function must only be called only when (> `c-state-cache-good-pos'
3031 ;; HERE). Usually the gap between CACHE-POS and HERE is large. It is thus
3032 ;; optimized to eliminate (or minimize) scanning between these two
3033 ;; positions.
3035 ;; Return a three element list (GOOD-POS SCAN-BACK-POS FWD-FLAG), where:
3036 ;; o - GOOD-POS is a "good position", where `c-state-cache' is valid, or
3037 ;; could become so after missing elements are inserted into
3038 ;; `c-state-cache'. This is JUST AFTER an opening or closing
3039 ;; brace/paren/bracket which is already in `c-state-cache' or just before
3040 ;; one otherwise. exceptionally (when there's no such b/p/b handy) the BOL
3041 ;; before `here''s line, or the start of the literal containing it.
3042 ;; o - SCAN-BACK-POS, if non-nil, indicates there may be a brace pair
3043 ;; preceding POS which isn't recorded in `c-state-cache'. It is a position
3044 ;; to scan backwards from.
3045 ;; o - FWD-FLAG, if non-nil, indicates there may be parens/braces between
3046 ;; POS and HERE which aren't recorded in `c-state-cache'.
3048 ;; The comments in this defun use "paren" to mean parenthesis or square
3049 ;; bracket (as contrasted with a brace), and "(" and ")" likewise.
3051 ;; . {..} (..) (..) ( .. { } ) (...) ( .... . ..)
3052 ;; | | | | | |
3053 ;; CP E here D C good
3054 (let ((cache-pos (c-get-cache-scan-pos here)) ; highest position below HERE in cache (or 1)
3055 (pos c-state-cache-good-pos)
3056 pa ren ; positions of "(" and ")"
3057 dropped-cons ; whether the last element dropped from `c-state-cache'
3058 ; was a cons (representing a brace-pair)
3059 good-pos ; see above.
3060 lit ; (START . END) of a literal containing some point.
3061 here-lit-start here-lit-end ; bounds of literal containing `here'
3062 ; or `here' itself.
3063 here- here+ ; start/end of macro around HERE, or HERE
3064 (here-bol (c-point 'bol here))
3065 (too-far-back (max (- here c-state-cache-too-far) (point-min))))
3067 ;; Remove completely irrelevant entries from `c-state-cache'.
3068 (while (and c-state-cache
3069 (>= (setq pa (c-state-cache-top-lparen)) here))
3070 (setq dropped-cons (consp (car c-state-cache)))
3071 (setq c-state-cache (cdr c-state-cache))
3072 (setq pos pa))
3073 ;; At this stage, (>= pos here);
3074 ;; (< (c-state-cache-top-lparen) here) (or is nil).
3076 (cond
3077 ((and (consp (car c-state-cache))
3078 (> (cdar c-state-cache) here))
3079 ;; CASE 1: The top of the cache is a brace pair which now encloses
3080 ;; `here'. As good-pos, return the address. of the "{". Since we've no
3081 ;; knowledge of what's inside these braces, we have no alternative but
3082 ;; to direct the caller to scan the buffer from the opening brace.
3083 (setq pos (caar c-state-cache))
3084 (setcar c-state-cache pos)
3085 (list (1+ pos) pos t)) ; return value. We've just converted a brace pair
3086 ; entry into a { entry, so the caller needs to
3087 ; search for a brace pair before the {.
3089 ;; `here' might be inside a literal. Check for this.
3090 ((progn
3091 (setq lit (c-state-literal-at here)
3092 here-lit-start (or (car lit) here)
3093 here-lit-end (or (cdr lit) here))
3094 ;; Has `here' just "newly entered" a macro?
3095 (save-excursion
3096 (goto-char here-lit-start)
3097 (if (and (c-beginning-of-macro)
3098 (or (null c-state-old-cpp-beg)
3099 (not (= (point) c-state-old-cpp-beg))))
3100 (progn
3101 (setq here- (point))
3102 (c-end-of-macro)
3103 (setq here+ (point)))
3104 (setq here- here-lit-start
3105 here+ here-lit-end)))
3107 ;; `here' might be nested inside any depth of parens (or brackets but
3108 ;; not braces). Scan backwards to find the outermost such opening
3109 ;; paren, if there is one. This will be the scan position to return.
3110 (save-restriction
3111 (narrow-to-region cache-pos (point-max))
3112 (setq pos (c-state-balance-parens-backwards here- here+ pos)))
3113 nil)) ; for the cond
3115 ((< pos here-lit-start)
3116 ;; CASE 2: Address of outermost ( or [ which now encloses `here', but
3117 ;; didn't enclose the (previous) `c-state-cache-good-pos'. If there is
3118 ;; a brace pair preceding this, it will already be in `c-state-cache',
3119 ;; unless there was a brace pair after it, i.e. there'll only be one to
3120 ;; scan for if we've just deleted one.
3121 (list pos (and dropped-cons pos) t)) ; Return value.
3123 ;; `here' isn't enclosed in a (previously unrecorded) bracket/paren.
3124 ;; Further forward scanning isn't needed, but we still need to find a
3125 ;; GOOD-POS. Step out of all enclosing "("s on HERE's line.
3126 ((progn
3127 (save-restriction
3128 (narrow-to-region here-bol (point-max))
3129 (setq pos here-lit-start)
3130 (c-safe (while (setq pa (scan-lists pos -1 1))
3131 (setq pos pa)))) ; might signal
3132 nil)) ; for the cond
3134 ((setq ren (c-safe-scan-lists pos -1 -1 too-far-back))
3135 ;; CASE 3: After a }/)/] before `here''s BOL.
3136 (list (1+ ren) (and dropped-cons pos) nil)) ; Return value
3139 ;; CASE 4; Best of a bad job: BOL before `here-bol', or beginning of
3140 ;; literal containing it.
3141 (setq good-pos (c-state-lit-beg (c-point 'bopl here-bol)))
3142 (list good-pos (and dropped-cons good-pos) nil)))))
3145 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3146 ;; Externally visible routines.
3148 (defun c-state-cache-init ()
3149 (setq c-state-cache nil
3150 c-state-cache-good-pos 1
3151 c-state-nonlit-pos-cache nil
3152 c-state-nonlit-pos-cache-limit 1
3153 c-state-semi-nonlit-pos-cache nil
3154 c-state-semi-nonlit-pos-cache-limit 1
3155 c-state-brace-pair-desert nil
3156 c-state-point-min 1
3157 c-state-point-min-lit-type nil
3158 c-state-point-min-lit-start nil
3159 c-state-min-scan-pos 1
3160 c-state-old-cpp-beg nil
3161 c-state-old-cpp-end nil)
3162 (c-state-mark-point-min-literal))
3164 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3165 ;; Debugging routines to dump `c-state-cache' in a "replayable" form.
3166 ;; (defmacro c-sc-de (elt) ; "c-state-cache-dump-element"
3167 ;; `(format ,(concat "(setq " (symbol-name elt) " %s) ") ,elt))
3168 ;; (defmacro c-sc-qde (elt) ; "c-state-cache-quote-dump-element"
3169 ;; `(format ,(concat "(setq " (symbol-name elt) " '%s) ") ,elt))
3170 ;; (defun c-state-dump ()
3171 ;; ;; For debugging.
3172 ;; ;(message
3173 ;; (concat
3174 ;; (c-sc-qde c-state-cache)
3175 ;; (c-sc-de c-state-cache-good-pos)
3176 ;; (c-sc-qde c-state-nonlit-pos-cache)
3177 ;; (c-sc-de c-state-nonlit-pos-cache-limit)
3178 ;; (c-sc-qde c-state-brace-pair-desert)
3179 ;; (c-sc-de c-state-point-min)
3180 ;; (c-sc-de c-state-point-min-lit-type)
3181 ;; (c-sc-de c-state-point-min-lit-start)
3182 ;; (c-sc-de c-state-min-scan-pos)
3183 ;; (c-sc-de c-state-old-cpp-beg)
3184 ;; (c-sc-de c-state-old-cpp-end)))
3185 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3187 (defun c-invalidate-state-cache-1 (here)
3188 ;; Invalidate all info on `c-state-cache' that applies to the buffer at HERE
3189 ;; or higher and set `c-state-cache-good-pos' accordingly. The cache is
3190 ;; left in a consistent state.
3192 ;; This is much like `c-whack-state-after', but it never changes a paren
3193 ;; pair element into an open paren element. Doing that would mean that the
3194 ;; new open paren wouldn't have the required preceding paren pair element.
3196 ;; This function is called from c-after-change.
3198 ;; The caches of non-literals:
3199 ;; Note that we use "<=" for the possibility of the second char of a two-char
3200 ;; comment opener being typed; this would invalidate any cache position at
3201 ;; HERE.
3202 (if (<= here c-state-nonlit-pos-cache-limit)
3203 (setq c-state-nonlit-pos-cache-limit (1- here)))
3204 (if (<= here c-state-semi-nonlit-pos-cache-limit)
3205 (setq c-state-semi-nonlit-pos-cache-limit (1- here)))
3207 ;; `c-state-cache':
3208 ;; Case 1: if `here' is in a literal containing point-min, everything
3209 ;; becomes (or is already) nil.
3210 (if (or (null c-state-cache-good-pos)
3211 (< here (c-state-get-min-scan-pos)))
3212 (setq c-state-cache nil
3213 c-state-cache-good-pos nil
3214 c-state-min-scan-pos nil)
3216 ;; Truncate `c-state-cache' and set `c-state-cache-good-pos' to a value
3217 ;; below `here'. To maintain its consistency, we may need to insert a new
3218 ;; brace pair.
3219 (let (open-paren-in-column-0-is-defun-start
3220 (here-bol (c-point 'bol here))
3221 too-high-pa ; recorded {/(/[ next above here, or nil.
3222 dropped-cons ; was the last removed element a brace pair?
3224 ;; The easy bit - knock over-the-top bits off `c-state-cache'.
3225 (while (and c-state-cache
3226 (>= (setq pa (c-state-cache-top-paren)) here))
3227 (setq dropped-cons (consp (car c-state-cache))
3228 too-high-pa (c-state-cache-top-lparen)
3229 c-state-cache (cdr c-state-cache)))
3231 ;; Do we need to add in an earlier brace pair, having lopped one off?
3232 (if (and dropped-cons
3233 (< too-high-pa (+ here c-state-cache-too-far)))
3234 (c-append-lower-brace-pair-to-state-cache too-high-pa here here-bol))
3235 (setq c-state-cache-good-pos (or (c-state-cache-after-top-paren)
3236 (c-state-get-min-scan-pos)))))
3238 ;; The brace-pair desert marker:
3239 (when (car c-state-brace-pair-desert)
3240 (if (< here (car c-state-brace-pair-desert))
3241 (setq c-state-brace-pair-desert nil)
3242 (if (< here (cdr c-state-brace-pair-desert))
3243 (setcdr c-state-brace-pair-desert here)))))
3245 (defun c-parse-state-1 ()
3246 ;; Find and record all noteworthy parens between some good point earlier in
3247 ;; the file and point. That good point is at least the beginning of the
3248 ;; top-level construct we are in, or the beginning of the preceding
3249 ;; top-level construct if we aren't in one.
3251 ;; The returned value is a list of the noteworthy parens with the last one
3252 ;; first. If an element in the list is an integer, it's the position of an
3253 ;; open paren (of any type) which has not been closed before the point. If
3254 ;; an element is a cons, it gives the position of a closed BRACE paren
3255 ;; pair[*]; the car is the start brace position and the cdr is the position
3256 ;; following the closing brace. Only the last closed brace paren pair
3257 ;; before each open paren and before the point is recorded, and thus the
3258 ;; state never contains two cons elements in succession. When a close brace
3259 ;; has no matching open brace (e.g., the matching brace is outside the
3260 ;; visible region), it is not represented in the returned value.
3262 ;; [*] N.B. The close "brace" might be a mismatching close bracket or paren.
3263 ;; This defun explicitly treats mismatching parens/braces/brackets as
3264 ;; matching. It is the open brace which makes it a "brace" pair.
3266 ;; If POINT is within a macro, open parens and brace pairs within
3267 ;; THIS macro MIGHT be recorded. This depends on whether their
3268 ;; syntactic properties have been suppressed by
3269 ;; `c-neutralize-syntax-in-CPP'. This might need fixing (2008-12-11).
3271 ;; Currently no characters which are given paren syntax with the
3272 ;; syntax-table property are recorded, i.e. angle bracket arglist
3273 ;; parens are never present here. Note that this might change.
3275 ;; BUG: This function doesn't cope entirely well with unbalanced
3276 ;; parens in macros. (2008-12-11: this has probably been resolved
3277 ;; by the function `c-neutralize-syntax-in-CPP'.) E.g. in the
3278 ;; following case the brace before the macro isn't balanced with the
3279 ;; one after it:
3281 ;; {
3282 ;; #define X {
3283 ;; }
3285 ;; Note to maintainers: this function DOES get called with point
3286 ;; within comments and strings, so don't assume it doesn't!
3288 ;; This function might do hidden buffer changes.
3289 (let* ((here (point))
3290 (here-bopl (c-point 'bopl))
3291 open-paren-in-column-0-is-defun-start
3292 strategy ; 'forward, 'backward etc..
3293 ;; Candidate positions to start scanning from:
3294 cache-pos ; highest position below HERE already existing in
3295 ; cache (or 1).
3296 good-pos
3297 start-point ; (when scanning forward) a place below HERE where there
3298 ; are no open parens/braces between it and HERE.
3299 bopl-state
3301 cons-separated
3302 scan-backward-pos scan-forward-p) ; used for 'backward.
3303 ;; If POINT-MIN has changed, adjust the cache
3304 (unless (= (point-min) c-state-point-min)
3305 (c-renarrow-state-cache))
3307 ;; Strategy?
3308 (setq res (c-parse-state-get-strategy here c-state-cache-good-pos)
3309 strategy (car res)
3310 start-point (cadr res))
3312 ;; SCAN!
3313 (cond
3314 ((memq strategy '(forward back-and-forward))
3315 (setq res (c-remove-stale-state-cache start-point here here-bopl))
3316 (setq cache-pos (car res)
3317 scan-backward-pos (cadr res)
3318 cons-separated (car (cddr res))
3319 bopl-state (cadr (cddr res))) ; will be nil if (< here-bopl
3320 ; start-point)
3321 (if (and scan-backward-pos
3322 (or cons-separated (eq strategy 'forward))) ;scan-backward-pos
3323 (c-append-lower-brace-pair-to-state-cache scan-backward-pos here))
3324 (setq good-pos
3325 (c-append-to-state-cache cache-pos here))
3326 (setq c-state-cache-good-pos
3327 (if (and bopl-state
3328 (< good-pos (- here c-state-cache-too-far)))
3329 (c-state-cache-non-literal-place here-bopl bopl-state)
3330 good-pos)))
3332 ((eq strategy 'backward)
3333 (setq res (c-remove-stale-state-cache-backwards here)
3334 good-pos (car res)
3335 scan-backward-pos (cadr res)
3336 scan-forward-p (car (cddr res)))
3337 (if scan-backward-pos
3338 (c-append-lower-brace-pair-to-state-cache scan-backward-pos here))
3339 (setq c-state-cache-good-pos
3340 (if scan-forward-p
3341 (c-append-to-state-cache good-pos here)
3342 good-pos)))
3344 (t ; (eq strategy 'IN-LIT)
3345 (setq c-state-cache nil
3346 c-state-cache-good-pos nil))))
3348 c-state-cache)
3350 (defun c-invalidate-state-cache (here)
3351 ;; This is a wrapper over `c-invalidate-state-cache-1'.
3353 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3354 ;; of all parens in preprocessor constructs, except for any such construct
3355 ;; containing point. We can then call `c-invalidate-state-cache-1' without
3356 ;; worrying further about macros and template delimiters.
3357 (c-with-<->-as-parens-suppressed
3358 (if (and c-state-old-cpp-beg
3359 (< c-state-old-cpp-beg here))
3360 (c-with-all-but-one-cpps-commented-out
3361 c-state-old-cpp-beg
3362 (min c-state-old-cpp-end here)
3363 (c-invalidate-state-cache-1 here))
3364 (c-with-cpps-commented-out
3365 (c-invalidate-state-cache-1 here)))))
3367 (defmacro c-state-maybe-marker (place marker)
3368 ;; If PLACE is non-nil, return a marker marking it, otherwise nil.
3369 ;; We (re)use MARKER.
3370 `(and ,place
3371 (or ,marker (setq ,marker (make-marker)))
3372 (set-marker ,marker ,place)))
3374 (defun c-parse-state ()
3375 ;; This is a wrapper over `c-parse-state-1'. See that function for a
3376 ;; description of the functionality and return value.
3378 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3379 ;; of all parens in preprocessor constructs, except for any such construct
3380 ;; containing point. We can then call `c-parse-state-1' without worrying
3381 ;; further about macros and template delimiters.
3382 (let (here-cpp-beg here-cpp-end)
3383 (save-excursion
3384 (when (c-beginning-of-macro)
3385 (setq here-cpp-beg (point))
3386 (unless
3387 (> (setq here-cpp-end (c-syntactic-end-of-macro))
3388 here-cpp-beg)
3389 (setq here-cpp-beg nil here-cpp-end nil))))
3390 ;; FIXME!!! Put in a `condition-case' here to protect the integrity of the
3391 ;; subsystem.
3392 (prog1
3393 (c-with-<->-as-parens-suppressed
3394 (if (and here-cpp-beg (> here-cpp-end here-cpp-beg))
3395 (c-with-all-but-one-cpps-commented-out
3396 here-cpp-beg here-cpp-end
3397 (c-parse-state-1))
3398 (c-with-cpps-commented-out
3399 (c-parse-state-1))))
3400 (setq c-state-old-cpp-beg
3401 (c-state-maybe-marker here-cpp-beg c-state-old-cpp-beg-marker)
3402 c-state-old-cpp-end
3403 (c-state-maybe-marker here-cpp-end c-state-old-cpp-end-marker)))))
3405 ;; Debug tool to catch cache inconsistencies. This is called from
3406 ;; 000tests.el.
3407 (defvar c-debug-parse-state nil)
3408 (unless (fboundp 'c-real-parse-state)
3409 (fset 'c-real-parse-state (symbol-function 'c-parse-state)))
3410 (cc-bytecomp-defun c-real-parse-state)
3412 (defvar c-parse-state-point nil)
3413 (defvar c-parse-state-state nil)
3414 (defun c-record-parse-state-state ()
3415 (setq c-parse-state-point (point))
3416 (setq c-parse-state-state
3417 (mapcar
3418 (lambda (arg)
3419 (let ((val (symbol-value arg)))
3420 (cons arg
3421 (if (consp val)
3422 (copy-tree val)
3423 val))))
3424 '(c-state-cache
3425 c-state-cache-good-pos
3426 c-state-nonlit-pos-cache
3427 c-state-nonlit-pos-cache-limit
3428 c-state-semi-nonlit-pos-cache
3429 c-state-semi-nonlit-pos-cache-limit
3430 c-state-brace-pair-desert
3431 c-state-point-min
3432 c-state-point-min-lit-type
3433 c-state-point-min-lit-start
3434 c-state-min-scan-pos
3435 c-state-old-cpp-beg
3436 c-state-old-cpp-end
3437 c-parse-state-point))))
3438 (defun c-replay-parse-state-state ()
3439 (message
3440 (concat "(setq "
3441 (mapconcat
3442 (lambda (arg)
3443 (format "%s %s%s" (car arg) (if (atom (cdr arg)) "" "'") (cdr arg)))
3444 c-parse-state-state " ")
3445 ")")))
3447 (defun c-debug-parse-state-double-cons (state)
3448 (let (state-car conses-not-ok)
3449 (while state
3450 (setq state-car (car state)
3451 state (cdr state))
3452 (if (and (consp state-car)
3453 (consp (car state)))
3454 (setq conses-not-ok t)))
3455 conses-not-ok))
3457 (defun c-debug-parse-state ()
3458 (let ((here (point)) (res1 (c-real-parse-state)) res2)
3459 (let ((c-state-cache nil)
3460 (c-state-cache-good-pos 1)
3461 (c-state-nonlit-pos-cache nil)
3462 (c-state-nonlit-pos-cache-limit 1)
3463 (c-state-brace-pair-desert nil)
3464 (c-state-point-min 1)
3465 (c-state-point-min-lit-type nil)
3466 (c-state-point-min-lit-start nil)
3467 (c-state-min-scan-pos 1)
3468 (c-state-old-cpp-beg nil)
3469 (c-state-old-cpp-end nil))
3470 (setq res2 (c-real-parse-state)))
3471 (unless (equal res1 res2)
3472 ;; The cache can actually go further back due to the ad-hoc way
3473 ;; the first paren is found, so try to whack off a bit of its
3474 ;; start before complaining.
3475 ;; (save-excursion
3476 ;; (goto-char (or (c-least-enclosing-brace res2) (point)))
3477 ;; (c-beginning-of-defun-1)
3478 ;; (while (not (or (bobp) (eq (char-after) ?{)))
3479 ;; (c-beginning-of-defun-1))
3480 ;; (unless (equal (c-whack-state-before (point) res1) res2)
3481 ;; (message (concat "c-parse-state inconsistency at %s: "
3482 ;; "using cache: %s, from scratch: %s")
3483 ;; here res1 res2)))
3484 (message (concat "c-parse-state inconsistency at %s: "
3485 "using cache: %s, from scratch: %s")
3486 here res1 res2)
3487 (message "Old state:")
3488 (c-replay-parse-state-state))
3490 (when (c-debug-parse-state-double-cons res1)
3491 (message "c-parse-state INVALIDITY at %s: %s"
3492 here res1)
3493 (message "Old state:")
3494 (c-replay-parse-state-state))
3496 (c-record-parse-state-state)
3497 res2 ; res1 correct a cascading series of errors ASAP
3500 (defun c-toggle-parse-state-debug (&optional arg)
3501 (interactive "P")
3502 (setq c-debug-parse-state (c-calculate-state arg c-debug-parse-state))
3503 (fset 'c-parse-state (symbol-function (if c-debug-parse-state
3504 'c-debug-parse-state
3505 'c-real-parse-state)))
3506 (c-keep-region-active)
3507 (message "c-debug-parse-state %sabled"
3508 (if c-debug-parse-state "en" "dis")))
3509 (when c-debug-parse-state
3510 (c-toggle-parse-state-debug 1))
3513 (defun c-whack-state-before (bufpos paren-state)
3514 ;; Whack off any state information from PAREN-STATE which lies
3515 ;; before BUFPOS. Not destructive on PAREN-STATE.
3516 (let* ((newstate (list nil))
3517 (ptr newstate)
3518 car)
3519 (while paren-state
3520 (setq car (car paren-state)
3521 paren-state (cdr paren-state))
3522 (if (< (if (consp car) (car car) car) bufpos)
3523 (setq paren-state nil)
3524 (setcdr ptr (list car))
3525 (setq ptr (cdr ptr))))
3526 (cdr newstate)))
3528 (defun c-whack-state-after (bufpos paren-state)
3529 ;; Whack off any state information from PAREN-STATE which lies at or
3530 ;; after BUFPOS. Not destructive on PAREN-STATE.
3531 (catch 'done
3532 (while paren-state
3533 (let ((car (car paren-state)))
3534 (if (consp car)
3535 ;; just check the car, because in a balanced brace
3536 ;; expression, it must be impossible for the corresponding
3537 ;; close brace to be before point, but the open brace to
3538 ;; be after.
3539 (if (<= bufpos (car car))
3540 nil ; whack it off
3541 (if (< bufpos (cdr car))
3542 ;; its possible that the open brace is before
3543 ;; bufpos, but the close brace is after. In that
3544 ;; case, convert this to a non-cons element. The
3545 ;; rest of the state is before bufpos, so we're
3546 ;; done.
3547 (throw 'done (cons (car car) (cdr paren-state)))
3548 ;; we know that both the open and close braces are
3549 ;; before bufpos, so we also know that everything else
3550 ;; on state is before bufpos.
3551 (throw 'done paren-state)))
3552 (if (<= bufpos car)
3553 nil ; whack it off
3554 ;; it's before bufpos, so everything else should too.
3555 (throw 'done paren-state)))
3556 (setq paren-state (cdr paren-state)))
3557 nil)))
3559 (defun c-most-enclosing-brace (paren-state &optional bufpos)
3560 ;; Return the bufpos of the innermost enclosing open paren before
3561 ;; bufpos, or nil if none was found.
3562 (let (enclosingp)
3563 (or bufpos (setq bufpos 134217727))
3564 (while paren-state
3565 (setq enclosingp (car paren-state)
3566 paren-state (cdr paren-state))
3567 (if (or (consp enclosingp)
3568 (>= enclosingp bufpos))
3569 (setq enclosingp nil)
3570 (setq paren-state nil)))
3571 enclosingp))
3573 (defun c-least-enclosing-brace (paren-state)
3574 ;; Return the bufpos of the outermost enclosing open paren, or nil
3575 ;; if none was found.
3576 (let (pos elem)
3577 (while paren-state
3578 (setq elem (car paren-state)
3579 paren-state (cdr paren-state))
3580 (if (integerp elem)
3581 (setq pos elem)))
3582 pos))
3584 (defun c-safe-position (bufpos paren-state)
3585 ;; Return the closest "safe" position recorded on PAREN-STATE that
3586 ;; is higher up than BUFPOS. Return nil if PAREN-STATE doesn't
3587 ;; contain any. Return nil if BUFPOS is nil, which is useful to
3588 ;; find the closest limit before a given limit that might be nil.
3590 ;; A "safe" position is a position at or after a recorded open
3591 ;; paren, or after a recorded close paren. The returned position is
3592 ;; thus either the first position after a close brace, or the first
3593 ;; position after an enclosing paren, or at the enclosing paren in
3594 ;; case BUFPOS is immediately after it.
3595 (when bufpos
3596 (let (elem)
3597 (catch 'done
3598 (while paren-state
3599 (setq elem (car paren-state))
3600 (if (consp elem)
3601 (cond ((< (cdr elem) bufpos)
3602 (throw 'done (cdr elem)))
3603 ((< (car elem) bufpos)
3604 ;; See below.
3605 (throw 'done (min (1+ (car elem)) bufpos))))
3606 (if (< elem bufpos)
3607 ;; elem is the position at and not after the opening paren, so
3608 ;; we can go forward one more step unless it's equal to
3609 ;; bufpos. This is useful in some cases avoid an extra paren
3610 ;; level between the safe position and bufpos.
3611 (throw 'done (min (1+ elem) bufpos))))
3612 (setq paren-state (cdr paren-state)))))))
3614 (defun c-beginning-of-syntax ()
3615 ;; This is used for `font-lock-beginning-of-syntax-function'. It
3616 ;; goes to the closest previous point that is known to be outside
3617 ;; any string literal or comment. `c-state-cache' is used if it has
3618 ;; a position in the vicinity.
3619 (let* ((paren-state c-state-cache)
3620 elem
3622 (pos (catch 'done
3623 ;; Note: Similar code in `c-safe-position'. The
3624 ;; difference is that we accept a safe position at
3625 ;; the point and don't bother to go forward past open
3626 ;; parens.
3627 (while paren-state
3628 (setq elem (car paren-state))
3629 (if (consp elem)
3630 (cond ((<= (cdr elem) (point))
3631 (throw 'done (cdr elem)))
3632 ((<= (car elem) (point))
3633 (throw 'done (car elem))))
3634 (if (<= elem (point))
3635 (throw 'done elem)))
3636 (setq paren-state (cdr paren-state)))
3637 (point-min))))
3639 (if (> pos (- (point) 4000))
3640 (goto-char pos)
3641 ;; The position is far back. Try `c-beginning-of-defun-1'
3642 ;; (although we can't be entirely sure it will go to a position
3643 ;; outside a comment or string in current emacsen). FIXME:
3644 ;; Consult `syntax-ppss' here.
3645 (c-beginning-of-defun-1)
3646 (if (< (point) pos)
3647 (goto-char pos)))))
3650 ;; Tools for scanning identifiers and other tokens.
3652 (defun c-on-identifier ()
3653 "Return non-nil if the point is on or directly after an identifier.
3654 Keywords are recognized and not considered identifiers. If an
3655 identifier is detected, the returned value is its starting position.
3656 If an identifier ends at the point and another begins at it \(can only
3657 happen in Pike) then the point for the preceding one is returned.
3659 Note that this function might do hidden buffer changes. See the
3660 comment at the start of cc-engine.el for more info."
3662 ;; FIXME: Shouldn't this function handle "operator" in C++?
3664 (save-excursion
3665 (skip-syntax-backward "w_")
3669 ;; Check for a normal (non-keyword) identifier.
3670 (and (looking-at c-symbol-start)
3671 (not (looking-at c-keywords-regexp))
3672 (point))
3674 (when (c-major-mode-is 'pike-mode)
3675 ;; Handle the `<operator> syntax in Pike.
3676 (let ((pos (point)))
3677 (skip-chars-backward "-!%&*+/<=>^|~[]()")
3678 (and (if (< (skip-chars-backward "`") 0)
3680 (goto-char pos)
3681 (eq (char-after) ?\`))
3682 (looking-at c-symbol-key)
3683 (>= (match-end 0) pos)
3684 (point))))
3686 ;; Handle the "operator +" syntax in C++.
3687 (when (and c-overloadable-operators-regexp
3688 (= (c-backward-token-2 0) 0))
3690 (cond ((and (looking-at c-overloadable-operators-regexp)
3691 (or (not c-opt-op-identifier-prefix)
3692 (and (= (c-backward-token-2 1) 0)
3693 (looking-at c-opt-op-identifier-prefix))))
3694 (point))
3696 ((save-excursion
3697 (and c-opt-op-identifier-prefix
3698 (looking-at c-opt-op-identifier-prefix)
3699 (= (c-forward-token-2 1) 0)
3700 (looking-at c-overloadable-operators-regexp)))
3701 (point))))
3705 (defsubst c-simple-skip-symbol-backward ()
3706 ;; If the point is at the end of a symbol then skip backward to the
3707 ;; beginning of it. Don't move otherwise. Return non-nil if point
3708 ;; moved.
3710 ;; This function might do hidden buffer changes.
3711 (or (< (skip-syntax-backward "w_") 0)
3712 (and (c-major-mode-is 'pike-mode)
3713 ;; Handle the `<operator> syntax in Pike.
3714 (let ((pos (point)))
3715 (if (and (< (skip-chars-backward "-!%&*+/<=>^|~[]()") 0)
3716 (< (skip-chars-backward "`") 0)
3717 (looking-at c-symbol-key)
3718 (>= (match-end 0) pos))
3720 (goto-char pos)
3721 nil)))))
3723 (defun c-beginning-of-current-token (&optional back-limit)
3724 ;; Move to the beginning of the current token. Do not move if not
3725 ;; in the middle of one. BACK-LIMIT may be used to bound the
3726 ;; backward search; if given it's assumed to be at the boundary
3727 ;; between two tokens. Return non-nil if the point is moved, nil
3728 ;; otherwise.
3730 ;; This function might do hidden buffer changes.
3731 (let ((start (point)))
3732 (if (looking-at "\\w\\|\\s_")
3733 (skip-syntax-backward "w_" back-limit)
3734 (when (< (skip-syntax-backward ".()" back-limit) 0)
3735 (while (let ((pos (or (and (looking-at c-nonsymbol-token-regexp)
3736 (match-end 0))
3737 ;; `c-nonsymbol-token-regexp' should always match
3738 ;; since we've skipped backward over punctuation
3739 ;; or paren syntax, but consume one char in case
3740 ;; it doesn't so that we don't leave point before
3741 ;; some earlier incorrect token.
3742 (1+ (point)))))
3743 (if (<= pos start)
3744 (goto-char pos))))))
3745 (< (point) start)))
3747 (defun c-end-of-current-token (&optional back-limit)
3748 ;; Move to the end of the current token. Do not move if not in the
3749 ;; middle of one. BACK-LIMIT may be used to bound the backward
3750 ;; search; if given it's assumed to be at the boundary between two
3751 ;; tokens. Return non-nil if the point is moved, nil otherwise.
3753 ;; This function might do hidden buffer changes.
3754 (let ((start (point)))
3755 (cond ((< (skip-syntax-backward "w_" (1- start)) 0)
3756 (skip-syntax-forward "w_"))
3757 ((< (skip-syntax-backward ".()" back-limit) 0)
3758 (while (progn
3759 (if (looking-at c-nonsymbol-token-regexp)
3760 (goto-char (match-end 0))
3761 ;; `c-nonsymbol-token-regexp' should always match since
3762 ;; we've skipped backward over punctuation or paren
3763 ;; syntax, but move forward in case it doesn't so that
3764 ;; we don't leave point earlier than we started with.
3765 (forward-char))
3766 (< (point) start)))))
3767 (> (point) start)))
3769 (defconst c-jump-syntax-balanced
3770 (if (memq 'gen-string-delim c-emacs-features)
3771 "\\w\\|\\s_\\|\\s\(\\|\\s\)\\|\\s\"\\|\\s|"
3772 "\\w\\|\\s_\\|\\s\(\\|\\s\)\\|\\s\""))
3774 (defconst c-jump-syntax-unbalanced
3775 (if (memq 'gen-string-delim c-emacs-features)
3776 "\\w\\|\\s_\\|\\s\"\\|\\s|"
3777 "\\w\\|\\s_\\|\\s\""))
3779 (defun c-forward-token-2 (&optional count balanced limit)
3780 "Move forward by tokens.
3781 A token is defined as all symbols and identifiers which aren't
3782 syntactic whitespace \(note that multicharacter tokens like \"==\" are
3783 treated properly). Point is always either left at the beginning of a
3784 token or not moved at all. COUNT specifies the number of tokens to
3785 move; a negative COUNT moves in the opposite direction. A COUNT of 0
3786 moves to the next token beginning only if not already at one. If
3787 BALANCED is true, move over balanced parens, otherwise move into them.
3788 Also, if BALANCED is true, never move out of an enclosing paren.
3790 LIMIT sets the limit for the movement and defaults to the point limit.
3791 The case when LIMIT is set in the middle of a token, comment or macro
3792 is handled correctly, i.e. the point won't be left there.
3794 Return the number of tokens left to move \(positive or negative). If
3795 BALANCED is true, a move over a balanced paren counts as one. Note
3796 that if COUNT is 0 and no appropriate token beginning is found, 1 will
3797 be returned. Thus, a return value of 0 guarantees that point is at
3798 the requested position and a return value less \(without signs) than
3799 COUNT guarantees that point is at the beginning of some token.
3801 Note that this function might do hidden buffer changes. See the
3802 comment at the start of cc-engine.el for more info."
3804 (or count (setq count 1))
3805 (if (< count 0)
3806 (- (c-backward-token-2 (- count) balanced limit))
3808 (let ((jump-syntax (if balanced
3809 c-jump-syntax-balanced
3810 c-jump-syntax-unbalanced))
3811 (last (point))
3812 (prev (point)))
3814 (if (zerop count)
3815 ;; If count is zero we should jump if in the middle of a token.
3816 (c-end-of-current-token))
3818 (save-restriction
3819 (if limit (narrow-to-region (point-min) limit))
3820 (if (/= (point)
3821 (progn (c-forward-syntactic-ws) (point)))
3822 ;; Skip whitespace. Count this as a move if we did in
3823 ;; fact move.
3824 (setq count (max (1- count) 0)))
3826 (if (eobp)
3827 ;; Moved out of bounds. Make sure the returned count isn't zero.
3828 (progn
3829 (if (zerop count) (setq count 1))
3830 (goto-char last))
3832 ;; Use `condition-case' to avoid having the limit tests
3833 ;; inside the loop.
3834 (condition-case nil
3835 (while (and
3836 (> count 0)
3837 (progn
3838 (setq last (point))
3839 (cond ((looking-at jump-syntax)
3840 (goto-char (scan-sexps (point) 1))
3842 ((looking-at c-nonsymbol-token-regexp)
3843 (goto-char (match-end 0))
3845 ;; `c-nonsymbol-token-regexp' above should always
3846 ;; match if there are correct tokens. Try to
3847 ;; widen to see if the limit was set in the
3848 ;; middle of one, else fall back to treating
3849 ;; the offending thing as a one character token.
3850 ((and limit
3851 (save-restriction
3852 (widen)
3853 (looking-at c-nonsymbol-token-regexp)))
3854 nil)
3856 (forward-char)
3857 t))))
3858 (c-forward-syntactic-ws)
3859 (setq prev last
3860 count (1- count)))
3861 (error (goto-char last)))
3863 (when (eobp)
3864 (goto-char prev)
3865 (setq count (1+ count)))))
3867 count)))
3869 (defun c-backward-token-2 (&optional count balanced limit)
3870 "Move backward by tokens.
3871 See `c-forward-token-2' for details."
3873 (or count (setq count 1))
3874 (if (< count 0)
3875 (- (c-forward-token-2 (- count) balanced limit))
3877 (or limit (setq limit (point-min)))
3878 (let ((jump-syntax (if balanced
3879 c-jump-syntax-balanced
3880 c-jump-syntax-unbalanced))
3881 (last (point)))
3883 (if (zerop count)
3884 ;; The count is zero so try to skip to the beginning of the
3885 ;; current token.
3886 (if (> (point)
3887 (progn (c-beginning-of-current-token) (point)))
3888 (if (< (point) limit)
3889 ;; The limit is inside the same token, so return 1.
3890 (setq count 1))
3892 ;; We're not in the middle of a token. If there's
3893 ;; whitespace after the point then we must move backward,
3894 ;; so set count to 1 in that case.
3895 (and (looking-at c-syntactic-ws-start)
3896 ;; If we're looking at a '#' that might start a cpp
3897 ;; directive then we have to do a more elaborate check.
3898 (or (/= (char-after) ?#)
3899 (not c-opt-cpp-prefix)
3900 (save-excursion
3901 (and (= (point)
3902 (progn (beginning-of-line)
3903 (looking-at "[ \t]*")
3904 (match-end 0)))
3905 (or (bobp)
3906 (progn (backward-char)
3907 (not (eq (char-before) ?\\)))))))
3908 (setq count 1))))
3910 ;; Use `condition-case' to avoid having to check for buffer
3911 ;; limits in `backward-char', `scan-sexps' and `goto-char' below.
3912 (condition-case nil
3913 (while (and
3914 (> count 0)
3915 (progn
3916 (c-backward-syntactic-ws)
3917 (backward-char)
3918 (if (looking-at jump-syntax)
3919 (goto-char (scan-sexps (1+ (point)) -1))
3920 ;; This can be very inefficient if there's a long
3921 ;; sequence of operator tokens without any separation.
3922 ;; That doesn't happen in practice, anyway.
3923 (c-beginning-of-current-token))
3924 (>= (point) limit)))
3925 (setq last (point)
3926 count (1- count)))
3927 (error (goto-char last)))
3929 (if (< (point) limit)
3930 (goto-char last))
3932 count)))
3934 (defun c-forward-token-1 (&optional count balanced limit)
3935 "Like `c-forward-token-2' but doesn't treat multicharacter operator
3936 tokens like \"==\" as single tokens, i.e. all sequences of symbol
3937 characters are jumped over character by character. This function is
3938 for compatibility only; it's only a wrapper over `c-forward-token-2'."
3939 (let ((c-nonsymbol-token-regexp "\\s.\\|\\s\(\\|\\s\)"))
3940 (c-forward-token-2 count balanced limit)))
3942 (defun c-backward-token-1 (&optional count balanced limit)
3943 "Like `c-backward-token-2' but doesn't treat multicharacter operator
3944 tokens like \"==\" as single tokens, i.e. all sequences of symbol
3945 characters are jumped over character by character. This function is
3946 for compatibility only; it's only a wrapper over `c-backward-token-2'."
3947 (let ((c-nonsymbol-token-regexp "\\s.\\|\\s\(\\|\\s\)"))
3948 (c-backward-token-2 count balanced limit)))
3951 ;; Tools for doing searches restricted to syntactically relevant text.
3953 (defun c-syntactic-re-search-forward (regexp &optional bound noerror
3954 paren-level not-inside-token
3955 lookbehind-submatch)
3956 "Like `re-search-forward', but only report matches that are found
3957 in syntactically significant text. I.e. matches in comments, macros
3958 or string literals are ignored. The start point is assumed to be
3959 outside any comment, macro or string literal, or else the content of
3960 that region is taken as syntactically significant text.
3962 If PAREN-LEVEL is non-nil, an additional restriction is added to
3963 ignore matches in nested paren sexps. The search will also not go
3964 outside the current list sexp, which has the effect that if the point
3965 should be moved to BOUND when no match is found \(i.e. NOERROR is
3966 neither nil nor t), then it will be at the closing paren if the end of
3967 the current list sexp is encountered first.
3969 If NOT-INSIDE-TOKEN is non-nil, matches in the middle of tokens are
3970 ignored. Things like multicharacter operators and special symbols
3971 \(e.g. \"`()\" in Pike) are handled but currently not floating point
3972 constants.
3974 If LOOKBEHIND-SUBMATCH is non-nil, it's taken as a number of a
3975 subexpression in REGEXP. The end of that submatch is used as the
3976 position to check for syntactic significance. If LOOKBEHIND-SUBMATCH
3977 isn't used or if that subexpression didn't match then the start
3978 position of the whole match is used instead. The \"look behind\"
3979 subexpression is never tested before the starting position, so it
3980 might be a good idea to include \\=\\= as a match alternative in it.
3982 Optimization note: Matches might be missed if the \"look behind\"
3983 subexpression can match the end of nonwhite syntactic whitespace,
3984 i.e. the end of comments or cpp directives. This since the function
3985 skips over such things before resuming the search. It's on the other
3986 hand not safe to assume that the \"look behind\" subexpression never
3987 matches syntactic whitespace.
3989 Bug: Unbalanced parens inside cpp directives are currently not handled
3990 correctly \(i.e. they don't get ignored as they should) when
3991 PAREN-LEVEL is set.
3993 Note that this function might do hidden buffer changes. See the
3994 comment at the start of cc-engine.el for more info."
3996 (or bound (setq bound (point-max)))
3997 (if paren-level (setq paren-level -1))
3999 ;;(message "c-syntactic-re-search-forward %s %s %S" (point) bound regexp)
4001 (let ((start (point))
4003 ;; Start position for the last search.
4004 search-pos
4005 ;; The `parse-partial-sexp' state between the start position
4006 ;; and the point.
4007 state
4008 ;; The current position after the last state update. The next
4009 ;; `parse-partial-sexp' continues from here.
4010 (state-pos (point))
4011 ;; The position at which to check the state and the state
4012 ;; there. This is separate from `state-pos' since we might
4013 ;; need to back up before doing the next search round.
4014 check-pos check-state
4015 ;; Last position known to end a token.
4016 (last-token-end-pos (point-min))
4017 ;; Set when a valid match is found.
4018 found)
4020 (condition-case err
4021 (while
4022 (and
4023 (progn
4024 (setq search-pos (point))
4025 (re-search-forward regexp bound noerror))
4027 (progn
4028 (setq state (parse-partial-sexp
4029 state-pos (match-beginning 0) paren-level nil state)
4030 state-pos (point))
4031 (if (setq check-pos (and lookbehind-submatch
4032 (or (not paren-level)
4033 (>= (car state) 0))
4034 (match-end lookbehind-submatch)))
4035 (setq check-state (parse-partial-sexp
4036 state-pos check-pos paren-level nil state))
4037 (setq check-pos state-pos
4038 check-state state))
4040 ;; NOTE: If we got a look behind subexpression and get
4041 ;; an insignificant match in something that isn't
4042 ;; syntactic whitespace (i.e. strings or in nested
4043 ;; parentheses), then we can never skip more than a
4044 ;; single character from the match start position
4045 ;; (i.e. `state-pos' here) before continuing the
4046 ;; search. That since the look behind subexpression
4047 ;; might match the end of the insignificant region in
4048 ;; the next search.
4050 (cond
4051 ((elt check-state 7)
4052 ;; Match inside a line comment. Skip to eol. Use
4053 ;; `re-search-forward' instead of `skip-chars-forward' to get
4054 ;; the right bound behavior.
4055 (re-search-forward "[\n\r]" bound noerror))
4057 ((elt check-state 4)
4058 ;; Match inside a block comment. Skip to the '*/'.
4059 (search-forward "*/" bound noerror))
4061 ((and (not (elt check-state 5))
4062 (eq (char-before check-pos) ?/)
4063 (not (c-get-char-property (1- check-pos) 'syntax-table))
4064 (memq (char-after check-pos) '(?/ ?*)))
4065 ;; Match in the middle of the opener of a block or line
4066 ;; comment.
4067 (if (= (char-after check-pos) ?/)
4068 (re-search-forward "[\n\r]" bound noerror)
4069 (search-forward "*/" bound noerror)))
4071 ;; The last `parse-partial-sexp' above might have
4072 ;; stopped short of the real check position if the end
4073 ;; of the current sexp was encountered in paren-level
4074 ;; mode. The checks above are always false in that
4075 ;; case, and since they can do better skipping in
4076 ;; lookbehind-submatch mode, we do them before
4077 ;; checking the paren level.
4079 ((and paren-level
4080 (/= (setq tmp (car check-state)) 0))
4081 ;; Check the paren level first since we're short of the
4082 ;; syntactic checking position if the end of the
4083 ;; current sexp was encountered by `parse-partial-sexp'.
4084 (if (> tmp 0)
4086 ;; Inside a nested paren sexp.
4087 (if lookbehind-submatch
4088 ;; See the NOTE above.
4089 (progn (goto-char state-pos) t)
4090 ;; Skip out of the paren quickly.
4091 (setq state (parse-partial-sexp state-pos bound 0 nil state)
4092 state-pos (point)))
4094 ;; Have exited the current paren sexp.
4095 (if noerror
4096 (progn
4097 ;; The last `parse-partial-sexp' call above
4098 ;; has left us just after the closing paren
4099 ;; in this case, so we can modify the bound
4100 ;; to leave the point at the right position
4101 ;; upon return.
4102 (setq bound (1- (point)))
4103 nil)
4104 (signal 'search-failed (list regexp)))))
4106 ((setq tmp (elt check-state 3))
4107 ;; Match inside a string.
4108 (if (or lookbehind-submatch
4109 (not (integerp tmp)))
4110 ;; See the NOTE above.
4111 (progn (goto-char state-pos) t)
4112 ;; Skip to the end of the string before continuing.
4113 (let ((ender (make-string 1 tmp)) (continue t))
4114 (while (if (search-forward ender bound noerror)
4115 (progn
4116 (setq state (parse-partial-sexp
4117 state-pos (point) nil nil state)
4118 state-pos (point))
4119 (elt state 3))
4120 (setq continue nil)))
4121 continue)))
4123 ((save-excursion
4124 (save-match-data
4125 (c-beginning-of-macro start)))
4126 ;; Match inside a macro. Skip to the end of it.
4127 (c-end-of-macro)
4128 (cond ((<= (point) bound) t)
4129 (noerror nil)
4130 (t (signal 'search-failed (list regexp)))))
4132 ((and not-inside-token
4133 (or (< check-pos last-token-end-pos)
4134 (< check-pos
4135 (save-excursion
4136 (goto-char check-pos)
4137 (save-match-data
4138 (c-end-of-current-token last-token-end-pos))
4139 (setq last-token-end-pos (point))))))
4140 ;; Inside a token.
4141 (if lookbehind-submatch
4142 ;; See the NOTE above.
4143 (goto-char state-pos)
4144 (goto-char (min last-token-end-pos bound))))
4147 ;; A real match.
4148 (setq found t)
4149 nil)))
4151 ;; Should loop to search again, but take care to avoid
4152 ;; looping on the same spot.
4153 (or (/= search-pos (point))
4154 (if (= (point) bound)
4155 (if noerror
4157 (signal 'search-failed (list regexp)))
4158 (forward-char)
4159 t))))
4161 (error
4162 (goto-char start)
4163 (signal (car err) (cdr err))))
4165 ;;(message "c-syntactic-re-search-forward done %s" (or (match-end 0) (point)))
4167 (if found
4168 (progn
4169 (goto-char (match-end 0))
4170 (match-end 0))
4172 ;; Search failed. Set point as appropriate.
4173 (if (eq noerror t)
4174 (goto-char start)
4175 (goto-char bound))
4176 nil)))
4178 (defvar safe-pos-list) ; bound in c-syntactic-skip-backward
4180 (defsubst c-ssb-lit-begin ()
4181 ;; Return the start of the literal point is in, or nil.
4182 ;; We read and write the variables `safe-pos', `safe-pos-list', `state'
4183 ;; bound in the caller.
4185 ;; Use `parse-partial-sexp' from a safe position down to the point to check
4186 ;; if it's outside comments and strings.
4187 (save-excursion
4188 (let ((pos (point)) safe-pos state pps-end-pos)
4189 ;; Pick a safe position as close to the point as possible.
4191 ;; FIXME: Consult `syntax-ppss' here if our cache doesn't give a good
4192 ;; position.
4194 (while (and safe-pos-list
4195 (> (car safe-pos-list) (point)))
4196 (setq safe-pos-list (cdr safe-pos-list)))
4197 (unless (setq safe-pos (car-safe safe-pos-list))
4198 (setq safe-pos (max (or (c-safe-position
4199 (point) (or c-state-cache
4200 (c-parse-state)))
4202 (point-min))
4203 safe-pos-list (list safe-pos)))
4205 ;; Cache positions along the way to use if we have to back up more. We
4206 ;; cache every closing paren on the same level. If the paren cache is
4207 ;; relevant in this region then we're typically already on the same
4208 ;; level as the target position. Note that we might cache positions
4209 ;; after opening parens in case safe-pos is in a nested list. That's
4210 ;; both uncommon and harmless.
4211 (while (progn
4212 (setq state (parse-partial-sexp
4213 safe-pos pos 0))
4214 (< (point) pos))
4215 (setq safe-pos (point)
4216 safe-pos-list (cons safe-pos safe-pos-list)))
4218 ;; If the state contains the start of the containing sexp we cache that
4219 ;; position too, so that parse-partial-sexp in the next run has a bigger
4220 ;; chance of starting at the same level as the target position and thus
4221 ;; will get more good safe positions into the list.
4222 (if (elt state 1)
4223 (setq safe-pos (1+ (elt state 1))
4224 safe-pos-list (cons safe-pos safe-pos-list)))
4226 (if (or (elt state 3) (elt state 4))
4227 ;; Inside string or comment. Continue search at the
4228 ;; beginning of it.
4229 (elt state 8)))))
4231 (defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4232 "Like `skip-chars-backward' but only look at syntactically relevant chars,
4233 i.e. don't stop at positions inside syntactic whitespace or string
4234 literals. Preprocessor directives are also ignored, with the exception
4235 of the one that the point starts within, if any. If LIMIT is given,
4236 it's assumed to be at a syntactically relevant position.
4238 If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4239 sexps, and the search will also not go outside the current paren sexp.
4240 However, if LIMIT or the buffer limit is reached inside a nested paren
4241 then the point will be left at the limit.
4243 Non-nil is returned if the point moved, nil otherwise.
4245 Note that this function might do hidden buffer changes. See the
4246 comment at the start of cc-engine.el for more info."
4248 (let ((start (point))
4249 state-2
4250 ;; A list of syntactically relevant positions in descending
4251 ;; order. It's used to avoid scanning repeatedly over
4252 ;; potentially large regions with `parse-partial-sexp' to verify
4253 ;; each position. Used in `c-ssb-lit-begin'
4254 safe-pos-list
4255 ;; The result from `c-beginning-of-macro' at the start position or the
4256 ;; start position itself if it isn't within a macro. Evaluated on
4257 ;; demand.
4258 start-macro-beg
4259 ;; The earliest position after the current one with the same paren
4260 ;; level. Used only when `paren-level' is set.
4261 lit-beg
4262 (paren-level-pos (point)))
4264 (while
4265 (progn
4266 ;; The next loop "tries" to find the end point each time round,
4267 ;; loops when it hasn't succeeded.
4268 (while
4269 (and
4270 (< (skip-chars-backward skip-chars limit) 0)
4272 (let ((pos (point)) state-2 pps-end-pos)
4274 (cond
4275 ;; Don't stop inside a literal
4276 ((setq lit-beg (c-ssb-lit-begin))
4277 (goto-char lit-beg)
4280 ((and paren-level
4281 (save-excursion
4282 (setq state-2 (parse-partial-sexp
4283 pos paren-level-pos -1)
4284 pps-end-pos (point))
4285 (/= (car state-2) 0)))
4286 ;; Not at the right level.
4288 (if (and (< (car state-2) 0)
4289 ;; We stop above if we go out of a paren.
4290 ;; Now check whether it precedes or is
4291 ;; nested in the starting sexp.
4292 (save-excursion
4293 (setq state-2
4294 (parse-partial-sexp
4295 pps-end-pos paren-level-pos
4296 nil nil state-2))
4297 (< (car state-2) 0)))
4299 ;; We've stopped short of the starting position
4300 ;; so the hit was inside a nested list. Go up
4301 ;; until we are at the right level.
4302 (condition-case nil
4303 (progn
4304 (goto-char (scan-lists pos -1
4305 (- (car state-2))))
4306 (setq paren-level-pos (point))
4307 (if (and limit (>= limit paren-level-pos))
4308 (progn
4309 (goto-char limit)
4310 nil)
4312 (error
4313 (goto-char (or limit (point-min)))
4314 nil))
4316 ;; The hit was outside the list at the start
4317 ;; position. Go to the start of the list and exit.
4318 (goto-char (1+ (elt state-2 1)))
4319 nil))
4321 ((c-beginning-of-macro limit)
4322 ;; Inside a macro.
4323 (if (< (point)
4324 (or start-macro-beg
4325 (setq start-macro-beg
4326 (save-excursion
4327 (goto-char start)
4328 (c-beginning-of-macro limit)
4329 (point)))))
4332 ;; It's inside the same macro we started in so it's
4333 ;; a relevant match.
4334 (goto-char pos)
4335 nil))))))
4337 (> (point)
4338 (progn
4339 ;; Skip syntactic ws afterwards so that we don't stop at the
4340 ;; end of a comment if `skip-chars' is something like "^/".
4341 (c-backward-syntactic-ws)
4342 (point)))))
4344 ;; We might want to extend this with more useful return values in
4345 ;; the future.
4346 (/= (point) start)))
4348 ;; The following is an alternative implementation of
4349 ;; `c-syntactic-skip-backward' that uses backward movement to keep
4350 ;; track of the syntactic context. It turned out to be generally
4351 ;; slower than the one above which uses forward checks from earlier
4352 ;; safe positions.
4354 ;;(defconst c-ssb-stop-re
4355 ;; ;; The regexp matching chars `c-syntactic-skip-backward' needs to
4356 ;; ;; stop at to avoid going into comments and literals.
4357 ;; (concat
4358 ;; ;; Match comment end syntax and string literal syntax. Also match
4359 ;; ;; '/' for block comment endings (not covered by comment end
4360 ;; ;; syntax).
4361 ;; "\\s>\\|/\\|\\s\""
4362 ;; (if (memq 'gen-string-delim c-emacs-features)
4363 ;; "\\|\\s|"
4364 ;; "")
4365 ;; (if (memq 'gen-comment-delim c-emacs-features)
4366 ;; "\\|\\s!"
4367 ;; "")))
4369 ;;(defconst c-ssb-stop-paren-re
4370 ;; ;; Like `c-ssb-stop-re' but also stops at paren chars.
4371 ;; (concat c-ssb-stop-re "\\|\\s(\\|\\s)"))
4373 ;;(defconst c-ssb-sexp-end-re
4374 ;; ;; Regexp matching the ending syntax of a complex sexp.
4375 ;; (concat c-string-limit-regexp "\\|\\s)"))
4377 ;;(defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4378 ;; "Like `skip-chars-backward' but only look at syntactically relevant chars,
4379 ;;i.e. don't stop at positions inside syntactic whitespace or string
4380 ;;literals. Preprocessor directives are also ignored. However, if the
4381 ;;point is within a comment, string literal or preprocessor directory to
4382 ;;begin with, its contents is treated as syntactically relevant chars.
4383 ;;If LIMIT is given, it limits the backward search and the point will be
4384 ;;left there if no earlier position is found.
4386 ;;If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4387 ;;sexps, and the search will also not go outside the current paren sexp.
4388 ;;However, if LIMIT or the buffer limit is reached inside a nested paren
4389 ;;then the point will be left at the limit.
4391 ;;Non-nil is returned if the point moved, nil otherwise.
4393 ;;Note that this function might do hidden buffer changes. See the
4394 ;;comment at the start of cc-engine.el for more info."
4396 ;; (save-restriction
4397 ;; (when limit
4398 ;; (narrow-to-region limit (point-max)))
4400 ;; (let ((start (point)))
4401 ;; (catch 'done
4402 ;; (while (let ((last-pos (point))
4403 ;; (stop-pos (progn
4404 ;; (skip-chars-backward skip-chars)
4405 ;; (point))))
4407 ;; ;; Skip back over the same region as
4408 ;; ;; `skip-chars-backward' above, but keep to
4409 ;; ;; syntactically relevant positions.
4410 ;; (goto-char last-pos)
4411 ;; (while (and
4412 ;; ;; `re-search-backward' with a single char regexp
4413 ;; ;; should be fast.
4414 ;; (re-search-backward
4415 ;; (if paren-level c-ssb-stop-paren-re c-ssb-stop-re)
4416 ;; stop-pos 'move)
4418 ;; (progn
4419 ;; (cond
4420 ;; ((looking-at "\\s(")
4421 ;; ;; `paren-level' is set and we've found the
4422 ;; ;; start of the containing paren.
4423 ;; (forward-char)
4424 ;; (throw 'done t))
4426 ;; ((looking-at c-ssb-sexp-end-re)
4427 ;; ;; We're at the end of a string literal or paren
4428 ;; ;; sexp (if `paren-level' is set).
4429 ;; (forward-char)
4430 ;; (condition-case nil
4431 ;; (c-backward-sexp)
4432 ;; (error
4433 ;; (goto-char limit)
4434 ;; (throw 'done t))))
4436 ;; (t
4437 ;; (forward-char)
4438 ;; ;; At the end of some syntactic ws or possibly
4439 ;; ;; after a plain '/' operator.
4440 ;; (let ((pos (point)))
4441 ;; (c-backward-syntactic-ws)
4442 ;; (if (= pos (point))
4443 ;; ;; Was a plain '/' operator. Go past it.
4444 ;; (backward-char)))))
4446 ;; (> (point) stop-pos))))
4448 ;; ;; Now the point is either at `stop-pos' or at some
4449 ;; ;; position further back if `stop-pos' was at a
4450 ;; ;; syntactically irrelevant place.
4452 ;; ;; Skip additional syntactic ws so that we don't stop
4453 ;; ;; at the end of a comment if `skip-chars' is
4454 ;; ;; something like "^/".
4455 ;; (c-backward-syntactic-ws)
4457 ;; (< (point) stop-pos))))
4459 ;; ;; We might want to extend this with more useful return values
4460 ;; ;; in the future.
4461 ;; (/= (point) start))))
4464 ;; Tools for handling comments and string literals.
4466 (defun c-in-literal (&optional lim detect-cpp)
4467 "Return the type of literal point is in, if any.
4468 The return value is `c' if in a C-style comment, `c++' if in a C++
4469 style comment, `string' if in a string literal, `pound' if DETECT-CPP
4470 is non-nil and in a preprocessor line, or nil if somewhere else.
4471 Optional LIM is used as the backward limit of the search. If omitted,
4472 or nil, `c-beginning-of-defun' is used.
4474 The last point calculated is cached if the cache is enabled, i.e. if
4475 `c-in-literal-cache' is bound to a two element vector.
4477 Note that this function might do hidden buffer changes. See the
4478 comment at the start of cc-engine.el for more info."
4479 (save-restriction
4480 (widen)
4481 (let* ((safe-place (c-state-semi-safe-place (point)))
4482 (lit (c-state-pp-to-literal safe-place (point))))
4483 (or (cadr lit)
4484 (and detect-cpp
4485 (save-excursion (c-beginning-of-macro))
4486 'pound)))))
4488 (defun c-literal-limits (&optional lim near not-in-delimiter)
4489 "Return a cons of the beginning and end positions of the comment or
4490 string surrounding point (including both delimiters), or nil if point
4491 isn't in one. If LIM is non-nil, it's used as the \"safe\" position
4492 to start parsing from. If NEAR is non-nil, then the limits of any
4493 literal next to point is returned. \"Next to\" means there's only
4494 spaces and tabs between point and the literal. The search for such a
4495 literal is done first in forward direction. If NOT-IN-DELIMITER is
4496 non-nil, the case when point is inside a starting delimiter won't be
4497 recognized. This only has effect for comments which have starting
4498 delimiters with more than one character.
4500 Note that this function might do hidden buffer changes. See the
4501 comment at the start of cc-engine.el for more info."
4503 (save-excursion
4504 (let* ((pos (point))
4505 (lim (or lim (c-state-semi-safe-place pos)))
4506 (pp-to-lit (save-restriction
4507 (widen)
4508 (c-state-pp-to-literal lim pos not-in-delimiter)))
4509 (state (car pp-to-lit))
4510 (lit-limits (car (cddr pp-to-lit))))
4512 (cond
4513 (lit-limits)
4515 (near
4516 (goto-char pos)
4517 ;; Search forward for a literal.
4518 (skip-chars-forward " \t")
4519 (cond
4520 ((looking-at c-string-limit-regexp) ; String.
4521 (cons (point) (or (c-safe (c-forward-sexp 1) (point))
4522 (point-max))))
4524 ((looking-at c-comment-start-regexp) ; Line or block comment.
4525 (cons (point) (progn (c-forward-single-comment) (point))))
4528 ;; Search backward.
4529 (skip-chars-backward " \t")
4531 (let ((end (point)) beg)
4532 (cond
4533 ((save-excursion
4534 (< (skip-syntax-backward c-string-syntax) 0)) ; String.
4535 (setq beg (c-safe (c-backward-sexp 1) (point))))
4537 ((and (c-safe (forward-char -2) t)
4538 (looking-at "*/"))
4539 ;; Block comment. Due to the nature of line
4540 ;; comments, they will always be covered by the
4541 ;; normal case above.
4542 (goto-char end)
4543 (c-backward-single-comment)
4544 ;; If LIM is bogus, beg will be bogus.
4545 (setq beg (point))))
4547 (if beg (cons beg end))))))
4548 ))))
4550 ;; In case external callers use this; it did have a docstring.
4551 (defalias 'c-literal-limits-fast 'c-literal-limits)
4553 (defun c-collect-line-comments (range)
4554 "If the argument is a cons of two buffer positions (such as returned by
4555 `c-literal-limits'), and that range contains a C++ style line comment,
4556 then an extended range is returned that contains all adjacent line
4557 comments (i.e. all comments that starts in the same column with no
4558 empty lines or non-whitespace characters between them). Otherwise the
4559 argument is returned.
4561 Note that this function might do hidden buffer changes. See the
4562 comment at the start of cc-engine.el for more info."
4564 (save-excursion
4565 (condition-case nil
4566 (if (and (consp range) (progn
4567 (goto-char (car range))
4568 (looking-at c-line-comment-starter)))
4569 (let ((col (current-column))
4570 (beg (point))
4571 (bopl (c-point 'bopl))
4572 (end (cdr range)))
4573 ;; Got to take care in the backward direction to handle
4574 ;; comments which are preceded by code.
4575 (while (and (c-backward-single-comment)
4576 (>= (point) bopl)
4577 (looking-at c-line-comment-starter)
4578 (= col (current-column)))
4579 (setq beg (point)
4580 bopl (c-point 'bopl)))
4581 (goto-char end)
4582 (while (and (progn (skip-chars-forward " \t")
4583 (looking-at c-line-comment-starter))
4584 (= col (current-column))
4585 (prog1 (zerop (forward-line 1))
4586 (setq end (point)))))
4587 (cons beg end))
4588 range)
4589 (error range))))
4591 (defun c-literal-type (range)
4592 "Convenience function that given the result of `c-literal-limits',
4593 returns nil or the type of literal that the range surrounds, one
4594 of the symbols 'c, 'c++ or 'string. It's much faster than using
4595 `c-in-literal' and is intended to be used when you need both the
4596 type of a literal and its limits.
4598 Note that this function might do hidden buffer changes. See the
4599 comment at the start of cc-engine.el for more info."
4601 (if (consp range)
4602 (save-excursion
4603 (goto-char (car range))
4604 (cond ((looking-at c-string-limit-regexp) 'string)
4605 ((or (looking-at "//") ; c++ line comment
4606 (and (looking-at "\\s<") ; comment starter
4607 (looking-at "#"))) ; awk comment.
4608 'c++)
4609 (t 'c))) ; Assuming the range is valid.
4610 range))
4612 (defsubst c-determine-limit-get-base (start try-size)
4613 ;; Get a "safe place" approximately TRY-SIZE characters before START.
4614 ;; This doesn't preserve point.
4615 (let* ((pos (max (- start try-size) (point-min)))
4616 (base (c-state-semi-safe-place pos))
4617 (s (parse-partial-sexp base pos)))
4618 (if (or (nth 4 s) (nth 3 s)) ; comment or string
4619 (nth 8 s)
4620 (point))))
4622 (defun c-determine-limit (how-far-back &optional start try-size)
4623 ;; Return a buffer position HOW-FAR-BACK non-literal characters from START
4624 ;; (default point). This is done by going back further in the buffer then
4625 ;; searching forward for literals. The position found won't be in a
4626 ;; literal. We start searching for the sought position TRY-SIZE (default
4627 ;; twice HOW-FAR-BACK) bytes back from START. This function must be fast.
4628 ;; :-)
4629 (save-excursion
4630 (let* ((start (or start (point)))
4631 (try-size (or try-size (* 2 how-far-back)))
4632 (base (c-determine-limit-get-base start try-size))
4633 (pos base)
4635 (s (parse-partial-sexp pos pos)) ; null state.
4636 stack elt size
4637 (count 0))
4638 (while (< pos start)
4639 ;; Move forward one literal each time round this loop.
4640 ;; Move forward to the start of a comment or string.
4641 (setq s (parse-partial-sexp
4643 start
4644 nil ; target-depth
4645 nil ; stop-before
4646 s ; state
4647 'syntax-table)) ; stop-comment
4649 ;; Gather details of the non-literal-bit - starting pos and size.
4650 (setq size (- (if (or (nth 4 s) (nth 3 s))
4651 (nth 8 s)
4652 (point))
4653 pos))
4654 (if (> size 0)
4655 (setq stack (cons (cons pos size) stack)))
4657 ;; Move forward to the end of the comment/string.
4658 (if (or (nth 4 s) (nth 3 s))
4659 (setq s (parse-partial-sexp
4660 (point)
4661 start
4662 nil ; target-depth
4663 nil ; stop-before
4664 s ; state
4665 'syntax-table))) ; stop-comment
4666 (setq pos (point)))
4668 ;; Now try and find enough non-literal characters recorded on the stack.
4669 ;; Go back one recorded literal each time round this loop.
4670 (while (and (< count how-far-back)
4671 stack)
4672 (setq elt (car stack)
4673 stack (cdr stack))
4674 (setq count (+ count (cdr elt))))
4676 ;; Have we found enough yet?
4677 (cond
4678 ((>= count how-far-back)
4679 (+ (car elt) (- count how-far-back)))
4680 ((eq base (point-min))
4681 (point-min))
4683 (c-determine-limit (- how-far-back count) base try-size))))))
4685 (defun c-determine-+ve-limit (how-far &optional start-pos)
4686 ;; Return a buffer position about HOW-FAR non-literal characters forward
4687 ;; from START-POS (default point), which must not be inside a literal.
4688 (save-excursion
4689 (let ((pos (or start-pos (point)))
4690 (count how-far)
4691 (s (parse-partial-sexp (point) (point)))) ; null state
4692 (while (and (not (eobp))
4693 (> count 0))
4694 ;; Scan over counted characters.
4695 (setq s (parse-partial-sexp
4697 (min (+ pos count) (point-max))
4698 nil ; target-depth
4699 nil ; stop-before
4700 s ; state
4701 'syntax-table)) ; stop-comment
4702 (setq count (- count (- (point) pos) 1)
4703 pos (point))
4704 ;; Scan over literal characters.
4705 (if (nth 8 s)
4706 (setq s (parse-partial-sexp
4708 (point-max)
4709 nil ; target-depth
4710 nil ; stop-before
4711 s ; state
4712 'syntax-table) ; stop-comment
4713 pos (point))))
4714 (point))))
4717 ;; `c-find-decl-spots' and accompanying stuff.
4719 ;; Variables used in `c-find-decl-spots' to cache the search done for
4720 ;; the first declaration in the last call. When that function starts,
4721 ;; it needs to back up over syntactic whitespace to look at the last
4722 ;; token before the region being searched. That can sometimes cause
4723 ;; moves back and forth over a quite large region of comments and
4724 ;; macros, which would be repeated for each changed character when
4725 ;; we're called during fontification, since font-lock refontifies the
4726 ;; current line for each change. Thus it's worthwhile to cache the
4727 ;; first match.
4729 ;; `c-find-decl-syntactic-pos' is a syntactically relevant position in
4730 ;; the syntactic whitespace less or equal to some start position.
4731 ;; There's no cached value if it's nil.
4733 ;; `c-find-decl-match-pos' is the match position if
4734 ;; `c-find-decl-prefix-search' matched before the syntactic whitespace
4735 ;; at `c-find-decl-syntactic-pos', or nil if there's no such match.
4736 (defvar c-find-decl-syntactic-pos nil)
4737 (make-variable-buffer-local 'c-find-decl-syntactic-pos)
4738 (defvar c-find-decl-match-pos nil)
4739 (make-variable-buffer-local 'c-find-decl-match-pos)
4741 (defsubst c-invalidate-find-decl-cache (change-min-pos)
4742 (and c-find-decl-syntactic-pos
4743 (< change-min-pos c-find-decl-syntactic-pos)
4744 (setq c-find-decl-syntactic-pos nil)))
4746 ; (defface c-debug-decl-spot-face
4747 ; '((t (:background "Turquoise")))
4748 ; "Debug face to mark the spots where `c-find-decl-spots' stopped.")
4749 ; (defface c-debug-decl-sws-face
4750 ; '((t (:background "Khaki")))
4751 ; "Debug face to mark the syntactic whitespace between the declaration
4752 ; spots and the preceding token end.")
4754 (defmacro c-debug-put-decl-spot-faces (match-pos decl-pos)
4755 (when (facep 'c-debug-decl-spot-face)
4756 `(c-save-buffer-state ((match-pos ,match-pos) (decl-pos ,decl-pos))
4757 (c-debug-add-face (max match-pos (point-min)) decl-pos
4758 'c-debug-decl-sws-face)
4759 (c-debug-add-face decl-pos (min (1+ decl-pos) (point-max))
4760 'c-debug-decl-spot-face))))
4761 (defmacro c-debug-remove-decl-spot-faces (beg end)
4762 (when (facep 'c-debug-decl-spot-face)
4763 `(c-save-buffer-state ()
4764 (c-debug-remove-face ,beg ,end 'c-debug-decl-spot-face)
4765 (c-debug-remove-face ,beg ,end 'c-debug-decl-sws-face))))
4767 (defmacro c-find-decl-prefix-search ()
4768 ;; Macro used inside `c-find-decl-spots'. It ought to be a defun,
4769 ;; but it contains lots of free variables that refer to things
4770 ;; inside `c-find-decl-spots'. The point is left at `cfd-match-pos'
4771 ;; if there is a match, otherwise at `cfd-limit'.
4773 ;; The macro moves point forward to the next putative start of a declaration
4774 ;; or cfd-limit. This decl start is the next token after a "declaration
4775 ;; prefix". The declaration prefix is the earlier of `cfd-prop-match' and
4776 ;; `cfd-re-match'. `cfd-match-pos' is set to the decl prefix.
4778 ;; This macro might do hidden buffer changes.
4780 '(progn
4781 ;; Find the next property match position if we haven't got one already.
4782 (unless cfd-prop-match
4783 (save-excursion
4784 (while (progn
4785 (goto-char (next-single-property-change
4786 (point) 'c-type nil cfd-limit))
4787 (and (< (point) cfd-limit)
4788 (not (eq (c-get-char-property (1- (point)) 'c-type)
4789 'c-decl-end)))))
4790 (setq cfd-prop-match (point))))
4792 ;; Find the next `c-decl-prefix-or-start-re' match if we haven't
4793 ;; got one already.
4794 (unless cfd-re-match
4796 (if (> cfd-re-match-end (point))
4797 (goto-char cfd-re-match-end))
4799 ;; Each time round, the next `while' moves forward over a pseudo match
4800 ;; of `c-decl-prefix-or-start-re' which is either inside a literal, or
4801 ;; is a ":" not preceded by "public", etc.. `cfd-re-match' and
4802 ;; `cfd-re-match-end' get set.
4803 (while
4804 (progn
4805 (setq cfd-re-match-end (re-search-forward c-decl-prefix-or-start-re
4806 cfd-limit 'move))
4807 (cond
4808 ((null cfd-re-match-end)
4809 ;; No match. Finish up and exit the loop.
4810 (setq cfd-re-match cfd-limit)
4811 nil)
4812 ((c-got-face-at
4813 (if (setq cfd-re-match (match-end 1))
4814 ;; Matched the end of a token preceding a decl spot.
4815 (progn
4816 (goto-char cfd-re-match)
4817 (1- cfd-re-match))
4818 ;; Matched a token that start a decl spot.
4819 (goto-char (match-beginning 0))
4820 (point))
4821 c-literal-faces)
4822 ;; Pseudo match inside a comment or string literal. Skip out
4823 ;; of comments and string literals.
4824 (while (progn
4825 (goto-char (next-single-property-change
4826 (point) 'face nil cfd-limit))
4827 (and (< (point) cfd-limit)
4828 (c-got-face-at (point) c-literal-faces))))
4829 t) ; Continue the loop over pseudo matches.
4830 ((and (match-string 1)
4831 (string= (match-string 1) ":")
4832 (save-excursion
4833 (or (/= (c-backward-token-2 2) 0) ; no search limit. :-(
4834 (not (looking-at c-decl-start-colon-kwd-re)))))
4835 ;; Found a ":" which isn't part of "public:", etc.
4837 (t nil)))) ;; Found a real match. Exit the pseudo-match loop.
4839 ;; If our match was at the decl start, we have to back up over the
4840 ;; preceding syntactic ws to set `cfd-match-pos' and to catch
4841 ;; any decl spots in the syntactic ws.
4842 (unless cfd-re-match
4843 (c-backward-syntactic-ws)
4844 (setq cfd-re-match (point))))
4846 ;; Choose whichever match is closer to the start.
4847 (if (< cfd-re-match cfd-prop-match)
4848 (setq cfd-match-pos cfd-re-match
4849 cfd-re-match nil)
4850 (setq cfd-match-pos cfd-prop-match
4851 cfd-prop-match nil))
4853 (goto-char cfd-match-pos)
4855 (when (< cfd-match-pos cfd-limit)
4856 ;; Skip forward past comments only so we don't skip macros.
4857 (c-forward-comments)
4858 ;; Set the position to continue at. We can avoid going over
4859 ;; the comments skipped above a second time, but it's possible
4860 ;; that the comment skipping has taken us past `cfd-prop-match'
4861 ;; since the property might be used inside comments.
4862 (setq cfd-continue-pos (if cfd-prop-match
4863 (min cfd-prop-match (point))
4864 (point))))))
4866 (defun c-find-decl-spots (cfd-limit cfd-decl-re cfd-face-checklist cfd-fun)
4867 ;; Call CFD-FUN for each possible spot for a declaration, cast or
4868 ;; label from the point to CFD-LIMIT.
4870 ;; CFD-FUN is called with point at the start of the spot. It's passed two
4871 ;; arguments: The first is the end position of the token preceding the spot,
4872 ;; or 0 for the implicit match at bob. The second is a flag that is t when
4873 ;; the match is inside a macro. Point should be moved forward by at least
4874 ;; one token.
4876 ;; If CFD-FUN adds `c-decl-end' properties somewhere below the current spot,
4877 ;; it should return non-nil to ensure that the next search will find them.
4879 ;; Such a spot is:
4880 ;; o The first token after bob.
4881 ;; o The first token after the end of submatch 1 in
4882 ;; `c-decl-prefix-or-start-re' when that submatch matches.
4883 ;; o The start of each `c-decl-prefix-or-start-re' match when
4884 ;; submatch 1 doesn't match.
4885 ;; o The first token after the end of each occurrence of the
4886 ;; `c-type' text property with the value `c-decl-end', provided
4887 ;; `c-type-decl-end-used' is set.
4889 ;; Only a spot that match CFD-DECL-RE and whose face is in the
4890 ;; CFD-FACE-CHECKLIST list causes CFD-FUN to be called. The face
4891 ;; check is disabled if CFD-FACE-CHECKLIST is nil.
4893 ;; If the match is inside a macro then the buffer is narrowed to the
4894 ;; end of it, so that CFD-FUN can investigate the following tokens
4895 ;; without matching something that begins inside a macro and ends
4896 ;; outside it. It's to avoid this work that the CFD-DECL-RE and
4897 ;; CFD-FACE-CHECKLIST checks exist.
4899 ;; The spots are visited approximately in order from top to bottom.
4900 ;; It's however the positions where `c-decl-prefix-or-start-re'
4901 ;; matches and where `c-decl-end' properties are found that are in
4902 ;; order. Since the spots often are at the following token, they
4903 ;; might be visited out of order insofar as more spots are reported
4904 ;; later on within the syntactic whitespace between the match
4905 ;; positions and their spots.
4907 ;; It's assumed that comments and strings are fontified in the
4908 ;; searched range.
4910 ;; This is mainly used in fontification, and so has an elaborate
4911 ;; cache to handle repeated calls from the same start position; see
4912 ;; the variables above.
4914 ;; All variables in this function begin with `cfd-' to avoid name
4915 ;; collision with the (dynamically bound) variables used in CFD-FUN.
4917 ;; This function might do hidden buffer changes.
4919 (let ((cfd-start-pos (point))
4920 (cfd-buffer-end (point-max))
4921 ;; The end of the token preceding the decl spot last found
4922 ;; with `c-decl-prefix-or-start-re'. `cfd-limit' if there's
4923 ;; no match.
4924 cfd-re-match
4925 ;; The end position of the last `c-decl-prefix-or-start-re'
4926 ;; match. If this is greater than `cfd-continue-pos', the
4927 ;; next regexp search is started here instead.
4928 (cfd-re-match-end (point-min))
4929 ;; The end of the last `c-decl-end' found by
4930 ;; `c-find-decl-prefix-search'. `cfd-limit' if there's no
4931 ;; match. If searching for the property isn't needed then we
4932 ;; disable it by setting it to `cfd-limit' directly.
4933 (cfd-prop-match (unless c-type-decl-end-used cfd-limit))
4934 ;; The end of the token preceding the decl spot last found by
4935 ;; `c-find-decl-prefix-search'. 0 for the implicit match at
4936 ;; bob. `cfd-limit' if there's no match. In other words,
4937 ;; this is the minimum of `cfd-re-match' and `cfd-prop-match'.
4938 (cfd-match-pos cfd-limit)
4939 ;; The position to continue searching at.
4940 cfd-continue-pos
4941 ;; The position of the last "real" token we've stopped at.
4942 ;; This can be greater than `cfd-continue-pos' when we get
4943 ;; hits inside macros or at `c-decl-end' positions inside
4944 ;; comments.
4945 (cfd-token-pos 0)
4946 ;; The end position of the last entered macro.
4947 (cfd-macro-end 0))
4949 ;; Initialize by finding a syntactically relevant start position
4950 ;; before the point, and do the first `c-decl-prefix-or-start-re'
4951 ;; search unless we're at bob.
4953 (let (start-in-literal start-in-macro syntactic-pos)
4954 ;; Must back up a bit since we look for the end of the previous
4955 ;; statement or declaration, which is earlier than the first
4956 ;; returned match.
4958 (cond
4959 ;; First we need to move to a syntactically relevant position.
4960 ;; Begin by backing out of comment or string literals.
4961 ((and
4962 (when (c-got-face-at (point) c-literal-faces)
4963 ;; Try to use the faces to back up to the start of the
4964 ;; literal. FIXME: What if the point is on a declaration
4965 ;; inside a comment?
4966 (while (and (not (bobp))
4967 (c-got-face-at (1- (point)) c-literal-faces))
4968 (goto-char (previous-single-property-change
4969 (point) 'face nil (point-min))))
4971 ;; XEmacs doesn't fontify the quotes surrounding string
4972 ;; literals.
4973 (and (featurep 'xemacs)
4974 (eq (get-text-property (point) 'face)
4975 'font-lock-string-face)
4976 (not (bobp))
4977 (progn (backward-char)
4978 (not (looking-at c-string-limit-regexp)))
4979 (forward-char))
4981 ;; Don't trust the literal to contain only literal faces
4982 ;; (the font lock package might not have fontified the
4983 ;; start of it at all, for instance) so check that we have
4984 ;; arrived at something that looks like a start or else
4985 ;; resort to `c-literal-limits'.
4986 (unless (looking-at c-literal-start-regexp)
4987 (let ((range (c-literal-limits)))
4988 (if range (goto-char (car range)))))
4990 (setq start-in-literal (point)))
4992 ;; The start is in a literal. If the limit is in the same
4993 ;; one we don't have to find a syntactic position etc. We
4994 ;; only check that if the limit is at or before bonl to save
4995 ;; time; it covers the by far most common case when font-lock
4996 ;; refontifies the current line only.
4997 (<= cfd-limit (c-point 'bonl cfd-start-pos))
4998 (save-excursion
4999 (goto-char cfd-start-pos)
5000 (while (progn
5001 (goto-char (next-single-property-change
5002 (point) 'face nil cfd-limit))
5003 (and (< (point) cfd-limit)
5004 (c-got-face-at (point) c-literal-faces))))
5005 (= (point) cfd-limit)))
5007 ;; Completely inside a literal. Set up variables to trig the
5008 ;; (< cfd-continue-pos cfd-start-pos) case below and it'll
5009 ;; find a suitable start position.
5010 (setq cfd-continue-pos start-in-literal))
5012 ;; Check if the region might be completely inside a macro, to
5013 ;; optimize that like the completely-inside-literal above.
5014 ((save-excursion
5015 (and (= (forward-line 1) 0)
5016 (bolp) ; forward-line has funny behavior at eob.
5017 (>= (point) cfd-limit)
5018 (progn (backward-char)
5019 (eq (char-before) ?\\))))
5020 ;; (Maybe) completely inside a macro. Only need to trig the
5021 ;; (< cfd-continue-pos cfd-start-pos) case below to make it
5022 ;; set things up.
5023 (setq cfd-continue-pos (1- cfd-start-pos)
5024 start-in-macro t))
5027 ;; Back out of any macro so we don't miss any declaration
5028 ;; that could follow after it.
5029 (when (c-beginning-of-macro)
5030 (setq start-in-macro t))
5032 ;; Now we're at a proper syntactically relevant position so we
5033 ;; can use the cache. But first clear it if it applied
5034 ;; further down.
5035 (c-invalidate-find-decl-cache cfd-start-pos)
5037 (setq syntactic-pos (point))
5038 (unless (eq syntactic-pos c-find-decl-syntactic-pos)
5039 ;; Don't have to do this if the cache is relevant here,
5040 ;; typically if the same line is refontified again. If
5041 ;; we're just some syntactic whitespace further down we can
5042 ;; still use the cache to limit the skipping.
5043 (c-backward-syntactic-ws c-find-decl-syntactic-pos))
5045 ;; If we hit `c-find-decl-syntactic-pos' and
5046 ;; `c-find-decl-match-pos' is set then we install the cached
5047 ;; values. If we hit `c-find-decl-syntactic-pos' and
5048 ;; `c-find-decl-match-pos' is nil then we know there's no decl
5049 ;; prefix in the whitespace before `c-find-decl-syntactic-pos'
5050 ;; and so we can continue the search from this point. If we
5051 ;; didn't hit `c-find-decl-syntactic-pos' then we're now in
5052 ;; the right spot to begin searching anyway.
5053 (if (and (eq (point) c-find-decl-syntactic-pos)
5054 c-find-decl-match-pos)
5055 (setq cfd-match-pos c-find-decl-match-pos
5056 cfd-continue-pos syntactic-pos)
5058 (setq c-find-decl-syntactic-pos syntactic-pos)
5060 (when (if (bobp)
5061 ;; Always consider bob a match to get the first
5062 ;; declaration in the file. Do this separately instead of
5063 ;; letting `c-decl-prefix-or-start-re' match bob, so that
5064 ;; regexp always can consume at least one character to
5065 ;; ensure that we won't get stuck in an infinite loop.
5066 (setq cfd-re-match 0)
5067 (backward-char)
5068 (c-beginning-of-current-token)
5069 (< (point) cfd-limit))
5070 ;; Do an initial search now. In the bob case above it's
5071 ;; only done to search for a `c-decl-end' spot.
5072 (c-find-decl-prefix-search))
5074 (setq c-find-decl-match-pos (and (< cfd-match-pos cfd-start-pos)
5075 cfd-match-pos)))))
5077 ;; Advance `cfd-continue-pos' if it's before the start position.
5078 ;; The closest continue position that might have effect at or
5079 ;; after the start depends on what we started in. This also
5080 ;; finds a suitable start position in the special cases when the
5081 ;; region is completely within a literal or macro.
5082 (when (and cfd-continue-pos (< cfd-continue-pos cfd-start-pos))
5084 (cond
5085 (start-in-macro
5086 ;; If we're in a macro then it's the closest preceding token
5087 ;; in the macro. Check this before `start-in-literal',
5088 ;; since if we're inside a literal in a macro, the preceding
5089 ;; token is earlier than any `c-decl-end' spot inside the
5090 ;; literal (comment).
5091 (goto-char (or start-in-literal cfd-start-pos))
5092 ;; The only syntactic ws in macros are comments.
5093 (c-backward-comments)
5094 (backward-char)
5095 (c-beginning-of-current-token))
5097 (start-in-literal
5098 ;; If we're in a comment it can only be the closest
5099 ;; preceding `c-decl-end' position within that comment, if
5100 ;; any. Go back to the beginning of such a property so that
5101 ;; `c-find-decl-prefix-search' will find the end of it.
5102 ;; (Can't stop at the end and install it directly on
5103 ;; `cfd-prop-match' since that variable might be cleared
5104 ;; after `cfd-fun' below.)
5106 ;; Note that if the literal is a string then the property
5107 ;; search will simply skip to the beginning of it right
5108 ;; away.
5109 (if (not c-type-decl-end-used)
5110 (goto-char start-in-literal)
5111 (goto-char cfd-start-pos)
5112 (while (progn
5113 (goto-char (previous-single-property-change
5114 (point) 'c-type nil start-in-literal))
5115 (and (> (point) start-in-literal)
5116 (not (eq (c-get-char-property (point) 'c-type)
5117 'c-decl-end))))))
5119 (when (= (point) start-in-literal)
5120 ;; Didn't find any property inside the comment, so we can
5121 ;; skip it entirely. (This won't skip past a string, but
5122 ;; that'll be handled quickly by the next
5123 ;; `c-find-decl-prefix-search' anyway.)
5124 (c-forward-single-comment)
5125 (if (> (point) cfd-limit)
5126 (goto-char cfd-limit))))
5129 ;; If we started in normal code, the only match that might
5130 ;; apply before the start is what we already got in
5131 ;; `cfd-match-pos' so we can continue at the start position.
5132 ;; (Note that we don't get here if the first match is below
5133 ;; it.)
5134 (goto-char cfd-start-pos)))
5136 ;; Delete found matches if they are before our new continue
5137 ;; position, so that `c-find-decl-prefix-search' won't back up
5138 ;; to them later on.
5139 (setq cfd-continue-pos (point))
5140 (when (and cfd-re-match (< cfd-re-match cfd-continue-pos))
5141 (setq cfd-re-match nil))
5142 (when (and cfd-prop-match (< cfd-prop-match cfd-continue-pos))
5143 (setq cfd-prop-match nil)))
5145 (if syntactic-pos
5146 ;; This is the normal case and we got a proper syntactic
5147 ;; position. If there's a match then it's always outside
5148 ;; macros and comments, so advance to the next token and set
5149 ;; `cfd-token-pos'. The loop below will later go back using
5150 ;; `cfd-continue-pos' to fix declarations inside the
5151 ;; syntactic ws.
5152 (when (and cfd-match-pos (< cfd-match-pos syntactic-pos))
5153 (goto-char syntactic-pos)
5154 (c-forward-syntactic-ws)
5155 (and cfd-continue-pos
5156 (< cfd-continue-pos (point))
5157 (setq cfd-token-pos (point))))
5159 ;; Have one of the special cases when the region is completely
5160 ;; within a literal or macro. `cfd-continue-pos' is set to a
5161 ;; good start position for the search, so do it.
5162 (c-find-decl-prefix-search)))
5164 ;; Now loop. Round what? (ACM, 2006/7/5). We already got the first match.
5166 (while (progn
5167 (while (and
5168 (< cfd-match-pos cfd-limit)
5171 ;; Kludge to filter out matches on the "<" that
5172 ;; aren't open parens, for the sake of languages
5173 ;; that got `c-recognize-<>-arglists' set.
5174 (and (eq (char-before cfd-match-pos) ?<)
5175 (not (c-get-char-property (1- cfd-match-pos)
5176 'syntax-table)))
5178 ;; If `cfd-continue-pos' is less or equal to
5179 ;; `cfd-token-pos', we've got a hit inside a macro
5180 ;; that's in the syntactic whitespace before the last
5181 ;; "real" declaration we've checked. If they're equal
5182 ;; we've arrived at the declaration a second time, so
5183 ;; there's nothing to do.
5184 (= cfd-continue-pos cfd-token-pos)
5186 (progn
5187 ;; If `cfd-continue-pos' is less than `cfd-token-pos'
5188 ;; we're still searching for declarations embedded in
5189 ;; the syntactic whitespace. In that case we need
5190 ;; only to skip comments and not macros, since they
5191 ;; can't be nested, and that's already been done in
5192 ;; `c-find-decl-prefix-search'.
5193 (when (> cfd-continue-pos cfd-token-pos)
5194 (c-forward-syntactic-ws)
5195 (setq cfd-token-pos (point)))
5197 ;; Continue if the following token fails the
5198 ;; CFD-DECL-RE and CFD-FACE-CHECKLIST checks.
5199 (when (or (>= (point) cfd-limit)
5200 (not (looking-at cfd-decl-re))
5201 (and cfd-face-checklist
5202 (not (c-got-face-at
5203 (point) cfd-face-checklist))))
5204 (goto-char cfd-continue-pos)
5205 t)))
5207 (< (point) cfd-limit))
5208 (c-find-decl-prefix-search))
5210 (< (point) cfd-limit))
5212 (when (and
5213 (>= (point) cfd-start-pos)
5215 (progn
5216 ;; Narrow to the end of the macro if we got a hit inside
5217 ;; one, to avoid recognizing things that start inside the
5218 ;; macro and end outside it.
5219 (when (> cfd-match-pos cfd-macro-end)
5220 ;; Not in the same macro as in the previous round.
5221 (save-excursion
5222 (goto-char cfd-match-pos)
5223 (setq cfd-macro-end
5224 (if (save-excursion (and (c-beginning-of-macro)
5225 (< (point) cfd-match-pos)))
5226 (progn (c-end-of-macro)
5227 (point))
5228 0))))
5230 (if (zerop cfd-macro-end)
5232 (if (> cfd-macro-end (point))
5233 (progn (narrow-to-region (point-min) cfd-macro-end)
5235 ;; The matched token was the last thing in the macro,
5236 ;; so the whole match is bogus.
5237 (setq cfd-macro-end 0)
5238 nil))))
5240 (c-debug-put-decl-spot-faces cfd-match-pos (point))
5241 (if (funcall cfd-fun cfd-match-pos (/= cfd-macro-end 0))
5242 (setq cfd-prop-match nil))
5244 (when (/= cfd-macro-end 0)
5245 ;; Restore limits if we did macro narrowing above.
5246 (narrow-to-region (point-min) cfd-buffer-end)))
5248 (goto-char cfd-continue-pos)
5249 (if (= cfd-continue-pos cfd-limit)
5250 (setq cfd-match-pos cfd-limit)
5251 (c-find-decl-prefix-search))))) ; Moves point, sets cfd-continue-pos,
5252 ; cfd-match-pos, etc.
5255 ;; A cache for found types.
5257 ;; Buffer local variable that contains an obarray with the types we've
5258 ;; found. If a declaration is recognized somewhere we record the
5259 ;; fully qualified identifier in it to recognize it as a type
5260 ;; elsewhere in the file too. This is not accurate since we do not
5261 ;; bother with the scoping rules of the languages, but in practice the
5262 ;; same name is seldom used as both a type and something else in a
5263 ;; file, and we only use this as a last resort in ambiguous cases (see
5264 ;; `c-forward-decl-or-cast-1').
5266 ;; Not every type need be in this cache. However, things which have
5267 ;; ceased to be types must be removed from it.
5269 ;; Template types in C++ are added here too but with the template
5270 ;; arglist replaced with "<>" in references or "<" for the one in the
5271 ;; primary type. E.g. the type "Foo<A,B>::Bar<C>" is stored as
5272 ;; "Foo<>::Bar<". This avoids storing very long strings (since C++
5273 ;; template specs can be fairly sized programs in themselves) and
5274 ;; improves the hit ratio (it's a type regardless of the template
5275 ;; args; it's just not the same type, but we're only interested in
5276 ;; recognizing types, not telling distinct types apart). Note that
5277 ;; template types in references are added here too; from the example
5278 ;; above there will also be an entry "Foo<".
5279 (defvar c-found-types nil)
5280 (make-variable-buffer-local 'c-found-types)
5282 (defsubst c-clear-found-types ()
5283 ;; Clears `c-found-types'.
5284 (setq c-found-types (make-vector 53 0)))
5286 (defun c-add-type (from to)
5287 ;; Add the given region as a type in `c-found-types'. If the region
5288 ;; doesn't match an existing type but there is a type which is equal
5289 ;; to the given one except that the last character is missing, then
5290 ;; the shorter type is removed. That's done to avoid adding all
5291 ;; prefixes of a type as it's being entered and font locked. This
5292 ;; doesn't cover cases like when characters are removed from a type
5293 ;; or added in the middle. We'd need the position of point when the
5294 ;; font locking is invoked to solve this well.
5296 ;; This function might do hidden buffer changes.
5297 (let ((type (c-syntactic-content from to c-recognize-<>-arglists)))
5298 (unless (intern-soft type c-found-types)
5299 (unintern (substring type 0 -1) c-found-types)
5300 (intern type c-found-types))))
5302 (defun c-unfind-type (name)
5303 ;; Remove the "NAME" from c-found-types, if present.
5304 (unintern name c-found-types))
5306 (defsubst c-check-type (from to)
5307 ;; Return non-nil if the given region contains a type in
5308 ;; `c-found-types'.
5310 ;; This function might do hidden buffer changes.
5311 (intern-soft (c-syntactic-content from to c-recognize-<>-arglists)
5312 c-found-types))
5314 (defun c-list-found-types ()
5315 ;; Return all the types in `c-found-types' as a sorted list of
5316 ;; strings.
5317 (let (type-list)
5318 (mapatoms (lambda (type)
5319 (setq type-list (cons (symbol-name type)
5320 type-list)))
5321 c-found-types)
5322 (sort type-list 'string-lessp)))
5324 ;; Shut up the byte compiler.
5325 (defvar c-maybe-stale-found-type)
5327 (defun c-trim-found-types (beg end old-len)
5328 ;; An after change function which, in conjunction with the info in
5329 ;; c-maybe-stale-found-type (set in c-before-change), removes a type
5330 ;; from `c-found-types', should this type have become stale. For
5331 ;; example, this happens to "foo" when "foo \n bar();" becomes
5332 ;; "foo(); \n bar();". Such stale types, if not removed, foul up
5333 ;; the fontification.
5335 ;; Have we, perhaps, added non-ws characters to the front/back of a found
5336 ;; type?
5337 (when (> end beg)
5338 (save-excursion
5339 (when (< end (point-max))
5340 (goto-char end)
5341 (if (and (c-beginning-of-current-token) ; only moves when we started in the middle
5342 (progn (goto-char end)
5343 (c-end-of-current-token)))
5344 (c-unfind-type (buffer-substring-no-properties
5345 end (point)))))
5346 (when (> beg (point-min))
5347 (goto-char beg)
5348 (if (and (c-end-of-current-token) ; only moves when we started in the middle
5349 (progn (goto-char beg)
5350 (c-beginning-of-current-token)))
5351 (c-unfind-type (buffer-substring-no-properties
5352 (point) beg))))))
5354 (if c-maybe-stale-found-type ; e.g. (c-decl-id-start "foo" 97 107 " (* ooka) " "o")
5355 (cond
5356 ;; Changing the amount of (already existing) whitespace - don't do anything.
5357 ((and (c-partial-ws-p beg end)
5358 (or (= beg end) ; removal of WS
5359 (string-match "^[ \t\n\r\f\v]*$" (nth 5 c-maybe-stale-found-type)))))
5361 ;; The syntactic relationship which defined a "found type" has been
5362 ;; destroyed.
5363 ((eq (car c-maybe-stale-found-type) 'c-decl-id-start)
5364 (c-unfind-type (cadr c-maybe-stale-found-type)))
5365 ;; ((eq (car c-maybe-stale-found-type) 'c-decl-type-start) FIXME!!!
5369 ;; Setting and removing syntax properties on < and > in languages (C++
5370 ;; and Java) where they can be template/generic delimiters as well as
5371 ;; their normal meaning of "less/greater than".
5373 ;; Normally, < and > have syntax 'punctuation'. When they are found to
5374 ;; be delimiters, they are marked as such with the category properties
5375 ;; c-<-as-paren-syntax, c->-as-paren-syntax respectively.
5377 ;; STRATEGY:
5379 ;; It is impossible to determine with certainty whether a <..> pair in
5380 ;; C++ is two comparison operators or is template delimiters, unless
5381 ;; one duplicates a lot of a C++ compiler. For example, the following
5382 ;; code fragment:
5384 ;; foo (a < b, c > d) ;
5386 ;; could be a function call with two integer parameters (each a
5387 ;; relational expression), or it could be a constructor for class foo
5388 ;; taking one parameter d of templated type "a < b, c >". They are
5389 ;; somewhat easier to distinguish in Java.
5391 ;; The strategy now (2010-01) adopted is to mark and unmark < and
5392 ;; > IN MATCHING PAIRS ONLY. [Previously, they were marked
5393 ;; individually when their context so indicated. This gave rise to
5394 ;; intractable problems when one of a matching pair was deleted, or
5395 ;; pulled into a literal.]
5397 ;; At each buffer change, the syntax-table properties are removed in a
5398 ;; before-change function and reapplied, when needed, in an
5399 ;; after-change function. It is far more important that the
5400 ;; properties get removed when they they are spurious than that they
5401 ;; be present when wanted.
5402 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5403 (defun c-clear-<-pair-props (&optional pos)
5404 ;; POS (default point) is at a < character. If it is marked with
5405 ;; open paren syntax-table text property, remove the property,
5406 ;; together with the close paren property on the matching > (if
5407 ;; any).
5408 (save-excursion
5409 (if pos
5410 (goto-char pos)
5411 (setq pos (point)))
5412 (when (equal (c-get-char-property (point) 'syntax-table)
5413 c-<-as-paren-syntax)
5414 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5415 (c-go-list-forward))
5416 (when (equal (c-get-char-property (1- (point)) 'syntax-table)
5417 c->-as-paren-syntax) ; should always be true.
5418 (c-clear-char-property (1- (point)) 'category))
5419 (c-clear-char-property pos 'category))))
5421 (defun c-clear->-pair-props (&optional pos)
5422 ;; POS (default point) is at a > character. If it is marked with
5423 ;; close paren syntax-table property, remove the property, together
5424 ;; with the open paren property on the matching < (if any).
5425 (save-excursion
5426 (if pos
5427 (goto-char pos)
5428 (setq pos (point)))
5429 (when (equal (c-get-char-property (point) 'syntax-table)
5430 c->-as-paren-syntax)
5431 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5432 (c-go-up-list-backward))
5433 (when (equal (c-get-char-property (point) 'syntax-table)
5434 c-<-as-paren-syntax) ; should always be true.
5435 (c-clear-char-property (point) 'category))
5436 (c-clear-char-property pos 'category))))
5438 (defun c-clear-<>-pair-props (&optional pos)
5439 ;; POS (default point) is at a < or > character. If it has an
5440 ;; open/close paren syntax-table property, remove this property both
5441 ;; from the current character and its partner (which will also be
5442 ;; thusly marked).
5443 (cond
5444 ((eq (char-after) ?\<)
5445 (c-clear-<-pair-props pos))
5446 ((eq (char-after) ?\>)
5447 (c-clear->-pair-props pos))
5448 (t (c-benign-error
5449 "c-clear-<>-pair-props called from wrong position"))))
5451 (defun c-clear-<-pair-props-if-match-after (lim &optional pos)
5452 ;; POS (default point) is at a < character. If it is both marked
5453 ;; with open/close paren syntax-table property, and has a matching >
5454 ;; (also marked) which is after LIM, remove the property both from
5455 ;; the current > and its partner. Return t when this happens, nil
5456 ;; when it doesn't.
5457 (save-excursion
5458 (if pos
5459 (goto-char pos)
5460 (setq pos (point)))
5461 (when (equal (c-get-char-property (point) 'syntax-table)
5462 c-<-as-paren-syntax)
5463 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5464 (c-go-list-forward))
5465 (when (and (>= (point) lim)
5466 (equal (c-get-char-property (1- (point)) 'syntax-table)
5467 c->-as-paren-syntax)) ; should always be true.
5468 (c-unmark-<->-as-paren (1- (point)))
5469 (c-unmark-<->-as-paren pos))
5470 t)))
5472 (defun c-clear->-pair-props-if-match-before (lim &optional pos)
5473 ;; POS (default point) is at a > character. If it is both marked
5474 ;; with open/close paren syntax-table property, and has a matching <
5475 ;; (also marked) which is before LIM, remove the property both from
5476 ;; the current < and its partner. Return t when this happens, nil
5477 ;; when it doesn't.
5478 (save-excursion
5479 (if pos
5480 (goto-char pos)
5481 (setq pos (point)))
5482 (when (equal (c-get-char-property (point) 'syntax-table)
5483 c->-as-paren-syntax)
5484 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5485 (c-go-up-list-backward))
5486 (when (and (<= (point) lim)
5487 (equal (c-get-char-property (point) 'syntax-table)
5488 c-<-as-paren-syntax)) ; should always be true.
5489 (c-unmark-<->-as-paren (point))
5490 (c-unmark-<->-as-paren pos))
5491 t)))
5493 ;; Set by c-common-init in cc-mode.el.
5494 (defvar c-new-BEG)
5495 (defvar c-new-END)
5497 (defun c-before-change-check-<>-operators (beg end)
5498 ;; Unmark certain pairs of "< .... >" which are currently marked as
5499 ;; template/generic delimiters. (This marking is via syntax-table
5500 ;; text properties).
5502 ;; These pairs are those which are in the current "statement" (i.e.,
5503 ;; the region between the {, }, or ; before BEG and the one after
5504 ;; END), and which enclose any part of the interval (BEG END).
5506 ;; Note that in C++ (?and Java), template/generic parens cannot
5507 ;; enclose a brace or semicolon, so we use these as bounds on the
5508 ;; region we must work on.
5510 ;; This function is called from before-change-functions (via
5511 ;; c-get-state-before-change-functions). Thus the buffer is widened,
5512 ;; and point is undefined, both at entry and exit.
5514 ;; FIXME!!! This routine ignores the possibility of macros entirely.
5515 ;; 2010-01-29.
5516 (save-excursion
5517 (let ((beg-lit-limits (progn (goto-char beg) (c-literal-limits)))
5518 (end-lit-limits (progn (goto-char end) (c-literal-limits)))
5519 new-beg new-end need-new-beg need-new-end)
5520 ;; Locate the barrier before the changed region
5521 (goto-char (if beg-lit-limits (car beg-lit-limits) beg))
5522 (c-syntactic-skip-backward "^;{}" (c-determine-limit 512))
5523 (setq new-beg (point))
5525 ;; Remove the syntax-table properties from each pertinent <...> pair.
5526 ;; Firsly, the ones with the < before beg and > after beg.
5527 (while (c-search-forward-char-property 'category 'c-<-as-paren-syntax beg)
5528 (if (c-clear-<-pair-props-if-match-after beg (1- (point)))
5529 (setq need-new-beg t)))
5531 ;; Locate the barrier after END.
5532 (goto-char (if end-lit-limits (cdr end-lit-limits) end))
5533 (c-syntactic-re-search-forward "[;{}]" (c-determine-+ve-limit 512) 'end)
5534 (setq new-end (point))
5536 ;; Remove syntax-table properties from the remaining pertinent <...>
5537 ;; pairs, those with a > after end and < before end.
5538 (while (c-search-backward-char-property 'category 'c->-as-paren-syntax end)
5539 (if (c-clear->-pair-props-if-match-before end)
5540 (setq need-new-end t)))
5542 ;; Extend the fontification region, if needed.
5543 (when need-new-beg
5544 (goto-char new-beg)
5545 (c-forward-syntactic-ws)
5546 (and (< (point) c-new-BEG) (setq c-new-BEG (point))))
5548 (when need-new-end
5549 (and (> new-end c-new-END) (setq c-new-END new-end))))))
5553 (defun c-after-change-check-<>-operators (beg end)
5554 ;; This is called from `after-change-functions' when
5555 ;; c-recognize-<>-arglists' is set. It ensures that no "<" or ">"
5556 ;; chars with paren syntax become part of another operator like "<<"
5557 ;; or ">=".
5559 ;; This function might do hidden buffer changes.
5561 (save-excursion
5562 (goto-char beg)
5563 (when (or (looking-at "[<>]")
5564 (< (skip-chars-backward "<>") 0))
5566 (goto-char beg)
5567 (c-beginning-of-current-token)
5568 (when (and (< (point) beg)
5569 (looking-at c-<>-multichar-token-regexp)
5570 (< beg (setq beg (match-end 0))))
5571 (while (progn (skip-chars-forward "^<>" beg)
5572 (< (point) beg))
5573 (c-clear-<>-pair-props)
5574 (forward-char))))
5576 (when (< beg end)
5577 (goto-char end)
5578 (when (or (looking-at "[<>]")
5579 (< (skip-chars-backward "<>") 0))
5581 (goto-char end)
5582 (c-beginning-of-current-token)
5583 (when (and (< (point) end)
5584 (looking-at c-<>-multichar-token-regexp)
5585 (< end (setq end (match-end 0))))
5586 (while (progn (skip-chars-forward "^<>" end)
5587 (< (point) end))
5588 (c-clear-<>-pair-props)
5589 (forward-char)))))))
5593 ;; Handling of small scale constructs like types and names.
5595 ;; Dynamically bound variable that instructs `c-forward-type' to also
5596 ;; treat possible types (i.e. those that it normally returns 'maybe or
5597 ;; 'found for) as actual types (and always return 'found for them).
5598 ;; This means that it records them in `c-record-type-identifiers' if
5599 ;; that is set, and that it adds them to `c-found-types'.
5600 (defvar c-promote-possible-types nil)
5602 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
5603 ;; mark up successfully parsed arglists with paren syntax properties on
5604 ;; the surrounding angle brackets and with `c-<>-arg-sep' in the
5605 ;; `c-type' property of each argument separating comma.
5607 ;; Setting this variable also makes `c-forward-<>-arglist' recurse into
5608 ;; all arglists for side effects (i.e. recording types), otherwise it
5609 ;; exploits any existing paren syntax properties to quickly jump to the
5610 ;; end of already parsed arglists.
5612 ;; Marking up the arglists is not the default since doing that correctly
5613 ;; depends on a proper value for `c-restricted-<>-arglists'.
5614 (defvar c-parse-and-markup-<>-arglists nil)
5616 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
5617 ;; not accept arglists that contain binary operators.
5619 ;; This is primarily used to handle C++ template arglists. C++
5620 ;; disambiguates them by checking whether the preceding name is a
5621 ;; template or not. We can't do that, so we assume it is a template
5622 ;; if it can be parsed as one. That usually works well since
5623 ;; comparison expressions on the forms "a < b > c" or "a < b, c > d"
5624 ;; in almost all cases would be pointless.
5626 ;; However, in function arglists, e.g. in "foo (a < b, c > d)", we
5627 ;; should let the comma separate the function arguments instead. And
5628 ;; in a context where the value of the expression is taken, e.g. in
5629 ;; "if (a < b || c > d)", it's probably not a template.
5630 (defvar c-restricted-<>-arglists nil)
5632 ;; Dynamically bound variables that instructs
5633 ;; `c-forward-keyword-clause', `c-forward-<>-arglist',
5634 ;; `c-forward-name', `c-forward-type', `c-forward-decl-or-cast-1', and
5635 ;; `c-forward-label' to record the ranges of all the type and
5636 ;; reference identifiers they encounter. They will build lists on
5637 ;; these variables where each element is a cons of the buffer
5638 ;; positions surrounding each identifier. This recording is only
5639 ;; activated when `c-record-type-identifiers' is non-nil.
5641 ;; All known types that can't be identifiers are recorded, and also
5642 ;; other possible types if `c-promote-possible-types' is set.
5643 ;; Recording is however disabled inside angle bracket arglists that
5644 ;; are encountered inside names and other angle bracket arglists.
5645 ;; Such occurrences are taken care of by `c-font-lock-<>-arglists'
5646 ;; instead.
5648 ;; Only the names in C++ template style references (e.g. "tmpl" in
5649 ;; "tmpl<a,b>::foo") are recorded as references, other references
5650 ;; aren't handled here.
5652 ;; `c-forward-label' records the label identifier(s) on
5653 ;; `c-record-ref-identifiers'.
5654 (defvar c-record-type-identifiers nil)
5655 (defvar c-record-ref-identifiers nil)
5657 ;; This variable will receive a cons cell of the range of the last
5658 ;; single identifier symbol stepped over by `c-forward-name' if it's
5659 ;; successful. This is the range that should be put on one of the
5660 ;; record lists above by the caller. It's assigned nil if there's no
5661 ;; such symbol in the name.
5662 (defvar c-last-identifier-range nil)
5664 (defmacro c-record-type-id (range)
5665 (if (eq (car-safe range) 'cons)
5666 ;; Always true.
5667 `(setq c-record-type-identifiers
5668 (cons ,range c-record-type-identifiers))
5669 `(let ((range ,range))
5670 (if range
5671 (setq c-record-type-identifiers
5672 (cons range c-record-type-identifiers))))))
5674 (defmacro c-record-ref-id (range)
5675 (if (eq (car-safe range) 'cons)
5676 ;; Always true.
5677 `(setq c-record-ref-identifiers
5678 (cons ,range c-record-ref-identifiers))
5679 `(let ((range ,range))
5680 (if range
5681 (setq c-record-ref-identifiers
5682 (cons range c-record-ref-identifiers))))))
5684 ;; Dynamically bound variable that instructs `c-forward-type' to
5685 ;; record the ranges of types that only are found. Behaves otherwise
5686 ;; like `c-record-type-identifiers'.
5687 (defvar c-record-found-types nil)
5689 (defmacro c-forward-keyword-prefixed-id (type)
5690 ;; Used internally in `c-forward-keyword-clause' to move forward
5691 ;; over a type (if TYPE is 'type) or a name (otherwise) which
5692 ;; possibly is prefixed by keywords and their associated clauses.
5693 ;; Try with a type/name first to not trip up on those that begin
5694 ;; with a keyword. Return t if a known or found type is moved
5695 ;; over. The point is clobbered if nil is returned. If range
5696 ;; recording is enabled, the identifier is recorded on as a type
5697 ;; if TYPE is 'type or as a reference if TYPE is 'ref.
5699 ;; This macro might do hidden buffer changes.
5700 `(let (res)
5701 (while (if (setq res ,(if (eq type 'type)
5702 `(c-forward-type)
5703 `(c-forward-name)))
5705 (and (looking-at c-keywords-regexp)
5706 (c-forward-keyword-clause 1))))
5707 (when (memq res '(t known found prefix))
5708 ,(when (eq type 'ref)
5709 `(when c-record-type-identifiers
5710 (c-record-ref-id c-last-identifier-range)))
5711 t)))
5713 (defmacro c-forward-id-comma-list (type update-safe-pos)
5714 ;; Used internally in `c-forward-keyword-clause' to move forward
5715 ;; over a comma separated list of types or names using
5716 ;; `c-forward-keyword-prefixed-id'.
5718 ;; This macro might do hidden buffer changes.
5719 `(while (and (progn
5720 ,(when update-safe-pos
5721 `(setq safe-pos (point)))
5722 (eq (char-after) ?,))
5723 (progn
5724 (forward-char)
5725 (c-forward-syntactic-ws)
5726 (c-forward-keyword-prefixed-id ,type)))))
5728 (defun c-forward-keyword-clause (match)
5729 ;; Submatch MATCH in the current match data is assumed to surround a
5730 ;; token. If it's a keyword, move over it and any immediately
5731 ;; following clauses associated with it, stopping at the start of
5732 ;; the next token. t is returned in that case, otherwise the point
5733 ;; stays and nil is returned. The kind of clauses that are
5734 ;; recognized are those specified by `c-type-list-kwds',
5735 ;; `c-ref-list-kwds', `c-colon-type-list-kwds',
5736 ;; `c-paren-nontype-kwds', `c-paren-type-kwds', `c-<>-type-kwds',
5737 ;; and `c-<>-arglist-kwds'.
5739 ;; This function records identifier ranges on
5740 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5741 ;; `c-record-type-identifiers' is non-nil.
5743 ;; Note that for `c-colon-type-list-kwds', which doesn't necessary
5744 ;; apply directly after the keyword, the type list is moved over
5745 ;; only when there is no unaccounted token before it (i.e. a token
5746 ;; that isn't moved over due to some other keyword list). The
5747 ;; identifier ranges in the list are still recorded if that should
5748 ;; be done, though.
5750 ;; This function might do hidden buffer changes.
5752 (let ((kwd-sym (c-keyword-sym (match-string match))) safe-pos pos
5753 ;; The call to `c-forward-<>-arglist' below is made after
5754 ;; `c-<>-sexp-kwds' keywords, so we're certain they actually
5755 ;; are angle bracket arglists and `c-restricted-<>-arglists'
5756 ;; should therefore be nil.
5757 (c-parse-and-markup-<>-arglists t)
5758 c-restricted-<>-arglists)
5760 (when kwd-sym
5761 (goto-char (match-end match))
5762 (c-forward-syntactic-ws)
5763 (setq safe-pos (point))
5765 (cond
5766 ((and (c-keyword-member kwd-sym 'c-type-list-kwds)
5767 (c-forward-keyword-prefixed-id type))
5768 ;; There's a type directly after a keyword in `c-type-list-kwds'.
5769 (c-forward-id-comma-list type t))
5771 ((and (c-keyword-member kwd-sym 'c-ref-list-kwds)
5772 (c-forward-keyword-prefixed-id ref))
5773 ;; There's a name directly after a keyword in `c-ref-list-kwds'.
5774 (c-forward-id-comma-list ref t))
5776 ((and (c-keyword-member kwd-sym 'c-paren-any-kwds)
5777 (eq (char-after) ?\())
5778 ;; There's an open paren after a keyword in `c-paren-any-kwds'.
5780 (forward-char)
5781 (when (and (setq pos (c-up-list-forward))
5782 (eq (char-before pos) ?\)))
5783 (when (and c-record-type-identifiers
5784 (c-keyword-member kwd-sym 'c-paren-type-kwds))
5785 ;; Use `c-forward-type' on every identifier we can find
5786 ;; inside the paren, to record the types.
5787 (while (c-syntactic-re-search-forward c-symbol-start pos t)
5788 (goto-char (match-beginning 0))
5789 (unless (c-forward-type)
5790 (looking-at c-symbol-key) ; Always matches.
5791 (goto-char (match-end 0)))))
5793 (goto-char pos)
5794 (c-forward-syntactic-ws)
5795 (setq safe-pos (point))))
5797 ((and (c-keyword-member kwd-sym 'c-<>-sexp-kwds)
5798 (eq (char-after) ?<)
5799 (c-forward-<>-arglist (c-keyword-member kwd-sym 'c-<>-type-kwds)))
5800 (c-forward-syntactic-ws)
5801 (setq safe-pos (point)))
5803 ((and (c-keyword-member kwd-sym 'c-nonsymbol-sexp-kwds)
5804 (not (looking-at c-symbol-start))
5805 (c-safe (c-forward-sexp) t))
5806 (c-forward-syntactic-ws)
5807 (setq safe-pos (point))))
5809 (when (c-keyword-member kwd-sym 'c-colon-type-list-kwds)
5810 (if (eq (char-after) ?:)
5811 ;; If we are at the colon already, we move over the type
5812 ;; list after it.
5813 (progn
5814 (forward-char)
5815 (c-forward-syntactic-ws)
5816 (when (c-forward-keyword-prefixed-id type)
5817 (c-forward-id-comma-list type t)))
5818 ;; Not at the colon, so stop here. But the identifier
5819 ;; ranges in the type list later on should still be
5820 ;; recorded.
5821 (and c-record-type-identifiers
5822 (progn
5823 ;; If a keyword matched both one of the types above and
5824 ;; this one, we match `c-colon-type-list-re' after the
5825 ;; clause matched above.
5826 (goto-char safe-pos)
5827 (looking-at c-colon-type-list-re))
5828 (progn
5829 (goto-char (match-end 0))
5830 (c-forward-syntactic-ws)
5831 (c-forward-keyword-prefixed-id type))
5832 ;; There's a type after the `c-colon-type-list-re' match
5833 ;; after a keyword in `c-colon-type-list-kwds'.
5834 (c-forward-id-comma-list type nil))))
5836 (goto-char safe-pos)
5837 t)))
5839 ;; cc-mode requires cc-fonts.
5840 (declare-function c-fontify-recorded-types-and-refs "cc-fonts" ())
5842 (defun c-forward-<>-arglist (all-types)
5843 ;; The point is assumed to be at a "<". Try to treat it as the open
5844 ;; paren of an angle bracket arglist and move forward to the
5845 ;; corresponding ">". If successful, the point is left after the
5846 ;; ">" and t is returned, otherwise the point isn't moved and nil is
5847 ;; returned. If ALL-TYPES is t then all encountered arguments in
5848 ;; the arglist that might be types are treated as found types.
5850 ;; The variable `c-parse-and-markup-<>-arglists' controls how this
5851 ;; function handles text properties on the angle brackets and argument
5852 ;; separating commas.
5854 ;; `c-restricted-<>-arglists' controls how lenient the template
5855 ;; arglist recognition should be.
5857 ;; This function records identifier ranges on
5858 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5859 ;; `c-record-type-identifiers' is non-nil.
5861 ;; This function might do hidden buffer changes.
5863 (let ((start (point))
5864 ;; If `c-record-type-identifiers' is set then activate
5865 ;; recording of any found types that constitute an argument in
5866 ;; the arglist.
5867 (c-record-found-types (if c-record-type-identifiers t)))
5868 (if (catch 'angle-bracket-arglist-escape
5869 (setq c-record-found-types
5870 (c-forward-<>-arglist-recur all-types)))
5871 (progn
5872 (when (consp c-record-found-types)
5873 (setq c-record-type-identifiers
5874 ;; `nconc' doesn't mind that the tail of
5875 ;; `c-record-found-types' is t.
5876 (nconc c-record-found-types c-record-type-identifiers)))
5877 (if (c-major-mode-is 'java-mode) (c-fontify-recorded-types-and-refs))
5880 (goto-char start)
5881 nil)))
5883 (defun c-forward-<>-arglist-recur (all-types)
5884 ;; Recursive part of `c-forward-<>-arglist'.
5886 ;; This function might do hidden buffer changes.
5888 (let ((start (point)) res pos tmp
5889 ;; Cover this so that any recorded found type ranges are
5890 ;; automatically lost if it turns out to not be an angle
5891 ;; bracket arglist. It's propagated through the return value
5892 ;; on successful completion.
5893 (c-record-found-types c-record-found-types)
5894 ;; List that collects the positions after the argument
5895 ;; separating ',' in the arglist.
5896 arg-start-pos)
5897 ;; If the '<' has paren open syntax then we've marked it as an angle
5898 ;; bracket arglist before, so skip to the end.
5899 (if (and (not c-parse-and-markup-<>-arglists)
5900 (c-get-char-property (point) 'syntax-table))
5902 (progn
5903 (forward-char)
5904 (if (and (c-go-up-list-forward)
5905 (eq (char-before) ?>))
5907 ;; Got unmatched paren angle brackets. We don't clear the paren
5908 ;; syntax properties and retry, on the basis that it's very
5909 ;; unlikely that paren angle brackets become operators by code
5910 ;; manipulation. It's far more likely that it doesn't match due
5911 ;; to narrowing or some temporary change.
5912 (goto-char start)
5913 nil))
5915 (forward-char) ; Forward over the opening '<'.
5917 (unless (looking-at c-<-op-cont-regexp)
5918 ;; go forward one non-alphanumeric character (group) per iteration of
5919 ;; this loop.
5920 (while (and
5921 (progn
5922 (c-forward-syntactic-ws)
5923 (let ((orig-record-found-types c-record-found-types))
5924 (when (or (and c-record-type-identifiers all-types)
5925 (c-major-mode-is 'java-mode))
5926 ;; All encountered identifiers are types, so set the
5927 ;; promote flag and parse the type.
5928 (progn
5929 (c-forward-syntactic-ws)
5930 (if (looking-at "\\?")
5931 (forward-char)
5932 (when (looking-at c-identifier-start)
5933 (let ((c-promote-possible-types t)
5934 (c-record-found-types t))
5935 (c-forward-type))))
5937 (c-forward-syntactic-ws)
5939 (when (or (looking-at "extends")
5940 (looking-at "super"))
5941 (forward-word)
5942 (c-forward-syntactic-ws)
5943 (let ((c-promote-possible-types t)
5944 (c-record-found-types t))
5945 (c-forward-type)
5946 (c-forward-syntactic-ws))))))
5948 (setq pos (point)) ; e.g. first token inside the '<'
5950 ;; Note: These regexps exploit the match order in \| so
5951 ;; that "<>" is matched by "<" rather than "[^>:-]>".
5952 (c-syntactic-re-search-forward
5953 ;; Stop on ',', '|', '&', '+' and '-' to catch
5954 ;; common binary operators that could be between
5955 ;; two comparison expressions "a<b" and "c>d".
5956 "[<;{},|+&-]\\|[>)]"
5957 nil t t))
5959 (cond
5960 ((eq (char-before) ?>)
5961 ;; Either an operator starting with '>' or the end of
5962 ;; the angle bracket arglist.
5964 (if (looking-at c->-op-cont-regexp)
5965 (progn
5966 (goto-char (match-end 0))
5967 t) ; Continue the loop.
5969 ;; The angle bracket arglist is finished.
5970 (when c-parse-and-markup-<>-arglists
5971 (while arg-start-pos
5972 (c-put-c-type-property (1- (car arg-start-pos))
5973 'c-<>-arg-sep)
5974 (setq arg-start-pos (cdr arg-start-pos)))
5975 (c-mark-<-as-paren start)
5976 (c-mark->-as-paren (1- (point))))
5977 (setq res t)
5978 nil)) ; Exit the loop.
5980 ((eq (char-before) ?<)
5981 ;; Either an operator starting with '<' or a nested arglist.
5982 (setq pos (point))
5983 (let (id-start id-end subres keyword-match)
5984 (cond
5985 ;; The '<' begins a multi-char operator.
5986 ((looking-at c-<-op-cont-regexp)
5987 (setq tmp (match-end 0))
5988 (goto-char (match-end 0)))
5989 ;; We're at a nested <.....>
5990 ((progn
5991 (setq tmp pos)
5992 (backward-char) ; to the '<'
5993 (and
5994 (save-excursion
5995 ;; There's always an identifier before an angle
5996 ;; bracket arglist, or a keyword in `c-<>-type-kwds'
5997 ;; or `c-<>-arglist-kwds'.
5998 (c-backward-syntactic-ws)
5999 (setq id-end (point))
6000 (c-simple-skip-symbol-backward)
6001 (when (or (setq keyword-match
6002 (looking-at c-opt-<>-sexp-key))
6003 (not (looking-at c-keywords-regexp)))
6004 (setq id-start (point))))
6005 (setq subres
6006 (let ((c-promote-possible-types t)
6007 (c-record-found-types t))
6008 (c-forward-<>-arglist-recur
6009 (and keyword-match
6010 (c-keyword-member
6011 (c-keyword-sym (match-string 1))
6012 'c-<>-type-kwds)))))))
6014 ;; It was an angle bracket arglist.
6015 (setq c-record-found-types subres)
6017 ;; Record the identifier before the template as a type
6018 ;; or reference depending on whether the arglist is last
6019 ;; in a qualified identifier.
6020 (when (and c-record-type-identifiers
6021 (not keyword-match))
6022 (if (and c-opt-identifier-concat-key
6023 (progn
6024 (c-forward-syntactic-ws)
6025 (looking-at c-opt-identifier-concat-key)))
6026 (c-record-ref-id (cons id-start id-end))
6027 (c-record-type-id (cons id-start id-end)))))
6029 ;; At a "less than" operator.
6031 (forward-char)
6033 t) ; carry on looping.
6035 ((and (not c-restricted-<>-arglists)
6036 (or (and (eq (char-before) ?&)
6037 (not (eq (char-after) ?&)))
6038 (eq (char-before) ?,)))
6039 ;; Just another argument. Record the position. The
6040 ;; type check stuff that made us stop at it is at
6041 ;; the top of the loop.
6042 (setq arg-start-pos (cons (point) arg-start-pos)))
6045 ;; Got a character that can't be in an angle bracket
6046 ;; arglist argument. Abort using `throw', since
6047 ;; it's useless to try to find a surrounding arglist
6048 ;; if we're nested.
6049 (throw 'angle-bracket-arglist-escape nil))))))
6050 (if res
6051 (or c-record-found-types t)))))
6053 (defun c-backward-<>-arglist (all-types &optional limit)
6054 ;; The point is assumed to be directly after a ">". Try to treat it
6055 ;; as the close paren of an angle bracket arglist and move back to
6056 ;; the corresponding "<". If successful, the point is left at
6057 ;; the "<" and t is returned, otherwise the point isn't moved and
6058 ;; nil is returned. ALL-TYPES is passed on to
6059 ;; `c-forward-<>-arglist'.
6061 ;; If the optional LIMIT is given, it bounds the backward search.
6062 ;; It's then assumed to be at a syntactically relevant position.
6064 ;; This is a wrapper around `c-forward-<>-arglist'. See that
6065 ;; function for more details.
6067 (let ((start (point)))
6068 (backward-char)
6069 (if (and (not c-parse-and-markup-<>-arglists)
6070 (c-get-char-property (point) 'syntax-table))
6072 (if (and (c-go-up-list-backward)
6073 (eq (char-after) ?<))
6075 ;; See corresponding note in `c-forward-<>-arglist'.
6076 (goto-char start)
6077 nil)
6079 (while (progn
6080 (c-syntactic-skip-backward "^<;{}" limit t)
6082 (and
6083 (if (eq (char-before) ?<)
6085 ;; Stopped at bob or a char that isn't allowed in an
6086 ;; arglist, so we've failed.
6087 (goto-char start)
6088 nil)
6090 (if (> (point)
6091 (progn (c-beginning-of-current-token)
6092 (point)))
6093 ;; If we moved then the "<" was part of some
6094 ;; multicharacter token.
6097 (backward-char)
6098 (let ((beg-pos (point)))
6099 (if (c-forward-<>-arglist all-types)
6100 (cond ((= (point) start)
6101 ;; Matched the arglist. Break the while.
6102 (goto-char beg-pos)
6103 nil)
6104 ((> (point) start)
6105 ;; We started from a non-paren ">" inside an
6106 ;; arglist.
6107 (goto-char start)
6108 nil)
6110 ;; Matched a shorter arglist. Can be a nested
6111 ;; one so continue looking.
6112 (goto-char beg-pos)
6114 t))))))
6116 (/= (point) start))))
6118 (defun c-forward-name ()
6119 ;; Move forward over a complete name if at the beginning of one,
6120 ;; stopping at the next following token. A keyword, as such,
6121 ;; doesn't count as a name. If the point is not at something that
6122 ;; is recognized as a name then it stays put.
6124 ;; A name could be something as simple as "foo" in C or something as
6125 ;; complex as "X<Y<class A<int>::B, BIT_MAX >> b>, ::operator<> ::
6126 ;; Z<(a>b)> :: operator const X<&foo>::T Q::G<unsigned short
6127 ;; int>::*volatile const" in C++ (this function is actually little
6128 ;; more than a `looking-at' call in all modes except those that,
6129 ;; like C++, have `c-recognize-<>-arglists' set).
6131 ;; Return
6132 ;; o - nil if no name is found;
6133 ;; o - 'template if it's an identifier ending with an angle bracket
6134 ;; arglist;
6135 ;; o - 'operator of it's an operator identifier;
6136 ;; o - t if it's some other kind of name.
6138 ;; This function records identifier ranges on
6139 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6140 ;; `c-record-type-identifiers' is non-nil.
6142 ;; This function might do hidden buffer changes.
6144 (let ((pos (point)) (start (point)) res id-start id-end
6145 ;; Turn off `c-promote-possible-types' here since we might
6146 ;; call `c-forward-<>-arglist' and we don't want it to promote
6147 ;; every suspect thing in the arglist to a type. We're
6148 ;; typically called from `c-forward-type' in this case, and
6149 ;; the caller only wants the top level type that it finds to
6150 ;; be promoted.
6151 c-promote-possible-types)
6152 (while
6153 (and
6154 (looking-at c-identifier-key)
6156 (progn
6157 ;; Check for keyword. We go to the last symbol in
6158 ;; `c-identifier-key' first.
6159 (goto-char (setq id-end (match-end 0)))
6160 (c-simple-skip-symbol-backward)
6161 (setq id-start (point))
6163 (if (looking-at c-keywords-regexp)
6164 (when (and (c-major-mode-is 'c++-mode)
6165 (looking-at
6166 (cc-eval-when-compile
6167 (concat "\\(operator\\|\\(template\\)\\)"
6168 "\\(" (c-lang-const c-nonsymbol-key c++)
6169 "\\|$\\)")))
6170 (if (match-beginning 2)
6171 ;; "template" is only valid inside an
6172 ;; identifier if preceded by "::".
6173 (save-excursion
6174 (c-backward-syntactic-ws)
6175 (and (c-safe (backward-char 2) t)
6176 (looking-at "::")))
6179 ;; Handle a C++ operator or template identifier.
6180 (goto-char id-end)
6181 (c-forward-syntactic-ws)
6182 (cond ((eq (char-before id-end) ?e)
6183 ;; Got "... ::template".
6184 (let ((subres (c-forward-name)))
6185 (when subres
6186 (setq pos (point)
6187 res subres))))
6189 ((looking-at c-identifier-start)
6190 ;; Got a cast operator.
6191 (when (c-forward-type)
6192 (setq pos (point)
6193 res 'operator)
6194 ;; Now we should match a sequence of either
6195 ;; '*', '&' or a name followed by ":: *",
6196 ;; where each can be followed by a sequence
6197 ;; of `c-opt-type-modifier-key'.
6198 (while (cond ((looking-at "[*&]")
6199 (goto-char (match-end 0))
6201 ((looking-at c-identifier-start)
6202 (and (c-forward-name)
6203 (looking-at "::")
6204 (progn
6205 (goto-char (match-end 0))
6206 (c-forward-syntactic-ws)
6207 (eq (char-after) ?*))
6208 (progn
6209 (forward-char)
6210 t))))
6211 (while (progn
6212 (c-forward-syntactic-ws)
6213 (setq pos (point))
6214 (looking-at c-opt-type-modifier-key))
6215 (goto-char (match-end 1))))))
6217 ((looking-at c-overloadable-operators-regexp)
6218 ;; Got some other operator.
6219 (setq c-last-identifier-range
6220 (cons (point) (match-end 0)))
6221 (goto-char (match-end 0))
6222 (c-forward-syntactic-ws)
6223 (setq pos (point)
6224 res 'operator)))
6226 nil)
6228 ;; `id-start' is equal to `id-end' if we've jumped over
6229 ;; an identifier that doesn't end with a symbol token.
6230 ;; That can occur e.g. for Java import directives on the
6231 ;; form "foo.bar.*".
6232 (when (and id-start (/= id-start id-end))
6233 (setq c-last-identifier-range
6234 (cons id-start id-end)))
6235 (goto-char id-end)
6236 (c-forward-syntactic-ws)
6237 (setq pos (point)
6238 res t)))
6240 (progn
6241 (goto-char pos)
6242 (when (or c-opt-identifier-concat-key
6243 c-recognize-<>-arglists)
6245 (cond
6246 ((and c-opt-identifier-concat-key
6247 (looking-at c-opt-identifier-concat-key))
6248 ;; Got a concatenated identifier. This handles the
6249 ;; cases with tricky syntactic whitespace that aren't
6250 ;; covered in `c-identifier-key'.
6251 (goto-char (match-end 0))
6252 (c-forward-syntactic-ws)
6255 ((and c-recognize-<>-arglists
6256 (eq (char-after) ?<))
6257 ;; Maybe an angle bracket arglist.
6258 (when (let ((c-record-type-identifiers t)
6259 (c-record-found-types t))
6260 (c-forward-<>-arglist nil))
6262 (c-add-type start (1+ pos))
6263 (c-forward-syntactic-ws)
6264 (setq pos (point)
6265 c-last-identifier-range nil)
6267 (if (and c-opt-identifier-concat-key
6268 (looking-at c-opt-identifier-concat-key))
6270 ;; Continue if there's an identifier concatenation
6271 ;; operator after the template argument.
6272 (progn
6273 (when (and c-record-type-identifiers id-start)
6274 (c-record-ref-id (cons id-start id-end)))
6275 (forward-char 2)
6276 (c-forward-syntactic-ws)
6279 (when (and c-record-type-identifiers id-start)
6280 (c-record-type-id (cons id-start id-end)))
6281 (setq res 'template)
6282 nil)))
6283 )))))
6285 (goto-char pos)
6286 res))
6288 (defun c-forward-type (&optional brace-block-too)
6289 ;; Move forward over a type spec if at the beginning of one,
6290 ;; stopping at the next following token. The keyword "typedef"
6291 ;; isn't part of a type spec here.
6293 ;; BRACE-BLOCK-TOO, when non-nil, means move over the brace block in
6294 ;; constructs like "struct foo {...} bar ;" or "struct {...} bar;".
6295 ;; The current (2009-03-10) intention is to convert all uses of
6296 ;; `c-forward-type' to call with this parameter set, then to
6297 ;; eliminate it.
6299 ;; Return
6300 ;; o - t if it's a known type that can't be a name or other
6301 ;; expression;
6302 ;; o - 'known if it's an otherwise known type (according to
6303 ;; `*-font-lock-extra-types');
6304 ;; o - 'prefix if it's a known prefix of a type;
6305 ;; o - 'found if it's a type that matches one in `c-found-types';
6306 ;; o - 'maybe if it's an identifier that might be a type; or
6307 ;; o - nil if it can't be a type (the point isn't moved then).
6309 ;; The point is assumed to be at the beginning of a token.
6311 ;; Note that this function doesn't skip past the brace definition
6312 ;; that might be considered part of the type, e.g.
6313 ;; "enum {a, b, c} foo".
6315 ;; This function records identifier ranges on
6316 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6317 ;; `c-record-type-identifiers' is non-nil.
6319 ;; This function might do hidden buffer changes.
6320 (when (and c-recognize-<>-arglists
6321 (looking-at "<"))
6322 (c-forward-<>-arglist t)
6323 (c-forward-syntactic-ws))
6325 (let ((start (point)) pos res name-res id-start id-end id-range)
6327 ;; Skip leading type modifiers. If any are found we know it's a
6328 ;; prefix of a type.
6329 (when c-opt-type-modifier-key ; e.g. "const" "volatile", but NOT "typedef"
6330 (while (looking-at c-opt-type-modifier-key)
6331 (goto-char (match-end 1))
6332 (c-forward-syntactic-ws)
6333 (setq res 'prefix)))
6335 (cond
6336 ((looking-at c-type-prefix-key) ; e.g. "struct", "class", but NOT
6337 ; "typedef".
6338 (goto-char (match-end 1))
6339 (c-forward-syntactic-ws)
6340 (setq pos (point))
6342 (setq name-res (c-forward-name))
6343 (setq res (not (null name-res)))
6344 (when (eq name-res t)
6345 ;; In many languages the name can be used without the
6346 ;; prefix, so we add it to `c-found-types'.
6347 (c-add-type pos (point))
6348 (when (and c-record-type-identifiers
6349 c-last-identifier-range)
6350 (c-record-type-id c-last-identifier-range)))
6351 (when (and brace-block-too
6352 (memq res '(t nil))
6353 (eq (char-after) ?\{)
6354 (save-excursion
6355 (c-safe
6356 (progn (c-forward-sexp)
6357 (c-forward-syntactic-ws)
6358 (setq pos (point))))))
6359 (goto-char pos)
6360 (setq res t))
6361 (unless res (goto-char start))) ; invalid syntax
6363 ((progn
6364 (setq pos nil)
6365 (if (looking-at c-identifier-start)
6366 (save-excursion
6367 (setq id-start (point)
6368 name-res (c-forward-name))
6369 (when name-res
6370 (setq id-end (point)
6371 id-range c-last-identifier-range))))
6372 (and (cond ((looking-at c-primitive-type-key)
6373 (setq res t))
6374 ((c-with-syntax-table c-identifier-syntax-table
6375 (looking-at c-known-type-key))
6376 (setq res 'known)))
6377 (or (not id-end)
6378 (>= (save-excursion
6379 (save-match-data
6380 (goto-char (match-end 1))
6381 (c-forward-syntactic-ws)
6382 (setq pos (point))))
6383 id-end)
6384 (setq res nil))))
6385 ;; Looking at a primitive or known type identifier. We've
6386 ;; checked for a name first so that we don't go here if the
6387 ;; known type match only is a prefix of another name.
6389 (setq id-end (match-end 1))
6391 (when (and c-record-type-identifiers
6392 (or c-promote-possible-types (eq res t)))
6393 (c-record-type-id (cons (match-beginning 1) (match-end 1))))
6395 (if (and c-opt-type-component-key
6396 (save-match-data
6397 (looking-at c-opt-type-component-key)))
6398 ;; There might be more keywords for the type.
6399 (let (safe-pos)
6400 (c-forward-keyword-clause 1)
6401 (while (progn
6402 (setq safe-pos (point))
6403 (looking-at c-opt-type-component-key))
6404 (when (and c-record-type-identifiers
6405 (looking-at c-primitive-type-key))
6406 (c-record-type-id (cons (match-beginning 1)
6407 (match-end 1))))
6408 (c-forward-keyword-clause 1))
6409 (if (looking-at c-primitive-type-key)
6410 (progn
6411 (when c-record-type-identifiers
6412 (c-record-type-id (cons (match-beginning 1)
6413 (match-end 1))))
6414 (c-forward-keyword-clause 1)
6415 (setq res t))
6416 (goto-char safe-pos)
6417 (setq res 'prefix)))
6418 (unless (save-match-data (c-forward-keyword-clause 1))
6419 (if pos
6420 (goto-char pos)
6421 (goto-char (match-end 1))
6422 (c-forward-syntactic-ws)))))
6424 (name-res
6425 (cond ((eq name-res t)
6426 ;; A normal identifier.
6427 (goto-char id-end)
6428 (if (or res c-promote-possible-types)
6429 (progn
6430 (c-add-type id-start id-end)
6431 (when (and c-record-type-identifiers id-range)
6432 (c-record-type-id id-range))
6433 (unless res
6434 (setq res 'found)))
6435 (setq res (if (c-check-type id-start id-end)
6436 ;; It's an identifier that has been used as
6437 ;; a type somewhere else.
6438 'found
6439 ;; It's an identifier that might be a type.
6440 'maybe))))
6441 ((eq name-res 'template)
6442 ;; A template is a type.
6443 (goto-char id-end)
6444 (setq res t))
6446 ;; Otherwise it's an operator identifier, which is not a type.
6447 (goto-char start)
6448 (setq res nil)))))
6450 (when res
6451 ;; Skip trailing type modifiers. If any are found we know it's
6452 ;; a type.
6453 (when c-opt-type-modifier-key
6454 (while (looking-at c-opt-type-modifier-key) ; e.g. "const", "volatile"
6455 (goto-char (match-end 1))
6456 (c-forward-syntactic-ws)
6457 (setq res t)))
6458 ;; Step over any type suffix operator. Do not let the existence
6459 ;; of these alter the classification of the found type, since
6460 ;; these operators typically are allowed in normal expressions
6461 ;; too.
6462 (when c-opt-type-suffix-key
6463 (while (looking-at c-opt-type-suffix-key)
6464 (goto-char (match-end 1))
6465 (c-forward-syntactic-ws)))
6467 (when c-opt-type-concat-key ; Only/mainly for pike.
6468 ;; Look for a trailing operator that concatenates the type
6469 ;; with a following one, and if so step past that one through
6470 ;; a recursive call. Note that we don't record concatenated
6471 ;; types in `c-found-types' - it's the component types that
6472 ;; are recorded when appropriate.
6473 (setq pos (point))
6474 (let* ((c-promote-possible-types (or (memq res '(t known))
6475 c-promote-possible-types))
6476 ;; If we can't promote then set `c-record-found-types' so that
6477 ;; we can merge in the types from the second part afterwards if
6478 ;; it turns out to be a known type there.
6479 (c-record-found-types (and c-record-type-identifiers
6480 (not c-promote-possible-types)))
6481 subres)
6482 (if (and (looking-at c-opt-type-concat-key)
6484 (progn
6485 (goto-char (match-end 1))
6486 (c-forward-syntactic-ws)
6487 (setq subres (c-forward-type))))
6489 (progn
6490 ;; If either operand certainly is a type then both are, but we
6491 ;; don't let the existence of the operator itself promote two
6492 ;; uncertain types to a certain one.
6493 (cond ((eq res t))
6494 ((eq subres t)
6495 (unless (eq name-res 'template)
6496 (c-add-type id-start id-end))
6497 (when (and c-record-type-identifiers id-range)
6498 (c-record-type-id id-range))
6499 (setq res t))
6500 ((eq res 'known))
6501 ((eq subres 'known)
6502 (setq res 'known))
6503 ((eq res 'found))
6504 ((eq subres 'found)
6505 (setq res 'found))
6507 (setq res 'maybe)))
6509 (when (and (eq res t)
6510 (consp c-record-found-types))
6511 ;; Merge in the ranges of any types found by the second
6512 ;; `c-forward-type'.
6513 (setq c-record-type-identifiers
6514 ;; `nconc' doesn't mind that the tail of
6515 ;; `c-record-found-types' is t.
6516 (nconc c-record-found-types
6517 c-record-type-identifiers))))
6519 (goto-char pos))))
6521 (when (and c-record-found-types (memq res '(known found)) id-range)
6522 (setq c-record-found-types
6523 (cons id-range c-record-found-types))))
6525 ;;(message "c-forward-type %s -> %s: %s" start (point) res)
6527 res))
6529 (defun c-forward-annotation ()
6530 ;; Used for Java code only at the moment. Assumes point is on the
6531 ;; @, moves forward an annotation. returns nil if there is no
6532 ;; annotation at point.
6533 (and (looking-at "@")
6534 (progn (forward-char) t)
6535 (c-forward-type)
6536 (progn (c-forward-syntactic-ws) t)
6537 (if (looking-at "(")
6538 (c-go-list-forward)
6539 t)))
6541 (defmacro c-pull-open-brace (ps)
6542 ;; Pull the next open brace from PS (which has the form of paren-state),
6543 ;; skipping over any brace pairs. Returns NIL when PS is exhausted.
6544 `(progn
6545 (while (consp (car ,ps))
6546 (setq ,ps (cdr ,ps)))
6547 (prog1 (car ,ps)
6548 (setq ,ps (cdr ,ps)))))
6550 (defun c-back-over-member-initializers ()
6551 ;; Test whether we are in a C++ member initializer list, and if so, go back
6552 ;; to the introducing ":", returning the position of the opening paren of
6553 ;; the function's arglist. Otherwise return nil, leaving point unchanged.
6554 (let ((here (point))
6555 (paren-state (c-parse-state))
6556 res)
6558 (setq res
6559 (catch 'done
6560 (if (not (c-at-toplevel-p))
6561 (progn
6562 (while (not (c-at-toplevel-p))
6563 (goto-char (c-pull-open-brace paren-state)))
6564 (c-backward-syntactic-ws)
6565 (when (not (c-simple-skip-symbol-backward))
6566 (throw 'done nil))
6567 (c-backward-syntactic-ws))
6568 (c-backward-syntactic-ws)
6569 (when (memq (char-before) '(?\) ?}))
6570 (when (not (c-go-list-backward))
6571 (throw 'done nil))
6572 (c-backward-syntactic-ws))
6573 (when (c-simple-skip-symbol-backward)
6574 (c-backward-syntactic-ws)))
6576 (while (eq (char-before) ?,)
6577 (backward-char)
6578 (c-backward-syntactic-ws)
6580 (when (not (memq (char-before) '(?\) ?})))
6581 (throw 'done nil))
6582 (when (not (c-go-list-backward))
6583 (throw 'done nil))
6584 (c-backward-syntactic-ws)
6585 (when (not (c-simple-skip-symbol-backward))
6586 (throw 'done nil))
6587 (c-backward-syntactic-ws))
6589 (and
6590 (eq (char-before) ?:)
6591 (c-just-after-func-arglist-p))))
6593 (or res (goto-char here))
6594 res))
6597 ;; Handling of large scale constructs like statements and declarations.
6599 ;; Macro used inside `c-forward-decl-or-cast-1'. It ought to be a
6600 ;; defsubst or perhaps even a defun, but it contains lots of free
6601 ;; variables that refer to things inside `c-forward-decl-or-cast-1'.
6602 (defmacro c-fdoc-shift-type-backward (&optional short)
6603 ;; `c-forward-decl-or-cast-1' can consume an arbitrary length list
6604 ;; of types when parsing a declaration, which means that it
6605 ;; sometimes consumes the identifier in the declaration as a type.
6606 ;; This is used to "backtrack" and make the last type be treated as
6607 ;; an identifier instead.
6608 `(progn
6609 ,(unless short
6610 ;; These identifiers are bound only in the inner let.
6611 '(setq identifier-type at-type
6612 identifier-start type-start
6613 got-parens nil
6614 got-identifier t
6615 got-suffix t
6616 got-suffix-after-parens id-start
6617 paren-depth 0))
6619 (if (setq at-type (if (eq backup-at-type 'prefix)
6621 backup-at-type))
6622 (setq type-start backup-type-start
6623 id-start backup-id-start)
6624 (setq type-start start-pos
6625 id-start start-pos))
6627 ;; When these flags already are set we've found specifiers that
6628 ;; unconditionally signal these attributes - backtracking doesn't
6629 ;; change that. So keep them set in that case.
6630 (or at-type-decl
6631 (setq at-type-decl backup-at-type-decl))
6632 (or maybe-typeless
6633 (setq maybe-typeless backup-maybe-typeless))
6635 ,(unless short
6636 ;; This identifier is bound only in the inner let.
6637 '(setq start id-start))))
6639 (defun c-forward-decl-or-cast-1 (preceding-token-end context last-cast-end)
6640 ;; Move forward over a declaration or a cast if at the start of one.
6641 ;; The point is assumed to be at the start of some token. Nil is
6642 ;; returned if no declaration or cast is recognized, and the point
6643 ;; is clobbered in that case.
6645 ;; If a declaration is parsed:
6647 ;; The point is left at the first token after the first complete
6648 ;; declarator, if there is one. The return value is a cons where
6649 ;; the car is the position of the first token in the declarator. (See
6650 ;; below for the cdr.)
6651 ;; Some examples:
6653 ;; void foo (int a, char *b) stuff ...
6654 ;; car ^ ^ point
6655 ;; float (*a)[], b;
6656 ;; car ^ ^ point
6657 ;; unsigned int a = c_style_initializer, b;
6658 ;; car ^ ^ point
6659 ;; unsigned int a (cplusplus_style_initializer), b;
6660 ;; car ^ ^ point (might change)
6661 ;; class Foo : public Bar {}
6662 ;; car ^ ^ point
6663 ;; class PikeClass (int a, string b) stuff ...
6664 ;; car ^ ^ point
6665 ;; enum bool;
6666 ;; car ^ ^ point
6667 ;; enum bool flag;
6668 ;; car ^ ^ point
6669 ;; void cplusplus_function (int x) throw (Bad);
6670 ;; car ^ ^ point
6671 ;; Foo::Foo (int b) : Base (b) {}
6672 ;; car ^ ^ point
6674 ;; The cdr of the return value is non-nil when a
6675 ;; `c-typedef-decl-kwds' specifier is found in the declaration.
6676 ;; Specifically it is a dotted pair (A . B) where B is t when a
6677 ;; `c-typedef-kwds' ("typedef") is present, and A is t when some
6678 ;; other `c-typedef-decl-kwds' (e.g. class, struct, enum)
6679 ;; specifier is present. I.e., (some of) the declared
6680 ;; identifier(s) are types.
6682 ;; If a cast is parsed:
6684 ;; The point is left at the first token after the closing paren of
6685 ;; the cast. The return value is `cast'. Note that the start
6686 ;; position must be at the first token inside the cast parenthesis
6687 ;; to recognize it.
6689 ;; PRECEDING-TOKEN-END is the first position after the preceding
6690 ;; token, i.e. on the other side of the syntactic ws from the point.
6691 ;; Use a value less than or equal to (point-min) if the point is at
6692 ;; the first token in (the visible part of) the buffer.
6694 ;; CONTEXT is a symbol that describes the context at the point:
6695 ;; 'decl In a comma-separated declaration context (typically
6696 ;; inside a function declaration arglist).
6697 ;; '<> In an angle bracket arglist.
6698 ;; 'arglist Some other type of arglist.
6699 ;; nil Some other context or unknown context. Includes
6700 ;; within the parens of an if, for, ... construct.
6702 ;; LAST-CAST-END is the first token after the closing paren of a
6703 ;; preceding cast, or nil if none is known. If
6704 ;; `c-forward-decl-or-cast-1' is used in succession, it should be
6705 ;; the position after the closest preceding call where a cast was
6706 ;; matched. In that case it's used to discover chains of casts like
6707 ;; "(a) (b) c".
6709 ;; This function records identifier ranges on
6710 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6711 ;; `c-record-type-identifiers' is non-nil.
6713 ;; This function might do hidden buffer changes.
6715 (let (;; `start-pos' is used below to point to the start of the
6716 ;; first type, i.e. after any leading specifiers. It might
6717 ;; also point at the beginning of the preceding syntactic
6718 ;; whitespace.
6719 (start-pos (point))
6720 ;; Set to the result of `c-forward-type'.
6721 at-type
6722 ;; The position of the first token in what we currently
6723 ;; believe is the type in the declaration or cast, after any
6724 ;; specifiers and their associated clauses.
6725 type-start
6726 ;; The position of the first token in what we currently
6727 ;; believe is the declarator for the first identifier. Set
6728 ;; when the type is found, and moved forward over any
6729 ;; `c-decl-hangon-kwds' and their associated clauses that
6730 ;; occurs after the type.
6731 id-start
6732 ;; These store `at-type', `type-start' and `id-start' of the
6733 ;; identifier before the one in those variables. The previous
6734 ;; identifier might turn out to be the real type in a
6735 ;; declaration if the last one has to be the declarator in it.
6736 ;; If `backup-at-type' is nil then the other variables have
6737 ;; undefined values.
6738 backup-at-type backup-type-start backup-id-start
6739 ;; Set if we've found a specifier (apart from "typedef") that makes
6740 ;; the defined identifier(s) types.
6741 at-type-decl
6742 ;; Set if we've a "typedef" keyword.
6743 at-typedef
6744 ;; Set if we've found a specifier that can start a declaration
6745 ;; where there's no type.
6746 maybe-typeless
6747 ;; If a specifier is found that also can be a type prefix,
6748 ;; these flags are set instead of those above. If we need to
6749 ;; back up an identifier, they are copied to the real flag
6750 ;; variables. Thus they only take effect if we fail to
6751 ;; interpret it as a type.
6752 backup-at-type-decl backup-maybe-typeless
6753 ;; Whether we've found a declaration or a cast. We might know
6754 ;; this before we've found the type in it. It's 'ids if we've
6755 ;; found two consecutive identifiers (usually a sure sign, but
6756 ;; we should allow that in labels too), and t if we've found a
6757 ;; specifier keyword (a 100% sure sign).
6758 at-decl-or-cast
6759 ;; Set when we need to back up to parse this as a declaration
6760 ;; but not as a cast.
6761 backup-if-not-cast
6762 ;; For casts, the return position.
6763 cast-end
6764 ;; Save `c-record-type-identifiers' and
6765 ;; `c-record-ref-identifiers' since ranges are recorded
6766 ;; speculatively and should be thrown away if it turns out
6767 ;; that it isn't a declaration or cast.
6768 (save-rec-type-ids c-record-type-identifiers)
6769 (save-rec-ref-ids c-record-ref-identifiers))
6771 (while (c-forward-annotation)
6772 (c-forward-syntactic-ws))
6774 ;; Check for a type. Unknown symbols are treated as possible
6775 ;; types, but they could also be specifiers disguised through
6776 ;; macros like __INLINE__, so we recognize both types and known
6777 ;; specifiers after them too.
6778 (while
6779 (let* ((start (point)) kwd-sym kwd-clause-end found-type)
6781 ;; Look for a specifier keyword clause.
6782 (when (or (looking-at c-prefix-spec-kwds-re)
6783 (and (c-major-mode-is 'java-mode)
6784 (looking-at "@[A-Za-z0-9]+")))
6785 (if (looking-at c-typedef-key)
6786 (setq at-typedef t))
6787 (setq kwd-sym (c-keyword-sym (match-string 1)))
6788 (save-excursion
6789 (c-forward-keyword-clause 1)
6790 (setq kwd-clause-end (point))))
6792 (when (setq found-type (c-forward-type t)) ; brace-block-too
6793 ;; Found a known or possible type or a prefix of a known type.
6795 (when at-type
6796 ;; Got two identifiers with nothing but whitespace
6797 ;; between them. That can only happen in declarations.
6798 (setq at-decl-or-cast 'ids)
6800 (when (eq at-type 'found)
6801 ;; If the previous identifier is a found type we
6802 ;; record it as a real one; it might be some sort of
6803 ;; alias for a prefix like "unsigned".
6804 (save-excursion
6805 (goto-char type-start)
6806 (let ((c-promote-possible-types t))
6807 (c-forward-type)))))
6809 (setq backup-at-type at-type
6810 backup-type-start type-start
6811 backup-id-start id-start
6812 at-type found-type
6813 type-start start
6814 id-start (point)
6815 ;; The previous ambiguous specifier/type turned out
6816 ;; to be a type since we've parsed another one after
6817 ;; it, so clear these backup flags.
6818 backup-at-type-decl nil
6819 backup-maybe-typeless nil))
6821 (if kwd-sym
6822 (progn
6823 ;; Handle known specifier keywords and
6824 ;; `c-decl-hangon-kwds' which can occur after known
6825 ;; types.
6827 (if (c-keyword-member kwd-sym 'c-decl-hangon-kwds)
6828 ;; It's a hang-on keyword that can occur anywhere.
6829 (progn
6830 (setq at-decl-or-cast t)
6831 (if at-type
6832 ;; Move the identifier start position if
6833 ;; we've passed a type.
6834 (setq id-start kwd-clause-end)
6835 ;; Otherwise treat this as a specifier and
6836 ;; move the fallback position.
6837 (setq start-pos kwd-clause-end))
6838 (goto-char kwd-clause-end))
6840 ;; It's an ordinary specifier so we know that
6841 ;; anything before this can't be the type.
6842 (setq backup-at-type nil
6843 start-pos kwd-clause-end)
6845 (if found-type
6846 ;; It's ambiguous whether this keyword is a
6847 ;; specifier or a type prefix, so set the backup
6848 ;; flags. (It's assumed that `c-forward-type'
6849 ;; moved further than `c-forward-keyword-clause'.)
6850 (progn
6851 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
6852 (setq backup-at-type-decl t))
6853 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
6854 (setq backup-maybe-typeless t)))
6856 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
6857 ;; This test only happens after we've scanned a type.
6858 ;; So, with valid syntax, kwd-sym can't be 'typedef.
6859 (setq at-type-decl t))
6860 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
6861 (setq maybe-typeless t))
6863 ;; Haven't matched a type so it's an unambiguous
6864 ;; specifier keyword and we know we're in a
6865 ;; declaration.
6866 (setq at-decl-or-cast t)
6868 (goto-char kwd-clause-end))))
6870 ;; If the type isn't known we continue so that we'll jump
6871 ;; over all specifiers and type identifiers. The reason
6872 ;; to do this for a known type prefix is to make things
6873 ;; like "unsigned INT16" work.
6874 (and found-type (not (eq found-type t))))))
6876 (cond
6877 ((eq at-type t)
6878 ;; If a known type was found, we still need to skip over any
6879 ;; hangon keyword clauses after it. Otherwise it has already
6880 ;; been done in the loop above.
6881 (while (looking-at c-decl-hangon-key)
6882 (c-forward-keyword-clause 1))
6883 (setq id-start (point)))
6885 ((eq at-type 'prefix)
6886 ;; A prefix type is itself a primitive type when it's not
6887 ;; followed by another type.
6888 (setq at-type t))
6890 ((not at-type)
6891 ;; Got no type but set things up to continue anyway to handle
6892 ;; the various cases when a declaration doesn't start with a
6893 ;; type.
6894 (setq id-start start-pos))
6896 ((and (eq at-type 'maybe)
6897 (c-major-mode-is 'c++-mode))
6898 ;; If it's C++ then check if the last "type" ends on the form
6899 ;; "foo::foo" or "foo::~foo", i.e. if it's the name of a
6900 ;; (con|de)structor.
6901 (save-excursion
6902 (let (name end-2 end-1)
6903 (goto-char id-start)
6904 (c-backward-syntactic-ws)
6905 (setq end-2 (point))
6906 (when (and
6907 (c-simple-skip-symbol-backward)
6908 (progn
6909 (setq name
6910 (buffer-substring-no-properties (point) end-2))
6911 ;; Cheating in the handling of syntactic ws below.
6912 (< (skip-chars-backward ":~ \t\n\r\v\f") 0))
6913 (progn
6914 (setq end-1 (point))
6915 (c-simple-skip-symbol-backward))
6916 (>= (point) type-start)
6917 (equal (buffer-substring-no-properties (point) end-1)
6918 name))
6919 ;; It is a (con|de)structor name. In that case the
6920 ;; declaration is typeless so zap out any preceding
6921 ;; identifier(s) that we might have taken as types.
6922 (goto-char type-start)
6923 (setq at-type nil
6924 backup-at-type nil
6925 id-start type-start))))))
6927 ;; Check for and step over a type decl expression after the thing
6928 ;; that is or might be a type. This can't be skipped since we
6929 ;; need the correct end position of the declarator for
6930 ;; `max-type-decl-end-*'.
6931 (let ((start (point)) (paren-depth 0) pos
6932 ;; True if there's a non-open-paren match of
6933 ;; `c-type-decl-prefix-key'.
6934 got-prefix
6935 ;; True if the declarator is surrounded by a parenthesis pair.
6936 got-parens
6937 ;; True if there is an identifier in the declarator.
6938 got-identifier
6939 ;; True if there's a non-close-paren match of
6940 ;; `c-type-decl-suffix-key'.
6941 got-suffix
6942 ;; True if there's a prefix match outside the outermost
6943 ;; paren pair that surrounds the declarator.
6944 got-prefix-before-parens
6945 ;; True if there's a suffix match outside the outermost
6946 ;; paren pair that surrounds the declarator. The value is
6947 ;; the position of the first suffix match.
6948 got-suffix-after-parens
6949 ;; True if we've parsed the type decl to a token that is
6950 ;; known to end declarations in this context.
6951 at-decl-end
6952 ;; The earlier values of `at-type' and `type-start' if we've
6953 ;; shifted the type backwards.
6954 identifier-type identifier-start
6955 ;; If `c-parse-and-markup-<>-arglists' is set we need to
6956 ;; turn it off during the name skipping below to avoid
6957 ;; getting `c-type' properties that might be bogus. That
6958 ;; can happen since we don't know if
6959 ;; `c-restricted-<>-arglists' will be correct inside the
6960 ;; arglist paren that gets entered.
6961 c-parse-and-markup-<>-arglists
6962 ;; Start of the identifier for which `got-identifier' was set.
6963 name-start)
6965 (goto-char id-start)
6967 ;; Skip over type decl prefix operators. (Note similar code in
6968 ;; `c-font-lock-declarators'.)
6969 (if (and c-recognize-typeless-decls
6970 (equal c-type-decl-prefix-key "\\<\\>"))
6971 (when (eq (char-after) ?\()
6972 (progn
6973 (setq paren-depth (1+ paren-depth))
6974 (forward-char)))
6975 (while (and (looking-at c-type-decl-prefix-key)
6976 (if (and (c-major-mode-is 'c++-mode)
6977 (match-beginning 3))
6978 ;; If the third submatch matches in C++ then
6979 ;; we're looking at an identifier that's a
6980 ;; prefix only if it specifies a member pointer.
6981 (when (progn (setq pos (point))
6982 (setq got-identifier (c-forward-name)))
6983 (setq name-start pos)
6984 (if (looking-at "\\(::\\)")
6985 ;; We only check for a trailing "::" and
6986 ;; let the "*" that should follow be
6987 ;; matched in the next round.
6988 (progn (setq got-identifier nil) t)
6989 ;; It turned out to be the real identifier,
6990 ;; so stop.
6991 nil))
6994 (if (eq (char-after) ?\()
6995 (progn
6996 (setq paren-depth (1+ paren-depth))
6997 (forward-char))
6998 (unless got-prefix-before-parens
6999 (setq got-prefix-before-parens (= paren-depth 0)))
7000 (setq got-prefix t)
7001 (goto-char (match-end 1)))
7002 (c-forward-syntactic-ws)))
7004 (setq got-parens (> paren-depth 0))
7006 ;; Skip over an identifier.
7007 (or got-identifier
7008 (and (looking-at c-identifier-start)
7009 (setq pos (point))
7010 (setq got-identifier (c-forward-name))
7011 (setq name-start pos)))
7013 ;; Skip over type decl suffix operators.
7014 (while (if (looking-at c-type-decl-suffix-key)
7016 (if (eq (char-after) ?\))
7017 (when (> paren-depth 0)
7018 (setq paren-depth (1- paren-depth))
7019 (forward-char)
7021 (when (if (save-match-data (looking-at "\\s\("))
7022 (c-safe (c-forward-sexp 1) t)
7023 (goto-char (match-end 1))
7025 (when (and (not got-suffix-after-parens)
7026 (= paren-depth 0))
7027 (setq got-suffix-after-parens (match-beginning 0)))
7028 (setq got-suffix t)))
7030 ;; No suffix matched. We might have matched the
7031 ;; identifier as a type and the open paren of a
7032 ;; function arglist as a type decl prefix. In that
7033 ;; case we should "backtrack": Reinterpret the last
7034 ;; type as the identifier, move out of the arglist and
7035 ;; continue searching for suffix operators.
7037 ;; Do this even if there's no preceding type, to cope
7038 ;; with old style function declarations in K&R C,
7039 ;; (con|de)structors in C++ and `c-typeless-decl-kwds'
7040 ;; style declarations. That isn't applicable in an
7041 ;; arglist context, though.
7042 (when (and (= paren-depth 1)
7043 (not got-prefix-before-parens)
7044 (not (eq at-type t))
7045 (or backup-at-type
7046 maybe-typeless
7047 backup-maybe-typeless
7048 (when c-recognize-typeless-decls
7049 (not context)))
7050 (setq pos (c-up-list-forward (point)))
7051 (eq (char-before pos) ?\)))
7052 (c-fdoc-shift-type-backward)
7053 (goto-char pos)
7056 (c-forward-syntactic-ws))
7058 (when (and (or maybe-typeless backup-maybe-typeless)
7059 (not got-identifier)
7060 (not got-prefix)
7061 at-type)
7062 ;; Have found no identifier but `c-typeless-decl-kwds' has
7063 ;; matched so we know we're inside a declaration. The
7064 ;; preceding type must be the identifier instead.
7065 (c-fdoc-shift-type-backward))
7067 (setq
7068 at-decl-or-cast
7069 (catch 'at-decl-or-cast
7071 ;; CASE 1
7072 (when (> paren-depth 0)
7073 ;; Encountered something inside parens that isn't matched by
7074 ;; the `c-type-decl-*' regexps, so it's not a type decl
7075 ;; expression. Try to skip out to the same paren depth to
7076 ;; not confuse the cast check below.
7077 (c-safe (goto-char (scan-lists (point) 1 paren-depth)))
7078 ;; If we've found a specifier keyword then it's a
7079 ;; declaration regardless.
7080 (throw 'at-decl-or-cast (eq at-decl-or-cast t)))
7082 (setq at-decl-end
7083 (looking-at (cond ((eq context '<>) "[,>]")
7084 (context "[,\)]")
7085 (t "[,;]"))))
7087 ;; Now we've collected info about various characteristics of
7088 ;; the construct we're looking at. Below follows a decision
7089 ;; tree based on that. It's ordered to check more certain
7090 ;; signs before less certain ones.
7092 (if got-identifier
7093 (progn
7095 ;; CASE 2
7096 (when (and (or at-type maybe-typeless)
7097 (not (or got-prefix got-parens)))
7098 ;; Got another identifier directly after the type, so it's a
7099 ;; declaration.
7100 (throw 'at-decl-or-cast t))
7103 (when (and got-parens
7104 (not got-prefix)
7105 ;; (not got-suffix-after-parens)
7106 (or backup-at-type
7107 maybe-typeless
7108 backup-maybe-typeless
7109 (eq at-decl-or-cast t)
7110 (save-excursion
7111 (goto-char name-start)
7112 (not (memq (c-forward-type) '(nil maybe))))))
7113 ;; Got a declaration of the form "foo bar (gnu);" or "bar
7114 ;; (gnu);" where we've recognized "bar" as the type and "gnu"
7115 ;; as the declarator. In this case it's however more likely
7116 ;; that "bar" is the declarator and "gnu" a function argument
7117 ;; or initializer (if `c-recognize-paren-inits' is set),
7118 ;; since the parens around "gnu" would be superfluous if it's
7119 ;; a declarator. Shift the type one step backward.
7120 (c-fdoc-shift-type-backward)))
7122 ;; Found no identifier.
7123 (if backup-at-type
7124 (progn
7127 ;; CASE 3
7128 (when (= (point) start)
7129 ;; Got a plain list of identifiers. If a colon follows it's
7130 ;; a valid label, or maybe a bitfield. Otherwise the last
7131 ;; one probably is the declared identifier and we should
7132 ;; back up to the previous type, providing it isn't a cast.
7133 (if (and (eq (char-after) ?:)
7134 (not (c-major-mode-is 'java-mode)))
7135 (cond
7136 ;; If we've found a specifier keyword then it's a
7137 ;; declaration regardless.
7138 ((eq at-decl-or-cast t)
7139 (throw 'at-decl-or-cast t))
7140 ((and c-has-bitfields
7141 (eq at-decl-or-cast 'ids)) ; bitfield.
7142 (setq backup-if-not-cast t)
7143 (throw 'at-decl-or-cast t)))
7145 (setq backup-if-not-cast t)
7146 (throw 'at-decl-or-cast t)))
7148 ;; CASE 4
7149 (when (and got-suffix
7150 (not got-prefix)
7151 (not got-parens))
7152 ;; Got a plain list of identifiers followed by some suffix.
7153 ;; If this isn't a cast then the last identifier probably is
7154 ;; the declared one and we should back up to the previous
7155 ;; type.
7156 (setq backup-if-not-cast t)
7157 (throw 'at-decl-or-cast t)))
7159 ;; CASE 5
7160 (when (eq at-type t)
7161 ;; If the type is known we know that there can't be any
7162 ;; identifier somewhere else, and it's only in declarations in
7163 ;; e.g. function prototypes and in casts that the identifier may
7164 ;; be left out.
7165 (throw 'at-decl-or-cast t))
7167 (when (= (point) start)
7168 ;; Only got a single identifier (parsed as a type so far).
7169 ;; CASE 6
7170 (if (and
7171 ;; Check that the identifier isn't at the start of an
7172 ;; expression.
7173 at-decl-end
7174 (cond
7175 ((eq context 'decl)
7176 ;; Inside an arglist that contains declarations. If K&R
7177 ;; style declarations and parenthesis style initializers
7178 ;; aren't allowed then the single identifier must be a
7179 ;; type, else we require that it's known or found
7180 ;; (primitive types are handled above).
7181 (or (and (not c-recognize-knr-p)
7182 (not c-recognize-paren-inits))
7183 (memq at-type '(known found))))
7184 ((eq context '<>)
7185 ;; Inside a template arglist. Accept known and found
7186 ;; types; other identifiers could just as well be
7187 ;; constants in C++.
7188 (memq at-type '(known found)))))
7189 (throw 'at-decl-or-cast t)
7190 ;; CASE 7
7191 ;; Can't be a valid declaration or cast, but if we've found a
7192 ;; specifier it can't be anything else either, so treat it as
7193 ;; an invalid/unfinished declaration or cast.
7194 (throw 'at-decl-or-cast at-decl-or-cast))))
7196 (if (and got-parens
7197 (not got-prefix)
7198 (not context)
7199 (not (eq at-type t))
7200 (or backup-at-type
7201 maybe-typeless
7202 backup-maybe-typeless
7203 (when c-recognize-typeless-decls
7204 (or (not got-suffix)
7205 (not (looking-at
7206 c-after-suffixed-type-maybe-decl-key))))))
7207 ;; Got an empty paren pair and a preceding type that probably
7208 ;; really is the identifier. Shift the type backwards to make
7209 ;; the last one the identifier. This is analogous to the
7210 ;; "backtracking" done inside the `c-type-decl-suffix-key' loop
7211 ;; above.
7213 ;; Exception: In addition to the conditions in that
7214 ;; "backtracking" code, do not shift backward if we're not
7215 ;; looking at either `c-after-suffixed-type-decl-key' or "[;,]".
7216 ;; Since there's no preceding type, the shift would mean that
7217 ;; the declaration is typeless. But if the regexp doesn't match
7218 ;; then we will simply fall through in the tests below and not
7219 ;; recognize it at all, so it's better to try it as an abstract
7220 ;; declarator instead.
7221 (c-fdoc-shift-type-backward)
7223 ;; Still no identifier.
7224 ;; CASE 8
7225 (when (and got-prefix (or got-parens got-suffix))
7226 ;; Require `got-prefix' together with either `got-parens' or
7227 ;; `got-suffix' to recognize it as an abstract declarator:
7228 ;; `got-parens' only is probably an empty function call.
7229 ;; `got-suffix' only can build an ordinary expression together
7230 ;; with the preceding identifier which we've taken as a type.
7231 ;; We could actually accept on `got-prefix' only, but that can
7232 ;; easily occur temporarily while writing an expression so we
7233 ;; avoid that case anyway. We could do a better job if we knew
7234 ;; the point when the fontification was invoked.
7235 (throw 'at-decl-or-cast t))
7237 ;; CASE 9
7238 (when (and at-type
7239 (not got-prefix)
7240 (not got-parens)
7241 got-suffix-after-parens
7242 (eq (char-after got-suffix-after-parens) ?\())
7243 ;; Got a type, no declarator but a paren suffix. I.e. it's a
7244 ;; normal function call after all (or perhaps a C++ style object
7245 ;; instantiation expression).
7246 (throw 'at-decl-or-cast nil))))
7248 ;; CASE 10
7249 (when at-decl-or-cast
7250 ;; By now we've located the type in the declaration that we know
7251 ;; we're in.
7252 (throw 'at-decl-or-cast t))
7254 ;; CASE 11
7255 (when (and got-identifier
7256 (not context)
7257 (looking-at c-after-suffixed-type-decl-key)
7258 (if (and got-parens
7259 (not got-prefix)
7260 (not got-suffix)
7261 (not (eq at-type t)))
7262 ;; Shift the type backward in the case that there's a
7263 ;; single identifier inside parens. That can only
7264 ;; occur in K&R style function declarations so it's
7265 ;; more likely that it really is a function call.
7266 ;; Therefore we only do this after
7267 ;; `c-after-suffixed-type-decl-key' has matched.
7268 (progn (c-fdoc-shift-type-backward) t)
7269 got-suffix-after-parens))
7270 ;; A declaration according to `c-after-suffixed-type-decl-key'.
7271 (throw 'at-decl-or-cast t))
7273 ;; CASE 12
7274 (when (and (or got-prefix (not got-parens))
7275 (memq at-type '(t known)))
7276 ;; It's a declaration if a known type precedes it and it can't be a
7277 ;; function call.
7278 (throw 'at-decl-or-cast t))
7280 ;; If we get here we can't tell if this is a type decl or a normal
7281 ;; expression by looking at it alone. (That's under the assumption
7282 ;; that normal expressions always can look like type decl expressions,
7283 ;; which isn't really true but the cases where it doesn't hold are so
7284 ;; uncommon (e.g. some placements of "const" in C++) it's not worth
7285 ;; the effort to look for them.)
7287 ;;; 2008-04-16: commented out the next form, to allow the function to recognize
7288 ;;; "foo (int bar)" in CC (an implicit type (in class foo) without a semicolon)
7289 ;;; as a(n almost complete) declaration, enabling it to be fontified.
7290 ;; CASE 13
7291 ;; (unless (or at-decl-end (looking-at "=[^=]"))
7292 ;; If this is a declaration it should end here or its initializer(*)
7293 ;; should start here, so check for allowed separation tokens. Note
7294 ;; that this rule doesn't work e.g. with a K&R arglist after a
7295 ;; function header.
7297 ;; *) Don't check for C++ style initializers using parens
7298 ;; since those already have been matched as suffixes.
7300 ;; If `at-decl-or-cast' is then we've found some other sign that
7301 ;; it's a declaration or cast, so then it's probably an
7302 ;; invalid/unfinished one.
7303 ;; (throw 'at-decl-or-cast at-decl-or-cast))
7305 ;; Below are tests that only should be applied when we're certain to
7306 ;; not have parsed halfway through an expression.
7308 ;; CASE 14
7309 (when (memq at-type '(t known))
7310 ;; The expression starts with a known type so treat it as a
7311 ;; declaration.
7312 (throw 'at-decl-or-cast t))
7314 ;; CASE 15
7315 (when (and (c-major-mode-is 'c++-mode)
7316 ;; In C++ we check if the identifier is a known type, since
7317 ;; (con|de)structors use the class name as identifier.
7318 ;; We've always shifted over the identifier as a type and
7319 ;; then backed up again in this case.
7320 identifier-type
7321 (or (memq identifier-type '(found known))
7322 (and (eq (char-after identifier-start) ?~)
7323 ;; `at-type' probably won't be 'found for
7324 ;; destructors since the "~" is then part of the
7325 ;; type name being checked against the list of
7326 ;; known types, so do a check without that
7327 ;; operator.
7328 (or (save-excursion
7329 (goto-char (1+ identifier-start))
7330 (c-forward-syntactic-ws)
7331 (c-with-syntax-table
7332 c-identifier-syntax-table
7333 (looking-at c-known-type-key)))
7334 (save-excursion
7335 (goto-char (1+ identifier-start))
7336 ;; We have already parsed the type earlier,
7337 ;; so it'd be possible to cache the end
7338 ;; position instead of redoing it here, but
7339 ;; then we'd need to keep track of another
7340 ;; position everywhere.
7341 (c-check-type (point)
7342 (progn (c-forward-type)
7343 (point))))))))
7344 (throw 'at-decl-or-cast t))
7346 (if got-identifier
7347 (progn
7348 ;; CASE 16
7349 (when (and got-prefix-before-parens
7350 at-type
7351 (or at-decl-end (looking-at "=[^=]"))
7352 (not context)
7353 (not got-suffix))
7354 ;; Got something like "foo * bar;". Since we're not inside an
7355 ;; arglist it would be a meaningless expression because the
7356 ;; result isn't used. We therefore choose to recognize it as
7357 ;; a declaration. Do not allow a suffix since it could then
7358 ;; be a function call.
7359 (throw 'at-decl-or-cast t))
7361 ;; CASE 17
7362 (when (and (or got-suffix-after-parens
7363 (looking-at "=[^=]"))
7364 (eq at-type 'found)
7365 (not (eq context 'arglist)))
7366 ;; Got something like "a (*b) (c);" or "a (b) = c;". It could
7367 ;; be an odd expression or it could be a declaration. Treat
7368 ;; it as a declaration if "a" has been used as a type
7369 ;; somewhere else (if it's a known type we won't get here).
7370 (throw 'at-decl-or-cast t)))
7372 ;; CASE 18
7373 (when (and context
7374 (or got-prefix
7375 (and (eq context 'decl)
7376 (not c-recognize-paren-inits)
7377 (or got-parens got-suffix))))
7378 ;; Got a type followed by an abstract declarator. If `got-prefix'
7379 ;; is set it's something like "a *" without anything after it. If
7380 ;; `got-parens' or `got-suffix' is set it's "a()", "a[]", "a()[]",
7381 ;; or similar, which we accept only if the context rules out
7382 ;; expressions.
7383 (throw 'at-decl-or-cast t)))
7385 ;; If we had a complete symbol table here (which rules out
7386 ;; `c-found-types') we should return t due to the disambiguation rule
7387 ;; (in at least C++) that anything that can be parsed as a declaration
7388 ;; is a declaration. Now we're being more defensive and prefer to
7389 ;; highlight things like "foo (bar);" as a declaration only if we're
7390 ;; inside an arglist that contains declarations.
7391 (eq context 'decl))))
7393 ;; The point is now after the type decl expression.
7395 (cond
7396 ;; Check for a cast.
7397 ((save-excursion
7398 (and
7399 c-cast-parens
7401 ;; Should be the first type/identifier in a cast paren.
7402 (> preceding-token-end (point-min))
7403 (memq (char-before preceding-token-end) c-cast-parens)
7405 ;; The closing paren should follow.
7406 (progn
7407 (c-forward-syntactic-ws)
7408 (looking-at "\\s\)"))
7410 ;; There should be a primary expression after it.
7411 (let (pos)
7412 (forward-char)
7413 (c-forward-syntactic-ws)
7414 (setq cast-end (point))
7415 (and (looking-at c-primary-expr-regexp)
7416 (progn
7417 (setq pos (match-end 0))
7419 ;; Check if the expression begins with a prefix keyword.
7420 (match-beginning 2)
7421 (if (match-beginning 1)
7422 ;; Expression begins with an ambiguous operator. Treat
7423 ;; it as a cast if it's a type decl or if we've
7424 ;; recognized the type somewhere else.
7425 (or at-decl-or-cast
7426 (memq at-type '(t known found)))
7427 ;; Unless it's a keyword, it's the beginning of a primary
7428 ;; expression.
7429 (not (looking-at c-keywords-regexp)))))
7430 ;; If `c-primary-expr-regexp' matched a nonsymbol token, check
7431 ;; that it matched a whole one so that we don't e.g. confuse
7432 ;; the operator '-' with '->'. It's ok if it matches further,
7433 ;; though, since it e.g. can match the float '.5' while the
7434 ;; operator regexp only matches '.'.
7435 (or (not (looking-at c-nonsymbol-token-regexp))
7436 (<= (match-end 0) pos))))
7438 ;; There should either be a cast before it or something that isn't an
7439 ;; identifier or close paren.
7440 (> preceding-token-end (point-min))
7441 (progn
7442 (goto-char (1- preceding-token-end))
7443 (or (eq (point) last-cast-end)
7444 (progn
7445 (c-backward-syntactic-ws)
7446 (if (< (skip-syntax-backward "w_") 0)
7447 ;; It's a symbol. Accept it only if it's one of the
7448 ;; keywords that can precede an expression (without
7449 ;; surrounding parens).
7450 (looking-at c-simple-stmt-key)
7451 (and
7452 ;; Check that it isn't a close paren (block close is ok,
7453 ;; though).
7454 (not (memq (char-before) '(?\) ?\])))
7455 ;; Check that it isn't a nonsymbol identifier.
7456 (not (c-on-identifier)))))))))
7458 ;; Handle the cast.
7459 (when (and c-record-type-identifiers at-type (not (eq at-type t)))
7460 (let ((c-promote-possible-types t))
7461 (goto-char type-start)
7462 (c-forward-type)))
7464 (goto-char cast-end)
7465 'cast)
7467 (at-decl-or-cast
7468 ;; We're at a declaration. Highlight the type and the following
7469 ;; declarators.
7471 (when backup-if-not-cast
7472 (c-fdoc-shift-type-backward t))
7474 (when (and (eq context 'decl) (looking-at ","))
7475 ;; Make sure to propagate the `c-decl-arg-start' property to
7476 ;; the next argument if it's set in this one, to cope with
7477 ;; interactive refontification.
7478 (c-put-c-type-property (point) 'c-decl-arg-start))
7480 (when (and c-record-type-identifiers at-type ;; (not (eq at-type t))
7481 ;; There seems no reason to exclude a token from
7482 ;; fontification just because it's "a known type that can't
7483 ;; be a name or other expression". 2013-09-18.
7485 (let ((c-promote-possible-types t))
7486 (save-excursion
7487 (goto-char type-start)
7488 (c-forward-type))))
7490 (cons id-start
7491 (and (or at-type-decl at-typedef)
7492 (cons at-type-decl at-typedef))))
7495 ;; False alarm. Restore the recorded ranges.
7496 (setq c-record-type-identifiers save-rec-type-ids
7497 c-record-ref-identifiers save-rec-ref-ids)
7498 nil))))
7500 (defun c-forward-label (&optional assume-markup preceding-token-end limit)
7501 ;; Assuming that point is at the beginning of a token, check if it starts a
7502 ;; label and if so move over it and return non-nil (t in default situations,
7503 ;; specific symbols (see below) for interesting situations), otherwise don't
7504 ;; move and return nil. "Label" here means "most things with a colon".
7506 ;; More precisely, a "label" is regarded as one of:
7507 ;; (i) a goto target like "foo:" - returns the symbol `goto-target';
7508 ;; (ii) A case label - either the entire construct "case FOO:", or just the
7509 ;; bare "case", should the colon be missing. We return t;
7510 ;; (iii) a keyword which needs a colon, like "default:" or "private:"; We
7511 ;; return t;
7512 ;; (iv) One of QT's "extended" C++ variants of
7513 ;; "private:"/"protected:"/"public:"/"more:" looking like "public slots:".
7514 ;; Returns the symbol `qt-2kwds-colon'.
7515 ;; (v) QT's construct "signals:". Returns the symbol `qt-1kwd-colon'.
7516 ;; (vi) One of the keywords matched by `c-opt-extra-label-key' (without any
7517 ;; colon). Currently (2006-03), this applies only to Objective C's
7518 ;; keywords "@private", "@protected", and "@public". Returns t.
7520 ;; One of the things which will NOT be recognized as a label is a bit-field
7521 ;; element of a struct, something like "int foo:5".
7523 ;; The end of the label is taken to be just after the colon, or the end of
7524 ;; the first submatch in `c-opt-extra-label-key'. The point is directly
7525 ;; after the end on return. The terminating char gets marked with
7526 ;; `c-decl-end' to improve recognition of the following declaration or
7527 ;; statement.
7529 ;; If ASSUME-MARKUP is non-nil, it's assumed that the preceding
7530 ;; label, if any, has already been marked up like that.
7532 ;; If PRECEDING-TOKEN-END is given, it should be the first position
7533 ;; after the preceding token, i.e. on the other side of the
7534 ;; syntactic ws from the point. Use a value less than or equal to
7535 ;; (point-min) if the point is at the first token in (the visible
7536 ;; part of) the buffer.
7538 ;; The optional LIMIT limits the forward scan for the colon.
7540 ;; This function records the ranges of the label symbols on
7541 ;; `c-record-ref-identifiers' if `c-record-type-identifiers' (!) is
7542 ;; non-nil.
7544 ;; This function might do hidden buffer changes.
7546 (let ((start (point))
7547 label-end
7548 qt-symbol-idx
7549 macro-start ; if we're in one.
7550 label-type
7551 kwd)
7552 (cond
7553 ;; "case" or "default" (Doesn't apply to AWK).
7554 ((looking-at c-label-kwds-regexp)
7555 (let ((kwd-end (match-end 1)))
7556 ;; Record only the keyword itself for fontification, since in
7557 ;; case labels the following is a constant expression and not
7558 ;; a label.
7559 (when c-record-type-identifiers
7560 (c-record-ref-id (cons (match-beginning 1) kwd-end)))
7562 ;; Find the label end.
7563 (goto-char kwd-end)
7564 (setq label-type
7565 (if (and (c-syntactic-re-search-forward
7566 ;; Stop on chars that aren't allowed in expressions,
7567 ;; and on operator chars that would be meaningless
7568 ;; there. FIXME: This doesn't cope with ?: operators.
7569 "[;{=,@]\\|\\(\\=\\|[^:]\\):\\([^:]\\|\\'\\)"
7570 limit t t nil 1)
7571 (match-beginning 2))
7573 (progn ; there's a proper :
7574 (goto-char (match-beginning 2)) ; just after the :
7575 (c-put-c-type-property (1- (point)) 'c-decl-end)
7578 ;; It's an unfinished label. We consider the keyword enough
7579 ;; to recognize it as a label, so that it gets fontified.
7580 ;; Leave the point at the end of it, but don't put any
7581 ;; `c-decl-end' marker.
7582 (goto-char kwd-end)
7583 t))))
7585 ;; @private, @protected, @public, in Objective C, or similar.
7586 ((and c-opt-extra-label-key
7587 (looking-at c-opt-extra-label-key))
7588 ;; For a `c-opt-extra-label-key' match, we record the whole
7589 ;; thing for fontification. That's to get the leading '@' in
7590 ;; Objective-C protection labels fontified.
7591 (goto-char (match-end 1))
7592 (when c-record-type-identifiers
7593 (c-record-ref-id (cons (match-beginning 1) (point))))
7594 (c-put-c-type-property (1- (point)) 'c-decl-end)
7595 (setq label-type t))
7597 ;; All other cases of labels.
7598 ((and c-recognize-colon-labels ; nil for AWK and IDL, otherwise t.
7600 ;; A colon label must have something before the colon.
7601 (not (eq (char-after) ?:))
7603 ;; Check that we're not after a token that can't precede a label.
7605 ;; Trivially succeeds when there's no preceding token.
7606 ;; Succeeds when we're at a virtual semicolon.
7607 (if preceding-token-end
7608 (<= preceding-token-end (point-min))
7609 (save-excursion
7610 (c-backward-syntactic-ws)
7611 (setq preceding-token-end (point))
7612 (or (bobp)
7613 (c-at-vsemi-p))))
7615 ;; Check if we're after a label, if we're after a closing
7616 ;; paren that belong to statement, and with
7617 ;; `c-label-prefix-re'. It's done in different order
7618 ;; depending on `assume-markup' since the checks have
7619 ;; different expensiveness.
7620 (if assume-markup
7622 (eq (c-get-char-property (1- preceding-token-end) 'c-type)
7623 'c-decl-end)
7625 (save-excursion
7626 (goto-char (1- preceding-token-end))
7627 (c-beginning-of-current-token)
7628 (or (looking-at c-label-prefix-re)
7629 (looking-at c-block-stmt-1-key)))
7631 (and (eq (char-before preceding-token-end) ?\))
7632 (c-after-conditional)))
7635 (save-excursion
7636 (goto-char (1- preceding-token-end))
7637 (c-beginning-of-current-token)
7638 (or (looking-at c-label-prefix-re)
7639 (looking-at c-block-stmt-1-key)))
7641 (cond
7642 ((eq (char-before preceding-token-end) ?\))
7643 (c-after-conditional))
7645 ((eq (char-before preceding-token-end) ?:)
7646 ;; Might be after another label, so check it recursively.
7647 (save-restriction
7648 (save-excursion
7649 (goto-char (1- preceding-token-end))
7650 ;; Essentially the same as the
7651 ;; `c-syntactic-re-search-forward' regexp below.
7652 (setq macro-start
7653 (save-excursion (and (c-beginning-of-macro)
7654 (point))))
7655 (if macro-start (narrow-to-region macro-start (point-max)))
7656 (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+" nil t)
7657 ;; Note: the following should work instead of the
7658 ;; narrow-to-region above. Investigate why not,
7659 ;; sometime. ACM, 2006-03-31.
7660 ;; (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+"
7661 ;; macro-start t)
7662 (let ((pte (point))
7663 ;; If the caller turned on recording for us,
7664 ;; it shouldn't apply when we check the
7665 ;; preceding label.
7666 c-record-type-identifiers)
7667 ;; A label can't start at a cpp directive. Check for
7668 ;; this, since c-forward-syntactic-ws would foul up on it.
7669 (unless (and c-opt-cpp-prefix (looking-at c-opt-cpp-prefix))
7670 (c-forward-syntactic-ws)
7671 (c-forward-label nil pte start))))))))))
7673 ;; Point is still at the beginning of the possible label construct.
7675 ;; Check that the next nonsymbol token is ":", or that we're in one
7676 ;; of QT's "slots" declarations. Allow '(' for the sake of macro
7677 ;; arguments. FIXME: Should build this regexp from the language
7678 ;; constants.
7679 (cond
7680 ;; public: protected: private:
7681 ((and
7682 (c-major-mode-is 'c++-mode)
7683 (search-forward-regexp
7684 "\\=p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\>[^_]" nil t)
7685 (progn (backward-char)
7686 (c-forward-syntactic-ws limit)
7687 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon.
7688 (forward-char)
7689 (setq label-type t))
7690 ;; QT double keyword like "protected slots:" or goto target.
7691 ((progn (goto-char start) nil))
7692 ((when (c-syntactic-re-search-forward
7693 "[ \t\n[:?;{=*/%&|,<>!@+-]" limit t t) ; not at EOB
7694 (backward-char)
7695 (setq label-end (point))
7696 (setq qt-symbol-idx
7697 (and (c-major-mode-is 'c++-mode)
7698 (string-match
7699 "\\(p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\|more\\)\\>"
7700 (buffer-substring start (point)))))
7701 (c-forward-syntactic-ws limit)
7702 (cond
7703 ((looking-at ":\\([^:]\\|\\'\\)") ; A single colon.
7704 (forward-char)
7705 (setq label-type
7706 (if (or (string= "signals" ; Special QT macro
7707 (setq kwd (buffer-substring-no-properties start label-end)))
7708 (string= "Q_SIGNALS" kwd))
7709 'qt-1kwd-colon
7710 'goto-target)))
7711 ((and qt-symbol-idx
7712 (search-forward-regexp "\\=\\(slots\\|Q_SLOTS\\)\\>" limit t)
7713 (progn (c-forward-syntactic-ws limit)
7714 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon
7715 (forward-char)
7716 (setq label-type 'qt-2kwds-colon)))))))
7718 (save-restriction
7719 (narrow-to-region start (point))
7721 ;; Check that `c-nonlabel-token-key' doesn't match anywhere.
7722 (catch 'check-label
7723 (goto-char start)
7724 (while (progn
7725 (when (looking-at c-nonlabel-token-key)
7726 (goto-char start)
7727 (setq label-type nil)
7728 (throw 'check-label nil))
7729 (and (c-safe (c-forward-sexp)
7730 (c-forward-syntactic-ws)
7732 (not (eobp)))))
7734 ;; Record the identifiers in the label for fontification, unless
7735 ;; it begins with `c-label-kwds' in which case the following
7736 ;; identifiers are part of a (constant) expression that
7737 ;; shouldn't be fontified.
7738 (when (and c-record-type-identifiers
7739 (progn (goto-char start)
7740 (not (looking-at c-label-kwds-regexp))))
7741 (while (c-syntactic-re-search-forward c-symbol-key nil t)
7742 (c-record-ref-id (cons (match-beginning 0)
7743 (match-end 0)))))
7745 (c-put-c-type-property (1- (point-max)) 'c-decl-end)
7746 (goto-char (point-max)))))
7749 ;; Not a label.
7750 (goto-char start)))
7751 label-type))
7753 (defun c-forward-objc-directive ()
7754 ;; Assuming the point is at the beginning of a token, try to move
7755 ;; forward to the end of the Objective-C directive that starts
7756 ;; there. Return t if a directive was fully recognized, otherwise
7757 ;; the point is moved as far as one could be successfully parsed and
7758 ;; nil is returned.
7760 ;; This function records identifier ranges on
7761 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
7762 ;; `c-record-type-identifiers' is non-nil.
7764 ;; This function might do hidden buffer changes.
7766 (let ((start (point))
7767 start-char
7768 (c-promote-possible-types t)
7770 ;; Turn off recognition of angle bracket arglists while parsing
7771 ;; types here since the protocol reference list might then be
7772 ;; considered part of the preceding name or superclass-name.
7773 c-recognize-<>-arglists)
7775 (if (or
7776 (when (looking-at
7777 (eval-when-compile
7778 (c-make-keywords-re t
7779 (append (c-lang-const c-protection-kwds objc)
7780 '("@end"))
7781 'objc-mode)))
7782 (goto-char (match-end 1))
7785 (and
7786 (looking-at
7787 (eval-when-compile
7788 (c-make-keywords-re t
7789 '("@interface" "@implementation" "@protocol")
7790 'objc-mode)))
7792 ;; Handle the name of the class itself.
7793 (progn
7794 ; (c-forward-token-2) ; 2006/1/13 This doesn't move if the token's
7795 ; at EOB.
7796 (goto-char (match-end 0))
7797 (setq lim (point))
7798 (c-skip-ws-forward)
7799 (c-forward-type))
7801 (catch 'break
7802 ;; Look for ": superclass-name" or "( category-name )".
7803 (when (looking-at "[:\(]")
7804 (setq start-char (char-after))
7805 (forward-char)
7806 (c-forward-syntactic-ws)
7807 (unless (c-forward-type) (throw 'break nil))
7808 (when (eq start-char ?\()
7809 (unless (eq (char-after) ?\)) (throw 'break nil))
7810 (forward-char)
7811 (c-forward-syntactic-ws)))
7813 ;; Look for a protocol reference list.
7814 (if (eq (char-after) ?<)
7815 (let ((c-recognize-<>-arglists t)
7816 (c-parse-and-markup-<>-arglists t)
7817 c-restricted-<>-arglists)
7818 (c-forward-<>-arglist t))
7819 t))))
7821 (progn
7822 (c-backward-syntactic-ws lim)
7823 (c-clear-c-type-property start (1- (point)) 'c-decl-end)
7824 (c-put-c-type-property (1- (point)) 'c-decl-end)
7827 (c-clear-c-type-property start (point) 'c-decl-end)
7828 nil)))
7830 (defun c-beginning-of-inheritance-list (&optional lim)
7831 ;; Go to the first non-whitespace after the colon that starts a
7832 ;; multiple inheritance introduction. Optional LIM is the farthest
7833 ;; back we should search.
7835 ;; This function might do hidden buffer changes.
7836 (c-with-syntax-table c++-template-syntax-table
7837 (c-backward-token-2 0 t lim)
7838 (while (and (or (looking-at c-symbol-start)
7839 (looking-at "[<,]\\|::"))
7840 (zerop (c-backward-token-2 1 t lim))))))
7842 (defun c-in-method-def-p ()
7843 ;; Return nil if we aren't in a method definition, otherwise the
7844 ;; position of the initial [+-].
7846 ;; This function might do hidden buffer changes.
7847 (save-excursion
7848 (beginning-of-line)
7849 (and c-opt-method-key
7850 (looking-at c-opt-method-key)
7851 (point))
7854 ;; Contributed by Kevin Ryde <user42@zip.com.au>.
7855 (defun c-in-gcc-asm-p ()
7856 ;; Return non-nil if point is within a gcc \"asm\" block.
7858 ;; This should be called with point inside an argument list.
7860 ;; Only one level of enclosing parentheses is considered, so for
7861 ;; instance `nil' is returned when in a function call within an asm
7862 ;; operand.
7864 ;; This function might do hidden buffer changes.
7866 (and c-opt-asm-stmt-key
7867 (save-excursion
7868 (beginning-of-line)
7869 (backward-up-list 1)
7870 (c-beginning-of-statement-1 (point-min) nil t)
7871 (looking-at c-opt-asm-stmt-key))))
7873 (defun c-at-toplevel-p ()
7874 "Return a determination as to whether point is \"at the top level\".
7875 Informally, \"at the top level\" is anywhere where you can write
7876 a function.
7878 More precisely, being at the top-level means that point is either
7879 outside any enclosing block (such as a function definition), or
7880 directly inside a class, namespace or other block that contains
7881 another declaration level.
7883 If point is not at the top-level (e.g. it is inside a method
7884 definition), then nil is returned. Otherwise, if point is at a
7885 top-level not enclosed within a class definition, t is returned.
7886 Otherwise, a 2-vector is returned where the zeroth element is the
7887 buffer position of the start of the class declaration, and the first
7888 element is the buffer position of the enclosing class's opening
7889 brace.
7891 Note that this function might do hidden buffer changes. See the
7892 comment at the start of cc-engine.el for more info."
7893 (let ((paren-state (c-parse-state)))
7894 (or (not (c-most-enclosing-brace paren-state))
7895 (c-search-uplist-for-classkey paren-state))))
7897 (defun c-just-after-func-arglist-p (&optional lim)
7898 ;; Return non-nil if the point is in the region after the argument
7899 ;; list of a function and its opening brace (or semicolon in case it
7900 ;; got no body). If there are K&R style argument declarations in
7901 ;; that region, the point has to be inside the first one for this
7902 ;; function to recognize it.
7904 ;; If successful, the point is moved to the first token after the
7905 ;; function header (see `c-forward-decl-or-cast-1' for details) and
7906 ;; the position of the opening paren of the function arglist is
7907 ;; returned.
7909 ;; The point is clobbered if not successful.
7911 ;; LIM is used as bound for backward buffer searches.
7913 ;; This function might do hidden buffer changes.
7915 (let ((beg (point)) end id-start)
7916 (and
7917 (eq (c-beginning-of-statement-1 lim) 'same)
7919 (not (and (c-major-mode-is 'objc-mode)
7920 (c-forward-objc-directive)))
7922 (setq id-start
7923 (car-safe (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil)))
7924 (< id-start beg)
7926 ;; There should not be a '=' or ',' between beg and the
7927 ;; start of the declaration since that means we were in the
7928 ;; "expression part" of the declaration.
7929 (or (> (point) beg)
7930 (not (looking-at "[=,]")))
7932 (save-excursion
7933 ;; Check that there's an arglist paren in the
7934 ;; declaration.
7935 (goto-char id-start)
7936 (cond ((eq (char-after) ?\()
7937 ;; The declarator is a paren expression, so skip past it
7938 ;; so that we don't get stuck on that instead of the
7939 ;; function arglist.
7940 (c-forward-sexp))
7941 ((and c-opt-op-identifier-prefix
7942 (looking-at c-opt-op-identifier-prefix))
7943 ;; Don't trip up on "operator ()".
7944 (c-forward-token-2 2 t)))
7945 (and (< (point) beg)
7946 (c-syntactic-re-search-forward "(" beg t t)
7947 (1- (point)))))))
7949 (defun c-in-knr-argdecl (&optional lim)
7950 ;; Return the position of the first argument declaration if point is
7951 ;; inside a K&R style argument declaration list, nil otherwise.
7952 ;; `c-recognize-knr-p' is not checked. If LIM is non-nil, it's a
7953 ;; position that bounds the backward search for the argument list.
7955 ;; Point must be within a possible K&R region, e.g. just before a top-level
7956 ;; "{". It must be outside of parens and brackets. The test can return
7957 ;; false positives otherwise.
7959 ;; This function might do hidden buffer changes.
7961 (save-excursion
7962 (save-restriction
7963 ;; If we're in a macro, our search range is restricted to it. Narrow to
7964 ;; the searchable range.
7965 (let* ((macro-start (save-excursion (and (c-beginning-of-macro) (point))))
7966 (macro-end (save-excursion (and macro-start (c-end-of-macro) (point))))
7967 (low-lim (max (or lim (point-min)) (or macro-start (point-min))))
7968 before-lparen after-rparen
7969 (pp-count-out 20)) ; Max number of paren/brace constructs before
7970 ; we give up
7971 (narrow-to-region low-lim (or macro-end (point-max)))
7973 ;; Search backwards for the defun's argument list. We give up if we
7974 ;; encounter a "}" (end of a previous defun) an "=" (which can't be in
7975 ;; a knr region) or BOB.
7977 ;; The criterion for a paren structure being the arg list is:
7978 ;; o - there is non-WS stuff after it but before any "{"; AND
7979 ;; o - the token after it isn't a ";" AND
7980 ;; o - it is preceded by either an identifier (the function name) or
7981 ;; a macro expansion like "DEFUN (...)"; AND
7982 ;; o - its content is a non-empty comma-separated list of identifiers
7983 ;; (an empty arg list won't have a knr region).
7985 ;; The following snippet illustrates these rules:
7986 ;; int foo (bar, baz, yuk)
7987 ;; int bar [] ;
7988 ;; int (*baz) (my_type) ;
7989 ;; int (*) (void) (*yuk) (void) ;
7990 ;; {
7992 (catch 'knr
7993 (while (> pp-count-out 0) ; go back one paren/bracket pair each time.
7994 (setq pp-count-out (1- pp-count-out))
7995 (c-syntactic-skip-backward "^)]}=")
7996 (cond ((eq (char-before) ?\))
7997 (setq after-rparen (point)))
7998 ((eq (char-before) ?\])
7999 (setq after-rparen nil))
8000 (t ; either } (hit previous defun) or = or no more
8001 ; parens/brackets.
8002 (throw 'knr nil)))
8004 (if after-rparen
8005 ;; We're inside a paren. Could it be our argument list....?
8007 (and
8008 (progn
8009 (goto-char after-rparen)
8010 (unless (c-go-list-backward) (throw 'knr nil)) ;
8011 ;; FIXME!!! What about macros between the parens? 2007/01/20
8012 (setq before-lparen (point)))
8014 ;; It can't be the arg list if next token is ; or {
8015 (progn (goto-char after-rparen)
8016 (c-forward-syntactic-ws)
8017 (not (memq (char-after) '(?\; ?\{ ?\=))))
8019 ;; Is the thing preceding the list an identifier (the
8020 ;; function name), or a macro expansion?
8021 (progn
8022 (goto-char before-lparen)
8023 (eq (c-backward-token-2) 0)
8024 (or (eq (c-on-identifier) (point))
8025 (and (eq (char-after) ?\))
8026 (c-go-up-list-backward)
8027 (eq (c-backward-token-2) 0)
8028 (eq (c-on-identifier) (point)))))
8030 ;; Have we got a non-empty list of comma-separated
8031 ;; identifiers?
8032 (progn
8033 (goto-char before-lparen)
8034 (c-forward-token-2) ; to first token inside parens
8035 (and
8036 (c-on-identifier)
8037 (c-forward-token-2)
8038 (catch 'id-list
8039 (while (eq (char-after) ?\,)
8040 (c-forward-token-2)
8041 (unless (c-on-identifier) (throw 'id-list nil))
8042 (c-forward-token-2))
8043 (eq (char-after) ?\))))))
8045 ;; ...Yes. We've identified the function's argument list.
8046 (throw 'knr
8047 (progn (goto-char after-rparen)
8048 (c-forward-syntactic-ws)
8049 (point)))
8051 ;; ...No. The current parens aren't the function's arg list.
8052 (goto-char before-lparen))
8054 (or (c-go-list-backward) ; backwards over [ .... ]
8055 (throw 'knr nil)))))))))
8057 (defun c-skip-conditional ()
8058 ;; skip forward over conditional at point, including any predicate
8059 ;; statements in parentheses. No error checking is performed.
8061 ;; This function might do hidden buffer changes.
8062 (c-forward-sexp (cond
8063 ;; else if()
8064 ((looking-at (concat "\\<else"
8065 "\\([ \t\n]\\|\\\\\n\\)+"
8066 "if\\>\\([^_]\\|$\\)"))
8068 ;; do, else, try, finally
8069 ((looking-at (concat "\\<\\("
8070 "do\\|else\\|try\\|finally"
8071 "\\)\\>\\([^_]\\|$\\)"))
8073 ;; for, if, while, switch, catch, synchronized, foreach
8074 (t 2))))
8076 (defun c-after-conditional (&optional lim)
8077 ;; If looking at the token after a conditional then return the
8078 ;; position of its start, otherwise return nil.
8080 ;; This function might do hidden buffer changes.
8081 (save-excursion
8082 (and (zerop (c-backward-token-2 1 t lim))
8083 (or (looking-at c-block-stmt-1-key)
8084 (and (eq (char-after) ?\()
8085 (zerop (c-backward-token-2 1 t lim))
8086 (or (looking-at c-block-stmt-2-key)
8087 (looking-at c-block-stmt-1-2-key))))
8088 (point))))
8090 (defun c-after-special-operator-id (&optional lim)
8091 ;; If the point is after an operator identifier that isn't handled
8092 ;; like an ordinary symbol (i.e. like "operator =" in C++) then the
8093 ;; position of the start of that identifier is returned. nil is
8094 ;; returned otherwise. The point may be anywhere in the syntactic
8095 ;; whitespace after the last token of the operator identifier.
8097 ;; This function might do hidden buffer changes.
8098 (save-excursion
8099 (and c-overloadable-operators-regexp
8100 (zerop (c-backward-token-2 1 nil lim))
8101 (looking-at c-overloadable-operators-regexp)
8102 (or (not c-opt-op-identifier-prefix)
8103 (and
8104 (zerop (c-backward-token-2 1 nil lim))
8105 (looking-at c-opt-op-identifier-prefix)))
8106 (point))))
8108 (defsubst c-backward-to-block-anchor (&optional lim)
8109 ;; Assuming point is at a brace that opens a statement block of some
8110 ;; kind, move to the proper anchor point for that block. It might
8111 ;; need to be adjusted further by c-add-stmt-syntax, but the
8112 ;; position at return is suitable as start position for that
8113 ;; function.
8115 ;; This function might do hidden buffer changes.
8116 (unless (= (point) (c-point 'boi))
8117 (let ((start (c-after-conditional lim)))
8118 (if start
8119 (goto-char start)))))
8121 (defsubst c-backward-to-decl-anchor (&optional lim)
8122 ;; Assuming point is at a brace that opens the block of a top level
8123 ;; declaration of some kind, move to the proper anchor point for
8124 ;; that block.
8126 ;; This function might do hidden buffer changes.
8127 (unless (= (point) (c-point 'boi))
8128 (c-beginning-of-statement-1 lim)))
8130 (defun c-search-decl-header-end ()
8131 ;; Search forward for the end of the "header" of the current
8132 ;; declaration. That's the position where the definition body
8133 ;; starts, or the first variable initializer, or the ending
8134 ;; semicolon. I.e. search forward for the closest following
8135 ;; (syntactically relevant) '{', '=' or ';' token. Point is left
8136 ;; _after_ the first found token, or at point-max if none is found.
8138 ;; This function might do hidden buffer changes.
8140 (let ((base (point)))
8141 (if (c-major-mode-is 'c++-mode)
8143 ;; In C++ we need to take special care to handle operator
8144 ;; tokens and those pesky template brackets.
8145 (while (and
8146 (c-syntactic-re-search-forward "[;{<=]" nil 'move t t)
8148 (c-end-of-current-token base)
8149 ;; Handle operator identifiers, i.e. ignore any
8150 ;; operator token preceded by "operator".
8151 (save-excursion
8152 (and (c-safe (c-backward-sexp) t)
8153 (looking-at c-opt-op-identifier-prefix)))
8154 (and (eq (char-before) ?<)
8155 (c-with-syntax-table c++-template-syntax-table
8156 (if (c-safe (goto-char (c-up-list-forward (point))))
8158 (goto-char (point-max))
8159 nil)))))
8160 (setq base (point)))
8162 (while (and
8163 (c-syntactic-re-search-forward "[;{=]" nil 'move t t)
8164 (c-end-of-current-token base))
8165 (setq base (point))))))
8167 (defun c-beginning-of-decl-1 (&optional lim)
8168 ;; Go to the beginning of the current declaration, or the beginning
8169 ;; of the previous one if already at the start of it. Point won't
8170 ;; be moved out of any surrounding paren. Return a cons cell of the
8171 ;; form (MOVE . KNR-POS). MOVE is like the return value from
8172 ;; `c-beginning-of-statement-1'. If point skipped over some K&R
8173 ;; style argument declarations (and they are to be recognized) then
8174 ;; KNR-POS is set to the start of the first such argument
8175 ;; declaration, otherwise KNR-POS is nil. If LIM is non-nil, it's a
8176 ;; position that bounds the backward search.
8178 ;; NB: Cases where the declaration continues after the block, as in
8179 ;; "struct foo { ... } bar;", are currently recognized as two
8180 ;; declarations, e.g. "struct foo { ... }" and "bar;" in this case.
8182 ;; This function might do hidden buffer changes.
8183 (catch 'return
8184 (let* ((start (point))
8185 (last-stmt-start (point))
8186 (move (c-beginning-of-statement-1 lim nil t)))
8188 ;; `c-beginning-of-statement-1' stops at a block start, but we
8189 ;; want to continue if the block doesn't begin a top level
8190 ;; construct, i.e. if it isn't preceded by ';', '}', ':', bob,
8191 ;; or an open paren.
8192 (let ((beg (point)) tentative-move)
8193 ;; Go back one "statement" each time round the loop until we're just
8194 ;; after a ;, }, or :, or at BOB or the start of a macro or start of
8195 ;; an ObjC method. This will move over a multiple declaration whose
8196 ;; components are comma separated.
8197 (while (and
8198 ;; Must check with c-opt-method-key in ObjC mode.
8199 (not (and c-opt-method-key
8200 (looking-at c-opt-method-key)))
8201 (/= last-stmt-start (point))
8202 (progn
8203 (c-backward-syntactic-ws lim)
8204 (not (memq (char-before) '(?\; ?} ?: nil))))
8205 (save-excursion
8206 (backward-char)
8207 (not (looking-at "\\s(")))
8208 ;; Check that we don't move from the first thing in a
8209 ;; macro to its header.
8210 (not (eq (setq tentative-move
8211 (c-beginning-of-statement-1 lim nil t))
8212 'macro)))
8213 (setq last-stmt-start beg
8214 beg (point)
8215 move tentative-move))
8216 (goto-char beg))
8218 (when c-recognize-knr-p
8219 (let ((fallback-pos (point)) knr-argdecl-start)
8220 ;; Handle K&R argdecls. Back up after the "statement" jumped
8221 ;; over by `c-beginning-of-statement-1', unless it was the
8222 ;; function body, in which case we're sitting on the opening
8223 ;; brace now. Then test if we're in a K&R argdecl region and
8224 ;; that we started at the other side of the first argdecl in
8225 ;; it.
8226 (unless (eq (char-after) ?{)
8227 (goto-char last-stmt-start))
8228 (if (and (setq knr-argdecl-start (c-in-knr-argdecl lim))
8229 (< knr-argdecl-start start)
8230 (progn
8231 (goto-char knr-argdecl-start)
8232 (not (eq (c-beginning-of-statement-1 lim nil t) 'macro))))
8233 (throw 'return
8234 (cons (if (eq (char-after fallback-pos) ?{)
8235 'previous
8236 'same)
8237 knr-argdecl-start))
8238 (goto-char fallback-pos))))
8240 ;; `c-beginning-of-statement-1' counts each brace block as a separate
8241 ;; statement, so the result will be 'previous if we've moved over any.
8242 ;; So change our result back to 'same if necessary.
8244 ;; If they were brace list initializers we might not have moved over a
8245 ;; declaration boundary though, so change it to 'same if we've moved
8246 ;; past a '=' before '{', but not ';'. (This ought to be integrated
8247 ;; into `c-beginning-of-statement-1', so we avoid this extra pass which
8248 ;; potentially can search over a large amount of text.). Take special
8249 ;; pains not to get mislead by C++'s "operator=", and the like.
8250 (if (and (eq move 'previous)
8251 (c-with-syntax-table (if (c-major-mode-is 'c++-mode)
8252 c++-template-syntax-table
8253 (syntax-table))
8254 (save-excursion
8255 (and
8256 (progn
8257 (while ; keep going back to "[;={"s until we either find
8258 ; no more, or get to one which isn't an "operator ="
8259 (and (c-syntactic-re-search-forward "[;={]" start t t t)
8260 (eq (char-before) ?=)
8261 c-overloadable-operators-regexp
8262 c-opt-op-identifier-prefix
8263 (save-excursion
8264 (eq (c-backward-token-2) 0)
8265 (looking-at c-overloadable-operators-regexp)
8266 (eq (c-backward-token-2) 0)
8267 (looking-at c-opt-op-identifier-prefix))))
8268 (eq (char-before) ?=))
8269 (c-syntactic-re-search-forward "[;{]" start t t)
8270 (eq (char-before) ?{)
8271 (c-safe (goto-char (c-up-list-forward (point))) t)
8272 (not (c-syntactic-re-search-forward ";" start t t))))))
8273 (cons 'same nil)
8274 (cons move nil)))))
8276 (defun c-end-of-decl-1 ()
8277 ;; Assuming point is at the start of a declaration (as detected by
8278 ;; e.g. `c-beginning-of-decl-1'), go to the end of it. Unlike
8279 ;; `c-beginning-of-decl-1', this function handles the case when a
8280 ;; block is followed by identifiers in e.g. struct declarations in C
8281 ;; or C++. If a proper end was found then t is returned, otherwise
8282 ;; point is moved as far as possible within the current sexp and nil
8283 ;; is returned. This function doesn't handle macros; use
8284 ;; `c-end-of-macro' instead in those cases.
8286 ;; This function might do hidden buffer changes.
8287 (let ((start (point))
8288 (decl-syntax-table (if (c-major-mode-is 'c++-mode)
8289 c++-template-syntax-table
8290 (syntax-table))))
8291 (catch 'return
8292 (c-search-decl-header-end)
8294 (when (and c-recognize-knr-p
8295 (eq (char-before) ?\;)
8296 (c-in-knr-argdecl start))
8297 ;; Stopped at the ';' in a K&R argdecl section which is
8298 ;; detected using the same criteria as in
8299 ;; `c-beginning-of-decl-1'. Move to the following block
8300 ;; start.
8301 (c-syntactic-re-search-forward "{" nil 'move t))
8303 (when (eq (char-before) ?{)
8304 ;; Encountered a block in the declaration. Jump over it.
8305 (condition-case nil
8306 (goto-char (c-up-list-forward (point)))
8307 (error (goto-char (point-max))
8308 (throw 'return nil)))
8309 (if (or (not c-opt-block-decls-with-vars-key)
8310 (save-excursion
8311 (c-with-syntax-table decl-syntax-table
8312 (let ((lim (point)))
8313 (goto-char start)
8314 (not (and
8315 ;; Check for `c-opt-block-decls-with-vars-key'
8316 ;; before the first paren.
8317 (c-syntactic-re-search-forward
8318 (concat "[;=\(\[{]\\|\\("
8319 c-opt-block-decls-with-vars-key
8320 "\\)")
8321 lim t t t)
8322 (match-beginning 1)
8323 (not (eq (char-before) ?_))
8324 ;; Check that the first following paren is
8325 ;; the block.
8326 (c-syntactic-re-search-forward "[;=\(\[{]"
8327 lim t t t)
8328 (eq (char-before) ?{)))))))
8329 ;; The declaration doesn't have any of the
8330 ;; `c-opt-block-decls-with-vars' keywords in the
8331 ;; beginning, so it ends here at the end of the block.
8332 (throw 'return t)))
8334 (c-with-syntax-table decl-syntax-table
8335 (while (progn
8336 (if (eq (char-before) ?\;)
8337 (throw 'return t))
8338 (c-syntactic-re-search-forward ";" nil 'move t))))
8339 nil)))
8341 (defun c-looking-at-decl-block (containing-sexp goto-start &optional limit)
8342 ;; Assuming the point is at an open brace, check if it starts a
8343 ;; block that contains another declaration level, i.e. that isn't a
8344 ;; statement block or a brace list, and if so return non-nil.
8346 ;; If the check is successful, the return value is the start of the
8347 ;; keyword that tells what kind of construct it is, i.e. typically
8348 ;; what `c-decl-block-key' matched. Also, if GOTO-START is set then
8349 ;; the point will be at the start of the construct, before any
8350 ;; leading specifiers, otherwise it's at the returned position.
8352 ;; The point is clobbered if the check is unsuccessful.
8354 ;; CONTAINING-SEXP is the position of the open of the surrounding
8355 ;; paren, or nil if none.
8357 ;; The optional LIMIT limits the backward search for the start of
8358 ;; the construct. It's assumed to be at a syntactically relevant
8359 ;; position.
8361 ;; If any template arglists are found in the searched region before
8362 ;; the open brace, they get marked with paren syntax.
8364 ;; This function might do hidden buffer changes.
8366 (let ((open-brace (point)) kwd-start first-specifier-pos)
8367 (c-syntactic-skip-backward c-block-prefix-charset limit t)
8369 (when (and c-recognize-<>-arglists
8370 (eq (char-before) ?>))
8371 ;; Could be at the end of a template arglist.
8372 (let ((c-parse-and-markup-<>-arglists t)
8373 (c-disallow-comma-in-<>-arglists
8374 (and containing-sexp
8375 (not (eq (char-after containing-sexp) ?{)))))
8376 (while (and
8377 (c-backward-<>-arglist nil limit)
8378 (progn
8379 (c-syntactic-skip-backward c-block-prefix-charset limit t)
8380 (eq (char-before) ?>))))))
8382 ;; Note: Can't get bogus hits inside template arglists below since they
8383 ;; have gotten paren syntax above.
8384 (when (and
8385 ;; If `goto-start' is set we begin by searching for the
8386 ;; first possible position of a leading specifier list.
8387 ;; The `c-decl-block-key' search continues from there since
8388 ;; we know it can't match earlier.
8389 (if goto-start
8390 (when (c-syntactic-re-search-forward c-symbol-start
8391 open-brace t t)
8392 (goto-char (setq first-specifier-pos (match-beginning 0)))
8396 (cond
8397 ((c-syntactic-re-search-forward c-decl-block-key open-brace t t t)
8398 (goto-char (setq kwd-start (match-beginning 0)))
8401 ;; Found a keyword that can't be a type?
8402 (match-beginning 1)
8404 ;; Can be a type too, in which case it's the return type of a
8405 ;; function (under the assumption that no declaration level
8406 ;; block construct starts with a type).
8407 (not (c-forward-type))
8409 ;; Jumped over a type, but it could be a declaration keyword
8410 ;; followed by the declared identifier that we've jumped over
8411 ;; instead (e.g. in "class Foo {"). If it indeed is a type
8412 ;; then we should be at the declarator now, so check for a
8413 ;; valid declarator start.
8415 ;; Note: This doesn't cope with the case when a declared
8416 ;; identifier is followed by e.g. '(' in a language where '('
8417 ;; also might be part of a declarator expression. Currently
8418 ;; there's no such language.
8419 (not (or (looking-at c-symbol-start)
8420 (looking-at c-type-decl-prefix-key)))))
8422 ;; In Pike a list of modifiers may be followed by a brace
8423 ;; to make them apply to many identifiers. Note that the
8424 ;; match data will be empty on return in this case.
8425 ((and (c-major-mode-is 'pike-mode)
8426 (progn
8427 (goto-char open-brace)
8428 (= (c-backward-token-2) 0))
8429 (looking-at c-specifier-key)
8430 ;; Use this variant to avoid yet another special regexp.
8431 (c-keyword-member (c-keyword-sym (match-string 1))
8432 'c-modifier-kwds))
8433 (setq kwd-start (point))
8434 t)))
8436 ;; Got a match.
8438 (if goto-start
8439 ;; Back up over any preceding specifiers and their clauses
8440 ;; by going forward from `first-specifier-pos', which is the
8441 ;; earliest possible position where the specifier list can
8442 ;; start.
8443 (progn
8444 (goto-char first-specifier-pos)
8446 (while (< (point) kwd-start)
8447 (if (looking-at c-symbol-key)
8448 ;; Accept any plain symbol token on the ground that
8449 ;; it's a specifier masked through a macro (just
8450 ;; like `c-forward-decl-or-cast-1' skip forward over
8451 ;; such tokens).
8453 ;; Could be more restrictive wrt invalid keywords,
8454 ;; but that'd only occur in invalid code so there's
8455 ;; no use spending effort on it.
8456 (let ((end (match-end 0)))
8457 (unless (c-forward-keyword-clause 0)
8458 (goto-char end)
8459 (c-forward-syntactic-ws)))
8461 ;; Can't parse a declaration preamble and is still
8462 ;; before `kwd-start'. That means `first-specifier-pos'
8463 ;; was in some earlier construct. Search again.
8464 (if (c-syntactic-re-search-forward c-symbol-start
8465 kwd-start 'move t)
8466 (goto-char (setq first-specifier-pos (match-beginning 0)))
8467 ;; Got no preamble before the block declaration keyword.
8468 (setq first-specifier-pos kwd-start))))
8470 (goto-char first-specifier-pos))
8471 (goto-char kwd-start))
8473 kwd-start)))
8475 (defun c-search-uplist-for-classkey (paren-state)
8476 ;; Check if the closest containing paren sexp is a declaration
8477 ;; block, returning a 2 element vector in that case. Aref 0
8478 ;; contains the bufpos at boi of the class key line, and aref 1
8479 ;; contains the bufpos of the open brace. This function is an
8480 ;; obsolete wrapper for `c-looking-at-decl-block'.
8482 ;; This function might do hidden buffer changes.
8483 (let ((open-paren-pos (c-most-enclosing-brace paren-state)))
8484 (when open-paren-pos
8485 (save-excursion
8486 (goto-char open-paren-pos)
8487 (when (and (eq (char-after) ?{)
8488 (c-looking-at-decl-block
8489 (c-safe-position open-paren-pos paren-state)
8490 nil))
8491 (back-to-indentation)
8492 (vector (point) open-paren-pos))))))
8494 (defun c-most-enclosing-decl-block (paren-state)
8495 ;; Return the buffer position of the most enclosing decl-block brace (in the
8496 ;; sense of c-looking-at-decl-block) in the PAREN-STATE structure, or nil if
8497 ;; none was found.
8498 (let* ((open-brace (c-pull-open-brace paren-state))
8499 (next-open-brace (c-pull-open-brace paren-state)))
8500 (while (and open-brace
8501 (save-excursion
8502 (goto-char open-brace)
8503 (not (c-looking-at-decl-block next-open-brace nil))))
8504 (setq open-brace next-open-brace
8505 next-open-brace (c-pull-open-brace paren-state)))
8506 open-brace))
8508 (defun c-cheap-inside-bracelist-p (paren-state)
8509 ;; Return the position of the L-brace if point is inside a brace list
8510 ;; initialization of an array, etc. This is an approximate function,
8511 ;; designed for speed over accuracy. It will not find every bracelist, but
8512 ;; a non-nil result is reliable. We simply search for "= {" (naturally with
8513 ;; syntactic whitespace allowed). PAREN-STATE is the normal thing that it
8514 ;; is everywhere else.
8515 (let (b-pos)
8516 (save-excursion
8517 (while
8518 (and (setq b-pos (c-pull-open-brace paren-state))
8519 (progn (goto-char b-pos)
8520 (c-backward-sws)
8521 (c-backward-token-2)
8522 (not (looking-at "=")))))
8523 b-pos)))
8525 (defun c-backward-over-enum-header ()
8526 ;; We're at a "{". Move back to the enum-like keyword that starts this
8527 ;; declaration and return t, otherwise don't move and return nil.
8528 (let ((here (point))
8529 up-sexp-pos before-identifier)
8530 (while
8531 (and
8532 (eq (c-backward-token-2) 0)
8533 (or (not (looking-at "\\s)"))
8534 (c-go-up-list-backward))
8535 (cond
8536 ((and (looking-at c-symbol-key) (c-on-identifier)
8537 (not before-identifier))
8538 (setq before-identifier t))
8539 ((and before-identifier
8540 (or (eq (char-after) ?,)
8541 (looking-at c-postfix-decl-spec-key)))
8542 (setq before-identifier nil)
8544 ((looking-at c-brace-list-key) nil)
8545 ((and c-recognize-<>-arglists
8546 (eq (char-after) ?<)
8547 (looking-at "\\s("))
8549 (t nil))))
8550 (or (looking-at c-brace-list-key)
8551 (progn (goto-char here) nil))))
8553 (defun c-inside-bracelist-p (containing-sexp paren-state)
8554 ;; return the buffer position of the beginning of the brace list
8555 ;; statement if we're inside a brace list, otherwise return nil.
8556 ;; CONTAINING-SEXP is the buffer pos of the innermost containing
8557 ;; paren. PAREN-STATE is the remainder of the state of enclosing
8558 ;; braces
8560 ;; N.B.: This algorithm can potentially get confused by cpp macros
8561 ;; placed in inconvenient locations. It's a trade-off we make for
8562 ;; speed.
8564 ;; This function might do hidden buffer changes.
8566 ;; This will pick up brace list declarations.
8567 (save-excursion
8568 (goto-char containing-sexp)
8569 (c-backward-over-enum-header))
8570 ;; this will pick up array/aggregate init lists, even if they are nested.
8571 (save-excursion
8572 (let ((class-key
8573 ;; Pike can have class definitions anywhere, so we must
8574 ;; check for the class key here.
8575 (and (c-major-mode-is 'pike-mode)
8576 c-decl-block-key))
8577 bufpos braceassignp lim next-containing macro-start)
8578 (while (and (not bufpos)
8579 containing-sexp)
8580 (when paren-state
8581 (if (consp (car paren-state))
8582 (setq lim (cdr (car paren-state))
8583 paren-state (cdr paren-state))
8584 (setq lim (car paren-state)))
8585 (when paren-state
8586 (setq next-containing (car paren-state)
8587 paren-state (cdr paren-state))))
8588 (goto-char containing-sexp)
8589 (if (c-looking-at-inexpr-block next-containing next-containing)
8590 ;; We're in an in-expression block of some kind. Do not
8591 ;; check nesting. We deliberately set the limit to the
8592 ;; containing sexp, so that c-looking-at-inexpr-block
8593 ;; doesn't check for an identifier before it.
8594 (setq containing-sexp nil)
8595 ;; see if the open brace is preceded by = or [...] in
8596 ;; this statement, but watch out for operator=
8597 (setq braceassignp 'dontknow)
8598 (c-backward-token-2 1 t lim)
8599 ;; Checks to do only on the first sexp before the brace.
8600 (when (and c-opt-inexpr-brace-list-key
8601 (eq (char-after) ?\[))
8602 ;; In Java, an initialization brace list may follow
8603 ;; directly after "new Foo[]", so check for a "new"
8604 ;; earlier.
8605 (while (eq braceassignp 'dontknow)
8606 (setq braceassignp
8607 (cond ((/= (c-backward-token-2 1 t lim) 0) nil)
8608 ((looking-at c-opt-inexpr-brace-list-key) t)
8609 ((looking-at "\\sw\\|\\s_\\|[.[]")
8610 ;; Carry on looking if this is an
8611 ;; identifier (may contain "." in Java)
8612 ;; or another "[]" sexp.
8613 'dontknow)
8614 (t nil)))))
8615 ;; Checks to do on all sexps before the brace, up to the
8616 ;; beginning of the statement.
8617 (while (eq braceassignp 'dontknow)
8618 (cond ((eq (char-after) ?\;)
8619 (setq braceassignp nil))
8620 ((and class-key
8621 (looking-at class-key))
8622 (setq braceassignp nil))
8623 ((eq (char-after) ?=)
8624 ;; We've seen a =, but must check earlier tokens so
8625 ;; that it isn't something that should be ignored.
8626 (setq braceassignp 'maybe)
8627 (while (and (eq braceassignp 'maybe)
8628 (zerop (c-backward-token-2 1 t lim)))
8629 (setq braceassignp
8630 (cond
8631 ;; Check for operator =
8632 ((and c-opt-op-identifier-prefix
8633 (looking-at c-opt-op-identifier-prefix))
8634 nil)
8635 ;; Check for `<opchar>= in Pike.
8636 ((and (c-major-mode-is 'pike-mode)
8637 (or (eq (char-after) ?`)
8638 ;; Special case for Pikes
8639 ;; `[]=, since '[' is not in
8640 ;; the punctuation class.
8641 (and (eq (char-after) ?\[)
8642 (eq (char-before) ?`))))
8643 nil)
8644 ((looking-at "\\s.") 'maybe)
8645 ;; make sure we're not in a C++ template
8646 ;; argument assignment
8647 ((and
8648 (c-major-mode-is 'c++-mode)
8649 (save-excursion
8650 (let ((here (point))
8651 (pos< (progn
8652 (skip-chars-backward "^<>")
8653 (point))))
8654 (and (eq (char-before) ?<)
8655 (not (c-crosses-statement-barrier-p
8656 pos< here))
8657 (not (c-in-literal))
8658 ))))
8659 nil)
8660 (t t))))))
8661 (if (and (eq braceassignp 'dontknow)
8662 (/= (c-backward-token-2 1 t lim) 0))
8663 (setq braceassignp nil)))
8664 (cond
8665 (braceassignp
8666 ;; We've hit the beginning of the aggregate list.
8667 (c-beginning-of-statement-1
8668 (c-most-enclosing-brace paren-state))
8669 (setq bufpos (point)))
8670 ((eq (char-after) ?\;)
8671 ;; Brace lists can't contain a semicolon, so we're done.
8672 (setq containing-sexp nil))
8673 ((and (setq macro-start (point))
8674 (c-forward-to-cpp-define-body)
8675 (eq (point) containing-sexp))
8676 ;; We've a macro whose expansion starts with the '{'.
8677 ;; Heuristically, if we have a ';' in it we've not got a
8678 ;; brace list, otherwise we have.
8679 (let ((macro-end (progn (c-end-of-macro) (point))))
8680 (goto-char containing-sexp)
8681 (forward-char)
8682 (if (and (c-syntactic-re-search-forward "[;,]" macro-end t t)
8683 (eq (char-before) ?\;))
8684 (setq bufpos nil
8685 containing-sexp nil)
8686 (setq bufpos macro-start))))
8688 ;; Go up one level
8689 (setq containing-sexp next-containing
8690 lim nil
8691 next-containing nil)))))
8693 bufpos))
8696 (defun c-looking-at-special-brace-list (&optional lim)
8697 ;; If we're looking at the start of a pike-style list, i.e., `({ })',
8698 ;; `([ ])', `(< >)', etc., a cons of a cons of its starting and ending
8699 ;; positions and its entry in c-special-brace-lists is returned, nil
8700 ;; otherwise. The ending position is nil if the list is still open.
8701 ;; LIM is the limit for forward search. The point may either be at
8702 ;; the `(' or at the following paren character. Tries to check the
8703 ;; matching closer, but assumes it's correct if no balanced paren is
8704 ;; found (i.e. the case `({ ... } ... )' is detected as _not_ being
8705 ;; a special brace list).
8707 ;; This function might do hidden buffer changes.
8708 (if c-special-brace-lists
8709 (condition-case ()
8710 (save-excursion
8711 (let ((beg (point))
8712 inner-beg end type)
8713 (c-forward-syntactic-ws)
8714 (if (eq (char-after) ?\()
8715 (progn
8716 (forward-char 1)
8717 (c-forward-syntactic-ws)
8718 (setq inner-beg (point))
8719 (setq type (assq (char-after) c-special-brace-lists)))
8720 (if (setq type (assq (char-after) c-special-brace-lists))
8721 (progn
8722 (setq inner-beg (point))
8723 (c-backward-syntactic-ws)
8724 (forward-char -1)
8725 (setq beg (if (eq (char-after) ?\()
8726 (point)
8727 nil)))))
8728 (if (and beg type)
8729 (if (and (c-safe
8730 (goto-char beg)
8731 (c-forward-sexp 1)
8732 (setq end (point))
8733 (= (char-before) ?\)))
8734 (c-safe
8735 (goto-char inner-beg)
8736 (if (looking-at "\\s(")
8737 ;; Check balancing of the inner paren
8738 ;; below.
8739 (progn
8740 (c-forward-sexp 1)
8742 ;; If the inner char isn't a paren then
8743 ;; we can't check balancing, so just
8744 ;; check the char before the outer
8745 ;; closing paren.
8746 (goto-char end)
8747 (backward-char)
8748 (c-backward-syntactic-ws)
8749 (= (char-before) (cdr type)))))
8750 (if (or (/= (char-syntax (char-before)) ?\))
8751 (= (progn
8752 (c-forward-syntactic-ws)
8753 (point))
8754 (1- end)))
8755 (cons (cons beg end) type))
8756 (cons (list beg) type)))))
8757 (error nil))))
8759 (defun c-looking-at-bos (&optional lim)
8760 ;; Return non-nil if between two statements or declarations, assuming
8761 ;; point is not inside a literal or comment.
8763 ;; Obsolete - `c-at-statement-start-p' or `c-at-expression-start-p'
8764 ;; are recommended instead.
8766 ;; This function might do hidden buffer changes.
8767 (c-at-statement-start-p))
8768 (make-obsolete 'c-looking-at-bos 'c-at-statement-start-p "22.1")
8770 (defun c-looking-at-inexpr-block (lim containing-sexp &optional check-at-end)
8771 ;; Return non-nil if we're looking at the beginning of a block
8772 ;; inside an expression. The value returned is actually a cons of
8773 ;; either 'inlambda, 'inexpr-statement or 'inexpr-class and the
8774 ;; position of the beginning of the construct.
8776 ;; LIM limits the backward search. CONTAINING-SEXP is the start
8777 ;; position of the closest containing list. If it's nil, the
8778 ;; containing paren isn't used to decide whether we're inside an
8779 ;; expression or not. If both LIM and CONTAINING-SEXP are used, LIM
8780 ;; needs to be farther back.
8782 ;; If CHECK-AT-END is non-nil then extra checks at the end of the
8783 ;; brace block might be done. It should only be used when the
8784 ;; construct can be assumed to be complete, i.e. when the original
8785 ;; starting position was further down than that.
8787 ;; This function might do hidden buffer changes.
8789 (save-excursion
8790 (let ((res 'maybe) passed-paren
8791 (closest-lim (or containing-sexp lim (point-min)))
8792 ;; Look at the character after point only as a last resort
8793 ;; when we can't disambiguate.
8794 (block-follows (and (eq (char-after) ?{) (point))))
8796 (while (and (eq res 'maybe)
8797 (progn (c-backward-syntactic-ws)
8798 (> (point) closest-lim))
8799 (not (bobp))
8800 (progn (backward-char)
8801 (looking-at "[\]\).]\\|\\w\\|\\s_"))
8802 (c-safe (forward-char)
8803 (goto-char (scan-sexps (point) -1))))
8805 (setq res
8806 (if (looking-at c-keywords-regexp)
8807 (let ((kw-sym (c-keyword-sym (match-string 1))))
8808 (cond
8809 ((and block-follows
8810 (c-keyword-member kw-sym 'c-inexpr-class-kwds))
8811 (and (not (eq passed-paren ?\[))
8812 (or (not (looking-at c-class-key))
8813 ;; If the class definition is at the start of
8814 ;; a statement, we don't consider it an
8815 ;; in-expression class.
8816 (let ((prev (point)))
8817 (while (and
8818 (= (c-backward-token-2 1 nil closest-lim) 0)
8819 (eq (char-syntax (char-after)) ?w))
8820 (setq prev (point)))
8821 (goto-char prev)
8822 (not (c-at-statement-start-p)))
8823 ;; Also, in Pike we treat it as an
8824 ;; in-expression class if it's used in an
8825 ;; object clone expression.
8826 (save-excursion
8827 (and check-at-end
8828 (c-major-mode-is 'pike-mode)
8829 (progn (goto-char block-follows)
8830 (zerop (c-forward-token-2 1 t)))
8831 (eq (char-after) ?\())))
8832 (cons 'inexpr-class (point))))
8833 ((c-keyword-member kw-sym 'c-inexpr-block-kwds)
8834 (when (not passed-paren)
8835 (cons 'inexpr-statement (point))))
8836 ((c-keyword-member kw-sym 'c-lambda-kwds)
8837 (when (or (not passed-paren)
8838 (eq passed-paren ?\())
8839 (cons 'inlambda (point))))
8840 ((c-keyword-member kw-sym 'c-block-stmt-kwds)
8841 nil)
8843 'maybe)))
8845 (if (looking-at "\\s(")
8846 (if passed-paren
8847 (if (and (eq passed-paren ?\[)
8848 (eq (char-after) ?\[))
8849 ;; Accept several square bracket sexps for
8850 ;; Java array initializations.
8851 'maybe)
8852 (setq passed-paren (char-after))
8853 'maybe)
8854 'maybe))))
8856 (if (eq res 'maybe)
8857 (when (and c-recognize-paren-inexpr-blocks
8858 block-follows
8859 containing-sexp
8860 (eq (char-after containing-sexp) ?\())
8861 (goto-char containing-sexp)
8862 (if (or (save-excursion
8863 (c-backward-syntactic-ws lim)
8864 (and (> (point) (or lim (point-min)))
8865 (c-on-identifier)))
8866 (and c-special-brace-lists
8867 (c-looking-at-special-brace-list)))
8869 (cons 'inexpr-statement (point))))
8871 res))))
8873 (defun c-looking-at-inexpr-block-backward (paren-state)
8874 ;; Returns non-nil if we're looking at the end of an in-expression
8875 ;; block, otherwise the same as `c-looking-at-inexpr-block'.
8876 ;; PAREN-STATE is the paren state relevant at the current position.
8878 ;; This function might do hidden buffer changes.
8879 (save-excursion
8880 ;; We currently only recognize a block.
8881 (let ((here (point))
8882 (elem (car-safe paren-state))
8883 containing-sexp)
8884 (when (and (consp elem)
8885 (progn (goto-char (cdr elem))
8886 (c-forward-syntactic-ws here)
8887 (= (point) here)))
8888 (goto-char (car elem))
8889 (if (setq paren-state (cdr paren-state))
8890 (setq containing-sexp (car-safe paren-state)))
8891 (c-looking-at-inexpr-block (c-safe-position containing-sexp
8892 paren-state)
8893 containing-sexp)))))
8895 (defun c-at-macro-vsemi-p (&optional pos)
8896 ;; Is there a "virtual semicolon" at POS or point?
8897 ;; (See cc-defs.el for full details of "virtual semicolons".)
8899 ;; This is true when point is at the last non syntactic WS position on the
8900 ;; line, there is a macro call last on the line, and this particular macro's
8901 ;; name is defined by the regexp `c-vs-macro-regexp' as not needing a
8902 ;; semicolon.
8903 (save-excursion
8904 (save-restriction
8905 (widen)
8906 (if pos
8907 (goto-char pos)
8908 (setq pos (point)))
8909 (and
8910 c-macro-with-semi-re
8911 (eq (skip-chars-backward " \t") 0)
8913 ;; Check we've got nothing after this except comments and empty lines
8914 ;; joined by escaped EOLs.
8915 (skip-chars-forward " \t") ; always returns non-nil.
8916 (progn
8917 (while ; go over 1 block comment per iteration.
8918 (and
8919 (looking-at "\\(\\\\[\n\r][ \t]*\\)*")
8920 (goto-char (match-end 0))
8921 (cond
8922 ((looking-at c-block-comment-start-regexp)
8923 (and (forward-comment 1)
8924 (skip-chars-forward " \t"))) ; always returns non-nil
8925 ((looking-at c-line-comment-start-regexp)
8926 (end-of-line)
8927 nil)
8928 (t nil))))
8929 (eolp))
8931 (goto-char pos)
8932 (progn (c-backward-syntactic-ws)
8933 (eq (point) pos))
8935 ;; Check for one of the listed macros being before point.
8936 (or (not (eq (char-before) ?\)))
8937 (when (c-go-list-backward)
8938 (c-backward-syntactic-ws)
8940 (c-simple-skip-symbol-backward)
8941 (looking-at c-macro-with-semi-re)
8942 (goto-char pos)
8943 (not (c-in-literal)))))) ; The most expensive check last.
8945 (defun c-macro-vsemi-status-unknown-p () t) ; See cc-defs.el.
8948 ;; `c-guess-basic-syntax' and the functions that precedes it below
8949 ;; implements the main decision tree for determining the syntactic
8950 ;; analysis of the current line of code.
8952 ;; Dynamically bound to t when `c-guess-basic-syntax' is called during
8953 ;; auto newline analysis.
8954 (defvar c-auto-newline-analysis nil)
8956 (defun c-brace-anchor-point (bracepos)
8957 ;; BRACEPOS is the position of a brace in a construct like "namespace
8958 ;; Bar {". Return the anchor point in this construct; this is the
8959 ;; earliest symbol on the brace's line which isn't earlier than
8960 ;; "namespace".
8962 ;; Currently (2007-08-17), "like namespace" means "matches
8963 ;; c-other-block-decl-kwds". It doesn't work with "class" or "struct"
8964 ;; or anything like that.
8965 (save-excursion
8966 (let ((boi (c-point 'boi bracepos)))
8967 (goto-char bracepos)
8968 (while (and (> (point) boi)
8969 (not (looking-at c-other-decl-block-key)))
8970 (c-backward-token-2))
8971 (if (> (point) boi) (point) boi))))
8973 (defsubst c-add-syntax (symbol &rest args)
8974 ;; A simple function to prepend a new syntax element to
8975 ;; `c-syntactic-context'. Using `setq' on it is unsafe since it
8976 ;; should always be dynamically bound but since we read it first
8977 ;; we'll fail properly anyway if this function is misused.
8978 (setq c-syntactic-context (cons (cons symbol args)
8979 c-syntactic-context)))
8981 (defsubst c-append-syntax (symbol &rest args)
8982 ;; Like `c-add-syntax' but appends to the end of the syntax list.
8983 ;; (Normally not necessary.)
8984 (setq c-syntactic-context (nconc c-syntactic-context
8985 (list (cons symbol args)))))
8987 (defun c-add-stmt-syntax (syntax-symbol
8988 syntax-extra-args
8989 stop-at-boi-only
8990 containing-sexp
8991 paren-state)
8992 ;; Add the indicated SYNTAX-SYMBOL to `c-syntactic-context', extending it as
8993 ;; needed with further syntax elements of the types `substatement',
8994 ;; `inexpr-statement', `arglist-cont-nonempty', `statement-block-intro', and
8995 ;; `defun-block-intro'.
8997 ;; Do the generic processing to anchor the given syntax symbol on
8998 ;; the preceding statement: Skip over any labels and containing
8999 ;; statements on the same line, and then search backward until we
9000 ;; find a statement or block start that begins at boi without a
9001 ;; label or comment.
9003 ;; Point is assumed to be at the prospective anchor point for the
9004 ;; given SYNTAX-SYMBOL. More syntax entries are added if we need to
9005 ;; skip past open parens and containing statements. Most of the added
9006 ;; syntax elements will get the same anchor point - the exception is
9007 ;; for an anchor in a construct like "namespace"[*] - this is as early
9008 ;; as possible in the construct but on the same line as the {.
9010 ;; [*] i.e. with a keyword matching c-other-block-decl-kwds.
9012 ;; SYNTAX-EXTRA-ARGS are a list of the extra arguments for the
9013 ;; syntax symbol. They are appended after the anchor point.
9015 ;; If STOP-AT-BOI-ONLY is nil, we can stop in the middle of the line
9016 ;; if the current statement starts there.
9018 ;; Note: It's not a problem if PAREN-STATE "overshoots"
9019 ;; CONTAINING-SEXP, i.e. contains info about parens further down.
9021 ;; This function might do hidden buffer changes.
9023 (if (= (point) (c-point 'boi))
9024 ;; This is by far the most common case, so let's give it special
9025 ;; treatment.
9026 (apply 'c-add-syntax syntax-symbol (point) syntax-extra-args)
9028 (let ((syntax-last c-syntactic-context)
9029 (boi (c-point 'boi))
9030 ;; Set when we're on a label, so that we don't stop there.
9031 ;; FIXME: To be complete we should check if we're on a label
9032 ;; now at the start.
9033 on-label)
9035 ;; Use point as the anchor point for "namespace", "extern", etc.
9036 (apply 'c-add-syntax syntax-symbol
9037 (if (rassq syntax-symbol c-other-decl-block-key-in-symbols-alist)
9038 (point) nil)
9039 syntax-extra-args)
9041 ;; Loop while we have to back out of containing blocks.
9042 (while
9043 (and
9044 (catch 'back-up-block
9046 ;; Loop while we have to back up statements.
9047 (while (or (/= (point) boi)
9048 on-label
9049 (looking-at c-comment-start-regexp))
9051 ;; Skip past any comments that stands between the
9052 ;; statement start and boi.
9053 (let ((savepos (point)))
9054 (while (and (/= savepos boi)
9055 (c-backward-single-comment))
9056 (setq savepos (point)
9057 boi (c-point 'boi)))
9058 (goto-char savepos))
9060 ;; Skip to the beginning of this statement or backward
9061 ;; another one.
9062 (let ((old-pos (point))
9063 (old-boi boi)
9064 (step-type (c-beginning-of-statement-1 containing-sexp)))
9065 (setq boi (c-point 'boi)
9066 on-label (eq step-type 'label))
9068 (cond ((= (point) old-pos)
9069 ;; If we didn't move we're at the start of a block and
9070 ;; have to continue outside it.
9071 (throw 'back-up-block t))
9073 ((and (eq step-type 'up)
9074 (>= (point) old-boi)
9075 (looking-at "else\\>[^_]")
9076 (save-excursion
9077 (goto-char old-pos)
9078 (looking-at "if\\>[^_]")))
9079 ;; Special case to avoid deeper and deeper indentation
9080 ;; of "else if" clauses.
9083 ((and (not stop-at-boi-only)
9084 (/= old-pos old-boi)
9085 (memq step-type '(up previous)))
9086 ;; If stop-at-boi-only is nil, we shouldn't back up
9087 ;; over previous or containing statements to try to
9088 ;; reach boi, so go back to the last position and
9089 ;; exit.
9090 (goto-char old-pos)
9091 (throw 'back-up-block nil))
9094 (if (and (not stop-at-boi-only)
9095 (memq step-type '(up previous beginning)))
9096 ;; If we've moved into another statement then we
9097 ;; should no longer try to stop in the middle of a
9098 ;; line.
9099 (setq stop-at-boi-only t))
9101 ;; Record this as a substatement if we skipped up one
9102 ;; level.
9103 (when (eq step-type 'up)
9104 (c-add-syntax 'substatement nil))))
9107 containing-sexp)
9109 ;; Now we have to go out of this block.
9110 (goto-char containing-sexp)
9112 ;; Don't stop in the middle of a special brace list opener
9113 ;; like "({".
9114 (when c-special-brace-lists
9115 (let ((special-list (c-looking-at-special-brace-list)))
9116 (when (and special-list
9117 (< (car (car special-list)) (point)))
9118 (setq containing-sexp (car (car special-list)))
9119 (goto-char containing-sexp))))
9121 (setq paren-state (c-whack-state-after containing-sexp paren-state)
9122 containing-sexp (c-most-enclosing-brace paren-state)
9123 boi (c-point 'boi))
9125 ;; Analyze the construct in front of the block we've stepped out
9126 ;; from and add the right syntactic element for it.
9127 (let ((paren-pos (point))
9128 (paren-char (char-after))
9129 step-type)
9131 (if (eq paren-char ?\()
9132 ;; Stepped out of a parenthesis block, so we're in an
9133 ;; expression now.
9134 (progn
9135 (when (/= paren-pos boi)
9136 (if (and c-recognize-paren-inexpr-blocks
9137 (progn
9138 (c-backward-syntactic-ws containing-sexp)
9139 (or (not (looking-at "\\>"))
9140 (not (c-on-identifier))))
9141 (save-excursion
9142 (goto-char (1+ paren-pos))
9143 (c-forward-syntactic-ws)
9144 (eq (char-after) ?{)))
9145 ;; Stepped out of an in-expression statement. This
9146 ;; syntactic element won't get an anchor pos.
9147 (c-add-syntax 'inexpr-statement)
9149 ;; A parenthesis normally belongs to an arglist.
9150 (c-add-syntax 'arglist-cont-nonempty nil paren-pos)))
9152 (goto-char (max boi
9153 (if containing-sexp
9154 (1+ containing-sexp)
9155 (point-min))))
9156 (setq step-type 'same
9157 on-label nil))
9159 ;; Stepped out of a brace block.
9160 (setq step-type (c-beginning-of-statement-1 containing-sexp)
9161 on-label (eq step-type 'label))
9163 (if (and (eq step-type 'same)
9164 (/= paren-pos (point)))
9165 (let (inexpr)
9166 (cond
9167 ((save-excursion
9168 (goto-char paren-pos)
9169 (setq inexpr (c-looking-at-inexpr-block
9170 (c-safe-position containing-sexp paren-state)
9171 containing-sexp)))
9172 (c-add-syntax (if (eq (car inexpr) 'inlambda)
9173 'defun-block-intro
9174 'statement-block-intro)
9175 nil))
9176 ((looking-at c-other-decl-block-key)
9177 (c-add-syntax
9178 (cdr (assoc (match-string 1)
9179 c-other-decl-block-key-in-symbols-alist))
9180 (max (c-point 'boi paren-pos) (point))))
9181 (t (c-add-syntax 'defun-block-intro nil))))
9183 (c-add-syntax 'statement-block-intro nil)))
9185 (if (= paren-pos boi)
9186 ;; Always done if the open brace was at boi. The
9187 ;; c-beginning-of-statement-1 call above is necessary
9188 ;; anyway, to decide the type of block-intro to add.
9189 (goto-char paren-pos)
9190 (setq boi (c-point 'boi)))
9193 ;; Fill in the current point as the anchor for all the symbols
9194 ;; added above.
9195 (let ((p c-syntactic-context) q)
9196 (while (not (eq p syntax-last))
9197 (setq q (cdr (car p))) ; e.g. (nil 28) [from (arglist-cont-nonempty nil 28)]
9198 (while q
9199 (unless (car q)
9200 (setcar q (point)))
9201 (setq q (cdr q)))
9202 (setq p (cdr p))))
9205 (defun c-add-class-syntax (symbol
9206 containing-decl-open
9207 containing-decl-start
9208 containing-decl-kwd
9209 paren-state)
9210 ;; The inclass and class-close syntactic symbols are added in
9211 ;; several places and some work is needed to fix everything.
9212 ;; Therefore it's collected here.
9214 ;; This function might do hidden buffer changes.
9215 (goto-char containing-decl-open)
9216 (if (and (eq symbol 'inclass) (= (point) (c-point 'boi)))
9217 (progn
9218 (c-add-syntax symbol containing-decl-open)
9219 containing-decl-open)
9220 (goto-char containing-decl-start)
9221 ;; Ought to use `c-add-stmt-syntax' instead of backing up to boi
9222 ;; here, but we have to do like this for compatibility.
9223 (back-to-indentation)
9224 (c-add-syntax symbol (point))
9225 (if (and (c-keyword-member containing-decl-kwd
9226 'c-inexpr-class-kwds)
9227 (/= containing-decl-start (c-point 'boi containing-decl-start)))
9228 (c-add-syntax 'inexpr-class))
9229 (point)))
9231 (defun c-guess-continued-construct (indent-point
9232 char-after-ip
9233 beg-of-same-or-containing-stmt
9234 containing-sexp
9235 paren-state)
9236 ;; This function contains the decision tree reached through both
9237 ;; cases 18 and 10. It's a continued statement or top level
9238 ;; construct of some kind.
9240 ;; This function might do hidden buffer changes.
9242 (let (special-brace-list placeholder)
9243 (goto-char indent-point)
9244 (skip-chars-forward " \t")
9246 (cond
9247 ;; (CASE A removed.)
9248 ;; CASE B: open braces for class or brace-lists
9249 ((setq special-brace-list
9250 (or (and c-special-brace-lists
9251 (c-looking-at-special-brace-list))
9252 (eq char-after-ip ?{)))
9254 (cond
9255 ;; CASE B.1: class-open
9256 ((save-excursion
9257 (and (eq (char-after) ?{)
9258 (c-looking-at-decl-block containing-sexp t)
9259 (setq beg-of-same-or-containing-stmt (point))))
9260 (c-add-syntax 'class-open beg-of-same-or-containing-stmt))
9262 ;; CASE B.2: brace-list-open
9263 ((or (consp special-brace-list)
9264 (save-excursion
9265 (goto-char beg-of-same-or-containing-stmt)
9266 (c-syntactic-re-search-forward "=\\([^=]\\|$\\)"
9267 indent-point t t t)))
9268 ;; The most semantically accurate symbol here is
9269 ;; brace-list-open, but we normally report it simply as a
9270 ;; statement-cont. The reason is that one normally adjusts
9271 ;; brace-list-open for brace lists as top-level constructs,
9272 ;; and brace lists inside statements is a completely different
9273 ;; context. C.f. case 5A.3.
9274 (c-beginning-of-statement-1 containing-sexp)
9275 (c-add-stmt-syntax (if c-auto-newline-analysis
9276 ;; Turn off the dwim above when we're
9277 ;; analyzing the nature of the brace
9278 ;; for the auto newline feature.
9279 'brace-list-open
9280 'statement-cont)
9281 nil nil
9282 containing-sexp paren-state))
9284 ;; CASE B.3: The body of a function declared inside a normal
9285 ;; block. Can occur e.g. in Pike and when using gcc
9286 ;; extensions, but watch out for macros followed by blocks.
9287 ;; C.f. cases E, 16F and 17G.
9288 ((and (not (c-at-statement-start-p))
9289 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
9290 'same)
9291 (save-excursion
9292 (let ((c-recognize-typeless-decls nil))
9293 ;; Turn off recognition of constructs that lacks a
9294 ;; type in this case, since that's more likely to be
9295 ;; a macro followed by a block.
9296 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
9297 (c-add-stmt-syntax 'defun-open nil t
9298 containing-sexp paren-state))
9300 ;; CASE B.4: Continued statement with block open. The most
9301 ;; accurate analysis is perhaps `statement-cont' together with
9302 ;; `block-open' but we play DWIM and use `substatement-open'
9303 ;; instead. The rationale is that this typically is a macro
9304 ;; followed by a block which makes it very similar to a
9305 ;; statement with a substatement block.
9307 (c-add-stmt-syntax 'substatement-open nil nil
9308 containing-sexp paren-state))
9311 ;; CASE C: iostream insertion or extraction operator
9312 ((and (looking-at "\\(<<\\|>>\\)\\([^=]\\|$\\)")
9313 (save-excursion
9314 (goto-char beg-of-same-or-containing-stmt)
9315 ;; If there is no preceding streamop in the statement
9316 ;; then indent this line as a normal statement-cont.
9317 (when (c-syntactic-re-search-forward
9318 "\\(<<\\|>>\\)\\([^=]\\|$\\)" indent-point 'move t t)
9319 (c-add-syntax 'stream-op (c-point 'boi))
9320 t))))
9322 ;; CASE E: In the "K&R region" of a function declared inside a
9323 ;; normal block. C.f. case B.3.
9324 ((and (save-excursion
9325 ;; Check that the next token is a '{'. This works as
9326 ;; long as no language that allows nested function
9327 ;; definitions allows stuff like member init lists, K&R
9328 ;; declarations or throws clauses there.
9330 ;; Note that we do a forward search for something ahead
9331 ;; of the indentation line here. That's not good since
9332 ;; the user might not have typed it yet. Unfortunately
9333 ;; it's exceedingly tricky to recognize a function
9334 ;; prototype in a code block without resorting to this.
9335 (c-forward-syntactic-ws)
9336 (eq (char-after) ?{))
9337 (not (c-at-statement-start-p))
9338 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
9339 'same)
9340 (save-excursion
9341 (let ((c-recognize-typeless-decls nil))
9342 ;; Turn off recognition of constructs that lacks a
9343 ;; type in this case, since that's more likely to be
9344 ;; a macro followed by a block.
9345 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
9346 (c-add-stmt-syntax 'func-decl-cont nil t
9347 containing-sexp paren-state))
9349 ;;CASE F: continued statement and the only preceding items are
9350 ;;annotations.
9351 ((and (c-major-mode-is 'java-mode)
9352 (setq placeholder (point))
9353 (c-beginning-of-statement-1)
9354 (progn
9355 (while (and (c-forward-annotation)
9356 (< (point) placeholder))
9357 (c-forward-syntactic-ws))
9359 (prog1
9360 (>= (point) placeholder)
9361 (goto-char placeholder)))
9362 (c-beginning-of-statement-1 containing-sexp)
9363 (c-add-syntax 'annotation-var-cont (point)))
9365 ;; CASE G: a template list continuation?
9366 ;; Mostly a duplication of case 5D.3 to fix templates-19:
9367 ((and (c-major-mode-is 'c++-mode)
9368 (save-excursion
9369 (goto-char indent-point)
9370 (c-with-syntax-table c++-template-syntax-table
9371 (setq placeholder (c-up-list-backward)))
9372 (and placeholder
9373 (eq (char-after placeholder) ?<)
9374 (/= (char-before placeholder) ?<)
9375 (progn
9376 (goto-char (1+ placeholder))
9377 (not (looking-at c-<-op-cont-regexp))))))
9378 (c-with-syntax-table c++-template-syntax-table
9379 (goto-char placeholder)
9380 (c-beginning-of-statement-1 containing-sexp t)
9381 (if (save-excursion
9382 (c-backward-syntactic-ws containing-sexp)
9383 (eq (char-before) ?<))
9384 ;; In a nested template arglist.
9385 (progn
9386 (goto-char placeholder)
9387 (c-syntactic-skip-backward "^,;" containing-sexp t)
9388 (c-forward-syntactic-ws))
9389 (back-to-indentation)))
9390 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
9391 ;; template aware.
9392 (c-add-syntax 'template-args-cont (point) placeholder))
9394 ;; CASE D: continued statement.
9396 (c-beginning-of-statement-1 containing-sexp)
9397 (c-add-stmt-syntax 'statement-cont nil nil
9398 containing-sexp paren-state))
9401 ;; The next autoload was added by RMS on 2005/8/9 - don't know why (ACM,
9402 ;; 2005/11/29).
9403 ;;;###autoload
9404 (defun c-guess-basic-syntax ()
9405 "Return the syntactic context of the current line."
9406 (save-excursion
9407 (beginning-of-line)
9408 (c-save-buffer-state
9409 ((indent-point (point))
9410 (case-fold-search nil)
9411 open-paren-in-column-0-is-defun-start
9412 ;; A whole ugly bunch of various temporary variables. Have
9413 ;; to declare them here since it's not possible to declare
9414 ;; a variable with only the scope of a cond test and the
9415 ;; following result clauses, and most of this function is a
9416 ;; single gigantic cond. :P
9417 literal char-before-ip before-ws-ip char-after-ip macro-start
9418 in-macro-expr c-syntactic-context placeholder c-in-literal-cache
9419 step-type tmpsymbol keyword injava-inher special-brace-list tmp-pos
9420 containing-<
9421 ;; The following record some positions for the containing
9422 ;; declaration block if we're directly within one:
9423 ;; `containing-decl-open' is the position of the open
9424 ;; brace. `containing-decl-start' is the start of the
9425 ;; declaration. `containing-decl-kwd' is the keyword
9426 ;; symbol of the keyword that tells what kind of block it
9427 ;; is.
9428 containing-decl-open
9429 containing-decl-start
9430 containing-decl-kwd
9431 ;; The open paren of the closest surrounding sexp or nil if
9432 ;; there is none.
9433 containing-sexp
9434 ;; The position after the closest preceding brace sexp
9435 ;; (nested sexps are ignored), or the position after
9436 ;; `containing-sexp' if there is none, or (point-min) if
9437 ;; `containing-sexp' is nil.
9439 ;; The paren state outside `containing-sexp', or at
9440 ;; `indent-point' if `containing-sexp' is nil.
9441 (paren-state (c-parse-state))
9442 ;; There's always at most one syntactic element which got
9443 ;; an anchor pos. It's stored in syntactic-relpos.
9444 syntactic-relpos
9445 (c-stmt-delim-chars c-stmt-delim-chars))
9447 ;; Check if we're directly inside an enclosing declaration
9448 ;; level block.
9449 (when (and (setq containing-sexp
9450 (c-most-enclosing-brace paren-state))
9451 (progn
9452 (goto-char containing-sexp)
9453 (eq (char-after) ?{))
9454 (setq placeholder
9455 (c-looking-at-decl-block
9456 (c-most-enclosing-brace paren-state
9457 containing-sexp)
9458 t)))
9459 (setq containing-decl-open containing-sexp
9460 containing-decl-start (point)
9461 containing-sexp nil)
9462 (goto-char placeholder)
9463 (setq containing-decl-kwd (and (looking-at c-keywords-regexp)
9464 (c-keyword-sym (match-string 1)))))
9466 ;; Init some position variables.
9467 (if c-state-cache
9468 (progn
9469 (setq containing-sexp (car paren-state)
9470 paren-state (cdr paren-state))
9471 (if (consp containing-sexp)
9472 (progn
9473 (setq lim (cdr containing-sexp))
9474 (if (cdr c-state-cache)
9475 ;; Ignore balanced paren. The next entry
9476 ;; can't be another one.
9477 (setq containing-sexp (car (cdr c-state-cache))
9478 paren-state (cdr paren-state))
9479 ;; If there is no surrounding open paren then
9480 ;; put the last balanced pair back on paren-state.
9481 (setq paren-state (cons containing-sexp paren-state)
9482 containing-sexp nil)))
9483 (setq lim (1+ containing-sexp))))
9484 (setq lim (point-min)))
9486 ;; If we're in a parenthesis list then ',' delimits the
9487 ;; "statements" rather than being an operator (with the
9488 ;; exception of the "for" clause). This difference is
9489 ;; typically only noticeable when statements are used in macro
9490 ;; arglists.
9491 (when (and containing-sexp
9492 (eq (char-after containing-sexp) ?\())
9493 (setq c-stmt-delim-chars c-stmt-delim-chars-with-comma))
9494 ;; cache char before and after indent point, and move point to
9495 ;; the most likely position to perform the majority of tests
9496 (goto-char indent-point)
9497 (c-backward-syntactic-ws lim)
9498 (setq before-ws-ip (point)
9499 char-before-ip (char-before))
9500 (goto-char indent-point)
9501 (skip-chars-forward " \t")
9502 (setq char-after-ip (char-after))
9504 ;; are we in a literal?
9505 (setq literal (c-in-literal lim))
9507 ;; now figure out syntactic qualities of the current line
9508 (cond
9510 ;; CASE 1: in a string.
9511 ((eq literal 'string)
9512 (c-add-syntax 'string (c-point 'bopl)))
9514 ;; CASE 2: in a C or C++ style comment.
9515 ((and (memq literal '(c c++))
9516 ;; This is a kludge for XEmacs where we use
9517 ;; `buffer-syntactic-context', which doesn't correctly
9518 ;; recognize "\*/" to end a block comment.
9519 ;; `parse-partial-sexp' which is used by
9520 ;; `c-literal-limits' will however do that in most
9521 ;; versions, which results in that we get nil from
9522 ;; `c-literal-limits' even when `c-in-literal' claims
9523 ;; we're inside a comment.
9524 (setq placeholder (c-literal-limits lim)))
9525 (c-add-syntax literal (car placeholder)))
9527 ;; CASE 3: in a cpp preprocessor macro continuation.
9528 ((and (save-excursion
9529 (when (c-beginning-of-macro)
9530 (setq macro-start (point))))
9531 (/= macro-start (c-point 'boi))
9532 (progn
9533 (setq tmpsymbol 'cpp-macro-cont)
9534 (or (not c-syntactic-indentation-in-macros)
9535 (save-excursion
9536 (goto-char macro-start)
9537 ;; If at the beginning of the body of a #define
9538 ;; directive then analyze as cpp-define-intro
9539 ;; only. Go on with the syntactic analysis
9540 ;; otherwise. in-macro-expr is set if we're in a
9541 ;; cpp expression, i.e. before the #define body
9542 ;; or anywhere in a non-#define directive.
9543 (if (c-forward-to-cpp-define-body)
9544 (let ((indent-boi (c-point 'boi indent-point)))
9545 (setq in-macro-expr (> (point) indent-boi)
9546 tmpsymbol 'cpp-define-intro)
9547 (= (point) indent-boi))
9548 (setq in-macro-expr t)
9549 nil)))))
9550 (c-add-syntax tmpsymbol macro-start)
9551 (setq macro-start nil))
9553 ;; CASE 11: an else clause?
9554 ((looking-at "else\\>[^_]")
9555 (c-beginning-of-statement-1 containing-sexp)
9556 (c-add-stmt-syntax 'else-clause nil t
9557 containing-sexp paren-state))
9559 ;; CASE 12: while closure of a do/while construct?
9560 ((and (looking-at "while\\>[^_]")
9561 (save-excursion
9562 (prog1 (eq (c-beginning-of-statement-1 containing-sexp)
9563 'beginning)
9564 (setq placeholder (point)))))
9565 (goto-char placeholder)
9566 (c-add-stmt-syntax 'do-while-closure nil t
9567 containing-sexp paren-state))
9569 ;; CASE 13: A catch or finally clause? This case is simpler
9570 ;; than if-else and do-while, because a block is required
9571 ;; after every try, catch and finally.
9572 ((save-excursion
9573 (and (cond ((c-major-mode-is 'c++-mode)
9574 (looking-at "catch\\>[^_]"))
9575 ((c-major-mode-is 'java-mode)
9576 (looking-at "\\(catch\\|finally\\)\\>[^_]")))
9577 (and (c-safe (c-backward-syntactic-ws)
9578 (c-backward-sexp)
9580 (eq (char-after) ?{)
9581 (c-safe (c-backward-syntactic-ws)
9582 (c-backward-sexp)
9584 (if (eq (char-after) ?\()
9585 (c-safe (c-backward-sexp) t)
9587 (looking-at "\\(try\\|catch\\)\\>[^_]")
9588 (setq placeholder (point))))
9589 (goto-char placeholder)
9590 (c-add-stmt-syntax 'catch-clause nil t
9591 containing-sexp paren-state))
9593 ;; CASE 18: A substatement we can recognize by keyword.
9594 ((save-excursion
9595 (and c-opt-block-stmt-key
9596 (not (eq char-before-ip ?\;))
9597 (not (c-at-vsemi-p before-ws-ip))
9598 (not (memq char-after-ip '(?\) ?\] ?,)))
9599 (or (not (eq char-before-ip ?}))
9600 (c-looking-at-inexpr-block-backward c-state-cache))
9601 (> (point)
9602 (progn
9603 ;; Ought to cache the result from the
9604 ;; c-beginning-of-statement-1 calls here.
9605 (setq placeholder (point))
9606 (while (eq (setq step-type
9607 (c-beginning-of-statement-1 lim))
9608 'label))
9609 (if (eq step-type 'previous)
9610 (goto-char placeholder)
9611 (setq placeholder (point))
9612 (if (and (eq step-type 'same)
9613 (not (looking-at c-opt-block-stmt-key)))
9614 ;; Step up to the containing statement if we
9615 ;; stayed in the same one.
9616 (let (step)
9617 (while (eq
9618 (setq step
9619 (c-beginning-of-statement-1 lim))
9620 'label))
9621 (if (eq step 'up)
9622 (setq placeholder (point))
9623 ;; There was no containing statement after all.
9624 (goto-char placeholder)))))
9625 placeholder))
9626 (if (looking-at c-block-stmt-2-key)
9627 ;; Require a parenthesis after these keywords.
9628 ;; Necessary to catch e.g. synchronized in Java,
9629 ;; which can be used both as statement and
9630 ;; modifier.
9631 (and (zerop (c-forward-token-2 1 nil))
9632 (eq (char-after) ?\())
9633 (looking-at c-opt-block-stmt-key))))
9635 (if (eq step-type 'up)
9636 ;; CASE 18A: Simple substatement.
9637 (progn
9638 (goto-char placeholder)
9639 (cond
9640 ((eq char-after-ip ?{)
9641 (c-add-stmt-syntax 'substatement-open nil nil
9642 containing-sexp paren-state))
9643 ((save-excursion
9644 (goto-char indent-point)
9645 (back-to-indentation)
9646 (c-forward-label))
9647 (c-add-stmt-syntax 'substatement-label nil nil
9648 containing-sexp paren-state))
9650 (c-add-stmt-syntax 'substatement nil nil
9651 containing-sexp paren-state))))
9653 ;; CASE 18B: Some other substatement. This is shared
9654 ;; with case 10.
9655 (c-guess-continued-construct indent-point
9656 char-after-ip
9657 placeholder
9659 paren-state)))
9661 ;; CASE 14: A case or default label
9662 ((looking-at c-label-kwds-regexp)
9663 (if containing-sexp
9664 (progn
9665 (goto-char containing-sexp)
9666 (setq lim (c-most-enclosing-brace c-state-cache
9667 containing-sexp))
9668 (c-backward-to-block-anchor lim)
9669 (c-add-stmt-syntax 'case-label nil t lim paren-state))
9670 ;; Got a bogus label at the top level. In lack of better
9671 ;; alternatives, anchor it on (point-min).
9672 (c-add-syntax 'case-label (point-min))))
9674 ;; CASE 15: any other label
9675 ((save-excursion
9676 (back-to-indentation)
9677 (and (not (looking-at c-syntactic-ws-start))
9678 (c-forward-label)))
9679 (cond (containing-decl-open
9680 (setq placeholder (c-add-class-syntax 'inclass
9681 containing-decl-open
9682 containing-decl-start
9683 containing-decl-kwd
9684 paren-state))
9685 ;; Append access-label with the same anchor point as
9686 ;; inclass gets.
9687 (c-append-syntax 'access-label placeholder))
9689 (containing-sexp
9690 (goto-char containing-sexp)
9691 (setq lim (c-most-enclosing-brace c-state-cache
9692 containing-sexp))
9693 (save-excursion
9694 (setq tmpsymbol
9695 (if (and (eq (c-beginning-of-statement-1 lim) 'up)
9696 (looking-at "switch\\>[^_]"))
9697 ;; If the surrounding statement is a switch then
9698 ;; let's analyze all labels as switch labels, so
9699 ;; that they get lined up consistently.
9700 'case-label
9701 'label)))
9702 (c-backward-to-block-anchor lim)
9703 (c-add-stmt-syntax tmpsymbol nil t lim paren-state))
9706 ;; A label on the top level. Treat it as a class
9707 ;; context. (point-min) is the closest we get to the
9708 ;; class open brace.
9709 (c-add-syntax 'access-label (point-min)))))
9711 ;; CASE 4: In-expression statement. C.f. cases 7B, 16A and
9712 ;; 17E.
9713 ((setq placeholder (c-looking-at-inexpr-block
9714 (c-safe-position containing-sexp paren-state)
9715 containing-sexp
9716 ;; Have to turn on the heuristics after
9717 ;; the point even though it doesn't work
9718 ;; very well. C.f. test case class-16.pike.
9720 (setq tmpsymbol (assq (car placeholder)
9721 '((inexpr-class . class-open)
9722 (inexpr-statement . block-open))))
9723 (if tmpsymbol
9724 ;; It's a statement block or an anonymous class.
9725 (setq tmpsymbol (cdr tmpsymbol))
9726 ;; It's a Pike lambda. Check whether we are between the
9727 ;; lambda keyword and the argument list or at the defun
9728 ;; opener.
9729 (setq tmpsymbol (if (eq char-after-ip ?{)
9730 'inline-open
9731 'lambda-intro-cont)))
9732 (goto-char (cdr placeholder))
9733 (back-to-indentation)
9734 (c-add-stmt-syntax tmpsymbol nil t
9735 (c-most-enclosing-brace c-state-cache (point))
9736 paren-state)
9737 (unless (eq (point) (cdr placeholder))
9738 (c-add-syntax (car placeholder))))
9740 ;; CASE 5: Line is inside a declaration level block or at top level.
9741 ((or containing-decl-open (null containing-sexp))
9742 (cond
9744 ;; CASE 5A: we are looking at a defun, brace list, class,
9745 ;; or inline-inclass method opening brace
9746 ((setq special-brace-list
9747 (or (and c-special-brace-lists
9748 (c-looking-at-special-brace-list))
9749 (eq char-after-ip ?{)))
9750 (cond
9752 ;; CASE 5A.1: Non-class declaration block open.
9753 ((save-excursion
9754 (let (tmp)
9755 (and (eq char-after-ip ?{)
9756 (setq tmp (c-looking-at-decl-block containing-sexp t))
9757 (progn
9758 (setq placeholder (point))
9759 (goto-char tmp)
9760 (looking-at c-symbol-key))
9761 (c-keyword-member
9762 (c-keyword-sym (setq keyword (match-string 0)))
9763 'c-other-block-decl-kwds))))
9764 (goto-char placeholder)
9765 (c-add-stmt-syntax
9766 (if (string-equal keyword "extern")
9767 ;; Special case for extern-lang-open.
9768 'extern-lang-open
9769 (intern (concat keyword "-open")))
9770 nil t containing-sexp paren-state))
9772 ;; CASE 5A.2: we are looking at a class opening brace
9773 ((save-excursion
9774 (goto-char indent-point)
9775 (skip-chars-forward " \t")
9776 (and (eq (char-after) ?{)
9777 (c-looking-at-decl-block containing-sexp t)
9778 (setq placeholder (point))))
9779 (c-add-syntax 'class-open placeholder))
9781 ;; CASE 5A.3: brace list open
9782 ((save-excursion
9783 (c-beginning-of-decl-1 lim)
9784 (while (looking-at c-specifier-key)
9785 (goto-char (match-end 1))
9786 (c-forward-syntactic-ws indent-point))
9787 (setq placeholder (c-point 'boi))
9788 (or (consp special-brace-list)
9789 (and (or (save-excursion
9790 (goto-char indent-point)
9791 (setq tmpsymbol nil)
9792 (while (and (> (point) placeholder)
9793 (zerop (c-backward-token-2 1 t))
9794 (not (looking-at "=\\([^=]\\|$\\)")))
9795 (and c-opt-inexpr-brace-list-key
9796 (not tmpsymbol)
9797 (looking-at c-opt-inexpr-brace-list-key)
9798 (setq tmpsymbol 'topmost-intro-cont)))
9799 (looking-at "=\\([^=]\\|$\\)"))
9800 (looking-at c-brace-list-key))
9801 (save-excursion
9802 (while (and (< (point) indent-point)
9803 (zerop (c-forward-token-2 1 t))
9804 (not (memq (char-after) '(?\; ?\()))))
9805 (not (memq (char-after) '(?\; ?\()))
9806 ))))
9807 (if (and (not c-auto-newline-analysis)
9808 (c-major-mode-is 'java-mode)
9809 (eq tmpsymbol 'topmost-intro-cont))
9810 ;; We're in Java and have found that the open brace
9811 ;; belongs to a "new Foo[]" initialization list,
9812 ;; which means the brace list is part of an
9813 ;; expression and not a top level definition. We
9814 ;; therefore treat it as any topmost continuation
9815 ;; even though the semantically correct symbol still
9816 ;; is brace-list-open, on the same grounds as in
9817 ;; case B.2.
9818 (progn
9819 (c-beginning-of-statement-1 lim)
9820 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
9821 (c-add-syntax 'brace-list-open placeholder)))
9823 ;; CASE 5A.4: inline defun open
9824 ((and containing-decl-open
9825 (not (c-keyword-member containing-decl-kwd
9826 'c-other-block-decl-kwds)))
9827 (c-add-syntax 'inline-open)
9828 (c-add-class-syntax 'inclass
9829 containing-decl-open
9830 containing-decl-start
9831 containing-decl-kwd
9832 paren-state))
9834 ;; CASE 5A.5: ordinary defun open
9836 (save-excursion
9837 (c-beginning-of-decl-1 lim)
9838 (while (looking-at c-specifier-key)
9839 (goto-char (match-end 1))
9840 (c-forward-syntactic-ws indent-point))
9841 (c-add-syntax 'defun-open (c-point 'boi))
9842 ;; Bogus to use bol here, but it's the legacy. (Resolved,
9843 ;; 2007-11-09)
9844 ))))
9846 ;; CASE 5R: Member init list. (Used to be part of CASE 5B.1)
9847 ;; Note there is no limit on the backward search here, since member
9848 ;; init lists can, in practice, be very large.
9849 ((save-excursion
9850 (when (setq placeholder (c-back-over-member-initializers))
9851 (setq tmp-pos (point))))
9852 (if (= (c-point 'bosws) (1+ tmp-pos))
9853 (progn
9854 ;; There is no preceding member init clause.
9855 ;; Indent relative to the beginning of indentation
9856 ;; for the topmost-intro line that contains the
9857 ;; prototype's open paren.
9858 (goto-char placeholder)
9859 (c-add-syntax 'member-init-intro (c-point 'boi)))
9860 ;; Indent relative to the first member init clause.
9861 (goto-char (1+ tmp-pos))
9862 (c-forward-syntactic-ws)
9863 (c-add-syntax 'member-init-cont (point))))
9865 ;; CASE 5B: After a function header but before the body (or
9866 ;; the ending semicolon if there's no body).
9867 ((save-excursion
9868 (when (setq placeholder (c-just-after-func-arglist-p
9869 (max lim (c-determine-limit 500))))
9870 (setq tmp-pos (point))))
9871 (cond
9873 ;; CASE 5B.1: Member init list.
9874 ((eq (char-after tmp-pos) ?:)
9875 ;; There is no preceding member init clause.
9876 ;; Indent relative to the beginning of indentation
9877 ;; for the topmost-intro line that contains the
9878 ;; prototype's open paren.
9879 (goto-char placeholder)
9880 (c-add-syntax 'member-init-intro (c-point 'boi)))
9882 ;; CASE 5B.2: K&R arg decl intro
9883 ((and c-recognize-knr-p
9884 (c-in-knr-argdecl lim))
9885 (c-beginning-of-statement-1 lim)
9886 (c-add-syntax 'knr-argdecl-intro (c-point 'boi))
9887 (if containing-decl-open
9888 (c-add-class-syntax 'inclass
9889 containing-decl-open
9890 containing-decl-start
9891 containing-decl-kwd
9892 paren-state)))
9894 ;; CASE 5B.4: Nether region after a C++ or Java func
9895 ;; decl, which could include a `throws' declaration.
9897 (c-beginning-of-statement-1 lim)
9898 (c-add-syntax 'func-decl-cont (c-point 'boi))
9901 ;; CASE 5C: inheritance line. could be first inheritance
9902 ;; line, or continuation of a multiple inheritance
9903 ((or (and (c-major-mode-is 'c++-mode)
9904 (progn
9905 (when (eq char-after-ip ?,)
9906 (skip-chars-forward " \t")
9907 (forward-char))
9908 (looking-at c-opt-postfix-decl-spec-key)))
9909 (and (or (eq char-before-ip ?:)
9910 ;; watch out for scope operator
9911 (save-excursion
9912 (and (eq char-after-ip ?:)
9913 (c-safe (forward-char 1) t)
9914 (not (eq (char-after) ?:))
9916 (save-excursion
9917 (c-beginning-of-statement-1 lim)
9918 (when (looking-at c-opt-<>-sexp-key)
9919 (goto-char (match-end 1))
9920 (c-forward-syntactic-ws)
9921 (c-forward-<>-arglist nil)
9922 (c-forward-syntactic-ws))
9923 (looking-at c-class-key)))
9924 ;; for Java
9925 (and (c-major-mode-is 'java-mode)
9926 (let ((fence (save-excursion
9927 (c-beginning-of-statement-1 lim)
9928 (point)))
9929 cont done)
9930 (save-excursion
9931 (while (not done)
9932 (cond ((looking-at c-opt-postfix-decl-spec-key)
9933 (setq injava-inher (cons cont (point))
9934 done t))
9935 ((or (not (c-safe (c-forward-sexp -1) t))
9936 (<= (point) fence))
9937 (setq done t))
9939 (setq cont t)))
9940 injava-inher)
9941 (not (c-crosses-statement-barrier-p (cdr injava-inher)
9942 (point)))
9944 (cond
9946 ;; CASE 5C.1: non-hanging colon on an inher intro
9947 ((eq char-after-ip ?:)
9948 (c-beginning-of-statement-1 lim)
9949 (c-add-syntax 'inher-intro (c-point 'boi))
9950 ;; don't add inclass symbol since relative point already
9951 ;; contains any class offset
9954 ;; CASE 5C.2: hanging colon on an inher intro
9955 ((eq char-before-ip ?:)
9956 (c-beginning-of-statement-1 lim)
9957 (c-add-syntax 'inher-intro (c-point 'boi))
9958 (if containing-decl-open
9959 (c-add-class-syntax 'inclass
9960 containing-decl-open
9961 containing-decl-start
9962 containing-decl-kwd
9963 paren-state)))
9965 ;; CASE 5C.3: in a Java implements/extends
9966 (injava-inher
9967 (let ((where (cdr injava-inher))
9968 (cont (car injava-inher)))
9969 (goto-char where)
9970 (cond ((looking-at "throws\\>[^_]")
9971 (c-add-syntax 'func-decl-cont
9972 (progn (c-beginning-of-statement-1 lim)
9973 (c-point 'boi))))
9974 (cont (c-add-syntax 'inher-cont where))
9975 (t (c-add-syntax 'inher-intro
9976 (progn (goto-char (cdr injava-inher))
9977 (c-beginning-of-statement-1 lim)
9978 (point))))
9981 ;; CASE 5C.4: a continued inheritance line
9983 (c-beginning-of-inheritance-list lim)
9984 (c-add-syntax 'inher-cont (point))
9985 ;; don't add inclass symbol since relative point already
9986 ;; contains any class offset
9989 ;; CASE 5P: AWK pattern or function or continuation
9990 ;; thereof.
9991 ((c-major-mode-is 'awk-mode)
9992 (setq placeholder (point))
9993 (c-add-stmt-syntax
9994 (if (and (eq (c-beginning-of-statement-1) 'same)
9995 (/= (point) placeholder))
9996 'topmost-intro-cont
9997 'topmost-intro)
9998 nil nil
9999 containing-sexp paren-state))
10001 ;; CASE 5D: this could be a top-level initialization, a
10002 ;; member init list continuation, or a template argument
10003 ;; list continuation.
10004 ((save-excursion
10005 ;; Note: We use the fact that lim is always after any
10006 ;; preceding brace sexp.
10007 (if c-recognize-<>-arglists
10008 (while (and
10009 (progn
10010 (c-syntactic-skip-backward "^;,=<>" lim t)
10011 (> (point) lim))
10013 (when c-overloadable-operators-regexp
10014 (when (setq placeholder (c-after-special-operator-id lim))
10015 (goto-char placeholder)
10017 (cond
10018 ((eq (char-before) ?>)
10019 (or (c-backward-<>-arglist nil lim)
10020 (backward-char))
10022 ((eq (char-before) ?<)
10023 (backward-char)
10024 (if (save-excursion
10025 (c-forward-<>-arglist nil))
10026 (progn (forward-char)
10027 nil)
10029 (t nil)))))
10030 ;; NB: No c-after-special-operator-id stuff in this
10031 ;; clause - we assume only C++ needs it.
10032 (c-syntactic-skip-backward "^;,=" lim t))
10033 (memq (char-before) '(?, ?= ?<)))
10034 (cond
10036 ;; CASE 5D.3: perhaps a template list continuation?
10037 ((and (c-major-mode-is 'c++-mode)
10038 (save-excursion
10039 (save-restriction
10040 (c-with-syntax-table c++-template-syntax-table
10041 (goto-char indent-point)
10042 (setq placeholder (c-up-list-backward))
10043 (and placeholder
10044 (eq (char-after placeholder) ?<))))))
10045 (c-with-syntax-table c++-template-syntax-table
10046 (goto-char placeholder)
10047 (c-beginning-of-statement-1 lim t)
10048 (if (save-excursion
10049 (c-backward-syntactic-ws lim)
10050 (eq (char-before) ?<))
10051 ;; In a nested template arglist.
10052 (progn
10053 (goto-char placeholder)
10054 (c-syntactic-skip-backward "^,;" lim t)
10055 (c-forward-syntactic-ws))
10056 (back-to-indentation)))
10057 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
10058 ;; template aware.
10059 (c-add-syntax 'template-args-cont (point) placeholder))
10061 ;; CASE 5D.4: perhaps a multiple inheritance line?
10062 ((and (c-major-mode-is 'c++-mode)
10063 (save-excursion
10064 (c-beginning-of-statement-1 lim)
10065 (setq placeholder (point))
10066 (if (looking-at "static\\>[^_]")
10067 (c-forward-token-2 1 nil indent-point))
10068 (and (looking-at c-class-key)
10069 (zerop (c-forward-token-2 2 nil indent-point))
10070 (if (eq (char-after) ?<)
10071 (c-with-syntax-table c++-template-syntax-table
10072 (zerop (c-forward-token-2 1 t indent-point)))
10074 (eq (char-after) ?:))))
10075 (goto-char placeholder)
10076 (c-add-syntax 'inher-cont (c-point 'boi)))
10078 ;; CASE 5D.5: Continuation of the "expression part" of a
10079 ;; top level construct. Or, perhaps, an unrecognized construct.
10081 (while (and (setq placeholder (point))
10082 (eq (car (c-beginning-of-decl-1 containing-sexp)) ; Can't use `lim' here.
10083 'same)
10084 (save-excursion
10085 (c-backward-syntactic-ws)
10086 (eq (char-before) ?}))
10087 (< (point) placeholder)))
10088 (c-add-stmt-syntax
10089 (cond
10090 ((eq (point) placeholder) 'statement) ; unrecognized construct
10091 ;; A preceding comma at the top level means that a
10092 ;; new variable declaration starts here. Use
10093 ;; topmost-intro-cont for it, for consistency with
10094 ;; the first variable declaration. C.f. case 5N.
10095 ((eq char-before-ip ?,) 'topmost-intro-cont)
10096 (t 'statement-cont))
10097 nil nil containing-sexp paren-state))
10100 ;; CASE 5F: Close of a non-class declaration level block.
10101 ((and (eq char-after-ip ?})
10102 (c-keyword-member containing-decl-kwd
10103 'c-other-block-decl-kwds))
10104 ;; This is inconsistent: Should use `containing-decl-open'
10105 ;; here if it's at boi, like in case 5J.
10106 (goto-char containing-decl-start)
10107 (c-add-stmt-syntax
10108 (if (string-equal (symbol-name containing-decl-kwd) "extern")
10109 ;; Special case for compatibility with the
10110 ;; extern-lang syntactic symbols.
10111 'extern-lang-close
10112 (intern (concat (symbol-name containing-decl-kwd)
10113 "-close")))
10114 nil t
10115 (c-most-enclosing-brace paren-state (point))
10116 paren-state))
10118 ;; CASE 5G: we are looking at the brace which closes the
10119 ;; enclosing nested class decl
10120 ((and containing-sexp
10121 (eq char-after-ip ?})
10122 (eq containing-decl-open containing-sexp))
10123 (c-add-class-syntax 'class-close
10124 containing-decl-open
10125 containing-decl-start
10126 containing-decl-kwd
10127 paren-state))
10129 ;; CASE 5H: we could be looking at subsequent knr-argdecls
10130 ((and c-recognize-knr-p
10131 (not containing-sexp) ; can't be knr inside braces.
10132 (not (eq char-before-ip ?}))
10133 (save-excursion
10134 (setq placeholder (cdr (c-beginning-of-decl-1 lim)))
10135 (and placeholder
10136 ;; Do an extra check to avoid tripping up on
10137 ;; statements that occur in invalid contexts
10138 ;; (e.g. in macro bodies where we don't really
10139 ;; know the context of what we're looking at).
10140 (not (and c-opt-block-stmt-key
10141 (looking-at c-opt-block-stmt-key)))))
10142 (< placeholder indent-point))
10143 (goto-char placeholder)
10144 (c-add-syntax 'knr-argdecl (point)))
10146 ;; CASE 5I: ObjC method definition.
10147 ((and c-opt-method-key
10148 (looking-at c-opt-method-key))
10149 (c-beginning-of-statement-1 nil t)
10150 (if (= (point) indent-point)
10151 ;; Handle the case when it's the first (non-comment)
10152 ;; thing in the buffer. Can't look for a 'same return
10153 ;; value from cbos1 since ObjC directives currently
10154 ;; aren't recognized fully, so that we get 'same
10155 ;; instead of 'previous if it moved over a preceding
10156 ;; directive.
10157 (goto-char (point-min)))
10158 (c-add-syntax 'objc-method-intro (c-point 'boi)))
10160 ;; CASE 5N: At a variable declaration that follows a class
10161 ;; definition or some other block declaration that doesn't
10162 ;; end at the closing '}'. C.f. case 5D.5.
10163 ((progn
10164 (c-backward-syntactic-ws lim)
10165 (and (eq (char-before) ?})
10166 (save-excursion
10167 (let ((start (point)))
10168 (if (and c-state-cache
10169 (consp (car c-state-cache))
10170 (eq (cdar c-state-cache) (point)))
10171 ;; Speed up the backward search a bit.
10172 (goto-char (caar c-state-cache)))
10173 (c-beginning-of-decl-1 containing-sexp) ; Can't use `lim' here.
10174 (setq placeholder (point))
10175 (if (= start (point))
10176 ;; The '}' is unbalanced.
10178 (c-end-of-decl-1)
10179 (>= (point) indent-point))))))
10180 (goto-char placeholder)
10181 (c-add-stmt-syntax 'topmost-intro-cont nil nil
10182 containing-sexp paren-state))
10184 ;; NOTE: The point is at the end of the previous token here.
10186 ;; CASE 5J: we are at the topmost level, make
10187 ;; sure we skip back past any access specifiers
10188 ((and
10189 ;; A macro continuation line is never at top level.
10190 (not (and macro-start
10191 (> indent-point macro-start)))
10192 (save-excursion
10193 (setq placeholder (point))
10194 (or (memq char-before-ip '(?\; ?{ ?} nil))
10195 (c-at-vsemi-p before-ws-ip)
10196 (when (and (eq char-before-ip ?:)
10197 (eq (c-beginning-of-statement-1 lim)
10198 'label))
10199 (c-backward-syntactic-ws lim)
10200 (setq placeholder (point)))
10201 (and (c-major-mode-is 'objc-mode)
10202 (catch 'not-in-directive
10203 (c-beginning-of-statement-1 lim)
10204 (setq placeholder (point))
10205 (while (and (c-forward-objc-directive)
10206 (< (point) indent-point))
10207 (c-forward-syntactic-ws)
10208 (if (>= (point) indent-point)
10209 (throw 'not-in-directive t))
10210 (setq placeholder (point)))
10211 nil)))))
10212 ;; For historic reasons we anchor at bol of the last
10213 ;; line of the previous declaration. That's clearly
10214 ;; highly bogus and useless, and it makes our lives hard
10215 ;; to remain compatible. :P
10216 (goto-char placeholder)
10217 (c-add-syntax 'topmost-intro (c-point 'bol))
10218 (if containing-decl-open
10219 (if (c-keyword-member containing-decl-kwd
10220 'c-other-block-decl-kwds)
10221 (progn
10222 (goto-char (c-brace-anchor-point containing-decl-open))
10223 (c-add-stmt-syntax
10224 (if (string-equal (symbol-name containing-decl-kwd)
10225 "extern")
10226 ;; Special case for compatibility with the
10227 ;; extern-lang syntactic symbols.
10228 'inextern-lang
10229 (intern (concat "in"
10230 (symbol-name containing-decl-kwd))))
10231 nil t
10232 (c-most-enclosing-brace paren-state (point))
10233 paren-state))
10234 (c-add-class-syntax 'inclass
10235 containing-decl-open
10236 containing-decl-start
10237 containing-decl-kwd
10238 paren-state)))
10239 (when (and c-syntactic-indentation-in-macros
10240 macro-start
10241 (/= macro-start (c-point 'boi indent-point)))
10242 (c-add-syntax 'cpp-define-intro)
10243 (setq macro-start nil)))
10245 ;; CASE 5K: we are at an ObjC method definition
10246 ;; continuation line.
10247 ((and c-opt-method-key
10248 (save-excursion
10249 (c-beginning-of-statement-1 lim)
10250 (beginning-of-line)
10251 (when (looking-at c-opt-method-key)
10252 (setq placeholder (point)))))
10253 (c-add-syntax 'objc-method-args-cont placeholder))
10255 ;; CASE 5L: we are at the first argument of a template
10256 ;; arglist that begins on the previous line.
10257 ((and c-recognize-<>-arglists
10258 (eq (char-before) ?<)
10259 (not (and c-overloadable-operators-regexp
10260 (c-after-special-operator-id lim))))
10261 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
10262 (c-add-syntax 'template-args-cont (c-point 'boi)))
10264 ;; CASE 5Q: we are at a statement within a macro.
10265 (macro-start
10266 (c-beginning-of-statement-1 containing-sexp)
10267 (c-add-stmt-syntax 'statement nil t containing-sexp paren-state))
10269 ;;CASE 5N: We are at a topmost continuation line and the only
10270 ;;preceding items are annotations.
10271 ((and (c-major-mode-is 'java-mode)
10272 (setq placeholder (point))
10273 (c-beginning-of-statement-1)
10274 (progn
10275 (while (and (c-forward-annotation))
10276 (c-forward-syntactic-ws))
10278 (prog1
10279 (>= (point) placeholder)
10280 (goto-char placeholder)))
10281 (c-add-syntax 'annotation-top-cont (c-point 'boi)))
10283 ;; CASE 5M: we are at a topmost continuation line
10285 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
10286 (when (c-major-mode-is 'objc-mode)
10287 (setq placeholder (point))
10288 (while (and (c-forward-objc-directive)
10289 (< (point) indent-point))
10290 (c-forward-syntactic-ws)
10291 (setq placeholder (point)))
10292 (goto-char placeholder))
10293 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
10297 ;; (CASE 6 has been removed.)
10299 ;; CASE 7: line is an expression, not a statement. Most
10300 ;; likely we are either in a function prototype or a function
10301 ;; call argument list
10302 ((not (or (and c-special-brace-lists
10303 (save-excursion
10304 (goto-char containing-sexp)
10305 (c-looking-at-special-brace-list)))
10306 (eq (char-after containing-sexp) ?{)))
10307 (cond
10309 ;; CASE 7A: we are looking at the arglist closing paren.
10310 ;; C.f. case 7F.
10311 ((memq char-after-ip '(?\) ?\]))
10312 (goto-char containing-sexp)
10313 (setq placeholder (c-point 'boi))
10314 (if (and (c-safe (backward-up-list 1) t)
10315 (>= (point) placeholder))
10316 (progn
10317 (forward-char)
10318 (skip-chars-forward " \t"))
10319 (goto-char placeholder))
10320 (c-add-stmt-syntax 'arglist-close (list containing-sexp) t
10321 (c-most-enclosing-brace paren-state (point))
10322 paren-state))
10324 ;; CASE 7B: Looking at the opening brace of an
10325 ;; in-expression block or brace list. C.f. cases 4, 16A
10326 ;; and 17E.
10327 ((and (eq char-after-ip ?{)
10328 (progn
10329 (setq placeholder (c-inside-bracelist-p (point)
10330 paren-state))
10331 (if placeholder
10332 (setq tmpsymbol '(brace-list-open . inexpr-class))
10333 (setq tmpsymbol '(block-open . inexpr-statement)
10334 placeholder
10335 (cdr-safe (c-looking-at-inexpr-block
10336 (c-safe-position containing-sexp
10337 paren-state)
10338 containing-sexp)))
10339 ;; placeholder is nil if it's a block directly in
10340 ;; a function arglist. That makes us skip out of
10341 ;; this case.
10343 (goto-char placeholder)
10344 (back-to-indentation)
10345 (c-add-stmt-syntax (car tmpsymbol) nil t
10346 (c-most-enclosing-brace paren-state (point))
10347 paren-state)
10348 (if (/= (point) placeholder)
10349 (c-add-syntax (cdr tmpsymbol))))
10351 ;; CASE 7C: we are looking at the first argument in an empty
10352 ;; argument list. Use arglist-close if we're actually
10353 ;; looking at a close paren or bracket.
10354 ((memq char-before-ip '(?\( ?\[))
10355 (goto-char containing-sexp)
10356 (setq placeholder (c-point 'boi))
10357 (if (and (c-safe (backward-up-list 1) t)
10358 (>= (point) placeholder))
10359 (progn
10360 (forward-char)
10361 (skip-chars-forward " \t"))
10362 (goto-char placeholder))
10363 (c-add-stmt-syntax 'arglist-intro (list containing-sexp) t
10364 (c-most-enclosing-brace paren-state (point))
10365 paren-state))
10367 ;; CASE 7D: we are inside a conditional test clause. treat
10368 ;; these things as statements
10369 ((progn
10370 (goto-char containing-sexp)
10371 (and (c-safe (c-forward-sexp -1) t)
10372 (looking-at "\\<for\\>[^_]")))
10373 (goto-char (1+ containing-sexp))
10374 (c-forward-syntactic-ws indent-point)
10375 (if (eq char-before-ip ?\;)
10376 (c-add-syntax 'statement (point))
10377 (c-add-syntax 'statement-cont (point))
10380 ;; CASE 7E: maybe a continued ObjC method call. This is the
10381 ;; case when we are inside a [] bracketed exp, and what
10382 ;; precede the opening bracket is not an identifier.
10383 ((and c-opt-method-key
10384 (eq (char-after containing-sexp) ?\[)
10385 (progn
10386 (goto-char (1- containing-sexp))
10387 (c-backward-syntactic-ws (c-point 'bod))
10388 (if (not (looking-at c-symbol-key))
10389 (c-add-syntax 'objc-method-call-cont containing-sexp))
10392 ;; CASE 7F: we are looking at an arglist continuation line,
10393 ;; but the preceding argument is on the same line as the
10394 ;; opening paren. This case includes multi-line
10395 ;; mathematical paren groupings, but we could be on a
10396 ;; for-list continuation line. C.f. case 7A.
10397 ((progn
10398 (goto-char (1+ containing-sexp))
10399 (< (save-excursion
10400 (c-forward-syntactic-ws)
10401 (point))
10402 (c-point 'bonl)))
10403 (goto-char containing-sexp) ; paren opening the arglist
10404 (setq placeholder (c-point 'boi))
10405 (if (and (c-safe (backward-up-list 1) t)
10406 (>= (point) placeholder))
10407 (progn
10408 (forward-char)
10409 (skip-chars-forward " \t"))
10410 (goto-char placeholder))
10411 (c-add-stmt-syntax 'arglist-cont-nonempty (list containing-sexp) t
10412 (c-most-enclosing-brace c-state-cache (point))
10413 paren-state))
10415 ;; CASE 7G: we are looking at just a normal arglist
10416 ;; continuation line
10417 (t (c-forward-syntactic-ws indent-point)
10418 (c-add-syntax 'arglist-cont (c-point 'boi)))
10421 ;; CASE 8: func-local multi-inheritance line
10422 ((and (c-major-mode-is 'c++-mode)
10423 (save-excursion
10424 (goto-char indent-point)
10425 (skip-chars-forward " \t")
10426 (looking-at c-opt-postfix-decl-spec-key)))
10427 (goto-char indent-point)
10428 (skip-chars-forward " \t")
10429 (cond
10431 ;; CASE 8A: non-hanging colon on an inher intro
10432 ((eq char-after-ip ?:)
10433 (c-backward-syntactic-ws lim)
10434 (c-add-syntax 'inher-intro (c-point 'boi)))
10436 ;; CASE 8B: hanging colon on an inher intro
10437 ((eq char-before-ip ?:)
10438 (c-add-syntax 'inher-intro (c-point 'boi)))
10440 ;; CASE 8C: a continued inheritance line
10442 (c-beginning-of-inheritance-list lim)
10443 (c-add-syntax 'inher-cont (point))
10446 ;; CASE 9: we are inside a brace-list
10447 ((and (not (c-major-mode-is 'awk-mode)) ; Maybe this isn't needed (ACM, 2002/3/29)
10448 (setq special-brace-list
10449 (or (and c-special-brace-lists ;;;; ALWAYS NIL FOR AWK!!
10450 (save-excursion
10451 (goto-char containing-sexp)
10452 (c-looking-at-special-brace-list)))
10453 (c-inside-bracelist-p containing-sexp paren-state))))
10454 (cond
10456 ;; CASE 9A: In the middle of a special brace list opener.
10457 ((and (consp special-brace-list)
10458 (save-excursion
10459 (goto-char containing-sexp)
10460 (eq (char-after) ?\())
10461 (eq char-after-ip (car (cdr special-brace-list))))
10462 (goto-char (car (car special-brace-list)))
10463 (skip-chars-backward " \t")
10464 (if (and (bolp)
10465 (assoc 'statement-cont
10466 (setq placeholder (c-guess-basic-syntax))))
10467 (setq c-syntactic-context placeholder)
10468 (c-beginning-of-statement-1
10469 (c-safe-position (1- containing-sexp) paren-state))
10470 (c-forward-token-2 0)
10471 (while (looking-at c-specifier-key)
10472 (goto-char (match-end 1))
10473 (c-forward-syntactic-ws))
10474 (c-add-syntax 'brace-list-open (c-point 'boi))))
10476 ;; CASE 9B: brace-list-close brace
10477 ((if (consp special-brace-list)
10478 ;; Check special brace list closer.
10479 (progn
10480 (goto-char (car (car special-brace-list)))
10481 (save-excursion
10482 (goto-char indent-point)
10483 (back-to-indentation)
10485 ;; We were between the special close char and the `)'.
10486 (and (eq (char-after) ?\))
10487 (eq (1+ (point)) (cdr (car special-brace-list))))
10488 ;; We were before the special close char.
10489 (and (eq (char-after) (cdr (cdr special-brace-list)))
10490 (zerop (c-forward-token-2))
10491 (eq (1+ (point)) (cdr (car special-brace-list)))))))
10492 ;; Normal brace list check.
10493 (and (eq char-after-ip ?})
10494 (c-safe (goto-char (c-up-list-backward (point))) t)
10495 (= (point) containing-sexp)))
10496 (if (eq (point) (c-point 'boi))
10497 (c-add-syntax 'brace-list-close (point))
10498 (setq lim (c-most-enclosing-brace c-state-cache (point)))
10499 (c-beginning-of-statement-1 lim)
10500 (c-add-stmt-syntax 'brace-list-close nil t lim paren-state)))
10503 ;; Prepare for the rest of the cases below by going to the
10504 ;; token following the opening brace
10505 (if (consp special-brace-list)
10506 (progn
10507 (goto-char (car (car special-brace-list)))
10508 (c-forward-token-2 1 nil indent-point))
10509 (goto-char containing-sexp))
10510 (forward-char)
10511 (let ((start (point)))
10512 (c-forward-syntactic-ws indent-point)
10513 (goto-char (max start (c-point 'bol))))
10514 (c-skip-ws-forward indent-point)
10515 (cond
10517 ;; CASE 9C: we're looking at the first line in a brace-list
10518 ((= (point) indent-point)
10519 (if (consp special-brace-list)
10520 (goto-char (car (car special-brace-list)))
10521 (goto-char containing-sexp))
10522 (if (eq (point) (c-point 'boi))
10523 (c-add-syntax 'brace-list-intro (point))
10524 (setq lim (c-most-enclosing-brace c-state-cache (point)))
10525 (c-beginning-of-statement-1 lim)
10526 (c-add-stmt-syntax 'brace-list-intro nil t lim paren-state)))
10528 ;; CASE 9D: this is just a later brace-list-entry or
10529 ;; brace-entry-open
10530 (t (if (or (eq char-after-ip ?{)
10531 (and c-special-brace-lists
10532 (save-excursion
10533 (goto-char indent-point)
10534 (c-forward-syntactic-ws (c-point 'eol))
10535 (c-looking-at-special-brace-list (point)))))
10536 (c-add-syntax 'brace-entry-open (point))
10537 (c-add-syntax 'brace-list-entry (point))
10539 ))))
10541 ;; CASE 10: A continued statement or top level construct.
10542 ((and (not (memq char-before-ip '(?\; ?:)))
10543 (not (c-at-vsemi-p before-ws-ip))
10544 (or (not (eq char-before-ip ?}))
10545 (c-looking-at-inexpr-block-backward c-state-cache))
10546 (> (point)
10547 (save-excursion
10548 (c-beginning-of-statement-1 containing-sexp)
10549 (setq placeholder (point))))
10550 (/= placeholder containing-sexp))
10551 ;; This is shared with case 18.
10552 (c-guess-continued-construct indent-point
10553 char-after-ip
10554 placeholder
10555 containing-sexp
10556 paren-state))
10558 ;; CASE 16: block close brace, possibly closing the defun or
10559 ;; the class
10560 ((eq char-after-ip ?})
10561 ;; From here on we have the next containing sexp in lim.
10562 (setq lim (c-most-enclosing-brace paren-state))
10563 (goto-char containing-sexp)
10564 (cond
10566 ;; CASE 16E: Closing a statement block? This catches
10567 ;; cases where it's preceded by a statement keyword,
10568 ;; which works even when used in an "invalid" context,
10569 ;; e.g. a macro argument.
10570 ((c-after-conditional)
10571 (c-backward-to-block-anchor lim)
10572 (c-add-stmt-syntax 'block-close nil t lim paren-state))
10574 ;; CASE 16A: closing a lambda defun or an in-expression
10575 ;; block? C.f. cases 4, 7B and 17E.
10576 ((setq placeholder (c-looking-at-inexpr-block
10577 (c-safe-position containing-sexp paren-state)
10578 nil))
10579 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
10580 'inline-close
10581 'block-close))
10582 (goto-char containing-sexp)
10583 (back-to-indentation)
10584 (if (= containing-sexp (point))
10585 (c-add-syntax tmpsymbol (point))
10586 (goto-char (cdr placeholder))
10587 (back-to-indentation)
10588 (c-add-stmt-syntax tmpsymbol nil t
10589 (c-most-enclosing-brace paren-state (point))
10590 paren-state)
10591 (if (/= (point) (cdr placeholder))
10592 (c-add-syntax (car placeholder)))))
10594 ;; CASE 16B: does this close an inline or a function in
10595 ;; a non-class declaration level block?
10596 ((save-excursion
10597 (and lim
10598 (progn
10599 (goto-char lim)
10600 (c-looking-at-decl-block
10601 (c-most-enclosing-brace paren-state lim)
10602 nil))
10603 (setq placeholder (point))))
10604 (c-backward-to-decl-anchor lim)
10605 (back-to-indentation)
10606 (if (save-excursion
10607 (goto-char placeholder)
10608 (looking-at c-other-decl-block-key))
10609 (c-add-syntax 'defun-close (point))
10610 (c-add-syntax 'inline-close (point))))
10612 ;; CASE 16F: Can be a defun-close of a function declared
10613 ;; in a statement block, e.g. in Pike or when using gcc
10614 ;; extensions, but watch out for macros followed by
10615 ;; blocks. Let it through to be handled below.
10616 ;; C.f. cases B.3 and 17G.
10617 ((save-excursion
10618 (and (not (c-at-statement-start-p))
10619 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
10620 (setq placeholder (point))
10621 (let ((c-recognize-typeless-decls nil))
10622 ;; Turn off recognition of constructs that
10623 ;; lacks a type in this case, since that's more
10624 ;; likely to be a macro followed by a block.
10625 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
10626 (back-to-indentation)
10627 (if (/= (point) containing-sexp)
10628 (goto-char placeholder))
10629 (c-add-stmt-syntax 'defun-close nil t lim paren-state))
10631 ;; CASE 16C: If there is an enclosing brace then this is
10632 ;; a block close since defun closes inside declaration
10633 ;; level blocks have been handled above.
10634 (lim
10635 ;; If the block is preceded by a case/switch label on
10636 ;; the same line, we anchor at the first preceding label
10637 ;; at boi. The default handling in c-add-stmt-syntax
10638 ;; really fixes it better, but we do like this to keep
10639 ;; the indentation compatible with version 5.28 and
10640 ;; earlier. C.f. case 17H.
10641 (while (and (/= (setq placeholder (point)) (c-point 'boi))
10642 (eq (c-beginning-of-statement-1 lim) 'label)))
10643 (goto-char placeholder)
10644 (if (looking-at c-label-kwds-regexp)
10645 (c-add-syntax 'block-close (point))
10646 (goto-char containing-sexp)
10647 ;; c-backward-to-block-anchor not necessary here; those
10648 ;; situations are handled in case 16E above.
10649 (c-add-stmt-syntax 'block-close nil t lim paren-state)))
10651 ;; CASE 16D: Only top level defun close left.
10653 (goto-char containing-sexp)
10654 (c-backward-to-decl-anchor lim)
10655 (c-add-stmt-syntax 'defun-close nil nil
10656 (c-most-enclosing-brace paren-state)
10657 paren-state))
10660 ;; CASE 19: line is an expression, not a statement, and is directly
10661 ;; contained by a template delimiter. Most likely, we are in a
10662 ;; template arglist within a statement. This case is based on CASE
10663 ;; 7. At some point in the future, we may wish to create more
10664 ;; syntactic symbols such as `template-intro',
10665 ;; `template-cont-nonempty', etc., and distinguish between them as we
10666 ;; do for `arglist-intro' etc. (2009-12-07).
10667 ((and c-recognize-<>-arglists
10668 (setq containing-< (c-up-list-backward indent-point containing-sexp))
10669 (eq (char-after containing-<) ?\<))
10670 (setq placeholder (c-point 'boi containing-<))
10671 (goto-char containing-sexp) ; Most nested Lbrace/Lparen (but not
10672 ; '<') before indent-point.
10673 (if (>= (point) placeholder)
10674 (progn
10675 (forward-char)
10676 (skip-chars-forward " \t"))
10677 (goto-char placeholder))
10678 (c-add-stmt-syntax 'template-args-cont (list containing-<) t
10679 (c-most-enclosing-brace c-state-cache (point))
10680 paren-state))
10682 ;; CASE 17: Statement or defun catchall.
10684 (goto-char indent-point)
10685 ;; Back up statements until we find one that starts at boi.
10686 (while (let* ((prev-point (point))
10687 (last-step-type (c-beginning-of-statement-1
10688 containing-sexp)))
10689 (if (= (point) prev-point)
10690 (progn
10691 (setq step-type (or step-type last-step-type))
10692 nil)
10693 (setq step-type last-step-type)
10694 (/= (point) (c-point 'boi)))))
10695 (cond
10697 ;; CASE 17B: continued statement
10698 ((and (eq step-type 'same)
10699 (/= (point) indent-point))
10700 (c-add-stmt-syntax 'statement-cont nil nil
10701 containing-sexp paren-state))
10703 ;; CASE 17A: After a case/default label?
10704 ((progn
10705 (while (and (eq step-type 'label)
10706 (not (looking-at c-label-kwds-regexp)))
10707 (setq step-type
10708 (c-beginning-of-statement-1 containing-sexp)))
10709 (eq step-type 'label))
10710 (c-add-stmt-syntax (if (eq char-after-ip ?{)
10711 'statement-case-open
10712 'statement-case-intro)
10713 nil t containing-sexp paren-state))
10715 ;; CASE 17D: any old statement
10716 ((progn
10717 (while (eq step-type 'label)
10718 (setq step-type
10719 (c-beginning-of-statement-1 containing-sexp)))
10720 (eq step-type 'previous))
10721 (c-add-stmt-syntax 'statement nil t
10722 containing-sexp paren-state)
10723 (if (eq char-after-ip ?{)
10724 (c-add-syntax 'block-open)))
10726 ;; CASE 17I: Inside a substatement block.
10727 ((progn
10728 ;; The following tests are all based on containing-sexp.
10729 (goto-char containing-sexp)
10730 ;; From here on we have the next containing sexp in lim.
10731 (setq lim (c-most-enclosing-brace paren-state containing-sexp))
10732 (c-after-conditional))
10733 (c-backward-to-block-anchor lim)
10734 (c-add-stmt-syntax 'statement-block-intro nil t
10735 lim paren-state)
10736 (if (eq char-after-ip ?{)
10737 (c-add-syntax 'block-open)))
10739 ;; CASE 17E: first statement in an in-expression block.
10740 ;; C.f. cases 4, 7B and 16A.
10741 ((setq placeholder (c-looking-at-inexpr-block
10742 (c-safe-position containing-sexp paren-state)
10743 nil))
10744 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
10745 'defun-block-intro
10746 'statement-block-intro))
10747 (back-to-indentation)
10748 (if (= containing-sexp (point))
10749 (c-add-syntax tmpsymbol (point))
10750 (goto-char (cdr placeholder))
10751 (back-to-indentation)
10752 (c-add-stmt-syntax tmpsymbol nil t
10753 (c-most-enclosing-brace c-state-cache (point))
10754 paren-state)
10755 (if (/= (point) (cdr placeholder))
10756 (c-add-syntax (car placeholder))))
10757 (if (eq char-after-ip ?{)
10758 (c-add-syntax 'block-open)))
10760 ;; CASE 17F: first statement in an inline, or first
10761 ;; statement in a top-level defun. we can tell this is it
10762 ;; if there are no enclosing braces that haven't been
10763 ;; narrowed out by a class (i.e. don't use bod here).
10764 ((save-excursion
10765 (or (not (setq placeholder (c-most-enclosing-brace
10766 paren-state)))
10767 (and (progn
10768 (goto-char placeholder)
10769 (eq (char-after) ?{))
10770 (c-looking-at-decl-block (c-most-enclosing-brace
10771 paren-state (point))
10772 nil))))
10773 (c-backward-to-decl-anchor lim)
10774 (back-to-indentation)
10775 (c-add-syntax 'defun-block-intro (point)))
10777 ;; CASE 17G: First statement in a function declared inside
10778 ;; a normal block. This can occur in Pike and with
10779 ;; e.g. the gcc extensions, but watch out for macros
10780 ;; followed by blocks. C.f. cases B.3 and 16F.
10781 ((save-excursion
10782 (and (not (c-at-statement-start-p))
10783 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
10784 (setq placeholder (point))
10785 (let ((c-recognize-typeless-decls nil))
10786 ;; Turn off recognition of constructs that lacks
10787 ;; a type in this case, since that's more likely
10788 ;; to be a macro followed by a block.
10789 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
10790 (back-to-indentation)
10791 (if (/= (point) containing-sexp)
10792 (goto-char placeholder))
10793 (c-add-stmt-syntax 'defun-block-intro nil t
10794 lim paren-state))
10796 ;; CASE 17H: First statement in a block.
10798 ;; If the block is preceded by a case/switch label on the
10799 ;; same line, we anchor at the first preceding label at
10800 ;; boi. The default handling in c-add-stmt-syntax is
10801 ;; really fixes it better, but we do like this to keep the
10802 ;; indentation compatible with version 5.28 and earlier.
10803 ;; C.f. case 16C.
10804 (while (and (/= (setq placeholder (point)) (c-point 'boi))
10805 (eq (c-beginning-of-statement-1 lim) 'label)))
10806 (goto-char placeholder)
10807 (if (looking-at c-label-kwds-regexp)
10808 (c-add-syntax 'statement-block-intro (point))
10809 (goto-char containing-sexp)
10810 ;; c-backward-to-block-anchor not necessary here; those
10811 ;; situations are handled in case 17I above.
10812 (c-add-stmt-syntax 'statement-block-intro nil t
10813 lim paren-state))
10814 (if (eq char-after-ip ?{)
10815 (c-add-syntax 'block-open)))
10819 ;; now we need to look at any modifiers
10820 (goto-char indent-point)
10821 (skip-chars-forward " \t")
10823 ;; are we looking at a comment only line?
10824 (when (and (looking-at c-comment-start-regexp)
10825 (/= (c-forward-token-2 0 nil (c-point 'eol)) 0))
10826 (c-append-syntax 'comment-intro))
10828 ;; we might want to give additional offset to friends (in C++).
10829 (when (and c-opt-friend-key
10830 (looking-at c-opt-friend-key))
10831 (c-append-syntax 'friend))
10833 ;; Set syntactic-relpos.
10834 (let ((p c-syntactic-context))
10835 (while (and p
10836 (if (integerp (c-langelem-pos (car p)))
10837 (progn
10838 (setq syntactic-relpos (c-langelem-pos (car p)))
10839 nil)
10841 (setq p (cdr p))))
10843 ;; Start of or a continuation of a preprocessor directive?
10844 (if (and macro-start
10845 (eq macro-start (c-point 'boi))
10846 (not (and (c-major-mode-is 'pike-mode)
10847 (eq (char-after (1+ macro-start)) ?\"))))
10848 (c-append-syntax 'cpp-macro)
10849 (when (and c-syntactic-indentation-in-macros macro-start)
10850 (if in-macro-expr
10851 (when (or
10852 (< syntactic-relpos macro-start)
10853 (not (or
10854 (assq 'arglist-intro c-syntactic-context)
10855 (assq 'arglist-cont c-syntactic-context)
10856 (assq 'arglist-cont-nonempty c-syntactic-context)
10857 (assq 'arglist-close c-syntactic-context))))
10858 ;; If inside a cpp expression, i.e. anywhere in a
10859 ;; cpp directive except a #define body, we only let
10860 ;; through the syntactic analysis that is internal
10861 ;; in the expression. That means the arglist
10862 ;; elements, if they are anchored inside the cpp
10863 ;; expression.
10864 (setq c-syntactic-context nil)
10865 (c-add-syntax 'cpp-macro-cont macro-start))
10866 (when (and (eq macro-start syntactic-relpos)
10867 (not (assq 'cpp-define-intro c-syntactic-context))
10868 (save-excursion
10869 (goto-char macro-start)
10870 (or (not (c-forward-to-cpp-define-body))
10871 (<= (point) (c-point 'boi indent-point)))))
10872 ;; Inside a #define body and the syntactic analysis is
10873 ;; anchored on the start of the #define. In this case
10874 ;; we add cpp-define-intro to get the extra
10875 ;; indentation of the #define body.
10876 (c-add-syntax 'cpp-define-intro)))))
10878 ;; return the syntax
10879 c-syntactic-context)))
10882 ;; Indentation calculation.
10884 (defun c-evaluate-offset (offset langelem symbol)
10885 ;; offset can be a number, a function, a variable, a list, or one of
10886 ;; the symbols + or -
10888 ;; This function might do hidden buffer changes.
10889 (let ((res
10890 (cond
10891 ((numberp offset) offset)
10892 ((vectorp offset) offset)
10893 ((null offset) nil)
10895 ((eq offset '+) c-basic-offset)
10896 ((eq offset '-) (- c-basic-offset))
10897 ((eq offset '++) (* 2 c-basic-offset))
10898 ((eq offset '--) (* 2 (- c-basic-offset)))
10899 ((eq offset '*) (/ c-basic-offset 2))
10900 ((eq offset '/) (/ (- c-basic-offset) 2))
10902 ((functionp offset)
10903 (c-evaluate-offset
10904 (funcall offset
10905 (cons (c-langelem-sym langelem)
10906 (c-langelem-pos langelem)))
10907 langelem symbol))
10909 ((listp offset)
10910 (cond
10911 ((eq (car offset) 'quote)
10912 (c-benign-error "The offset %S for %s was mistakenly quoted"
10913 offset symbol)
10914 nil)
10916 ((memq (car offset) '(min max))
10917 (let (res val (method (car offset)))
10918 (setq offset (cdr offset))
10919 (while offset
10920 (setq val (c-evaluate-offset (car offset) langelem symbol))
10921 (cond
10922 ((not val))
10923 ((not res)
10924 (setq res val))
10925 ((integerp val)
10926 (if (vectorp res)
10927 (c-benign-error "\
10928 Error evaluating offset %S for %s: \
10929 Cannot combine absolute offset %S with relative %S in `%s' method"
10930 (car offset) symbol res val method)
10931 (setq res (funcall method res val))))
10933 (if (integerp res)
10934 (c-benign-error "\
10935 Error evaluating offset %S for %s: \
10936 Cannot combine relative offset %S with absolute %S in `%s' method"
10937 (car offset) symbol res val method)
10938 (setq res (vector (funcall method (aref res 0)
10939 (aref val 0)))))))
10940 (setq offset (cdr offset)))
10941 res))
10943 ((eq (car offset) 'add)
10944 (let (res val)
10945 (setq offset (cdr offset))
10946 (while offset
10947 (setq val (c-evaluate-offset (car offset) langelem symbol))
10948 (cond
10949 ((not val))
10950 ((not res)
10951 (setq res val))
10952 ((integerp val)
10953 (if (vectorp res)
10954 (setq res (vector (+ (aref res 0) val)))
10955 (setq res (+ res val))))
10957 (if (vectorp res)
10958 (c-benign-error "\
10959 Error evaluating offset %S for %s: \
10960 Cannot combine absolute offsets %S and %S in `add' method"
10961 (car offset) symbol res val)
10962 (setq res val)))) ; Override.
10963 (setq offset (cdr offset)))
10964 res))
10967 (let (res)
10968 (when (eq (car offset) 'first)
10969 (setq offset (cdr offset)))
10970 (while (and (not res) offset)
10971 (setq res (c-evaluate-offset (car offset) langelem symbol)
10972 offset (cdr offset)))
10973 res))))
10975 ((and (symbolp offset) (boundp offset))
10976 (symbol-value offset))
10979 (c-benign-error "Unknown offset format %S for %s" offset symbol)
10980 nil))))
10982 (if (or (null res) (integerp res)
10983 (and (vectorp res) (= (length res) 1) (integerp (aref res 0))))
10985 (c-benign-error "Error evaluating offset %S for %s: Got invalid value %S"
10986 offset symbol res)
10987 nil)))
10989 (defun c-calc-offset (langelem)
10990 ;; Get offset from LANGELEM which is a list beginning with the
10991 ;; syntactic symbol and followed by any analysis data it provides.
10992 ;; That data may be zero or more elements, but if at least one is
10993 ;; given then the first is the anchor position (or nil). The symbol
10994 ;; is matched against `c-offsets-alist' and the offset calculated
10995 ;; from that is returned.
10997 ;; This function might do hidden buffer changes.
10998 (let* ((symbol (c-langelem-sym langelem))
10999 (match (assq symbol c-offsets-alist))
11000 (offset (cdr-safe match)))
11001 (if match
11002 (setq offset (c-evaluate-offset offset langelem symbol))
11003 (if c-strict-syntax-p
11004 (c-benign-error "No offset found for syntactic symbol %s" symbol))
11005 (setq offset 0))
11006 (if (vectorp offset)
11007 offset
11008 (or (and (numberp offset) offset)
11009 (and (symbolp offset) (symbol-value offset))
11013 (defun c-get-offset (langelem)
11014 ;; This is a compatibility wrapper for `c-calc-offset' in case
11015 ;; someone is calling it directly. It takes an old style syntactic
11016 ;; element on the form (SYMBOL . ANCHOR-POS) and converts it to the
11017 ;; new list form.
11019 ;; This function might do hidden buffer changes.
11020 (if (c-langelem-pos langelem)
11021 (c-calc-offset (list (c-langelem-sym langelem)
11022 (c-langelem-pos langelem)))
11023 (c-calc-offset langelem)))
11025 (defun c-get-syntactic-indentation (langelems)
11026 ;; Calculate the syntactic indentation from a syntactic description
11027 ;; as returned by `c-guess-syntax'.
11029 ;; Note that topmost-intro always has an anchor position at bol, for
11030 ;; historical reasons. It's often used together with other symbols
11031 ;; that has more sane positions. Since we always use the first
11032 ;; found anchor position, we rely on that these other symbols always
11033 ;; precede topmost-intro in the LANGELEMS list.
11035 ;; This function might do hidden buffer changes.
11036 (let ((indent 0) anchor)
11038 (while langelems
11039 (let* ((c-syntactic-element (car langelems))
11040 (res (c-calc-offset c-syntactic-element)))
11042 (if (vectorp res)
11043 ;; Got an absolute column that overrides any indentation
11044 ;; we've collected so far, but not the relative
11045 ;; indentation we might get for the nested structures
11046 ;; further down the langelems list.
11047 (setq indent (elt res 0)
11048 anchor (point-min)) ; A position at column 0.
11050 ;; Got a relative change of the current calculated
11051 ;; indentation.
11052 (setq indent (+ indent res))
11054 ;; Use the anchor position from the first syntactic
11055 ;; element with one.
11056 (unless anchor
11057 (setq anchor (c-langelem-pos (car langelems)))))
11059 (setq langelems (cdr langelems))))
11061 (if anchor
11062 (+ indent (save-excursion
11063 (goto-char anchor)
11064 (current-column)))
11065 indent)))
11068 (cc-provide 'cc-engine)
11070 ;;; cc-engine.el ends here