Backslash cleanup in Elisp source files
[emacs.git] / lisp / progmodes / cc-engine.el
blob6382b14521141cd7808e3f6a63842b8649b8982c
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)
150 (eval-when-compile (require 'cl))
153 ;; Make declarations for all the `c-lang-defvar' variables in cc-langs.
155 (defmacro c-declare-lang-variables ()
156 `(progn
157 ,@(c--mapcan (lambda (init)
158 `(,(if (elt init 2)
159 `(defvar ,(car init) nil ,(elt init 2))
160 `(defvar ,(car init) nil))
161 (make-variable-buffer-local ',(car init))))
162 (cdr c-lang-variable-inits))))
163 (c-declare-lang-variables)
166 ;;; Internal state variables.
168 ;; Internal state of hungry delete key feature
169 (defvar c-hungry-delete-key nil)
170 (make-variable-buffer-local 'c-hungry-delete-key)
172 ;; The electric flag (toggled by `c-toggle-electric-state').
173 ;; If t, electric actions (like automatic reindentation, and (if
174 ;; c-auto-newline is also set) auto newlining) will happen when an electric
175 ;; key like `{' is pressed (or an electric keyword like `else').
176 (defvar c-electric-flag t)
177 (make-variable-buffer-local 'c-electric-flag)
179 ;; Internal state of auto newline feature.
180 (defvar c-auto-newline nil)
181 (make-variable-buffer-local 'c-auto-newline)
183 ;; Included in the mode line to indicate the active submodes.
184 ;; (defvar c-submode-indicators nil)
185 ;; (make-variable-buffer-local 'c-submode-indicators)
187 (defun c-calculate-state (arg prevstate)
188 ;; Calculate the new state of PREVSTATE, t or nil, based on arg. If
189 ;; arg is nil or zero, toggle the state. If arg is negative, turn
190 ;; the state off, and if arg is positive, turn the state on
191 (if (or (not arg)
192 (zerop (setq arg (prefix-numeric-value arg))))
193 (not prevstate)
194 (> arg 0)))
197 ;; Basic handling of preprocessor directives.
199 ;; This is a dynamically bound cache used together with
200 ;; `c-query-macro-start' and `c-query-and-set-macro-start'. It only
201 ;; works as long as point doesn't cross a macro boundary.
202 (defvar c-macro-start 'unknown)
204 (defsubst c-query-and-set-macro-start ()
205 (if (symbolp c-macro-start)
206 (setq c-macro-start (save-excursion
207 (c-save-buffer-state ()
208 (and (c-beginning-of-macro)
209 (point)))))
210 c-macro-start))
212 (defsubst c-query-macro-start ()
213 (if (symbolp c-macro-start)
214 (save-excursion
215 (c-save-buffer-state ()
216 (and (c-beginning-of-macro)
217 (point))))
218 c-macro-start))
220 ;; One element macro cache to cope with continual movement within very large
221 ;; CPP macros.
222 (defvar c-macro-cache nil)
223 (make-variable-buffer-local 'c-macro-cache)
224 ;; Nil or cons of the bounds of the most recent CPP form probed by
225 ;; `c-beginning-of-macro', `c-end-of-macro' or `c-syntactic-end-of-macro'.
226 ;; The cdr will be nil if we know only the start of the CPP form.
227 (defvar c-macro-cache-start-pos nil)
228 (make-variable-buffer-local 'c-macro-cache-start-pos)
229 ;; The starting position from where we determined `c-macro-cache'.
230 (defvar c-macro-cache-syntactic nil)
231 (make-variable-buffer-local 'c-macro-cache-syntactic)
232 ;; non-nil iff `c-macro-cache' has both elements set AND the cdr is at a
233 ;; syntactic end of macro, not merely an apparent one.
235 (defun c-invalidate-macro-cache (beg end)
236 ;; Called from a before-change function. If the change region is before or
237 ;; in the macro characterized by `c-macro-cache' etc., nullify it
238 ;; appropriately. BEG and END are the standard before-change-functions
239 ;; parameters. END isn't used.
240 (cond
241 ((null c-macro-cache))
242 ((< beg (car c-macro-cache))
243 (setq c-macro-cache nil
244 c-macro-cache-start-pos nil
245 c-macro-cache-syntactic nil))
246 ((and (cdr c-macro-cache)
247 (< beg (cdr c-macro-cache)))
248 (setcdr c-macro-cache nil)
249 (setq c-macro-cache-start-pos beg
250 c-macro-cache-syntactic nil))))
252 (defun c-macro-is-genuine-p ()
253 ;; Check that the ostensible CPP construct at point is a real one. In
254 ;; particular, if point is on the first line of a narrowed buffer, make sure
255 ;; that the "#" isn't, say, the second character of a "##" operator. Return
256 ;; t when the macro is real, nil otherwise.
257 (let ((here (point)))
258 (beginning-of-line)
259 (prog1
260 (if (and (eq (point) (point-min))
261 (/= (point) 1))
262 (save-restriction
263 (widen)
264 (beginning-of-line)
265 (and (looking-at c-anchored-cpp-prefix)
266 (eq (match-beginning 1) here)))
268 (goto-char here))))
270 (defun c-beginning-of-macro (&optional lim)
271 "Go to the beginning of a preprocessor directive.
272 Leave point at the beginning of the directive and return t if in one,
273 otherwise return nil and leave point unchanged.
275 Note that this function might do hidden buffer changes. See the
276 comment at the start of cc-engine.el for more info."
277 (let ((here (point)))
278 (when c-opt-cpp-prefix
279 (if (and (car c-macro-cache)
280 (>= (point) (car c-macro-cache))
281 (or (and (cdr c-macro-cache)
282 (<= (point) (cdr c-macro-cache)))
283 (<= (point) c-macro-cache-start-pos)))
284 (unless (< (car c-macro-cache) (or lim (point-min)))
285 (progn (goto-char (max (or lim (point-min)) (car c-macro-cache)))
286 (setq c-macro-cache-start-pos
287 (max c-macro-cache-start-pos here))
289 (setq c-macro-cache nil
290 c-macro-cache-start-pos nil
291 c-macro-cache-syntactic nil)
293 (save-restriction
294 (if lim (narrow-to-region lim (point-max)))
295 (beginning-of-line)
296 (while (eq (char-before (1- (point))) ?\\)
297 (forward-line -1))
298 (back-to-indentation)
299 (if (and (<= (point) here)
300 (looking-at c-opt-cpp-start)
301 (c-macro-is-genuine-p))
302 (progn
303 (setq c-macro-cache (cons (point) nil)
304 c-macro-cache-start-pos here)
306 (goto-char here)
307 nil))))))
309 (defun c-end-of-macro ()
310 "Go to the end of a preprocessor directive.
311 More accurately, move the point to the end of the closest following
312 line that doesn't end with a line continuation backslash - no check is
313 done that the point is inside a cpp directive to begin with.
315 Note that this function might do hidden buffer changes. See the
316 comment at the start of cc-engine.el for more info."
317 (if (and (cdr c-macro-cache)
318 (<= (point) (cdr c-macro-cache))
319 (>= (point) (car c-macro-cache)))
320 (goto-char (cdr c-macro-cache))
321 (unless (and (car c-macro-cache)
322 (<= (point) c-macro-cache-start-pos)
323 (>= (point) (car c-macro-cache)))
324 (setq c-macro-cache nil
325 c-macro-cache-start-pos nil
326 c-macro-cache-syntactic nil))
327 (while (progn
328 (end-of-line)
329 (when (and (eq (char-before) ?\\)
330 (not (eobp)))
331 (forward-char)
332 t)))
333 (when (car c-macro-cache)
334 (setcdr c-macro-cache (point)))))
336 (defun c-syntactic-end-of-macro ()
337 ;; Go to the end of a CPP directive, or a "safe" pos just before.
339 ;; This is normally the end of the next non-escaped line. A "safe"
340 ;; position is one not within a string or comment. (The EOL on a line
341 ;; comment is NOT "safe").
343 ;; This function must only be called from the beginning of a CPP construct.
345 ;; Note that this function might do hidden buffer changes. See the comment
346 ;; at the start of cc-engine.el for more info.
347 (let* ((here (point))
348 (there (progn (c-end-of-macro) (point)))
350 (unless c-macro-cache-syntactic
351 (setq s (parse-partial-sexp here there))
352 (while (and (or (nth 3 s) ; in a string
353 (nth 4 s)) ; in a comment (maybe at end of line comment)
354 (> there here)) ; No infinite loops, please.
355 (setq there (1- (nth 8 s)))
356 (setq s (parse-partial-sexp here there)))
357 (setq c-macro-cache-syntactic (car c-macro-cache)))
358 (point)))
360 (defun c-forward-over-cpp-define-id ()
361 ;; Assuming point is at the "#" that introduces a preprocessor
362 ;; directive, it's moved forward to the end of the identifier which is
363 ;; "#define"d (or whatever c-opt-cpp-macro-define specifies). Non-nil
364 ;; is returned in this case, in all other cases nil is returned and
365 ;; point isn't moved.
367 ;; This function might do hidden buffer changes.
368 (when (and c-opt-cpp-macro-define-id
369 (looking-at c-opt-cpp-macro-define-id))
370 (goto-char (match-end 0))))
372 (defun c-forward-to-cpp-define-body ()
373 ;; Assuming point is at the "#" that introduces a preprocessor
374 ;; directive, it's moved forward to the start of the definition body
375 ;; if it's a "#define" (or whatever c-opt-cpp-macro-define
376 ;; specifies). Non-nil is returned in this case, in all other cases
377 ;; nil is returned and point isn't moved.
379 ;; This function might do hidden buffer changes.
380 (when (and c-opt-cpp-macro-define-start
381 (looking-at c-opt-cpp-macro-define-start)
382 (not (= (match-end 0) (c-point 'eol))))
383 (goto-char (match-end 0))))
386 ;;; Basic utility functions.
388 (defun c-syntactic-content (from to paren-level)
389 ;; Return the given region as a string where all syntactic
390 ;; whitespace is removed or, where necessary, replaced with a single
391 ;; space. If PAREN-LEVEL is given then all parens in the region are
392 ;; collapsed to "()", "[]" etc.
394 ;; This function might do hidden buffer changes.
396 (save-excursion
397 (save-restriction
398 (narrow-to-region from to)
399 (goto-char from)
400 (let* ((parts (list nil)) (tail parts) pos in-paren)
402 (while (re-search-forward c-syntactic-ws-start to t)
403 (goto-char (setq pos (match-beginning 0)))
404 (c-forward-syntactic-ws)
405 (if (= (point) pos)
406 (forward-char)
408 (when paren-level
409 (save-excursion
410 (setq in-paren (= (car (parse-partial-sexp from pos 1)) 1)
411 pos (point))))
413 (if (and (> pos from)
414 (< (point) to)
415 (looking-at "\\w\\|\\s_")
416 (save-excursion
417 (goto-char (1- pos))
418 (looking-at "\\w\\|\\s_")))
419 (progn
420 (setcdr tail (list (buffer-substring-no-properties from pos)
421 " "))
422 (setq tail (cddr tail)))
423 (setcdr tail (list (buffer-substring-no-properties from pos)))
424 (setq tail (cdr tail)))
426 (when in-paren
427 (when (= (car (parse-partial-sexp pos to -1)) -1)
428 (setcdr tail (list (buffer-substring-no-properties
429 (1- (point)) (point))))
430 (setq tail (cdr tail))))
432 (setq from (point))))
434 (setcdr tail (list (buffer-substring-no-properties from to)))
435 (apply 'concat (cdr parts))))))
437 (defun c-shift-line-indentation (shift-amt)
438 ;; Shift the indentation of the current line with the specified
439 ;; amount (positive inwards). The buffer is modified only if
440 ;; SHIFT-AMT isn't equal to zero.
441 (let ((pos (- (point-max) (point)))
442 (c-macro-start c-macro-start)
443 tmp-char-inserted)
444 (if (zerop shift-amt)
446 ;; If we're on an empty line inside a macro, we take the point
447 ;; to be at the current indentation and shift it to the
448 ;; appropriate column. This way we don't treat the extra
449 ;; whitespace out to the line continuation as indentation.
450 (when (and (c-query-and-set-macro-start)
451 (looking-at "[ \t]*\\\\$")
452 (save-excursion
453 (skip-chars-backward " \t")
454 (bolp)))
455 (insert ?x)
456 (backward-char)
457 (setq tmp-char-inserted t))
458 (unwind-protect
459 (let ((col (current-indentation)))
460 (delete-region (c-point 'bol) (c-point 'boi))
461 (beginning-of-line)
462 (indent-to (+ col shift-amt)))
463 (when tmp-char-inserted
464 (delete-char 1))))
465 ;; If initial point was within line's indentation and we're not on
466 ;; a line with a line continuation in a macro, position after the
467 ;; indentation. Else stay at same point in text.
468 (if (and (< (point) (c-point 'boi))
469 (not tmp-char-inserted))
470 (back-to-indentation)
471 (if (> (- (point-max) pos) (point))
472 (goto-char (- (point-max) pos))))))
474 (defsubst c-keyword-sym (keyword)
475 ;; Return non-nil if the string KEYWORD is a known keyword. More
476 ;; precisely, the value is the symbol for the keyword in
477 ;; `c-keywords-obarray'.
478 (intern-soft keyword c-keywords-obarray))
480 (defsubst c-keyword-member (keyword-sym lang-constant)
481 ;; Return non-nil if the symbol KEYWORD-SYM, as returned by
482 ;; `c-keyword-sym', is a member of LANG-CONSTANT, which is the name
483 ;; of a language constant that ends with "-kwds". If KEYWORD-SYM is
484 ;; nil then the result is nil.
485 (get keyword-sym lang-constant))
487 ;; String syntax chars, suitable for skip-syntax-(forward|backward).
488 (defconst c-string-syntax (if (memq 'gen-string-delim c-emacs-features)
489 "\"|"
490 "\""))
492 ;; Regexp matching string limit syntax.
493 (defconst c-string-limit-regexp (if (memq 'gen-string-delim c-emacs-features)
494 "\\s\"\\|\\s|"
495 "\\s\""))
497 ;; Regexp matching WS followed by string limit syntax.
498 (defconst c-ws*-string-limit-regexp
499 (concat "[ \t]*\\(" c-string-limit-regexp "\\)"))
501 ;; Holds formatted error strings for the few cases where parse errors
502 ;; are reported.
503 (defvar c-parsing-error nil)
504 (make-variable-buffer-local 'c-parsing-error)
506 (defun c-echo-parsing-error (&optional quiet)
507 (when (and c-report-syntactic-errors c-parsing-error (not quiet))
508 (c-benign-error "%s" c-parsing-error))
509 c-parsing-error)
511 ;; Faces given to comments and string literals. This is used in some
512 ;; situations to speed up recognition; it isn't mandatory that font
513 ;; locking is in use. This variable is extended with the face in
514 ;; `c-doc-face-name' when fontification is activated in cc-fonts.el.
515 (defvar c-literal-faces
516 (append '(font-lock-comment-face font-lock-string-face)
517 (when (facep 'font-lock-comment-delimiter-face)
518 ;; New in Emacs 22.
519 '(font-lock-comment-delimiter-face))))
521 (defsubst c-put-c-type-property (pos value)
522 ;; Put a c-type property with the given value at POS.
523 (c-put-char-property pos 'c-type value))
525 (defun c-clear-c-type-property (from to value)
526 ;; Remove all occurrences of the c-type property that has the given
527 ;; value in the region between FROM and TO. VALUE is assumed to not
528 ;; be nil.
530 ;; Note: This assumes that c-type is put on single chars only; it's
531 ;; very inefficient if matching properties cover large regions.
532 (save-excursion
533 (goto-char from)
534 (while (progn
535 (when (eq (get-text-property (point) 'c-type) value)
536 (c-clear-char-property (point) 'c-type))
537 (goto-char (c-next-single-property-change (point) 'c-type nil to))
538 (< (point) to)))))
541 ;; Some debug tools to visualize various special positions. This
542 ;; debug code isn't as portable as the rest of CC Mode.
544 (cc-bytecomp-defun overlays-in)
545 (cc-bytecomp-defun overlay-get)
546 (cc-bytecomp-defun overlay-start)
547 (cc-bytecomp-defun overlay-end)
548 (cc-bytecomp-defun delete-overlay)
549 (cc-bytecomp-defun overlay-put)
550 (cc-bytecomp-defun make-overlay)
552 (defun c-debug-add-face (beg end face)
553 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay)
554 (while overlays
555 (setq overlay (car overlays)
556 overlays (cdr overlays))
557 (when (eq (overlay-get overlay 'face) face)
558 (setq beg (min beg (overlay-start overlay))
559 end (max end (overlay-end overlay)))
560 (delete-overlay overlay)))
561 (overlay-put (make-overlay beg end) 'face face)))
563 (defun c-debug-remove-face (beg end face)
564 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay
565 (ol-beg beg) (ol-end end))
566 (while overlays
567 (setq overlay (car overlays)
568 overlays (cdr overlays))
569 (when (eq (overlay-get overlay 'face) face)
570 (setq ol-beg (min ol-beg (overlay-start overlay))
571 ol-end (max ol-end (overlay-end overlay)))
572 (delete-overlay overlay)))
573 (when (< ol-beg beg)
574 (overlay-put (make-overlay ol-beg beg) 'face face))
575 (when (> ol-end end)
576 (overlay-put (make-overlay end ol-end) 'face face))))
579 ;; `c-beginning-of-statement-1' and accompanying stuff.
581 ;; KLUDGE ALERT: c-maybe-labelp is used to pass information between
582 ;; c-crosses-statement-barrier-p and c-beginning-of-statement-1. A
583 ;; better way should be implemented, but this will at least shut up
584 ;; the byte compiler.
585 (defvar c-maybe-labelp)
587 ;; New awk-compatible version of c-beginning-of-statement-1, ACM 2002/6/22
589 ;; Macros used internally in c-beginning-of-statement-1 for the
590 ;; automaton actions.
591 (defmacro c-bos-push-state ()
592 '(setq stack (cons (cons state saved-pos)
593 stack)))
594 (defmacro c-bos-pop-state (&optional do-if-done)
595 `(if (setq state (car (car stack))
596 saved-pos (cdr (car stack))
597 stack (cdr stack))
599 ,do-if-done
600 (throw 'loop nil)))
601 (defmacro c-bos-pop-state-and-retry ()
602 '(throw 'loop (setq state (car (car stack))
603 saved-pos (cdr (car stack))
604 ;; Throw nil if stack is empty, else throw non-nil.
605 stack (cdr stack))))
606 (defmacro c-bos-save-pos ()
607 '(setq saved-pos (vector pos tok ptok pptok)))
608 (defmacro c-bos-restore-pos ()
609 '(unless (eq (elt saved-pos 0) start)
610 (setq pos (elt saved-pos 0)
611 tok (elt saved-pos 1)
612 ptok (elt saved-pos 2)
613 pptok (elt saved-pos 3))
614 (goto-char pos)
615 (setq sym nil)))
616 (defmacro c-bos-save-error-info (missing got)
617 `(setq saved-pos (vector pos ,missing ,got)))
618 (defmacro c-bos-report-error ()
619 '(unless noerror
620 (setq c-parsing-error
621 (format-message
622 "No matching `%s' found for `%s' on line %d"
623 (elt saved-pos 1)
624 (elt saved-pos 2)
625 (1+ (count-lines (point-min)
626 (c-point 'bol (elt saved-pos 0))))))))
628 (defun c-beginning-of-statement-1 (&optional lim ignore-labels
629 noerror comma-delim)
630 "Move to the start of the current statement or declaration, or to
631 the previous one if already at the beginning of one. Only
632 statements/declarations on the same level are considered, i.e. don't
633 move into or out of sexps (not even normal expression parentheses).
635 If point is already at the earliest statement within braces or parens,
636 this function doesn't move back into any whitespace preceding it; it
637 returns `same' in this case.
639 Stop at statement continuation tokens like \"else\", \"catch\",
640 \"finally\" and the \"while\" in \"do ... while\" if the start point
641 is within the continuation. If starting at such a token, move to the
642 corresponding statement start. If at the beginning of a statement,
643 move to the closest containing statement if there is any. This might
644 also stop at a continuation clause.
646 Labels are treated as part of the following statements if
647 IGNORE-LABELS is non-nil. (FIXME: Doesn't work if we stop at a known
648 statement start keyword.) Otherwise, each label is treated as a
649 separate statement.
651 Macros are ignored \(i.e. skipped over) unless point is within one, in
652 which case the content of the macro is treated as normal code. Aside
653 from any normal statement starts found in it, stop at the first token
654 of the content in the macro, i.e. the expression of an \"#if\" or the
655 start of the definition in a \"#define\". Also stop at start of
656 macros before leaving them.
658 Return:
659 `label' if stopped at a label or \"case...:\" or \"default:\";
660 `same' if stopped at the beginning of the current statement;
661 `up' if stepped to a containing statement;
662 `previous' if stepped to a preceding statement;
663 `beginning' if stepped from a statement continuation clause to
664 its start clause; or
665 `macro' if stepped to a macro start.
666 Note that `same' and not `label' is returned if stopped at the same
667 label without crossing the colon character.
669 LIM may be given to limit the search. If the search hits the limit,
670 point will be left at the closest following token, or at the start
671 position if that is less (`same' is returned in this case).
673 NOERROR turns off error logging to `c-parsing-error'.
675 Normally only `;' and virtual semicolons are considered to delimit
676 statements, but if COMMA-DELIM is non-nil then `,' is treated
677 as a delimiter too.
679 Note that this function might do hidden buffer changes. See the
680 comment at the start of cc-engine.el for more info."
682 ;; The bulk of this function is a pushdown automaton that looks at statement
683 ;; boundaries and the tokens (such as "while") in c-opt-block-stmt-key. Its
684 ;; purpose is to keep track of nested statements, ensuring that such
685 ;; statements are skipped over in their entirety (somewhat akin to what C-M-p
686 ;; does with nested braces/brackets/parentheses).
688 ;; Note: The position of a boundary is the following token.
690 ;; Beginning with the current token (the one following point), move back one
691 ;; sexp at a time (where a sexp is, more or less, either a token or the
692 ;; entire contents of a brace/bracket/paren pair). Each time a statement
693 ;; boundary is crossed or a "while"-like token is found, update the state of
694 ;; the PDA. Stop at the beginning of a statement when the stack (holding
695 ;; nested statement info) is empty and the position has been moved.
697 ;; The following variables constitute the PDA:
699 ;; sym: This is either the "while"-like token (e.g. 'for) we've just
700 ;; scanned back over, 'boundary if we've just gone back over a
701 ;; statement boundary, or nil otherwise.
702 ;; state: takes one of the values (nil else else-boundary while
703 ;; while-boundary catch catch-boundary).
704 ;; nil means "no "while"-like token yet scanned".
705 ;; 'else, for example, means "just gone back over an else".
706 ;; 'else-boundary means "just gone back over a statement boundary
707 ;; immediately after having gone back over an else".
708 ;; saved-pos: A vector of either saved positions (tok ptok pptok, etc.) or
709 ;; of error reporting information.
710 ;; stack: The stack onto which the PDA pushes its state. Each entry
711 ;; consists of a saved value of state and saved-pos. An entry is
712 ;; pushed when we move back over a "continuation" token (e.g. else)
713 ;; and popped when we encounter the corresponding opening token
714 ;; (e.g. if).
717 ;; The following diagram briefly outlines the PDA.
719 ;; Common state:
720 ;; "else": Push state, goto state `else'.
721 ;; "while": Push state, goto state `while'.
722 ;; "catch" or "finally": Push state, goto state `catch'.
723 ;; boundary: Pop state.
724 ;; other: Do nothing special.
726 ;; State `else':
727 ;; boundary: Goto state `else-boundary'.
728 ;; other: Error, pop state, retry token.
730 ;; State `else-boundary':
731 ;; "if": Pop state.
732 ;; boundary: Error, pop state.
733 ;; other: See common state.
735 ;; State `while':
736 ;; boundary: Save position, goto state `while-boundary'.
737 ;; other: Pop state, retry token.
739 ;; State `while-boundary':
740 ;; "do": Pop state.
741 ;; boundary: Restore position if it's not at start, pop state. [*see below]
742 ;; other: See common state.
744 ;; State `catch':
745 ;; boundary: Goto state `catch-boundary'.
746 ;; other: Error, pop state, retry token.
748 ;; State `catch-boundary':
749 ;; "try": Pop state.
750 ;; "catch": Goto state `catch'.
751 ;; boundary: Error, pop state.
752 ;; other: See common state.
754 ;; [*] In the `while-boundary' state, we had pushed a 'while state, and were
755 ;; searching for a "do" which would have opened a do-while. If we didn't
756 ;; find it, we discard the analysis done since the "while", go back to this
757 ;; token in the buffer and restart the scanning there, this time WITHOUT
758 ;; pushing the 'while state onto the stack.
760 ;; In addition to the above there is some special handling of labels
761 ;; and macros.
763 (let ((case-fold-search nil)
764 (start (point))
765 macro-start
766 (delims (if comma-delim '(?\; ?,) '(?\;)))
767 (c-stmt-delim-chars (if comma-delim
768 c-stmt-delim-chars-with-comma
769 c-stmt-delim-chars))
770 c-in-literal-cache c-maybe-labelp after-case:-pos saved
771 ;; Current position.
773 ;; Position of last stmt boundary character (e.g. ;).
774 boundary-pos
775 ;; The position of the last sexp or bound that follows the
776 ;; first found colon, i.e. the start of the nonlabel part of
777 ;; the statement. It's `start' if a colon is found just after
778 ;; the start.
779 after-labels-pos
780 ;; Like `after-labels-pos', but the first such position inside
781 ;; a label, i.e. the start of the last label before the start
782 ;; of the nonlabel part of the statement.
783 last-label-pos
784 ;; The last position where a label is possible provided the
785 ;; statement started there. It's nil as long as no invalid
786 ;; label content has been found (according to
787 ;; `c-nonlabel-token-key'). It's `start' if no valid label
788 ;; content was found in the label. Note that we might still
789 ;; regard it a label if it starts with `c-label-kwds'.
790 label-good-pos
791 ;; Putative positions of the components of a bitfield declaration,
792 ;; e.g. "int foo : NUM_FOO_BITS ;"
793 bitfield-type-pos bitfield-id-pos bitfield-size-pos
794 ;; Symbol just scanned back over (e.g. 'while or 'boundary).
795 ;; See above.
797 ;; Current state in the automaton. See above.
798 state
799 ;; Current saved positions. See above.
800 saved-pos
801 ;; Stack of conses (state . saved-pos).
802 stack
803 ;; Regexp which matches "for", "if", etc.
804 (cond-key (or c-opt-block-stmt-key
805 "\\<\\>")) ; Matches nothing.
806 ;; Return value.
807 (ret 'same)
808 ;; Positions of the last three sexps or bounds we've stopped at.
809 tok ptok pptok)
811 (save-restriction
812 (if lim (narrow-to-region lim (point-max)))
814 (if (save-excursion
815 (and (c-beginning-of-macro)
816 (/= (point) start)))
817 (setq macro-start (point)))
819 ;; Try to skip back over unary operator characters, to register
820 ;; that we've moved.
821 (while (progn
822 (setq pos (point))
823 (c-backward-syntactic-ws)
824 ;; Protect post-++/-- operators just before a virtual semicolon.
825 (and (not (c-at-vsemi-p))
826 (/= (skip-chars-backward "-+!*&~@`#") 0))))
828 ;; Skip back over any semicolon here. If it was a bare semicolon, we're
829 ;; done. Later on we ignore the boundaries for statements that don't
830 ;; contain any sexp. The only thing that is affected is that the error
831 ;; checking is a little less strict, and we really don't bother.
832 (if (and (memq (char-before) delims)
833 (progn (forward-char -1)
834 (setq saved (point))
835 (c-backward-syntactic-ws)
836 (or (memq (char-before) delims)
837 (memq (char-before) '(?: nil))
838 (eq (char-syntax (char-before)) ?\()
839 (c-at-vsemi-p))))
840 (setq ret 'previous
841 pos saved)
843 ;; Begin at start and not pos to detect macros if we stand
844 ;; directly after the #.
845 (goto-char start)
846 (if (looking-at "\\<\\|\\W")
847 ;; Record this as the first token if not starting inside it.
848 (setq tok start))
850 ;; The following while loop goes back one sexp (balanced parens,
851 ;; etc. with contents, or symbol or suchlike) each iteration. This
852 ;; movement is accomplished with a call to c-backward-sexp approx 170
853 ;; lines below.
855 ;; The loop is exited only by throwing nil to the (catch 'loop ...):
856 ;; 1. On reaching the start of a macro;
857 ;; 2. On having passed a stmt boundary with the PDA stack empty;
858 ;; 3. On reaching the start of an Objective C method def;
859 ;; 4. From macro `c-bos-pop-state'; when the stack is empty;
860 ;; 5. From macro `c-bos-pop-state-and-retry' when the stack is empty.
861 (while
862 (catch 'loop ;; Throw nil to break, non-nil to continue.
863 (cond
864 ;; Are we in a macro, just after the opening #?
865 ((save-excursion
866 (and macro-start ; Always NIL for AWK.
867 (progn (skip-chars-backward " \t")
868 (eq (char-before) ?#))
869 (progn (setq saved (1- (point)))
870 (beginning-of-line)
871 (not (eq (char-before (1- (point))) ?\\)))
872 (looking-at c-opt-cpp-start)
873 (progn (skip-chars-forward " \t")
874 (eq (point) saved))))
875 (goto-char saved)
876 (if (and (c-forward-to-cpp-define-body)
877 (progn (c-forward-syntactic-ws start)
878 (< (point) start)))
879 ;; Stop at the first token in the content of the macro.
880 (setq pos (point)
881 ignore-labels t) ; Avoid the label check on exit.
882 (setq pos saved
883 ret 'macro
884 ignore-labels t))
885 (throw 'loop nil)) ; 1. Start of macro.
887 ;; Do a round through the automaton if we've just passed a
888 ;; statement boundary or passed a "while"-like token.
889 ((or sym
890 (and (looking-at cond-key)
891 (setq sym (intern (match-string 1)))))
893 (when (and (< pos start) (null stack))
894 (throw 'loop nil)) ; 2. Statement boundary.
896 ;; The PDA state handling.
898 ;; Refer to the description of the PDA in the opening
899 ;; comments. In the following OR form, the first leaf
900 ;; attempts to handles one of the specific actions detailed
901 ;; (e.g., finding token "if" whilst in state `else-boundary').
902 ;; We drop through to the second leaf (which handles common
903 ;; state) if no specific handler is found in the first cond.
904 ;; If a parsing error is detected (e.g. an "else" with no
905 ;; preceding "if"), we throw to the enclosing catch.
907 ;; Note that the (eq state 'else) means
908 ;; "we've just passed an else", NOT "we're looking for an
909 ;; else".
910 (or (cond
911 ((eq state 'else)
912 (if (eq sym 'boundary)
913 (setq state 'else-boundary)
914 (c-bos-report-error)
915 (c-bos-pop-state-and-retry)))
917 ((eq state 'else-boundary)
918 (cond ((eq sym 'if)
919 (c-bos-pop-state (setq ret 'beginning)))
920 ((eq sym 'boundary)
921 (c-bos-report-error)
922 (c-bos-pop-state))))
924 ((eq state 'while)
925 (if (and (eq sym 'boundary)
926 ;; Since this can cause backtracking we do a
927 ;; little more careful analysis to avoid it:
928 ;; If there's a label in front of the while
929 ;; it can't be part of a do-while.
930 (not after-labels-pos))
931 (progn (c-bos-save-pos)
932 (setq state 'while-boundary))
933 (c-bos-pop-state-and-retry))) ; Can't be a do-while
935 ((eq state 'while-boundary)
936 (cond ((eq sym 'do)
937 (c-bos-pop-state (setq ret 'beginning)))
938 ((eq sym 'boundary) ; isn't a do-while
939 (c-bos-restore-pos) ; the position of the while
940 (c-bos-pop-state)))) ; no longer searching for do.
942 ((eq state 'catch)
943 (if (eq sym 'boundary)
944 (setq state 'catch-boundary)
945 (c-bos-report-error)
946 (c-bos-pop-state-and-retry)))
948 ((eq state 'catch-boundary)
949 (cond
950 ((eq sym 'try)
951 (c-bos-pop-state (setq ret 'beginning)))
952 ((eq sym 'catch)
953 (setq state 'catch))
954 ((eq sym 'boundary)
955 (c-bos-report-error)
956 (c-bos-pop-state)))))
958 ;; This is state common. We get here when the previous
959 ;; cond statement found no particular state handler.
960 (cond ((eq sym 'boundary)
961 ;; If we have a boundary at the start
962 ;; position we push a frame to go to the
963 ;; previous statement.
964 (if (>= pos start)
965 (c-bos-push-state)
966 (c-bos-pop-state)))
967 ((eq sym 'else)
968 (c-bos-push-state)
969 (c-bos-save-error-info 'if 'else)
970 (setq state 'else))
971 ((eq sym 'while)
972 ;; Is this a real while, or a do-while?
973 ;; The next `when' triggers unless we are SURE that
974 ;; the `while' is not the tail end of a `do-while'.
975 (when (or (not pptok)
976 (memq (char-after pptok) delims)
977 ;; The following kludge is to prevent
978 ;; infinite recursion when called from
979 ;; c-awk-after-if-for-while-condition-p,
980 ;; or the like.
981 (and (eq (point) start)
982 (c-vsemi-status-unknown-p))
983 (c-at-vsemi-p pptok))
984 ;; Since this can cause backtracking we do a
985 ;; little more careful analysis to avoid it: If
986 ;; the while isn't followed by a (possibly
987 ;; virtual) semicolon it can't be a do-while.
988 (c-bos-push-state)
989 (setq state 'while)))
990 ((memq sym '(catch finally))
991 (c-bos-push-state)
992 (c-bos-save-error-info 'try sym)
993 (setq state 'catch))))
995 (when c-maybe-labelp
996 ;; We're either past a statement boundary or at the
997 ;; start of a statement, so throw away any label data
998 ;; for the previous one.
999 (setq after-labels-pos nil
1000 last-label-pos nil
1001 c-maybe-labelp nil))))
1003 ;; Step to the previous sexp, but not if we crossed a
1004 ;; boundary, since that doesn't consume an sexp.
1005 (if (eq sym 'boundary)
1006 (setq ret 'previous)
1008 ;; HERE IS THE SINGLE PLACE INSIDE THE PDA LOOP WHERE WE MOVE
1009 ;; BACKWARDS THROUGH THE SOURCE.
1011 (c-backward-syntactic-ws)
1012 (let ((before-sws-pos (point))
1013 ;; The end position of the area to search for statement
1014 ;; barriers in this round.
1015 (maybe-after-boundary-pos pos))
1017 ;; Go back over exactly one logical sexp, taking proper
1018 ;; account of macros and escaped EOLs.
1019 (while
1020 (progn
1021 (unless (c-safe (c-backward-sexp) t)
1022 ;; Give up if we hit an unbalanced block. Since the
1023 ;; stack won't be empty the code below will report a
1024 ;; suitable error.
1025 (throw 'loop nil))
1026 (cond
1027 ;; Have we moved into a macro?
1028 ((and (not macro-start)
1029 (c-beginning-of-macro))
1030 ;; Have we crossed a statement boundary? If not,
1031 ;; keep going back until we find one or a "real" sexp.
1032 (and
1033 (save-excursion
1034 (c-end-of-macro)
1035 (not (c-crosses-statement-barrier-p
1036 (point) maybe-after-boundary-pos)))
1037 (setq maybe-after-boundary-pos (point))))
1038 ;; Have we just gone back over an escaped NL? This
1039 ;; doesn't count as a sexp.
1040 ((looking-at "\\\\$")))))
1042 ;; Have we crossed a statement boundary?
1043 (setq boundary-pos
1044 (cond
1045 ;; Are we at a macro beginning?
1046 ((and (not macro-start)
1047 c-opt-cpp-prefix
1048 (looking-at c-opt-cpp-prefix))
1049 (save-excursion
1050 (c-end-of-macro)
1051 (c-crosses-statement-barrier-p
1052 (point) maybe-after-boundary-pos)))
1053 ;; Just gone back over a brace block?
1054 ((and
1055 (eq (char-after) ?{)
1056 (not (c-looking-at-inexpr-block lim nil t))
1057 (save-excursion
1058 (c-backward-token-2 1 t nil)
1059 (not (looking-at "=\\([^=]\\|$\\)"))))
1060 (save-excursion
1061 (c-forward-sexp) (point)))
1062 ;; Just gone back over some paren block?
1063 ((looking-at "\\s(")
1064 (save-excursion
1065 (goto-char (1+ (c-down-list-backward
1066 before-sws-pos)))
1067 (c-crosses-statement-barrier-p
1068 (point) maybe-after-boundary-pos)))
1069 ;; Just gone back over an ordinary symbol of some sort?
1070 (t (c-crosses-statement-barrier-p
1071 (point) maybe-after-boundary-pos))))
1073 (when boundary-pos
1074 (setq pptok ptok
1075 ptok tok
1076 tok boundary-pos
1077 sym 'boundary)
1078 ;; Like a C "continue". Analyze the next sexp.
1079 (throw 'loop t))))
1081 ;; ObjC method def?
1082 (when (and c-opt-method-key
1083 (setq saved (c-in-method-def-p)))
1084 (setq pos saved
1085 ignore-labels t) ; Avoid the label check on exit.
1086 (throw 'loop nil)) ; 3. ObjC method def.
1088 ;; Might we have a bitfield declaration, "<type> <id> : <size>"?
1089 (if c-has-bitfields
1090 (cond
1091 ;; The : <size> and <id> fields?
1092 ((and (numberp c-maybe-labelp)
1093 (not bitfield-size-pos)
1094 (save-excursion
1095 (goto-char (or tok start))
1096 (not (looking-at c-keywords-regexp)))
1097 (not (looking-at c-keywords-regexp))
1098 (not (c-punctuation-in (point) c-maybe-labelp)))
1099 (setq bitfield-size-pos (or tok start)
1100 bitfield-id-pos (point)))
1101 ;; The <type> field?
1102 ((and bitfield-id-pos
1103 (not bitfield-type-pos))
1104 (if (and (looking-at c-symbol-key) ; Can only be an integer type. :-)
1105 (not (looking-at c-not-primitive-type-keywords-regexp))
1106 (not (c-punctuation-in (point) tok)))
1107 (setq bitfield-type-pos (point))
1108 (setq bitfield-size-pos nil
1109 bitfield-id-pos nil)))))
1111 ;; Handle labels.
1112 (unless (eq ignore-labels t)
1113 (when (numberp c-maybe-labelp)
1114 ;; `c-crosses-statement-barrier-p' has found a colon, so we
1115 ;; might be in a label now. Have we got a real label
1116 ;; (including a case label) or something like C++'s "public:"?
1117 ;; A case label might use an expression rather than a token.
1118 (setq after-case:-pos (or tok start))
1119 (if (or (looking-at c-nonlabel-token-key) ; e.g. "while" or "'a'"
1120 ;; Catch C++'s inheritance construct "class foo : bar".
1121 (save-excursion
1122 (and
1123 (c-safe (c-backward-sexp) t)
1124 (looking-at c-nonlabel-token-2-key))))
1125 (setq c-maybe-labelp nil)
1126 (if after-labels-pos ; Have we already encountered a label?
1127 (if (not last-label-pos)
1128 (setq last-label-pos (or tok start)))
1129 (setq after-labels-pos (or tok start)))
1130 (setq c-maybe-labelp t
1131 label-good-pos nil))) ; bogus "label"
1133 (when (and (not label-good-pos) ; i.e. no invalid "label"'s yet
1134 ; been found.
1135 (looking-at c-nonlabel-token-key)) ; e.g. "while :"
1136 ;; We're in a potential label and it's the first
1137 ;; time we've found something that isn't allowed in
1138 ;; one.
1139 (setq label-good-pos (or tok start))))
1141 ;; We've moved back by a sexp, so update the token positions.
1142 (setq sym nil
1143 pptok ptok
1144 ptok tok
1145 tok (point)
1146 pos tok) ; always non-nil
1147 ) ; end of (catch loop ....)
1148 ) ; end of sexp-at-a-time (while ....)
1150 ;; If the stack isn't empty there might be errors to report.
1151 (while stack
1152 (if (and (vectorp saved-pos) (eq (length saved-pos) 3))
1153 (c-bos-report-error))
1154 (setq saved-pos (cdr (car stack))
1155 stack (cdr stack)))
1157 (when (and (eq ret 'same)
1158 (not (memq sym '(boundary ignore nil))))
1159 ;; Need to investigate closer whether we've crossed
1160 ;; between a substatement and its containing statement.
1161 (if (setq saved
1162 (cond ((and (looking-at c-block-stmt-1-2-key)
1163 (eq (char-after ptok) ?\())
1164 pptok)
1165 ((looking-at c-block-stmt-1-key)
1166 ptok)
1167 (t pptok)))
1168 (cond ((> start saved) (setq pos saved))
1169 ((= start saved) (setq ret 'up)))))
1171 (when (and (not ignore-labels)
1172 (eq c-maybe-labelp t)
1173 (not (eq ret 'beginning))
1174 after-labels-pos
1175 (not bitfield-type-pos) ; Bitfields take precedence over labels.
1176 (or (not label-good-pos)
1177 (<= label-good-pos pos)
1178 (progn
1179 (goto-char (if (and last-label-pos
1180 (< last-label-pos start))
1181 last-label-pos
1182 pos))
1183 (looking-at c-label-kwds-regexp))))
1184 ;; We're in a label. Maybe we should step to the statement
1185 ;; after it.
1186 (if (< after-labels-pos start)
1187 (setq pos after-labels-pos)
1188 (setq ret 'label)
1189 (if (and last-label-pos (< last-label-pos start))
1190 ;; Might have jumped over several labels. Go to the last one.
1191 (setq pos last-label-pos)))))
1193 ;; Have we got "case <expression>:"?
1194 (goto-char pos)
1195 (when (and after-case:-pos
1196 (not (eq ret 'beginning))
1197 (looking-at c-case-kwds-regexp))
1198 (if (< after-case:-pos start)
1199 (setq pos after-case:-pos))
1200 (if (eq ret 'same)
1201 (setq ret 'label)))
1203 ;; Skip over the unary operators that can start the statement.
1204 (while (progn
1205 (c-backward-syntactic-ws)
1206 ;; protect AWK post-inc/decrement operators, etc.
1207 (and (not (c-at-vsemi-p (point)))
1208 (/= (skip-chars-backward "-+!*&~@`#") 0)))
1209 (setq pos (point)))
1210 (goto-char pos)
1211 ret)))
1213 (defun c-punctuation-in (from to)
1214 "Return non-nil if there is a non-comment non-macro punctuation character
1215 between FROM and TO. FROM must not be in a string or comment. The returned
1216 value is the position of the first such character."
1217 (save-excursion
1218 (goto-char from)
1219 (let ((pos (point)))
1220 (while (progn (skip-chars-forward c-symbol-chars to)
1221 (c-forward-syntactic-ws to)
1222 (> (point) pos))
1223 (setq pos (point))))
1224 (and (< (point) to) (point))))
1226 (defun c-crosses-statement-barrier-p (from to)
1227 "Return non-nil if buffer positions FROM to TO cross one or more
1228 statement or declaration boundaries. The returned value is actually
1229 the position of the earliest boundary char. FROM must not be within
1230 a string or comment.
1232 The variable `c-maybe-labelp' is set to the position of the first `:' that
1233 might start a label (i.e. not part of `::' and not preceded by `?'). If a
1234 single `?' is found, then `c-maybe-labelp' is cleared.
1236 For AWK, a statement which is terminated by an EOL (not a ; or a }) is
1237 regarded as having a \"virtual semicolon\" immediately after the last token on
1238 the line. If this virtual semicolon is _at_ from, the function recognizes it.
1240 Note that this function might do hidden buffer changes. See the
1241 comment at the start of cc-engine.el for more info."
1242 (let* ((skip-chars
1243 ;; If the current language has CPP macros, insert # into skip-chars.
1244 (if c-opt-cpp-symbol
1245 (concat (substring c-stmt-delim-chars 0 1) ; "^"
1246 c-opt-cpp-symbol ; usually "#"
1247 (substring c-stmt-delim-chars 1)) ; e.g. ";{}?:"
1248 c-stmt-delim-chars))
1249 (non-skip-list
1250 (append (substring skip-chars 1) nil)) ; e.g. (?# ?\; ?{ ?} ?? ?:)
1251 lit-range vsemi-pos)
1252 (save-restriction
1253 (widen)
1254 (save-excursion
1255 (catch 'done
1256 (goto-char from)
1257 (while (progn (skip-chars-forward
1258 skip-chars
1259 (min to (c-point 'bonl)))
1260 (< (point) to))
1261 (cond
1262 ;; Virtual semicolon?
1263 ((and (bolp)
1264 (save-excursion
1265 (progn
1266 (if (setq lit-range (c-literal-limits from)) ; Have we landed in a string/comment?
1267 (goto-char (car lit-range)))
1268 (c-backward-syntactic-ws) ; ? put a limit here, maybe?
1269 (setq vsemi-pos (point))
1270 (c-at-vsemi-p))))
1271 (throw 'done vsemi-pos))
1272 ;; In a string/comment?
1273 ((setq lit-range (c-literal-limits from))
1274 (goto-char (cdr lit-range)))
1275 ((eq (char-after) ?:)
1276 (forward-char)
1277 (if (and (eq (char-after) ?:)
1278 (< (point) to))
1279 ;; Ignore scope operators.
1280 (forward-char)
1281 (setq c-maybe-labelp (1- (point)))))
1282 ((eq (char-after) ??)
1283 ;; A question mark. Can't be a label, so stop
1284 ;; looking for more : and ?.
1285 (setq c-maybe-labelp nil
1286 skip-chars (substring c-stmt-delim-chars 0 -2)))
1287 ;; At a CPP construct or a "#" or "##" operator?
1288 ((and c-opt-cpp-symbol (looking-at c-opt-cpp-symbol))
1289 (if (save-excursion
1290 (skip-chars-backward " \t")
1291 (and (bolp)
1292 (or (bobp)
1293 (not (eq (char-before (1- (point))) ?\\)))))
1294 (c-end-of-macro)
1295 (skip-chars-forward c-opt-cpp-symbol)))
1296 ((memq (char-after) non-skip-list)
1297 (throw 'done (point)))))
1298 ;; In trailing space after an as yet undetected virtual semicolon?
1299 (c-backward-syntactic-ws from)
1300 (when (and (bolp) (not (bobp))) ; Can happen in AWK Mode with an
1301 ; unterminated string/regexp.
1302 (backward-char))
1303 (if (and (< (point) to)
1304 (c-at-vsemi-p))
1305 (point)
1306 nil))))))
1308 (defun c-at-statement-start-p ()
1309 "Return non-nil if the point is at the first token in a statement
1310 or somewhere in the syntactic whitespace before it.
1312 A \"statement\" here is not restricted to those inside code blocks.
1313 Any kind of declaration-like construct that occur outside function
1314 bodies is also considered a \"statement\".
1316 Note that this function might do hidden buffer changes. See the
1317 comment at the start of cc-engine.el for more info."
1319 (save-excursion
1320 (let ((end (point))
1321 c-maybe-labelp)
1322 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1323 (or (bobp)
1324 (eq (char-before) ?})
1325 (and (eq (char-before) ?{)
1326 (not (and c-special-brace-lists
1327 (progn (backward-char)
1328 (c-looking-at-special-brace-list)))))
1329 (c-crosses-statement-barrier-p (point) end)))))
1331 (defun c-at-expression-start-p ()
1332 "Return non-nil if the point is at the first token in an expression or
1333 statement, or somewhere in the syntactic whitespace before it.
1335 An \"expression\" here is a bit different from the normal language
1336 grammar sense: It's any sequence of expression tokens except commas,
1337 unless they are enclosed inside parentheses of some kind. Also, an
1338 expression never continues past an enclosing parenthesis, but it might
1339 contain parenthesis pairs of any sort except braces.
1341 Since expressions never cross statement boundaries, this function also
1342 recognizes statement beginnings, just like `c-at-statement-start-p'.
1344 Note that this function might do hidden buffer changes. See the
1345 comment at the start of cc-engine.el for more info."
1347 (save-excursion
1348 (let ((end (point))
1349 (c-stmt-delim-chars c-stmt-delim-chars-with-comma)
1350 c-maybe-labelp)
1351 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1352 (or (bobp)
1353 (memq (char-before) '(?{ ?}))
1354 (save-excursion (backward-char)
1355 (looking-at "\\s("))
1356 (c-crosses-statement-barrier-p (point) end)))))
1359 ;; A set of functions that covers various idiosyncrasies in
1360 ;; implementations of `forward-comment'.
1362 ;; Note: Some emacsen considers incorrectly that any line comment
1363 ;; ending with a backslash continues to the next line. I can't think
1364 ;; of any way to work around that in a reliable way without changing
1365 ;; the buffer, though. Suggestions welcome. ;) (No, temporarily
1366 ;; changing the syntax for backslash doesn't work since we must treat
1367 ;; escapes in string literals correctly.)
1369 (defun c-forward-single-comment ()
1370 "Move forward past whitespace and the closest following comment, if any.
1371 Return t if a comment was found, nil otherwise. In either case, the
1372 point is moved past the following whitespace. Line continuations,
1373 i.e. a backslashes followed by line breaks, are treated as whitespace.
1374 The line breaks that end line comments are considered to be the
1375 comment enders, so the point will be put on the beginning of the next
1376 line if it moved past a line comment.
1378 This function does not do any hidden buffer changes."
1380 (let ((start (point)))
1381 (when (looking-at "\\([ \t\n\r\f\v]\\|\\\\[\n\r]\\)+")
1382 (goto-char (match-end 0)))
1384 (when (forward-comment 1)
1385 (if (eobp)
1386 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1387 ;; forwards at eob.
1390 ;; Emacs includes the ending newline in a b-style (c++)
1391 ;; comment, but XEmacs doesn't. We depend on the Emacs
1392 ;; behavior (which also is symmetric).
1393 (if (and (eolp) (elt (parse-partial-sexp start (point)) 7))
1394 (condition-case nil (forward-char 1)))
1396 t))))
1398 (defsubst c-forward-comments ()
1399 "Move forward past all following whitespace and comments.
1400 Line continuations, i.e. a backslashes followed by line breaks, are
1401 treated as whitespace.
1403 Note that this function might do hidden buffer changes. See the
1404 comment at the start of cc-engine.el for more info."
1406 (while (or
1407 ;; If forward-comment in at least XEmacs 21 is given a large
1408 ;; positive value, it'll loop all the way through if it hits
1409 ;; eob.
1410 (and (forward-comment 5)
1411 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1412 ;; forwards at eob.
1413 (not (eobp)))
1415 (when (looking-at "\\\\[\n\r]")
1416 (forward-char 2)
1417 t))))
1419 (defun c-backward-single-comment ()
1420 "Move backward past whitespace and the closest preceding comment, if any.
1421 Return t if a comment was found, nil otherwise. In either case, the
1422 point is moved past the preceding whitespace. Line continuations,
1423 i.e. a backslashes followed by line breaks, are treated as whitespace.
1424 The line breaks that end line comments are considered to be the
1425 comment enders, so the point cannot be at the end of the same line to
1426 move over a line comment.
1428 This function does not do any hidden buffer changes."
1430 (let ((start (point)))
1431 ;; When we got newline terminated comments, forward-comment in all
1432 ;; supported emacsen so far will stop at eol of each line not
1433 ;; ending with a comment when moving backwards. This corrects for
1434 ;; that, and at the same time handles line continuations.
1435 (while (progn
1436 (skip-chars-backward " \t\n\r\f\v")
1437 (and (looking-at "[\n\r]")
1438 (eq (char-before) ?\\)))
1439 (backward-char))
1441 (if (bobp)
1442 ;; Some emacsen (e.g. Emacs 19.34) return t when moving
1443 ;; backwards at bob.
1446 ;; Leave point after the closest following newline if we've
1447 ;; backed up over any above, since forward-comment won't move
1448 ;; backward over a line comment if point is at the end of the
1449 ;; same line.
1450 (re-search-forward "\\=\\s *[\n\r]" start t)
1452 (if (if (let (open-paren-in-column-0-is-defun-start) (forward-comment -1))
1453 (if (eolp)
1454 ;; If forward-comment above succeeded and we're at eol
1455 ;; then the newline we moved over above didn't end a
1456 ;; line comment, so we give it another go.
1457 (let (open-paren-in-column-0-is-defun-start)
1458 (forward-comment -1))
1461 ;; Emacs <= 20 and XEmacs move back over the closer of a
1462 ;; block comment that lacks an opener.
1463 (if (looking-at "\\*/")
1464 (progn (forward-char 2) nil)
1465 t)))))
1467 (defsubst c-backward-comments ()
1468 "Move backward past all preceding whitespace and comments.
1469 Line continuations, i.e. a backslashes followed by line breaks, are
1470 treated as whitespace. The line breaks that end line comments are
1471 considered to be the comment enders, so the point cannot be at the end
1472 of the same line to move over a line comment. Unlike
1473 c-backward-syntactic-ws, this function doesn't move back over
1474 preprocessor directives.
1476 Note that this function might do hidden buffer changes. See the
1477 comment at the start of cc-engine.el for more info."
1479 (let ((start (point)))
1480 (while (and
1481 ;; `forward-comment' in some emacsen (e.g. XEmacs 21.4)
1482 ;; return t when moving backwards at bob.
1483 (not (bobp))
1485 (if (let (open-paren-in-column-0-is-defun-start moved-comment)
1486 (while
1487 (and (not (setq moved-comment (forward-comment -1)))
1488 ;; Cope specifically with ^M^J here -
1489 ;; forward-comment sometimes gets stuck after ^Ms,
1490 ;; sometimes after ^M^J.
1492 (when (eq (char-before) ?\r)
1493 (backward-char)
1495 (when (and (eq (char-before) ?\n)
1496 (eq (char-before (1- (point))) ?\r))
1497 (backward-char 2)
1498 t))))
1499 moved-comment)
1500 (if (looking-at "\\*/")
1501 ;; Emacs <= 20 and XEmacs move back over the
1502 ;; closer of a block comment that lacks an opener.
1503 (progn (forward-char 2) nil)
1506 ;; XEmacs treats line continuations as whitespace but
1507 ;; only in the backward direction, which seems a bit
1508 ;; odd. Anyway, this is necessary for Emacs.
1509 (when (and (looking-at "[\n\r]")
1510 (eq (char-before) ?\\)
1511 (< (point) start))
1512 (backward-char)
1513 t))))))
1516 ;; Tools for skipping over syntactic whitespace.
1518 ;; The following functions use text properties to cache searches over
1519 ;; large regions of syntactic whitespace. It works as follows:
1521 ;; o If a syntactic whitespace region contains anything but simple
1522 ;; whitespace (i.e. space, tab and line breaks), the text property
1523 ;; `c-in-sws' is put over it. At places where we have stopped
1524 ;; within that region there's also a `c-is-sws' text property.
1525 ;; That since there typically are nested whitespace inside that
1526 ;; must be handled separately, e.g. whitespace inside a comment or
1527 ;; cpp directive. Thus, from one point with `c-is-sws' it's safe
1528 ;; to jump to another point with that property within the same
1529 ;; `c-in-sws' region. It can be likened to a ladder where
1530 ;; `c-in-sws' marks the bars and `c-is-sws' the rungs.
1532 ;; o The `c-is-sws' property is put on the simple whitespace chars at
1533 ;; a "rung position" and also maybe on the first following char.
1534 ;; As many characters as can be conveniently found in this range
1535 ;; are marked, but no assumption can be made that the whole range
1536 ;; is marked (it could be clobbered by later changes, for
1537 ;; instance).
1539 ;; Note that some part of the beginning of a sequence of simple
1540 ;; whitespace might be part of the end of a preceding line comment
1541 ;; or cpp directive and must not be considered part of the "rung".
1542 ;; Such whitespace is some amount of horizontal whitespace followed
1543 ;; by a newline. In the case of cpp directives it could also be
1544 ;; two newlines with horizontal whitespace between them.
1546 ;; The reason to include the first following char is to cope with
1547 ;; "rung positions" that doesn't have any ordinary whitespace. If
1548 ;; `c-is-sws' is put on a token character it does not have
1549 ;; `c-in-sws' set simultaneously. That's the only case when that
1550 ;; can occur, and the reason for not extending the `c-in-sws'
1551 ;; region to cover it is that the `c-in-sws' region could then be
1552 ;; accidentally merged with a following one if the token is only
1553 ;; one character long.
1555 ;; o On buffer changes the `c-in-sws' and `c-is-sws' properties are
1556 ;; removed in the changed region. If the change was inside
1557 ;; syntactic whitespace that means that the "ladder" is broken, but
1558 ;; a later call to `c-forward-sws' or `c-backward-sws' will use the
1559 ;; parts on either side and use an ordinary search only to "repair"
1560 ;; the gap.
1562 ;; Special care needs to be taken if a region is removed: If there
1563 ;; are `c-in-sws' on both sides of it which do not connect inside
1564 ;; the region then they can't be joined. If e.g. a marked macro is
1565 ;; broken, syntactic whitespace inside the new text might be
1566 ;; marked. If those marks would become connected with the old
1567 ;; `c-in-sws' range around the macro then we could get a ladder
1568 ;; with one end outside the macro and the other at some whitespace
1569 ;; within it.
1571 ;; The main motivation for this system is to increase the speed in
1572 ;; skipping over the large whitespace regions that can occur at the
1573 ;; top level in e.g. header files that contain a lot of comments and
1574 ;; cpp directives. For small comments inside code it's probably
1575 ;; slower than using `forward-comment' straightforwardly, but speed is
1576 ;; not a significant factor there anyway.
1578 ; (defface c-debug-is-sws-face
1579 ; '((t (:background "GreenYellow")))
1580 ; "Debug face to mark the `c-is-sws' property.")
1581 ; (defface c-debug-in-sws-face
1582 ; '((t (:underline t)))
1583 ; "Debug face to mark the `c-in-sws' property.")
1585 ; (defun c-debug-put-sws-faces ()
1586 ; ;; Put the sws debug faces on all the `c-is-sws' and `c-in-sws'
1587 ; ;; properties in the buffer.
1588 ; (interactive)
1589 ; (save-excursion
1590 ; (c-save-buffer-state (in-face)
1591 ; (goto-char (point-min))
1592 ; (setq in-face (if (get-text-property (point) 'c-is-sws)
1593 ; (point)))
1594 ; (while (progn
1595 ; (goto-char (next-single-property-change
1596 ; (point) 'c-is-sws nil (point-max)))
1597 ; (if in-face
1598 ; (progn
1599 ; (c-debug-add-face in-face (point) 'c-debug-is-sws-face)
1600 ; (setq in-face nil))
1601 ; (setq in-face (point)))
1602 ; (not (eobp))))
1603 ; (goto-char (point-min))
1604 ; (setq in-face (if (get-text-property (point) 'c-in-sws)
1605 ; (point)))
1606 ; (while (progn
1607 ; (goto-char (next-single-property-change
1608 ; (point) 'c-in-sws nil (point-max)))
1609 ; (if in-face
1610 ; (progn
1611 ; (c-debug-add-face in-face (point) 'c-debug-in-sws-face)
1612 ; (setq in-face nil))
1613 ; (setq in-face (point)))
1614 ; (not (eobp)))))))
1616 (defmacro c-debug-sws-msg (&rest args)
1617 ;;`(message ,@args)
1620 (defmacro c-put-is-sws (beg end)
1621 ;; This macro does a hidden buffer change.
1622 `(let ((beg ,beg) (end ,end))
1623 (put-text-property beg end 'c-is-sws t)
1624 ,@(when (facep 'c-debug-is-sws-face)
1625 `((c-debug-add-face beg end 'c-debug-is-sws-face)))))
1627 (defmacro c-put-in-sws (beg end)
1628 ;; This macro does a hidden buffer change.
1629 `(let ((beg ,beg) (end ,end))
1630 (put-text-property beg end 'c-in-sws t)
1631 ,@(when (facep 'c-debug-is-sws-face)
1632 `((c-debug-add-face beg end 'c-debug-in-sws-face)))))
1634 (defmacro c-remove-is-sws (beg end)
1635 ;; This macro does a hidden buffer change.
1636 `(let ((beg ,beg) (end ,end))
1637 (remove-text-properties beg end '(c-is-sws nil))
1638 ,@(when (facep 'c-debug-is-sws-face)
1639 `((c-debug-remove-face beg end 'c-debug-is-sws-face)))))
1641 (defmacro c-remove-in-sws (beg end)
1642 ;; This macro does a hidden buffer change.
1643 `(let ((beg ,beg) (end ,end))
1644 (remove-text-properties beg end '(c-in-sws nil))
1645 ,@(when (facep 'c-debug-is-sws-face)
1646 `((c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1648 (defmacro c-remove-is-and-in-sws (beg end)
1649 ;; This macro does a hidden buffer change.
1650 `(let ((beg ,beg) (end ,end))
1651 (remove-text-properties beg end '(c-is-sws nil c-in-sws nil))
1652 ,@(when (facep 'c-debug-is-sws-face)
1653 `((c-debug-remove-face beg end 'c-debug-is-sws-face)
1654 (c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1656 (defsubst c-invalidate-sws-region-after (beg end)
1657 ;; Called from `after-change-functions'. Note that if
1658 ;; `c-forward-sws' or `c-backward-sws' are used outside
1659 ;; `c-save-buffer-state' or similar then this will remove the cache
1660 ;; properties right after they're added.
1662 ;; This function does hidden buffer changes.
1664 (save-excursion
1665 ;; Adjust the end to remove the properties in any following simple
1666 ;; ws up to and including the next line break, if there is any
1667 ;; after the changed region. This is necessary e.g. when a rung
1668 ;; marked empty line is converted to a line comment by inserting
1669 ;; "//" before the line break. In that case the line break would
1670 ;; keep the rung mark which could make a later `c-backward-sws'
1671 ;; move into the line comment instead of over it.
1672 (goto-char end)
1673 (skip-chars-forward " \t\f\v")
1674 (when (and (eolp) (not (eobp)))
1675 (setq end (1+ (point)))))
1677 (when (and (= beg end)
1678 (get-text-property beg 'c-in-sws)
1679 (> beg (point-min))
1680 (get-text-property (1- beg) 'c-in-sws))
1681 ;; Ensure that an `c-in-sws' range gets broken. Note that it isn't
1682 ;; safe to keep a range that was continuous before the change. E.g:
1684 ;; #define foo
1685 ;; \
1686 ;; bar
1688 ;; There can be a "ladder" between "#" and "b". Now, if the newline
1689 ;; after "foo" is removed then "bar" will become part of the cpp
1690 ;; directive instead of a syntactically relevant token. In that
1691 ;; case there's no longer syntactic ws from "#" to "b".
1692 (setq beg (1- beg)))
1694 (c-debug-sws-msg "c-invalidate-sws-region-after [%s..%s]" beg end)
1695 (c-remove-is-and-in-sws beg end))
1697 (defun c-forward-sws ()
1698 ;; Used by `c-forward-syntactic-ws' to implement the unbounded search.
1700 ;; This function might do hidden buffer changes.
1702 (let (;; `rung-pos' is set to a position as early as possible in the
1703 ;; unmarked part of the simple ws region.
1704 (rung-pos (point)) next-rung-pos rung-end-pos last-put-in-sws-pos
1705 rung-is-marked next-rung-is-marked simple-ws-end
1706 ;; `safe-start' is set when it's safe to cache the start position.
1707 ;; It's not set if we've initially skipped over comments and line
1708 ;; continuations since we might have gone out through the end of a
1709 ;; macro then. This provision makes `c-forward-sws' not populate the
1710 ;; cache in the majority of cases, but otoh is `c-backward-sws' by far
1711 ;; more common.
1712 safe-start)
1714 ;; Skip simple ws and do a quick check on the following character to see
1715 ;; if it's anything that can't start syntactic ws, so we can bail out
1716 ;; early in the majority of cases when there just are a few ws chars.
1717 (skip-chars-forward " \t\n\r\f\v")
1718 (when (looking-at c-syntactic-ws-start)
1720 (setq rung-end-pos (min (1+ (point)) (point-max)))
1721 (if (setq rung-is-marked (text-property-any rung-pos rung-end-pos
1722 'c-is-sws t))
1723 ;; Find the last rung position to avoid setting properties in all
1724 ;; the cases when the marked rung is complete.
1725 ;; (`next-single-property-change' is certain to move at least one
1726 ;; step forward.)
1727 (setq rung-pos (1- (c-next-single-property-change
1728 rung-is-marked 'c-is-sws nil rung-end-pos)))
1729 ;; Got no marked rung here. Since the simple ws might have started
1730 ;; inside a line comment or cpp directive we must set `rung-pos' as
1731 ;; high as possible.
1732 (setq rung-pos (point)))
1734 (with-silent-modifications
1735 (while
1736 (progn
1737 (while
1738 (when (and rung-is-marked
1739 (get-text-property (point) 'c-in-sws))
1741 ;; The following search is the main reason that `c-in-sws'
1742 ;; and `c-is-sws' aren't combined to one property.
1743 (goto-char (c-next-single-property-change
1744 (point) 'c-in-sws nil (point-max)))
1745 (unless (get-text-property (point) 'c-is-sws)
1746 ;; If the `c-in-sws' region extended past the last
1747 ;; `c-is-sws' char we have to go back a bit.
1748 (or (get-text-property (1- (point)) 'c-is-sws)
1749 (goto-char (previous-single-property-change
1750 (point) 'c-is-sws)))
1751 (backward-char))
1753 (c-debug-sws-msg
1754 "c-forward-sws cached move %s -> %s (max %s)"
1755 rung-pos (point) (point-max))
1757 (setq rung-pos (point))
1758 (and (> (skip-chars-forward " \t\n\r\f\v") 0)
1759 (not (eobp))))
1761 ;; We'll loop here if there is simple ws after the last rung.
1762 ;; That means that there's been some change in it and it's
1763 ;; possible that we've stepped into another ladder, so extend
1764 ;; the previous one to join with it if there is one, and try to
1765 ;; use the cache again.
1766 (c-debug-sws-msg
1767 "c-forward-sws extending rung with [%s..%s] (max %s)"
1768 (1+ rung-pos) (1+ (point)) (point-max))
1769 (unless (get-text-property (point) 'c-is-sws)
1770 ;; Remove any `c-in-sws' property from the last char of
1771 ;; the rung before we mark it with `c-is-sws', so that we
1772 ;; won't connect with the remains of a broken "ladder".
1773 (c-remove-in-sws (point) (1+ (point))))
1774 (c-put-is-sws (1+ rung-pos)
1775 (1+ (point)))
1776 (c-put-in-sws rung-pos
1777 (setq rung-pos (point)
1778 last-put-in-sws-pos rung-pos)))
1780 (setq simple-ws-end (point))
1781 (c-forward-comments)
1783 (cond
1784 ((/= (point) simple-ws-end)
1785 ;; Skipped over comments. Don't cache at eob in case the buffer
1786 ;; is narrowed.
1787 (not (eobp)))
1789 ((save-excursion
1790 (and c-opt-cpp-prefix
1791 (looking-at c-opt-cpp-start)
1792 (progn (skip-chars-backward " \t")
1793 (bolp))
1794 (or (bobp)
1795 (progn (backward-char)
1796 (not (eq (char-before) ?\\))))))
1797 ;; Skip a preprocessor directive.
1798 (end-of-line)
1799 (while (and (eq (char-before) ?\\)
1800 (= (forward-line 1) 0))
1801 (end-of-line))
1802 (forward-line 1)
1803 (setq safe-start t)
1804 ;; Don't cache at eob in case the buffer is narrowed.
1805 (not (eobp)))))
1807 ;; We've searched over a piece of non-white syntactic ws. See if this
1808 ;; can be cached.
1809 (setq next-rung-pos (point))
1810 (skip-chars-forward " \t\n\r\f\v")
1811 (setq rung-end-pos (min (1+ (point)) (point-max)))
1813 (if (or
1814 ;; Cache if we haven't skipped comments only, and if we started
1815 ;; either from a marked rung or from a completely uncached
1816 ;; position.
1817 (and safe-start
1818 (or rung-is-marked
1819 (not (get-text-property simple-ws-end 'c-in-sws))))
1821 ;; See if there's a marked rung in the encountered simple ws. If
1822 ;; so then we can cache, unless `safe-start' is nil. Even then
1823 ;; we need to do this to check if the cache can be used for the
1824 ;; next step.
1825 (and (setq next-rung-is-marked
1826 (text-property-any next-rung-pos rung-end-pos
1827 'c-is-sws t))
1828 safe-start))
1830 (progn
1831 (c-debug-sws-msg
1832 "c-forward-sws caching [%s..%s] - [%s..%s] (max %s)"
1833 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1834 (point-max))
1836 ;; Remove the properties for any nested ws that might be cached.
1837 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
1838 ;; anyway.
1839 (c-remove-is-sws (1+ simple-ws-end) next-rung-pos)
1840 (unless (and rung-is-marked (= rung-pos simple-ws-end))
1841 (c-put-is-sws rung-pos
1842 (1+ simple-ws-end))
1843 (setq rung-is-marked t))
1844 (c-put-in-sws rung-pos
1845 (setq rung-pos (point)
1846 last-put-in-sws-pos rung-pos))
1847 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
1848 ;; Remove any `c-in-sws' property from the last char of
1849 ;; the rung before we mark it with `c-is-sws', so that we
1850 ;; won't connect with the remains of a broken "ladder".
1851 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
1852 (c-put-is-sws next-rung-pos
1853 rung-end-pos))
1855 (c-debug-sws-msg
1856 "c-forward-sws not caching [%s..%s] - [%s..%s] (max %s)"
1857 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1858 (point-max))
1860 ;; Set `rung-pos' for the next rung. It's the same thing here as
1861 ;; initially, except that the rung position is set as early as
1862 ;; possible since we can't be in the ending ws of a line comment or
1863 ;; cpp directive now.
1864 (if (setq rung-is-marked next-rung-is-marked)
1865 (setq rung-pos (1- (c-next-single-property-change
1866 rung-is-marked 'c-is-sws nil rung-end-pos)))
1867 (setq rung-pos next-rung-pos))
1868 (setq safe-start t)))
1870 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
1871 ;; another one after the point (which might occur when editing inside a
1872 ;; comment or macro).
1873 (when (eq last-put-in-sws-pos (point))
1874 (cond ((< last-put-in-sws-pos (point-max))
1875 (c-debug-sws-msg
1876 "c-forward-sws clearing at %s for cache separation"
1877 last-put-in-sws-pos)
1878 (c-remove-in-sws last-put-in-sws-pos
1879 (1+ last-put-in-sws-pos)))
1881 ;; If at eob we have to clear the last character before the end
1882 ;; instead since the buffer might be narrowed and there might
1883 ;; be a `c-in-sws' after (point-max). In this case it's
1884 ;; necessary to clear both properties.
1885 (c-debug-sws-msg
1886 "c-forward-sws clearing thoroughly at %s for cache separation"
1887 (1- last-put-in-sws-pos))
1888 (c-remove-is-and-in-sws (1- last-put-in-sws-pos)
1889 last-put-in-sws-pos))))
1890 ))))
1892 (defun c-backward-sws ()
1893 ;; Used by `c-backward-syntactic-ws' to implement the unbounded search.
1895 ;; This function might do hidden buffer changes.
1897 (let (;; `rung-pos' is set to a position as late as possible in the unmarked
1898 ;; part of the simple ws region.
1899 (rung-pos (point)) next-rung-pos last-put-in-sws-pos
1900 rung-is-marked simple-ws-beg cmt-skip-pos)
1902 ;; Skip simple horizontal ws and do a quick check on the preceding
1903 ;; character to see if it's anything that can't end syntactic ws, so we can
1904 ;; bail out early in the majority of cases when there just are a few ws
1905 ;; chars. Newlines are complicated in the backward direction, so we can't
1906 ;; skip over them.
1907 (skip-chars-backward " \t\f")
1908 (when (and (not (bobp))
1909 (save-excursion
1910 (backward-char)
1911 (looking-at c-syntactic-ws-end)))
1913 ;; Try to find a rung position in the simple ws preceding point, so that
1914 ;; we can get a cache hit even if the last bit of the simple ws has
1915 ;; changed recently.
1916 (setq simple-ws-beg (point))
1917 (skip-chars-backward " \t\n\r\f\v")
1918 (if (setq rung-is-marked (text-property-any
1919 (point) (min (1+ rung-pos) (point-max))
1920 'c-is-sws t))
1921 ;; `rung-pos' will be the earliest marked position, which means that
1922 ;; there might be later unmarked parts in the simple ws region.
1923 ;; It's not worth the effort to fix that; the last part of the
1924 ;; simple ws is also typically edited often, so it could be wasted.
1925 (goto-char (setq rung-pos rung-is-marked))
1926 (goto-char simple-ws-beg))
1928 (with-silent-modifications
1929 (while
1930 (progn
1931 (while
1932 (when (and rung-is-marked
1933 (not (bobp))
1934 (get-text-property (1- (point)) 'c-in-sws))
1936 ;; The following search is the main reason that `c-in-sws'
1937 ;; and `c-is-sws' aren't combined to one property.
1938 (goto-char (previous-single-property-change
1939 (point) 'c-in-sws nil (point-min)))
1940 (unless (get-text-property (point) 'c-is-sws)
1941 ;; If the `c-in-sws' region extended past the first
1942 ;; `c-is-sws' char we have to go forward a bit.
1943 (goto-char (c-next-single-property-change
1944 (point) 'c-is-sws)))
1946 (c-debug-sws-msg
1947 "c-backward-sws cached move %s <- %s (min %s)"
1948 (point) rung-pos (point-min))
1950 (setq rung-pos (point))
1951 (if (and (< (min (skip-chars-backward " \t\f\v")
1952 (progn
1953 (setq simple-ws-beg (point))
1954 (skip-chars-backward " \t\n\r\f\v")))
1956 (setq rung-is-marked
1957 (text-property-any (point) rung-pos
1958 'c-is-sws t)))
1960 (goto-char simple-ws-beg)
1961 nil))
1963 ;; We'll loop here if there is simple ws before the first rung.
1964 ;; That means that there's been some change in it and it's
1965 ;; possible that we've stepped into another ladder, so extend
1966 ;; the previous one to join with it if there is one, and try to
1967 ;; use the cache again.
1968 (c-debug-sws-msg
1969 "c-backward-sws extending rung with [%s..%s] (min %s)"
1970 rung-is-marked rung-pos (point-min))
1971 (unless (get-text-property (1- rung-pos) 'c-is-sws)
1972 ;; Remove any `c-in-sws' property from the last char of
1973 ;; the rung before we mark it with `c-is-sws', so that we
1974 ;; won't connect with the remains of a broken "ladder".
1975 (c-remove-in-sws (1- rung-pos) rung-pos))
1976 (c-put-is-sws rung-is-marked
1977 rung-pos)
1978 (c-put-in-sws rung-is-marked
1979 (1- rung-pos))
1980 (setq rung-pos rung-is-marked
1981 last-put-in-sws-pos rung-pos))
1983 (c-backward-comments)
1984 (setq cmt-skip-pos (point))
1986 (cond
1987 ((and c-opt-cpp-prefix
1988 (/= cmt-skip-pos simple-ws-beg)
1989 (c-beginning-of-macro))
1990 ;; Inside a cpp directive. See if it should be skipped over.
1991 (let ((cpp-beg (point)))
1993 ;; Move back over all line continuations in the region skipped
1994 ;; over by `c-backward-comments'. If we go past it then we
1995 ;; started inside the cpp directive.
1996 (goto-char simple-ws-beg)
1997 (beginning-of-line)
1998 (while (and (> (point) cmt-skip-pos)
1999 (progn (backward-char)
2000 (eq (char-before) ?\\)))
2001 (beginning-of-line))
2003 (if (< (point) cmt-skip-pos)
2004 ;; Don't move past the cpp directive if we began inside
2005 ;; it. Note that the position at the end of the last line
2006 ;; of the macro is also considered to be within it.
2007 (progn (goto-char cmt-skip-pos)
2008 nil)
2010 ;; It's worthwhile to spend a little bit of effort on finding
2011 ;; the end of the macro, to get a good `simple-ws-beg'
2012 ;; position for the cache. Note that `c-backward-comments'
2013 ;; could have stepped over some comments before going into
2014 ;; the macro, and then `simple-ws-beg' must be kept on the
2015 ;; same side of those comments.
2016 (goto-char simple-ws-beg)
2017 (skip-chars-backward " \t\n\r\f\v")
2018 (if (eq (char-before) ?\\)
2019 (forward-char))
2020 (forward-line 1)
2021 (if (< (point) simple-ws-beg)
2022 ;; Might happen if comments after the macro were skipped
2023 ;; over.
2024 (setq simple-ws-beg (point)))
2026 (goto-char cpp-beg)
2027 t)))
2029 ((/= (save-excursion
2030 (skip-chars-forward " \t\n\r\f\v" simple-ws-beg)
2031 (setq next-rung-pos (point)))
2032 simple-ws-beg)
2033 ;; Skipped over comments. Must put point at the end of
2034 ;; the simple ws at point since we might be after a line
2035 ;; comment or cpp directive that's been partially
2036 ;; narrowed out, and we can't risk marking the simple ws
2037 ;; at the end of it.
2038 (goto-char next-rung-pos)
2039 t)))
2041 ;; We've searched over a piece of non-white syntactic ws. See if this
2042 ;; can be cached.
2043 (setq next-rung-pos (point))
2044 (skip-chars-backward " \t\f\v")
2046 (if (or
2047 ;; Cache if we started either from a marked rung or from a
2048 ;; completely uncached position.
2049 rung-is-marked
2050 (not (get-text-property (1- simple-ws-beg) 'c-in-sws))
2052 ;; Cache if there's a marked rung in the encountered simple ws.
2053 (save-excursion
2054 (skip-chars-backward " \t\n\r\f\v")
2055 (text-property-any (point) (min (1+ next-rung-pos) (point-max))
2056 'c-is-sws t)))
2058 (progn
2059 (c-debug-sws-msg
2060 "c-backward-sws caching [%s..%s] - [%s..%s] (min %s)"
2061 (point) (1+ next-rung-pos)
2062 simple-ws-beg (min (1+ rung-pos) (point-max))
2063 (point-min))
2065 ;; Remove the properties for any nested ws that might be cached.
2066 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
2067 ;; anyway.
2068 (c-remove-is-sws (1+ next-rung-pos) simple-ws-beg)
2069 (unless (and rung-is-marked (= simple-ws-beg rung-pos))
2070 (let ((rung-end-pos (min (1+ rung-pos) (point-max))))
2071 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
2072 ;; Remove any `c-in-sws' property from the last char of
2073 ;; the rung before we mark it with `c-is-sws', so that we
2074 ;; won't connect with the remains of a broken "ladder".
2075 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
2076 (c-put-is-sws simple-ws-beg
2077 rung-end-pos)
2078 (setq rung-is-marked t)))
2079 (c-put-in-sws (setq simple-ws-beg (point)
2080 last-put-in-sws-pos simple-ws-beg)
2081 rung-pos)
2082 (c-put-is-sws (setq rung-pos simple-ws-beg)
2083 (1+ next-rung-pos)))
2085 (c-debug-sws-msg
2086 "c-backward-sws not caching [%s..%s] - [%s..%s] (min %s)"
2087 (point) (1+ next-rung-pos)
2088 simple-ws-beg (min (1+ rung-pos) (point-max))
2089 (point-min))
2090 (setq rung-pos next-rung-pos
2091 simple-ws-beg (point))
2094 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
2095 ;; another one before the point (which might occur when editing inside a
2096 ;; comment or macro).
2097 (when (eq last-put-in-sws-pos (point))
2098 (cond ((< (point-min) last-put-in-sws-pos)
2099 (c-debug-sws-msg
2100 "c-backward-sws clearing at %s for cache separation"
2101 (1- last-put-in-sws-pos))
2102 (c-remove-in-sws (1- last-put-in-sws-pos)
2103 last-put-in-sws-pos))
2104 ((> (point-min) 1)
2105 ;; If at bob and the buffer is narrowed, we have to clear the
2106 ;; character we're standing on instead since there might be a
2107 ;; `c-in-sws' before (point-min). In this case it's necessary
2108 ;; to clear both properties.
2109 (c-debug-sws-msg
2110 "c-backward-sws clearing thoroughly at %s for cache separation"
2111 last-put-in-sws-pos)
2112 (c-remove-is-and-in-sws last-put-in-sws-pos
2113 (1+ last-put-in-sws-pos)))))
2114 ))))
2117 ;; Other whitespace tools
2118 (defun c-partial-ws-p (beg end)
2119 ;; Is the region (beg end) WS, and is there WS (or BOB/EOB) next to the
2120 ;; region? This is a "heuristic" function. .....
2122 ;; The motivation for the second bit is to check whether removing this
2123 ;; region would coalesce two symbols.
2125 ;; FIXME!!! This function doesn't check virtual semicolons in any way. Be
2126 ;; careful about using this function for, e.g. AWK. (2007/3/7)
2127 (save-excursion
2128 (let ((end+1 (min (1+ end) (point-max))))
2129 (or (progn (goto-char (max (point-min) (1- beg)))
2130 (c-skip-ws-forward end)
2131 (eq (point) end))
2132 (progn (goto-char beg)
2133 (c-skip-ws-forward end+1)
2134 (eq (point) end+1))))))
2136 ;; A system for finding noteworthy parens before the point.
2138 (defconst c-state-cache-too-far 5000)
2139 ;; A maximum comfortable scanning distance, e.g. between
2140 ;; `c-state-cache-good-pos' and "HERE" (where we call c-parse-state). When
2141 ;; this distance is exceeded, we take "emergency measures", e.g. by clearing
2142 ;; the cache and starting again from point-min or a beginning of defun. This
2143 ;; value can be tuned for efficiency or set to a lower value for testing.
2145 (defvar c-state-cache nil)
2146 (make-variable-buffer-local 'c-state-cache)
2147 ;; The state cache used by `c-parse-state' to cut down the amount of
2148 ;; searching. It's the result from some earlier `c-parse-state' call. See
2149 ;; `c-parse-state''s doc string for details of its structure.
2151 ;; The use of the cached info is more effective if the next
2152 ;; `c-parse-state' call is on a line close by the one the cached state
2153 ;; was made at; the cache can actually slow down a little if the
2154 ;; cached state was made very far back in the buffer. The cache is
2155 ;; most effective if `c-parse-state' is used on each line while moving
2156 ;; forward.
2158 (defvar c-state-cache-good-pos 1)
2159 (make-variable-buffer-local 'c-state-cache-good-pos)
2160 ;; This is a position where `c-state-cache' is known to be correct, or
2161 ;; nil (see below). It's a position inside one of the recorded unclosed
2162 ;; parens or the top level, but not further nested inside any literal or
2163 ;; subparen that is closed before the last recorded position.
2165 ;; The exact position is chosen to try to be close to yet earlier than
2166 ;; the position where `c-state-cache' will be called next. Right now
2167 ;; the heuristic is to set it to the position after the last found
2168 ;; closing paren (of any type) before the line on which
2169 ;; `c-parse-state' was called. That is chosen primarily to work well
2170 ;; with refontification of the current line.
2172 ;; 2009-07-28: When `c-state-point-min' and the last position where
2173 ;; `c-parse-state' or for which `c-invalidate-state-cache' was called, are
2174 ;; both in the same literal, there is no such "good position", and
2175 ;; c-state-cache-good-pos is then nil. This is the ONLY circumstance in which
2176 ;; it can be nil. In this case, `c-state-point-min-literal' will be non-nil.
2178 ;; 2009-06-12: In a brace desert, c-state-cache-good-pos may also be in
2179 ;; the middle of the desert, as long as it is not within a brace pair
2180 ;; recorded in `c-state-cache' or a paren/bracket pair.
2182 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2183 ;; We maintain a simple cache of positions which aren't in a literal, so as to
2184 ;; speed up testing for non-literality.
2185 (defconst c-state-nonlit-pos-interval 3000)
2186 ;; The approximate interval between entries in `c-state-nonlit-pos-cache'.
2188 (defvar c-state-nonlit-pos-cache nil)
2189 (make-variable-buffer-local 'c-state-nonlit-pos-cache)
2190 ;; A list of buffer positions which are known not to be in a literal or a cpp
2191 ;; construct. This is ordered with higher positions at the front of the list.
2192 ;; Only those which are less than `c-state-nonlit-pos-cache-limit' are valid.
2194 (defvar c-state-nonlit-pos-cache-limit 1)
2195 (make-variable-buffer-local 'c-state-nonlit-pos-cache-limit)
2196 ;; An upper limit on valid entries in `c-state-nonlit-pos-cache'. This is
2197 ;; reduced by buffer changes, and increased by invocations of
2198 ;; `c-state-literal-at'.
2200 (defvar c-state-semi-nonlit-pos-cache nil)
2201 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache)
2202 ;; A list of buffer positions which are known not to be in a literal. This is
2203 ;; ordered with higher positions at the front of the list. Only those which
2204 ;; are less than `c-state-semi-nonlit-pos-cache-limit' are valid.
2206 (defvar c-state-semi-nonlit-pos-cache-limit 1)
2207 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache-limit)
2208 ;; An upper limit on valid entries in `c-state-semi-nonlit-pos-cache'. This is
2209 ;; reduced by buffer changes, and increased by invocations of
2210 ;; `c-state-literal-at'. FIXME!!!
2212 (defsubst c-state-pp-to-literal (from to &optional not-in-delimiter)
2213 ;; Do a parse-partial-sexp from FROM to TO, returning either
2214 ;; (STATE TYPE (BEG . END)) if TO is in a literal; or
2215 ;; (STATE) otherwise,
2216 ;; where STATE is the parsing state at TO, TYPE is the type of the literal
2217 ;; (one of 'c, 'c++, 'string) and (BEG . END) is the boundaries of the literal.
2219 ;; Unless NOT-IN-DELIMITER is non-nil, when TO is inside a two-character
2220 ;; comment opener, this is recognized as being in a comment literal.
2222 ;; Only elements 3 (in a string), 4 (in a comment), 5 (following a quote),
2223 ;; 7 (comment type) and 8 (start of comment/string) (and possibly 9) of
2224 ;; STATE are valid.
2225 (save-excursion
2226 (let ((s (parse-partial-sexp from to))
2227 ty co-st)
2228 (cond
2229 ((or (nth 3 s) (nth 4 s)) ; in a string or comment
2230 (setq ty (cond
2231 ((nth 3 s) 'string)
2232 ((nth 7 s) 'c++)
2233 (t 'c)))
2234 (parse-partial-sexp (point) (point-max)
2235 nil ; TARGETDEPTH
2236 nil ; STOPBEFORE
2237 s ; OLDSTATE
2238 'syntax-table) ; stop at end of literal
2239 `(,s ,ty (,(nth 8 s) . ,(point))))
2241 ((and (not not-in-delimiter) ; inside a comment starter
2242 (not (bobp))
2243 (progn (backward-char)
2244 (and (not (looking-at "\\s!"))
2245 (looking-at c-comment-start-regexp))))
2246 (setq ty (if (looking-at c-block-comment-start-regexp) 'c 'c++)
2247 co-st (point))
2248 (forward-comment 1)
2249 `(,s ,ty (,co-st . ,(point))))
2251 (t `(,s))))))
2253 (defun c-state-safe-place (here)
2254 ;; Return a buffer position before HERE which is "safe", i.e. outside any
2255 ;; string, comment, or macro.
2257 ;; NOTE: This function manipulates `c-state-nonlit-pos-cache'. This cache
2258 ;; MAY NOT contain any positions within macros, since macros are frequently
2259 ;; turned into comments by use of the `c-cpp-delimiter' category properties.
2260 ;; We cannot rely on this mechanism whilst determining a cache pos since
2261 ;; this function is also called from outwith `c-parse-state'.
2262 (save-restriction
2263 (widen)
2264 (save-excursion
2265 (let ((c c-state-nonlit-pos-cache)
2266 pos npos high-pos lit macro-beg macro-end)
2267 ;; Trim the cache to take account of buffer changes.
2268 (while (and c (> (car c) c-state-nonlit-pos-cache-limit))
2269 (setq c (cdr c)))
2270 (setq c-state-nonlit-pos-cache c)
2272 (while (and c (> (car c) here))
2273 (setq high-pos (car c))
2274 (setq c (cdr c)))
2275 (setq pos (or (car c) (point-min)))
2277 (unless high-pos
2278 (while
2279 ;; Add an element to `c-state-nonlit-pos-cache' each iteration.
2280 (and
2281 (setq npos
2282 (when (<= (+ pos c-state-nonlit-pos-interval) here)
2283 (+ pos c-state-nonlit-pos-interval)))
2285 ;; Test for being in a literal. If so, go to after it.
2286 (progn
2287 (setq lit (car (cddr (c-state-pp-to-literal pos npos))))
2288 (or (null lit)
2289 (prog1 (<= (cdr lit) here)
2290 (setq npos (cdr lit)))))
2292 ;; Test for being in a macro. If so, go to after it.
2293 (progn
2294 (goto-char npos)
2295 (setq macro-beg
2296 (and (c-beginning-of-macro) (/= (point) npos) (point)))
2297 (when macro-beg
2298 (c-syntactic-end-of-macro)
2299 (or (eobp) (forward-char))
2300 (setq macro-end (point)))
2301 (or (null macro-beg)
2302 (prog1 (<= macro-end here)
2303 (setq npos macro-end)))))
2305 (setq pos npos)
2306 (setq c-state-nonlit-pos-cache (cons pos c-state-nonlit-pos-cache)))
2307 ;; Add one extra element above HERE so as to to avoid the previous
2308 ;; expensive calculation when the next call is close to the current
2309 ;; one. This is especially useful when inside a large macro.
2310 (when npos
2311 (setq c-state-nonlit-pos-cache
2312 (cons npos c-state-nonlit-pos-cache))))
2314 (if (> pos c-state-nonlit-pos-cache-limit)
2315 (setq c-state-nonlit-pos-cache-limit pos))
2316 pos))))
2318 (defun c-state-semi-safe-place (here)
2319 ;; Return a buffer position before HERE which is "safe", i.e. outside any
2320 ;; string or comment. It may be in a macro.
2321 (save-restriction
2322 (widen)
2323 (save-excursion
2324 (let ((c c-state-semi-nonlit-pos-cache)
2325 pos npos high-pos lit macro-beg macro-end)
2326 ;; Trim the cache to take account of buffer changes.
2327 (while (and c (> (car c) c-state-semi-nonlit-pos-cache-limit))
2328 (setq c (cdr c)))
2329 (setq c-state-semi-nonlit-pos-cache c)
2331 (while (and c (> (car c) here))
2332 (setq high-pos (car c))
2333 (setq c (cdr c)))
2334 (setq pos (or (car c) (point-min)))
2336 (unless high-pos
2337 (while
2338 ;; Add an element to `c-state-semi-nonlit-pos-cache' each iteration.
2339 (and
2340 (<= (setq npos (+ pos c-state-nonlit-pos-interval)) here)
2342 ;; Test for being in a literal. If so, go to after it.
2343 (progn
2344 (setq lit (car (cddr (c-state-pp-to-literal pos npos))))
2345 (or (null lit)
2346 (prog1 (<= (cdr lit) here)
2347 (setq npos (cdr lit))))))
2349 (setq pos npos)
2350 (setq c-state-semi-nonlit-pos-cache
2351 (cons pos c-state-semi-nonlit-pos-cache))))
2353 (if (> pos c-state-semi-nonlit-pos-cache-limit)
2354 (setq c-state-semi-nonlit-pos-cache-limit pos))
2355 pos))))
2357 (defun c-state-literal-at (here)
2358 ;; If position HERE is inside a literal, return (START . END), the
2359 ;; boundaries of the literal (which may be outside the accessible bit of the
2360 ;; buffer). Otherwise, return nil.
2362 ;; This function is almost the same as `c-literal-limits'. Previously, it
2363 ;; differed in that it was a lower level function, and that it rigorously
2364 ;; followed the syntax from BOB. `c-literal-limits' is now (2011-12)
2365 ;; virtually identical to this function.
2366 (save-restriction
2367 (widen)
2368 (save-excursion
2369 (let ((pos (c-state-safe-place here)))
2370 (car (cddr (c-state-pp-to-literal pos here)))))))
2372 (defsubst c-state-lit-beg (pos)
2373 ;; Return the start of the literal containing POS, or POS itself.
2374 (or (car (c-state-literal-at pos))
2375 pos))
2377 (defsubst c-state-cache-non-literal-place (pos state)
2378 ;; Return a position outside of a string/comment/macro at or before POS.
2379 ;; STATE is the parse-partial-sexp state at POS.
2380 (let ((res (if (or (nth 3 state) ; in a string?
2381 (nth 4 state)) ; in a comment?
2382 (nth 8 state)
2383 pos)))
2384 (save-excursion
2385 (goto-char res)
2386 (if (c-beginning-of-macro)
2387 (point)
2388 res))))
2390 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2391 ;; Stuff to do with point-min, and coping with any literal there.
2392 (defvar c-state-point-min 1)
2393 (make-variable-buffer-local 'c-state-point-min)
2394 ;; This is (point-min) when `c-state-cache' was last calculated. A change of
2395 ;; narrowing is likely to affect the parens that are visible before the point.
2397 (defvar c-state-point-min-lit-type nil)
2398 (make-variable-buffer-local 'c-state-point-min-lit-type)
2399 (defvar c-state-point-min-lit-start nil)
2400 (make-variable-buffer-local 'c-state-point-min-lit-start)
2401 ;; These two variables define the literal, if any, containing point-min.
2402 ;; Their values are, respectively, 'string, c, or c++, and the start of the
2403 ;; literal. If there's no literal there, they're both nil.
2405 (defvar c-state-min-scan-pos 1)
2406 (make-variable-buffer-local 'c-state-min-scan-pos)
2407 ;; This is the earliest buffer-pos from which scanning can be done. It is
2408 ;; either the end of the literal containing point-min, or point-min itself.
2409 ;; It becomes nil if the buffer is changed earlier than this point.
2410 (defun c-state-get-min-scan-pos ()
2411 ;; Return the lowest valid scanning pos. This will be the end of the
2412 ;; literal enclosing point-min, or point-min itself.
2413 (or c-state-min-scan-pos
2414 (save-restriction
2415 (save-excursion
2416 (widen)
2417 (goto-char c-state-point-min-lit-start)
2418 (if (eq c-state-point-min-lit-type 'string)
2419 (forward-sexp)
2420 (forward-comment 1))
2421 (setq c-state-min-scan-pos (point))))))
2423 (defun c-state-mark-point-min-literal ()
2424 ;; Determine the properties of any literal containing POINT-MIN, setting the
2425 ;; variables `c-state-point-min-lit-type', `c-state-point-min-lit-start',
2426 ;; and `c-state-min-scan-pos' accordingly. The return value is meaningless.
2427 (let ((p-min (point-min))
2428 lit)
2429 (save-restriction
2430 (widen)
2431 (setq lit (c-state-literal-at p-min))
2432 (if lit
2433 (setq c-state-point-min-lit-type
2434 (save-excursion
2435 (goto-char (car lit))
2436 (cond
2437 ((looking-at c-block-comment-start-regexp) 'c)
2438 ((looking-at c-line-comment-starter) 'c++)
2439 (t 'string)))
2440 c-state-point-min-lit-start (car lit)
2441 c-state-min-scan-pos (cdr lit))
2442 (setq c-state-point-min-lit-type nil
2443 c-state-point-min-lit-start nil
2444 c-state-min-scan-pos p-min)))))
2447 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2448 ;; A variable which signals a brace dessert - helpful for reducing the number
2449 ;; of fruitless backward scans.
2450 (defvar c-state-brace-pair-desert nil)
2451 (make-variable-buffer-local 'c-state-brace-pair-desert)
2452 ;; Used only in `c-append-lower-brace-pair-to-state-cache'. It is set when
2453 ;; that defun has searched backwards for a brace pair and not found one. Its
2454 ;; value is either nil or a cons (PA . FROM), where PA is the position of the
2455 ;; enclosing opening paren/brace/bracket which bounds the backwards search (or
2456 ;; nil when at top level) and FROM is where the backward search started. It
2457 ;; is reset to nil in `c-invalidate-state-cache'.
2460 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2461 ;; Lowish level functions/macros which work directly on `c-state-cache', or a
2462 ;; list of like structure.
2463 (defmacro c-state-cache-top-lparen (&optional cache)
2464 ;; Return the address of the top left brace/bracket/paren recorded in CACHE
2465 ;; (default `c-state-cache') (or nil).
2466 (let ((cash (or cache 'c-state-cache)))
2467 `(if (consp (car ,cash))
2468 (caar ,cash)
2469 (car ,cash))))
2471 (defmacro c-state-cache-top-paren (&optional cache)
2472 ;; Return the address of the latest brace/bracket/paren (whether left or
2473 ;; right) recorded in CACHE (default `c-state-cache') or nil.
2474 (let ((cash (or cache 'c-state-cache)))
2475 `(if (consp (car ,cash))
2476 (cdar ,cash)
2477 (car ,cash))))
2479 (defmacro c-state-cache-after-top-paren (&optional cache)
2480 ;; Return the position just after the latest brace/bracket/paren (whether
2481 ;; left or right) recorded in CACHE (default `c-state-cache') or nil.
2482 (let ((cash (or cache 'c-state-cache)))
2483 `(if (consp (car ,cash))
2484 (cdar ,cash)
2485 (and (car ,cash)
2486 (1+ (car ,cash))))))
2488 (defun c-get-cache-scan-pos (here)
2489 ;; From the state-cache, determine the buffer position from which we might
2490 ;; scan forward to HERE to update this cache. This position will be just
2491 ;; after a paren/brace/bracket recorded in the cache, if possible, otherwise
2492 ;; return the earliest position in the accessible region which isn't within
2493 ;; a literal. If the visible portion of the buffer is entirely within a
2494 ;; literal, return NIL.
2495 (let ((c c-state-cache) elt)
2496 ;(while (>= (or (c-state-cache-top-lparen c) 1) here)
2497 (while (and c
2498 (>= (c-state-cache-top-lparen c) here))
2499 (setq c (cdr c)))
2501 (setq elt (car c))
2502 (cond
2503 ((consp elt)
2504 (if (> (cdr elt) here)
2505 (1+ (car elt))
2506 (cdr elt)))
2507 (elt (1+ elt))
2508 ((<= (c-state-get-min-scan-pos) here)
2509 (c-state-get-min-scan-pos))
2510 (t nil))))
2512 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2513 ;; Variables which keep track of preprocessor constructs.
2514 (defvar c-state-old-cpp-beg-marker nil)
2515 (make-variable-buffer-local 'c-state-old-cpp-beg-marker)
2516 (defvar c-state-old-cpp-beg nil)
2517 (make-variable-buffer-local 'c-state-old-cpp-beg)
2518 (defvar c-state-old-cpp-end-marker nil)
2519 (make-variable-buffer-local 'c-state-old-cpp-end-marker)
2520 (defvar c-state-old-cpp-end nil)
2521 (make-variable-buffer-local 'c-state-old-cpp-end)
2522 ;; These are the limits of the macro containing point at the previous call of
2523 ;; `c-parse-state', or nil.
2525 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2526 ;; Defuns which analyze the buffer, yet don't change `c-state-cache'.
2527 (defun c-state-balance-parens-backwards (here- here+ top)
2528 ;; Return the position of the opening paren/brace/bracket before HERE- which
2529 ;; matches the outermost close p/b/b between HERE+ and TOP. Except when
2530 ;; there's a macro, HERE- and HERE+ are the same. Like this:
2532 ;; ............................................
2533 ;; | |
2534 ;; ( [ ( .........#macro.. ) ( ) ] )
2535 ;; ^ ^ ^ ^
2536 ;; | | | |
2537 ;; return HERE- HERE+ TOP
2539 ;; If there aren't enough opening paren/brace/brackets, return the position
2540 ;; of the outermost one found, or HERE- if there are none. If there are no
2541 ;; closing p/b/bs between HERE+ and TOP, return HERE-. HERE-/+ and TOP
2542 ;; must not be inside literals. Only the accessible portion of the buffer
2543 ;; will be scanned.
2545 ;; PART 1: scan from `here+' up to `top', accumulating ")"s which enclose
2546 ;; `here'. Go round the next loop each time we pass over such a ")". These
2547 ;; probably match "("s before `here-'.
2548 (let (pos pa ren+1 lonely-rens)
2549 (save-excursion
2550 (save-restriction
2551 (narrow-to-region (point-min) top) ; This can move point, sometimes.
2552 (setq pos here+)
2553 (c-safe
2554 (while
2555 (setq ren+1 (c-sc-scan-lists pos 1 1)) ; might signal
2556 (setq lonely-rens (cons ren+1 lonely-rens)
2557 pos ren+1)))))
2559 ;; PART 2: Scan back before `here-' searching for the "("s
2560 ;; matching/mismatching the ")"s found above. We only need to direct the
2561 ;; caller to scan when we've encountered unmatched right parens.
2562 (setq pos here-)
2563 (when lonely-rens
2564 (c-safe
2565 (while
2566 (and lonely-rens ; actual values aren't used.
2567 (setq pa (c-sc-scan-lists pos -1 1)))
2568 (setq pos pa)
2569 (setq lonely-rens (cdr lonely-rens)))))
2570 pos))
2572 (defun c-parse-state-get-strategy (here good-pos)
2573 ;; Determine the scanning strategy for adjusting `c-parse-state', attempting
2574 ;; to minimize the amount of scanning. HERE is the pertinent position in
2575 ;; the buffer, GOOD-POS is a position where `c-state-cache' (possibly with
2576 ;; its head trimmed) is known to be good, or nil if there is no such
2577 ;; position.
2579 ;; The return value is a list, one of the following:
2581 ;; o - ('forward START-POINT) - scan forward from START-POINT,
2582 ;; which is not less than the highest position in `c-state-cache' below HERE,
2583 ;; which is after GOOD-POS.
2584 ;; o - ('backward nil) - scan backwards (from HERE).
2585 ;; o - ('back-and-forward START-POINT) - like 'forward, but when HERE is earlier
2586 ;; than GOOD-POS.
2587 ;; o - ('IN-LIT nil) - point is inside the literal containing point-min.
2588 (let ((cache-pos (c-get-cache-scan-pos here)) ; highest position below HERE in cache (or 1)
2589 strategy ; 'forward, 'backward, or 'IN-LIT.
2590 start-point)
2591 (setq good-pos (or good-pos (c-state-get-min-scan-pos)))
2592 (cond
2593 ((< here (c-state-get-min-scan-pos))
2594 (setq strategy 'IN-LIT))
2595 ((<= good-pos here)
2596 (setq strategy 'forward
2597 start-point (max good-pos cache-pos)))
2598 ((< (- good-pos here) (- here cache-pos)) ; FIXME!!! ; apply some sort of weighting.
2599 (setq strategy 'backward))
2601 (setq strategy 'back-and-forward
2602 start-point cache-pos)))
2603 (list strategy start-point)))
2606 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2607 ;; Routines which change `c-state-cache' and associated values.
2608 (defun c-renarrow-state-cache ()
2609 ;; The region (more precisely, point-min) has changed since we
2610 ;; calculated `c-state-cache'. Amend `c-state-cache' accordingly.
2611 (if (< (point-min) c-state-point-min)
2612 ;; If point-min has MOVED BACKWARDS then we drop the state completely.
2613 ;; It would be possible to do a better job here and recalculate the top
2614 ;; only.
2615 (progn
2616 (c-state-mark-point-min-literal)
2617 (setq c-state-cache nil
2618 c-state-cache-good-pos c-state-min-scan-pos
2619 c-state-brace-pair-desert nil))
2621 ;; point-min has MOVED FORWARD.
2623 ;; Is the new point-min inside a (different) literal?
2624 (unless (and c-state-point-min-lit-start ; at prev. point-min
2625 (< (point-min) (c-state-get-min-scan-pos)))
2626 (c-state-mark-point-min-literal))
2628 ;; Cut off a bit of the tail from `c-state-cache'.
2629 (let ((ptr (cons nil c-state-cache))
2631 (while (and (setq pa (c-state-cache-top-lparen (cdr ptr)))
2632 (>= pa (point-min)))
2633 (setq ptr (cdr ptr)))
2635 (when (consp ptr)
2636 (if (eq (cdr ptr) c-state-cache)
2637 (setq c-state-cache nil
2638 c-state-cache-good-pos c-state-min-scan-pos)
2639 (setcdr ptr nil)
2640 (setq c-state-cache-good-pos (1+ (c-state-cache-top-lparen))))
2643 (setq c-state-point-min (point-min)))
2645 (defun c-append-lower-brace-pair-to-state-cache (from here &optional upper-lim)
2646 ;; If there is a brace pair preceding FROM in the buffer, at the same level
2647 ;; of nesting (not necessarily immediately preceding), push a cons onto
2648 ;; `c-state-cache' to represent it. FROM must not be inside a literal. If
2649 ;; UPPER-LIM is non-nil, we append the highest brace pair whose "}" is below
2650 ;; UPPER-LIM.
2652 ;; Return non-nil when this has been done.
2654 ;; The situation it copes with is this transformation:
2656 ;; OLD: { (.) {...........}
2657 ;; ^ ^
2658 ;; FROM HERE
2660 ;; NEW: { {....} (.) {.........
2661 ;; ^ ^ ^
2662 ;; LOWER BRACE PAIR HERE or HERE
2664 ;; This routine should be fast. Since it can get called a LOT, we maintain
2665 ;; `c-state-brace-pair-desert', a small cache of "failures", such that we
2666 ;; reduce the time wasted in repeated fruitless searches in brace deserts.
2667 (save-excursion
2668 (save-restriction
2669 (let* (new-cons
2670 (cache-pos (c-state-cache-top-lparen)) ; might be nil.
2671 (macro-start-or-from
2672 (progn (goto-char from)
2673 (c-beginning-of-macro)
2674 (point)))
2675 (bra ; Position of "{".
2676 ;; Don't start scanning in the middle of a CPP construct unless
2677 ;; it contains HERE - these constructs, in Emacs, are "commented
2678 ;; out" with category properties.
2679 (if (eq (c-get-char-property macro-start-or-from 'category)
2680 'c-cpp-delimiter)
2681 macro-start-or-from
2682 from))
2683 ce) ; Position of "}"
2684 (or upper-lim (setq upper-lim from))
2686 ;; If we're essentially repeating a fruitless search, just give up.
2687 (unless (and c-state-brace-pair-desert
2688 (eq cache-pos (car c-state-brace-pair-desert))
2689 (or (null (car c-state-brace-pair-desert))
2690 (> from (car c-state-brace-pair-desert)))
2691 (<= from (cdr c-state-brace-pair-desert)))
2692 ;; DESERT-LIM. Avoid repeated searching through the cached desert.
2693 (let ((desert-lim
2694 (and c-state-brace-pair-desert
2695 (eq cache-pos (car c-state-brace-pair-desert))
2696 (>= from (cdr c-state-brace-pair-desert))
2697 (cdr c-state-brace-pair-desert)))
2698 ;; CACHE-LIM. This limit will be necessary when an opening
2699 ;; paren at `cache-pos' has just had its matching close paren
2700 ;; inserted into the buffer. `cache-pos' continues to be a
2701 ;; search bound, even though the algorithm below would skip
2702 ;; over the new paren pair.
2703 (cache-lim (and cache-pos (< cache-pos from) cache-pos)))
2704 (narrow-to-region
2705 (cond
2706 ((and desert-lim cache-lim)
2707 (max desert-lim cache-lim))
2708 (desert-lim)
2709 (cache-lim)
2710 ((point-min)))
2711 ;; The top limit is EOB to ensure that `bra' is inside the
2712 ;; accessible part of the buffer at the next scan operation.
2713 (1+ (buffer-size))))
2715 ;; In the next pair of nested loops, the inner one moves back past a
2716 ;; pair of (mis-)matching parens or brackets; the outer one moves
2717 ;; back over a sequence of unmatched close brace/paren/bracket each
2718 ;; time round.
2719 (while
2720 (progn
2721 (c-safe
2722 (while
2723 (and (setq ce (c-sc-scan-lists bra -1 -1)) ; back past )/]/}; might signal
2724 (setq bra (c-sc-scan-lists ce -1 1)) ; back past (/[/{; might signal
2725 (or (> bra here) ;(> ce here)
2726 (and
2727 (< ce here)
2728 (or (not (eq (char-after bra) ?\{))
2729 (and (goto-char bra)
2730 (c-beginning-of-macro)
2731 (< (point) macro-start-or-from))))))))
2732 (and ce (< ce bra)))
2733 (setq bra ce)) ; If we just backed over an unbalanced closing
2734 ; brace, ignore it.
2736 (if (and ce (< ce here) (< bra ce) (eq (char-after bra) ?\{))
2737 ;; We've found the desired brace-pair.
2738 (progn
2739 (setq new-cons (cons bra (1+ ce)))
2740 (cond
2741 ((consp (car c-state-cache))
2742 (setcar c-state-cache new-cons))
2743 ((and (numberp (car c-state-cache)) ; probably never happens
2744 (< ce (car c-state-cache)))
2745 (setcdr c-state-cache
2746 (cons new-cons (cdr c-state-cache))))
2747 (t (setq c-state-cache (cons new-cons c-state-cache)))))
2749 ;; We haven't found a brace pair. Record this in the cache.
2750 (setq c-state-brace-pair-desert
2751 (cons (if (and ce (< bra ce) (> ce here)) ; {..} straddling HERE?
2753 (point-min))
2754 (min here from)))))))))
2756 (defsubst c-state-push-any-brace-pair (bra+1 macro-start-or-here)
2757 ;; If BRA+1 is nil, do nothing. Otherwise, BRA+1 is the buffer position
2758 ;; following a {, and that brace has a (mis-)matching } (or ]), and we
2759 ;; "push" "a" brace pair onto `c-state-cache'.
2761 ;; Here "push" means overwrite the top element if it's itself a brace-pair,
2762 ;; otherwise push it normally.
2764 ;; The brace pair we push is normally the one surrounding BRA+1, but if the
2765 ;; latter is inside a macro, not being a macro containing
2766 ;; MACRO-START-OR-HERE, we scan backwards through the buffer for a non-macro
2767 ;; base pair. This latter case is assumed to be rare.
2769 ;; Note: POINT is not preserved in this routine.
2770 (if bra+1
2771 (if (or (> bra+1 macro-start-or-here)
2772 (progn (goto-char bra+1)
2773 (not (c-beginning-of-macro))))
2774 (setq c-state-cache
2775 (cons (cons (1- bra+1)
2776 (c-sc-scan-lists bra+1 1 1))
2777 (if (consp (car c-state-cache))
2778 (cdr c-state-cache)
2779 c-state-cache)))
2780 ;; N.B. This defsubst codes one method for the simple, normal case,
2781 ;; and a more sophisticated, slower way for the general case. Don't
2782 ;; eliminate this defsubst - it's a speed optimization.
2783 (c-append-lower-brace-pair-to-state-cache (1- bra+1) (point-max)))))
2785 (defun c-append-to-state-cache (from here)
2786 ;; Scan the buffer from FROM to HERE, adding elements into `c-state-cache'
2787 ;; for braces etc. Return a candidate for `c-state-cache-good-pos'.
2789 ;; FROM must be after the latest brace/paren/bracket in `c-state-cache', if
2790 ;; any. Typically, it is immediately after it. It must not be inside a
2791 ;; literal.
2792 (let ((here-bol (c-point 'bol here))
2793 (macro-start-or-here
2794 (save-excursion (goto-char here)
2795 (if (c-beginning-of-macro)
2796 (point)
2797 here)))
2798 pa+1 ; pos just after an opening PAren (or brace).
2799 (ren+1 from) ; usually a pos just after an closing paREN etc.
2800 ; Is actually the pos. to scan for a (/{/[ from,
2801 ; which sometimes is after a silly )/}/].
2802 paren+1 ; Pos after some opening or closing paren.
2803 paren+1s ; A list of `paren+1's; used to determine a
2804 ; good-pos.
2805 bra+1 ; just after L bra-ce.
2806 bra+1s ; list of OLD values of bra+1.
2807 mstart) ; start of a macro.
2809 (save-excursion
2810 (save-restriction
2811 (narrow-to-region (point-min) here)
2812 ;; Each time round the following loop, we enter a successively deeper
2813 ;; level of brace/paren nesting. (Except sometimes we "continue at
2814 ;; the existing level".) `pa+1' is a pos inside an opening
2815 ;; brace/paren/bracket, usually just after it.
2816 (while
2817 (progn
2818 ;; Each time round the next loop moves forward over an opening then
2819 ;; a closing brace/bracket/paren. This loop is white hot, so it
2820 ;; plays ugly tricks to go fast. DON'T PUT ANYTHING INTO THIS
2821 ;; LOOP WHICH ISN'T ABSOLUTELY NECESSARY!!! It terminates when a
2822 ;; call of `scan-lists' signals an error, which happens when there
2823 ;; are no more b/b/p's to scan.
2824 (c-safe
2825 (while t
2826 (setq pa+1 (c-sc-scan-lists ren+1 1 -1) ; Into (/{/[; might signal
2827 paren+1s (cons pa+1 paren+1s))
2828 (setq ren+1 (c-sc-scan-lists pa+1 1 1)) ; Out of )/}/]; might signal
2829 (if (and (eq (char-before pa+1) ?{)) ; Check for a macro later.
2830 (setq bra+1 pa+1))
2831 (setcar paren+1s ren+1)))
2833 (if (and pa+1 (> pa+1 ren+1))
2834 ;; We've just entered a deeper nesting level.
2835 (progn
2836 ;; Insert the brace pair (if present) and the single open
2837 ;; paren/brace/bracket into `c-state-cache' It cannot be
2838 ;; inside a macro, except one around point, because of what
2839 ;; `c-neutralize-syntax-in-CPP' has done.
2840 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2841 ;; Insert the opening brace/bracket/paren position.
2842 (setq c-state-cache (cons (1- pa+1) c-state-cache))
2843 ;; Clear admin stuff for the next more nested part of the scan.
2844 (setq ren+1 pa+1 pa+1 nil bra+1 nil bra+1s nil)
2845 t) ; Carry on the loop
2847 ;; All open p/b/b's at this nesting level, if any, have probably
2848 ;; been closed by matching/mismatching ones. We're probably
2849 ;; finished - we just need to check for having found an
2850 ;; unmatched )/}/], which we ignore. Such a )/}/] can't be in a
2851 ;; macro, due the action of `c-neutralize-syntax-in-CPP'.
2852 (c-safe (setq ren+1 (c-sc-scan-lists ren+1 1 1)))))) ; acts as loop control.
2854 ;; Record the final, innermost, brace-pair if there is one.
2855 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2857 ;; Determine a good pos
2858 (while (and (setq paren+1 (car paren+1s))
2859 (> (if (> paren+1 macro-start-or-here)
2860 paren+1
2861 (goto-char paren+1)
2862 (setq mstart (and (c-beginning-of-macro)
2863 (point)))
2864 (or mstart paren+1))
2865 here-bol))
2866 (setq paren+1s (cdr paren+1s)))
2867 (cond
2868 ((and paren+1 mstart)
2869 (min paren+1 mstart))
2870 (paren+1)
2871 (t from))))))
2873 (defun c-remove-stale-state-cache (start-point here pps-point)
2874 ;; Remove stale entries from the `c-cache-state', i.e. those which will
2875 ;; not be in it when it is amended for position HERE. This may involve
2876 ;; replacing a CONS element for a brace pair containing HERE with its car.
2877 ;; Additionally, the "outermost" open-brace entry before HERE will be
2878 ;; converted to a cons if the matching close-brace is below HERE.
2880 ;; START-POINT is a "maximal" "safe position" - there must be no open
2881 ;; parens/braces/brackets between START-POINT and HERE.
2883 ;; As a second thing, calculate the result of parse-partial-sexp at
2884 ;; PPS-POINT, w.r.t. START-POINT. The motivation here is that
2885 ;; `c-state-cache-good-pos' may become PPS-POINT, but the caller may need to
2886 ;; adjust it to get outside a string/comment. (Sorry about this! The code
2887 ;; needs to be FAST).
2889 ;; Return a list (GOOD-POS SCAN-BACK-POS CONS-SEPARATED PPS-STATE), where
2890 ;; o - GOOD-POS is a position where the new value `c-state-cache' is known
2891 ;; to be good (we aim for this to be as high as possible);
2892 ;; o - SCAN-BACK-POS, if not nil, indicates there may be a brace pair
2893 ;; preceding POS which needs to be recorded in `c-state-cache'. It is a
2894 ;; position to scan backwards from. It is the position of the "{" of the
2895 ;; last element to be removed from `c-state-cache', when that elt is a
2896 ;; cons, otherwise nil.
2897 ;; o - CONS-SEPARATED is t when a cons element in `c-state-cache' has been
2898 ;; replaced by its car because HERE lies inside the brace pair represented
2899 ;; by the cons.
2900 ;; o - PPS-STATE is the parse-partial-sexp state at PPS-POINT.
2901 (save-excursion
2902 (save-restriction
2903 (narrow-to-region 1 (point-max))
2904 (let* ((in-macro-start ; start of macro containing HERE or nil.
2905 (save-excursion
2906 (goto-char here)
2907 (and (c-beginning-of-macro)
2908 (point))))
2909 (start-point-actual-macro-start ; Start of macro containing
2910 ; start-point or nil
2911 (and (< start-point here)
2912 (save-excursion
2913 (goto-char start-point)
2914 (and (c-beginning-of-macro)
2915 (point)))))
2916 (start-point-actual-macro-end ; End of this macro, (maybe
2917 ; HERE), or nil.
2918 (and start-point-actual-macro-start
2919 (save-excursion
2920 (goto-char start-point-actual-macro-start)
2921 (c-end-of-macro)
2922 (point))))
2923 pps-state ; Will be 9 or 10 elements long.
2925 upper-lim ; ,beyond which `c-state-cache' entries are removed
2926 scan-back-pos
2927 cons-separated
2928 pair-beg pps-point-state target-depth)
2930 ;; Remove entries beyond HERE. Also remove any entries inside
2931 ;; a macro, unless HERE is in the same macro.
2932 (setq upper-lim
2933 (if (or (null c-state-old-cpp-beg)
2934 (and (> here c-state-old-cpp-beg)
2935 (< here c-state-old-cpp-end)))
2936 here
2937 (min here c-state-old-cpp-beg)))
2938 (while (and c-state-cache (>= (c-state-cache-top-lparen) upper-lim))
2939 (setq scan-back-pos (car-safe (car c-state-cache)))
2940 (setq c-state-cache (cdr c-state-cache)))
2942 ;; If `upper-lim' is inside the last recorded brace pair, remove its
2943 ;; RBrace and indicate we'll need to search backwards for a previous
2944 ;; brace pair.
2945 (when (and c-state-cache
2946 (consp (car c-state-cache))
2947 (> (cdar c-state-cache) upper-lim))
2948 (setcar c-state-cache (caar c-state-cache))
2949 (setq scan-back-pos (car c-state-cache)
2950 cons-separated t))
2952 ;; The next loop jumps forward out of a nested level of parens each
2953 ;; time round; the corresponding elements in `c-state-cache' are
2954 ;; removed. `pos' is just after the brace-pair or the open paren at
2955 ;; (car c-state-cache). There can be no open parens/braces/brackets
2956 ;; between `start-point'/`start-point-actual-macro-start' and HERE,
2957 ;; due to the interface spec to this function.
2958 (setq pos (if (and start-point-actual-macro-end
2959 (not (eq start-point-actual-macro-start
2960 in-macro-start)))
2961 (1+ start-point-actual-macro-end) ; get outside the macro as
2962 ; marked by a `category' text property.
2963 start-point))
2964 (goto-char pos)
2965 (while (and c-state-cache
2966 (or (numberp (car c-state-cache)) ; Have we a { at all?
2967 (cdr c-state-cache))
2968 (< (point) here))
2969 (cond
2970 ((null pps-state) ; first time through
2971 (setq target-depth -1))
2972 ((eq (car pps-state) target-depth) ; found closing ),},]
2973 (setq target-depth (1- (car pps-state))))
2974 ;; Do nothing when we've merely reached pps-point.
2977 ;; Scan!
2978 (setq pps-state
2979 (c-sc-parse-partial-sexp
2980 (point) (if (< (point) pps-point) pps-point here)
2981 target-depth
2982 nil pps-state))
2984 (if (= (point) pps-point)
2985 (setq pps-point-state pps-state))
2987 (when (eq (car pps-state) target-depth)
2988 (setq pos (point)) ; POS is now just after an R-paren/brace.
2989 (cond
2990 ((and (consp (car c-state-cache))
2991 (eq (point) (cdar c-state-cache)))
2992 ;; We've just moved out of the paren pair containing the brace-pair
2993 ;; at (car c-state-cache). `pair-beg' is where the open paren is,
2994 ;; and is potentially where the open brace of a cons in
2995 ;; c-state-cache will be.
2996 (setq pair-beg (car-safe (cdr c-state-cache))
2997 c-state-cache (cdr-safe (cdr c-state-cache)))) ; remove {}pair + containing Lparen.
2998 ((numberp (car c-state-cache))
2999 (setq pair-beg (car c-state-cache)
3000 c-state-cache (cdr c-state-cache))) ; remove this
3001 ; containing Lparen
3002 ((numberp (cadr c-state-cache))
3003 (setq pair-beg (cadr c-state-cache)
3004 c-state-cache (cddr c-state-cache))) ; Remove a paren pair
3005 ; together with enclosed brace pair.
3006 ;; (t nil) ; Ignore an unmated Rparen.
3009 (if (< (point) pps-point)
3010 (setq pps-state (c-sc-parse-partial-sexp
3011 (point) pps-point
3012 nil nil ; TARGETDEPTH, STOPBEFORE
3013 pps-state)))
3015 ;; If the last paren pair we moved out of was actually a brace pair,
3016 ;; insert it into `c-state-cache'.
3017 (when (and pair-beg (eq (char-after pair-beg) ?{))
3018 (if (consp (car-safe c-state-cache))
3019 (setq c-state-cache (cdr c-state-cache)))
3020 (setq c-state-cache (cons (cons pair-beg pos)
3021 c-state-cache)))
3023 (list pos scan-back-pos cons-separated pps-state)))))
3025 (defun c-remove-stale-state-cache-backwards (here)
3026 ;; Strip stale elements of `c-state-cache' by moving backwards through the
3027 ;; buffer, and inform the caller of the scenario detected.
3029 ;; HERE is the position we're setting `c-state-cache' for.
3030 ;; CACHE-POS (a locally bound variable) is just after the latest recorded
3031 ;; position in `c-state-cache' before HERE, or a position at or near
3032 ;; point-min which isn't in a literal.
3034 ;; This function must only be called only when (> `c-state-cache-good-pos'
3035 ;; HERE). Usually the gap between CACHE-POS and HERE is large. It is thus
3036 ;; optimized to eliminate (or minimize) scanning between these two
3037 ;; positions.
3039 ;; Return a three element list (GOOD-POS SCAN-BACK-POS FWD-FLAG), where:
3040 ;; o - GOOD-POS is a "good position", where `c-state-cache' is valid, or
3041 ;; could become so after missing elements are inserted into
3042 ;; `c-state-cache'. This is JUST AFTER an opening or closing
3043 ;; brace/paren/bracket which is already in `c-state-cache' or just before
3044 ;; one otherwise. exceptionally (when there's no such b/p/b handy) the BOL
3045 ;; before `here''s line, or the start of the literal containing it.
3046 ;; o - SCAN-BACK-POS, if non-nil, indicates there may be a brace pair
3047 ;; preceding POS which isn't recorded in `c-state-cache'. It is a position
3048 ;; to scan backwards from.
3049 ;; o - FWD-FLAG, if non-nil, indicates there may be parens/braces between
3050 ;; POS and HERE which aren't recorded in `c-state-cache'.
3052 ;; The comments in this defun use "paren" to mean parenthesis or square
3053 ;; bracket (as contrasted with a brace), and "(" and ")" likewise.
3055 ;; . {..} (..) (..) ( .. { } ) (...) ( .... . ..)
3056 ;; | | | | | |
3057 ;; CP E here D C good
3058 (let ((cache-pos (c-get-cache-scan-pos here)) ; highest position below HERE in cache (or 1)
3059 (pos c-state-cache-good-pos)
3060 pa ren ; positions of "(" and ")"
3061 dropped-cons ; whether the last element dropped from `c-state-cache'
3062 ; was a cons (representing a brace-pair)
3063 good-pos ; see above.
3064 lit ; (START . END) of a literal containing some point.
3065 here-lit-start here-lit-end ; bounds of literal containing `here'
3066 ; or `here' itself.
3067 here- here+ ; start/end of macro around HERE, or HERE
3068 (here-bol (c-point 'bol here))
3069 (too-far-back (max (- here c-state-cache-too-far) (point-min))))
3071 ;; Remove completely irrelevant entries from `c-state-cache'.
3072 (while (and c-state-cache
3073 (>= (setq pa (c-state-cache-top-lparen)) here))
3074 (setq dropped-cons (consp (car c-state-cache)))
3075 (setq c-state-cache (cdr c-state-cache))
3076 (setq pos pa))
3077 ;; At this stage, (>= pos here);
3078 ;; (< (c-state-cache-top-lparen) here) (or is nil).
3080 (cond
3081 ((and (consp (car c-state-cache))
3082 (> (cdar c-state-cache) here))
3083 ;; CASE 1: The top of the cache is a brace pair which now encloses
3084 ;; `here'. As good-pos, return the address. of the "{". Since we've no
3085 ;; knowledge of what's inside these braces, we have no alternative but
3086 ;; to direct the caller to scan the buffer from the opening brace.
3087 (setq pos (caar c-state-cache))
3088 (setcar c-state-cache pos)
3089 (list (1+ pos) pos t)) ; return value. We've just converted a brace pair
3090 ; entry into a { entry, so the caller needs to
3091 ; search for a brace pair before the {.
3093 ;; `here' might be inside a literal. Check for this.
3094 ((progn
3095 (setq lit (c-state-literal-at here)
3096 here-lit-start (or (car lit) here)
3097 here-lit-end (or (cdr lit) here))
3098 ;; Has `here' just "newly entered" a macro?
3099 (save-excursion
3100 (goto-char here-lit-start)
3101 (if (and (c-beginning-of-macro)
3102 (or (null c-state-old-cpp-beg)
3103 (not (= (point) c-state-old-cpp-beg))))
3104 (progn
3105 (setq here- (point))
3106 (c-end-of-macro)
3107 (setq here+ (point)))
3108 (setq here- here-lit-start
3109 here+ here-lit-end)))
3111 ;; `here' might be nested inside any depth of parens (or brackets but
3112 ;; not braces). Scan backwards to find the outermost such opening
3113 ;; paren, if there is one. This will be the scan position to return.
3114 (save-restriction
3115 (narrow-to-region cache-pos (point-max))
3116 (setq pos (c-state-balance-parens-backwards here- here+ pos)))
3117 nil)) ; for the cond
3119 ((< pos here-lit-start)
3120 ;; CASE 2: Address of outermost ( or [ which now encloses `here', but
3121 ;; didn't enclose the (previous) `c-state-cache-good-pos'. If there is
3122 ;; a brace pair preceding this, it will already be in `c-state-cache',
3123 ;; unless there was a brace pair after it, i.e. there'll only be one to
3124 ;; scan for if we've just deleted one.
3125 (list pos (and dropped-cons pos) t)) ; Return value.
3127 ;; `here' isn't enclosed in a (previously unrecorded) bracket/paren.
3128 ;; Further forward scanning isn't needed, but we still need to find a
3129 ;; GOOD-POS. Step out of all enclosing "("s on HERE's line.
3130 ((progn
3131 (save-restriction
3132 (narrow-to-region here-bol (point-max))
3133 (setq pos here-lit-start)
3134 (c-safe (while (setq pa (c-sc-scan-lists pos -1 1))
3135 (setq pos pa)))) ; might signal
3136 nil)) ; for the cond
3138 ((save-restriction
3139 (narrow-to-region too-far-back (point-max))
3140 (setq ren (c-safe (c-sc-scan-lists pos -1 -1))))
3141 ;; CASE 3: After a }/)/] before `here''s BOL.
3142 (list (1+ ren) (and dropped-cons pos) nil)) ; Return value
3144 ((progn (setq good-pos (c-state-lit-beg (c-point 'bopl here-bol)))
3145 (>= cache-pos good-pos))
3146 ;; CASE 3.5: Just after an existing entry in `c-state-cache' on `here''s
3147 ;; line or the previous line.
3148 (list cache-pos nil nil))
3151 ;; CASE 4; Best of a bad job: BOL before `here-bol', or beginning of
3152 ;; literal containing it.
3153 (list good-pos (and dropped-cons good-pos) nil)))))
3156 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3157 ;; Externally visible routines.
3159 (defun c-state-cache-init ()
3160 (setq c-state-cache nil
3161 c-state-cache-good-pos 1
3162 c-state-nonlit-pos-cache nil
3163 c-state-nonlit-pos-cache-limit 1
3164 c-state-semi-nonlit-pos-cache nil
3165 c-state-semi-nonlit-pos-cache-limit 1
3166 c-state-brace-pair-desert nil
3167 c-state-point-min 1
3168 c-state-point-min-lit-type nil
3169 c-state-point-min-lit-start nil
3170 c-state-min-scan-pos 1
3171 c-state-old-cpp-beg nil
3172 c-state-old-cpp-end nil)
3173 (c-state-mark-point-min-literal))
3175 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3176 ;; Debugging routines to dump `c-state-cache' in a "replayable" form.
3177 ;; (defmacro c-sc-de (elt) ; "c-state-cache-dump-element"
3178 ;; `(format ,(concat "(setq " (symbol-name elt) " %s) ") ,elt))
3179 ;; (defmacro c-sc-qde (elt) ; "c-state-cache-quote-dump-element"
3180 ;; `(format ,(concat "(setq " (symbol-name elt) " '%s) ") ,elt))
3181 ;; (defun c-state-dump ()
3182 ;; ;; For debugging.
3183 ;; ;(message
3184 ;; (concat
3185 ;; (c-sc-qde c-state-cache)
3186 ;; (c-sc-de c-state-cache-good-pos)
3187 ;; (c-sc-qde c-state-nonlit-pos-cache)
3188 ;; (c-sc-de c-state-nonlit-pos-cache-limit)
3189 ;; (c-sc-qde c-state-brace-pair-desert)
3190 ;; (c-sc-de c-state-point-min)
3191 ;; (c-sc-de c-state-point-min-lit-type)
3192 ;; (c-sc-de c-state-point-min-lit-start)
3193 ;; (c-sc-de c-state-min-scan-pos)
3194 ;; (c-sc-de c-state-old-cpp-beg)
3195 ;; (c-sc-de c-state-old-cpp-end)))
3196 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3198 (defun c-invalidate-state-cache-1 (here)
3199 ;; Invalidate all info on `c-state-cache' that applies to the buffer at HERE
3200 ;; or higher and set `c-state-cache-good-pos' accordingly. The cache is
3201 ;; left in a consistent state.
3203 ;; This is much like `c-whack-state-after', but it never changes a paren
3204 ;; pair element into an open paren element. Doing that would mean that the
3205 ;; new open paren wouldn't have the required preceding paren pair element.
3207 ;; This function is called from c-after-change.
3209 ;; The caches of non-literals:
3210 ;; Note that we use "<=" for the possibility of the second char of a two-char
3211 ;; comment opener being typed; this would invalidate any cache position at
3212 ;; HERE.
3213 (if (<= here c-state-nonlit-pos-cache-limit)
3214 (setq c-state-nonlit-pos-cache-limit (1- here)))
3215 (if (<= here c-state-semi-nonlit-pos-cache-limit)
3216 (setq c-state-semi-nonlit-pos-cache-limit (1- here)))
3218 ;; `c-state-cache':
3219 ;; Case 1: if `here' is in a literal containing point-min, everything
3220 ;; becomes (or is already) nil.
3221 (if (or (null c-state-cache-good-pos)
3222 (< here (c-state-get-min-scan-pos)))
3223 (setq c-state-cache nil
3224 c-state-cache-good-pos nil
3225 c-state-min-scan-pos nil)
3227 ;; Truncate `c-state-cache' and set `c-state-cache-good-pos' to a value
3228 ;; below `here'. To maintain its consistency, we may need to insert a new
3229 ;; brace pair.
3230 (let (open-paren-in-column-0-is-defun-start
3231 (here-bol (c-point 'bol here))
3232 too-high-pa ; recorded {/(/[ next above here, or nil.
3233 dropped-cons ; was the last removed element a brace pair?
3235 ;; The easy bit - knock over-the-top bits off `c-state-cache'.
3236 (while (and c-state-cache
3237 (>= (setq pa (c-state-cache-top-paren)) here))
3238 (setq dropped-cons (consp (car c-state-cache))
3239 too-high-pa (c-state-cache-top-lparen)
3240 c-state-cache (cdr c-state-cache)))
3242 ;; Do we need to add in an earlier brace pair, having lopped one off?
3243 (if (and dropped-cons
3244 (< too-high-pa (+ here c-state-cache-too-far)))
3245 (c-append-lower-brace-pair-to-state-cache too-high-pa here here-bol))
3246 (setq c-state-cache-good-pos (or (c-state-cache-after-top-paren)
3247 (c-state-get-min-scan-pos)))))
3249 ;; The brace-pair desert marker:
3250 (when (car c-state-brace-pair-desert)
3251 (if (< here (car c-state-brace-pair-desert))
3252 (setq c-state-brace-pair-desert nil)
3253 (if (< here (cdr c-state-brace-pair-desert))
3254 (setcdr c-state-brace-pair-desert here)))))
3256 (defun c-parse-state-1 ()
3257 ;; Find and record all noteworthy parens between some good point earlier in
3258 ;; the file and point. That good point is at least the beginning of the
3259 ;; top-level construct we are in, or the beginning of the preceding
3260 ;; top-level construct if we aren't in one.
3262 ;; The returned value is a list of the noteworthy parens with the last one
3263 ;; first. If an element in the list is an integer, it's the position of an
3264 ;; open paren (of any type) which has not been closed before the point. If
3265 ;; an element is a cons, it gives the position of a closed BRACE paren
3266 ;; pair[*]; the car is the start brace position and the cdr is the position
3267 ;; following the closing brace. Only the last closed brace paren pair
3268 ;; before each open paren and before the point is recorded, and thus the
3269 ;; state never contains two cons elements in succession. When a close brace
3270 ;; has no matching open brace (e.g., the matching brace is outside the
3271 ;; visible region), it is not represented in the returned value.
3273 ;; [*] N.B. The close "brace" might be a mismatching close bracket or paren.
3274 ;; This defun explicitly treats mismatching parens/braces/brackets as
3275 ;; matching. It is the open brace which makes it a "brace" pair.
3277 ;; If POINT is within a macro, open parens and brace pairs within
3278 ;; THIS macro MIGHT be recorded. This depends on whether their
3279 ;; syntactic properties have been suppressed by
3280 ;; `c-neutralize-syntax-in-CPP'. This might need fixing (2008-12-11).
3282 ;; Currently no characters which are given paren syntax with the
3283 ;; syntax-table property are recorded, i.e. angle bracket arglist
3284 ;; parens are never present here. Note that this might change.
3286 ;; BUG: This function doesn't cope entirely well with unbalanced
3287 ;; parens in macros. (2008-12-11: this has probably been resolved
3288 ;; by the function `c-neutralize-syntax-in-CPP'.) E.g. in the
3289 ;; following case the brace before the macro isn't balanced with the
3290 ;; one after it:
3292 ;; {
3293 ;; #define X {
3294 ;; }
3296 ;; Note to maintainers: this function DOES get called with point
3297 ;; within comments and strings, so don't assume it doesn't!
3299 ;; This function might do hidden buffer changes.
3300 (let* ((here (point))
3301 (here-bopl (c-point 'bopl))
3302 open-paren-in-column-0-is-defun-start
3303 strategy ; 'forward, 'backward etc..
3304 ;; Candidate positions to start scanning from:
3305 cache-pos ; highest position below HERE already existing in
3306 ; cache (or 1).
3307 good-pos
3308 start-point ; (when scanning forward) a place below HERE where there
3309 ; are no open parens/braces between it and HERE.
3310 bopl-state
3312 cons-separated
3313 scan-backward-pos scan-forward-p) ; used for 'backward.
3314 ;; If POINT-MIN has changed, adjust the cache
3315 (unless (= (point-min) c-state-point-min)
3316 (c-renarrow-state-cache))
3318 ;; Strategy?
3319 (setq res (c-parse-state-get-strategy here c-state-cache-good-pos)
3320 strategy (car res)
3321 start-point (cadr res))
3323 ;; SCAN!
3324 (cond
3325 ((memq strategy '(forward back-and-forward))
3326 (setq res (c-remove-stale-state-cache start-point here here-bopl))
3327 (setq cache-pos (car res)
3328 scan-backward-pos (cadr res)
3329 cons-separated (car (cddr res))
3330 bopl-state (cadr (cddr res))) ; will be nil if (< here-bopl
3331 ; start-point)
3332 (if (and scan-backward-pos
3333 (or cons-separated (eq strategy 'forward))) ;scan-backward-pos
3334 (c-append-lower-brace-pair-to-state-cache scan-backward-pos here))
3335 (setq good-pos
3336 (c-append-to-state-cache cache-pos here))
3337 (setq c-state-cache-good-pos
3338 (if (and bopl-state
3339 (< good-pos (- here c-state-cache-too-far)))
3340 (c-state-cache-non-literal-place here-bopl bopl-state)
3341 good-pos)))
3343 ((eq strategy 'backward)
3344 (setq res (c-remove-stale-state-cache-backwards here)
3345 good-pos (car res)
3346 scan-backward-pos (cadr res)
3347 scan-forward-p (car (cddr res)))
3348 (if scan-backward-pos
3349 (c-append-lower-brace-pair-to-state-cache scan-backward-pos here))
3350 (setq c-state-cache-good-pos
3351 (if scan-forward-p
3352 (c-append-to-state-cache good-pos here)
3353 good-pos)))
3355 (t ; (eq strategy 'IN-LIT)
3356 (setq c-state-cache nil
3357 c-state-cache-good-pos nil))))
3359 c-state-cache)
3361 (defun c-invalidate-state-cache (here)
3362 ;; This is a wrapper over `c-invalidate-state-cache-1'.
3364 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3365 ;; of all parens in preprocessor constructs, except for any such construct
3366 ;; containing point. We can then call `c-invalidate-state-cache-1' without
3367 ;; worrying further about macros and template delimiters.
3368 (if (eval-when-compile (memq 'category-properties c-emacs-features))
3369 ;; Emacs
3370 (c-with-<->-as-parens-suppressed
3371 (if (and c-state-old-cpp-beg
3372 (< c-state-old-cpp-beg here))
3373 (c-with-all-but-one-cpps-commented-out
3374 c-state-old-cpp-beg
3375 (min c-state-old-cpp-end here)
3376 (c-invalidate-state-cache-1 here))
3377 (c-with-cpps-commented-out
3378 (c-invalidate-state-cache-1 here))))
3379 ;; XEmacs
3380 (c-invalidate-state-cache-1 here)))
3382 (defmacro c-state-maybe-marker (place marker)
3383 ;; If PLACE is non-nil, return a marker marking it, otherwise nil.
3384 ;; We (re)use MARKER.
3385 `(and ,place
3386 (or ,marker (setq ,marker (make-marker)))
3387 (set-marker ,marker ,place)))
3389 (defun c-parse-state ()
3390 ;; This is a wrapper over `c-parse-state-1'. See that function for a
3391 ;; description of the functionality and return value.
3393 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3394 ;; of all parens in preprocessor constructs, except for any such construct
3395 ;; containing point. We can then call `c-parse-state-1' without worrying
3396 ;; further about macros and template delimiters.
3397 (let (here-cpp-beg here-cpp-end)
3398 (save-excursion
3399 (when (c-beginning-of-macro)
3400 (setq here-cpp-beg (point))
3401 (unless
3402 (> (setq here-cpp-end (c-syntactic-end-of-macro))
3403 here-cpp-beg)
3404 (setq here-cpp-beg nil here-cpp-end nil))))
3405 ;; FIXME!!! Put in a `condition-case' here to protect the integrity of the
3406 ;; subsystem.
3407 (prog1
3408 (if (eval-when-compile (memq 'category-properties c-emacs-features))
3409 ;; Emacs
3410 (c-with-<->-as-parens-suppressed
3411 (if (and here-cpp-beg (> here-cpp-end here-cpp-beg))
3412 (c-with-all-but-one-cpps-commented-out
3413 here-cpp-beg here-cpp-end
3414 (c-parse-state-1))
3415 (c-with-cpps-commented-out
3416 (c-parse-state-1))))
3417 ;; XEmacs
3418 (c-parse-state-1))
3419 (setq c-state-old-cpp-beg
3420 (c-state-maybe-marker here-cpp-beg c-state-old-cpp-beg-marker)
3421 c-state-old-cpp-end
3422 (c-state-maybe-marker here-cpp-end c-state-old-cpp-end-marker)))))
3424 ;; Debug tool to catch cache inconsistencies. This is called from
3425 ;; 000tests.el.
3426 (defvar c-debug-parse-state nil)
3427 (unless (fboundp 'c-real-parse-state)
3428 (fset 'c-real-parse-state (symbol-function 'c-parse-state)))
3429 (cc-bytecomp-defun c-real-parse-state)
3431 (defvar c-parse-state-point nil)
3432 (defvar c-parse-state-state nil)
3433 (make-variable-buffer-local 'c-parse-state-state)
3434 (defun c-record-parse-state-state ()
3435 (setq c-parse-state-point (point))
3436 (setq c-parse-state-state
3437 (mapcar
3438 (lambda (arg)
3439 (let ((val (symbol-value arg)))
3440 (cons arg
3441 (cond ((consp val) (copy-tree val))
3442 ((markerp val) (copy-marker val))
3443 (t val)))))
3444 '(c-state-cache
3445 c-state-cache-good-pos
3446 c-state-nonlit-pos-cache
3447 c-state-nonlit-pos-cache-limit
3448 c-state-semi-nonlit-pos-cache
3449 c-state-semi-nonlit-pos-cache-limit
3450 c-state-brace-pair-desert
3451 c-state-point-min
3452 c-state-point-min-lit-type
3453 c-state-point-min-lit-start
3454 c-state-min-scan-pos
3455 c-state-old-cpp-beg
3456 c-state-old-cpp-end
3457 c-parse-state-point))))
3458 (defun c-replay-parse-state-state ()
3459 (message
3460 (concat "(setq "
3461 (mapconcat
3462 (lambda (arg)
3463 (format "%s %s%s" (car arg)
3464 (if (atom (cdr arg)) "" "'")
3465 (if (markerp (cdr arg))
3466 (format "(copy-marker %s)" (marker-position (cdr arg)))
3467 (cdr arg))))
3468 c-parse-state-state " ")
3469 ")")))
3471 (defun c-debug-parse-state-double-cons (state)
3472 (let (state-car conses-not-ok)
3473 (while state
3474 (setq state-car (car state)
3475 state (cdr state))
3476 (if (and (consp state-car)
3477 (consp (car state)))
3478 (setq conses-not-ok t)))
3479 conses-not-ok))
3481 (defun c-debug-parse-state ()
3482 (let ((here (point)) (res1 (c-real-parse-state)) res2)
3483 (let ((c-state-cache nil)
3484 (c-state-cache-good-pos 1)
3485 (c-state-nonlit-pos-cache nil)
3486 (c-state-nonlit-pos-cache-limit 1)
3487 (c-state-brace-pair-desert nil)
3488 (c-state-point-min 1)
3489 (c-state-point-min-lit-type nil)
3490 (c-state-point-min-lit-start nil)
3491 (c-state-min-scan-pos 1)
3492 (c-state-old-cpp-beg nil)
3493 (c-state-old-cpp-end nil))
3494 (setq res2 (c-real-parse-state)))
3495 (unless (equal res1 res2)
3496 ;; The cache can actually go further back due to the ad-hoc way
3497 ;; the first paren is found, so try to whack off a bit of its
3498 ;; start before complaining.
3499 ;; (save-excursion
3500 ;; (goto-char (or (c-least-enclosing-brace res2) (point)))
3501 ;; (c-beginning-of-defun-1)
3502 ;; (while (not (or (bobp) (eq (char-after) ?{)))
3503 ;; (c-beginning-of-defun-1))
3504 ;; (unless (equal (c-whack-state-before (point) res1) res2)
3505 ;; (message (concat "c-parse-state inconsistency at %s: "
3506 ;; "using cache: %s, from scratch: %s")
3507 ;; here res1 res2)))
3508 (message (concat "c-parse-state inconsistency at %s: "
3509 "using cache: %s, from scratch: %s")
3510 here res1 res2)
3511 (message "Old state:")
3512 (c-replay-parse-state-state))
3514 (when (c-debug-parse-state-double-cons res1)
3515 (message "c-parse-state INVALIDITY at %s: %s"
3516 here res1)
3517 (message "Old state:")
3518 (c-replay-parse-state-state))
3520 (c-record-parse-state-state)
3521 res2 ; res1 correct a cascading series of errors ASAP
3524 (defun c-toggle-parse-state-debug (&optional arg)
3525 (interactive "P")
3526 (setq c-debug-parse-state (c-calculate-state arg c-debug-parse-state))
3527 (fset 'c-parse-state (symbol-function (if c-debug-parse-state
3528 'c-debug-parse-state
3529 'c-real-parse-state)))
3530 (c-keep-region-active)
3531 (message "c-debug-parse-state %sabled"
3532 (if c-debug-parse-state "en" "dis")))
3533 (when c-debug-parse-state
3534 (c-toggle-parse-state-debug 1))
3537 (defun c-whack-state-before (bufpos paren-state)
3538 ;; Whack off any state information from PAREN-STATE which lies
3539 ;; before BUFPOS. Not destructive on PAREN-STATE.
3540 (let* ((newstate (list nil))
3541 (ptr newstate)
3542 car)
3543 (while paren-state
3544 (setq car (car paren-state)
3545 paren-state (cdr paren-state))
3546 (if (< (if (consp car) (car car) car) bufpos)
3547 (setq paren-state nil)
3548 (setcdr ptr (list car))
3549 (setq ptr (cdr ptr))))
3550 (cdr newstate)))
3552 (defun c-whack-state-after (bufpos paren-state)
3553 ;; Whack off any state information from PAREN-STATE which lies at or
3554 ;; after BUFPOS. Not destructive on PAREN-STATE.
3555 (catch 'done
3556 (while paren-state
3557 (let ((car (car paren-state)))
3558 (if (consp car)
3559 ;; just check the car, because in a balanced brace
3560 ;; expression, it must be impossible for the corresponding
3561 ;; close brace to be before point, but the open brace to
3562 ;; be after.
3563 (if (<= bufpos (car car))
3564 nil ; whack it off
3565 (if (< bufpos (cdr car))
3566 ;; its possible that the open brace is before
3567 ;; bufpos, but the close brace is after. In that
3568 ;; case, convert this to a non-cons element. The
3569 ;; rest of the state is before bufpos, so we're
3570 ;; done.
3571 (throw 'done (cons (car car) (cdr paren-state)))
3572 ;; we know that both the open and close braces are
3573 ;; before bufpos, so we also know that everything else
3574 ;; on state is before bufpos.
3575 (throw 'done paren-state)))
3576 (if (<= bufpos car)
3577 nil ; whack it off
3578 ;; it's before bufpos, so everything else should too.
3579 (throw 'done paren-state)))
3580 (setq paren-state (cdr paren-state)))
3581 nil)))
3583 (defun c-most-enclosing-brace (paren-state &optional bufpos)
3584 ;; Return the bufpos of the innermost enclosing open paren before
3585 ;; bufpos, or nil if none was found.
3586 (let (enclosingp)
3587 (or bufpos (setq bufpos 134217727))
3588 (while paren-state
3589 (setq enclosingp (car paren-state)
3590 paren-state (cdr paren-state))
3591 (if (or (consp enclosingp)
3592 (>= enclosingp bufpos))
3593 (setq enclosingp nil)
3594 (setq paren-state nil)))
3595 enclosingp))
3597 (defun c-least-enclosing-brace (paren-state)
3598 ;; Return the bufpos of the outermost enclosing open paren, or nil
3599 ;; if none was found.
3600 (let (pos elem)
3601 (while paren-state
3602 (setq elem (car paren-state)
3603 paren-state (cdr paren-state))
3604 (if (integerp elem)
3605 (setq pos elem)))
3606 pos))
3608 (defun c-safe-position (bufpos paren-state)
3609 ;; Return the closest "safe" position recorded on PAREN-STATE that
3610 ;; is higher up than BUFPOS. Return nil if PAREN-STATE doesn't
3611 ;; contain any. Return nil if BUFPOS is nil, which is useful to
3612 ;; find the closest limit before a given limit that might be nil.
3614 ;; A "safe" position is a position at or after a recorded open
3615 ;; paren, or after a recorded close paren. The returned position is
3616 ;; thus either the first position after a close brace, or the first
3617 ;; position after an enclosing paren, or at the enclosing paren in
3618 ;; case BUFPOS is immediately after it.
3619 (when bufpos
3620 (let (elem)
3621 (catch 'done
3622 (while paren-state
3623 (setq elem (car paren-state))
3624 (if (consp elem)
3625 (cond ((< (cdr elem) bufpos)
3626 (throw 'done (cdr elem)))
3627 ((< (car elem) bufpos)
3628 ;; See below.
3629 (throw 'done (min (1+ (car elem)) bufpos))))
3630 (if (< elem bufpos)
3631 ;; elem is the position at and not after the opening paren, so
3632 ;; we can go forward one more step unless it's equal to
3633 ;; bufpos. This is useful in some cases avoid an extra paren
3634 ;; level between the safe position and bufpos.
3635 (throw 'done (min (1+ elem) bufpos))))
3636 (setq paren-state (cdr paren-state)))))))
3638 (defun c-beginning-of-syntax ()
3639 ;; This is used for `font-lock-beginning-of-syntax-function'. It
3640 ;; goes to the closest previous point that is known to be outside
3641 ;; any string literal or comment. `c-state-cache' is used if it has
3642 ;; a position in the vicinity.
3643 (let* ((paren-state c-state-cache)
3644 elem
3646 (pos (catch 'done
3647 ;; Note: Similar code in `c-safe-position'. The
3648 ;; difference is that we accept a safe position at
3649 ;; the point and don't bother to go forward past open
3650 ;; parens.
3651 (while paren-state
3652 (setq elem (car paren-state))
3653 (if (consp elem)
3654 (cond ((<= (cdr elem) (point))
3655 (throw 'done (cdr elem)))
3656 ((<= (car elem) (point))
3657 (throw 'done (car elem))))
3658 (if (<= elem (point))
3659 (throw 'done elem)))
3660 (setq paren-state (cdr paren-state)))
3661 (point-min))))
3663 (if (> pos (- (point) 4000))
3664 (goto-char pos)
3665 ;; The position is far back. Try `c-beginning-of-defun-1'
3666 ;; (although we can't be entirely sure it will go to a position
3667 ;; outside a comment or string in current emacsen). FIXME:
3668 ;; Consult `syntax-ppss' here.
3669 (c-beginning-of-defun-1)
3670 (if (< (point) pos)
3671 (goto-char pos)))))
3674 ;; Tools for scanning identifiers and other tokens.
3676 (defun c-on-identifier ()
3677 "Return non-nil if the point is on or directly after an identifier.
3678 Keywords are recognized and not considered identifiers. If an
3679 identifier is detected, the returned value is its starting position.
3680 If an identifier ends at the point and another begins at it \(can only
3681 happen in Pike) then the point for the preceding one is returned.
3683 Note that this function might do hidden buffer changes. See the
3684 comment at the start of cc-engine.el for more info."
3686 ;; FIXME: Shouldn't this function handle "operator" in C++?
3688 (save-excursion
3689 (skip-syntax-backward "w_")
3693 ;; Check for a normal (non-keyword) identifier.
3694 (and (looking-at c-symbol-start)
3695 (not (looking-at c-keywords-regexp))
3696 (point))
3698 (when (c-major-mode-is 'pike-mode)
3699 ;; Handle the `<operator> syntax in Pike.
3700 (let ((pos (point)))
3701 (skip-chars-backward "-!%&*+/<=>^|~[]()")
3702 (and (if (< (skip-chars-backward "`") 0)
3704 (goto-char pos)
3705 (eq (char-after) ?\`))
3706 (looking-at c-symbol-key)
3707 (>= (match-end 0) pos)
3708 (point))))
3710 ;; Handle the "operator +" syntax in C++.
3711 (when (and c-overloadable-operators-regexp
3712 (= (c-backward-token-2 0) 0))
3714 (cond ((and (looking-at c-overloadable-operators-regexp)
3715 (or (not c-opt-op-identifier-prefix)
3716 (and (= (c-backward-token-2 1) 0)
3717 (looking-at c-opt-op-identifier-prefix))))
3718 (point))
3720 ((save-excursion
3721 (and c-opt-op-identifier-prefix
3722 (looking-at c-opt-op-identifier-prefix)
3723 (= (c-forward-token-2 1) 0)
3724 (looking-at c-overloadable-operators-regexp)))
3725 (point))))
3729 (defsubst c-simple-skip-symbol-backward ()
3730 ;; If the point is at the end of a symbol then skip backward to the
3731 ;; beginning of it. Don't move otherwise. Return non-nil if point
3732 ;; moved.
3734 ;; This function might do hidden buffer changes.
3735 (or (< (skip-syntax-backward "w_") 0)
3736 (and (c-major-mode-is 'pike-mode)
3737 ;; Handle the `<operator> syntax in Pike.
3738 (let ((pos (point)))
3739 (if (and (< (skip-chars-backward "-!%&*+/<=>^|~[]()") 0)
3740 (< (skip-chars-backward "`") 0)
3741 (looking-at c-symbol-key)
3742 (>= (match-end 0) pos))
3744 (goto-char pos)
3745 nil)))))
3747 (defun c-beginning-of-current-token (&optional back-limit)
3748 ;; Move to the beginning of the current token. Do not move if not
3749 ;; in the middle of one. BACK-LIMIT may be used to bound the
3750 ;; backward search; if given it's assumed to be at the boundary
3751 ;; between two tokens. Return non-nil if the point is moved, nil
3752 ;; otherwise.
3754 ;; This function might do hidden buffer changes.
3755 (let ((start (point)))
3756 (if (looking-at "\\w\\|\\s_")
3757 (skip-syntax-backward "w_" back-limit)
3758 (when (< (skip-syntax-backward ".()" back-limit) 0)
3759 (while (let ((pos (or (and (looking-at c-nonsymbol-token-regexp)
3760 (match-end 0))
3761 ;; `c-nonsymbol-token-regexp' should always match
3762 ;; since we've skipped backward over punctuation
3763 ;; or paren syntax, but consume one char in case
3764 ;; it doesn't so that we don't leave point before
3765 ;; some earlier incorrect token.
3766 (1+ (point)))))
3767 (if (<= pos start)
3768 (goto-char pos))))))
3769 (< (point) start)))
3771 (defun c-end-of-current-token (&optional back-limit)
3772 ;; Move to the end of the current token. Do not move if not in the
3773 ;; middle of one. BACK-LIMIT may be used to bound the backward
3774 ;; search; if given it's assumed to be at the boundary between two
3775 ;; tokens. Return non-nil if the point is moved, nil otherwise.
3777 ;; This function might do hidden buffer changes.
3778 (let ((start (point)))
3779 (cond ((< (skip-syntax-backward "w_" (1- start)) 0)
3780 (skip-syntax-forward "w_"))
3781 ((< (skip-syntax-backward ".()" back-limit) 0)
3782 (while (progn
3783 (if (looking-at c-nonsymbol-token-regexp)
3784 (goto-char (match-end 0))
3785 ;; `c-nonsymbol-token-regexp' should always match since
3786 ;; we've skipped backward over punctuation or paren
3787 ;; syntax, but move forward in case it doesn't so that
3788 ;; we don't leave point earlier than we started with.
3789 (forward-char))
3790 (< (point) start)))))
3791 (> (point) start)))
3793 (defconst c-jump-syntax-balanced
3794 (if (memq 'gen-string-delim c-emacs-features)
3795 "\\w\\|\\s_\\|\\s(\\|\\s)\\|\\s\"\\|\\s|"
3796 "\\w\\|\\s_\\|\\s(\\|\\s)\\|\\s\""))
3798 (defconst c-jump-syntax-unbalanced
3799 (if (memq 'gen-string-delim c-emacs-features)
3800 "\\w\\|\\s_\\|\\s\"\\|\\s|"
3801 "\\w\\|\\s_\\|\\s\""))
3803 (defun c-forward-token-2 (&optional count balanced limit)
3804 "Move forward by tokens.
3805 A token is defined as all symbols and identifiers which aren't
3806 syntactic whitespace \(note that multicharacter tokens like \"==\" are
3807 treated properly). Point is always either left at the beginning of a
3808 token or not moved at all. COUNT specifies the number of tokens to
3809 move; a negative COUNT moves in the opposite direction. A COUNT of 0
3810 moves to the next token beginning only if not already at one. If
3811 BALANCED is true, move over balanced parens, otherwise move into them.
3812 Also, if BALANCED is true, never move out of an enclosing paren.
3814 LIMIT sets the limit for the movement and defaults to the point limit.
3815 The case when LIMIT is set in the middle of a token, comment or macro
3816 is handled correctly, i.e. the point won't be left there.
3818 Return the number of tokens left to move \(positive or negative). If
3819 BALANCED is true, a move over a balanced paren counts as one. Note
3820 that if COUNT is 0 and no appropriate token beginning is found, 1 will
3821 be returned. Thus, a return value of 0 guarantees that point is at
3822 the requested position and a return value less \(without signs) than
3823 COUNT guarantees that point is at the beginning of some token.
3825 Note that this function might do hidden buffer changes. See the
3826 comment at the start of cc-engine.el for more info."
3828 (or count (setq count 1))
3829 (if (< count 0)
3830 (- (c-backward-token-2 (- count) balanced limit))
3832 (let ((jump-syntax (if balanced
3833 c-jump-syntax-balanced
3834 c-jump-syntax-unbalanced))
3835 (last (point))
3836 (prev (point)))
3838 (if (zerop count)
3839 ;; If count is zero we should jump if in the middle of a token.
3840 (c-end-of-current-token))
3842 (save-restriction
3843 (if limit (narrow-to-region (point-min) limit))
3844 (if (/= (point)
3845 (progn (c-forward-syntactic-ws) (point)))
3846 ;; Skip whitespace. Count this as a move if we did in
3847 ;; fact move.
3848 (setq count (max (1- count) 0)))
3850 (if (eobp)
3851 ;; Moved out of bounds. Make sure the returned count isn't zero.
3852 (progn
3853 (if (zerop count) (setq count 1))
3854 (goto-char last))
3856 ;; Use `condition-case' to avoid having the limit tests
3857 ;; inside the loop.
3858 (condition-case nil
3859 (while (and
3860 (> count 0)
3861 (progn
3862 (setq last (point))
3863 (cond ((looking-at jump-syntax)
3864 (goto-char (scan-sexps (point) 1))
3866 ((looking-at c-nonsymbol-token-regexp)
3867 (goto-char (match-end 0))
3869 ;; `c-nonsymbol-token-regexp' above should always
3870 ;; match if there are correct tokens. Try to
3871 ;; widen to see if the limit was set in the
3872 ;; middle of one, else fall back to treating
3873 ;; the offending thing as a one character token.
3874 ((and limit
3875 (save-restriction
3876 (widen)
3877 (looking-at c-nonsymbol-token-regexp)))
3878 nil)
3880 (forward-char)
3881 t))))
3882 (c-forward-syntactic-ws)
3883 (setq prev last
3884 count (1- count)))
3885 (error (goto-char last)))
3887 (when (eobp)
3888 (goto-char prev)
3889 (setq count (1+ count)))))
3891 count)))
3893 (defun c-backward-token-2 (&optional count balanced limit)
3894 "Move backward by tokens.
3895 See `c-forward-token-2' for details."
3897 (or count (setq count 1))
3898 (if (< count 0)
3899 (- (c-forward-token-2 (- count) balanced limit))
3901 (or limit (setq limit (point-min)))
3902 (let ((jump-syntax (if balanced
3903 c-jump-syntax-balanced
3904 c-jump-syntax-unbalanced))
3905 (last (point)))
3907 (if (zerop count)
3908 ;; The count is zero so try to skip to the beginning of the
3909 ;; current token.
3910 (if (> (point)
3911 (progn (c-beginning-of-current-token) (point)))
3912 (if (< (point) limit)
3913 ;; The limit is inside the same token, so return 1.
3914 (setq count 1))
3916 ;; We're not in the middle of a token. If there's
3917 ;; whitespace after the point then we must move backward,
3918 ;; so set count to 1 in that case.
3919 (and (looking-at c-syntactic-ws-start)
3920 ;; If we're looking at a '#' that might start a cpp
3921 ;; directive then we have to do a more elaborate check.
3922 (or (/= (char-after) ?#)
3923 (not c-opt-cpp-prefix)
3924 (save-excursion
3925 (and (= (point)
3926 (progn (beginning-of-line)
3927 (looking-at "[ \t]*")
3928 (match-end 0)))
3929 (or (bobp)
3930 (progn (backward-char)
3931 (not (eq (char-before) ?\\)))))))
3932 (setq count 1))))
3934 ;; Use `condition-case' to avoid having to check for buffer
3935 ;; limits in `backward-char', `scan-sexps' and `goto-char' below.
3936 (condition-case nil
3937 (while (and
3938 (> count 0)
3939 (progn
3940 (c-backward-syntactic-ws)
3941 (backward-char)
3942 (if (looking-at jump-syntax)
3943 (goto-char (scan-sexps (1+ (point)) -1))
3944 ;; This can be very inefficient if there's a long
3945 ;; sequence of operator tokens without any separation.
3946 ;; That doesn't happen in practice, anyway.
3947 (c-beginning-of-current-token))
3948 (>= (point) limit)))
3949 (setq last (point)
3950 count (1- count)))
3951 (error (goto-char last)))
3953 (if (< (point) limit)
3954 (goto-char last))
3956 count)))
3958 (defun c-forward-token-1 (&optional count balanced limit)
3959 "Like `c-forward-token-2' but doesn't treat multicharacter operator
3960 tokens like \"==\" as single tokens, i.e. all sequences of symbol
3961 characters are jumped over character by character. This function is
3962 for compatibility only; it's only a wrapper over `c-forward-token-2'."
3963 (let ((c-nonsymbol-token-regexp "\\s."))
3964 (c-forward-token-2 count balanced limit)))
3966 (defun c-backward-token-1 (&optional count balanced limit)
3967 "Like `c-backward-token-2' but doesn't treat multicharacter operator
3968 tokens like \"==\" as single tokens, i.e. all sequences of symbol
3969 characters are jumped over character by character. This function is
3970 for compatibility only; it's only a wrapper over `c-backward-token-2'."
3971 (let ((c-nonsymbol-token-regexp "\\s."))
3972 (c-backward-token-2 count balanced limit)))
3975 ;; Tools for doing searches restricted to syntactically relevant text.
3977 (defun c-syntactic-re-search-forward (regexp &optional bound noerror
3978 paren-level not-inside-token
3979 lookbehind-submatch)
3980 "Like `re-search-forward', but only report matches that are found
3981 in syntactically significant text. I.e. matches in comments, macros
3982 or string literals are ignored. The start point is assumed to be
3983 outside any comment, macro or string literal, or else the content of
3984 that region is taken as syntactically significant text.
3986 If PAREN-LEVEL is non-nil, an additional restriction is added to
3987 ignore matches in nested paren sexps. The search will also not go
3988 outside the current list sexp, which has the effect that if the point
3989 should be moved to BOUND when no match is found \(i.e. NOERROR is
3990 neither nil nor t), then it will be at the closing paren if the end of
3991 the current list sexp is encountered first.
3993 If NOT-INSIDE-TOKEN is non-nil, matches in the middle of tokens are
3994 ignored. Things like multicharacter operators and special symbols
3995 \(e.g. \"`()\" in Pike) are handled but currently not floating point
3996 constants.
3998 If LOOKBEHIND-SUBMATCH is non-nil, it's taken as a number of a
3999 subexpression in REGEXP. The end of that submatch is used as the
4000 position to check for syntactic significance. If LOOKBEHIND-SUBMATCH
4001 isn't used or if that subexpression didn't match then the start
4002 position of the whole match is used instead. The \"look behind\"
4003 subexpression is never tested before the starting position, so it
4004 might be a good idea to include \\=\\= as a match alternative in it.
4006 Optimization note: Matches might be missed if the \"look behind\"
4007 subexpression can match the end of nonwhite syntactic whitespace,
4008 i.e. the end of comments or cpp directives. This since the function
4009 skips over such things before resuming the search. It's on the other
4010 hand not safe to assume that the \"look behind\" subexpression never
4011 matches syntactic whitespace.
4013 Bug: Unbalanced parens inside cpp directives are currently not handled
4014 correctly \(i.e. they don't get ignored as they should) when
4015 PAREN-LEVEL is set.
4017 Note that this function might do hidden buffer changes. See the
4018 comment at the start of cc-engine.el for more info."
4020 (or bound (setq bound (point-max)))
4021 (if paren-level (setq paren-level -1))
4023 ;;(message "c-syntactic-re-search-forward %s %s %S" (point) bound regexp)
4025 (let ((start (point))
4027 ;; Start position for the last search.
4028 search-pos
4029 ;; The `parse-partial-sexp' state between the start position
4030 ;; and the point.
4031 state
4032 ;; The current position after the last state update. The next
4033 ;; `parse-partial-sexp' continues from here.
4034 (state-pos (point))
4035 ;; The position at which to check the state and the state
4036 ;; there. This is separate from `state-pos' since we might
4037 ;; need to back up before doing the next search round.
4038 check-pos check-state
4039 ;; Last position known to end a token.
4040 (last-token-end-pos (point-min))
4041 ;; Set when a valid match is found.
4042 found)
4044 (condition-case err
4045 (while
4046 (and
4047 (progn
4048 (setq search-pos (point))
4049 (re-search-forward regexp bound noerror))
4051 (progn
4052 (setq state (parse-partial-sexp
4053 state-pos (match-beginning 0) paren-level nil state)
4054 state-pos (point))
4055 (if (setq check-pos (and lookbehind-submatch
4056 (or (not paren-level)
4057 (>= (car state) 0))
4058 (match-end lookbehind-submatch)))
4059 (setq check-state (parse-partial-sexp
4060 state-pos check-pos paren-level nil state))
4061 (setq check-pos state-pos
4062 check-state state))
4064 ;; NOTE: If we got a look behind subexpression and get
4065 ;; an insignificant match in something that isn't
4066 ;; syntactic whitespace (i.e. strings or in nested
4067 ;; parentheses), then we can never skip more than a
4068 ;; single character from the match start position
4069 ;; (i.e. `state-pos' here) before continuing the
4070 ;; search. That since the look behind subexpression
4071 ;; might match the end of the insignificant region in
4072 ;; the next search.
4074 (cond
4075 ((elt check-state 7)
4076 ;; Match inside a line comment. Skip to eol. Use
4077 ;; `re-search-forward' instead of `skip-chars-forward' to get
4078 ;; the right bound behavior.
4079 (re-search-forward "[\n\r]" bound noerror))
4081 ((elt check-state 4)
4082 ;; Match inside a block comment. Skip to the '*/'.
4083 (search-forward "*/" bound noerror))
4085 ((and (not (elt check-state 5))
4086 (eq (char-before check-pos) ?/)
4087 (not (c-get-char-property (1- check-pos) 'syntax-table))
4088 (memq (char-after check-pos) '(?/ ?*)))
4089 ;; Match in the middle of the opener of a block or line
4090 ;; comment.
4091 (if (= (char-after check-pos) ?/)
4092 (re-search-forward "[\n\r]" bound noerror)
4093 (search-forward "*/" bound noerror)))
4095 ;; The last `parse-partial-sexp' above might have
4096 ;; stopped short of the real check position if the end
4097 ;; of the current sexp was encountered in paren-level
4098 ;; mode. The checks above are always false in that
4099 ;; case, and since they can do better skipping in
4100 ;; lookbehind-submatch mode, we do them before
4101 ;; checking the paren level.
4103 ((and paren-level
4104 (/= (setq tmp (car check-state)) 0))
4105 ;; Check the paren level first since we're short of the
4106 ;; syntactic checking position if the end of the
4107 ;; current sexp was encountered by `parse-partial-sexp'.
4108 (if (> tmp 0)
4110 ;; Inside a nested paren sexp.
4111 (if lookbehind-submatch
4112 ;; See the NOTE above.
4113 (progn (goto-char state-pos) t)
4114 ;; Skip out of the paren quickly.
4115 (setq state (parse-partial-sexp state-pos bound 0 nil state)
4116 state-pos (point)))
4118 ;; Have exited the current paren sexp.
4119 (if noerror
4120 (progn
4121 ;; The last `parse-partial-sexp' call above
4122 ;; has left us just after the closing paren
4123 ;; in this case, so we can modify the bound
4124 ;; to leave the point at the right position
4125 ;; upon return.
4126 (setq bound (1- (point)))
4127 nil)
4128 (signal 'search-failed (list regexp)))))
4130 ((setq tmp (elt check-state 3))
4131 ;; Match inside a string.
4132 (if (or lookbehind-submatch
4133 (not (integerp tmp)))
4134 ;; See the NOTE above.
4135 (progn (goto-char state-pos) t)
4136 ;; Skip to the end of the string before continuing.
4137 (let ((ender (make-string 1 tmp)) (continue t))
4138 (while (if (search-forward ender bound noerror)
4139 (progn
4140 (setq state (parse-partial-sexp
4141 state-pos (point) nil nil state)
4142 state-pos (point))
4143 (elt state 3))
4144 (setq continue nil)))
4145 continue)))
4147 ((save-excursion
4148 (save-match-data
4149 (c-beginning-of-macro start)))
4150 ;; Match inside a macro. Skip to the end of it.
4151 (c-end-of-macro)
4152 (cond ((<= (point) bound) t)
4153 (noerror nil)
4154 (t (signal 'search-failed (list regexp)))))
4156 ((and not-inside-token
4157 (or (< check-pos last-token-end-pos)
4158 (< check-pos
4159 (save-excursion
4160 (goto-char check-pos)
4161 (save-match-data
4162 (c-end-of-current-token last-token-end-pos))
4163 (setq last-token-end-pos (point))))))
4164 ;; Inside a token.
4165 (if lookbehind-submatch
4166 ;; See the NOTE above.
4167 (goto-char state-pos)
4168 (goto-char (min last-token-end-pos bound))))
4171 ;; A real match.
4172 (setq found t)
4173 nil)))
4175 ;; Should loop to search again, but take care to avoid
4176 ;; looping on the same spot.
4177 (or (/= search-pos (point))
4178 (if (= (point) bound)
4179 (if noerror
4181 (signal 'search-failed (list regexp)))
4182 (forward-char)
4183 t))))
4185 (error
4186 (goto-char start)
4187 (signal (car err) (cdr err))))
4189 ;;(message "c-syntactic-re-search-forward done %s" (or (match-end 0) (point)))
4191 (if found
4192 (progn
4193 (goto-char (match-end 0))
4194 (match-end 0))
4196 ;; Search failed. Set point as appropriate.
4197 (if (eq noerror t)
4198 (goto-char start)
4199 (goto-char bound))
4200 nil)))
4202 (defvar safe-pos-list) ; bound in c-syntactic-skip-backward
4204 (defsubst c-ssb-lit-begin ()
4205 ;; Return the start of the literal point is in, or nil.
4206 ;; We read and write the variables `safe-pos', `safe-pos-list', `state'
4207 ;; bound in the caller.
4209 ;; Use `parse-partial-sexp' from a safe position down to the point to check
4210 ;; if it's outside comments and strings.
4211 (save-excursion
4212 (let ((pos (point)) safe-pos state)
4213 ;; Pick a safe position as close to the point as possible.
4215 ;; FIXME: Consult `syntax-ppss' here if our cache doesn't give a good
4216 ;; position.
4218 (while (and safe-pos-list
4219 (> (car safe-pos-list) (point)))
4220 (setq safe-pos-list (cdr safe-pos-list)))
4221 (unless (setq safe-pos (car-safe safe-pos-list))
4222 (setq safe-pos (max (or (c-safe-position
4223 (point) (or c-state-cache
4224 (c-parse-state)))
4226 (point-min))
4227 safe-pos-list (list safe-pos)))
4229 ;; Cache positions along the way to use if we have to back up more. We
4230 ;; cache every closing paren on the same level. If the paren cache is
4231 ;; relevant in this region then we're typically already on the same
4232 ;; level as the target position. Note that we might cache positions
4233 ;; after opening parens in case safe-pos is in a nested list. That's
4234 ;; both uncommon and harmless.
4235 (while (progn
4236 (setq state (parse-partial-sexp
4237 safe-pos pos 0))
4238 (< (point) pos))
4239 (setq safe-pos (point)
4240 safe-pos-list (cons safe-pos safe-pos-list)))
4242 ;; If the state contains the start of the containing sexp we cache that
4243 ;; position too, so that parse-partial-sexp in the next run has a bigger
4244 ;; chance of starting at the same level as the target position and thus
4245 ;; will get more good safe positions into the list.
4246 (if (elt state 1)
4247 (setq safe-pos (1+ (elt state 1))
4248 safe-pos-list (cons safe-pos safe-pos-list)))
4250 (if (or (elt state 3) (elt state 4))
4251 ;; Inside string or comment. Continue search at the
4252 ;; beginning of it.
4253 (elt state 8)))))
4255 (defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4256 "Like `skip-chars-backward' but only look at syntactically relevant chars,
4257 i.e. don't stop at positions inside syntactic whitespace or string
4258 literals. Preprocessor directives are also ignored, with the exception
4259 of the one that the point starts within, if any. If LIMIT is given,
4260 it's assumed to be at a syntactically relevant position.
4262 If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4263 sexps, and the search will also not go outside the current paren sexp.
4264 However, if LIMIT or the buffer limit is reached inside a nested paren
4265 then the point will be left at the limit.
4267 Non-nil is returned if the point moved, nil otherwise.
4269 Note that this function might do hidden buffer changes. See the
4270 comment at the start of cc-engine.el for more info."
4272 (let ((start (point))
4273 state-2
4274 ;; A list of syntactically relevant positions in descending
4275 ;; order. It's used to avoid scanning repeatedly over
4276 ;; potentially large regions with `parse-partial-sexp' to verify
4277 ;; each position. Used in `c-ssb-lit-begin'
4278 safe-pos-list
4279 ;; The result from `c-beginning-of-macro' at the start position or the
4280 ;; start position itself if it isn't within a macro. Evaluated on
4281 ;; demand.
4282 start-macro-beg
4283 ;; The earliest position after the current one with the same paren
4284 ;; level. Used only when `paren-level' is set.
4285 lit-beg
4286 (paren-level-pos (point)))
4288 (while
4289 (progn
4290 ;; The next loop "tries" to find the end point each time round,
4291 ;; loops when it hasn't succeeded.
4292 (while
4293 (and
4294 (let ((pos (point)))
4295 (while (and
4296 (< (skip-chars-backward skip-chars limit) 0)
4297 ;; Don't stop inside a literal.
4298 (when (setq lit-beg (c-ssb-lit-begin))
4299 (goto-char lit-beg)
4300 t)))
4301 (< (point) pos))
4303 (let ((pos (point)) state-2 pps-end-pos)
4305 (cond
4306 ((and paren-level
4307 (save-excursion
4308 (setq state-2 (parse-partial-sexp
4309 pos paren-level-pos -1)
4310 pps-end-pos (point))
4311 (/= (car state-2) 0)))
4312 ;; Not at the right level.
4314 (if (and (< (car state-2) 0)
4315 ;; We stop above if we go out of a paren.
4316 ;; Now check whether it precedes or is
4317 ;; nested in the starting sexp.
4318 (save-excursion
4319 (setq state-2
4320 (parse-partial-sexp
4321 pps-end-pos paren-level-pos
4322 nil nil state-2))
4323 (< (car state-2) 0)))
4325 ;; We've stopped short of the starting position
4326 ;; so the hit was inside a nested list. Go up
4327 ;; until we are at the right level.
4328 (condition-case nil
4329 (progn
4330 (goto-char (scan-lists pos -1
4331 (- (car state-2))))
4332 (setq paren-level-pos (point))
4333 (if (and limit (>= limit paren-level-pos))
4334 (progn
4335 (goto-char limit)
4336 nil)
4338 (error
4339 (goto-char (or limit (point-min)))
4340 nil))
4342 ;; The hit was outside the list at the start
4343 ;; position. Go to the start of the list and exit.
4344 (goto-char (1+ (elt state-2 1)))
4345 nil))
4347 ((c-beginning-of-macro limit)
4348 ;; Inside a macro.
4349 (if (< (point)
4350 (or start-macro-beg
4351 (setq start-macro-beg
4352 (save-excursion
4353 (goto-char start)
4354 (c-beginning-of-macro limit)
4355 (point)))))
4358 ;; It's inside the same macro we started in so it's
4359 ;; a relevant match.
4360 (goto-char pos)
4361 nil))))))
4363 (> (point)
4364 (progn
4365 ;; Skip syntactic ws afterwards so that we don't stop at the
4366 ;; end of a comment if `skip-chars' is something like "^/".
4367 (c-backward-syntactic-ws)
4368 (point)))))
4370 ;; We might want to extend this with more useful return values in
4371 ;; the future.
4372 (/= (point) start)))
4374 ;; The following is an alternative implementation of
4375 ;; `c-syntactic-skip-backward' that uses backward movement to keep
4376 ;; track of the syntactic context. It turned out to be generally
4377 ;; slower than the one above which uses forward checks from earlier
4378 ;; safe positions.
4380 ;;(defconst c-ssb-stop-re
4381 ;; ;; The regexp matching chars `c-syntactic-skip-backward' needs to
4382 ;; ;; stop at to avoid going into comments and literals.
4383 ;; (concat
4384 ;; ;; Match comment end syntax and string literal syntax. Also match
4385 ;; ;; '/' for block comment endings (not covered by comment end
4386 ;; ;; syntax).
4387 ;; "\\s>\\|/\\|\\s\""
4388 ;; (if (memq 'gen-string-delim c-emacs-features)
4389 ;; "\\|\\s|"
4390 ;; "")
4391 ;; (if (memq 'gen-comment-delim c-emacs-features)
4392 ;; "\\|\\s!"
4393 ;; "")))
4395 ;;(defconst c-ssb-stop-paren-re
4396 ;; ;; Like `c-ssb-stop-re' but also stops at paren chars.
4397 ;; (concat c-ssb-stop-re "\\|\\s(\\|\\s)"))
4399 ;;(defconst c-ssb-sexp-end-re
4400 ;; ;; Regexp matching the ending syntax of a complex sexp.
4401 ;; (concat c-string-limit-regexp "\\|\\s)"))
4403 ;;(defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4404 ;; "Like `skip-chars-backward' but only look at syntactically relevant chars,
4405 ;;i.e. don't stop at positions inside syntactic whitespace or string
4406 ;;literals. Preprocessor directives are also ignored. However, if the
4407 ;;point is within a comment, string literal or preprocessor directory to
4408 ;;begin with, its contents is treated as syntactically relevant chars.
4409 ;;If LIMIT is given, it limits the backward search and the point will be
4410 ;;left there if no earlier position is found.
4412 ;;If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4413 ;;sexps, and the search will also not go outside the current paren sexp.
4414 ;;However, if LIMIT or the buffer limit is reached inside a nested paren
4415 ;;then the point will be left at the limit.
4417 ;;Non-nil is returned if the point moved, nil otherwise.
4419 ;;Note that this function might do hidden buffer changes. See the
4420 ;;comment at the start of cc-engine.el for more info."
4422 ;; (save-restriction
4423 ;; (when limit
4424 ;; (narrow-to-region limit (point-max)))
4426 ;; (let ((start (point)))
4427 ;; (catch 'done
4428 ;; (while (let ((last-pos (point))
4429 ;; (stop-pos (progn
4430 ;; (skip-chars-backward skip-chars)
4431 ;; (point))))
4433 ;; ;; Skip back over the same region as
4434 ;; ;; `skip-chars-backward' above, but keep to
4435 ;; ;; syntactically relevant positions.
4436 ;; (goto-char last-pos)
4437 ;; (while (and
4438 ;; ;; `re-search-backward' with a single char regexp
4439 ;; ;; should be fast.
4440 ;; (re-search-backward
4441 ;; (if paren-level c-ssb-stop-paren-re c-ssb-stop-re)
4442 ;; stop-pos 'move)
4444 ;; (progn
4445 ;; (cond
4446 ;; ((looking-at "\\s(")
4447 ;; ;; `paren-level' is set and we've found the
4448 ;; ;; start of the containing paren.
4449 ;; (forward-char)
4450 ;; (throw 'done t))
4452 ;; ((looking-at c-ssb-sexp-end-re)
4453 ;; ;; We're at the end of a string literal or paren
4454 ;; ;; sexp (if `paren-level' is set).
4455 ;; (forward-char)
4456 ;; (condition-case nil
4457 ;; (c-backward-sexp)
4458 ;; (error
4459 ;; (goto-char limit)
4460 ;; (throw 'done t))))
4462 ;; (t
4463 ;; (forward-char)
4464 ;; ;; At the end of some syntactic ws or possibly
4465 ;; ;; after a plain '/' operator.
4466 ;; (let ((pos (point)))
4467 ;; (c-backward-syntactic-ws)
4468 ;; (if (= pos (point))
4469 ;; ;; Was a plain '/' operator. Go past it.
4470 ;; (backward-char)))))
4472 ;; (> (point) stop-pos))))
4474 ;; ;; Now the point is either at `stop-pos' or at some
4475 ;; ;; position further back if `stop-pos' was at a
4476 ;; ;; syntactically irrelevant place.
4478 ;; ;; Skip additional syntactic ws so that we don't stop
4479 ;; ;; at the end of a comment if `skip-chars' is
4480 ;; ;; something like "^/".
4481 ;; (c-backward-syntactic-ws)
4483 ;; (< (point) stop-pos))))
4485 ;; ;; We might want to extend this with more useful return values
4486 ;; ;; in the future.
4487 ;; (/= (point) start))))
4490 ;; Tools for handling comments and string literals.
4492 (defun c-in-literal (&optional lim detect-cpp)
4493 "Return the type of literal point is in, if any.
4494 The return value is `c' if in a C-style comment, `c++' if in a C++
4495 style comment, `string' if in a string literal, `pound' if DETECT-CPP
4496 is non-nil and in a preprocessor line, or nil if somewhere else.
4497 Optional LIM is used as the backward limit of the search. If omitted,
4498 or nil, `c-beginning-of-defun' is used.
4500 The last point calculated is cached if the cache is enabled, i.e. if
4501 `c-in-literal-cache' is bound to a two element vector.
4503 Note that this function might do hidden buffer changes. See the
4504 comment at the start of cc-engine.el for more info."
4505 (save-restriction
4506 (widen)
4507 (let* ((safe-place (c-state-semi-safe-place (point)))
4508 (lit (c-state-pp-to-literal safe-place (point))))
4509 (or (cadr lit)
4510 (and detect-cpp
4511 (save-excursion (c-beginning-of-macro))
4512 'pound)))))
4514 (defun c-literal-limits (&optional lim near not-in-delimiter)
4515 "Return a cons of the beginning and end positions of the comment or
4516 string surrounding point (including both delimiters), or nil if point
4517 isn't in one. If LIM is non-nil, it's used as the \"safe\" position
4518 to start parsing from. If NEAR is non-nil, then the limits of any
4519 literal next to point is returned. \"Next to\" means there's only
4520 spaces and tabs between point and the literal. The search for such a
4521 literal is done first in forward direction. If NOT-IN-DELIMITER is
4522 non-nil, the case when point is inside a starting delimiter won't be
4523 recognized. This only has effect for comments which have starting
4524 delimiters with more than one character.
4526 Note that this function might do hidden buffer changes. See the
4527 comment at the start of cc-engine.el for more info."
4529 (save-excursion
4530 (let* ((pos (point))
4531 (lim (or lim (c-state-semi-safe-place pos)))
4532 (pp-to-lit (save-restriction
4533 (widen)
4534 (c-state-pp-to-literal lim pos not-in-delimiter)))
4535 (state (car pp-to-lit))
4536 (lit-limits (car (cddr pp-to-lit))))
4538 (cond
4539 (lit-limits)
4541 (near
4542 (goto-char pos)
4543 ;; Search forward for a literal.
4544 (skip-chars-forward " \t")
4545 (cond
4546 ((looking-at c-string-limit-regexp) ; String.
4547 (cons (point) (or (c-safe (c-forward-sexp 1) (point))
4548 (point-max))))
4550 ((looking-at c-comment-start-regexp) ; Line or block comment.
4551 (cons (point) (progn (c-forward-single-comment) (point))))
4554 ;; Search backward.
4555 (skip-chars-backward " \t")
4557 (let ((end (point)) beg)
4558 (cond
4559 ((save-excursion
4560 (< (skip-syntax-backward c-string-syntax) 0)) ; String.
4561 (setq beg (c-safe (c-backward-sexp 1) (point))))
4563 ((and (c-safe (forward-char -2) t)
4564 (looking-at "*/"))
4565 ;; Block comment. Due to the nature of line
4566 ;; comments, they will always be covered by the
4567 ;; normal case above.
4568 (goto-char end)
4569 (c-backward-single-comment)
4570 ;; If LIM is bogus, beg will be bogus.
4571 (setq beg (point))))
4573 (if beg (cons beg end))))))
4574 ))))
4576 ;; In case external callers use this; it did have a docstring.
4577 (defalias 'c-literal-limits-fast 'c-literal-limits)
4579 (defun c-collect-line-comments (range)
4580 "If the argument is a cons of two buffer positions (such as returned by
4581 `c-literal-limits'), and that range contains a C++ style line comment,
4582 then an extended range is returned that contains all adjacent line
4583 comments (i.e. all comments that starts in the same column with no
4584 empty lines or non-whitespace characters between them). Otherwise the
4585 argument is returned.
4587 Note that this function might do hidden buffer changes. See the
4588 comment at the start of cc-engine.el for more info."
4590 (save-excursion
4591 (condition-case nil
4592 (if (and (consp range) (progn
4593 (goto-char (car range))
4594 (looking-at c-line-comment-starter)))
4595 (let ((col (current-column))
4596 (beg (point))
4597 (bopl (c-point 'bopl))
4598 (end (cdr range)))
4599 ;; Got to take care in the backward direction to handle
4600 ;; comments which are preceded by code.
4601 (while (and (c-backward-single-comment)
4602 (>= (point) bopl)
4603 (looking-at c-line-comment-starter)
4604 (= col (current-column)))
4605 (setq beg (point)
4606 bopl (c-point 'bopl)))
4607 (goto-char end)
4608 (while (and (progn (skip-chars-forward " \t")
4609 (looking-at c-line-comment-starter))
4610 (= col (current-column))
4611 (prog1 (zerop (forward-line 1))
4612 (setq end (point)))))
4613 (cons beg end))
4614 range)
4615 (error range))))
4617 (defun c-literal-type (range)
4618 "Convenience function that given the result of `c-literal-limits',
4619 returns nil or the type of literal that the range surrounds, one
4620 of the symbols `c', `c++' or `string'. It's much faster than using
4621 `c-in-literal' and is intended to be used when you need both the
4622 type of a literal and its limits.
4624 Note that this function might do hidden buffer changes. See the
4625 comment at the start of cc-engine.el for more info."
4627 (if (consp range)
4628 (save-excursion
4629 (goto-char (car range))
4630 (cond ((looking-at c-string-limit-regexp) 'string)
4631 ((or (looking-at "//") ; c++ line comment
4632 (and (looking-at "\\s<") ; comment starter
4633 (looking-at "#"))) ; awk comment.
4634 'c++)
4635 (t 'c))) ; Assuming the range is valid.
4636 range))
4638 (defsubst c-determine-limit-get-base (start try-size)
4639 ;; Get a "safe place" approximately TRY-SIZE characters before START.
4640 ;; This doesn't preserve point.
4641 (let* ((pos (max (- start try-size) (point-min)))
4642 (base (c-state-semi-safe-place pos))
4643 (s (parse-partial-sexp base pos)))
4644 (if (or (nth 4 s) (nth 3 s)) ; comment or string
4645 (nth 8 s)
4646 (point))))
4648 (defun c-determine-limit (how-far-back &optional start try-size)
4649 ;; Return a buffer position HOW-FAR-BACK non-literal characters from START
4650 ;; (default point). This is done by going back further in the buffer then
4651 ;; searching forward for literals. The position found won't be in a
4652 ;; literal. We start searching for the sought position TRY-SIZE (default
4653 ;; twice HOW-FAR-BACK) bytes back from START. This function must be fast.
4654 ;; :-)
4655 (save-excursion
4656 (let* ((start (or start (point)))
4657 (try-size (or try-size (* 2 how-far-back)))
4658 (base (c-determine-limit-get-base start try-size))
4659 (pos base)
4661 (s (parse-partial-sexp pos pos)) ; null state.
4662 stack elt size
4663 (count 0))
4664 (while (< pos start)
4665 ;; Move forward one literal each time round this loop.
4666 ;; Move forward to the start of a comment or string.
4667 (setq s (parse-partial-sexp
4669 start
4670 nil ; target-depth
4671 nil ; stop-before
4672 s ; state
4673 'syntax-table)) ; stop-comment
4675 ;; Gather details of the non-literal-bit - starting pos and size.
4676 (setq size (- (if (or (nth 4 s) (nth 3 s))
4677 (nth 8 s)
4678 (point))
4679 pos))
4680 (if (> size 0)
4681 (setq stack (cons (cons pos size) stack)))
4683 ;; Move forward to the end of the comment/string.
4684 (if (or (nth 4 s) (nth 3 s))
4685 (setq s (parse-partial-sexp
4686 (point)
4687 start
4688 nil ; target-depth
4689 nil ; stop-before
4690 s ; state
4691 'syntax-table))) ; stop-comment
4692 (setq pos (point)))
4694 ;; Now try and find enough non-literal characters recorded on the stack.
4695 ;; Go back one recorded literal each time round this loop.
4696 (while (and (< count how-far-back)
4697 stack)
4698 (setq elt (car stack)
4699 stack (cdr stack))
4700 (setq count (+ count (cdr elt))))
4702 ;; Have we found enough yet?
4703 (cond
4704 ((>= count how-far-back)
4705 (+ (car elt) (- count how-far-back)))
4706 ((eq base (point-min))
4707 (point-min))
4709 (c-determine-limit (- how-far-back count) base try-size))))))
4711 (defun c-determine-+ve-limit (how-far &optional start-pos)
4712 ;; Return a buffer position about HOW-FAR non-literal characters forward
4713 ;; from START-POS (default point), which must not be inside a literal.
4714 (save-excursion
4715 (let ((pos (or start-pos (point)))
4716 (count how-far)
4717 (s (parse-partial-sexp (point) (point)))) ; null state
4718 (while (and (not (eobp))
4719 (> count 0))
4720 ;; Scan over counted characters.
4721 (setq s (parse-partial-sexp
4723 (min (+ pos count) (point-max))
4724 nil ; target-depth
4725 nil ; stop-before
4726 s ; state
4727 'syntax-table)) ; stop-comment
4728 (setq count (- count (- (point) pos) 1)
4729 pos (point))
4730 ;; Scan over literal characters.
4731 (if (nth 8 s)
4732 (setq s (parse-partial-sexp
4734 (point-max)
4735 nil ; target-depth
4736 nil ; stop-before
4737 s ; state
4738 'syntax-table) ; stop-comment
4739 pos (point))))
4740 (point))))
4743 ;; `c-find-decl-spots' and accompanying stuff.
4745 ;; Variables used in `c-find-decl-spots' to cache the search done for
4746 ;; the first declaration in the last call. When that function starts,
4747 ;; it needs to back up over syntactic whitespace to look at the last
4748 ;; token before the region being searched. That can sometimes cause
4749 ;; moves back and forth over a quite large region of comments and
4750 ;; macros, which would be repeated for each changed character when
4751 ;; we're called during fontification, since font-lock refontifies the
4752 ;; current line for each change. Thus it's worthwhile to cache the
4753 ;; first match.
4755 ;; `c-find-decl-syntactic-pos' is a syntactically relevant position in
4756 ;; the syntactic whitespace less or equal to some start position.
4757 ;; There's no cached value if it's nil.
4759 ;; `c-find-decl-match-pos' is the match position if
4760 ;; `c-find-decl-prefix-search' matched before the syntactic whitespace
4761 ;; at `c-find-decl-syntactic-pos', or nil if there's no such match.
4762 (defvar c-find-decl-syntactic-pos nil)
4763 (make-variable-buffer-local 'c-find-decl-syntactic-pos)
4764 (defvar c-find-decl-match-pos nil)
4765 (make-variable-buffer-local 'c-find-decl-match-pos)
4767 (defsubst c-invalidate-find-decl-cache (change-min-pos)
4768 (and c-find-decl-syntactic-pos
4769 (< change-min-pos c-find-decl-syntactic-pos)
4770 (setq c-find-decl-syntactic-pos nil)))
4772 ; (defface c-debug-decl-spot-face
4773 ; '((t (:background "Turquoise")))
4774 ; "Debug face to mark the spots where `c-find-decl-spots' stopped.")
4775 ; (defface c-debug-decl-sws-face
4776 ; '((t (:background "Khaki")))
4777 ; "Debug face to mark the syntactic whitespace between the declaration
4778 ; spots and the preceding token end.")
4780 (defmacro c-debug-put-decl-spot-faces (match-pos decl-pos)
4781 (when (facep 'c-debug-decl-spot-face)
4782 `(c-save-buffer-state ((match-pos ,match-pos) (decl-pos ,decl-pos))
4783 (c-debug-add-face (max match-pos (point-min)) decl-pos
4784 'c-debug-decl-sws-face)
4785 (c-debug-add-face decl-pos (min (1+ decl-pos) (point-max))
4786 'c-debug-decl-spot-face))))
4787 (defmacro c-debug-remove-decl-spot-faces (beg end)
4788 (when (facep 'c-debug-decl-spot-face)
4789 `(c-save-buffer-state ()
4790 (c-debug-remove-face ,beg ,end 'c-debug-decl-spot-face)
4791 (c-debug-remove-face ,beg ,end 'c-debug-decl-sws-face))))
4793 (defmacro c-find-decl-prefix-search ()
4794 ;; Macro used inside `c-find-decl-spots'. It ought to be a defun,
4795 ;; but it contains lots of free variables that refer to things
4796 ;; inside `c-find-decl-spots'. The point is left at `cfd-match-pos'
4797 ;; if there is a match, otherwise at `cfd-limit'.
4799 ;; The macro moves point forward to the next putative start of a declaration
4800 ;; or cfd-limit. This decl start is the next token after a "declaration
4801 ;; prefix". The declaration prefix is the earlier of `cfd-prop-match' and
4802 ;; `cfd-re-match'. `cfd-match-pos' is set to the decl prefix.
4804 ;; This macro might do hidden buffer changes.
4806 '(progn
4807 ;; Find the next property match position if we haven't got one already.
4808 (unless cfd-prop-match
4809 (save-excursion
4810 (while (progn
4811 (goto-char (c-next-single-property-change
4812 (point) 'c-type nil cfd-limit))
4813 (and (< (point) cfd-limit)
4814 (not (eq (c-get-char-property (1- (point)) 'c-type)
4815 'c-decl-end)))))
4816 (setq cfd-prop-match (point))))
4818 ;; Find the next `c-decl-prefix-or-start-re' match if we haven't
4819 ;; got one already.
4820 (unless cfd-re-match
4822 (if (> cfd-re-match-end (point))
4823 (goto-char cfd-re-match-end))
4825 ;; Each time round, the next `while' moves forward over a pseudo match
4826 ;; of `c-decl-prefix-or-start-re' which is either inside a literal, or
4827 ;; is a ":" not preceded by "public", etc.. `cfd-re-match' and
4828 ;; `cfd-re-match-end' get set.
4829 (while
4830 (progn
4831 (setq cfd-re-match-end (re-search-forward c-decl-prefix-or-start-re
4832 cfd-limit 'move))
4833 (cond
4834 ((null cfd-re-match-end)
4835 ;; No match. Finish up and exit the loop.
4836 (setq cfd-re-match cfd-limit)
4837 nil)
4838 ((c-got-face-at
4839 (if (setq cfd-re-match (match-end 1))
4840 ;; Matched the end of a token preceding a decl spot.
4841 (progn
4842 (goto-char cfd-re-match)
4843 (1- cfd-re-match))
4844 ;; Matched a token that start a decl spot.
4845 (goto-char (match-beginning 0))
4846 (point))
4847 c-literal-faces)
4848 ;; Pseudo match inside a comment or string literal. Skip out
4849 ;; of comments and string literals.
4850 (while (progn
4851 (goto-char (c-next-single-property-change
4852 (point) 'face nil cfd-limit))
4853 (and (< (point) cfd-limit)
4854 (c-got-face-at (point) c-literal-faces))))
4855 t) ; Continue the loop over pseudo matches.
4856 ((and (match-string 1)
4857 (string= (match-string 1) ":")
4858 (save-excursion
4859 (or (/= (c-backward-token-2 2) 0) ; no search limit. :-(
4860 (not (looking-at c-decl-start-colon-kwd-re)))))
4861 ;; Found a ":" which isn't part of "public:", etc.
4863 (t nil)))) ;; Found a real match. Exit the pseudo-match loop.
4865 ;; If our match was at the decl start, we have to back up over the
4866 ;; preceding syntactic ws to set `cfd-match-pos' and to catch
4867 ;; any decl spots in the syntactic ws.
4868 (unless cfd-re-match
4869 (c-backward-syntactic-ws)
4870 (setq cfd-re-match (point))))
4872 ;; Choose whichever match is closer to the start.
4873 (if (< cfd-re-match cfd-prop-match)
4874 (setq cfd-match-pos cfd-re-match
4875 cfd-re-match nil)
4876 (setq cfd-match-pos cfd-prop-match
4877 cfd-prop-match nil))
4879 (goto-char cfd-match-pos)
4881 (when (< cfd-match-pos cfd-limit)
4882 ;; Skip forward past comments only so we don't skip macros.
4883 (c-forward-comments)
4884 ;; Set the position to continue at. We can avoid going over
4885 ;; the comments skipped above a second time, but it's possible
4886 ;; that the comment skipping has taken us past `cfd-prop-match'
4887 ;; since the property might be used inside comments.
4888 (setq cfd-continue-pos (if cfd-prop-match
4889 (min cfd-prop-match (point))
4890 (point))))))
4892 (defun c-find-decl-spots (cfd-limit cfd-decl-re cfd-face-checklist cfd-fun)
4893 ;; Call CFD-FUN for each possible spot for a declaration, cast or
4894 ;; label from the point to CFD-LIMIT.
4896 ;; CFD-FUN is called with point at the start of the spot. It's passed two
4897 ;; arguments: The first is the end position of the token preceding the spot,
4898 ;; or 0 for the implicit match at bob. The second is a flag that is t when
4899 ;; the match is inside a macro. Point should be moved forward by at least
4900 ;; one token.
4902 ;; If CFD-FUN adds `c-decl-end' properties somewhere below the current spot,
4903 ;; it should return non-nil to ensure that the next search will find them.
4905 ;; Such a spot is:
4906 ;; o The first token after bob.
4907 ;; o The first token after the end of submatch 1 in
4908 ;; `c-decl-prefix-or-start-re' when that submatch matches. This
4909 ;; submatch is typically a (L or R) brace or paren, a ;, or a ,.
4910 ;; o The start of each `c-decl-prefix-or-start-re' match when
4911 ;; submatch 1 doesn't match. This is, for example, the keyword
4912 ;; "class" in Pike.
4913 ;; o The start of a previously recognized declaration; "recognized"
4914 ;; means that the last char of the previous token has a `c-type'
4915 ;; text property with the value `c-decl-end'; this only holds
4916 ;; when `c-type-decl-end-used' is set.
4918 ;; Only a spot that match CFD-DECL-RE and whose face is in the
4919 ;; CFD-FACE-CHECKLIST list causes CFD-FUN to be called. The face
4920 ;; check is disabled if CFD-FACE-CHECKLIST is nil.
4922 ;; If the match is inside a macro then the buffer is narrowed to the
4923 ;; end of it, so that CFD-FUN can investigate the following tokens
4924 ;; without matching something that begins inside a macro and ends
4925 ;; outside it. It's to avoid this work that the CFD-DECL-RE and
4926 ;; CFD-FACE-CHECKLIST checks exist.
4928 ;; The spots are visited approximately in order from top to bottom.
4929 ;; It's however the positions where `c-decl-prefix-or-start-re'
4930 ;; matches and where `c-decl-end' properties are found that are in
4931 ;; order. Since the spots often are at the following token, they
4932 ;; might be visited out of order insofar as more spots are reported
4933 ;; later on within the syntactic whitespace between the match
4934 ;; positions and their spots.
4936 ;; It's assumed that comments and strings are fontified in the
4937 ;; searched range.
4939 ;; This is mainly used in fontification, and so has an elaborate
4940 ;; cache to handle repeated calls from the same start position; see
4941 ;; the variables above.
4943 ;; All variables in this function begin with `cfd-' to avoid name
4944 ;; collision with the (dynamically bound) variables used in CFD-FUN.
4946 ;; This function might do hidden buffer changes.
4948 (let ((cfd-start-pos (point)) ; never changed
4949 (cfd-buffer-end (point-max))
4950 ;; The end of the token preceding the decl spot last found
4951 ;; with `c-decl-prefix-or-start-re'. `cfd-limit' if there's
4952 ;; no match.
4953 cfd-re-match
4954 ;; The end position of the last `c-decl-prefix-or-start-re'
4955 ;; match. If this is greater than `cfd-continue-pos', the
4956 ;; next regexp search is started here instead.
4957 (cfd-re-match-end (point-min))
4958 ;; The end of the last `c-decl-end' found by
4959 ;; `c-find-decl-prefix-search'. `cfd-limit' if there's no
4960 ;; match. If searching for the property isn't needed then we
4961 ;; disable it by setting it to `cfd-limit' directly.
4962 (cfd-prop-match (unless c-type-decl-end-used cfd-limit))
4963 ;; The end of the token preceding the decl spot last found by
4964 ;; `c-find-decl-prefix-search'. 0 for the implicit match at
4965 ;; bob. `cfd-limit' if there's no match. In other words,
4966 ;; this is the minimum of `cfd-re-match' and `cfd-prop-match'.
4967 (cfd-match-pos cfd-limit)
4968 ;; The position to continue searching at.
4969 cfd-continue-pos
4970 ;; The position of the last "real" token we've stopped at.
4971 ;; This can be greater than `cfd-continue-pos' when we get
4972 ;; hits inside macros or at `c-decl-end' positions inside
4973 ;; comments.
4974 (cfd-token-pos 0)
4975 ;; The end position of the last entered macro.
4976 (cfd-macro-end 0))
4978 ;; Initialize by finding a syntactically relevant start position
4979 ;; before the point, and do the first `c-decl-prefix-or-start-re'
4980 ;; search unless we're at bob.
4982 (let (start-in-literal start-in-macro syntactic-pos)
4983 ;; Must back up a bit since we look for the end of the previous
4984 ;; statement or declaration, which is earlier than the first
4985 ;; returned match.
4987 ;; This `cond' moves back over any literals or macros. It has special
4988 ;; handling for when the region being searched is entirely within a
4989 ;; macro. It sets `cfd-continue-pos' (unless we've reached
4990 ;; `cfd-limit').
4991 (cond
4992 ;; First we need to move to a syntactically relevant position.
4993 ;; Begin by backing out of comment or string literals.
4995 ;; This arm of the cond actually triggers if we're in a literal,
4996 ;; and cfd-limit is at most at BONL.
4997 ((and
4998 ;; This arm of the `and' moves backwards out of a literal when
4999 ;; the face at point is a literal face. In this case, its value
5000 ;; is always non-nil.
5001 (when (c-got-face-at (point) c-literal-faces)
5002 ;; Try to use the faces to back up to the start of the
5003 ;; literal. FIXME: What if the point is on a declaration
5004 ;; inside a comment?
5005 (while (and (not (bobp))
5006 (c-got-face-at (1- (point)) c-literal-faces))
5007 (goto-char (previous-single-property-change
5008 (point) 'face nil (point-min))))
5010 ;; XEmacs doesn't fontify the quotes surrounding string
5011 ;; literals.
5012 (and (featurep 'xemacs)
5013 (eq (get-text-property (point) 'face)
5014 'font-lock-string-face)
5015 (not (bobp))
5016 (progn (backward-char)
5017 (not (looking-at c-string-limit-regexp)))
5018 (forward-char))
5020 ;; Don't trust the literal to contain only literal faces
5021 ;; (the font lock package might not have fontified the
5022 ;; start of it at all, for instance) so check that we have
5023 ;; arrived at something that looks like a start or else
5024 ;; resort to `c-literal-limits'.
5025 (unless (looking-at c-literal-start-regexp)
5026 (let ((range (c-literal-limits)))
5027 (if range (goto-char (car range)))))
5029 (setq start-in-literal (point))) ; end of `and' arm.
5031 ;; The start is in a literal. If the limit is in the same
5032 ;; one we don't have to find a syntactic position etc. We
5033 ;; only check that if the limit is at or before bonl to save
5034 ;; time; it covers the by far most common case when font-lock
5035 ;; refontifies the current line only.
5036 (<= cfd-limit (c-point 'bonl cfd-start-pos))
5037 (save-excursion
5038 (goto-char cfd-start-pos)
5039 (while (progn
5040 (goto-char (c-next-single-property-change
5041 (point) 'face nil cfd-limit))
5042 (and (< (point) cfd-limit)
5043 (c-got-face-at (point) c-literal-faces))))
5044 (= (point) cfd-limit))) ; end of `cond' arm condition
5046 ;; Completely inside a literal. Set up variables to trig the
5047 ;; (< cfd-continue-pos cfd-start-pos) case below and it'll
5048 ;; find a suitable start position.
5049 (setq cfd-continue-pos start-in-literal)) ; end of `cond' arm
5051 ;; Check if the region might be completely inside a macro, to
5052 ;; optimize that like the completely-inside-literal above.
5053 ((save-excursion
5054 (and (= (forward-line 1) 0)
5055 (bolp) ; forward-line has funny behavior at eob.
5056 (>= (point) cfd-limit)
5057 (progn (backward-char)
5058 (eq (char-before) ?\\))))
5059 ;; (Maybe) completely inside a macro. Only need to trig the
5060 ;; (< cfd-continue-pos cfd-start-pos) case below to make it
5061 ;; set things up.
5062 (setq cfd-continue-pos (1- cfd-start-pos)
5063 start-in-macro t))
5065 ;; The default arm of the `cond' moves back over any macro we're in
5066 ;; and over any syntactic WS. It sets `c-find-decl-syntactic-pos'.
5068 ;; Back out of any macro so we don't miss any declaration
5069 ;; that could follow after it.
5070 (when (c-beginning-of-macro)
5071 (setq start-in-macro t))
5073 ;; Now we're at a proper syntactically relevant position so we
5074 ;; can use the cache. But first clear it if it applied
5075 ;; further down.
5076 (c-invalidate-find-decl-cache cfd-start-pos)
5078 (setq syntactic-pos (point))
5079 (unless (eq syntactic-pos c-find-decl-syntactic-pos)
5080 ;; Don't have to do this if the cache is relevant here,
5081 ;; typically if the same line is refontified again. If
5082 ;; we're just some syntactic whitespace further down we can
5083 ;; still use the cache to limit the skipping.
5084 (c-backward-syntactic-ws c-find-decl-syntactic-pos))
5086 ;; If we hit `c-find-decl-syntactic-pos' and
5087 ;; `c-find-decl-match-pos' is set then we install the cached
5088 ;; values. If we hit `c-find-decl-syntactic-pos' and
5089 ;; `c-find-decl-match-pos' is nil then we know there's no decl
5090 ;; prefix in the whitespace before `c-find-decl-syntactic-pos'
5091 ;; and so we can continue the search from this point. If we
5092 ;; didn't hit `c-find-decl-syntactic-pos' then we're now in
5093 ;; the right spot to begin searching anyway.
5094 (if (and (eq (point) c-find-decl-syntactic-pos)
5095 c-find-decl-match-pos)
5096 (setq cfd-match-pos c-find-decl-match-pos
5097 cfd-continue-pos syntactic-pos)
5099 (setq c-find-decl-syntactic-pos syntactic-pos)
5101 (when (if (bobp)
5102 ;; Always consider bob a match to get the first
5103 ;; declaration in the file. Do this separately instead of
5104 ;; letting `c-decl-prefix-or-start-re' match bob, so that
5105 ;; regexp always can consume at least one character to
5106 ;; ensure that we won't get stuck in an infinite loop.
5107 (setq cfd-re-match 0)
5108 (backward-char)
5109 (c-beginning-of-current-token)
5110 (< (point) cfd-limit))
5111 ;; Do an initial search now. In the bob case above it's
5112 ;; only done to search for a `c-decl-end' spot.
5113 (c-find-decl-prefix-search)) ; sets cfd-continue-pos
5115 (setq c-find-decl-match-pos (and (< cfd-match-pos cfd-start-pos)
5116 cfd-match-pos))))) ; end of `cond'
5118 ;; Advance `cfd-continue-pos' if it's before the start position.
5119 ;; The closest continue position that might have effect at or
5120 ;; after the start depends on what we started in. This also
5121 ;; finds a suitable start position in the special cases when the
5122 ;; region is completely within a literal or macro.
5123 (when (and cfd-continue-pos (< cfd-continue-pos cfd-start-pos))
5125 (cond
5126 (start-in-macro
5127 ;; If we're in a macro then it's the closest preceding token
5128 ;; in the macro. Check this before `start-in-literal',
5129 ;; since if we're inside a literal in a macro, the preceding
5130 ;; token is earlier than any `c-decl-end' spot inside the
5131 ;; literal (comment).
5132 (goto-char (or start-in-literal cfd-start-pos))
5133 ;; The only syntactic ws in macros are comments.
5134 (c-backward-comments)
5135 (backward-char)
5136 (c-beginning-of-current-token))
5138 (start-in-literal
5139 ;; If we're in a comment it can only be the closest
5140 ;; preceding `c-decl-end' position within that comment, if
5141 ;; any. Go back to the beginning of such a property so that
5142 ;; `c-find-decl-prefix-search' will find the end of it.
5143 ;; (Can't stop at the end and install it directly on
5144 ;; `cfd-prop-match' since that variable might be cleared
5145 ;; after `cfd-fun' below.)
5147 ;; Note that if the literal is a string then the property
5148 ;; search will simply skip to the beginning of it right
5149 ;; away.
5150 (if (not c-type-decl-end-used)
5151 (goto-char start-in-literal)
5152 (goto-char cfd-start-pos)
5153 (while (progn
5154 (goto-char (previous-single-property-change
5155 (point) 'c-type nil start-in-literal))
5156 (and (> (point) start-in-literal)
5157 (not (eq (c-get-char-property (point) 'c-type)
5158 'c-decl-end))))))
5160 (when (= (point) start-in-literal)
5161 ;; Didn't find any property inside the comment, so we can
5162 ;; skip it entirely. (This won't skip past a string, but
5163 ;; that'll be handled quickly by the next
5164 ;; `c-find-decl-prefix-search' anyway.)
5165 (c-forward-single-comment)
5166 (if (> (point) cfd-limit)
5167 (goto-char cfd-limit))))
5170 ;; If we started in normal code, the only match that might
5171 ;; apply before the start is what we already got in
5172 ;; `cfd-match-pos' so we can continue at the start position.
5173 ;; (Note that we don't get here if the first match is below
5174 ;; it.)
5175 (goto-char cfd-start-pos))) ; end of `cond'
5177 ;; Delete found matches if they are before our new continue
5178 ;; position, so that `c-find-decl-prefix-search' won't back up
5179 ;; to them later on.
5180 (setq cfd-continue-pos (point))
5181 (when (and cfd-re-match (< cfd-re-match cfd-continue-pos))
5182 (setq cfd-re-match nil))
5183 (when (and cfd-prop-match (< cfd-prop-match cfd-continue-pos))
5184 (setq cfd-prop-match nil))) ; end of `when'
5186 (if syntactic-pos
5187 ;; This is the normal case and we got a proper syntactic
5188 ;; position. If there's a match then it's always outside
5189 ;; macros and comments, so advance to the next token and set
5190 ;; `cfd-token-pos'. The loop below will later go back using
5191 ;; `cfd-continue-pos' to fix declarations inside the
5192 ;; syntactic ws.
5193 (when (and cfd-match-pos (< cfd-match-pos syntactic-pos))
5194 (goto-char syntactic-pos)
5195 (c-forward-syntactic-ws)
5196 (and cfd-continue-pos
5197 (< cfd-continue-pos (point))
5198 (setq cfd-token-pos (point))))
5200 ;; Have one of the special cases when the region is completely
5201 ;; within a literal or macro. `cfd-continue-pos' is set to a
5202 ;; good start position for the search, so do it.
5203 (c-find-decl-prefix-search)))
5205 ;; Now loop, one decl spot per iteration. We already have the first
5206 ;; match in `cfd-match-pos'.
5207 (while (progn
5208 ;; Go forward over "false matches", one per iteration.
5209 (while (and
5210 (< cfd-match-pos cfd-limit)
5213 ;; Kludge to filter out matches on the "<" that
5214 ;; aren't open parens, for the sake of languages
5215 ;; that got `c-recognize-<>-arglists' set.
5216 (and (eq (char-before cfd-match-pos) ?<)
5217 (not (c-get-char-property (1- cfd-match-pos)
5218 'syntax-table)))
5220 ;; If `cfd-continue-pos' is less or equal to
5221 ;; `cfd-token-pos', we've got a hit inside a macro
5222 ;; that's in the syntactic whitespace before the last
5223 ;; "real" declaration we've checked. If they're equal
5224 ;; we've arrived at the declaration a second time, so
5225 ;; there's nothing to do.
5226 (= cfd-continue-pos cfd-token-pos)
5228 (progn
5229 ;; If `cfd-continue-pos' is less than `cfd-token-pos'
5230 ;; we're still searching for declarations embedded in
5231 ;; the syntactic whitespace. In that case we need
5232 ;; only to skip comments and not macros, since they
5233 ;; can't be nested, and that's already been done in
5234 ;; `c-find-decl-prefix-search'.
5235 (when (> cfd-continue-pos cfd-token-pos)
5236 (c-forward-syntactic-ws)
5237 (setq cfd-token-pos (point)))
5239 ;; Continue if the following token fails the
5240 ;; CFD-DECL-RE and CFD-FACE-CHECKLIST checks.
5241 (when (or (>= (point) cfd-limit)
5242 (not (looking-at cfd-decl-re))
5243 (and cfd-face-checklist
5244 (not (c-got-face-at
5245 (point) cfd-face-checklist))))
5246 (goto-char cfd-continue-pos)
5247 t)))
5249 (< (point) cfd-limit)) ; end of "false matches" condition
5250 (c-find-decl-prefix-search)) ; end of "false matches" loop
5252 (< (point) cfd-limit)) ; end of condition for "decl-spot" while
5254 (when (and
5255 (>= (point) cfd-start-pos)
5257 (progn
5258 ;; Narrow to the end of the macro if we got a hit inside
5259 ;; one, to avoid recognizing things that start inside the
5260 ;; macro and end outside it.
5261 (when (> cfd-match-pos cfd-macro-end)
5262 ;; Not in the same macro as in the previous round.
5263 (save-excursion
5264 (goto-char cfd-match-pos)
5265 (setq cfd-macro-end
5266 (if (save-excursion (and (c-beginning-of-macro)
5267 (< (point) cfd-match-pos)))
5268 (progn (c-end-of-macro)
5269 (point))
5270 0))))
5272 (if (zerop cfd-macro-end)
5274 (if (> cfd-macro-end (point))
5275 (progn (narrow-to-region (point-min) cfd-macro-end)
5277 ;; The matched token was the last thing in the macro,
5278 ;; so the whole match is bogus.
5279 (setq cfd-macro-end 0)
5280 nil)))) ; end of when condition
5282 (c-debug-put-decl-spot-faces cfd-match-pos (point))
5283 (if (funcall cfd-fun cfd-match-pos (/= cfd-macro-end 0))
5284 (setq cfd-prop-match nil))
5286 (when (/= cfd-macro-end 0)
5287 ;; Restore limits if we did macro narrowing above.
5288 (narrow-to-region (point-min) cfd-buffer-end)))
5290 (goto-char cfd-continue-pos)
5291 (if (= cfd-continue-pos cfd-limit)
5292 (setq cfd-match-pos cfd-limit)
5293 (c-find-decl-prefix-search))))) ; Moves point, sets cfd-continue-pos,
5294 ; cfd-match-pos, etc.
5297 ;; A cache for found types.
5299 ;; Buffer local variable that contains an obarray with the types we've
5300 ;; found. If a declaration is recognized somewhere we record the
5301 ;; fully qualified identifier in it to recognize it as a type
5302 ;; elsewhere in the file too. This is not accurate since we do not
5303 ;; bother with the scoping rules of the languages, but in practice the
5304 ;; same name is seldom used as both a type and something else in a
5305 ;; file, and we only use this as a last resort in ambiguous cases (see
5306 ;; `c-forward-decl-or-cast-1').
5308 ;; Not every type need be in this cache. However, things which have
5309 ;; ceased to be types must be removed from it.
5311 ;; Template types in C++ are added here too but with the template
5312 ;; arglist replaced with "<>" in references or "<" for the one in the
5313 ;; primary type. E.g. the type "Foo<A,B>::Bar<C>" is stored as
5314 ;; "Foo<>::Bar<". This avoids storing very long strings (since C++
5315 ;; template specs can be fairly sized programs in themselves) and
5316 ;; improves the hit ratio (it's a type regardless of the template
5317 ;; args; it's just not the same type, but we're only interested in
5318 ;; recognizing types, not telling distinct types apart). Note that
5319 ;; template types in references are added here too; from the example
5320 ;; above there will also be an entry "Foo<".
5321 (defvar c-found-types nil)
5322 (make-variable-buffer-local 'c-found-types)
5324 (defsubst c-clear-found-types ()
5325 ;; Clears `c-found-types'.
5326 (setq c-found-types (make-vector 53 0)))
5328 (defun c-add-type (from to)
5329 ;; Add the given region as a type in `c-found-types'. If the region
5330 ;; doesn't match an existing type but there is a type which is equal
5331 ;; to the given one except that the last character is missing, then
5332 ;; the shorter type is removed. That's done to avoid adding all
5333 ;; prefixes of a type as it's being entered and font locked. This
5334 ;; doesn't cover cases like when characters are removed from a type
5335 ;; or added in the middle. We'd need the position of point when the
5336 ;; font locking is invoked to solve this well.
5338 ;; This function might do hidden buffer changes.
5339 (let ((type (c-syntactic-content from to c-recognize-<>-arglists)))
5340 (unless (intern-soft type c-found-types)
5341 (unintern (substring type 0 -1) c-found-types)
5342 (intern type c-found-types))))
5344 (defun c-unfind-type (name)
5345 ;; Remove the "NAME" from c-found-types, if present.
5346 (unintern name c-found-types))
5348 (defsubst c-check-type (from to)
5349 ;; Return non-nil if the given region contains a type in
5350 ;; `c-found-types'.
5352 ;; This function might do hidden buffer changes.
5353 (intern-soft (c-syntactic-content from to c-recognize-<>-arglists)
5354 c-found-types))
5356 (defun c-list-found-types ()
5357 ;; Return all the types in `c-found-types' as a sorted list of
5358 ;; strings.
5359 (let (type-list)
5360 (mapatoms (lambda (type)
5361 (setq type-list (cons (symbol-name type)
5362 type-list)))
5363 c-found-types)
5364 (sort type-list 'string-lessp)))
5366 ;; Shut up the byte compiler.
5367 (defvar c-maybe-stale-found-type)
5369 (defun c-trim-found-types (beg end old-len)
5370 ;; An after change function which, in conjunction with the info in
5371 ;; c-maybe-stale-found-type (set in c-before-change), removes a type
5372 ;; from `c-found-types', should this type have become stale. For
5373 ;; example, this happens to "foo" when "foo \n bar();" becomes
5374 ;; "foo(); \n bar();". Such stale types, if not removed, foul up
5375 ;; the fontification.
5377 ;; Have we, perhaps, added non-ws characters to the front/back of a found
5378 ;; type?
5379 (when (> end beg)
5380 (save-excursion
5381 (when (< end (point-max))
5382 (goto-char end)
5383 (if (and (c-beginning-of-current-token) ; only moves when we started in the middle
5384 (progn (goto-char end)
5385 (c-end-of-current-token)))
5386 (c-unfind-type (buffer-substring-no-properties
5387 end (point)))))
5388 (when (> beg (point-min))
5389 (goto-char beg)
5390 (if (and (c-end-of-current-token) ; only moves when we started in the middle
5391 (progn (goto-char beg)
5392 (c-beginning-of-current-token)))
5393 (c-unfind-type (buffer-substring-no-properties
5394 (point) beg))))))
5396 (if c-maybe-stale-found-type ; e.g. (c-decl-id-start "foo" 97 107 " (* ooka) " "o")
5397 (cond
5398 ;; Changing the amount of (already existing) whitespace - don't do anything.
5399 ((and (c-partial-ws-p beg end)
5400 (or (= beg end) ; removal of WS
5401 (string-match "^[ \t\n\r\f\v]*$" (nth 5 c-maybe-stale-found-type)))))
5403 ;; The syntactic relationship which defined a "found type" has been
5404 ;; destroyed.
5405 ((eq (car c-maybe-stale-found-type) 'c-decl-id-start)
5406 (c-unfind-type (cadr c-maybe-stale-found-type)))
5407 ;; ((eq (car c-maybe-stale-found-type) 'c-decl-type-start) FIXME!!!
5411 ;; Setting and removing syntax properties on < and > in languages (C++
5412 ;; and Java) where they can be template/generic delimiters as well as
5413 ;; their normal meaning of "less/greater than".
5415 ;; Normally, < and > have syntax 'punctuation'. When they are found to
5416 ;; be delimiters, they are marked as such with the category properties
5417 ;; c-<-as-paren-syntax, c->-as-paren-syntax respectively.
5419 ;; STRATEGY:
5421 ;; It is impossible to determine with certainty whether a <..> pair in
5422 ;; C++ is two comparison operators or is template delimiters, unless
5423 ;; one duplicates a lot of a C++ compiler. For example, the following
5424 ;; code fragment:
5426 ;; foo (a < b, c > d) ;
5428 ;; could be a function call with two integer parameters (each a
5429 ;; relational expression), or it could be a constructor for class foo
5430 ;; taking one parameter d of templated type "a < b, c >". They are
5431 ;; somewhat easier to distinguish in Java.
5433 ;; The strategy now (2010-01) adopted is to mark and unmark < and
5434 ;; > IN MATCHING PAIRS ONLY. [Previously, they were marked
5435 ;; individually when their context so indicated. This gave rise to
5436 ;; intractable problems when one of a matching pair was deleted, or
5437 ;; pulled into a literal.]
5439 ;; At each buffer change, the syntax-table properties are removed in a
5440 ;; before-change function and reapplied, when needed, in an
5441 ;; after-change function. It is far more important that the
5442 ;; properties get removed when they they are spurious than that they
5443 ;; be present when wanted.
5444 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5445 (defun c-clear-<-pair-props (&optional pos)
5446 ;; POS (default point) is at a < character. If it is marked with
5447 ;; open paren syntax-table text property, remove the property,
5448 ;; together with the close paren property on the matching > (if
5449 ;; any).
5450 (save-excursion
5451 (if pos
5452 (goto-char pos)
5453 (setq pos (point)))
5454 (when (equal (c-get-char-property (point) 'syntax-table)
5455 c-<-as-paren-syntax)
5456 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5457 (c-go-list-forward))
5458 (when (equal (c-get-char-property (1- (point)) 'syntax-table)
5459 c->-as-paren-syntax) ; should always be true.
5460 (c-unmark-<->-as-paren (1- (point))))
5461 (c-unmark-<->-as-paren pos))))
5463 (defun c-clear->-pair-props (&optional pos)
5464 ;; POS (default point) is at a > character. If it is marked with
5465 ;; close paren syntax-table property, remove the property, together
5466 ;; with the open paren property on the matching < (if any).
5467 (save-excursion
5468 (if pos
5469 (goto-char pos)
5470 (setq pos (point)))
5471 (when (equal (c-get-char-property (point) 'syntax-table)
5472 c->-as-paren-syntax)
5473 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5474 (c-go-up-list-backward))
5475 (when (equal (c-get-char-property (point) 'syntax-table)
5476 c-<-as-paren-syntax) ; should always be true.
5477 (c-unmark-<->-as-paren (point)))
5478 (c-unmark-<->-as-paren pos))))
5480 (defun c-clear-<>-pair-props (&optional pos)
5481 ;; POS (default point) is at a < or > character. If it has an
5482 ;; open/close paren syntax-table property, remove this property both
5483 ;; from the current character and its partner (which will also be
5484 ;; thusly marked).
5485 (cond
5486 ((eq (char-after) ?\<)
5487 (c-clear-<-pair-props pos))
5488 ((eq (char-after) ?\>)
5489 (c-clear->-pair-props pos))
5490 (t (c-benign-error
5491 "c-clear-<>-pair-props called from wrong position"))))
5493 (defun c-clear-<-pair-props-if-match-after (lim &optional pos)
5494 ;; POS (default point) is at a < character. If it is both marked
5495 ;; with open/close paren syntax-table property, and has a matching >
5496 ;; (also marked) which is after LIM, remove the property both from
5497 ;; the current > and its partner. Return t when this happens, nil
5498 ;; when it doesn't.
5499 (save-excursion
5500 (if pos
5501 (goto-char pos)
5502 (setq pos (point)))
5503 (when (equal (c-get-char-property (point) 'syntax-table)
5504 c-<-as-paren-syntax)
5505 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5506 (c-go-list-forward))
5507 (when (and (>= (point) lim)
5508 (equal (c-get-char-property (1- (point)) 'syntax-table)
5509 c->-as-paren-syntax)) ; should always be true.
5510 (c-unmark-<->-as-paren (1- (point)))
5511 (c-unmark-<->-as-paren pos))
5512 t)))
5514 (defun c-clear->-pair-props-if-match-before (lim &optional pos)
5515 ;; POS (default point) is at a > character. If it is both marked
5516 ;; with open/close paren syntax-table property, and has a matching <
5517 ;; (also marked) which is before LIM, remove the property both from
5518 ;; the current < and its partner. Return t when this happens, nil
5519 ;; when it doesn't.
5520 (save-excursion
5521 (if pos
5522 (goto-char pos)
5523 (setq pos (point)))
5524 (when (equal (c-get-char-property (point) 'syntax-table)
5525 c->-as-paren-syntax)
5526 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5527 (c-go-up-list-backward))
5528 (when (and (<= (point) lim)
5529 (equal (c-get-char-property (point) 'syntax-table)
5530 c-<-as-paren-syntax)) ; should always be true.
5531 (c-unmark-<->-as-paren (point))
5532 (c-unmark-<->-as-paren pos))
5533 t)))
5535 ;; Set by c-common-init in cc-mode.el.
5536 (defvar c-new-BEG)
5537 (defvar c-new-END)
5539 (defun c-before-change-check-<>-operators (beg end)
5540 ;; Unmark certain pairs of "< .... >" which are currently marked as
5541 ;; template/generic delimiters. (This marking is via syntax-table
5542 ;; text properties).
5544 ;; These pairs are those which are in the current "statement" (i.e.,
5545 ;; the region between the {, }, or ; before BEG and the one after
5546 ;; END), and which enclose any part of the interval (BEG END).
5548 ;; Note that in C++ (?and Java), template/generic parens cannot
5549 ;; enclose a brace or semicolon, so we use these as bounds on the
5550 ;; region we must work on.
5552 ;; This function is called from before-change-functions (via
5553 ;; c-get-state-before-change-functions). Thus the buffer is widened,
5554 ;; and point is undefined, both at entry and exit.
5556 ;; FIXME!!! This routine ignores the possibility of macros entirely.
5557 ;; 2010-01-29.
5558 (save-excursion
5559 (let ((beg-lit-limits (progn (goto-char beg) (c-literal-limits)))
5560 (end-lit-limits (progn (goto-char end) (c-literal-limits)))
5561 new-beg new-end need-new-beg need-new-end)
5562 ;; Locate the barrier before the changed region
5563 (goto-char (if beg-lit-limits (car beg-lit-limits) beg))
5564 (c-syntactic-skip-backward "^;{}" (c-determine-limit 512))
5565 (setq new-beg (point))
5567 ;; Remove the syntax-table/category properties from each pertinent <...>
5568 ;; pair. Firsly, the ones with the < before beg and > after beg.
5569 (while
5570 (c-search-forward-char-property 'syntax-table c-<-as-paren-syntax beg)
5571 (if (c-clear-<-pair-props-if-match-after beg (1- (point)))
5572 (setq need-new-beg t)))
5574 ;; Locate the barrier after END.
5575 (goto-char (if end-lit-limits (cdr end-lit-limits) end))
5576 (c-syntactic-re-search-forward "[;{}]" (c-determine-+ve-limit 512) 'end)
5577 (setq new-end (point))
5579 ;; Remove syntax-table properties from the remaining pertinent <...>
5580 ;; pairs, those with a > after end and < before end.
5581 (while (c-search-backward-char-property 'syntax-table c->-as-paren-syntax end)
5582 (if (c-clear->-pair-props-if-match-before end)
5583 (setq need-new-end t)))
5585 ;; Extend the fontification region, if needed.
5586 (when need-new-beg
5587 (goto-char new-beg)
5588 (c-forward-syntactic-ws)
5589 (and (< (point) c-new-BEG) (setq c-new-BEG (point))))
5591 (when need-new-end
5592 (and (> new-end c-new-END) (setq c-new-END new-end))))))
5594 (defun c-after-change-check-<>-operators (beg end)
5595 ;; This is called from `after-change-functions' when
5596 ;; c-recognize-<>-arglists' is set. It ensures that no "<" or ">"
5597 ;; chars with paren syntax become part of another operator like "<<"
5598 ;; or ">=".
5600 ;; This function might do hidden buffer changes.
5602 (save-excursion
5603 (goto-char beg)
5604 (when (or (looking-at "[<>]")
5605 (< (skip-chars-backward "<>") 0))
5607 (goto-char beg)
5608 (c-beginning-of-current-token)
5609 (when (and (< (point) beg)
5610 (looking-at c-<>-multichar-token-regexp)
5611 (< beg (setq beg (match-end 0))))
5612 (while (progn (skip-chars-forward "^<>" beg)
5613 (< (point) beg))
5614 (c-clear-<>-pair-props)
5615 (forward-char))))
5617 (when (< beg end)
5618 (goto-char end)
5619 (when (or (looking-at "[<>]")
5620 (< (skip-chars-backward "<>") 0))
5622 (goto-char end)
5623 (c-beginning-of-current-token)
5624 (when (and (< (point) end)
5625 (looking-at c-<>-multichar-token-regexp)
5626 (< end (setq end (match-end 0))))
5627 (while (progn (skip-chars-forward "^<>" end)
5628 (< (point) end))
5629 (c-clear-<>-pair-props)
5630 (forward-char)))))))
5634 ;; Handling of small scale constructs like types and names.
5636 ;; Dynamically bound variable that instructs `c-forward-type' to also
5637 ;; treat possible types (i.e. those that it normally returns 'maybe or
5638 ;; 'found for) as actual types (and always return 'found for them).
5639 ;; This means that it records them in `c-record-type-identifiers' if
5640 ;; that is set, and that it adds them to `c-found-types'.
5641 (defvar c-promote-possible-types nil)
5643 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
5644 ;; mark up successfully parsed arglists with paren syntax properties on
5645 ;; the surrounding angle brackets and with `c-<>-arg-sep' in the
5646 ;; `c-type' property of each argument separating comma.
5648 ;; Setting this variable also makes `c-forward-<>-arglist' recurse into
5649 ;; all arglists for side effects (i.e. recording types), otherwise it
5650 ;; exploits any existing paren syntax properties to quickly jump to the
5651 ;; end of already parsed arglists.
5653 ;; Marking up the arglists is not the default since doing that correctly
5654 ;; depends on a proper value for `c-restricted-<>-arglists'.
5655 (defvar c-parse-and-markup-<>-arglists nil)
5657 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
5658 ;; not accept arglists that contain binary operators.
5660 ;; This is primarily used to handle C++ template arglists. C++
5661 ;; disambiguates them by checking whether the preceding name is a
5662 ;; template or not. We can't do that, so we assume it is a template
5663 ;; if it can be parsed as one. That usually works well since
5664 ;; comparison expressions on the forms "a < b > c" or "a < b, c > d"
5665 ;; in almost all cases would be pointless.
5667 ;; However, in function arglists, e.g. in "foo (a < b, c > d)", we
5668 ;; should let the comma separate the function arguments instead. And
5669 ;; in a context where the value of the expression is taken, e.g. in
5670 ;; "if (a < b || c > d)", it's probably not a template.
5671 (defvar c-restricted-<>-arglists nil)
5673 ;; Dynamically bound variables that instructs
5674 ;; `c-forward-keyword-clause', `c-forward-<>-arglist',
5675 ;; `c-forward-name', `c-forward-type', `c-forward-decl-or-cast-1', and
5676 ;; `c-forward-label' to record the ranges of all the type and
5677 ;; reference identifiers they encounter. They will build lists on
5678 ;; these variables where each element is a cons of the buffer
5679 ;; positions surrounding each identifier. This recording is only
5680 ;; activated when `c-record-type-identifiers' is non-nil.
5682 ;; All known types that can't be identifiers are recorded, and also
5683 ;; other possible types if `c-promote-possible-types' is set.
5684 ;; Recording is however disabled inside angle bracket arglists that
5685 ;; are encountered inside names and other angle bracket arglists.
5686 ;; Such occurrences are taken care of by `c-font-lock-<>-arglists'
5687 ;; instead.
5689 ;; Only the names in C++ template style references (e.g. "tmpl" in
5690 ;; "tmpl<a,b>::foo") are recorded as references, other references
5691 ;; aren't handled here.
5693 ;; `c-forward-label' records the label identifier(s) on
5694 ;; `c-record-ref-identifiers'.
5695 (defvar c-record-type-identifiers nil)
5696 (defvar c-record-ref-identifiers nil)
5698 ;; This variable will receive a cons cell of the range of the last
5699 ;; single identifier symbol stepped over by `c-forward-name' if it's
5700 ;; successful. This is the range that should be put on one of the
5701 ;; record lists above by the caller. It's assigned nil if there's no
5702 ;; such symbol in the name.
5703 (defvar c-last-identifier-range nil)
5705 (defmacro c-record-type-id (range)
5706 (if (eq (car-safe range) 'cons)
5707 ;; Always true.
5708 `(setq c-record-type-identifiers
5709 (cons ,range c-record-type-identifiers))
5710 `(let ((range ,range))
5711 (if range
5712 (setq c-record-type-identifiers
5713 (cons range c-record-type-identifiers))))))
5715 (defmacro c-record-ref-id (range)
5716 (if (eq (car-safe range) 'cons)
5717 ;; Always true.
5718 `(setq c-record-ref-identifiers
5719 (cons ,range c-record-ref-identifiers))
5720 `(let ((range ,range))
5721 (if range
5722 (setq c-record-ref-identifiers
5723 (cons range c-record-ref-identifiers))))))
5725 ;; Dynamically bound variable that instructs `c-forward-type' to
5726 ;; record the ranges of types that only are found. Behaves otherwise
5727 ;; like `c-record-type-identifiers'.
5728 (defvar c-record-found-types nil)
5730 (defmacro c-forward-keyword-prefixed-id (type)
5731 ;; Used internally in `c-forward-keyword-clause' to move forward
5732 ;; over a type (if TYPE is 'type) or a name (otherwise) which
5733 ;; possibly is prefixed by keywords and their associated clauses.
5734 ;; Try with a type/name first to not trip up on those that begin
5735 ;; with a keyword. Return t if a known or found type is moved
5736 ;; over. The point is clobbered if nil is returned. If range
5737 ;; recording is enabled, the identifier is recorded on as a type
5738 ;; if TYPE is 'type or as a reference if TYPE is 'ref.
5740 ;; This macro might do hidden buffer changes.
5741 `(let (res)
5742 (while (if (setq res ,(if (eq type 'type)
5743 `(c-forward-type)
5744 `(c-forward-name)))
5746 (and (looking-at c-keywords-regexp)
5747 (c-forward-keyword-clause 1))))
5748 (when (memq res '(t known found prefix))
5749 ,(when (eq type 'ref)
5750 `(when c-record-type-identifiers
5751 (c-record-ref-id c-last-identifier-range)))
5752 t)))
5754 (defmacro c-forward-id-comma-list (type update-safe-pos)
5755 ;; Used internally in `c-forward-keyword-clause' to move forward
5756 ;; over a comma separated list of types or names using
5757 ;; `c-forward-keyword-prefixed-id'.
5759 ;; This macro might do hidden buffer changes.
5760 `(while (and (progn
5761 ,(when update-safe-pos
5762 `(setq safe-pos (point)))
5763 (eq (char-after) ?,))
5764 (progn
5765 (forward-char)
5766 (c-forward-syntactic-ws)
5767 (c-forward-keyword-prefixed-id ,type)))))
5769 (defun c-forward-keyword-clause (match)
5770 ;; Submatch MATCH in the current match data is assumed to surround a
5771 ;; token. If it's a keyword, move over it and any immediately
5772 ;; following clauses associated with it, stopping at the start of
5773 ;; the next token. t is returned in that case, otherwise the point
5774 ;; stays and nil is returned. The kind of clauses that are
5775 ;; recognized are those specified by `c-type-list-kwds',
5776 ;; `c-ref-list-kwds', `c-colon-type-list-kwds',
5777 ;; `c-paren-nontype-kwds', `c-paren-type-kwds', `c-<>-type-kwds',
5778 ;; and `c-<>-arglist-kwds'.
5780 ;; This function records identifier ranges on
5781 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5782 ;; `c-record-type-identifiers' is non-nil.
5784 ;; Note that for `c-colon-type-list-kwds', which doesn't necessary
5785 ;; apply directly after the keyword, the type list is moved over
5786 ;; only when there is no unaccounted token before it (i.e. a token
5787 ;; that isn't moved over due to some other keyword list). The
5788 ;; identifier ranges in the list are still recorded if that should
5789 ;; be done, though.
5791 ;; This function might do hidden buffer changes.
5793 (let ((kwd-sym (c-keyword-sym (match-string match))) safe-pos pos
5794 ;; The call to `c-forward-<>-arglist' below is made after
5795 ;; `c-<>-sexp-kwds' keywords, so we're certain they actually
5796 ;; are angle bracket arglists and `c-restricted-<>-arglists'
5797 ;; should therefore be nil.
5798 (c-parse-and-markup-<>-arglists t)
5799 c-restricted-<>-arglists)
5801 (when kwd-sym
5802 (goto-char (match-end match))
5803 (c-forward-syntactic-ws)
5804 (setq safe-pos (point))
5806 (cond
5807 ((and (c-keyword-member kwd-sym 'c-type-list-kwds)
5808 (c-forward-keyword-prefixed-id type))
5809 ;; There's a type directly after a keyword in `c-type-list-kwds'.
5810 (c-forward-id-comma-list type t))
5812 ((and (c-keyword-member kwd-sym 'c-ref-list-kwds)
5813 (c-forward-keyword-prefixed-id ref))
5814 ;; There's a name directly after a keyword in `c-ref-list-kwds'.
5815 (c-forward-id-comma-list ref t))
5817 ((and (c-keyword-member kwd-sym 'c-paren-any-kwds)
5818 (eq (char-after) ?\())
5819 ;; There's an open paren after a keyword in `c-paren-any-kwds'.
5821 (forward-char)
5822 (when (and (setq pos (c-up-list-forward))
5823 (eq (char-before pos) ?\)))
5824 (when (and c-record-type-identifiers
5825 (c-keyword-member kwd-sym 'c-paren-type-kwds))
5826 ;; Use `c-forward-type' on every identifier we can find
5827 ;; inside the paren, to record the types.
5828 (while (c-syntactic-re-search-forward c-symbol-start pos t)
5829 (goto-char (match-beginning 0))
5830 (unless (c-forward-type)
5831 (looking-at c-symbol-key) ; Always matches.
5832 (goto-char (match-end 0)))))
5834 (goto-char pos)
5835 (c-forward-syntactic-ws)
5836 (setq safe-pos (point))))
5838 ((and (c-keyword-member kwd-sym 'c-<>-sexp-kwds)
5839 (eq (char-after) ?<)
5840 (c-forward-<>-arglist (c-keyword-member kwd-sym 'c-<>-type-kwds)))
5841 (c-forward-syntactic-ws)
5842 (setq safe-pos (point)))
5844 ((and (c-keyword-member kwd-sym 'c-nonsymbol-sexp-kwds)
5845 (not (looking-at c-symbol-start))
5846 (c-safe (c-forward-sexp) t))
5847 (c-forward-syntactic-ws)
5848 (setq safe-pos (point))))
5850 (when (c-keyword-member kwd-sym 'c-colon-type-list-kwds)
5851 (if (eq (char-after) ?:)
5852 ;; If we are at the colon already, we move over the type
5853 ;; list after it.
5854 (progn
5855 (forward-char)
5856 (c-forward-syntactic-ws)
5857 (when (c-forward-keyword-prefixed-id type)
5858 (c-forward-id-comma-list type t)))
5859 ;; Not at the colon, so stop here. But the identifier
5860 ;; ranges in the type list later on should still be
5861 ;; recorded.
5862 (and c-record-type-identifiers
5863 (progn
5864 ;; If a keyword matched both one of the types above and
5865 ;; this one, we match `c-colon-type-list-re' after the
5866 ;; clause matched above.
5867 (goto-char safe-pos)
5868 (looking-at c-colon-type-list-re))
5869 (progn
5870 (goto-char (match-end 0))
5871 (c-forward-syntactic-ws)
5872 (c-forward-keyword-prefixed-id type))
5873 ;; There's a type after the `c-colon-type-list-re' match
5874 ;; after a keyword in `c-colon-type-list-kwds'.
5875 (c-forward-id-comma-list type nil))))
5877 (goto-char safe-pos)
5878 t)))
5880 ;; cc-mode requires cc-fonts.
5881 (declare-function c-fontify-recorded-types-and-refs "cc-fonts" ())
5883 (defun c-forward-<>-arglist (all-types)
5884 ;; The point is assumed to be at a "<". Try to treat it as the open
5885 ;; paren of an angle bracket arglist and move forward to the
5886 ;; corresponding ">". If successful, the point is left after the
5887 ;; ">" and t is returned, otherwise the point isn't moved and nil is
5888 ;; returned. If ALL-TYPES is t then all encountered arguments in
5889 ;; the arglist that might be types are treated as found types.
5891 ;; The variable `c-parse-and-markup-<>-arglists' controls how this
5892 ;; function handles text properties on the angle brackets and argument
5893 ;; separating commas.
5895 ;; `c-restricted-<>-arglists' controls how lenient the template
5896 ;; arglist recognition should be.
5898 ;; This function records identifier ranges on
5899 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5900 ;; `c-record-type-identifiers' is non-nil.
5902 ;; This function might do hidden buffer changes.
5904 (let ((start (point))
5905 ;; If `c-record-type-identifiers' is set then activate
5906 ;; recording of any found types that constitute an argument in
5907 ;; the arglist.
5908 (c-record-found-types (if c-record-type-identifiers t)))
5909 (if (catch 'angle-bracket-arglist-escape
5910 (setq c-record-found-types
5911 (c-forward-<>-arglist-recur all-types)))
5912 (progn
5913 (when (consp c-record-found-types)
5914 (setq c-record-type-identifiers
5915 ;; `nconc' doesn't mind that the tail of
5916 ;; `c-record-found-types' is t.
5917 (nconc c-record-found-types c-record-type-identifiers)))
5918 (if (c-major-mode-is 'java-mode) (c-fontify-recorded-types-and-refs))
5921 (goto-char start)
5922 nil)))
5924 (defun c-forward-<>-arglist-recur (all-types)
5925 ;; Recursive part of `c-forward-<>-arglist'.
5927 ;; This function might do hidden buffer changes.
5928 (let ((start (point)) res pos tmp
5929 ;; Cover this so that any recorded found type ranges are
5930 ;; automatically lost if it turns out to not be an angle
5931 ;; bracket arglist. It's propagated through the return value
5932 ;; on successful completion.
5933 (c-record-found-types c-record-found-types)
5934 ;; List that collects the positions after the argument
5935 ;; separating ',' in the arglist.
5936 arg-start-pos)
5937 ;; If the '<' has paren open syntax then we've marked it as an angle
5938 ;; bracket arglist before, so skip to the end.
5939 (if (and (not c-parse-and-markup-<>-arglists)
5940 (c-get-char-property (point) 'syntax-table))
5942 (progn
5943 (forward-char)
5944 (if (and (c-go-up-list-forward)
5945 (eq (char-before) ?>))
5947 ;; Got unmatched paren angle brackets. We don't clear the paren
5948 ;; syntax properties and retry, on the basis that it's very
5949 ;; unlikely that paren angle brackets become operators by code
5950 ;; manipulation. It's far more likely that it doesn't match due
5951 ;; to narrowing or some temporary change.
5952 (goto-char start)
5953 nil))
5955 (forward-char) ; Forward over the opening '<'.
5957 (unless (looking-at c-<-op-cont-regexp)
5958 ;; go forward one non-alphanumeric character (group) per iteration of
5959 ;; this loop.
5960 (while (and
5961 (progn
5962 (c-forward-syntactic-ws)
5963 (when (or (and c-record-type-identifiers all-types)
5964 (c-major-mode-is 'java-mode))
5965 ;; All encountered identifiers are types, so set the
5966 ;; promote flag and parse the type.
5967 (progn
5968 (c-forward-syntactic-ws)
5969 (if (looking-at "\\?")
5970 (forward-char)
5971 (when (looking-at c-identifier-start)
5972 (let ((c-promote-possible-types t)
5973 (c-record-found-types t))
5974 (c-forward-type))))
5976 (c-forward-syntactic-ws)
5978 (when (or (looking-at "extends")
5979 (looking-at "super"))
5980 (forward-word)
5981 (c-forward-syntactic-ws)
5982 (let ((c-promote-possible-types t)
5983 (c-record-found-types t))
5984 (c-forward-type)
5985 (c-forward-syntactic-ws)))))
5987 (setq pos (point)) ; e.g. first token inside the '<'
5989 ;; Note: These regexps exploit the match order in \| so
5990 ;; that "<>" is matched by "<" rather than "[^>:-]>".
5991 (c-syntactic-re-search-forward
5992 ;; Stop on ',', '|', '&', '+' and '-' to catch
5993 ;; common binary operators that could be between
5994 ;; two comparison expressions "a<b" and "c>d".
5995 "[<;{},|+&-]\\|[>)]"
5996 nil t t))
5998 (cond
5999 ((eq (char-before) ?>)
6000 ;; Either an operator starting with '>' or the end of
6001 ;; the angle bracket arglist.
6003 (if (looking-at c->-op-without->-cont-regexp)
6004 (progn
6005 (goto-char (match-end 0))
6006 t) ; Continue the loop.
6008 ;; The angle bracket arglist is finished.
6009 (when c-parse-and-markup-<>-arglists
6010 (while arg-start-pos
6011 (c-put-c-type-property (1- (car arg-start-pos))
6012 'c-<>-arg-sep)
6013 (setq arg-start-pos (cdr arg-start-pos)))
6014 (c-mark-<-as-paren start)
6015 (c-mark->-as-paren (1- (point))))
6016 (setq res t)
6017 nil)) ; Exit the loop.
6019 ((eq (char-before) ?<)
6020 ;; Either an operator starting with '<' or a nested arglist.
6021 (setq pos (point))
6022 (let (id-start id-end subres keyword-match)
6023 (cond
6024 ;; The '<' begins a multi-char operator.
6025 ((looking-at c-<-op-cont-regexp)
6026 (setq tmp (match-end 0))
6027 (goto-char (match-end 0)))
6028 ;; We're at a nested <.....>
6029 ((progn
6030 (setq tmp pos)
6031 (backward-char) ; to the '<'
6032 (and
6033 (save-excursion
6034 ;; There's always an identifier before an angle
6035 ;; bracket arglist, or a keyword in `c-<>-type-kwds'
6036 ;; or `c-<>-arglist-kwds'.
6037 (c-backward-syntactic-ws)
6038 (setq id-end (point))
6039 (c-simple-skip-symbol-backward)
6040 (when (or (setq keyword-match
6041 (looking-at c-opt-<>-sexp-key))
6042 (not (looking-at c-keywords-regexp)))
6043 (setq id-start (point))))
6044 (setq subres
6045 (let ((c-promote-possible-types t)
6046 (c-record-found-types t))
6047 (c-forward-<>-arglist-recur
6048 (and keyword-match
6049 (c-keyword-member
6050 (c-keyword-sym (match-string 1))
6051 'c-<>-type-kwds)))))))
6052 ;; It was an angle bracket arglist.
6053 (setq c-record-found-types subres)
6055 ;; Record the identifier before the template as a type
6056 ;; or reference depending on whether the arglist is last
6057 ;; in a qualified identifier.
6058 (when (and c-record-type-identifiers
6059 (not keyword-match))
6060 (if (and c-opt-identifier-concat-key
6061 (progn
6062 (c-forward-syntactic-ws)
6063 (looking-at c-opt-identifier-concat-key)))
6064 (c-record-ref-id (cons id-start id-end))
6065 (c-record-type-id (cons id-start id-end)))))
6067 ;; At a "less than" operator.
6069 (forward-char)
6071 t) ; carry on looping.
6073 ((and (not c-restricted-<>-arglists)
6074 (or (and (eq (char-before) ?&)
6075 (not (eq (char-after) ?&)))
6076 (eq (char-before) ?,)))
6077 ;; Just another argument. Record the position. The
6078 ;; type check stuff that made us stop at it is at
6079 ;; the top of the loop.
6080 (setq arg-start-pos (cons (point) arg-start-pos)))
6083 ;; Got a character that can't be in an angle bracket
6084 ;; arglist argument. Abort using `throw', since
6085 ;; it's useless to try to find a surrounding arglist
6086 ;; if we're nested.
6087 (throw 'angle-bracket-arglist-escape nil))))))
6088 (if res
6089 (or c-record-found-types t)))))
6091 (defun c-backward-<>-arglist (all-types &optional limit)
6092 ;; The point is assumed to be directly after a ">". Try to treat it
6093 ;; as the close paren of an angle bracket arglist and move back to
6094 ;; the corresponding "<". If successful, the point is left at
6095 ;; the "<" and t is returned, otherwise the point isn't moved and
6096 ;; nil is returned. ALL-TYPES is passed on to
6097 ;; `c-forward-<>-arglist'.
6099 ;; If the optional LIMIT is given, it bounds the backward search.
6100 ;; It's then assumed to be at a syntactically relevant position.
6102 ;; This is a wrapper around `c-forward-<>-arglist'. See that
6103 ;; function for more details.
6105 (let ((start (point)))
6106 (backward-char)
6107 (if (and (not c-parse-and-markup-<>-arglists)
6108 (c-get-char-property (point) 'syntax-table))
6110 (if (and (c-go-up-list-backward)
6111 (eq (char-after) ?<))
6113 ;; See corresponding note in `c-forward-<>-arglist'.
6114 (goto-char start)
6115 nil)
6117 (while (progn
6118 (c-syntactic-skip-backward "^<;{}" limit t)
6120 (and
6121 (if (eq (char-before) ?<)
6123 ;; Stopped at bob or a char that isn't allowed in an
6124 ;; arglist, so we've failed.
6125 (goto-char start)
6126 nil)
6128 (if (> (point)
6129 (progn (c-beginning-of-current-token)
6130 (point)))
6131 ;; If we moved then the "<" was part of some
6132 ;; multicharacter token.
6135 (backward-char)
6136 (let ((beg-pos (point)))
6137 (if (c-forward-<>-arglist all-types)
6138 (cond ((= (point) start)
6139 ;; Matched the arglist. Break the while.
6140 (goto-char beg-pos)
6141 nil)
6142 ((> (point) start)
6143 ;; We started from a non-paren ">" inside an
6144 ;; arglist.
6145 (goto-char start)
6146 nil)
6148 ;; Matched a shorter arglist. Can be a nested
6149 ;; one so continue looking.
6150 (goto-char beg-pos)
6152 t))))))
6154 (/= (point) start))))
6156 (defun c-forward-name ()
6157 ;; Move forward over a complete name if at the beginning of one,
6158 ;; stopping at the next following token. A keyword, as such,
6159 ;; doesn't count as a name. If the point is not at something that
6160 ;; is recognized as a name then it stays put.
6162 ;; A name could be something as simple as "foo" in C or something as
6163 ;; complex as "X<Y<class A<int>::B, BIT_MAX >> b>, ::operator<> ::
6164 ;; Z<(a>b)> :: operator const X<&foo>::T Q::G<unsigned short
6165 ;; int>::*volatile const" in C++ (this function is actually little
6166 ;; more than a `looking-at' call in all modes except those that,
6167 ;; like C++, have `c-recognize-<>-arglists' set).
6169 ;; Return
6170 ;; o - nil if no name is found;
6171 ;; o - 'template if it's an identifier ending with an angle bracket
6172 ;; arglist;
6173 ;; o - 'operator of it's an operator identifier;
6174 ;; o - t if it's some other kind of name.
6176 ;; This function records identifier ranges on
6177 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6178 ;; `c-record-type-identifiers' is non-nil.
6180 ;; This function might do hidden buffer changes.
6182 (let ((pos (point)) (start (point)) res id-start id-end
6183 ;; Turn off `c-promote-possible-types' here since we might
6184 ;; call `c-forward-<>-arglist' and we don't want it to promote
6185 ;; every suspect thing in the arglist to a type. We're
6186 ;; typically called from `c-forward-type' in this case, and
6187 ;; the caller only wants the top level type that it finds to
6188 ;; be promoted.
6189 c-promote-possible-types)
6190 (while
6191 (and
6192 (looking-at c-identifier-key)
6194 (progn
6195 ;; Check for keyword. We go to the last symbol in
6196 ;; `c-identifier-key' first.
6197 (goto-char (setq id-end (match-end 0)))
6198 (c-simple-skip-symbol-backward)
6199 (setq id-start (point))
6201 (if (looking-at c-keywords-regexp)
6202 (when (and (c-major-mode-is 'c++-mode)
6203 (looking-at
6204 (cc-eval-when-compile
6205 (concat "\\(operator\\|\\(template\\)\\)"
6206 "\\(" (c-lang-const c-nonsymbol-key c++)
6207 "\\|$\\)")))
6208 (if (match-beginning 2)
6209 ;; "template" is only valid inside an
6210 ;; identifier if preceded by "::".
6211 (save-excursion
6212 (c-backward-syntactic-ws)
6213 (and (c-safe (backward-char 2) t)
6214 (looking-at "::")))
6217 ;; Handle a C++ operator or template identifier.
6218 (goto-char id-end)
6219 (c-forward-syntactic-ws)
6220 (cond ((eq (char-before id-end) ?e)
6221 ;; Got "... ::template".
6222 (let ((subres (c-forward-name)))
6223 (when subres
6224 (setq pos (point)
6225 res subres))))
6227 ((looking-at c-identifier-start)
6228 ;; Got a cast operator.
6229 (when (c-forward-type)
6230 (setq pos (point)
6231 res 'operator)
6232 ;; Now we should match a sequence of either
6233 ;; '*', '&' or a name followed by ":: *",
6234 ;; where each can be followed by a sequence
6235 ;; of `c-opt-type-modifier-key'.
6236 (while (cond ((looking-at "[*&]")
6237 (goto-char (match-end 0))
6239 ((looking-at c-identifier-start)
6240 (and (c-forward-name)
6241 (looking-at "::")
6242 (progn
6243 (goto-char (match-end 0))
6244 (c-forward-syntactic-ws)
6245 (eq (char-after) ?*))
6246 (progn
6247 (forward-char)
6248 t))))
6249 (while (progn
6250 (c-forward-syntactic-ws)
6251 (setq pos (point))
6252 (looking-at c-opt-type-modifier-key))
6253 (goto-char (match-end 1))))))
6255 ((looking-at c-overloadable-operators-regexp)
6256 ;; Got some other operator.
6257 (setq c-last-identifier-range
6258 (cons (point) (match-end 0)))
6259 (goto-char (match-end 0))
6260 (c-forward-syntactic-ws)
6261 (setq pos (point)
6262 res 'operator)))
6264 nil)
6266 ;; `id-start' is equal to `id-end' if we've jumped over
6267 ;; an identifier that doesn't end with a symbol token.
6268 ;; That can occur e.g. for Java import directives on the
6269 ;; form "foo.bar.*".
6270 (when (and id-start (/= id-start id-end))
6271 (setq c-last-identifier-range
6272 (cons id-start id-end)))
6273 (goto-char id-end)
6274 (c-forward-syntactic-ws)
6275 (setq pos (point)
6276 res t)))
6278 (progn
6279 (goto-char pos)
6280 (when (or c-opt-identifier-concat-key
6281 c-recognize-<>-arglists)
6283 (cond
6284 ((and c-opt-identifier-concat-key
6285 (looking-at c-opt-identifier-concat-key))
6286 ;; Got a concatenated identifier. This handles the
6287 ;; cases with tricky syntactic whitespace that aren't
6288 ;; covered in `c-identifier-key'.
6289 (goto-char (match-end 0))
6290 (c-forward-syntactic-ws)
6293 ((and c-recognize-<>-arglists
6294 (eq (char-after) ?<))
6295 ;; Maybe an angle bracket arglist.
6296 (when (let ((c-record-type-identifiers t)
6297 (c-record-found-types t))
6298 (c-forward-<>-arglist nil))
6300 (c-add-type start (1+ pos))
6301 (c-forward-syntactic-ws)
6302 (setq pos (point)
6303 c-last-identifier-range nil)
6305 (if (and c-opt-identifier-concat-key
6306 (looking-at c-opt-identifier-concat-key))
6308 ;; Continue if there's an identifier concatenation
6309 ;; operator after the template argument.
6310 (progn
6311 (when (and c-record-type-identifiers id-start)
6312 (c-record-ref-id (cons id-start id-end)))
6313 (forward-char 2)
6314 (c-forward-syntactic-ws)
6317 (when (and c-record-type-identifiers id-start)
6318 (c-record-type-id (cons id-start id-end)))
6319 (setq res 'template)
6320 nil)))
6321 )))))
6323 (goto-char pos)
6324 res))
6326 (defun c-forward-type (&optional brace-block-too)
6327 ;; Move forward over a type spec if at the beginning of one,
6328 ;; stopping at the next following token. The keyword "typedef"
6329 ;; isn't part of a type spec here.
6331 ;; BRACE-BLOCK-TOO, when non-nil, means move over the brace block in
6332 ;; constructs like "struct foo {...} bar ;" or "struct {...} bar;".
6333 ;; The current (2009-03-10) intention is to convert all uses of
6334 ;; `c-forward-type' to call with this parameter set, then to
6335 ;; eliminate it.
6337 ;; Return
6338 ;; o - t if it's a known type that can't be a name or other
6339 ;; expression;
6340 ;; o - 'known if it's an otherwise known type (according to
6341 ;; `*-font-lock-extra-types');
6342 ;; o - 'prefix if it's a known prefix of a type;
6343 ;; o - 'found if it's a type that matches one in `c-found-types';
6344 ;; o - 'maybe if it's an identifier that might be a type;
6345 ;; o - 'decltype if it's a decltype(variable) declaration; - or
6346 ;; o - nil if it can't be a type (the point isn't moved then).
6348 ;; The point is assumed to be at the beginning of a token.
6350 ;; Note that this function doesn't skip past the brace definition
6351 ;; that might be considered part of the type, e.g.
6352 ;; "enum {a, b, c} foo".
6354 ;; This function records identifier ranges on
6355 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6356 ;; `c-record-type-identifiers' is non-nil.
6358 ;; This function might do hidden buffer changes.
6359 (when (and c-recognize-<>-arglists
6360 (looking-at "<"))
6361 (c-forward-<>-arglist t)
6362 (c-forward-syntactic-ws))
6364 (let ((start (point)) pos res name-res id-start id-end id-range)
6366 ;; Skip leading type modifiers. If any are found we know it's a
6367 ;; prefix of a type.
6368 (when c-opt-type-modifier-key ; e.g. "const" "volatile", but NOT "typedef"
6369 (while (looking-at c-opt-type-modifier-key)
6370 (goto-char (match-end 1))
6371 (c-forward-syntactic-ws)
6372 (setq res 'prefix)))
6374 (cond
6375 ((looking-at c-typeof-key) ; e.g. C++'s "decltype".
6376 (goto-char (match-end 1))
6377 (c-forward-syntactic-ws)
6378 (setq res (and (eq (char-after) ?\()
6379 (c-safe (c-forward-sexp))
6380 'decltype))
6381 (if res
6382 (c-forward-syntactic-ws)
6383 (goto-char start)))
6385 ((looking-at c-type-prefix-key) ; e.g. "struct", "class", but NOT
6386 ; "typedef".
6387 (goto-char (match-end 1))
6388 (c-forward-syntactic-ws)
6389 (setq pos (point))
6391 (setq name-res (c-forward-name))
6392 (setq res (not (null name-res)))
6393 (when (eq name-res t)
6394 ;; In many languages the name can be used without the
6395 ;; prefix, so we add it to `c-found-types'.
6396 (c-add-type pos (point))
6397 (when (and c-record-type-identifiers
6398 c-last-identifier-range)
6399 (c-record-type-id c-last-identifier-range)))
6400 (when (and brace-block-too
6401 (memq res '(t nil))
6402 (eq (char-after) ?\{)
6403 (save-excursion
6404 (c-safe
6405 (progn (c-forward-sexp)
6406 (c-forward-syntactic-ws)
6407 (setq pos (point))))))
6408 (goto-char pos)
6409 (setq res t))
6410 (unless res (goto-char start))) ; invalid syntax
6412 ((progn
6413 (setq pos nil)
6414 (if (looking-at c-identifier-start)
6415 (save-excursion
6416 (setq id-start (point)
6417 name-res (c-forward-name))
6418 (when name-res
6419 (setq id-end (point)
6420 id-range c-last-identifier-range))))
6421 (and (cond ((looking-at c-primitive-type-key)
6422 (setq res t))
6423 ((c-with-syntax-table c-identifier-syntax-table
6424 (looking-at c-known-type-key))
6425 (setq res 'known)))
6426 (or (not id-end)
6427 (>= (save-excursion
6428 (save-match-data
6429 (goto-char (match-end 1))
6430 (c-forward-syntactic-ws)
6431 (setq pos (point))))
6432 id-end)
6433 (setq res nil))))
6434 ;; Looking at a primitive or known type identifier. We've
6435 ;; checked for a name first so that we don't go here if the
6436 ;; known type match only is a prefix of another name.
6438 (setq id-end (match-end 1))
6440 (when (and c-record-type-identifiers
6441 (or c-promote-possible-types (eq res t)))
6442 (c-record-type-id (cons (match-beginning 1) (match-end 1))))
6444 (if (and c-opt-type-component-key
6445 (save-match-data
6446 (looking-at c-opt-type-component-key)))
6447 ;; There might be more keywords for the type.
6448 (let (safe-pos)
6449 (c-forward-keyword-clause 1)
6450 (while (progn
6451 (setq safe-pos (point))
6452 (looking-at c-opt-type-component-key))
6453 (when (and c-record-type-identifiers
6454 (looking-at c-primitive-type-key))
6455 (c-record-type-id (cons (match-beginning 1)
6456 (match-end 1))))
6457 (c-forward-keyword-clause 1))
6458 (if (looking-at c-primitive-type-key)
6459 (progn
6460 (when c-record-type-identifiers
6461 (c-record-type-id (cons (match-beginning 1)
6462 (match-end 1))))
6463 (c-forward-keyword-clause 1)
6464 (setq res t))
6465 (goto-char safe-pos)
6466 (setq res 'prefix)))
6467 (unless (save-match-data (c-forward-keyword-clause 1))
6468 (if pos
6469 (goto-char pos)
6470 (goto-char (match-end 1))
6471 (c-forward-syntactic-ws)))))
6473 (name-res
6474 (cond ((eq name-res t)
6475 ;; A normal identifier.
6476 (goto-char id-end)
6477 (if (or res c-promote-possible-types)
6478 (progn
6479 (c-add-type id-start id-end)
6480 (when (and c-record-type-identifiers id-range)
6481 (c-record-type-id id-range))
6482 (unless res
6483 (setq res 'found)))
6484 (setq res (if (c-check-type id-start id-end)
6485 ;; It's an identifier that has been used as
6486 ;; a type somewhere else.
6487 'found
6488 ;; It's an identifier that might be a type.
6489 'maybe))))
6490 ((eq name-res 'template)
6491 ;; A template is a type.
6492 (goto-char id-end)
6493 (setq res t))
6495 ;; Otherwise it's an operator identifier, which is not a type.
6496 (goto-char start)
6497 (setq res nil)))))
6499 (when res
6500 ;; Skip trailing type modifiers. If any are found we know it's
6501 ;; a type.
6502 (when c-opt-type-modifier-key
6503 (while (looking-at c-opt-type-modifier-key) ; e.g. "const", "volatile"
6504 (goto-char (match-end 1))
6505 (c-forward-syntactic-ws)
6506 (setq res t)))
6508 ;; Step over any type suffix operator. Do not let the existence
6509 ;; of these alter the classification of the found type, since
6510 ;; these operators typically are allowed in normal expressions
6511 ;; too.
6512 (when c-opt-type-suffix-key ; e.g. "..."
6513 (while (looking-at c-opt-type-suffix-key)
6514 (goto-char (match-end 1))
6515 (c-forward-syntactic-ws)))
6517 (when c-opt-type-concat-key ; Only/mainly for pike.
6518 ;; Look for a trailing operator that concatenates the type
6519 ;; with a following one, and if so step past that one through
6520 ;; a recursive call. Note that we don't record concatenated
6521 ;; types in `c-found-types' - it's the component types that
6522 ;; are recorded when appropriate.
6523 (setq pos (point))
6524 (let* ((c-promote-possible-types (or (memq res '(t known))
6525 c-promote-possible-types))
6526 ;; If we can't promote then set `c-record-found-types' so that
6527 ;; we can merge in the types from the second part afterwards if
6528 ;; it turns out to be a known type there.
6529 (c-record-found-types (and c-record-type-identifiers
6530 (not c-promote-possible-types)))
6531 subres)
6532 (if (and (looking-at c-opt-type-concat-key)
6534 (progn
6535 (goto-char (match-end 1))
6536 (c-forward-syntactic-ws)
6537 (setq subres (c-forward-type))))
6539 (progn
6540 ;; If either operand certainly is a type then both are, but we
6541 ;; don't let the existence of the operator itself promote two
6542 ;; uncertain types to a certain one.
6543 (cond ((eq res t))
6544 ((eq subres t)
6545 (unless (eq name-res 'template)
6546 (c-add-type id-start id-end))
6547 (when (and c-record-type-identifiers id-range)
6548 (c-record-type-id id-range))
6549 (setq res t))
6550 ((eq res 'known))
6551 ((eq subres 'known)
6552 (setq res 'known))
6553 ((eq res 'found))
6554 ((eq subres 'found)
6555 (setq res 'found))
6557 (setq res 'maybe)))
6559 (when (and (eq res t)
6560 (consp c-record-found-types))
6561 ;; Merge in the ranges of any types found by the second
6562 ;; `c-forward-type'.
6563 (setq c-record-type-identifiers
6564 ;; `nconc' doesn't mind that the tail of
6565 ;; `c-record-found-types' is t.
6566 (nconc c-record-found-types
6567 c-record-type-identifiers))))
6569 (goto-char pos))))
6571 (when (and c-record-found-types (memq res '(known found)) id-range)
6572 (setq c-record-found-types
6573 (cons id-range c-record-found-types))))
6575 ;;(message "c-forward-type %s -> %s: %s" start (point) res)
6577 res))
6579 (defun c-forward-annotation ()
6580 ;; Used for Java code only at the moment. Assumes point is on the
6581 ;; @, moves forward an annotation. returns nil if there is no
6582 ;; annotation at point.
6583 (and (looking-at "@")
6584 (progn (forward-char) t)
6585 (c-forward-type)
6586 (progn (c-forward-syntactic-ws) t)
6587 (if (looking-at "(")
6588 (c-go-list-forward)
6589 t)))
6591 (defmacro c-pull-open-brace (ps)
6592 ;; Pull the next open brace from PS (which has the form of paren-state),
6593 ;; skipping over any brace pairs. Returns NIL when PS is exhausted.
6594 `(progn
6595 (while (consp (car ,ps))
6596 (setq ,ps (cdr ,ps)))
6597 (prog1 (car ,ps)
6598 (setq ,ps (cdr ,ps)))))
6600 (defun c-back-over-member-initializer-braces ()
6601 ;; Point is just after a closing brace/parenthesis. Try to parse this as a
6602 ;; C++ member initializer list, going back to just after the introducing ":"
6603 ;; and returning t. Otherwise return nil, leaving point unchanged.
6604 (let ((here (point)) res)
6605 (setq res
6606 (catch 'done
6607 (when (not (c-go-list-backward))
6608 (throw 'done nil))
6609 (c-backward-syntactic-ws)
6610 (when (not (c-simple-skip-symbol-backward))
6611 (throw 'done nil))
6612 (c-backward-syntactic-ws)
6614 (while (eq (char-before) ?,)
6615 (backward-char)
6616 (c-backward-syntactic-ws)
6617 (when (not (memq (char-before) '(?\) ?})))
6618 (throw 'done nil))
6619 (when (not (c-go-list-backward))
6620 (throw 'done nil))
6621 (c-backward-syntactic-ws)
6622 (when (not (c-simple-skip-symbol-backward))
6623 (throw 'done nil))
6624 (c-backward-syntactic-ws))
6626 (eq (char-before) ?:)))
6627 (or res (goto-char here))
6628 res))
6630 (defun c-back-over-member-initializers ()
6631 ;; Test whether we are in a C++ member initializer list, and if so, go back
6632 ;; to the introducing ":", returning the position of the opening paren of
6633 ;; the function's arglist. Otherwise return nil, leaving point unchanged.
6634 (let ((here (point))
6635 (paren-state (c-parse-state))
6636 res)
6638 (setq res
6639 (catch 'done
6640 (if (not (c-at-toplevel-p))
6641 (progn
6642 (while (not (c-at-toplevel-p))
6643 (goto-char (c-pull-open-brace paren-state)))
6644 (c-backward-syntactic-ws)
6645 (when (not (c-simple-skip-symbol-backward))
6646 (throw 'done nil))
6647 (c-backward-syntactic-ws))
6648 (c-backward-syntactic-ws)
6649 (when (memq (char-before) '(?\) ?}))
6650 (when (not (c-go-list-backward))
6651 (throw 'done nil))
6652 (c-backward-syntactic-ws))
6653 (when (c-simple-skip-symbol-backward)
6654 (c-backward-syntactic-ws)))
6656 (while (eq (char-before) ?,)
6657 (backward-char)
6658 (c-backward-syntactic-ws)
6660 (when (not (memq (char-before) '(?\) ?})))
6661 (throw 'done nil))
6662 (when (not (c-go-list-backward))
6663 (throw 'done nil))
6664 (c-backward-syntactic-ws)
6665 (when (not (c-simple-skip-symbol-backward))
6666 (throw 'done nil))
6667 (c-backward-syntactic-ws))
6669 (and
6670 (eq (char-before) ?:)
6671 (c-just-after-func-arglist-p))))
6673 (or res (goto-char here))
6674 res))
6677 ;; Handling of large scale constructs like statements and declarations.
6679 ;; Macro used inside `c-forward-decl-or-cast-1'. It ought to be a
6680 ;; defsubst or perhaps even a defun, but it contains lots of free
6681 ;; variables that refer to things inside `c-forward-decl-or-cast-1'.
6682 (defmacro c-fdoc-shift-type-backward (&optional short)
6683 ;; `c-forward-decl-or-cast-1' can consume an arbitrary length list
6684 ;; of types when parsing a declaration, which means that it
6685 ;; sometimes consumes the identifier in the declaration as a type.
6686 ;; This is used to "backtrack" and make the last type be treated as
6687 ;; an identifier instead.
6688 `(progn
6689 ,(unless short
6690 ;; These identifiers are bound only in the inner let.
6691 '(setq identifier-type at-type
6692 identifier-start type-start
6693 got-parens nil
6694 got-identifier t
6695 got-suffix t
6696 got-suffix-after-parens id-start
6697 paren-depth 0))
6699 (if (setq at-type (if (eq backup-at-type 'prefix)
6701 backup-at-type))
6702 (setq type-start backup-type-start
6703 id-start backup-id-start)
6704 (setq type-start start-pos
6705 id-start start-pos))
6707 ;; When these flags already are set we've found specifiers that
6708 ;; unconditionally signal these attributes - backtracking doesn't
6709 ;; change that. So keep them set in that case.
6710 (or at-type-decl
6711 (setq at-type-decl backup-at-type-decl))
6712 (or maybe-typeless
6713 (setq maybe-typeless backup-maybe-typeless))
6715 ,(unless short
6716 ;; This identifier is bound only in the inner let.
6717 '(setq start id-start))))
6719 (defun c-forward-decl-or-cast-1 (preceding-token-end context last-cast-end)
6720 ;; Move forward over a declaration or a cast if at the start of one.
6721 ;; The point is assumed to be at the start of some token. Nil is
6722 ;; returned if no declaration or cast is recognized, and the point
6723 ;; is clobbered in that case.
6725 ;; If a declaration is parsed:
6727 ;; The point is left at the first token after the first complete
6728 ;; declarator, if there is one. The return value is a cons where
6729 ;; the car is the position of the first token in the declarator. (See
6730 ;; below for the cdr.)
6731 ;; Some examples:
6733 ;; void foo (int a, char *b) stuff ...
6734 ;; car ^ ^ point
6735 ;; float (*a)[], b;
6736 ;; car ^ ^ point
6737 ;; unsigned int a = c_style_initializer, b;
6738 ;; car ^ ^ point
6739 ;; unsigned int a (cplusplus_style_initializer), b;
6740 ;; car ^ ^ point (might change)
6741 ;; class Foo : public Bar {}
6742 ;; car ^ ^ point
6743 ;; class PikeClass (int a, string b) stuff ...
6744 ;; car ^ ^ point
6745 ;; enum bool;
6746 ;; car ^ ^ point
6747 ;; enum bool flag;
6748 ;; car ^ ^ point
6749 ;; void cplusplus_function (int x) throw (Bad);
6750 ;; car ^ ^ point
6751 ;; Foo::Foo (int b) : Base (b) {}
6752 ;; car ^ ^ point
6754 ;; auto foo = 5;
6755 ;; car ^ ^ point
6756 ;; auto cplusplus_11 (int a, char *b) -> decltype (bar):
6757 ;; car ^ ^ point
6761 ;; The cdr of the return value is non-nil when a
6762 ;; `c-typedef-decl-kwds' specifier is found in the declaration.
6763 ;; Specifically it is a dotted pair (A . B) where B is t when a
6764 ;; `c-typedef-kwds' ("typedef") is present, and A is t when some
6765 ;; other `c-typedef-decl-kwds' (e.g. class, struct, enum)
6766 ;; specifier is present. I.e., (some of) the declared
6767 ;; identifier(s) are types.
6769 ;; If a cast is parsed:
6771 ;; The point is left at the first token after the closing paren of
6772 ;; the cast. The return value is `cast'. Note that the start
6773 ;; position must be at the first token inside the cast parenthesis
6774 ;; to recognize it.
6776 ;; PRECEDING-TOKEN-END is the first position after the preceding
6777 ;; token, i.e. on the other side of the syntactic ws from the point.
6778 ;; Use a value less than or equal to (point-min) if the point is at
6779 ;; the first token in (the visible part of) the buffer.
6781 ;; CONTEXT is a symbol that describes the context at the point:
6782 ;; 'decl In a comma-separated declaration context (typically
6783 ;; inside a function declaration arglist).
6784 ;; '<> In an angle bracket arglist.
6785 ;; 'arglist Some other type of arglist.
6786 ;; nil Some other context or unknown context. Includes
6787 ;; within the parens of an if, for, ... construct.
6789 ;; LAST-CAST-END is the first token after the closing paren of a
6790 ;; preceding cast, or nil if none is known. If
6791 ;; `c-forward-decl-or-cast-1' is used in succession, it should be
6792 ;; the position after the closest preceding call where a cast was
6793 ;; matched. In that case it's used to discover chains of casts like
6794 ;; "(a) (b) c".
6796 ;; This function records identifier ranges on
6797 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6798 ;; `c-record-type-identifiers' is non-nil.
6800 ;; This function might do hidden buffer changes.
6802 (let (;; `start-pos' is used below to point to the start of the
6803 ;; first type, i.e. after any leading specifiers. It might
6804 ;; also point at the beginning of the preceding syntactic
6805 ;; whitespace.
6806 (start-pos (point))
6807 ;; Set to the result of `c-forward-type'.
6808 at-type
6809 ;; The position of the first token in what we currently
6810 ;; believe is the type in the declaration or cast, after any
6811 ;; specifiers and their associated clauses.
6812 type-start
6813 ;; The position of the first token in what we currently
6814 ;; believe is the declarator for the first identifier. Set
6815 ;; when the type is found, and moved forward over any
6816 ;; `c-decl-hangon-kwds' and their associated clauses that
6817 ;; occurs after the type.
6818 id-start
6819 ;; These store `at-type', `type-start' and `id-start' of the
6820 ;; identifier before the one in those variables. The previous
6821 ;; identifier might turn out to be the real type in a
6822 ;; declaration if the last one has to be the declarator in it.
6823 ;; If `backup-at-type' is nil then the other variables have
6824 ;; undefined values.
6825 backup-at-type backup-type-start backup-id-start
6826 ;; This stores `kwd-sym' of the symbol before the current one.
6827 ;; This is needed to distinguish the C++11 version of "auto" from
6828 ;; the pre C++11 meaning.
6829 backup-kwd-sym
6830 ;; Set if we've found a specifier (apart from "typedef") that makes
6831 ;; the defined identifier(s) types.
6832 at-type-decl
6833 ;; Set if we've a "typedef" keyword.
6834 at-typedef
6835 ;; Set if we've found a specifier that can start a declaration
6836 ;; where there's no type.
6837 maybe-typeless
6838 ;; Save the value of kwd-sym between loops of the "Check for a
6839 ;; type" loop. Needed to distinguish a C++11 "auto" from a pre
6840 ;; C++11 one.
6841 prev-kwd-sym
6842 ;; If a specifier is found that also can be a type prefix,
6843 ;; these flags are set instead of those above. If we need to
6844 ;; back up an identifier, they are copied to the real flag
6845 ;; variables. Thus they only take effect if we fail to
6846 ;; interpret it as a type.
6847 backup-at-type-decl backup-maybe-typeless
6848 ;; Whether we've found a declaration or a cast. We might know
6849 ;; this before we've found the type in it. It's 'ids if we've
6850 ;; found two consecutive identifiers (usually a sure sign, but
6851 ;; we should allow that in labels too), and t if we've found a
6852 ;; specifier keyword (a 100% sure sign).
6853 at-decl-or-cast
6854 ;; Set when we need to back up to parse this as a declaration
6855 ;; but not as a cast.
6856 backup-if-not-cast
6857 ;; For casts, the return position.
6858 cast-end
6859 ;; Have we got a new-style C++11 "auto"?
6860 new-style-auto
6861 ;; Save `c-record-type-identifiers' and
6862 ;; `c-record-ref-identifiers' since ranges are recorded
6863 ;; speculatively and should be thrown away if it turns out
6864 ;; that it isn't a declaration or cast.
6865 (save-rec-type-ids c-record-type-identifiers)
6866 (save-rec-ref-ids c-record-ref-identifiers))
6868 (while (c-forward-annotation)
6869 (c-forward-syntactic-ws))
6871 ;; Check for a type. Unknown symbols are treated as possible
6872 ;; types, but they could also be specifiers disguised through
6873 ;; macros like __INLINE__, so we recognize both types and known
6874 ;; specifiers after them too.
6875 (while
6876 (let* ((start (point)) kwd-sym kwd-clause-end found-type)
6878 ;; Look for a specifier keyword clause.
6879 (when (or (looking-at c-prefix-spec-kwds-re) ;FIXME!!! includes auto
6880 (and (c-major-mode-is 'java-mode)
6881 (looking-at "@[A-Za-z0-9]+")))
6882 (save-match-data
6883 (if (looking-at c-typedef-key)
6884 (setq at-typedef t)))
6885 (setq kwd-sym (c-keyword-sym (match-string 1)))
6886 (save-excursion
6887 (c-forward-keyword-clause 1)
6888 (setq kwd-clause-end (point))))
6890 (when (setq found-type (c-forward-type t)) ; brace-block-too
6891 ;; Found a known or possible type or a prefix of a known type.
6892 (when (and (c-major-mode-is 'c++-mode) ; C++11 style "auto"?
6893 (eq prev-kwd-sym (c-keyword-sym "auto"))
6894 (looking-at "[=(]")) ; FIXME!!! proper regexp.
6895 (setq new-style-auto t)
6896 (setq found-type nil)
6897 (goto-char start)) ; position of foo in "auto foo"
6899 (when at-type
6900 ;; Got two identifiers with nothing but whitespace
6901 ;; between them. That can only happen in declarations.
6902 (setq at-decl-or-cast 'ids)
6904 (when (eq at-type 'found)
6905 ;; If the previous identifier is a found type we
6906 ;; record it as a real one; it might be some sort of
6907 ;; alias for a prefix like "unsigned".
6908 (save-excursion
6909 (goto-char type-start)
6910 (let ((c-promote-possible-types t))
6911 (c-forward-type)))))
6913 (setq backup-at-type at-type
6914 backup-type-start type-start
6915 backup-id-start id-start
6916 backup-kwd-sym kwd-sym
6917 at-type found-type
6918 type-start start
6919 id-start (point)
6920 ;; The previous ambiguous specifier/type turned out
6921 ;; to be a type since we've parsed another one after
6922 ;; it, so clear these backup flags.
6923 backup-at-type-decl nil
6924 backup-maybe-typeless nil))
6926 (if kwd-sym
6927 (progn
6928 ;; Handle known specifier keywords and
6929 ;; `c-decl-hangon-kwds' which can occur after known
6930 ;; types.
6932 (if (c-keyword-member kwd-sym 'c-decl-hangon-kwds)
6933 ;; It's a hang-on keyword that can occur anywhere.
6934 (progn
6935 (setq at-decl-or-cast t)
6936 (if at-type
6937 ;; Move the identifier start position if
6938 ;; we've passed a type.
6939 (setq id-start kwd-clause-end)
6940 ;; Otherwise treat this as a specifier and
6941 ;; move the fallback position.
6942 (setq start-pos kwd-clause-end))
6943 (goto-char kwd-clause-end))
6945 ;; It's an ordinary specifier so we know that
6946 ;; anything before this can't be the type.
6947 (setq backup-at-type nil
6948 start-pos kwd-clause-end)
6950 (if found-type
6951 ;; It's ambiguous whether this keyword is a
6952 ;; specifier or a type prefix, so set the backup
6953 ;; flags. (It's assumed that `c-forward-type'
6954 ;; moved further than `c-forward-keyword-clause'.)
6955 (progn
6956 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
6957 (setq backup-at-type-decl t))
6958 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
6959 (setq backup-maybe-typeless t)))
6961 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
6962 ;; This test only happens after we've scanned a type.
6963 ;; So, with valid syntax, kwd-sym can't be 'typedef.
6964 (setq at-type-decl t))
6965 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
6966 (setq maybe-typeless t))
6968 ;; Haven't matched a type so it's an unambiguous
6969 ;; specifier keyword and we know we're in a
6970 ;; declaration.
6971 (setq at-decl-or-cast t)
6972 (setq prev-kwd-sym kwd-sym)
6974 (goto-char kwd-clause-end))))
6976 ;; If the type isn't known we continue so that we'll jump
6977 ;; over all specifiers and type identifiers. The reason
6978 ;; to do this for a known type prefix is to make things
6979 ;; like "unsigned INT16" work.
6980 (and found-type (not (eq found-type t))))))
6982 (cond
6983 ((eq at-type t)
6984 ;; If a known type was found, we still need to skip over any
6985 ;; hangon keyword clauses after it. Otherwise it has already
6986 ;; been done in the loop above.
6987 (while (looking-at c-decl-hangon-key)
6988 (c-forward-keyword-clause 1))
6989 (setq id-start (point)))
6991 ((eq at-type 'prefix)
6992 ;; A prefix type is itself a primitive type when it's not
6993 ;; followed by another type.
6994 (setq at-type t))
6996 ((not at-type)
6997 ;; Got no type but set things up to continue anyway to handle
6998 ;; the various cases when a declaration doesn't start with a
6999 ;; type.
7000 (setq id-start start-pos))
7002 ((and (eq at-type 'maybe)
7003 (c-major-mode-is 'c++-mode))
7004 ;; If it's C++ then check if the last "type" ends on the form
7005 ;; "foo::foo" or "foo::~foo", i.e. if it's the name of a
7006 ;; (con|de)structor.
7007 (save-excursion
7008 (let (name end-2 end-1)
7009 (goto-char id-start)
7010 (c-backward-syntactic-ws)
7011 (setq end-2 (point))
7012 (when (and
7013 (c-simple-skip-symbol-backward)
7014 (progn
7015 (setq name
7016 (buffer-substring-no-properties (point) end-2))
7017 ;; Cheating in the handling of syntactic ws below.
7018 (< (skip-chars-backward ":~ \t\n\r\v\f") 0))
7019 (progn
7020 (setq end-1 (point))
7021 (c-simple-skip-symbol-backward))
7022 (>= (point) type-start)
7023 (equal (buffer-substring-no-properties (point) end-1)
7024 name))
7025 ;; It is a (con|de)structor name. In that case the
7026 ;; declaration is typeless so zap out any preceding
7027 ;; identifier(s) that we might have taken as types.
7028 (goto-char type-start)
7029 (setq at-type nil
7030 backup-at-type nil
7031 id-start type-start))))))
7033 ;; Check for and step over a type decl expression after the thing
7034 ;; that is or might be a type. This can't be skipped since we
7035 ;; need the correct end position of the declarator for
7036 ;; `max-type-decl-end-*'.
7037 (let ((start (point)) (paren-depth 0) pos
7038 ;; True if there's a non-open-paren match of
7039 ;; `c-type-decl-prefix-key'.
7040 got-prefix
7041 ;; True if the declarator is surrounded by a parenthesis pair.
7042 got-parens
7043 ;; True if there is an identifier in the declarator.
7044 got-identifier
7045 ;; True if there's a non-close-paren match of
7046 ;; `c-type-decl-suffix-key'.
7047 got-suffix
7048 ;; True if there's a prefix match outside the outermost
7049 ;; paren pair that surrounds the declarator.
7050 got-prefix-before-parens
7051 ;; True if there's a suffix match outside the outermost
7052 ;; paren pair that surrounds the declarator. The value is
7053 ;; the position of the first suffix match.
7054 got-suffix-after-parens
7055 ;; True if we've parsed the type decl to a token that is
7056 ;; known to end declarations in this context.
7057 at-decl-end
7058 ;; The earlier values of `at-type' and `type-start' if we've
7059 ;; shifted the type backwards.
7060 identifier-type identifier-start
7061 ;; If `c-parse-and-markup-<>-arglists' is set we need to
7062 ;; turn it off during the name skipping below to avoid
7063 ;; getting `c-type' properties that might be bogus. That
7064 ;; can happen since we don't know if
7065 ;; `c-restricted-<>-arglists' will be correct inside the
7066 ;; arglist paren that gets entered.
7067 c-parse-and-markup-<>-arglists
7068 ;; Start of the identifier for which `got-identifier' was set.
7069 name-start)
7071 (goto-char id-start)
7073 ;; Skip over type decl prefix operators. (Note similar code in
7074 ;; `c-font-lock-declarators'.)
7075 (if (and c-recognize-typeless-decls
7076 (equal c-type-decl-prefix-key "\\<\\>"))
7077 (when (eq (char-after) ?\()
7078 (progn
7079 (setq paren-depth (1+ paren-depth))
7080 (forward-char)))
7081 (while (and (looking-at c-type-decl-prefix-key)
7082 (if (and (c-major-mode-is 'c++-mode)
7083 (match-beginning 3))
7084 ;; If the third submatch matches in C++ then
7085 ;; we're looking at an identifier that's a
7086 ;; prefix only if it specifies a member pointer.
7087 (when (progn (setq pos (point))
7088 (setq got-identifier (c-forward-name)))
7089 (setq name-start pos)
7090 (if (looking-at "\\(::\\)")
7091 ;; We only check for a trailing "::" and
7092 ;; let the "*" that should follow be
7093 ;; matched in the next round.
7094 (progn (setq got-identifier nil) t)
7095 ;; It turned out to be the real identifier,
7096 ;; so stop.
7097 nil))
7100 (if (eq (char-after) ?\()
7101 (progn
7102 (setq paren-depth (1+ paren-depth))
7103 (forward-char))
7104 (unless got-prefix-before-parens
7105 (setq got-prefix-before-parens (= paren-depth 0)))
7106 (setq got-prefix t)
7107 (goto-char (match-end 1)))
7108 (c-forward-syntactic-ws)))
7110 (setq got-parens (> paren-depth 0))
7112 ;; Skip over an identifier.
7113 (or got-identifier
7114 (and (looking-at c-identifier-start)
7115 (setq pos (point))
7116 (setq got-identifier (c-forward-name))
7117 (setq name-start pos)))
7119 ;; Skip over type decl suffix operators.
7120 (while (if (looking-at c-type-decl-suffix-key)
7122 (if (eq (char-after) ?\))
7123 (when (> paren-depth 0)
7124 (setq paren-depth (1- paren-depth))
7125 (forward-char)
7127 (when (if (save-match-data (looking-at "\\s("))
7128 (c-safe (c-forward-sexp 1) t)
7129 (goto-char (match-end 1))
7131 (when (and (not got-suffix-after-parens)
7132 (= paren-depth 0))
7133 (setq got-suffix-after-parens (match-beginning 0)))
7134 (setq got-suffix t)))
7136 ;; No suffix matched. We might have matched the
7137 ;; identifier as a type and the open paren of a
7138 ;; function arglist as a type decl prefix. In that
7139 ;; case we should "backtrack": Reinterpret the last
7140 ;; type as the identifier, move out of the arglist and
7141 ;; continue searching for suffix operators.
7143 ;; Do this even if there's no preceding type, to cope
7144 ;; with old style function declarations in K&R C,
7145 ;; (con|de)structors in C++ and `c-typeless-decl-kwds'
7146 ;; style declarations. That isn't applicable in an
7147 ;; arglist context, though.
7148 (when (and (= paren-depth 1)
7149 (not got-prefix-before-parens)
7150 (not (eq at-type t))
7151 (or backup-at-type
7152 maybe-typeless
7153 backup-maybe-typeless
7154 (when c-recognize-typeless-decls
7155 (not context)))
7156 (setq pos (c-up-list-forward (point)))
7157 (eq (char-before pos) ?\)))
7158 (c-fdoc-shift-type-backward)
7159 (goto-char pos)
7162 (c-forward-syntactic-ws))
7164 (when (or (and new-style-auto
7165 (looking-at c-auto-ops-re))
7166 (and (or maybe-typeless backup-maybe-typeless)
7167 (not got-identifier)
7168 (not got-prefix)
7169 at-type))
7170 ;; Have found no identifier but `c-typeless-decl-kwds' has
7171 ;; matched so we know we're inside a declaration. The
7172 ;; preceding type must be the identifier instead.
7173 (c-fdoc-shift-type-backward))
7175 ;; Prepare the "-> type;" for fontification later on.
7176 (when (and new-style-auto
7177 (looking-at c-haskell-op-re))
7178 (save-excursion
7179 (goto-char (match-end 0))
7180 (c-forward-syntactic-ws)
7181 (setq type-start (point))
7182 (setq at-type (c-forward-type))))
7184 (setq
7185 at-decl-or-cast
7186 (catch 'at-decl-or-cast
7188 ;; CASE 1
7189 (when (> paren-depth 0)
7190 ;; Encountered something inside parens that isn't matched by
7191 ;; the `c-type-decl-*' regexps, so it's not a type decl
7192 ;; expression. Try to skip out to the same paren depth to
7193 ;; not confuse the cast check below.
7194 (c-safe (goto-char (scan-lists (point) 1 paren-depth)))
7195 ;; If we've found a specifier keyword then it's a
7196 ;; declaration regardless.
7197 (throw 'at-decl-or-cast (eq at-decl-or-cast t)))
7199 (setq at-decl-end
7200 (looking-at (cond ((eq context '<>) "[,>]")
7201 (context "[,)]")
7202 (t "[,;]"))))
7204 ;; Now we've collected info about various characteristics of
7205 ;; the construct we're looking at. Below follows a decision
7206 ;; tree based on that. It's ordered to check more certain
7207 ;; signs before less certain ones.
7209 (if got-identifier
7210 (progn
7212 ;; CASE 2
7213 (when (and (or at-type maybe-typeless)
7214 (not (or got-prefix got-parens)))
7215 ;; Got another identifier directly after the type, so it's a
7216 ;; declaration.
7217 (throw 'at-decl-or-cast t))
7219 (when (and got-parens
7220 (not got-prefix)
7221 ;; (not got-suffix-after-parens)
7222 (or backup-at-type
7223 maybe-typeless
7224 backup-maybe-typeless
7225 (eq at-decl-or-cast t)
7226 (save-excursion
7227 (goto-char name-start)
7228 (not (memq (c-forward-type) '(nil maybe))))))
7229 ;; Got a declaration of the form "foo bar (gnu);" or "bar
7230 ;; (gnu);" where we've recognized "bar" as the type and "gnu"
7231 ;; as the declarator. In this case it's however more likely
7232 ;; that "bar" is the declarator and "gnu" a function argument
7233 ;; or initializer (if `c-recognize-paren-inits' is set),
7234 ;; since the parens around "gnu" would be superfluous if it's
7235 ;; a declarator. Shift the type one step backward.
7236 (c-fdoc-shift-type-backward)))
7238 ;; Found no identifier.
7240 (if backup-at-type
7241 (progn
7243 ;; CASE 3
7244 (when (= (point) start)
7245 ;; Got a plain list of identifiers. If a colon follows it's
7246 ;; a valid label, or maybe a bitfield. Otherwise the last
7247 ;; one probably is the declared identifier and we should
7248 ;; back up to the previous type, providing it isn't a cast.
7249 (if (and (eq (char-after) ?:)
7250 (not (c-major-mode-is 'java-mode)))
7251 (cond
7252 ;; If we've found a specifier keyword then it's a
7253 ;; declaration regardless.
7254 ((eq at-decl-or-cast t)
7255 (throw 'at-decl-or-cast t))
7256 ((and c-has-bitfields
7257 (eq at-decl-or-cast 'ids)) ; bitfield.
7258 (setq backup-if-not-cast t)
7259 (throw 'at-decl-or-cast t)))
7261 (setq backup-if-not-cast t)
7262 (throw 'at-decl-or-cast t)))
7264 ;; CASE 4
7265 (when (and got-suffix
7266 (not got-prefix)
7267 (not got-parens))
7268 ;; Got a plain list of identifiers followed by some suffix.
7269 ;; If this isn't a cast then the last identifier probably is
7270 ;; the declared one and we should back up to the previous
7271 ;; type.
7272 (setq backup-if-not-cast t)
7273 (throw 'at-decl-or-cast t)))
7275 ;; CASE 5
7276 (when (eq at-type t)
7277 ;; If the type is known we know that there can't be any
7278 ;; identifier somewhere else, and it's only in declarations in
7279 ;; e.g. function prototypes and in casts that the identifier may
7280 ;; be left out.
7281 (throw 'at-decl-or-cast t))
7283 (when (= (point) start)
7284 ;; Only got a single identifier (parsed as a type so far).
7285 ;; CASE 6
7286 (if (and
7287 ;; Check that the identifier isn't at the start of an
7288 ;; expression.
7289 at-decl-end
7290 (cond
7291 ((eq context 'decl)
7292 ;; Inside an arglist that contains declarations. If K&R
7293 ;; style declarations and parenthesis style initializers
7294 ;; aren't allowed then the single identifier must be a
7295 ;; type, else we require that it's known or found
7296 ;; (primitive types are handled above).
7297 (or (and (not c-recognize-knr-p)
7298 (not c-recognize-paren-inits))
7299 (memq at-type '(known found))))
7300 ((eq context '<>)
7301 ;; Inside a template arglist. Accept known and found
7302 ;; types; other identifiers could just as well be
7303 ;; constants in C++.
7304 (memq at-type '(known found)))))
7305 (throw 'at-decl-or-cast t)
7306 ;; CASE 7
7307 ;; Can't be a valid declaration or cast, but if we've found a
7308 ;; specifier it can't be anything else either, so treat it as
7309 ;; an invalid/unfinished declaration or cast.
7310 (throw 'at-decl-or-cast at-decl-or-cast))))
7312 (if (and got-parens
7313 (not got-prefix)
7314 (not context)
7315 (not (eq at-type t))
7316 (or backup-at-type
7317 maybe-typeless
7318 backup-maybe-typeless
7319 (when c-recognize-typeless-decls
7320 (or (not got-suffix)
7321 (not (looking-at
7322 c-after-suffixed-type-maybe-decl-key))))))
7323 ;; Got an empty paren pair and a preceding type that probably
7324 ;; really is the identifier. Shift the type backwards to make
7325 ;; the last one the identifier. This is analogous to the
7326 ;; "backtracking" done inside the `c-type-decl-suffix-key' loop
7327 ;; above.
7329 ;; Exception: In addition to the conditions in that
7330 ;; "backtracking" code, do not shift backward if we're not
7331 ;; looking at either `c-after-suffixed-type-decl-key' or "[;,]".
7332 ;; Since there's no preceding type, the shift would mean that
7333 ;; the declaration is typeless. But if the regexp doesn't match
7334 ;; then we will simply fall through in the tests below and not
7335 ;; recognize it at all, so it's better to try it as an abstract
7336 ;; declarator instead.
7337 (c-fdoc-shift-type-backward)
7339 ;; Still no identifier.
7340 ;; CASE 8
7341 (when (and got-prefix (or got-parens got-suffix))
7342 ;; Require `got-prefix' together with either `got-parens' or
7343 ;; `got-suffix' to recognize it as an abstract declarator:
7344 ;; `got-parens' only is probably an empty function call.
7345 ;; `got-suffix' only can build an ordinary expression together
7346 ;; with the preceding identifier which we've taken as a type.
7347 ;; We could actually accept on `got-prefix' only, but that can
7348 ;; easily occur temporarily while writing an expression so we
7349 ;; avoid that case anyway. We could do a better job if we knew
7350 ;; the point when the fontification was invoked.
7351 (throw 'at-decl-or-cast t))
7353 ;; CASE 9
7354 (when (and at-type
7355 (not got-prefix)
7356 (not got-parens)
7357 got-suffix-after-parens
7358 (eq (char-after got-suffix-after-parens) ?\())
7359 ;; Got a type, no declarator but a paren suffix. I.e. it's a
7360 ;; normal function call after all (or perhaps a C++ style object
7361 ;; instantiation expression).
7362 (throw 'at-decl-or-cast nil))))
7364 ;; CASE 10
7365 (when at-decl-or-cast
7366 ;; By now we've located the type in the declaration that we know
7367 ;; we're in.
7368 (throw 'at-decl-or-cast t))
7370 ;; CASE 11
7371 (when (and got-identifier
7372 (not context)
7373 (looking-at c-after-suffixed-type-decl-key)
7374 (if (and got-parens
7375 (not got-prefix)
7376 (not got-suffix)
7377 (not (eq at-type t)))
7378 ;; Shift the type backward in the case that there's a
7379 ;; single identifier inside parens. That can only
7380 ;; occur in K&R style function declarations so it's
7381 ;; more likely that it really is a function call.
7382 ;; Therefore we only do this after
7383 ;; `c-after-suffixed-type-decl-key' has matched.
7384 (progn (c-fdoc-shift-type-backward) t)
7385 got-suffix-after-parens))
7386 ;; A declaration according to `c-after-suffixed-type-decl-key'.
7387 (throw 'at-decl-or-cast t))
7389 ;; CASE 12
7390 (when (and (or got-prefix (not got-parens))
7391 (memq at-type '(t known)))
7392 ;; It's a declaration if a known type precedes it and it can't be a
7393 ;; function call.
7394 (throw 'at-decl-or-cast t))
7396 ;; If we get here we can't tell if this is a type decl or a normal
7397 ;; expression by looking at it alone. (That's under the assumption
7398 ;; that normal expressions always can look like type decl expressions,
7399 ;; which isn't really true but the cases where it doesn't hold are so
7400 ;; uncommon (e.g. some placements of "const" in C++) it's not worth
7401 ;; the effort to look for them.)
7403 ;;; 2008-04-16: commented out the next form, to allow the function to recognize
7404 ;;; "foo (int bar)" in CC (an implicit type (in class foo) without a semicolon)
7405 ;;; as a(n almost complete) declaration, enabling it to be fontified.
7406 ;; CASE 13
7407 ;; (unless (or at-decl-end (looking-at "=[^=]"))
7408 ;; If this is a declaration it should end here or its initializer(*)
7409 ;; should start here, so check for allowed separation tokens. Note
7410 ;; that this rule doesn't work e.g. with a K&R arglist after a
7411 ;; function header.
7413 ;; *) Don't check for C++ style initializers using parens
7414 ;; since those already have been matched as suffixes.
7416 ;; If `at-decl-or-cast' is then we've found some other sign that
7417 ;; it's a declaration or cast, so then it's probably an
7418 ;; invalid/unfinished one.
7419 ;; (throw 'at-decl-or-cast at-decl-or-cast))
7421 ;; Below are tests that only should be applied when we're certain to
7422 ;; not have parsed halfway through an expression.
7424 ;; CASE 14
7425 (when (memq at-type '(t known))
7426 ;; The expression starts with a known type so treat it as a
7427 ;; declaration.
7428 (throw 'at-decl-or-cast t))
7430 ;; CASE 15
7431 (when (and (c-major-mode-is 'c++-mode)
7432 ;; In C++ we check if the identifier is a known type, since
7433 ;; (con|de)structors use the class name as identifier.
7434 ;; We've always shifted over the identifier as a type and
7435 ;; then backed up again in this case.
7436 identifier-type
7437 (or (memq identifier-type '(found known))
7438 (and (eq (char-after identifier-start) ?~)
7439 ;; `at-type' probably won't be 'found for
7440 ;; destructors since the "~" is then part of the
7441 ;; type name being checked against the list of
7442 ;; known types, so do a check without that
7443 ;; operator.
7444 (or (save-excursion
7445 (goto-char (1+ identifier-start))
7446 (c-forward-syntactic-ws)
7447 (c-with-syntax-table
7448 c-identifier-syntax-table
7449 (looking-at c-known-type-key)))
7450 (save-excursion
7451 (goto-char (1+ identifier-start))
7452 ;; We have already parsed the type earlier,
7453 ;; so it'd be possible to cache the end
7454 ;; position instead of redoing it here, but
7455 ;; then we'd need to keep track of another
7456 ;; position everywhere.
7457 (c-check-type (point)
7458 (progn (c-forward-type)
7459 (point))))))))
7460 (throw 'at-decl-or-cast t))
7462 (if got-identifier
7463 (progn
7464 ;; CASE 16
7465 (when (and got-prefix-before-parens
7466 at-type
7467 (or at-decl-end (looking-at "=[^=]"))
7468 (not context)
7469 (not got-suffix))
7470 ;; Got something like "foo * bar;". Since we're not inside an
7471 ;; arglist it would be a meaningless expression because the
7472 ;; result isn't used. We therefore choose to recognize it as
7473 ;; a declaration. Do not allow a suffix since it could then
7474 ;; be a function call.
7475 (throw 'at-decl-or-cast t))
7477 ;; CASE 17
7478 (when (and (or got-suffix-after-parens
7479 (looking-at "=[^=]"))
7480 (eq at-type 'found)
7481 (not (eq context 'arglist)))
7482 ;; Got something like "a (*b) (c);" or "a (b) = c;". It could
7483 ;; be an odd expression or it could be a declaration. Treat
7484 ;; it as a declaration if "a" has been used as a type
7485 ;; somewhere else (if it's a known type we won't get here).
7486 (throw 'at-decl-or-cast t)))
7488 ;; CASE 18
7489 (when (and context
7490 (or got-prefix
7491 (and (eq context 'decl)
7492 (not c-recognize-paren-inits)
7493 (or got-parens got-suffix))))
7494 ;; Got a type followed by an abstract declarator. If `got-prefix'
7495 ;; is set it's something like "a *" without anything after it. If
7496 ;; `got-parens' or `got-suffix' is set it's "a()", "a[]", "a()[]",
7497 ;; or similar, which we accept only if the context rules out
7498 ;; expressions.
7499 (throw 'at-decl-or-cast t)))
7501 ;; If we had a complete symbol table here (which rules out
7502 ;; `c-found-types') we should return t due to the disambiguation rule
7503 ;; (in at least C++) that anything that can be parsed as a declaration
7504 ;; is a declaration. Now we're being more defensive and prefer to
7505 ;; highlight things like "foo (bar);" as a declaration only if we're
7506 ;; inside an arglist that contains declarations.
7507 ;; CASE 19
7508 (eq context 'decl))))
7510 ;; The point is now after the type decl expression.
7512 (cond
7513 ;; Check for a cast.
7514 ((save-excursion
7515 (and
7516 c-cast-parens
7518 ;; Should be the first type/identifier in a cast paren.
7519 (> preceding-token-end (point-min))
7520 (memq (char-before preceding-token-end) c-cast-parens)
7522 ;; The closing paren should follow.
7523 (progn
7524 (c-forward-syntactic-ws)
7525 (looking-at "\\s)"))
7527 ;; There should be a primary expression after it.
7528 (let (pos)
7529 (forward-char)
7530 (c-forward-syntactic-ws)
7531 (setq cast-end (point))
7532 (and (looking-at c-primary-expr-regexp)
7533 (progn
7534 (setq pos (match-end 0))
7536 ;; Check if the expression begins with a prefix keyword.
7537 (match-beginning 2)
7538 (if (match-beginning 1)
7539 ;; Expression begins with an ambiguous operator. Treat
7540 ;; it as a cast if it's a type decl or if we've
7541 ;; recognized the type somewhere else.
7542 (or at-decl-or-cast
7543 (memq at-type '(t known found)))
7544 ;; Unless it's a keyword, it's the beginning of a primary
7545 ;; expression.
7546 (not (looking-at c-keywords-regexp)))))
7547 ;; If `c-primary-expr-regexp' matched a nonsymbol token, check
7548 ;; that it matched a whole one so that we don't e.g. confuse
7549 ;; the operator '-' with '->'. It's ok if it matches further,
7550 ;; though, since it e.g. can match the float '.5' while the
7551 ;; operator regexp only matches '.'.
7552 (or (not (looking-at c-nonsymbol-token-regexp))
7553 (<= (match-end 0) pos))))
7555 ;; There should either be a cast before it or something that isn't an
7556 ;; identifier or close paren.
7557 (> preceding-token-end (point-min))
7558 (progn
7559 (goto-char (1- preceding-token-end))
7560 (or (eq (point) last-cast-end)
7561 (progn
7562 (c-backward-syntactic-ws)
7563 (if (< (skip-syntax-backward "w_") 0)
7564 ;; It's a symbol. Accept it only if it's one of the
7565 ;; keywords that can precede an expression (without
7566 ;; surrounding parens).
7567 (looking-at c-simple-stmt-key)
7568 (and
7569 ;; Check that it isn't a close paren (block close is ok,
7570 ;; though).
7571 (not (memq (char-before) '(?\) ?\])))
7572 ;; Check that it isn't a nonsymbol identifier.
7573 (not (c-on-identifier)))))))))
7575 ;; Handle the cast.
7576 (when (and c-record-type-identifiers at-type (not (eq at-type t)))
7577 (let ((c-promote-possible-types t))
7578 (goto-char type-start)
7579 (c-forward-type)))
7581 (goto-char cast-end)
7582 'cast)
7584 (at-decl-or-cast
7585 ;; We're at a declaration. Highlight the type and the following
7586 ;; declarators.
7588 (when backup-if-not-cast
7589 (c-fdoc-shift-type-backward t))
7591 (when (and (eq context 'decl) (looking-at ","))
7592 ;; Make sure to propagate the `c-decl-arg-start' property to
7593 ;; the next argument if it's set in this one, to cope with
7594 ;; interactive refontification.
7595 (c-put-c-type-property (point) 'c-decl-arg-start))
7597 ;; Record the type's coordinates in `c-record-type-identifiers' for
7598 ;; later fontification.
7599 (when (and c-record-type-identifiers at-type ;; (not (eq at-type t))
7600 ;; There seems no reason to exclude a token from
7601 ;; fontification just because it's "a known type that can't
7602 ;; be a name or other expression". 2013-09-18.
7604 (let ((c-promote-possible-types t))
7605 (save-excursion
7606 (goto-char type-start)
7607 (c-forward-type))))
7609 (cons id-start
7610 (and (or at-type-decl at-typedef)
7611 (cons at-type-decl at-typedef))))
7614 ;; False alarm. Restore the recorded ranges.
7615 (setq c-record-type-identifiers save-rec-type-ids
7616 c-record-ref-identifiers save-rec-ref-ids)
7617 nil))))
7619 (defun c-forward-label (&optional assume-markup preceding-token-end limit)
7620 ;; Assuming that point is at the beginning of a token, check if it starts a
7621 ;; label and if so move over it and return non-nil (t in default situations,
7622 ;; specific symbols (see below) for interesting situations), otherwise don't
7623 ;; move and return nil. "Label" here means "most things with a colon".
7625 ;; More precisely, a "label" is regarded as one of:
7626 ;; (i) a goto target like "foo:" - returns the symbol `goto-target';
7627 ;; (ii) A case label - either the entire construct "case FOO:", or just the
7628 ;; bare "case", should the colon be missing. We return t;
7629 ;; (iii) a keyword which needs a colon, like "default:" or "private:"; We
7630 ;; return t;
7631 ;; (iv) One of QT's "extended" C++ variants of
7632 ;; "private:"/"protected:"/"public:"/"more:" looking like "public slots:".
7633 ;; Returns the symbol `qt-2kwds-colon'.
7634 ;; (v) QT's construct "signals:". Returns the symbol `qt-1kwd-colon'.
7635 ;; (vi) One of the keywords matched by `c-opt-extra-label-key' (without any
7636 ;; colon). Currently (2006-03), this applies only to Objective C's
7637 ;; keywords "@private", "@protected", and "@public". Returns t.
7639 ;; One of the things which will NOT be recognized as a label is a bit-field
7640 ;; element of a struct, something like "int foo:5".
7642 ;; The end of the label is taken to be just after the colon, or the end of
7643 ;; the first submatch in `c-opt-extra-label-key'. The point is directly
7644 ;; after the end on return. The terminating char gets marked with
7645 ;; `c-decl-end' to improve recognition of the following declaration or
7646 ;; statement.
7648 ;; If ASSUME-MARKUP is non-nil, it's assumed that the preceding
7649 ;; label, if any, has already been marked up like that.
7651 ;; If PRECEDING-TOKEN-END is given, it should be the first position
7652 ;; after the preceding token, i.e. on the other side of the
7653 ;; syntactic ws from the point. Use a value less than or equal to
7654 ;; (point-min) if the point is at the first token in (the visible
7655 ;; part of) the buffer.
7657 ;; The optional LIMIT limits the forward scan for the colon.
7659 ;; This function records the ranges of the label symbols on
7660 ;; `c-record-ref-identifiers' if `c-record-type-identifiers' (!) is
7661 ;; non-nil.
7663 ;; This function might do hidden buffer changes.
7665 (let ((start (point))
7666 label-end
7667 qt-symbol-idx
7668 macro-start ; if we're in one.
7669 label-type
7670 kwd)
7671 (cond
7672 ;; "case" or "default" (Doesn't apply to AWK).
7673 ((looking-at c-label-kwds-regexp)
7674 (let ((kwd-end (match-end 1)))
7675 ;; Record only the keyword itself for fontification, since in
7676 ;; case labels the following is a constant expression and not
7677 ;; a label.
7678 (when c-record-type-identifiers
7679 (c-record-ref-id (cons (match-beginning 1) kwd-end)))
7681 ;; Find the label end.
7682 (goto-char kwd-end)
7683 (setq label-type
7684 (if (and (c-syntactic-re-search-forward
7685 ;; Stop on chars that aren't allowed in expressions,
7686 ;; and on operator chars that would be meaningless
7687 ;; there. FIXME: This doesn't cope with ?: operators.
7688 "[;{=,@]\\|\\(\\=\\|[^:]\\):\\([^:]\\|\\'\\)"
7689 limit t t nil 1)
7690 (match-beginning 2))
7692 (progn ; there's a proper :
7693 (goto-char (match-beginning 2)) ; just after the :
7694 (c-put-c-type-property (1- (point)) 'c-decl-end)
7697 ;; It's an unfinished label. We consider the keyword enough
7698 ;; to recognize it as a label, so that it gets fontified.
7699 ;; Leave the point at the end of it, but don't put any
7700 ;; `c-decl-end' marker.
7701 (goto-char kwd-end)
7702 t))))
7704 ;; @private, @protected, @public, in Objective C, or similar.
7705 ((and c-opt-extra-label-key
7706 (looking-at c-opt-extra-label-key))
7707 ;; For a `c-opt-extra-label-key' match, we record the whole
7708 ;; thing for fontification. That's to get the leading '@' in
7709 ;; Objective-C protection labels fontified.
7710 (goto-char (match-end 1))
7711 (when c-record-type-identifiers
7712 (c-record-ref-id (cons (match-beginning 1) (point))))
7713 (c-put-c-type-property (1- (point)) 'c-decl-end)
7714 (setq label-type t))
7716 ;; All other cases of labels.
7717 ((and c-recognize-colon-labels ; nil for AWK and IDL, otherwise t.
7719 ;; A colon label must have something before the colon.
7720 (not (eq (char-after) ?:))
7722 ;; Check that we're not after a token that can't precede a label.
7724 ;; Trivially succeeds when there's no preceding token.
7725 ;; Succeeds when we're at a virtual semicolon.
7726 (if preceding-token-end
7727 (<= preceding-token-end (point-min))
7728 (save-excursion
7729 (c-backward-syntactic-ws)
7730 (setq preceding-token-end (point))
7731 (or (bobp)
7732 (c-at-vsemi-p))))
7734 ;; Check if we're after a label, if we're after a closing
7735 ;; paren that belong to statement, and with
7736 ;; `c-label-prefix-re'. It's done in different order
7737 ;; depending on `assume-markup' since the checks have
7738 ;; different expensiveness.
7739 (if assume-markup
7741 (eq (c-get-char-property (1- preceding-token-end) 'c-type)
7742 'c-decl-end)
7744 (save-excursion
7745 (goto-char (1- preceding-token-end))
7746 (c-beginning-of-current-token)
7747 (or (looking-at c-label-prefix-re)
7748 (looking-at c-block-stmt-1-key)))
7750 (and (eq (char-before preceding-token-end) ?\))
7751 (c-after-conditional)))
7754 (save-excursion
7755 (goto-char (1- preceding-token-end))
7756 (c-beginning-of-current-token)
7757 (or (looking-at c-label-prefix-re)
7758 (looking-at c-block-stmt-1-key)))
7760 (cond
7761 ((eq (char-before preceding-token-end) ?\))
7762 (c-after-conditional))
7764 ((eq (char-before preceding-token-end) ?:)
7765 ;; Might be after another label, so check it recursively.
7766 (save-restriction
7767 (save-excursion
7768 (goto-char (1- preceding-token-end))
7769 ;; Essentially the same as the
7770 ;; `c-syntactic-re-search-forward' regexp below.
7771 (setq macro-start
7772 (save-excursion (and (c-beginning-of-macro)
7773 (point))))
7774 (if macro-start (narrow-to-region macro-start (point-max)))
7775 (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+" nil t)
7776 ;; Note: the following should work instead of the
7777 ;; narrow-to-region above. Investigate why not,
7778 ;; sometime. ACM, 2006-03-31.
7779 ;; (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+"
7780 ;; macro-start t)
7781 (let ((pte (point))
7782 ;; If the caller turned on recording for us,
7783 ;; it shouldn't apply when we check the
7784 ;; preceding label.
7785 c-record-type-identifiers)
7786 ;; A label can't start at a cpp directive. Check for
7787 ;; this, since c-forward-syntactic-ws would foul up on it.
7788 (unless (and c-opt-cpp-prefix (looking-at c-opt-cpp-prefix))
7789 (c-forward-syntactic-ws)
7790 (c-forward-label nil pte start))))))))))
7792 ;; Point is still at the beginning of the possible label construct.
7794 ;; Check that the next nonsymbol token is ":", or that we're in one
7795 ;; of QT's "slots" declarations. Allow '(' for the sake of macro
7796 ;; arguments. FIXME: Should build this regexp from the language
7797 ;; constants.
7798 (cond
7799 ;; public: protected: private:
7800 ((and
7801 (c-major-mode-is 'c++-mode)
7802 (search-forward-regexp
7803 "\\=p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\>[^_]" nil t)
7804 (progn (backward-char)
7805 (c-forward-syntactic-ws limit)
7806 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon.
7807 (forward-char)
7808 (setq label-type t))
7809 ;; QT double keyword like "protected slots:" or goto target.
7810 ((progn (goto-char start) nil))
7811 ((when (c-syntactic-re-search-forward
7812 "[ \t\n[:?;{=*/%&|,<>!@+-]" limit t t) ; not at EOB
7813 (backward-char)
7814 (setq label-end (point))
7815 (setq qt-symbol-idx
7816 (and (c-major-mode-is 'c++-mode)
7817 (string-match
7818 "\\(p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\|more\\)\\>"
7819 (buffer-substring start (point)))))
7820 (c-forward-syntactic-ws limit)
7821 (cond
7822 ((looking-at ":\\([^:]\\|\\'\\)") ; A single colon.
7823 (forward-char)
7824 (setq label-type
7825 (if (or (string= "signals" ; Special QT macro
7826 (setq kwd (buffer-substring-no-properties start label-end)))
7827 (string= "Q_SIGNALS" kwd))
7828 'qt-1kwd-colon
7829 'goto-target)))
7830 ((and qt-symbol-idx
7831 (search-forward-regexp "\\=\\(slots\\|Q_SLOTS\\)\\>" limit t)
7832 (progn (c-forward-syntactic-ws limit)
7833 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon
7834 (forward-char)
7835 (setq label-type 'qt-2kwds-colon)))))))
7837 (save-restriction
7838 (narrow-to-region start (point))
7840 ;; Check that `c-nonlabel-token-key' doesn't match anywhere.
7841 (catch 'check-label
7842 (goto-char start)
7843 (while (progn
7844 (when (looking-at c-nonlabel-token-key)
7845 (goto-char start)
7846 (setq label-type nil)
7847 (throw 'check-label nil))
7848 (and (c-safe (c-forward-sexp)
7849 (c-forward-syntactic-ws)
7851 (not (eobp)))))
7853 ;; Record the identifiers in the label for fontification, unless
7854 ;; it begins with `c-label-kwds' in which case the following
7855 ;; identifiers are part of a (constant) expression that
7856 ;; shouldn't be fontified.
7857 (when (and c-record-type-identifiers
7858 (progn (goto-char start)
7859 (not (looking-at c-label-kwds-regexp))))
7860 (while (c-syntactic-re-search-forward c-symbol-key nil t)
7861 (c-record-ref-id (cons (match-beginning 0)
7862 (match-end 0)))))
7864 (c-put-c-type-property (1- (point-max)) 'c-decl-end)
7865 (goto-char (point-max)))))
7868 ;; Not a label.
7869 (goto-char start)))
7870 label-type))
7872 (defun c-forward-objc-directive ()
7873 ;; Assuming the point is at the beginning of a token, try to move
7874 ;; forward to the end of the Objective-C directive that starts
7875 ;; there. Return t if a directive was fully recognized, otherwise
7876 ;; the point is moved as far as one could be successfully parsed and
7877 ;; nil is returned.
7879 ;; This function records identifier ranges on
7880 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
7881 ;; `c-record-type-identifiers' is non-nil.
7883 ;; This function might do hidden buffer changes.
7885 (let ((start (point))
7886 start-char
7887 (c-promote-possible-types t)
7889 ;; Turn off recognition of angle bracket arglists while parsing
7890 ;; types here since the protocol reference list might then be
7891 ;; considered part of the preceding name or superclass-name.
7892 c-recognize-<>-arglists)
7894 (if (or
7895 (when (looking-at
7896 (eval-when-compile
7897 (c-make-keywords-re t
7898 (append (c-lang-const c-protection-kwds objc)
7899 '("@end"))
7900 'objc-mode)))
7901 (goto-char (match-end 1))
7904 (and
7905 (looking-at
7906 (eval-when-compile
7907 (c-make-keywords-re t
7908 '("@interface" "@implementation" "@protocol")
7909 'objc-mode)))
7911 ;; Handle the name of the class itself.
7912 (progn
7913 ;; (c-forward-token-2) ; 2006/1/13 This doesn't move if the token's
7914 ;; at EOB.
7915 (goto-char (match-end 0))
7916 (setq lim (point))
7917 (c-skip-ws-forward)
7918 (c-forward-type))
7920 (catch 'break
7921 ;; Look for ": superclass-name" or "( category-name )".
7922 (when (looking-at "[:(]")
7923 (setq start-char (char-after))
7924 (forward-char)
7925 (c-forward-syntactic-ws)
7926 (unless (c-forward-type) (throw 'break nil))
7927 (when (eq start-char ?\()
7928 (unless (eq (char-after) ?\)) (throw 'break nil))
7929 (forward-char)
7930 (c-forward-syntactic-ws)))
7932 ;; Look for a protocol reference list.
7933 (if (eq (char-after) ?<)
7934 (let ((c-recognize-<>-arglists t)
7935 (c-parse-and-markup-<>-arglists t)
7936 c-restricted-<>-arglists)
7937 (c-forward-<>-arglist t))
7938 t))))
7940 (progn
7941 (c-backward-syntactic-ws lim)
7942 (c-clear-c-type-property start (1- (point)) 'c-decl-end)
7943 (c-put-c-type-property (1- (point)) 'c-decl-end)
7946 (c-clear-c-type-property start (point) 'c-decl-end)
7947 nil)))
7949 (defun c-beginning-of-inheritance-list (&optional lim)
7950 ;; Go to the first non-whitespace after the colon that starts a
7951 ;; multiple inheritance introduction. Optional LIM is the farthest
7952 ;; back we should search.
7954 ;; This function might do hidden buffer changes.
7955 (c-with-syntax-table c++-template-syntax-table
7956 (c-backward-token-2 0 t lim)
7957 (while (and (or (looking-at c-symbol-start)
7958 (looking-at "[<,]\\|::"))
7959 (zerop (c-backward-token-2 1 t lim))))))
7961 (defun c-in-method-def-p ()
7962 ;; Return nil if we aren't in a method definition, otherwise the
7963 ;; position of the initial [+-].
7965 ;; This function might do hidden buffer changes.
7966 (save-excursion
7967 (beginning-of-line)
7968 (and c-opt-method-key
7969 (looking-at c-opt-method-key)
7970 (point))
7973 ;; Contributed by Kevin Ryde <user42@zip.com.au>.
7974 (defun c-in-gcc-asm-p ()
7975 ;; Return non-nil if point is within a gcc \"asm\" block.
7977 ;; This should be called with point inside an argument list.
7979 ;; Only one level of enclosing parentheses is considered, so for
7980 ;; instance nil is returned when in a function call within an asm
7981 ;; operand.
7983 ;; This function might do hidden buffer changes.
7985 (and c-opt-asm-stmt-key
7986 (save-excursion
7987 (beginning-of-line)
7988 (backward-up-list 1)
7989 (c-beginning-of-statement-1 (point-min) nil t)
7990 (looking-at c-opt-asm-stmt-key))))
7992 (defun c-at-toplevel-p ()
7993 "Return a determination as to whether point is \"at the top level\".
7994 Informally, \"at the top level\" is anywhere where you can write
7995 a function.
7997 More precisely, being at the top-level means that point is either
7998 outside any enclosing block (such as a function definition), or
7999 directly inside a class, namespace or other block that contains
8000 another declaration level.
8002 If point is not at the top-level (e.g. it is inside a method
8003 definition), then nil is returned. Otherwise, if point is at a
8004 top-level not enclosed within a class definition, t is returned.
8005 Otherwise, a 2-vector is returned where the zeroth element is the
8006 buffer position of the start of the class declaration, and the first
8007 element is the buffer position of the enclosing class's opening
8008 brace.
8010 Note that this function might do hidden buffer changes. See the
8011 comment at the start of cc-engine.el for more info."
8012 (let ((paren-state (c-parse-state)))
8013 (or (not (c-most-enclosing-brace paren-state))
8014 (c-search-uplist-for-classkey paren-state))))
8016 (defun c-just-after-func-arglist-p (&optional lim)
8017 ;; Return non-nil if the point is in the region after the argument
8018 ;; list of a function and its opening brace (or semicolon in case it
8019 ;; got no body). If there are K&R style argument declarations in
8020 ;; that region, the point has to be inside the first one for this
8021 ;; function to recognize it.
8023 ;; If successful, the point is moved to the first token after the
8024 ;; function header (see `c-forward-decl-or-cast-1' for details) and
8025 ;; the position of the opening paren of the function arglist is
8026 ;; returned.
8028 ;; The point is clobbered if not successful.
8030 ;; LIM is used as bound for backward buffer searches.
8032 ;; This function might do hidden buffer changes.
8034 (let ((beg (point)) id-start)
8035 (and
8036 (eq (c-beginning-of-statement-1 lim) 'same)
8038 (not (and (c-major-mode-is 'objc-mode)
8039 (c-forward-objc-directive)))
8041 (setq id-start
8042 (car-safe (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil)))
8043 (< id-start beg)
8045 ;; There should not be a '=' or ',' between beg and the
8046 ;; start of the declaration since that means we were in the
8047 ;; "expression part" of the declaration.
8048 (or (> (point) beg)
8049 (not (looking-at "[=,]")))
8051 (save-excursion
8052 ;; Check that there's an arglist paren in the
8053 ;; declaration.
8054 (goto-char id-start)
8055 (cond ((eq (char-after) ?\()
8056 ;; The declarator is a paren expression, so skip past it
8057 ;; so that we don't get stuck on that instead of the
8058 ;; function arglist.
8059 (c-forward-sexp))
8060 ((and c-opt-op-identifier-prefix
8061 (looking-at c-opt-op-identifier-prefix))
8062 ;; Don't trip up on "operator ()".
8063 (c-forward-token-2 2 t)))
8064 (and (< (point) beg)
8065 (c-syntactic-re-search-forward "(" beg t t)
8066 (1- (point)))))))
8068 (defun c-in-knr-argdecl (&optional lim)
8069 ;; Return the position of the first argument declaration if point is
8070 ;; inside a K&R style argument declaration list, nil otherwise.
8071 ;; `c-recognize-knr-p' is not checked. If LIM is non-nil, it's a
8072 ;; position that bounds the backward search for the argument list.
8074 ;; Point must be within a possible K&R region, e.g. just before a top-level
8075 ;; "{". It must be outside of parens and brackets. The test can return
8076 ;; false positives otherwise.
8078 ;; This function might do hidden buffer changes.
8080 (save-excursion
8081 (save-restriction
8082 ;; If we're in a macro, our search range is restricted to it. Narrow to
8083 ;; the searchable range.
8084 (let* ((macro-start (save-excursion (and (c-beginning-of-macro) (point))))
8085 (macro-end (save-excursion (and macro-start (c-end-of-macro) (point))))
8086 (low-lim (max (or lim (point-min)) (or macro-start (point-min))))
8087 before-lparen after-rparen
8088 (pp-count-out 20)) ; Max number of paren/brace constructs before
8089 ; we give up
8090 (narrow-to-region low-lim (or macro-end (point-max)))
8092 ;; Search backwards for the defun's argument list. We give up if we
8093 ;; encounter a "}" (end of a previous defun) an "=" (which can't be in
8094 ;; a knr region) or BOB.
8096 ;; The criterion for a paren structure being the arg list is:
8097 ;; o - there is non-WS stuff after it but before any "{"; AND
8098 ;; o - the token after it isn't a ";" AND
8099 ;; o - it is preceded by either an identifier (the function name) or
8100 ;; a macro expansion like "DEFUN (...)"; AND
8101 ;; o - its content is a non-empty comma-separated list of identifiers
8102 ;; (an empty arg list won't have a knr region).
8104 ;; The following snippet illustrates these rules:
8105 ;; int foo (bar, baz, yuk)
8106 ;; int bar [] ;
8107 ;; int (*baz) (my_type) ;
8108 ;; int (*) (void) (*yuk) (void) ;
8109 ;; {
8111 (catch 'knr
8112 (while (> pp-count-out 0) ; go back one paren/bracket pair each time.
8113 (setq pp-count-out (1- pp-count-out))
8114 (c-syntactic-skip-backward "^)]}=")
8115 (cond ((eq (char-before) ?\))
8116 (setq after-rparen (point)))
8117 ((eq (char-before) ?\])
8118 (setq after-rparen nil))
8119 (t ; either } (hit previous defun) or = or no more
8120 ; parens/brackets.
8121 (throw 'knr nil)))
8123 (if after-rparen
8124 ;; We're inside a paren. Could it be our argument list....?
8126 (and
8127 (progn
8128 (goto-char after-rparen)
8129 (unless (c-go-list-backward) (throw 'knr nil)) ;
8130 ;; FIXME!!! What about macros between the parens? 2007/01/20
8131 (setq before-lparen (point)))
8133 ;; It can't be the arg list if next token is ; or {
8134 (progn (goto-char after-rparen)
8135 (c-forward-syntactic-ws)
8136 (not (memq (char-after) '(?\; ?\{ ?\=))))
8138 ;; Is the thing preceding the list an identifier (the
8139 ;; function name), or a macro expansion?
8140 (progn
8141 (goto-char before-lparen)
8142 (eq (c-backward-token-2) 0)
8143 (or (eq (c-on-identifier) (point))
8144 (and (eq (char-after) ?\))
8145 (c-go-up-list-backward)
8146 (eq (c-backward-token-2) 0)
8147 (eq (c-on-identifier) (point)))))
8149 ;; Have we got a non-empty list of comma-separated
8150 ;; identifiers?
8151 (progn
8152 (goto-char before-lparen)
8153 (c-forward-token-2) ; to first token inside parens
8154 (and
8155 (c-on-identifier)
8156 (c-forward-token-2)
8157 (catch 'id-list
8158 (while (eq (char-after) ?\,)
8159 (c-forward-token-2)
8160 (unless (c-on-identifier) (throw 'id-list nil))
8161 (c-forward-token-2))
8162 (eq (char-after) ?\))))))
8164 ;; ...Yes. We've identified the function's argument list.
8165 (throw 'knr
8166 (progn (goto-char after-rparen)
8167 (c-forward-syntactic-ws)
8168 (point)))
8170 ;; ...No. The current parens aren't the function's arg list.
8171 (goto-char before-lparen))
8173 (or (c-go-list-backward) ; backwards over [ .... ]
8174 (throw 'knr nil)))))))))
8176 (defun c-skip-conditional ()
8177 ;; skip forward over conditional at point, including any predicate
8178 ;; statements in parentheses. No error checking is performed.
8180 ;; This function might do hidden buffer changes.
8181 (c-forward-sexp (cond
8182 ;; else if()
8183 ((looking-at (concat "\\<else"
8184 "\\([ \t\n]\\|\\\\\n\\)+"
8185 "if\\>\\([^_]\\|$\\)"))
8187 ;; do, else, try, finally
8188 ((looking-at (concat "\\<\\("
8189 "do\\|else\\|try\\|finally"
8190 "\\)\\>\\([^_]\\|$\\)"))
8192 ;; for, if, while, switch, catch, synchronized, foreach
8193 (t 2))))
8195 (defun c-after-conditional (&optional lim)
8196 ;; If looking at the token after a conditional then return the
8197 ;; position of its start, otherwise return nil.
8199 ;; This function might do hidden buffer changes.
8200 (save-excursion
8201 (and (zerop (c-backward-token-2 1 t lim))
8202 (or (looking-at c-block-stmt-1-key)
8203 (and (eq (char-after) ?\()
8204 (zerop (c-backward-token-2 1 t lim))
8205 (or (looking-at c-block-stmt-2-key)
8206 (looking-at c-block-stmt-1-2-key))))
8207 (point))))
8209 (defun c-after-special-operator-id (&optional lim)
8210 ;; If the point is after an operator identifier that isn't handled
8211 ;; like an ordinary symbol (i.e. like "operator =" in C++) then the
8212 ;; position of the start of that identifier is returned. nil is
8213 ;; returned otherwise. The point may be anywhere in the syntactic
8214 ;; whitespace after the last token of the operator identifier.
8216 ;; This function might do hidden buffer changes.
8217 (save-excursion
8218 (and c-overloadable-operators-regexp
8219 (zerop (c-backward-token-2 1 nil lim))
8220 (looking-at c-overloadable-operators-regexp)
8221 (or (not c-opt-op-identifier-prefix)
8222 (and
8223 (zerop (c-backward-token-2 1 nil lim))
8224 (looking-at c-opt-op-identifier-prefix)))
8225 (point))))
8227 (defsubst c-backward-to-block-anchor (&optional lim)
8228 ;; Assuming point is at a brace that opens a statement block of some
8229 ;; kind, move to the proper anchor point for that block. It might
8230 ;; need to be adjusted further by c-add-stmt-syntax, but the
8231 ;; position at return is suitable as start position for that
8232 ;; function.
8234 ;; This function might do hidden buffer changes.
8235 (unless (= (point) (c-point 'boi))
8236 (let ((start (c-after-conditional lim)))
8237 (if start
8238 (goto-char start)))))
8240 (defsubst c-backward-to-decl-anchor (&optional lim)
8241 ;; Assuming point is at a brace that opens the block of a top level
8242 ;; declaration of some kind, move to the proper anchor point for
8243 ;; that block.
8245 ;; This function might do hidden buffer changes.
8246 (unless (= (point) (c-point 'boi))
8247 (c-beginning-of-statement-1 lim)))
8249 (defun c-search-decl-header-end ()
8250 ;; Search forward for the end of the "header" of the current
8251 ;; declaration. That's the position where the definition body
8252 ;; starts, or the first variable initializer, or the ending
8253 ;; semicolon. I.e. search forward for the closest following
8254 ;; (syntactically relevant) '{', '=' or ';' token. Point is left
8255 ;; _after_ the first found token, or at point-max if none is found.
8257 ;; This function might do hidden buffer changes.
8259 (let ((base (point)))
8260 (if (c-major-mode-is 'c++-mode)
8262 ;; In C++ we need to take special care to handle operator
8263 ;; tokens and those pesky template brackets.
8264 (while (and
8265 (c-syntactic-re-search-forward "[;{<=]" nil 'move t t)
8267 (c-end-of-current-token base)
8268 ;; Handle operator identifiers, i.e. ignore any
8269 ;; operator token preceded by "operator".
8270 (save-excursion
8271 (and (c-safe (c-backward-sexp) t)
8272 (looking-at c-opt-op-identifier-prefix)))
8273 (and (eq (char-before) ?<)
8274 (c-with-syntax-table c++-template-syntax-table
8275 (if (c-safe (goto-char (c-up-list-forward (point))))
8277 (goto-char (point-max))
8278 nil)))))
8279 (setq base (point)))
8281 (while (and
8282 (c-syntactic-re-search-forward "[;{=]" nil 'move t t)
8283 (c-end-of-current-token base))
8284 (setq base (point))))))
8286 (defun c-beginning-of-decl-1 (&optional lim)
8287 ;; Go to the beginning of the current declaration, or the beginning
8288 ;; of the previous one if already at the start of it. Point won't
8289 ;; be moved out of any surrounding paren. Return a cons cell of the
8290 ;; form (MOVE . KNR-POS). MOVE is like the return value from
8291 ;; `c-beginning-of-statement-1'. If point skipped over some K&R
8292 ;; style argument declarations (and they are to be recognized) then
8293 ;; KNR-POS is set to the start of the first such argument
8294 ;; declaration, otherwise KNR-POS is nil. If LIM is non-nil, it's a
8295 ;; position that bounds the backward search.
8297 ;; NB: Cases where the declaration continues after the block, as in
8298 ;; "struct foo { ... } bar;", are currently recognized as two
8299 ;; declarations, e.g. "struct foo { ... }" and "bar;" in this case.
8301 ;; This function might do hidden buffer changes.
8302 (catch 'return
8303 (let* ((start (point))
8304 (last-stmt-start (point))
8305 (move (c-beginning-of-statement-1 lim nil t)))
8307 ;; `c-beginning-of-statement-1' stops at a block start, but we
8308 ;; want to continue if the block doesn't begin a top level
8309 ;; construct, i.e. if it isn't preceded by ';', '}', ':', bob,
8310 ;; or an open paren.
8311 (let ((beg (point)) tentative-move)
8312 ;; Go back one "statement" each time round the loop until we're just
8313 ;; after a ;, }, or :, or at BOB or the start of a macro or start of
8314 ;; an ObjC method. This will move over a multiple declaration whose
8315 ;; components are comma separated.
8316 (while (and
8317 ;; Must check with c-opt-method-key in ObjC mode.
8318 (not (and c-opt-method-key
8319 (looking-at c-opt-method-key)))
8320 (/= last-stmt-start (point))
8321 (progn
8322 (c-backward-syntactic-ws lim)
8323 (not (memq (char-before) '(?\; ?} ?: nil))))
8324 (save-excursion
8325 (backward-char)
8326 (not (looking-at "\\s(")))
8327 ;; Check that we don't move from the first thing in a
8328 ;; macro to its header.
8329 (not (eq (setq tentative-move
8330 (c-beginning-of-statement-1 lim nil t))
8331 'macro)))
8332 (setq last-stmt-start beg
8333 beg (point)
8334 move tentative-move))
8335 (goto-char beg))
8337 (when c-recognize-knr-p
8338 (let ((fallback-pos (point)) knr-argdecl-start)
8339 ;; Handle K&R argdecls. Back up after the "statement" jumped
8340 ;; over by `c-beginning-of-statement-1', unless it was the
8341 ;; function body, in which case we're sitting on the opening
8342 ;; brace now. Then test if we're in a K&R argdecl region and
8343 ;; that we started at the other side of the first argdecl in
8344 ;; it.
8345 (unless (eq (char-after) ?{)
8346 (goto-char last-stmt-start))
8347 (if (and (setq knr-argdecl-start (c-in-knr-argdecl lim))
8348 (< knr-argdecl-start start)
8349 (progn
8350 (goto-char knr-argdecl-start)
8351 (not (eq (c-beginning-of-statement-1 lim nil t) 'macro))))
8352 (throw 'return
8353 (cons (if (eq (char-after fallback-pos) ?{)
8354 'previous
8355 'same)
8356 knr-argdecl-start))
8357 (goto-char fallback-pos))))
8359 ;; `c-beginning-of-statement-1' counts each brace block as a separate
8360 ;; statement, so the result will be 'previous if we've moved over any.
8361 ;; So change our result back to 'same if necessary.
8363 ;; If they were brace list initializers we might not have moved over a
8364 ;; declaration boundary though, so change it to 'same if we've moved
8365 ;; past a '=' before '{', but not ';'. (This ought to be integrated
8366 ;; into `c-beginning-of-statement-1', so we avoid this extra pass which
8367 ;; potentially can search over a large amount of text.). Take special
8368 ;; pains not to get mislead by C++'s "operator=", and the like.
8369 (if (and (eq move 'previous)
8370 (c-with-syntax-table (if (c-major-mode-is 'c++-mode)
8371 c++-template-syntax-table
8372 (syntax-table))
8373 (save-excursion
8374 (and
8375 (progn
8376 (while ; keep going back to "[;={"s until we either find
8377 ; no more, or get to one which isn't an "operator ="
8378 (and (c-syntactic-re-search-forward "[;={]" start t t t)
8379 (eq (char-before) ?=)
8380 c-overloadable-operators-regexp
8381 c-opt-op-identifier-prefix
8382 (save-excursion
8383 (eq (c-backward-token-2) 0)
8384 (looking-at c-overloadable-operators-regexp)
8385 (eq (c-backward-token-2) 0)
8386 (looking-at c-opt-op-identifier-prefix))))
8387 (eq (char-before) ?=))
8388 (c-syntactic-re-search-forward "[;{]" start t t)
8389 (eq (char-before) ?{)
8390 (c-safe (goto-char (c-up-list-forward (point))) t)
8391 (not (c-syntactic-re-search-forward ";" start t t))))))
8392 (cons 'same nil)
8393 (cons move nil)))))
8395 (defun c-end-of-decl-1 ()
8396 ;; Assuming point is at the start of a declaration (as detected by
8397 ;; e.g. `c-beginning-of-decl-1'), go to the end of it. Unlike
8398 ;; `c-beginning-of-decl-1', this function handles the case when a
8399 ;; block is followed by identifiers in e.g. struct declarations in C
8400 ;; or C++. If a proper end was found then t is returned, otherwise
8401 ;; point is moved as far as possible within the current sexp and nil
8402 ;; is returned. This function doesn't handle macros; use
8403 ;; `c-end-of-macro' instead in those cases.
8405 ;; This function might do hidden buffer changes.
8406 (let ((start (point))
8407 (decl-syntax-table (if (c-major-mode-is 'c++-mode)
8408 c++-template-syntax-table
8409 (syntax-table))))
8410 (catch 'return
8411 (c-search-decl-header-end)
8413 (when (and c-recognize-knr-p
8414 (eq (char-before) ?\;)
8415 (c-in-knr-argdecl start))
8416 ;; Stopped at the ';' in a K&R argdecl section which is
8417 ;; detected using the same criteria as in
8418 ;; `c-beginning-of-decl-1'. Move to the following block
8419 ;; start.
8420 (c-syntactic-re-search-forward "{" nil 'move t))
8422 (when (eq (char-before) ?{)
8423 ;; Encountered a block in the declaration. Jump over it.
8424 (condition-case nil
8425 (goto-char (c-up-list-forward (point)))
8426 (error (goto-char (point-max))
8427 (throw 'return nil)))
8428 (if (or (not c-opt-block-decls-with-vars-key)
8429 (save-excursion
8430 (c-with-syntax-table decl-syntax-table
8431 (let ((lim (point)))
8432 (goto-char start)
8433 (not (and
8434 ;; Check for `c-opt-block-decls-with-vars-key'
8435 ;; before the first paren.
8436 (c-syntactic-re-search-forward
8437 (concat "[;=([{]\\|\\("
8438 c-opt-block-decls-with-vars-key
8439 "\\)")
8440 lim t t t)
8441 (match-beginning 1)
8442 (not (eq (char-before) ?_))
8443 ;; Check that the first following paren is
8444 ;; the block.
8445 (c-syntactic-re-search-forward "[;=([{]"
8446 lim t t t)
8447 (eq (char-before) ?{)))))))
8448 ;; The declaration doesn't have any of the
8449 ;; `c-opt-block-decls-with-vars' keywords in the
8450 ;; beginning, so it ends here at the end of the block.
8451 (throw 'return t)))
8453 (c-with-syntax-table decl-syntax-table
8454 (while (progn
8455 (if (eq (char-before) ?\;)
8456 (throw 'return t))
8457 (c-syntactic-re-search-forward ";" nil 'move t))))
8458 nil)))
8460 (defun c-looking-at-decl-block (containing-sexp goto-start &optional limit)
8461 ;; Assuming the point is at an open brace, check if it starts a
8462 ;; block that contains another declaration level, i.e. that isn't a
8463 ;; statement block or a brace list, and if so return non-nil.
8465 ;; If the check is successful, the return value is the start of the
8466 ;; keyword that tells what kind of construct it is, i.e. typically
8467 ;; what `c-decl-block-key' matched. Also, if GOTO-START is set then
8468 ;; the point will be at the start of the construct, before any
8469 ;; leading specifiers, otherwise it's at the returned position.
8471 ;; The point is clobbered if the check is unsuccessful.
8473 ;; CONTAINING-SEXP is the position of the open of the surrounding
8474 ;; paren, or nil if none.
8476 ;; The optional LIMIT limits the backward search for the start of
8477 ;; the construct. It's assumed to be at a syntactically relevant
8478 ;; position.
8480 ;; If any template arglists are found in the searched region before
8481 ;; the open brace, they get marked with paren syntax.
8483 ;; This function might do hidden buffer changes.
8485 (let ((open-brace (point)) kwd-start first-specifier-pos)
8486 (c-syntactic-skip-backward c-block-prefix-charset limit t)
8488 (when (and c-recognize-<>-arglists
8489 (eq (char-before) ?>))
8490 ;; Could be at the end of a template arglist.
8491 (let ((c-parse-and-markup-<>-arglists t))
8492 (while (and
8493 (c-backward-<>-arglist nil limit)
8494 (progn
8495 (c-syntactic-skip-backward c-block-prefix-charset limit t)
8496 (eq (char-before) ?>))))))
8498 ;; Note: Can't get bogus hits inside template arglists below since they
8499 ;; have gotten paren syntax above.
8500 (when (and
8501 ;; If `goto-start' is set we begin by searching for the
8502 ;; first possible position of a leading specifier list.
8503 ;; The `c-decl-block-key' search continues from there since
8504 ;; we know it can't match earlier.
8505 (if goto-start
8506 (when (c-syntactic-re-search-forward c-symbol-start
8507 open-brace t t)
8508 (goto-char (setq first-specifier-pos (match-beginning 0)))
8512 (cond
8513 ((c-syntactic-re-search-forward c-decl-block-key open-brace t t t)
8514 (goto-char (setq kwd-start (match-beginning 0)))
8515 (and
8516 ;; Exclude cases where we matched what would ordinarily
8517 ;; be a block declaration keyword, except where it's not
8518 ;; legal because it's part of a "compound keyword" like
8519 ;; "enum class". Of course, if c-after-brace-list-key
8520 ;; is nil, we can skip the test.
8521 (or (equal c-after-brace-list-key "\\<\\>")
8522 (save-match-data
8523 (save-excursion
8524 (not
8525 (and
8526 (looking-at c-after-brace-list-key)
8527 (= (c-backward-token-2 1 t) 0)
8528 (looking-at c-brace-list-key))))))
8530 ;; Found a keyword that can't be a type?
8531 (match-beginning 1)
8533 ;; Can be a type too, in which case it's the return type of a
8534 ;; function (under the assumption that no declaration level
8535 ;; block construct starts with a type).
8536 (not (c-forward-type))
8538 ;; Jumped over a type, but it could be a declaration keyword
8539 ;; followed by the declared identifier that we've jumped over
8540 ;; instead (e.g. in "class Foo {"). If it indeed is a type
8541 ;; then we should be at the declarator now, so check for a
8542 ;; valid declarator start.
8544 ;; Note: This doesn't cope with the case when a declared
8545 ;; identifier is followed by e.g. '(' in a language where '('
8546 ;; also might be part of a declarator expression. Currently
8547 ;; there's no such language.
8548 (not (or (looking-at c-symbol-start)
8549 (looking-at c-type-decl-prefix-key))))))
8551 ;; In Pike a list of modifiers may be followed by a brace
8552 ;; to make them apply to many identifiers. Note that the
8553 ;; match data will be empty on return in this case.
8554 ((and (c-major-mode-is 'pike-mode)
8555 (progn
8556 (goto-char open-brace)
8557 (= (c-backward-token-2) 0))
8558 (looking-at c-specifier-key)
8559 ;; Use this variant to avoid yet another special regexp.
8560 (c-keyword-member (c-keyword-sym (match-string 1))
8561 'c-modifier-kwds))
8562 (setq kwd-start (point))
8563 t)))
8565 ;; Got a match.
8567 (if goto-start
8568 ;; Back up over any preceding specifiers and their clauses
8569 ;; by going forward from `first-specifier-pos', which is the
8570 ;; earliest possible position where the specifier list can
8571 ;; start.
8572 (progn
8573 (goto-char first-specifier-pos)
8575 (while (< (point) kwd-start)
8576 (if (looking-at c-symbol-key)
8577 ;; Accept any plain symbol token on the ground that
8578 ;; it's a specifier masked through a macro (just
8579 ;; like `c-forward-decl-or-cast-1' skip forward over
8580 ;; such tokens).
8582 ;; Could be more restrictive wrt invalid keywords,
8583 ;; but that'd only occur in invalid code so there's
8584 ;; no use spending effort on it.
8585 (let ((end (match-end 0)))
8586 (unless (c-forward-keyword-clause 0)
8587 (goto-char end)
8588 (c-forward-syntactic-ws)))
8590 ;; Can't parse a declaration preamble and is still
8591 ;; before `kwd-start'. That means `first-specifier-pos'
8592 ;; was in some earlier construct. Search again.
8593 (if (c-syntactic-re-search-forward c-symbol-start
8594 kwd-start 'move t)
8595 (goto-char (setq first-specifier-pos (match-beginning 0)))
8596 ;; Got no preamble before the block declaration keyword.
8597 (setq first-specifier-pos kwd-start))))
8599 (goto-char first-specifier-pos))
8600 (goto-char kwd-start))
8602 kwd-start)))
8604 (defun c-search-uplist-for-classkey (paren-state)
8605 ;; Check if the closest containing paren sexp is a declaration
8606 ;; block, returning a 2 element vector in that case. Aref 0
8607 ;; contains the bufpos at boi of the class key line, and aref 1
8608 ;; contains the bufpos of the open brace. This function is an
8609 ;; obsolete wrapper for `c-looking-at-decl-block'.
8611 ;; This function might do hidden buffer changes.
8612 (let ((open-paren-pos (c-most-enclosing-brace paren-state)))
8613 (when open-paren-pos
8614 (save-excursion
8615 (goto-char open-paren-pos)
8616 (when (and (eq (char-after) ?{)
8617 (c-looking-at-decl-block
8618 (c-safe-position open-paren-pos paren-state)
8619 nil))
8620 (back-to-indentation)
8621 (vector (point) open-paren-pos))))))
8623 (defun c-most-enclosing-decl-block (paren-state)
8624 ;; Return the buffer position of the most enclosing decl-block brace (in the
8625 ;; sense of c-looking-at-decl-block) in the PAREN-STATE structure, or nil if
8626 ;; none was found.
8627 (let* ((open-brace (c-pull-open-brace paren-state))
8628 (next-open-brace (c-pull-open-brace paren-state)))
8629 (while (and open-brace
8630 (save-excursion
8631 (goto-char open-brace)
8632 (not (c-looking-at-decl-block next-open-brace nil))))
8633 (setq open-brace next-open-brace
8634 next-open-brace (c-pull-open-brace paren-state)))
8635 open-brace))
8637 (defun c-cheap-inside-bracelist-p (paren-state)
8638 ;; Return the position of the L-brace if point is inside a brace list
8639 ;; initialization of an array, etc. This is an approximate function,
8640 ;; designed for speed over accuracy. It will not find every bracelist, but
8641 ;; a non-nil result is reliable. We simply search for "= {" (naturally with
8642 ;; syntactic whitespace allowed). PAREN-STATE is the normal thing that it
8643 ;; is everywhere else.
8644 (let (b-pos)
8645 (save-excursion
8646 (while
8647 (and (setq b-pos (c-pull-open-brace paren-state))
8648 (progn (goto-char b-pos)
8649 (c-backward-sws)
8650 (c-backward-token-2)
8651 (not (looking-at "=")))))
8652 b-pos)))
8654 (defun c-backward-colon-prefixed-type ()
8655 ;; We're at the token after what might be a type prefixed with a colon. Try
8656 ;; moving backward over this type and the colon. On success, return t and
8657 ;; leave point before colon; on failure, leave point unchanged. Will clobber
8658 ;; match data.
8659 (let ((here (point))
8660 (colon-pos nil))
8661 (save-excursion
8662 (while
8663 (and (eql (c-backward-token-2) 0)
8664 (or (not (looking-at "\\s)"))
8665 (c-go-up-list-backward))
8666 (cond
8667 ((eql (char-after) ?:)
8668 (setq colon-pos (point))
8669 (forward-char)
8670 (c-forward-syntactic-ws)
8671 (or (and (c-forward-type)
8672 (progn (c-forward-syntactic-ws)
8673 (eq (point) here)))
8674 (setq colon-pos nil))
8675 nil)
8676 ((eql (char-after) ?\()
8678 ((looking-at c-symbol-key)
8680 (t nil)))))
8681 (when colon-pos
8682 (goto-char colon-pos)
8683 t)))
8685 (defun c-backward-over-enum-header ()
8686 ;; We're at a "{". Move back to the enum-like keyword that starts this
8687 ;; declaration and return t, otherwise don't move and return nil.
8688 (let ((here (point))
8689 up-sexp-pos before-identifier)
8690 (when c-recognize-post-brace-list-type-p
8691 (c-backward-colon-prefixed-type))
8692 (while
8693 (and
8694 (eq (c-backward-token-2) 0)
8695 (or (not (looking-at "\\s)"))
8696 (c-go-up-list-backward))
8697 (cond
8698 ((and (looking-at c-symbol-key) (c-on-identifier)
8699 (not before-identifier))
8700 (setq before-identifier t))
8701 ((and before-identifier
8702 (or (eql (char-after) ?,)
8703 (looking-at c-postfix-decl-spec-key)))
8704 (setq before-identifier nil)
8706 ((looking-at c-after-brace-list-key) t)
8707 ((looking-at c-brace-list-key) nil)
8708 ((and c-recognize-<>-arglists
8709 (eq (char-after) ?<)
8710 (looking-at "\\s("))
8712 (t nil))))
8713 (or (looking-at c-brace-list-key)
8714 (progn (goto-char here) nil))))
8716 (defun c-inside-bracelist-p (containing-sexp paren-state)
8717 ;; return the buffer position of the beginning of the brace list
8718 ;; statement if we're inside a brace list, otherwise return nil.
8719 ;; CONTAINING-SEXP is the buffer pos of the innermost containing
8720 ;; paren. PAREN-STATE is the remainder of the state of enclosing
8721 ;; braces
8723 ;; N.B.: This algorithm can potentially get confused by cpp macros
8724 ;; placed in inconvenient locations. It's a trade-off we make for
8725 ;; speed.
8727 ;; This function might do hidden buffer changes.
8729 ;; This will pick up brace list declarations.
8730 (save-excursion
8731 (goto-char containing-sexp)
8732 (c-backward-over-enum-header))
8733 ;; this will pick up array/aggregate init lists, even if they are nested.
8734 (save-excursion
8735 (let ((class-key
8736 ;; Pike can have class definitions anywhere, so we must
8737 ;; check for the class key here.
8738 (and (c-major-mode-is 'pike-mode)
8739 c-decl-block-key))
8740 bufpos braceassignp lim next-containing macro-start)
8741 (while (and (not bufpos)
8742 containing-sexp)
8743 (when paren-state
8744 (if (consp (car paren-state))
8745 (setq lim (cdr (car paren-state))
8746 paren-state (cdr paren-state))
8747 (setq lim (car paren-state)))
8748 (when paren-state
8749 (setq next-containing (car paren-state)
8750 paren-state (cdr paren-state))))
8751 (goto-char containing-sexp)
8752 (if (c-looking-at-inexpr-block next-containing next-containing)
8753 ;; We're in an in-expression block of some kind. Do not
8754 ;; check nesting. We deliberately set the limit to the
8755 ;; containing sexp, so that c-looking-at-inexpr-block
8756 ;; doesn't check for an identifier before it.
8757 (setq containing-sexp nil)
8758 ;; see if the open brace is preceded by = or [...] in
8759 ;; this statement, but watch out for operator=
8760 (setq braceassignp 'dontknow)
8761 (c-backward-token-2 1 t lim)
8762 ;; Checks to do only on the first sexp before the brace.
8763 (when (and c-opt-inexpr-brace-list-key
8764 (eq (char-after) ?\[))
8765 ;; In Java, an initialization brace list may follow
8766 ;; directly after "new Foo[]", so check for a "new"
8767 ;; earlier.
8768 (while (eq braceassignp 'dontknow)
8769 (setq braceassignp
8770 (cond ((/= (c-backward-token-2 1 t lim) 0) nil)
8771 ((looking-at c-opt-inexpr-brace-list-key) t)
8772 ((looking-at "\\sw\\|\\s_\\|[.[]")
8773 ;; Carry on looking if this is an
8774 ;; identifier (may contain "." in Java)
8775 ;; or another "[]" sexp.
8776 'dontknow)
8777 (t nil)))))
8778 ;; Checks to do on all sexps before the brace, up to the
8779 ;; beginning of the statement.
8780 (while (eq braceassignp 'dontknow)
8781 (cond ((eq (char-after) ?\;)
8782 (setq braceassignp nil))
8783 ((and class-key
8784 (looking-at class-key))
8785 (setq braceassignp nil))
8786 ((eq (char-after) ?=)
8787 ;; We've seen a =, but must check earlier tokens so
8788 ;; that it isn't something that should be ignored.
8789 (setq braceassignp 'maybe)
8790 (while (and (eq braceassignp 'maybe)
8791 (zerop (c-backward-token-2 1 t lim)))
8792 (setq braceassignp
8793 (cond
8794 ;; Check for operator =
8795 ((and c-opt-op-identifier-prefix
8796 (looking-at c-opt-op-identifier-prefix))
8797 nil)
8798 ;; Check for `<opchar>= in Pike.
8799 ((and (c-major-mode-is 'pike-mode)
8800 (or (eq (char-after) ?`)
8801 ;; Special case for Pikes
8802 ;; `[]=, since '[' is not in
8803 ;; the punctuation class.
8804 (and (eq (char-after) ?\[)
8805 (eq (char-before) ?`))))
8806 nil)
8807 ((looking-at "\\s.") 'maybe)
8808 ;; make sure we're not in a C++ template
8809 ;; argument assignment
8810 ((and
8811 (c-major-mode-is 'c++-mode)
8812 (save-excursion
8813 (let ((here (point))
8814 (pos< (progn
8815 (skip-chars-backward "^<>")
8816 (point))))
8817 (and (eq (char-before) ?<)
8818 (not (c-crosses-statement-barrier-p
8819 pos< here))
8820 (not (c-in-literal))
8821 ))))
8822 nil)
8823 (t t))))))
8824 (if (and (eq braceassignp 'dontknow)
8825 (/= (c-backward-token-2 1 t lim) 0))
8826 (setq braceassignp nil)))
8827 (cond
8828 (braceassignp
8829 ;; We've hit the beginning of the aggregate list.
8830 (c-beginning-of-statement-1
8831 (c-most-enclosing-brace paren-state))
8832 (setq bufpos (point)))
8833 ((eq (char-after) ?\;)
8834 ;; Brace lists can't contain a semicolon, so we're done.
8835 (setq containing-sexp nil))
8836 ((and (setq macro-start (point))
8837 (c-forward-to-cpp-define-body)
8838 (eq (point) containing-sexp))
8839 ;; We've a macro whose expansion starts with the '{'.
8840 ;; Heuristically, if we have a ';' in it we've not got a
8841 ;; brace list, otherwise we have.
8842 (let ((macro-end (progn (c-end-of-macro) (point))))
8843 (goto-char containing-sexp)
8844 (forward-char)
8845 (if (and (c-syntactic-re-search-forward "[;,]" macro-end t t)
8846 (eq (char-before) ?\;))
8847 (setq bufpos nil
8848 containing-sexp nil)
8849 (setq bufpos macro-start))))
8851 ;; Go up one level
8852 (setq containing-sexp next-containing
8853 lim nil
8854 next-containing nil)))))
8856 bufpos))
8859 (defun c-looking-at-special-brace-list (&optional lim)
8860 ;; If we're looking at the start of a pike-style list, i.e., `({ })',
8861 ;; `([ ])', `(< >)', etc., a cons of a cons of its starting and ending
8862 ;; positions and its entry in c-special-brace-lists is returned, nil
8863 ;; otherwise. The ending position is nil if the list is still open.
8864 ;; LIM is the limit for forward search. The point may either be at
8865 ;; the `(' or at the following paren character. Tries to check the
8866 ;; matching closer, but assumes it's correct if no balanced paren is
8867 ;; found (i.e. the case `({ ... } ... )' is detected as _not_ being
8868 ;; a special brace list).
8870 ;; This function might do hidden buffer changes.
8871 (if c-special-brace-lists
8872 (condition-case ()
8873 (save-excursion
8874 (let ((beg (point))
8875 inner-beg end type)
8876 (c-forward-syntactic-ws)
8877 (if (eq (char-after) ?\()
8878 (progn
8879 (forward-char 1)
8880 (c-forward-syntactic-ws)
8881 (setq inner-beg (point))
8882 (setq type (assq (char-after) c-special-brace-lists)))
8883 (if (setq type (assq (char-after) c-special-brace-lists))
8884 (progn
8885 (setq inner-beg (point))
8886 (c-backward-syntactic-ws)
8887 (forward-char -1)
8888 (setq beg (if (eq (char-after) ?\()
8889 (point)
8890 nil)))))
8891 (if (and beg type)
8892 (if (and (c-safe
8893 (goto-char beg)
8894 (c-forward-sexp 1)
8895 (setq end (point))
8896 (= (char-before) ?\)))
8897 (c-safe
8898 (goto-char inner-beg)
8899 (if (looking-at "\\s(")
8900 ;; Check balancing of the inner paren
8901 ;; below.
8902 (progn
8903 (c-forward-sexp 1)
8905 ;; If the inner char isn't a paren then
8906 ;; we can't check balancing, so just
8907 ;; check the char before the outer
8908 ;; closing paren.
8909 (goto-char end)
8910 (backward-char)
8911 (c-backward-syntactic-ws)
8912 (= (char-before) (cdr type)))))
8913 (if (or (/= (char-syntax (char-before)) ?\))
8914 (= (progn
8915 (c-forward-syntactic-ws)
8916 (point))
8917 (1- end)))
8918 (cons (cons beg end) type))
8919 (cons (list beg) type)))))
8920 (error nil))))
8922 (defun c-looking-at-bos (&optional lim)
8923 ;; Return non-nil if between two statements or declarations, assuming
8924 ;; point is not inside a literal or comment.
8926 ;; Obsolete - `c-at-statement-start-p' or `c-at-expression-start-p'
8927 ;; are recommended instead.
8929 ;; This function might do hidden buffer changes.
8930 (c-at-statement-start-p))
8931 (make-obsolete 'c-looking-at-bos 'c-at-statement-start-p "22.1")
8933 (defun c-looking-at-inexpr-block (lim containing-sexp &optional check-at-end)
8934 ;; Return non-nil if we're looking at the beginning of a block
8935 ;; inside an expression. The value returned is actually a cons of
8936 ;; either 'inlambda, 'inexpr-statement or 'inexpr-class and the
8937 ;; position of the beginning of the construct.
8939 ;; LIM limits the backward search. CONTAINING-SEXP is the start
8940 ;; position of the closest containing list. If it's nil, the
8941 ;; containing paren isn't used to decide whether we're inside an
8942 ;; expression or not. If both LIM and CONTAINING-SEXP are used, LIM
8943 ;; needs to be farther back.
8945 ;; If CHECK-AT-END is non-nil then extra checks at the end of the
8946 ;; brace block might be done. It should only be used when the
8947 ;; construct can be assumed to be complete, i.e. when the original
8948 ;; starting position was further down than that.
8950 ;; This function might do hidden buffer changes.
8952 (save-excursion
8953 (let ((res 'maybe) passed-paren
8954 (closest-lim (or containing-sexp lim (point-min)))
8955 ;; Look at the character after point only as a last resort
8956 ;; when we can't disambiguate.
8957 (block-follows (and (eq (char-after) ?{) (point))))
8959 (while (and (eq res 'maybe)
8960 (progn (c-backward-syntactic-ws)
8961 (> (point) closest-lim))
8962 (not (bobp))
8963 (progn (backward-char)
8964 (looking-at "[]).]\\|\\w\\|\\s_"))
8965 (c-safe (forward-char)
8966 (goto-char (scan-sexps (point) -1))))
8968 (setq res
8969 (if (looking-at c-keywords-regexp)
8970 (let ((kw-sym (c-keyword-sym (match-string 1))))
8971 (cond
8972 ((and block-follows
8973 (c-keyword-member kw-sym 'c-inexpr-class-kwds))
8974 (and (not (eq passed-paren ?\[))
8975 (or (not (looking-at c-class-key))
8976 ;; If the class definition is at the start of
8977 ;; a statement, we don't consider it an
8978 ;; in-expression class.
8979 (let ((prev (point)))
8980 (while (and
8981 (= (c-backward-token-2 1 nil closest-lim) 0)
8982 (eq (char-syntax (char-after)) ?w))
8983 (setq prev (point)))
8984 (goto-char prev)
8985 (not (c-at-statement-start-p)))
8986 ;; Also, in Pike we treat it as an
8987 ;; in-expression class if it's used in an
8988 ;; object clone expression.
8989 (save-excursion
8990 (and check-at-end
8991 (c-major-mode-is 'pike-mode)
8992 (progn (goto-char block-follows)
8993 (zerop (c-forward-token-2 1 t)))
8994 (eq (char-after) ?\())))
8995 (cons 'inexpr-class (point))))
8996 ((c-keyword-member kw-sym 'c-inexpr-block-kwds)
8997 (when (not passed-paren)
8998 (cons 'inexpr-statement (point))))
8999 ((c-keyword-member kw-sym 'c-lambda-kwds)
9000 (when (or (not passed-paren)
9001 (eq passed-paren ?\())
9002 (cons 'inlambda (point))))
9003 ((c-keyword-member kw-sym 'c-block-stmt-kwds)
9004 nil)
9006 'maybe)))
9008 (if (looking-at "\\s(")
9009 (if passed-paren
9010 (if (and (eq passed-paren ?\[)
9011 (eq (char-after) ?\[))
9012 ;; Accept several square bracket sexps for
9013 ;; Java array initializations.
9014 'maybe)
9015 (setq passed-paren (char-after))
9016 'maybe)
9017 'maybe))))
9019 (if (eq res 'maybe)
9020 (when (and c-recognize-paren-inexpr-blocks
9021 block-follows
9022 containing-sexp
9023 (eq (char-after containing-sexp) ?\())
9024 (goto-char containing-sexp)
9025 (if (or (save-excursion
9026 (c-backward-syntactic-ws lim)
9027 (and (> (point) (or lim (point-min)))
9028 (c-on-identifier)))
9029 (and c-special-brace-lists
9030 (c-looking-at-special-brace-list)))
9032 (cons 'inexpr-statement (point))))
9034 res))))
9036 (defun c-looking-at-inexpr-block-backward (paren-state)
9037 ;; Returns non-nil if we're looking at the end of an in-expression
9038 ;; block, otherwise the same as `c-looking-at-inexpr-block'.
9039 ;; PAREN-STATE is the paren state relevant at the current position.
9041 ;; This function might do hidden buffer changes.
9042 (save-excursion
9043 ;; We currently only recognize a block.
9044 (let ((here (point))
9045 (elem (car-safe paren-state))
9046 containing-sexp)
9047 (when (and (consp elem)
9048 (progn (goto-char (cdr elem))
9049 (c-forward-syntactic-ws here)
9050 (= (point) here)))
9051 (goto-char (car elem))
9052 (if (setq paren-state (cdr paren-state))
9053 (setq containing-sexp (car-safe paren-state)))
9054 (c-looking-at-inexpr-block (c-safe-position containing-sexp
9055 paren-state)
9056 containing-sexp)))))
9058 (defun c-at-macro-vsemi-p (&optional pos)
9059 ;; Is there a "virtual semicolon" at POS or point?
9060 ;; (See cc-defs.el for full details of "virtual semicolons".)
9062 ;; This is true when point is at the last non syntactic WS position on the
9063 ;; line, there is a macro call last on the line, and this particular macro's
9064 ;; name is defined by the regexp `c-vs-macro-regexp' as not needing a
9065 ;; semicolon.
9066 (save-excursion
9067 (save-restriction
9068 (widen)
9069 (if pos
9070 (goto-char pos)
9071 (setq pos (point)))
9072 (and
9073 c-macro-with-semi-re
9074 (eq (skip-chars-backward " \t") 0)
9076 ;; Check we've got nothing after this except comments and empty lines
9077 ;; joined by escaped EOLs.
9078 (skip-chars-forward " \t") ; always returns non-nil.
9079 (progn
9080 (while ; go over 1 block comment per iteration.
9081 (and
9082 (looking-at "\\(\\\\[\n\r][ \t]*\\)*")
9083 (goto-char (match-end 0))
9084 (cond
9085 ((looking-at c-block-comment-start-regexp)
9086 (and (forward-comment 1)
9087 (skip-chars-forward " \t"))) ; always returns non-nil
9088 ((looking-at c-line-comment-start-regexp)
9089 (end-of-line)
9090 nil)
9091 (t nil))))
9092 (eolp))
9094 (goto-char pos)
9095 (progn (c-backward-syntactic-ws)
9096 (eq (point) pos))
9098 ;; Check for one of the listed macros being before point.
9099 (or (not (eq (char-before) ?\)))
9100 (when (c-go-list-backward)
9101 (c-backward-syntactic-ws)
9103 (c-simple-skip-symbol-backward)
9104 (looking-at c-macro-with-semi-re)
9105 (goto-char pos)
9106 (not (c-in-literal)))))) ; The most expensive check last.
9108 (defun c-macro-vsemi-status-unknown-p () t) ; See cc-defs.el.
9111 ;; `c-guess-basic-syntax' and the functions that precedes it below
9112 ;; implements the main decision tree for determining the syntactic
9113 ;; analysis of the current line of code.
9115 ;; Dynamically bound to t when `c-guess-basic-syntax' is called during
9116 ;; auto newline analysis.
9117 (defvar c-auto-newline-analysis nil)
9119 (defun c-brace-anchor-point (bracepos)
9120 ;; BRACEPOS is the position of a brace in a construct like "namespace
9121 ;; Bar {". Return the anchor point in this construct; this is the
9122 ;; earliest symbol on the brace's line which isn't earlier than
9123 ;; "namespace".
9125 ;; Currently (2007-08-17), "like namespace" means "matches
9126 ;; c-other-block-decl-kwds". It doesn't work with "class" or "struct"
9127 ;; or anything like that.
9128 (save-excursion
9129 (let ((boi (c-point 'boi bracepos)))
9130 (goto-char bracepos)
9131 (while (and (> (point) boi)
9132 (not (looking-at c-other-decl-block-key)))
9133 (c-backward-token-2))
9134 (if (> (point) boi) (point) boi))))
9136 (defsubst c-add-syntax (symbol &rest args)
9137 ;; A simple function to prepend a new syntax element to
9138 ;; `c-syntactic-context'. Using `setq' on it is unsafe since it
9139 ;; should always be dynamically bound but since we read it first
9140 ;; we'll fail properly anyway if this function is misused.
9141 (setq c-syntactic-context (cons (cons symbol args)
9142 c-syntactic-context)))
9144 (defsubst c-append-syntax (symbol &rest args)
9145 ;; Like `c-add-syntax' but appends to the end of the syntax list.
9146 ;; (Normally not necessary.)
9147 (setq c-syntactic-context (nconc c-syntactic-context
9148 (list (cons symbol args)))))
9150 (defun c-add-stmt-syntax (syntax-symbol
9151 syntax-extra-args
9152 stop-at-boi-only
9153 containing-sexp
9154 paren-state)
9155 ;; Add the indicated SYNTAX-SYMBOL to `c-syntactic-context', extending it as
9156 ;; needed with further syntax elements of the types `substatement',
9157 ;; `inexpr-statement', `arglist-cont-nonempty', `statement-block-intro', and
9158 ;; `defun-block-intro'.
9160 ;; Do the generic processing to anchor the given syntax symbol on
9161 ;; the preceding statement: Skip over any labels and containing
9162 ;; statements on the same line, and then search backward until we
9163 ;; find a statement or block start that begins at boi without a
9164 ;; label or comment.
9166 ;; Point is assumed to be at the prospective anchor point for the
9167 ;; given SYNTAX-SYMBOL. More syntax entries are added if we need to
9168 ;; skip past open parens and containing statements. Most of the added
9169 ;; syntax elements will get the same anchor point - the exception is
9170 ;; for an anchor in a construct like "namespace"[*] - this is as early
9171 ;; as possible in the construct but on the same line as the {.
9173 ;; [*] i.e. with a keyword matching c-other-block-decl-kwds.
9175 ;; SYNTAX-EXTRA-ARGS are a list of the extra arguments for the
9176 ;; syntax symbol. They are appended after the anchor point.
9178 ;; If STOP-AT-BOI-ONLY is nil, we can stop in the middle of the line
9179 ;; if the current statement starts there.
9181 ;; Note: It's not a problem if PAREN-STATE "overshoots"
9182 ;; CONTAINING-SEXP, i.e. contains info about parens further down.
9184 ;; This function might do hidden buffer changes.
9186 (if (= (point) (c-point 'boi))
9187 ;; This is by far the most common case, so let's give it special
9188 ;; treatment.
9189 (apply 'c-add-syntax syntax-symbol (point) syntax-extra-args)
9191 (let ((syntax-last c-syntactic-context)
9192 (boi (c-point 'boi))
9193 ;; Set when we're on a label, so that we don't stop there.
9194 ;; FIXME: To be complete we should check if we're on a label
9195 ;; now at the start.
9196 on-label)
9198 ;; Use point as the anchor point for "namespace", "extern", etc.
9199 (apply 'c-add-syntax syntax-symbol
9200 (if (rassq syntax-symbol c-other-decl-block-key-in-symbols-alist)
9201 (point) nil)
9202 syntax-extra-args)
9204 ;; Loop while we have to back out of containing blocks.
9205 (while
9206 (and
9207 (catch 'back-up-block
9209 ;; Loop while we have to back up statements.
9210 (while (or (/= (point) boi)
9211 on-label
9212 (looking-at c-comment-start-regexp))
9214 ;; Skip past any comments that stands between the
9215 ;; statement start and boi.
9216 (let ((savepos (point)))
9217 (while (and (/= savepos boi)
9218 (c-backward-single-comment))
9219 (setq savepos (point)
9220 boi (c-point 'boi)))
9221 (goto-char savepos))
9223 ;; Skip to the beginning of this statement or backward
9224 ;; another one.
9225 (let ((old-pos (point))
9226 (old-boi boi)
9227 (step-type (c-beginning-of-statement-1 containing-sexp)))
9228 (setq boi (c-point 'boi)
9229 on-label (eq step-type 'label))
9231 (cond ((= (point) old-pos)
9232 ;; If we didn't move we're at the start of a block and
9233 ;; have to continue outside it.
9234 (throw 'back-up-block t))
9236 ((and (eq step-type 'up)
9237 (>= (point) old-boi)
9238 (looking-at "else\\>[^_]")
9239 (save-excursion
9240 (goto-char old-pos)
9241 (looking-at "if\\>[^_]")))
9242 ;; Special case to avoid deeper and deeper indentation
9243 ;; of "else if" clauses.
9246 ((and (not stop-at-boi-only)
9247 (/= old-pos old-boi)
9248 (memq step-type '(up previous)))
9249 ;; If stop-at-boi-only is nil, we shouldn't back up
9250 ;; over previous or containing statements to try to
9251 ;; reach boi, so go back to the last position and
9252 ;; exit.
9253 (goto-char old-pos)
9254 (throw 'back-up-block nil))
9257 (if (and (not stop-at-boi-only)
9258 (memq step-type '(up previous beginning)))
9259 ;; If we've moved into another statement then we
9260 ;; should no longer try to stop in the middle of a
9261 ;; line.
9262 (setq stop-at-boi-only t))
9264 ;; Record this as a substatement if we skipped up one
9265 ;; level.
9266 (when (eq step-type 'up)
9267 (c-add-syntax 'substatement nil))))
9270 containing-sexp)
9272 ;; Now we have to go out of this block.
9273 (goto-char containing-sexp)
9275 ;; Don't stop in the middle of a special brace list opener
9276 ;; like "({".
9277 (when c-special-brace-lists
9278 (let ((special-list (c-looking-at-special-brace-list)))
9279 (when (and special-list
9280 (< (car (car special-list)) (point)))
9281 (setq containing-sexp (car (car special-list)))
9282 (goto-char containing-sexp))))
9284 (setq paren-state (c-whack-state-after containing-sexp paren-state)
9285 containing-sexp (c-most-enclosing-brace paren-state)
9286 boi (c-point 'boi))
9288 ;; Analyze the construct in front of the block we've stepped out
9289 ;; from and add the right syntactic element for it.
9290 (let ((paren-pos (point))
9291 (paren-char (char-after))
9292 step-type)
9294 (if (eq paren-char ?\()
9295 ;; Stepped out of a parenthesis block, so we're in an
9296 ;; expression now.
9297 (progn
9298 (when (/= paren-pos boi)
9299 (if (and c-recognize-paren-inexpr-blocks
9300 (progn
9301 (c-backward-syntactic-ws containing-sexp)
9302 (or (not (looking-at "\\>"))
9303 (not (c-on-identifier))))
9304 (save-excursion
9305 (goto-char (1+ paren-pos))
9306 (c-forward-syntactic-ws)
9307 (eq (char-after) ?{)))
9308 ;; Stepped out of an in-expression statement. This
9309 ;; syntactic element won't get an anchor pos.
9310 (c-add-syntax 'inexpr-statement)
9312 ;; A parenthesis normally belongs to an arglist.
9313 (c-add-syntax 'arglist-cont-nonempty nil paren-pos)))
9315 (goto-char (max boi
9316 (if containing-sexp
9317 (1+ containing-sexp)
9318 (point-min))))
9319 (setq step-type 'same
9320 on-label nil))
9322 ;; Stepped out of a brace block.
9323 (setq step-type (c-beginning-of-statement-1 containing-sexp)
9324 on-label (eq step-type 'label))
9326 (if (and (eq step-type 'same)
9327 (/= paren-pos (point)))
9328 (let (inexpr)
9329 (cond
9330 ((save-excursion
9331 (goto-char paren-pos)
9332 (setq inexpr (c-looking-at-inexpr-block
9333 (c-safe-position containing-sexp paren-state)
9334 containing-sexp)))
9335 (c-add-syntax (if (eq (car inexpr) 'inlambda)
9336 'defun-block-intro
9337 'statement-block-intro)
9338 nil))
9339 ((looking-at c-other-decl-block-key)
9340 (c-add-syntax
9341 (cdr (assoc (match-string 1)
9342 c-other-decl-block-key-in-symbols-alist))
9343 (max (c-point 'boi paren-pos) (point))))
9344 (t (c-add-syntax 'defun-block-intro nil))))
9346 (c-add-syntax 'statement-block-intro nil)))
9348 (if (= paren-pos boi)
9349 ;; Always done if the open brace was at boi. The
9350 ;; c-beginning-of-statement-1 call above is necessary
9351 ;; anyway, to decide the type of block-intro to add.
9352 (goto-char paren-pos)
9353 (setq boi (c-point 'boi)))
9356 ;; Fill in the current point as the anchor for all the symbols
9357 ;; added above.
9358 (let ((p c-syntactic-context) q)
9359 (while (not (eq p syntax-last))
9360 (setq q (cdr (car p))) ; e.g. (nil 28) [from (arglist-cont-nonempty nil 28)]
9361 (while q
9362 (unless (car q)
9363 (setcar q (point)))
9364 (setq q (cdr q)))
9365 (setq p (cdr p))))
9368 (defun c-add-class-syntax (symbol
9369 containing-decl-open
9370 containing-decl-start
9371 containing-decl-kwd
9372 paren-state)
9373 ;; The inclass and class-close syntactic symbols are added in
9374 ;; several places and some work is needed to fix everything.
9375 ;; Therefore it's collected here.
9377 ;; This function might do hidden buffer changes.
9378 (goto-char containing-decl-open)
9379 (if (and (eq symbol 'inclass) (= (point) (c-point 'boi)))
9380 (progn
9381 (c-add-syntax symbol containing-decl-open)
9382 containing-decl-open)
9383 (goto-char containing-decl-start)
9384 ;; Ought to use `c-add-stmt-syntax' instead of backing up to boi
9385 ;; here, but we have to do like this for compatibility.
9386 (back-to-indentation)
9387 (c-add-syntax symbol (point))
9388 (if (and (c-keyword-member containing-decl-kwd
9389 'c-inexpr-class-kwds)
9390 (/= containing-decl-start (c-point 'boi containing-decl-start)))
9391 (c-add-syntax 'inexpr-class))
9392 (point)))
9394 (defun c-guess-continued-construct (indent-point
9395 char-after-ip
9396 beg-of-same-or-containing-stmt
9397 containing-sexp
9398 paren-state)
9399 ;; This function contains the decision tree reached through both
9400 ;; cases 18 and 10. It's a continued statement or top level
9401 ;; construct of some kind.
9403 ;; This function might do hidden buffer changes.
9405 (let (special-brace-list placeholder)
9406 (goto-char indent-point)
9407 (skip-chars-forward " \t")
9409 (cond
9410 ;; (CASE A removed.)
9411 ;; CASE B: open braces for class or brace-lists
9412 ((setq special-brace-list
9413 (or (and c-special-brace-lists
9414 (c-looking-at-special-brace-list))
9415 (eq char-after-ip ?{)))
9417 (cond
9418 ;; CASE B.1: class-open
9419 ((save-excursion
9420 (and (eq (char-after) ?{)
9421 (c-looking-at-decl-block containing-sexp t)
9422 (setq beg-of-same-or-containing-stmt (point))))
9423 (c-add-syntax 'class-open beg-of-same-or-containing-stmt))
9425 ;; CASE B.2: brace-list-open
9426 ((or (consp special-brace-list)
9427 (save-excursion
9428 (goto-char beg-of-same-or-containing-stmt)
9429 (c-syntactic-re-search-forward "=\\([^=]\\|$\\)"
9430 indent-point t t t)))
9431 ;; The most semantically accurate symbol here is
9432 ;; brace-list-open, but we normally report it simply as a
9433 ;; statement-cont. The reason is that one normally adjusts
9434 ;; brace-list-open for brace lists as top-level constructs,
9435 ;; and brace lists inside statements is a completely different
9436 ;; context. C.f. case 5A.3.
9437 (c-beginning-of-statement-1 containing-sexp)
9438 (c-add-stmt-syntax (if c-auto-newline-analysis
9439 ;; Turn off the dwim above when we're
9440 ;; analyzing the nature of the brace
9441 ;; for the auto newline feature.
9442 'brace-list-open
9443 'statement-cont)
9444 nil nil
9445 containing-sexp paren-state))
9447 ;; CASE B.3: The body of a function declared inside a normal
9448 ;; block. Can occur e.g. in Pike and when using gcc
9449 ;; extensions, but watch out for macros followed by blocks.
9450 ;; C.f. cases E, 16F and 17G.
9451 ((and (not (c-at-statement-start-p))
9452 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
9453 'same)
9454 (save-excursion
9455 (let ((c-recognize-typeless-decls nil))
9456 ;; Turn off recognition of constructs that lacks a
9457 ;; type in this case, since that's more likely to be
9458 ;; a macro followed by a block.
9459 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
9460 (c-add-stmt-syntax 'defun-open nil t
9461 containing-sexp paren-state))
9463 ;; CASE B.4: Continued statement with block open. The most
9464 ;; accurate analysis is perhaps `statement-cont' together with
9465 ;; `block-open' but we play DWIM and use `substatement-open'
9466 ;; instead. The rationale is that this typically is a macro
9467 ;; followed by a block which makes it very similar to a
9468 ;; statement with a substatement block.
9470 (c-add-stmt-syntax 'substatement-open nil nil
9471 containing-sexp paren-state))
9474 ;; CASE C: iostream insertion or extraction operator
9475 ((and (looking-at "\\(<<\\|>>\\)\\([^=]\\|$\\)")
9476 (save-excursion
9477 (goto-char beg-of-same-or-containing-stmt)
9478 ;; If there is no preceding streamop in the statement
9479 ;; then indent this line as a normal statement-cont.
9480 (when (c-syntactic-re-search-forward
9481 "\\(<<\\|>>\\)\\([^=]\\|$\\)" indent-point 'move t t)
9482 (c-add-syntax 'stream-op (c-point 'boi))
9483 t))))
9485 ;; CASE E: In the "K&R region" of a function declared inside a
9486 ;; normal block. C.f. case B.3.
9487 ((and (save-excursion
9488 ;; Check that the next token is a '{'. This works as
9489 ;; long as no language that allows nested function
9490 ;; definitions allows stuff like member init lists, K&R
9491 ;; declarations or throws clauses there.
9493 ;; Note that we do a forward search for something ahead
9494 ;; of the indentation line here. That's not good since
9495 ;; the user might not have typed it yet. Unfortunately
9496 ;; it's exceedingly tricky to recognize a function
9497 ;; prototype in a code block without resorting to this.
9498 (c-forward-syntactic-ws)
9499 (eq (char-after) ?{))
9500 (not (c-at-statement-start-p))
9501 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
9502 'same)
9503 (save-excursion
9504 (let ((c-recognize-typeless-decls nil))
9505 ;; Turn off recognition of constructs that lacks a
9506 ;; type in this case, since that's more likely to be
9507 ;; a macro followed by a block.
9508 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
9509 (c-add-stmt-syntax 'func-decl-cont nil t
9510 containing-sexp paren-state))
9512 ;;CASE F: continued statement and the only preceding items are
9513 ;;annotations.
9514 ((and (c-major-mode-is 'java-mode)
9515 (setq placeholder (point))
9516 (c-beginning-of-statement-1)
9517 (progn
9518 (while (and (c-forward-annotation)
9519 (< (point) placeholder))
9520 (c-forward-syntactic-ws))
9522 (prog1
9523 (>= (point) placeholder)
9524 (goto-char placeholder)))
9525 (c-beginning-of-statement-1 containing-sexp)
9526 (c-add-syntax 'annotation-var-cont (point)))
9528 ;; CASE G: a template list continuation?
9529 ;; Mostly a duplication of case 5D.3 to fix templates-19:
9530 ((and (c-major-mode-is 'c++-mode)
9531 (save-excursion
9532 (goto-char indent-point)
9533 (c-with-syntax-table c++-template-syntax-table
9534 (setq placeholder (c-up-list-backward)))
9535 (and placeholder
9536 (eq (char-after placeholder) ?<)
9537 (/= (char-before placeholder) ?<)
9538 (progn
9539 (goto-char (1+ placeholder))
9540 (not (looking-at c-<-op-cont-regexp))))))
9541 (c-with-syntax-table c++-template-syntax-table
9542 (goto-char placeholder)
9543 (c-beginning-of-statement-1 containing-sexp t))
9544 (if (save-excursion
9545 (c-backward-syntactic-ws containing-sexp)
9546 (eq (char-before) ?<))
9547 ;; In a nested template arglist.
9548 (progn
9549 (goto-char placeholder)
9550 (c-syntactic-skip-backward "^,;" containing-sexp t)
9551 (c-forward-syntactic-ws))
9552 (back-to-indentation))
9553 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
9554 ;; template aware.
9555 (c-add-syntax 'template-args-cont (point) placeholder))
9557 ;; CASE D: continued statement.
9559 (c-beginning-of-statement-1 containing-sexp)
9560 (c-add-stmt-syntax 'statement-cont nil nil
9561 containing-sexp paren-state))
9564 ;; The next autoload was added by RMS on 2005/8/9 - don't know why (ACM,
9565 ;; 2005/11/29).
9566 ;;;###autoload
9567 (defun c-guess-basic-syntax ()
9568 "Return the syntactic context of the current line."
9569 (save-excursion
9570 (beginning-of-line)
9571 (c-save-buffer-state
9572 ((indent-point (point))
9573 (case-fold-search nil)
9574 open-paren-in-column-0-is-defun-start
9575 ;; A whole ugly bunch of various temporary variables. Have
9576 ;; to declare them here since it's not possible to declare
9577 ;; a variable with only the scope of a cond test and the
9578 ;; following result clauses, and most of this function is a
9579 ;; single gigantic cond. :P
9580 literal char-before-ip before-ws-ip char-after-ip macro-start
9581 in-macro-expr c-syntactic-context placeholder c-in-literal-cache
9582 step-type tmpsymbol keyword injava-inher special-brace-list tmp-pos
9583 containing-<
9584 ;; The following record some positions for the containing
9585 ;; declaration block if we're directly within one:
9586 ;; `containing-decl-open' is the position of the open
9587 ;; brace. `containing-decl-start' is the start of the
9588 ;; declaration. `containing-decl-kwd' is the keyword
9589 ;; symbol of the keyword that tells what kind of block it
9590 ;; is.
9591 containing-decl-open
9592 containing-decl-start
9593 containing-decl-kwd
9594 ;; The open paren of the closest surrounding sexp or nil if
9595 ;; there is none.
9596 containing-sexp
9597 ;; The position after the closest preceding brace sexp
9598 ;; (nested sexps are ignored), or the position after
9599 ;; `containing-sexp' if there is none, or (point-min) if
9600 ;; `containing-sexp' is nil.
9602 ;; The paren state outside `containing-sexp', or at
9603 ;; `indent-point' if `containing-sexp' is nil.
9604 (paren-state (c-parse-state))
9605 ;; There's always at most one syntactic element which got
9606 ;; an anchor pos. It's stored in syntactic-relpos.
9607 syntactic-relpos
9608 (c-stmt-delim-chars c-stmt-delim-chars))
9610 ;; Check if we're directly inside an enclosing declaration
9611 ;; level block.
9612 (when (and (setq containing-sexp
9613 (c-most-enclosing-brace paren-state))
9614 (progn
9615 (goto-char containing-sexp)
9616 (eq (char-after) ?{))
9617 (setq placeholder
9618 (c-looking-at-decl-block
9619 (c-most-enclosing-brace paren-state
9620 containing-sexp)
9621 t)))
9622 (setq containing-decl-open containing-sexp
9623 containing-decl-start (point)
9624 containing-sexp nil)
9625 (goto-char placeholder)
9626 (setq containing-decl-kwd (and (looking-at c-keywords-regexp)
9627 (c-keyword-sym (match-string 1)))))
9629 ;; Init some position variables.
9630 (if paren-state
9631 (progn
9632 (setq containing-sexp (car paren-state)
9633 paren-state (cdr paren-state))
9634 (if (consp containing-sexp)
9635 (save-excursion
9636 (goto-char (cdr containing-sexp))
9637 (if (and (c-major-mode-is 'c++-mode)
9638 (c-back-over-member-initializer-braces))
9639 (c-syntactic-skip-backward "^}" nil t))
9640 (setq lim (point))
9641 (if paren-state
9642 ;; Ignore balanced paren. The next entry
9643 ;; can't be another one.
9644 (setq containing-sexp (car paren-state)
9645 paren-state (cdr paren-state))
9646 ;; If there is no surrounding open paren then
9647 ;; put the last balanced pair back on paren-state.
9648 (setq paren-state (cons containing-sexp paren-state)
9649 containing-sexp nil)))
9650 (setq lim (1+ containing-sexp))))
9651 (setq lim (point-min)))
9653 ;; If we're in a parenthesis list then ',' delimits the
9654 ;; "statements" rather than being an operator (with the
9655 ;; exception of the "for" clause). This difference is
9656 ;; typically only noticeable when statements are used in macro
9657 ;; arglists.
9658 (when (and containing-sexp
9659 (eq (char-after containing-sexp) ?\())
9660 (setq c-stmt-delim-chars c-stmt-delim-chars-with-comma))
9661 ;; cache char before and after indent point, and move point to
9662 ;; the most likely position to perform the majority of tests
9663 (goto-char indent-point)
9664 (c-backward-syntactic-ws lim)
9665 (setq before-ws-ip (point)
9666 char-before-ip (char-before))
9667 (goto-char indent-point)
9668 (skip-chars-forward " \t")
9669 (setq char-after-ip (char-after))
9671 ;; are we in a literal?
9672 (setq literal (c-in-literal lim))
9674 ;; now figure out syntactic qualities of the current line
9675 (cond
9677 ;; CASE 1: in a string.
9678 ((eq literal 'string)
9679 (c-add-syntax 'string (c-point 'bopl)))
9681 ;; CASE 2: in a C or C++ style comment.
9682 ((and (memq literal '(c c++))
9683 ;; This is a kludge for XEmacs where we use
9684 ;; `buffer-syntactic-context', which doesn't correctly
9685 ;; recognize "\*/" to end a block comment.
9686 ;; `parse-partial-sexp' which is used by
9687 ;; `c-literal-limits' will however do that in most
9688 ;; versions, which results in that we get nil from
9689 ;; `c-literal-limits' even when `c-in-literal' claims
9690 ;; we're inside a comment.
9691 (setq placeholder (c-literal-limits lim)))
9692 (c-add-syntax literal (car placeholder)))
9694 ;; CASE 3: in a cpp preprocessor macro continuation.
9695 ((and (save-excursion
9696 (when (c-beginning-of-macro)
9697 (setq macro-start (point))))
9698 (/= macro-start (c-point 'boi))
9699 (progn
9700 (setq tmpsymbol 'cpp-macro-cont)
9701 (or (not c-syntactic-indentation-in-macros)
9702 (save-excursion
9703 (goto-char macro-start)
9704 ;; If at the beginning of the body of a #define
9705 ;; directive then analyze as cpp-define-intro
9706 ;; only. Go on with the syntactic analysis
9707 ;; otherwise. in-macro-expr is set if we're in a
9708 ;; cpp expression, i.e. before the #define body
9709 ;; or anywhere in a non-#define directive.
9710 (if (c-forward-to-cpp-define-body)
9711 (let ((indent-boi (c-point 'boi indent-point)))
9712 (setq in-macro-expr (> (point) indent-boi)
9713 tmpsymbol 'cpp-define-intro)
9714 (= (point) indent-boi))
9715 (setq in-macro-expr t)
9716 nil)))))
9717 (c-add-syntax tmpsymbol macro-start)
9718 (setq macro-start nil))
9720 ;; CASE 11: an else clause?
9721 ((looking-at "else\\>[^_]")
9722 (c-beginning-of-statement-1 containing-sexp)
9723 (c-add-stmt-syntax 'else-clause nil t
9724 containing-sexp paren-state))
9726 ;; CASE 12: while closure of a do/while construct?
9727 ((and (looking-at "while\\>[^_]")
9728 (save-excursion
9729 (prog1 (eq (c-beginning-of-statement-1 containing-sexp)
9730 'beginning)
9731 (setq placeholder (point)))))
9732 (goto-char placeholder)
9733 (c-add-stmt-syntax 'do-while-closure nil t
9734 containing-sexp paren-state))
9736 ;; CASE 13: A catch or finally clause? This case is simpler
9737 ;; than if-else and do-while, because a block is required
9738 ;; after every try, catch and finally.
9739 ((save-excursion
9740 (and (cond ((c-major-mode-is 'c++-mode)
9741 (looking-at "catch\\>[^_]"))
9742 ((c-major-mode-is 'java-mode)
9743 (looking-at "\\(catch\\|finally\\)\\>[^_]")))
9744 (and (c-safe (c-backward-syntactic-ws)
9745 (c-backward-sexp)
9747 (eq (char-after) ?{)
9748 (c-safe (c-backward-syntactic-ws)
9749 (c-backward-sexp)
9751 (if (eq (char-after) ?\()
9752 (c-safe (c-backward-sexp) t)
9754 (looking-at "\\(try\\|catch\\)\\>[^_]")
9755 (setq placeholder (point))))
9756 (goto-char placeholder)
9757 (c-add-stmt-syntax 'catch-clause nil t
9758 containing-sexp paren-state))
9760 ;; CASE 18: A substatement we can recognize by keyword.
9761 ((save-excursion
9762 (and c-opt-block-stmt-key
9763 (not (eq char-before-ip ?\;))
9764 (not (c-at-vsemi-p before-ws-ip))
9765 (not (memq char-after-ip '(?\) ?\] ?,)))
9766 (or (not (eq char-before-ip ?}))
9767 (c-looking-at-inexpr-block-backward c-state-cache))
9768 (> (point)
9769 (progn
9770 ;; Ought to cache the result from the
9771 ;; c-beginning-of-statement-1 calls here.
9772 (setq placeholder (point))
9773 (while (eq (setq step-type
9774 (c-beginning-of-statement-1 lim))
9775 'label))
9776 (if (eq step-type 'previous)
9777 (goto-char placeholder)
9778 (setq placeholder (point))
9779 (if (and (eq step-type 'same)
9780 (not (looking-at c-opt-block-stmt-key)))
9781 ;; Step up to the containing statement if we
9782 ;; stayed in the same one.
9783 (let (step)
9784 (while (eq
9785 (setq step
9786 (c-beginning-of-statement-1 lim))
9787 'label))
9788 (if (eq step 'up)
9789 (setq placeholder (point))
9790 ;; There was no containing statement after all.
9791 (goto-char placeholder)))))
9792 placeholder))
9793 (if (looking-at c-block-stmt-2-key)
9794 ;; Require a parenthesis after these keywords.
9795 ;; Necessary to catch e.g. synchronized in Java,
9796 ;; which can be used both as statement and
9797 ;; modifier.
9798 (and (zerop (c-forward-token-2 1 nil))
9799 (eq (char-after) ?\())
9800 (looking-at c-opt-block-stmt-key))))
9802 (if (eq step-type 'up)
9803 ;; CASE 18A: Simple substatement.
9804 (progn
9805 (goto-char placeholder)
9806 (cond
9807 ((eq char-after-ip ?{)
9808 (c-add-stmt-syntax 'substatement-open nil nil
9809 containing-sexp paren-state))
9810 ((save-excursion
9811 (goto-char indent-point)
9812 (back-to-indentation)
9813 (c-forward-label))
9814 (c-add-stmt-syntax 'substatement-label nil nil
9815 containing-sexp paren-state))
9817 (c-add-stmt-syntax 'substatement nil nil
9818 containing-sexp paren-state))))
9820 ;; CASE 18B: Some other substatement. This is shared
9821 ;; with case 10.
9822 (c-guess-continued-construct indent-point
9823 char-after-ip
9824 placeholder
9826 paren-state)))
9828 ;; CASE 14: A case or default label
9829 ((looking-at c-label-kwds-regexp)
9830 (if containing-sexp
9831 (progn
9832 (goto-char containing-sexp)
9833 (setq lim (c-most-enclosing-brace c-state-cache
9834 containing-sexp))
9835 (c-backward-to-block-anchor lim)
9836 (c-add-stmt-syntax 'case-label nil t lim paren-state))
9837 ;; Got a bogus label at the top level. In lack of better
9838 ;; alternatives, anchor it on (point-min).
9839 (c-add-syntax 'case-label (point-min))))
9841 ;; CASE 15: any other label
9842 ((save-excursion
9843 (back-to-indentation)
9844 (and (not (looking-at c-syntactic-ws-start))
9845 (c-forward-label)))
9846 (cond (containing-decl-open
9847 (setq placeholder (c-add-class-syntax 'inclass
9848 containing-decl-open
9849 containing-decl-start
9850 containing-decl-kwd
9851 paren-state))
9852 ;; Append access-label with the same anchor point as
9853 ;; inclass gets.
9854 (c-append-syntax 'access-label placeholder))
9856 (containing-sexp
9857 (goto-char containing-sexp)
9858 (setq lim (c-most-enclosing-brace c-state-cache
9859 containing-sexp))
9860 (save-excursion
9861 (setq tmpsymbol
9862 (if (and (eq (c-beginning-of-statement-1 lim) 'up)
9863 (looking-at "switch\\>[^_]"))
9864 ;; If the surrounding statement is a switch then
9865 ;; let's analyze all labels as switch labels, so
9866 ;; that they get lined up consistently.
9867 'case-label
9868 'label)))
9869 (c-backward-to-block-anchor lim)
9870 (c-add-stmt-syntax tmpsymbol nil t lim paren-state))
9873 ;; A label on the top level. Treat it as a class
9874 ;; context. (point-min) is the closest we get to the
9875 ;; class open brace.
9876 (c-add-syntax 'access-label (point-min)))))
9878 ;; CASE 4: In-expression statement. C.f. cases 7B, 16A and
9879 ;; 17E.
9880 ((setq placeholder (c-looking-at-inexpr-block
9881 (c-safe-position containing-sexp paren-state)
9882 containing-sexp
9883 ;; Have to turn on the heuristics after
9884 ;; the point even though it doesn't work
9885 ;; very well. C.f. test case class-16.pike.
9887 (setq tmpsymbol (assq (car placeholder)
9888 '((inexpr-class . class-open)
9889 (inexpr-statement . block-open))))
9890 (if tmpsymbol
9891 ;; It's a statement block or an anonymous class.
9892 (setq tmpsymbol (cdr tmpsymbol))
9893 ;; It's a Pike lambda. Check whether we are between the
9894 ;; lambda keyword and the argument list or at the defun
9895 ;; opener.
9896 (setq tmpsymbol (if (eq char-after-ip ?{)
9897 'inline-open
9898 'lambda-intro-cont)))
9899 (goto-char (cdr placeholder))
9900 (back-to-indentation)
9901 (c-add-stmt-syntax tmpsymbol nil t
9902 (c-most-enclosing-brace c-state-cache (point))
9903 paren-state)
9904 (unless (eq (point) (cdr placeholder))
9905 (c-add-syntax (car placeholder))))
9907 ;; CASE 5: Line is inside a declaration level block or at top level.
9908 ((or containing-decl-open (null containing-sexp))
9909 (cond
9911 ;; CASE 5A: we are looking at a defun, brace list, class,
9912 ;; or inline-inclass method opening brace
9913 ((setq special-brace-list
9914 (or (and c-special-brace-lists
9915 (c-looking-at-special-brace-list))
9916 (eq char-after-ip ?{)))
9917 (cond
9919 ;; CASE 5A.1: Non-class declaration block open.
9920 ((save-excursion
9921 (let (tmp)
9922 (and (eq char-after-ip ?{)
9923 (setq tmp (c-looking-at-decl-block containing-sexp t))
9924 (progn
9925 (setq placeholder (point))
9926 (goto-char tmp)
9927 (looking-at c-symbol-key))
9928 (c-keyword-member
9929 (c-keyword-sym (setq keyword (match-string 0)))
9930 'c-other-block-decl-kwds))))
9931 (goto-char placeholder)
9932 (c-add-stmt-syntax
9933 (if (string-equal keyword "extern")
9934 ;; Special case for extern-lang-open.
9935 'extern-lang-open
9936 (intern (concat keyword "-open")))
9937 nil t containing-sexp paren-state))
9939 ;; CASE 5A.2: we are looking at a class opening brace
9940 ((save-excursion
9941 (goto-char indent-point)
9942 (skip-chars-forward " \t")
9943 (and (eq (char-after) ?{)
9944 (c-looking-at-decl-block containing-sexp t)
9945 (setq placeholder (point))))
9946 (c-add-syntax 'class-open placeholder))
9948 ;; CASE 5A.3: brace list open
9949 ((save-excursion
9950 (c-beginning-of-decl-1 lim)
9951 (while (looking-at c-specifier-key)
9952 (goto-char (match-end 1))
9953 (c-forward-syntactic-ws indent-point))
9954 (setq placeholder (c-point 'boi))
9955 (or (consp special-brace-list)
9956 (and (or (save-excursion
9957 (goto-char indent-point)
9958 (setq tmpsymbol nil)
9959 (while (and (> (point) placeholder)
9960 (zerop (c-backward-token-2 1 t))
9961 (not (looking-at "=\\([^=]\\|$\\)")))
9962 (and c-opt-inexpr-brace-list-key
9963 (not tmpsymbol)
9964 (looking-at c-opt-inexpr-brace-list-key)
9965 (setq tmpsymbol 'topmost-intro-cont)))
9966 (looking-at "=\\([^=]\\|$\\)"))
9967 (looking-at c-brace-list-key))
9968 (save-excursion
9969 (while (and (< (point) indent-point)
9970 (zerop (c-forward-token-2 1 t))
9971 (not (memq (char-after) '(?\; ?\()))))
9972 (not (memq (char-after) '(?\; ?\()))
9973 ))))
9974 (if (and (not c-auto-newline-analysis)
9975 (c-major-mode-is 'java-mode)
9976 (eq tmpsymbol 'topmost-intro-cont))
9977 ;; We're in Java and have found that the open brace
9978 ;; belongs to a "new Foo[]" initialization list,
9979 ;; which means the brace list is part of an
9980 ;; expression and not a top level definition. We
9981 ;; therefore treat it as any topmost continuation
9982 ;; even though the semantically correct symbol still
9983 ;; is brace-list-open, on the same grounds as in
9984 ;; case B.2.
9985 (progn
9986 (c-beginning-of-statement-1 lim)
9987 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
9988 (c-add-syntax 'brace-list-open placeholder)))
9990 ;; CASE 5A.4: inline defun open
9991 ((and containing-decl-open
9992 (not (c-keyword-member containing-decl-kwd
9993 'c-other-block-decl-kwds)))
9994 (c-add-syntax 'inline-open)
9995 (c-add-class-syntax 'inclass
9996 containing-decl-open
9997 containing-decl-start
9998 containing-decl-kwd
9999 paren-state))
10001 ;; CASE 5A.5: ordinary defun open
10003 (save-excursion
10004 (c-beginning-of-decl-1 lim)
10005 (while (looking-at c-specifier-key)
10006 (goto-char (match-end 1))
10007 (c-forward-syntactic-ws indent-point))
10008 (c-add-syntax 'defun-open (c-point 'boi))
10009 ;; Bogus to use bol here, but it's the legacy. (Resolved,
10010 ;; 2007-11-09)
10011 ))))
10013 ;; CASE 5R: Member init list. (Used to be part of CASE 5B.1)
10014 ;; Note there is no limit on the backward search here, since member
10015 ;; init lists can, in practice, be very large.
10016 ((save-excursion
10017 (when (setq placeholder (c-back-over-member-initializers))
10018 (setq tmp-pos (point))))
10019 (if (= (c-point 'bosws) (1+ tmp-pos))
10020 (progn
10021 ;; There is no preceding member init clause.
10022 ;; Indent relative to the beginning of indentation
10023 ;; for the topmost-intro line that contains the
10024 ;; prototype's open paren.
10025 (goto-char placeholder)
10026 (c-add-syntax 'member-init-intro (c-point 'boi)))
10027 ;; Indent relative to the first member init clause.
10028 (goto-char (1+ tmp-pos))
10029 (c-forward-syntactic-ws)
10030 (c-add-syntax 'member-init-cont (point))))
10032 ;; CASE 5B: After a function header but before the body (or
10033 ;; the ending semicolon if there's no body).
10034 ((save-excursion
10035 (when (setq placeholder (c-just-after-func-arglist-p
10036 (max lim (c-determine-limit 500))))
10037 (setq tmp-pos (point))))
10038 (cond
10040 ;; CASE 5B.1: Member init list.
10041 ((eq (char-after tmp-pos) ?:)
10042 ;; There is no preceding member init clause.
10043 ;; Indent relative to the beginning of indentation
10044 ;; for the topmost-intro line that contains the
10045 ;; prototype's open paren.
10046 (goto-char placeholder)
10047 (c-add-syntax 'member-init-intro (c-point 'boi)))
10049 ;; CASE 5B.2: K&R arg decl intro
10050 ((and c-recognize-knr-p
10051 (c-in-knr-argdecl lim))
10052 (c-beginning-of-statement-1 lim)
10053 (c-add-syntax 'knr-argdecl-intro (c-point 'boi))
10054 (if containing-decl-open
10055 (c-add-class-syntax 'inclass
10056 containing-decl-open
10057 containing-decl-start
10058 containing-decl-kwd
10059 paren-state)))
10061 ;; CASE 5B.4: Nether region after a C++ or Java func
10062 ;; decl, which could include a `throws' declaration.
10064 (c-beginning-of-statement-1 lim)
10065 (c-add-syntax 'func-decl-cont (c-point 'boi))
10068 ;; CASE 5C: inheritance line. could be first inheritance
10069 ;; line, or continuation of a multiple inheritance
10070 ((or (and (c-major-mode-is 'c++-mode)
10071 (progn
10072 (when (eq char-after-ip ?,)
10073 (skip-chars-forward " \t")
10074 (forward-char))
10075 (looking-at c-opt-postfix-decl-spec-key)))
10076 (and (or (eq char-before-ip ?:)
10077 ;; watch out for scope operator
10078 (save-excursion
10079 (and (eq char-after-ip ?:)
10080 (c-safe (forward-char 1) t)
10081 (not (eq (char-after) ?:))
10083 (save-excursion
10084 (c-beginning-of-statement-1 lim)
10085 (when (looking-at c-opt-<>-sexp-key)
10086 (goto-char (match-end 1))
10087 (c-forward-syntactic-ws)
10088 (c-forward-<>-arglist nil)
10089 (c-forward-syntactic-ws))
10090 (looking-at c-class-key)))
10091 ;; for Java
10092 (and (c-major-mode-is 'java-mode)
10093 (let ((fence (save-excursion
10094 (c-beginning-of-statement-1 lim)
10095 (point)))
10096 cont done)
10097 (save-excursion
10098 (while (not done)
10099 (cond ((looking-at c-opt-postfix-decl-spec-key)
10100 (setq injava-inher (cons cont (point))
10101 done t))
10102 ((or (not (c-safe (c-forward-sexp -1) t))
10103 (<= (point) fence))
10104 (setq done t))
10106 (setq cont t)))
10107 injava-inher)
10108 (not (c-crosses-statement-barrier-p (cdr injava-inher)
10109 (point)))
10111 (cond
10113 ;; CASE 5C.1: non-hanging colon on an inher intro
10114 ((eq char-after-ip ?:)
10115 (c-beginning-of-statement-1 lim)
10116 (c-add-syntax 'inher-intro (c-point 'boi))
10117 ;; don't add inclass symbol since relative point already
10118 ;; contains any class offset
10121 ;; CASE 5C.2: hanging colon on an inher intro
10122 ((eq char-before-ip ?:)
10123 (c-beginning-of-statement-1 lim)
10124 (c-add-syntax 'inher-intro (c-point 'boi))
10125 (if containing-decl-open
10126 (c-add-class-syntax 'inclass
10127 containing-decl-open
10128 containing-decl-start
10129 containing-decl-kwd
10130 paren-state)))
10132 ;; CASE 5C.3: in a Java implements/extends
10133 (injava-inher
10134 (let ((where (cdr injava-inher))
10135 (cont (car injava-inher)))
10136 (goto-char where)
10137 (cond ((looking-at "throws\\>[^_]")
10138 (c-add-syntax 'func-decl-cont
10139 (progn (c-beginning-of-statement-1 lim)
10140 (c-point 'boi))))
10141 (cont (c-add-syntax 'inher-cont where))
10142 (t (c-add-syntax 'inher-intro
10143 (progn (goto-char (cdr injava-inher))
10144 (c-beginning-of-statement-1 lim)
10145 (point))))
10148 ;; CASE 5C.4: a continued inheritance line
10150 (c-beginning-of-inheritance-list lim)
10151 (c-add-syntax 'inher-cont (point))
10152 ;; don't add inclass symbol since relative point already
10153 ;; contains any class offset
10156 ;; CASE 5P: AWK pattern or function or continuation
10157 ;; thereof.
10158 ((c-major-mode-is 'awk-mode)
10159 (setq placeholder (point))
10160 (c-add-stmt-syntax
10161 (if (and (eq (c-beginning-of-statement-1) 'same)
10162 (/= (point) placeholder))
10163 'topmost-intro-cont
10164 'topmost-intro)
10165 nil nil
10166 containing-sexp paren-state))
10168 ;; CASE 5D: this could be a top-level initialization, a
10169 ;; member init list continuation, or a template argument
10170 ;; list continuation.
10171 ((save-excursion
10172 ;; Note: We use the fact that lim is always after any
10173 ;; preceding brace sexp.
10174 (if c-recognize-<>-arglists
10175 (while (and
10176 (progn
10177 (c-syntactic-skip-backward "^;,=<>" lim t)
10178 (> (point) lim))
10180 (when c-overloadable-operators-regexp
10181 (when (setq placeholder (c-after-special-operator-id lim))
10182 (goto-char placeholder)
10184 (cond
10185 ((eq (char-before) ?>)
10186 (or (c-backward-<>-arglist nil lim)
10187 (backward-char))
10189 ((eq (char-before) ?<)
10190 (backward-char)
10191 (if (save-excursion
10192 (c-forward-<>-arglist nil))
10193 (progn (forward-char)
10194 nil)
10196 (t nil)))))
10197 ;; NB: No c-after-special-operator-id stuff in this
10198 ;; clause - we assume only C++ needs it.
10199 (c-syntactic-skip-backward "^;,=" lim t))
10200 (memq (char-before) '(?, ?= ?<)))
10201 (cond
10203 ;; CASE 5D.3: perhaps a template list continuation?
10204 ((and (c-major-mode-is 'c++-mode)
10205 (save-excursion
10206 (save-restriction
10207 (c-with-syntax-table c++-template-syntax-table
10208 (goto-char indent-point)
10209 (setq placeholder (c-up-list-backward))
10210 (and placeholder
10211 (eq (char-after placeholder) ?<))))))
10212 (c-with-syntax-table c++-template-syntax-table
10213 (goto-char placeholder)
10214 (c-beginning-of-statement-1 lim t))
10215 (if (save-excursion
10216 (c-backward-syntactic-ws lim)
10217 (eq (char-before) ?<))
10218 ;; In a nested template arglist.
10219 (progn
10220 (goto-char placeholder)
10221 (c-syntactic-skip-backward "^,;" lim t)
10222 (c-forward-syntactic-ws))
10223 (back-to-indentation))
10224 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
10225 ;; template aware.
10226 (c-add-syntax 'template-args-cont (point) placeholder))
10228 ;; CASE 5D.4: perhaps a multiple inheritance line?
10229 ((and (c-major-mode-is 'c++-mode)
10230 (save-excursion
10231 (c-beginning-of-statement-1 lim)
10232 (setq placeholder (point))
10233 (if (looking-at "static\\>[^_]")
10234 (c-forward-token-2 1 nil indent-point))
10235 (and (looking-at c-class-key)
10236 (zerop (c-forward-token-2 2 nil indent-point))
10237 (if (eq (char-after) ?<)
10238 (c-with-syntax-table c++-template-syntax-table
10239 (zerop (c-forward-token-2 1 t indent-point)))
10241 (eq (char-after) ?:))))
10242 (goto-char placeholder)
10243 (c-add-syntax 'inher-cont (c-point 'boi)))
10245 ;; CASE 5D.5: Continuation of the "expression part" of a
10246 ;; top level construct. Or, perhaps, an unrecognized construct.
10248 (while (and (setq placeholder (point))
10249 (eq (car (c-beginning-of-decl-1 containing-sexp)) ; Can't use `lim' here.
10250 'same)
10251 (save-excursion
10252 (c-backward-syntactic-ws)
10253 (eq (char-before) ?}))
10254 (< (point) placeholder)))
10255 (c-add-stmt-syntax
10256 (cond
10257 ((eq (point) placeholder) 'statement) ; unrecognized construct
10258 ;; A preceding comma at the top level means that a
10259 ;; new variable declaration starts here. Use
10260 ;; topmost-intro-cont for it, for consistency with
10261 ;; the first variable declaration. C.f. case 5N.
10262 ((eq char-before-ip ?,) 'topmost-intro-cont)
10263 (t 'statement-cont))
10264 nil nil containing-sexp paren-state))
10267 ;; CASE 5F: Close of a non-class declaration level block.
10268 ((and (eq char-after-ip ?})
10269 (c-keyword-member containing-decl-kwd
10270 'c-other-block-decl-kwds))
10271 ;; This is inconsistent: Should use `containing-decl-open'
10272 ;; here if it's at boi, like in case 5J.
10273 (goto-char containing-decl-start)
10274 (c-add-stmt-syntax
10275 (if (string-equal (symbol-name containing-decl-kwd) "extern")
10276 ;; Special case for compatibility with the
10277 ;; extern-lang syntactic symbols.
10278 'extern-lang-close
10279 (intern (concat (symbol-name containing-decl-kwd)
10280 "-close")))
10281 nil t
10282 (c-most-enclosing-brace paren-state (point))
10283 paren-state))
10285 ;; CASE 5G: we are looking at the brace which closes the
10286 ;; enclosing nested class decl
10287 ((and containing-sexp
10288 (eq char-after-ip ?})
10289 (eq containing-decl-open containing-sexp))
10290 (c-add-class-syntax 'class-close
10291 containing-decl-open
10292 containing-decl-start
10293 containing-decl-kwd
10294 paren-state))
10296 ;; CASE 5H: we could be looking at subsequent knr-argdecls
10297 ((and c-recognize-knr-p
10298 (not containing-sexp) ; can't be knr inside braces.
10299 (not (eq char-before-ip ?}))
10300 (save-excursion
10301 (setq placeholder (cdr (c-beginning-of-decl-1 lim)))
10302 (and placeholder
10303 ;; Do an extra check to avoid tripping up on
10304 ;; statements that occur in invalid contexts
10305 ;; (e.g. in macro bodies where we don't really
10306 ;; know the context of what we're looking at).
10307 (not (and c-opt-block-stmt-key
10308 (looking-at c-opt-block-stmt-key)))))
10309 (< placeholder indent-point))
10310 (goto-char placeholder)
10311 (c-add-syntax 'knr-argdecl (point)))
10313 ;; CASE 5I: ObjC method definition.
10314 ((and c-opt-method-key
10315 (looking-at c-opt-method-key))
10316 (c-beginning-of-statement-1 nil t)
10317 (if (= (point) indent-point)
10318 ;; Handle the case when it's the first (non-comment)
10319 ;; thing in the buffer. Can't look for a 'same return
10320 ;; value from cbos1 since ObjC directives currently
10321 ;; aren't recognized fully, so that we get 'same
10322 ;; instead of 'previous if it moved over a preceding
10323 ;; directive.
10324 (goto-char (point-min)))
10325 (c-add-syntax 'objc-method-intro (c-point 'boi)))
10327 ;; CASE 5N: At a variable declaration that follows a class
10328 ;; definition or some other block declaration that doesn't
10329 ;; end at the closing '}'. C.f. case 5D.5.
10330 ((progn
10331 (c-backward-syntactic-ws lim)
10332 (and (eq (char-before) ?})
10333 (save-excursion
10334 (let ((start (point)))
10335 (if (and c-state-cache
10336 (consp (car c-state-cache))
10337 (eq (cdar c-state-cache) (point)))
10338 ;; Speed up the backward search a bit.
10339 (goto-char (caar c-state-cache)))
10340 (c-beginning-of-decl-1 containing-sexp) ; Can't use `lim' here.
10341 (setq placeholder (point))
10342 (if (= start (point))
10343 ;; The '}' is unbalanced.
10345 (c-end-of-decl-1)
10346 (>= (point) indent-point))))))
10347 (goto-char placeholder)
10348 (c-add-stmt-syntax 'topmost-intro-cont nil nil
10349 containing-sexp paren-state))
10351 ;; NOTE: The point is at the end of the previous token here.
10353 ;; CASE 5J: we are at the topmost level, make
10354 ;; sure we skip back past any access specifiers
10355 ((and
10356 ;; A macro continuation line is never at top level.
10357 (not (and macro-start
10358 (> indent-point macro-start)))
10359 (save-excursion
10360 (setq placeholder (point))
10361 (or (memq char-before-ip '(?\; ?{ ?} nil))
10362 (c-at-vsemi-p before-ws-ip)
10363 (when (and (eq char-before-ip ?:)
10364 (eq (c-beginning-of-statement-1 lim)
10365 'label))
10366 (c-backward-syntactic-ws lim)
10367 (setq placeholder (point)))
10368 (and (c-major-mode-is 'objc-mode)
10369 (catch 'not-in-directive
10370 (c-beginning-of-statement-1 lim)
10371 (setq placeholder (point))
10372 (while (and (c-forward-objc-directive)
10373 (< (point) indent-point))
10374 (c-forward-syntactic-ws)
10375 (if (>= (point) indent-point)
10376 (throw 'not-in-directive t))
10377 (setq placeholder (point)))
10378 nil)))))
10379 ;; For historic reasons we anchor at bol of the last
10380 ;; line of the previous declaration. That's clearly
10381 ;; highly bogus and useless, and it makes our lives hard
10382 ;; to remain compatible. :P
10383 (goto-char placeholder)
10384 (c-add-syntax 'topmost-intro (c-point 'bol))
10385 (if containing-decl-open
10386 (if (c-keyword-member containing-decl-kwd
10387 'c-other-block-decl-kwds)
10388 (progn
10389 (goto-char (c-brace-anchor-point containing-decl-open))
10390 (c-add-stmt-syntax
10391 (if (string-equal (symbol-name containing-decl-kwd)
10392 "extern")
10393 ;; Special case for compatibility with the
10394 ;; extern-lang syntactic symbols.
10395 'inextern-lang
10396 (intern (concat "in"
10397 (symbol-name containing-decl-kwd))))
10398 nil t
10399 (c-most-enclosing-brace paren-state (point))
10400 paren-state))
10401 (c-add-class-syntax 'inclass
10402 containing-decl-open
10403 containing-decl-start
10404 containing-decl-kwd
10405 paren-state)))
10406 (when (and c-syntactic-indentation-in-macros
10407 macro-start
10408 (/= macro-start (c-point 'boi indent-point)))
10409 (c-add-syntax 'cpp-define-intro)
10410 (setq macro-start nil)))
10412 ;; CASE 5K: we are at an ObjC method definition
10413 ;; continuation line.
10414 ((and c-opt-method-key
10415 (save-excursion
10416 (c-beginning-of-statement-1 lim)
10417 (beginning-of-line)
10418 (when (looking-at c-opt-method-key)
10419 (setq placeholder (point)))))
10420 (c-add-syntax 'objc-method-args-cont placeholder))
10422 ;; CASE 5L: we are at the first argument of a template
10423 ;; arglist that begins on the previous line.
10424 ((and c-recognize-<>-arglists
10425 (eq (char-before) ?<)
10426 (not (and c-overloadable-operators-regexp
10427 (c-after-special-operator-id lim))))
10428 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
10429 (c-add-syntax 'template-args-cont (c-point 'boi)))
10431 ;; CASE 5Q: we are at a statement within a macro.
10432 (macro-start
10433 (c-beginning-of-statement-1 containing-sexp)
10434 (c-add-stmt-syntax 'statement nil t containing-sexp paren-state))
10436 ;;CASE 5N: We are at a topmost continuation line and the only
10437 ;;preceding items are annotations.
10438 ((and (c-major-mode-is 'java-mode)
10439 (setq placeholder (point))
10440 (c-beginning-of-statement-1)
10441 (progn
10442 (while (and (c-forward-annotation))
10443 (c-forward-syntactic-ws))
10445 (prog1
10446 (>= (point) placeholder)
10447 (goto-char placeholder)))
10448 (c-add-syntax 'annotation-top-cont (c-point 'boi)))
10450 ;; CASE 5M: we are at a topmost continuation line
10452 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
10453 (when (c-major-mode-is 'objc-mode)
10454 (setq placeholder (point))
10455 (while (and (c-forward-objc-directive)
10456 (< (point) indent-point))
10457 (c-forward-syntactic-ws)
10458 (setq placeholder (point)))
10459 (goto-char placeholder))
10460 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
10463 ;; (CASE 6 has been removed.)
10465 ;; CASE 7: line is an expression, not a statement. Most
10466 ;; likely we are either in a function prototype or a function
10467 ;; call argument list
10468 ((not (or (and c-special-brace-lists
10469 (save-excursion
10470 (goto-char containing-sexp)
10471 (c-looking-at-special-brace-list)))
10472 (eq (char-after containing-sexp) ?{)))
10473 (cond
10475 ;; CASE 7A: we are looking at the arglist closing paren.
10476 ;; C.f. case 7F.
10477 ((memq char-after-ip '(?\) ?\]))
10478 (goto-char containing-sexp)
10479 (setq placeholder (c-point 'boi))
10480 (if (and (c-safe (backward-up-list 1) t)
10481 (>= (point) placeholder))
10482 (progn
10483 (forward-char)
10484 (skip-chars-forward " \t"))
10485 (goto-char placeholder))
10486 (c-add-stmt-syntax 'arglist-close (list containing-sexp) t
10487 (c-most-enclosing-brace paren-state (point))
10488 paren-state))
10490 ;; CASE 7B: Looking at the opening brace of an
10491 ;; in-expression block or brace list. C.f. cases 4, 16A
10492 ;; and 17E.
10493 ((and (eq char-after-ip ?{)
10494 (progn
10495 (setq placeholder (c-inside-bracelist-p (point)
10496 paren-state))
10497 (if placeholder
10498 (setq tmpsymbol '(brace-list-open . inexpr-class))
10499 (setq tmpsymbol '(block-open . inexpr-statement)
10500 placeholder
10501 (cdr-safe (c-looking-at-inexpr-block
10502 (c-safe-position containing-sexp
10503 paren-state)
10504 containing-sexp)))
10505 ;; placeholder is nil if it's a block directly in
10506 ;; a function arglist. That makes us skip out of
10507 ;; this case.
10509 (goto-char placeholder)
10510 (back-to-indentation)
10511 (c-add-stmt-syntax (car tmpsymbol) nil t
10512 (c-most-enclosing-brace paren-state (point))
10513 paren-state)
10514 (if (/= (point) placeholder)
10515 (c-add-syntax (cdr tmpsymbol))))
10517 ;; CASE 7C: we are looking at the first argument in an empty
10518 ;; argument list. Use arglist-close if we're actually
10519 ;; looking at a close paren or bracket.
10520 ((memq char-before-ip '(?\( ?\[))
10521 (goto-char containing-sexp)
10522 (setq placeholder (c-point 'boi))
10523 (if (and (c-safe (backward-up-list 1) t)
10524 (>= (point) placeholder))
10525 (progn
10526 (forward-char)
10527 (skip-chars-forward " \t"))
10528 (goto-char placeholder))
10529 (c-add-stmt-syntax 'arglist-intro (list containing-sexp) t
10530 (c-most-enclosing-brace paren-state (point))
10531 paren-state))
10533 ;; CASE 7D: we are inside a conditional test clause. treat
10534 ;; these things as statements
10535 ((progn
10536 (goto-char containing-sexp)
10537 (and (c-safe (c-forward-sexp -1) t)
10538 (looking-at "\\<for\\>[^_]")))
10539 (goto-char (1+ containing-sexp))
10540 (c-forward-syntactic-ws indent-point)
10541 (if (eq char-before-ip ?\;)
10542 (c-add-syntax 'statement (point))
10543 (c-add-syntax 'statement-cont (point))
10546 ;; CASE 7E: maybe a continued ObjC method call. This is the
10547 ;; case when we are inside a [] bracketed exp, and what
10548 ;; precede the opening bracket is not an identifier.
10549 ((and c-opt-method-key
10550 (eq (char-after containing-sexp) ?\[)
10551 (progn
10552 (goto-char (1- containing-sexp))
10553 (c-backward-syntactic-ws (c-point 'bod))
10554 (if (not (looking-at c-symbol-key))
10555 (c-add-syntax 'objc-method-call-cont containing-sexp))
10558 ;; CASE 7F: we are looking at an arglist continuation line,
10559 ;; but the preceding argument is on the same line as the
10560 ;; opening paren. This case includes multi-line
10561 ;; mathematical paren groupings, but we could be on a
10562 ;; for-list continuation line. C.f. case 7A.
10563 ((progn
10564 (goto-char (1+ containing-sexp))
10565 (< (save-excursion
10566 (c-forward-syntactic-ws)
10567 (point))
10568 (c-point 'bonl)))
10569 (goto-char containing-sexp) ; paren opening the arglist
10570 (setq placeholder (c-point 'boi))
10571 (if (and (c-safe (backward-up-list 1) t)
10572 (>= (point) placeholder))
10573 (progn
10574 (forward-char)
10575 (skip-chars-forward " \t"))
10576 (goto-char placeholder))
10577 (c-add-stmt-syntax 'arglist-cont-nonempty (list containing-sexp) t
10578 (c-most-enclosing-brace c-state-cache (point))
10579 paren-state))
10581 ;; CASE 7G: we are looking at just a normal arglist
10582 ;; continuation line
10583 (t (c-forward-syntactic-ws indent-point)
10584 (c-add-syntax 'arglist-cont (c-point 'boi)))
10587 ;; CASE 8: func-local multi-inheritance line
10588 ((and (c-major-mode-is 'c++-mode)
10589 (save-excursion
10590 (goto-char indent-point)
10591 (skip-chars-forward " \t")
10592 (looking-at c-opt-postfix-decl-spec-key)))
10593 (goto-char indent-point)
10594 (skip-chars-forward " \t")
10595 (cond
10597 ;; CASE 8A: non-hanging colon on an inher intro
10598 ((eq char-after-ip ?:)
10599 (c-backward-syntactic-ws lim)
10600 (c-add-syntax 'inher-intro (c-point 'boi)))
10602 ;; CASE 8B: hanging colon on an inher intro
10603 ((eq char-before-ip ?:)
10604 (c-add-syntax 'inher-intro (c-point 'boi)))
10606 ;; CASE 8C: a continued inheritance line
10608 (c-beginning-of-inheritance-list lim)
10609 (c-add-syntax 'inher-cont (point))
10612 ;; CASE 9: we are inside a brace-list
10613 ((and (not (c-major-mode-is 'awk-mode)) ; Maybe this isn't needed (ACM, 2002/3/29)
10614 (setq special-brace-list
10615 (or (and c-special-brace-lists ;;;; ALWAYS NIL FOR AWK!!
10616 (save-excursion
10617 (goto-char containing-sexp)
10618 (c-looking-at-special-brace-list)))
10619 (c-inside-bracelist-p containing-sexp paren-state))))
10620 (cond
10622 ;; CASE 9A: In the middle of a special brace list opener.
10623 ((and (consp special-brace-list)
10624 (save-excursion
10625 (goto-char containing-sexp)
10626 (eq (char-after) ?\())
10627 (eq char-after-ip (car (cdr special-brace-list))))
10628 (goto-char (car (car special-brace-list)))
10629 (skip-chars-backward " \t")
10630 (if (and (bolp)
10631 (assoc 'statement-cont
10632 (setq placeholder (c-guess-basic-syntax))))
10633 (setq c-syntactic-context placeholder)
10634 (c-beginning-of-statement-1
10635 (c-safe-position (1- containing-sexp) paren-state))
10636 (c-forward-token-2 0)
10637 (while (looking-at c-specifier-key)
10638 (goto-char (match-end 1))
10639 (c-forward-syntactic-ws))
10640 (c-add-syntax 'brace-list-open (c-point 'boi))))
10642 ;; CASE 9B: brace-list-close brace
10643 ((if (consp special-brace-list)
10644 ;; Check special brace list closer.
10645 (progn
10646 (goto-char (car (car special-brace-list)))
10647 (save-excursion
10648 (goto-char indent-point)
10649 (back-to-indentation)
10651 ;; We were between the special close char and the `)'.
10652 (and (eq (char-after) ?\))
10653 (eq (1+ (point)) (cdr (car special-brace-list))))
10654 ;; We were before the special close char.
10655 (and (eq (char-after) (cdr (cdr special-brace-list)))
10656 (zerop (c-forward-token-2))
10657 (eq (1+ (point)) (cdr (car special-brace-list)))))))
10658 ;; Normal brace list check.
10659 (and (eq char-after-ip ?})
10660 (c-safe (goto-char (c-up-list-backward (point))) t)
10661 (= (point) containing-sexp)))
10662 (if (eq (point) (c-point 'boi))
10663 (c-add-syntax 'brace-list-close (point))
10664 (setq lim (c-most-enclosing-brace c-state-cache (point)))
10665 (c-beginning-of-statement-1 lim nil nil t)
10666 (c-add-stmt-syntax 'brace-list-close nil t lim paren-state)))
10669 ;; Prepare for the rest of the cases below by going to the
10670 ;; token following the opening brace
10671 (if (consp special-brace-list)
10672 (progn
10673 (goto-char (car (car special-brace-list)))
10674 (c-forward-token-2 1 nil indent-point))
10675 (goto-char containing-sexp))
10676 (forward-char)
10677 (let ((start (point)))
10678 (c-forward-syntactic-ws indent-point)
10679 (goto-char (max start (c-point 'bol))))
10680 (c-skip-ws-forward indent-point)
10681 (cond
10683 ;; CASE 9C: we're looking at the first line in a brace-list
10684 ((= (point) indent-point)
10685 (if (consp special-brace-list)
10686 (goto-char (car (car special-brace-list)))
10687 (goto-char containing-sexp))
10688 (if (eq (point) (c-point 'boi))
10689 (c-add-syntax 'brace-list-intro (point))
10690 (setq lim (c-most-enclosing-brace c-state-cache (point)))
10691 (c-beginning-of-statement-1 lim)
10692 (c-add-stmt-syntax 'brace-list-intro nil t lim paren-state)))
10694 ;; CASE 9D: this is just a later brace-list-entry or
10695 ;; brace-entry-open
10696 (t (if (or (eq char-after-ip ?{)
10697 (and c-special-brace-lists
10698 (save-excursion
10699 (goto-char indent-point)
10700 (c-forward-syntactic-ws (c-point 'eol))
10701 (c-looking-at-special-brace-list (point)))))
10702 (c-add-syntax 'brace-entry-open (point))
10703 (c-add-syntax 'brace-list-entry (point))
10705 ))))
10707 ;; CASE 10: A continued statement or top level construct.
10708 ((and (not (memq char-before-ip '(?\; ?:)))
10709 (not (c-at-vsemi-p before-ws-ip))
10710 (or (not (eq char-before-ip ?}))
10711 (c-looking-at-inexpr-block-backward c-state-cache))
10712 (> (point)
10713 (save-excursion
10714 (c-beginning-of-statement-1 containing-sexp)
10715 (setq placeholder (point))))
10716 (/= placeholder containing-sexp))
10717 ;; This is shared with case 18.
10718 (c-guess-continued-construct indent-point
10719 char-after-ip
10720 placeholder
10721 containing-sexp
10722 paren-state))
10724 ;; CASE 16: block close brace, possibly closing the defun or
10725 ;; the class
10726 ((eq char-after-ip ?})
10727 ;; From here on we have the next containing sexp in lim.
10728 (setq lim (c-most-enclosing-brace paren-state))
10729 (goto-char containing-sexp)
10730 (cond
10732 ;; CASE 16E: Closing a statement block? This catches
10733 ;; cases where it's preceded by a statement keyword,
10734 ;; which works even when used in an "invalid" context,
10735 ;; e.g. a macro argument.
10736 ((c-after-conditional)
10737 (c-backward-to-block-anchor lim)
10738 (c-add-stmt-syntax 'block-close nil t lim paren-state))
10740 ;; CASE 16A: closing a lambda defun or an in-expression
10741 ;; block? C.f. cases 4, 7B and 17E.
10742 ((setq placeholder (c-looking-at-inexpr-block
10743 (c-safe-position containing-sexp paren-state)
10744 nil))
10745 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
10746 'inline-close
10747 'block-close))
10748 (goto-char containing-sexp)
10749 (back-to-indentation)
10750 (if (= containing-sexp (point))
10751 (c-add-syntax tmpsymbol (point))
10752 (goto-char (cdr placeholder))
10753 (back-to-indentation)
10754 (c-add-stmt-syntax tmpsymbol nil t
10755 (c-most-enclosing-brace paren-state (point))
10756 paren-state)
10757 (if (/= (point) (cdr placeholder))
10758 (c-add-syntax (car placeholder)))))
10760 ;; CASE 16B: does this close an inline or a function in
10761 ;; a non-class declaration level block?
10762 ((save-excursion
10763 (and lim
10764 (progn
10765 (goto-char lim)
10766 (c-looking-at-decl-block
10767 (c-most-enclosing-brace paren-state lim)
10768 nil))
10769 (setq placeholder (point))))
10770 (c-backward-to-decl-anchor lim)
10771 (back-to-indentation)
10772 (if (save-excursion
10773 (goto-char placeholder)
10774 (looking-at c-other-decl-block-key))
10775 (c-add-syntax 'defun-close (point))
10776 (c-add-syntax 'inline-close (point))))
10778 ;; CASE 16F: Can be a defun-close of a function declared
10779 ;; in a statement block, e.g. in Pike or when using gcc
10780 ;; extensions, but watch out for macros followed by
10781 ;; blocks. Let it through to be handled below.
10782 ;; C.f. cases B.3 and 17G.
10783 ((save-excursion
10784 (and (not (c-at-statement-start-p))
10785 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
10786 (setq placeholder (point))
10787 (let ((c-recognize-typeless-decls nil))
10788 ;; Turn off recognition of constructs that
10789 ;; lacks a type in this case, since that's more
10790 ;; likely to be a macro followed by a block.
10791 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
10792 (back-to-indentation)
10793 (if (/= (point) containing-sexp)
10794 (goto-char placeholder))
10795 (c-add-stmt-syntax 'defun-close nil t lim paren-state))
10797 ;; CASE 16C: If there is an enclosing brace then this is
10798 ;; a block close since defun closes inside declaration
10799 ;; level blocks have been handled above.
10800 (lim
10801 ;; If the block is preceded by a case/switch label on
10802 ;; the same line, we anchor at the first preceding label
10803 ;; at boi. The default handling in c-add-stmt-syntax
10804 ;; really fixes it better, but we do like this to keep
10805 ;; the indentation compatible with version 5.28 and
10806 ;; earlier. C.f. case 17H.
10807 (while (and (/= (setq placeholder (point)) (c-point 'boi))
10808 (eq (c-beginning-of-statement-1 lim) 'label)))
10809 (goto-char placeholder)
10810 (if (looking-at c-label-kwds-regexp)
10811 (c-add-syntax 'block-close (point))
10812 (goto-char containing-sexp)
10813 ;; c-backward-to-block-anchor not necessary here; those
10814 ;; situations are handled in case 16E above.
10815 (c-add-stmt-syntax 'block-close nil t lim paren-state)))
10817 ;; CASE 16D: Only top level defun close left.
10819 (goto-char containing-sexp)
10820 (c-backward-to-decl-anchor lim)
10821 (c-add-stmt-syntax 'defun-close nil nil
10822 (c-most-enclosing-brace paren-state)
10823 paren-state))
10826 ;; CASE 19: line is an expression, not a statement, and is directly
10827 ;; contained by a template delimiter. Most likely, we are in a
10828 ;; template arglist within a statement. This case is based on CASE
10829 ;; 7. At some point in the future, we may wish to create more
10830 ;; syntactic symbols such as `template-intro',
10831 ;; `template-cont-nonempty', etc., and distinguish between them as we
10832 ;; do for `arglist-intro' etc. (2009-12-07).
10833 ((and c-recognize-<>-arglists
10834 (setq containing-< (c-up-list-backward indent-point containing-sexp))
10835 (eq (char-after containing-<) ?\<))
10836 (setq placeholder (c-point 'boi containing-<))
10837 (goto-char containing-sexp) ; Most nested Lbrace/Lparen (but not
10838 ; '<') before indent-point.
10839 (if (>= (point) placeholder)
10840 (progn
10841 (forward-char)
10842 (skip-chars-forward " \t"))
10843 (goto-char placeholder))
10844 (c-add-stmt-syntax 'template-args-cont (list containing-<) t
10845 (c-most-enclosing-brace c-state-cache (point))
10846 paren-state))
10848 ;; CASE 17: Statement or defun catchall.
10850 (goto-char indent-point)
10851 ;; Back up statements until we find one that starts at boi.
10852 (while (let* ((prev-point (point))
10853 (last-step-type (c-beginning-of-statement-1
10854 containing-sexp)))
10855 (if (= (point) prev-point)
10856 (progn
10857 (setq step-type (or step-type last-step-type))
10858 nil)
10859 (setq step-type last-step-type)
10860 (/= (point) (c-point 'boi)))))
10861 (cond
10863 ;; CASE 17B: continued statement
10864 ((and (eq step-type 'same)
10865 (/= (point) indent-point))
10866 (c-add-stmt-syntax 'statement-cont nil nil
10867 containing-sexp paren-state))
10869 ;; CASE 17A: After a case/default label?
10870 ((progn
10871 (while (and (eq step-type 'label)
10872 (not (looking-at c-label-kwds-regexp)))
10873 (setq step-type
10874 (c-beginning-of-statement-1 containing-sexp)))
10875 (eq step-type 'label))
10876 (c-add-stmt-syntax (if (eq char-after-ip ?{)
10877 'statement-case-open
10878 'statement-case-intro)
10879 nil t containing-sexp paren-state))
10881 ;; CASE 17D: any old statement
10882 ((progn
10883 (while (eq step-type 'label)
10884 (setq step-type
10885 (c-beginning-of-statement-1 containing-sexp)))
10886 (eq step-type 'previous))
10887 (c-add-stmt-syntax 'statement nil t
10888 containing-sexp paren-state)
10889 (if (eq char-after-ip ?{)
10890 (c-add-syntax 'block-open)))
10892 ;; CASE 17I: Inside a substatement block.
10893 ((progn
10894 ;; The following tests are all based on containing-sexp.
10895 (goto-char containing-sexp)
10896 ;; From here on we have the next containing sexp in lim.
10897 (setq lim (c-most-enclosing-brace paren-state containing-sexp))
10898 (c-after-conditional))
10899 (c-backward-to-block-anchor lim)
10900 (c-add-stmt-syntax 'statement-block-intro nil t
10901 lim paren-state)
10902 (if (eq char-after-ip ?{)
10903 (c-add-syntax 'block-open)))
10905 ;; CASE 17E: first statement in an in-expression block.
10906 ;; C.f. cases 4, 7B and 16A.
10907 ((setq placeholder (c-looking-at-inexpr-block
10908 (c-safe-position containing-sexp paren-state)
10909 nil))
10910 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
10911 'defun-block-intro
10912 'statement-block-intro))
10913 (back-to-indentation)
10914 (if (= containing-sexp (point))
10915 (c-add-syntax tmpsymbol (point))
10916 (goto-char (cdr placeholder))
10917 (back-to-indentation)
10918 (c-add-stmt-syntax tmpsymbol nil t
10919 (c-most-enclosing-brace c-state-cache (point))
10920 paren-state)
10921 (if (/= (point) (cdr placeholder))
10922 (c-add-syntax (car placeholder))))
10923 (if (eq char-after-ip ?{)
10924 (c-add-syntax 'block-open)))
10926 ;; CASE 17F: first statement in an inline, or first
10927 ;; statement in a top-level defun. we can tell this is it
10928 ;; if there are no enclosing braces that haven't been
10929 ;; narrowed out by a class (i.e. don't use bod here).
10930 ((save-excursion
10931 (or (not (setq placeholder (c-most-enclosing-brace
10932 paren-state)))
10933 (and (progn
10934 (goto-char placeholder)
10935 (eq (char-after) ?{))
10936 (c-looking-at-decl-block (c-most-enclosing-brace
10937 paren-state (point))
10938 nil))))
10939 (c-backward-to-decl-anchor lim)
10940 (back-to-indentation)
10941 (c-add-syntax 'defun-block-intro (point)))
10943 ;; CASE 17G: First statement in a function declared inside
10944 ;; a normal block. This can occur in Pike and with
10945 ;; e.g. the gcc extensions, but watch out for macros
10946 ;; followed by blocks. C.f. cases B.3 and 16F.
10947 ((save-excursion
10948 (and (not (c-at-statement-start-p))
10949 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
10950 (setq placeholder (point))
10951 (let ((c-recognize-typeless-decls nil))
10952 ;; Turn off recognition of constructs that lacks
10953 ;; a type in this case, since that's more likely
10954 ;; to be a macro followed by a block.
10955 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
10956 (back-to-indentation)
10957 (if (/= (point) containing-sexp)
10958 (goto-char placeholder))
10959 (c-add-stmt-syntax 'defun-block-intro nil t
10960 lim paren-state))
10962 ;; CASE 17H: First statement in a block.
10964 ;; If the block is preceded by a case/switch label on the
10965 ;; same line, we anchor at the first preceding label at
10966 ;; boi. The default handling in c-add-stmt-syntax is
10967 ;; really fixes it better, but we do like this to keep the
10968 ;; indentation compatible with version 5.28 and earlier.
10969 ;; C.f. case 16C.
10970 (while (and (/= (setq placeholder (point)) (c-point 'boi))
10971 (eq (c-beginning-of-statement-1 lim) 'label)))
10972 (goto-char placeholder)
10973 (if (looking-at c-label-kwds-regexp)
10974 (c-add-syntax 'statement-block-intro (point))
10975 (goto-char containing-sexp)
10976 ;; c-backward-to-block-anchor not necessary here; those
10977 ;; situations are handled in case 17I above.
10978 (c-add-stmt-syntax 'statement-block-intro nil t
10979 lim paren-state))
10980 (if (eq char-after-ip ?{)
10981 (c-add-syntax 'block-open)))
10985 ;; now we need to look at any modifiers
10986 (goto-char indent-point)
10987 (skip-chars-forward " \t")
10989 ;; are we looking at a comment only line?
10990 (when (and (looking-at c-comment-start-regexp)
10991 (/= (c-forward-token-2 0 nil (c-point 'eol)) 0))
10992 (c-append-syntax 'comment-intro))
10994 ;; we might want to give additional offset to friends (in C++).
10995 (when (and c-opt-friend-key
10996 (looking-at c-opt-friend-key))
10997 (c-append-syntax 'friend))
10999 ;; Set syntactic-relpos.
11000 (let ((p c-syntactic-context))
11001 (while (and p
11002 (if (integerp (c-langelem-pos (car p)))
11003 (progn
11004 (setq syntactic-relpos (c-langelem-pos (car p)))
11005 nil)
11007 (setq p (cdr p))))
11009 ;; Start of or a continuation of a preprocessor directive?
11010 (if (and macro-start
11011 (eq macro-start (c-point 'boi))
11012 (not (and (c-major-mode-is 'pike-mode)
11013 (eq (char-after (1+ macro-start)) ?\"))))
11014 (c-append-syntax 'cpp-macro)
11015 (when (and c-syntactic-indentation-in-macros macro-start)
11016 (if in-macro-expr
11017 (when (or
11018 (< syntactic-relpos macro-start)
11019 (not (or
11020 (assq 'arglist-intro c-syntactic-context)
11021 (assq 'arglist-cont c-syntactic-context)
11022 (assq 'arglist-cont-nonempty c-syntactic-context)
11023 (assq 'arglist-close c-syntactic-context))))
11024 ;; If inside a cpp expression, i.e. anywhere in a
11025 ;; cpp directive except a #define body, we only let
11026 ;; through the syntactic analysis that is internal
11027 ;; in the expression. That means the arglist
11028 ;; elements, if they are anchored inside the cpp
11029 ;; expression.
11030 (setq c-syntactic-context nil)
11031 (c-add-syntax 'cpp-macro-cont macro-start))
11032 (when (and (eq macro-start syntactic-relpos)
11033 (not (assq 'cpp-define-intro c-syntactic-context))
11034 (save-excursion
11035 (goto-char macro-start)
11036 (or (not (c-forward-to-cpp-define-body))
11037 (<= (point) (c-point 'boi indent-point)))))
11038 ;; Inside a #define body and the syntactic analysis is
11039 ;; anchored on the start of the #define. In this case
11040 ;; we add cpp-define-intro to get the extra
11041 ;; indentation of the #define body.
11042 (c-add-syntax 'cpp-define-intro)))))
11044 ;; return the syntax
11045 c-syntactic-context)))
11048 ;; Indentation calculation.
11050 (defun c-evaluate-offset (offset langelem symbol)
11051 ;; offset can be a number, a function, a variable, a list, or one of
11052 ;; the symbols + or -
11054 ;; This function might do hidden buffer changes.
11055 (let ((res
11056 (cond
11057 ((numberp offset) offset)
11058 ((vectorp offset) offset)
11059 ((null offset) nil)
11061 ((eq offset '+) c-basic-offset)
11062 ((eq offset '-) (- c-basic-offset))
11063 ((eq offset '++) (* 2 c-basic-offset))
11064 ((eq offset '--) (* 2 (- c-basic-offset)))
11065 ((eq offset '*) (/ c-basic-offset 2))
11066 ((eq offset '/) (/ (- c-basic-offset) 2))
11068 ((functionp offset)
11069 (c-evaluate-offset
11070 (funcall offset
11071 (cons (c-langelem-sym langelem)
11072 (c-langelem-pos langelem)))
11073 langelem symbol))
11075 ((listp offset)
11076 (cond
11077 ((eq (car offset) 'quote)
11078 (c-benign-error "The offset %S for %s was mistakenly quoted"
11079 offset symbol)
11080 nil)
11082 ((memq (car offset) '(min max))
11083 (let (res val (method (car offset)))
11084 (setq offset (cdr offset))
11085 (while offset
11086 (setq val (c-evaluate-offset (car offset) langelem symbol))
11087 (cond
11088 ((not val))
11089 ((not res)
11090 (setq res val))
11091 ((integerp val)
11092 (if (vectorp res)
11093 (c-benign-error "\
11094 Error evaluating offset %S for %s: \
11095 Cannot combine absolute offset %S with relative %S in `%s' method"
11096 (car offset) symbol res val method)
11097 (setq res (funcall method res val))))
11099 (if (integerp res)
11100 (c-benign-error "\
11101 Error evaluating offset %S for %s: \
11102 Cannot combine relative offset %S with absolute %S in `%s' method"
11103 (car offset) symbol res val method)
11104 (setq res (vector (funcall method (aref res 0)
11105 (aref val 0)))))))
11106 (setq offset (cdr offset)))
11107 res))
11109 ((eq (car offset) 'add)
11110 (let (res val)
11111 (setq offset (cdr offset))
11112 (while offset
11113 (setq val (c-evaluate-offset (car offset) langelem symbol))
11114 (cond
11115 ((not val))
11116 ((not res)
11117 (setq res val))
11118 ((integerp val)
11119 (if (vectorp res)
11120 (setq res (vector (+ (aref res 0) val)))
11121 (setq res (+ res val))))
11123 (if (vectorp res)
11124 (c-benign-error "\
11125 Error evaluating offset %S for %s: \
11126 Cannot combine absolute offsets %S and %S in `add' method"
11127 (car offset) symbol res val)
11128 (setq res val)))) ; Override.
11129 (setq offset (cdr offset)))
11130 res))
11133 (let (res)
11134 (when (eq (car offset) 'first)
11135 (setq offset (cdr offset)))
11136 (while (and (not res) offset)
11137 (setq res (c-evaluate-offset (car offset) langelem symbol)
11138 offset (cdr offset)))
11139 res))))
11141 ((and (symbolp offset) (boundp offset))
11142 (symbol-value offset))
11145 (c-benign-error "Unknown offset format %S for %s" offset symbol)
11146 nil))))
11148 (if (or (null res) (integerp res)
11149 (and (vectorp res) (= (length res) 1) (integerp (aref res 0))))
11151 (c-benign-error "Error evaluating offset %S for %s: Got invalid value %S"
11152 offset symbol res)
11153 nil)))
11155 (defun c-calc-offset (langelem)
11156 ;; Get offset from LANGELEM which is a list beginning with the
11157 ;; syntactic symbol and followed by any analysis data it provides.
11158 ;; That data may be zero or more elements, but if at least one is
11159 ;; given then the first is the anchor position (or nil). The symbol
11160 ;; is matched against `c-offsets-alist' and the offset calculated
11161 ;; from that is returned.
11163 ;; This function might do hidden buffer changes.
11164 (let* ((symbol (c-langelem-sym langelem))
11165 (match (assq symbol c-offsets-alist))
11166 (offset (cdr-safe match)))
11167 (if match
11168 (setq offset (c-evaluate-offset offset langelem symbol))
11169 (if c-strict-syntax-p
11170 (c-benign-error "No offset found for syntactic symbol %s" symbol))
11171 (setq offset 0))
11172 (if (vectorp offset)
11173 offset
11174 (or (and (numberp offset) offset)
11175 (and (symbolp offset) (symbol-value offset))
11179 (defun c-get-offset (langelem)
11180 ;; This is a compatibility wrapper for `c-calc-offset' in case
11181 ;; someone is calling it directly. It takes an old style syntactic
11182 ;; element on the form (SYMBOL . ANCHOR-POS) and converts it to the
11183 ;; new list form.
11185 ;; This function might do hidden buffer changes.
11186 (if (c-langelem-pos langelem)
11187 (c-calc-offset (list (c-langelem-sym langelem)
11188 (c-langelem-pos langelem)))
11189 (c-calc-offset langelem)))
11191 (defun c-get-syntactic-indentation (langelems)
11192 ;; Calculate the syntactic indentation from a syntactic description
11193 ;; as returned by `c-guess-syntax'.
11195 ;; Note that topmost-intro always has an anchor position at bol, for
11196 ;; historical reasons. It's often used together with other symbols
11197 ;; that has more sane positions. Since we always use the first
11198 ;; found anchor position, we rely on that these other symbols always
11199 ;; precede topmost-intro in the LANGELEMS list.
11201 ;; This function might do hidden buffer changes.
11202 (let ((indent 0) anchor)
11204 (while langelems
11205 (let* ((c-syntactic-element (car langelems))
11206 (res (c-calc-offset c-syntactic-element)))
11208 (if (vectorp res)
11209 ;; Got an absolute column that overrides any indentation
11210 ;; we've collected so far, but not the relative
11211 ;; indentation we might get for the nested structures
11212 ;; further down the langelems list.
11213 (setq indent (elt res 0)
11214 anchor (point-min)) ; A position at column 0.
11216 ;; Got a relative change of the current calculated
11217 ;; indentation.
11218 (setq indent (+ indent res))
11220 ;; Use the anchor position from the first syntactic
11221 ;; element with one.
11222 (unless anchor
11223 (setq anchor (c-langelem-pos (car langelems)))))
11225 (setq langelems (cdr langelems))))
11227 (if anchor
11228 (+ indent (save-excursion
11229 (goto-char anchor)
11230 (current-column)))
11231 indent)))
11234 (cc-provide 'cc-engine)
11236 ;; Local Variables:
11237 ;; indent-tabs-mode: t
11238 ;; tab-width: 8
11239 ;; End:
11240 ;;; cc-engine.el ends here