* eval.c (Fcondition_case): Document `debug' symbol in error handler.
[bpt/emacs.git] / lisp / progmodes / cc-engine.el
Content-type: text/html HCoop Git - bpt/emacs.git/blame - lisp/progmodes/cc-engine.el


500 - Internal Server Error

Malformed UTF-8 character (fatal) at (eval 8) line 1, <$fd> line 17042.
CommitLineData
785eecbb
RS
1;;; cc-engine.el --- core syntax guessing engine for CC mode
2
73b0cd50 3;; Copyright (C) 1985, 1987, 1992-2011 Free Software Foundation, Inc.
785eecbb 4
e309f66c
AM
5;; Authors: 2001- Alan Mackenzie
6;; 1998- Martin Stjernholm
d9e94c22 7;; 1992-1999 Barry A. Warsaw
5858f68c
GM
8;; 1987 Dave Detlefs
9;; 1987 Stewart Clamen
785eecbb 10;; 1985 Richard M. Stallman
0ec8351b 11;; Maintainer: bug-cc-mode@gnu.org
785eecbb 12;; Created: 22-Apr-1997 (split from cc-mode.el)
bd78fa1d
CY
13;; Keywords: c languages
14;; Package: cc-mode
785eecbb
RS
15
16;; This file is part of GNU Emacs.
17
b1fc2b50 18;; GNU Emacs is free software: you can redistribute it and/or modify
785eecbb 19;; it under the terms of the GNU General Public License as published by
b1fc2b50
GM
20;; the Free Software Foundation, either version 3 of the License, or
21;; (at your option) any later version.
785eecbb
RS
22
23;; GNU Emacs is distributed in the hope that it will be useful,
24;; but WITHOUT ANY WARRANTY; without even the implied warranty of
25;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26;; GNU General Public License for more details.
27
28;; You should have received a copy of the GNU General Public License
b1fc2b50 29;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
785eecbb 30
3afbc435
PJ
31;;; Commentary:
32
a66cd3ee
MS
33;; The functions which have docstring documentation can be considered
34;; part of an API which other packages can use in CC Mode buffers.
35;; Otoh, undocumented functions and functions with the documentation
36;; in comments are considered purely internal and can change semantics
37;; or even disappear in the future.
38;;
39;; (This policy applies to CC Mode as a whole, not just this file. It
40;; probably also applies to many other Emacs packages, but here it's
41;; clearly spelled out.)
42
d9e94c22
MS
43;; Hidden buffer changes
44;;
45;; Various functions in CC Mode use text properties for caching and
46;; syntactic markup purposes, and those of them that might modify such
0386b551
AM
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.
d9e94c22 51;;
0386b551
AM
52;; Interactive functions are assumed to not do hidden buffer changes,
53;; except in the specific parts of them that do real changes.
d9e94c22 54;;
0386b551
AM
55;; Lineup functions are assumed to do hidden buffer changes. They
56;; must not do real changes, though.
d9e94c22 57;;
0386b551
AM
58;; All other functions that do hidden buffer changes have that noted
59;; in their doc string or comment.
60;;
61;; The intention with this system is to avoid wrapping every leaf
62;; function that do hidden buffer changes inside
63;; `c-save-buffer-state'. It should be used as near the top of the
64;; interactive functions as possible.
65;;
66;; Functions called during font locking are allowed to do hidden
67;; buffer changes since the font-lock package run them in a context
68;; similar to `c-save-buffer-state' (in fact, that function is heavily
69;; inspired by `save-buffer-state' in the font-lock package).
d9e94c22
MS
70
71;; Use of text properties
72;;
73;; CC Mode uses several text properties internally to mark up various
74;; positions, e.g. to improve speed and to eliminate glitches in
75;; interactive refontification.
76;;
7bfc3fdb
MS
77;; Note: This doc is for internal use only. Other packages should not
78;; assume that these text properties are used as described here.
79;;
0ec1d2c5
AM
80;; 'category
81;; Used for "indirection". With its help, some other property can
82;; be cheaply and easily switched on or off everywhere it occurs.
83;;
d9e94c22 84;; 'syntax-table
c8018ede
AM
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.
d9e94c22
MS
88;;
89;; This property is used on single characters and is therefore
90;; always treated as front and rear nonsticky (or start and end open
91;; in XEmacs vocabulary). It's therefore installed on
92;; `text-property-default-nonsticky' if that variable exists (Emacs
93;; >= 21).
94;;
95;; 'c-is-sws and 'c-in-sws
96;; Used by `c-forward-syntactic-ws' and `c-backward-syntactic-ws' to
97;; speed them up. See the comment blurb before `c-put-is-sws'
98;; below for further details.
99;;
100;; 'c-type
101;; This property is used on single characters to mark positions with
0386b551
AM
102;; special syntactic relevance of various sorts. Its primary use is
103;; to avoid glitches when multiline constructs are refontified
d9e94c22
MS
104;; interactively (on font lock decoration level 3). It's cleared in
105;; a region before it's fontified and is then put on relevant chars
106;; in that region as they are encountered during the fontification.
107;; The value specifies the kind of position:
108;;
109;; 'c-decl-arg-start
110;; Put on the last char of the token preceding each declaration
111;; inside a declaration style arglist (typically in a function
112;; prototype).
113;;
114;; 'c-decl-end
115;; Put on the last char of the token preceding a declaration.
116;; This is used in cases where declaration boundaries can't be
117;; recognized simply by looking for a token like ";" or "}".
118;; `c-type-decl-end-used' must be set if this is used (see also
119;; `c-find-decl-spots').
120;;
121;; 'c-<>-arg-sep
122;; Put on the commas that separate arguments in angle bracket
123;; arglists like C++ template arglists.
124;;
125;; 'c-decl-id-start and 'c-decl-type-start
126;; Put on the last char of the token preceding each declarator
127;; in the declarator list of a declaration. They are also used
128;; between the identifiers cases like enum declarations.
129;; 'c-decl-type-start is used when the declarators are types,
130;; 'c-decl-id-start otherwise.
131;;
132;; 'c-awk-NL-prop
133;; Used in AWK mode to mark the various kinds of newlines. See
134;; cc-awk.el.
135
3afbc435
PJ
136;;; Code:
137
0ec8351b 138(eval-when-compile
51f606de 139 (let ((load-path
130c507e
GM
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)
51f606de 143 load-path)))
d9e94c22 144 (load "cc-bytecomp" nil t)))
130c507e
GM
145
146(cc-require 'cc-defs)
d9e94c22 147(cc-require-when-compile 'cc-langs)
130c507e 148(cc-require 'cc-vars)
d9e94c22 149
130c507e
GM
150;; Silence the compiler.
151(cc-bytecomp-defun buffer-syntactic-context) ; XEmacs
0ec8351b 152
51f606de 153\f
d9e94c22
MS
154;; Make declarations for all the `c-lang-defvar' variables in cc-langs.
155
156(defmacro c-declare-lang-variables ()
157 `(progn
485fe977
RS
158 ,@(apply 'nconc
159 (mapcar (lambda (init)
160 `(,(if (elt init 2)
161 `(defvar ,(car init) nil ,(elt init 2))
162 `(defvar ,(car init) nil))
163 (make-variable-buffer-local ',(car init))))
164 (cdr c-lang-variable-inits)))))
d9e94c22
MS
165(c-declare-lang-variables)
166
167\f
168;;; Internal state variables.
169
170;; Internal state of hungry delete key feature
171(defvar c-hungry-delete-key nil)
172(make-variable-buffer-local 'c-hungry-delete-key)
173
0386b551
AM
174;; The electric flag (toggled by `c-toggle-electric-state').
175;; If t, electric actions (like automatic reindentation, and (if
176;; c-auto-newline is also set) auto newlining) will happen when an electric
177;; key like `{' is pressed (or an electric keyword like `else').
178(defvar c-electric-flag t)
179(make-variable-buffer-local 'c-electric-flag)
180
d9e94c22
MS
181;; Internal state of auto newline feature.
182(defvar c-auto-newline nil)
183(make-variable-buffer-local 'c-auto-newline)
184
0386b551 185;; Included in the mode line to indicate the active submodes.
cb694ab7
AM
186;; (defvar c-submode-indicators nil)
187;; (make-variable-buffer-local 'c-submode-indicators)
d9e94c22 188
a66cd3ee
MS
189(defun c-calculate-state (arg prevstate)
190 ;; Calculate the new state of PREVSTATE, t or nil, based on arg. If
191 ;; arg is nil or zero, toggle the state. If arg is negative, turn
192 ;; the state off, and if arg is positive, turn the state on
193 (if (or (not arg)
194 (zerop (setq arg (prefix-numeric-value arg))))
195 (not prevstate)
196 (> arg 0)))
197
d9e94c22 198;; Dynamically bound cache for `c-in-literal'.
130c507e 199(defvar c-in-literal-cache t)
d9e94c22 200
d9e94c22 201\f
037558bf
MS
202;; Basic handling of preprocessor directives.
203
204;; This is a dynamically bound cache used together with
205;; `c-query-macro-start' and `c-query-and-set-macro-start'. It only
206;; works as long as point doesn't cross a macro boundary.
207(defvar c-macro-start 'unknown)
208
209(defsubst c-query-and-set-macro-start ()
037558bf
MS
210 (if (symbolp c-macro-start)
211 (setq c-macro-start (save-excursion
0386b551
AM
212 (c-save-buffer-state ()
213 (and (c-beginning-of-macro)
214 (point)))))
037558bf
MS
215 c-macro-start))
216
217(defsubst c-query-macro-start ()
037558bf
MS
218 (if (symbolp c-macro-start)
219 (save-excursion
0386b551
AM
220 (c-save-buffer-state ()
221 (and (c-beginning-of-macro)
222 (point))))
037558bf
MS
223 c-macro-start))
224
225(defun c-beginning-of-macro (&optional lim)
226 "Go to the beginning of a preprocessor directive.
227Leave point at the beginning of the directive and return t if in one,
228otherwise return nil and leave point unchanged.
229
0386b551
AM
230Note that this function might do hidden buffer changes. See the
231comment at the start of cc-engine.el for more info."
037558bf
MS
232 (when c-opt-cpp-prefix
233 (let ((here (point)))
234 (save-restriction
235 (if lim (narrow-to-region lim (point-max)))
236 (beginning-of-line)
237 (while (eq (char-before (1- (point))) ?\\)
238 (forward-line -1))
239 (back-to-indentation)
240 (if (and (<= (point) here)
241 (looking-at c-opt-cpp-start))
242 t
243 (goto-char here)
244 nil)))))
245
246(defun c-end-of-macro ()
247 "Go to the end of a preprocessor directive.
0386b551
AM
248More accurately, move the point to the end of the closest following
249line that doesn't end with a line continuation backslash - no check is
250done that the point is inside a cpp directive to begin with.
037558bf 251
0386b551
AM
252Note that this function might do hidden buffer changes. See the
253comment at the start of cc-engine.el for more info."
037558bf
MS
254 (while (progn
255 (end-of-line)
256 (when (and (eq (char-before) ?\\)
257 (not (eobp)))
258 (forward-char)
259 t))))
260
0ec1d2c5
AM
261(defun c-syntactic-end-of-macro ()
262 ;; Go to the end of a CPP directive, or a "safe" pos just before.
263 ;;
264 ;; This is normally the end of the next non-escaped line. A "safe"
265 ;; position is one not within a string or comment. (The EOL on a line
266 ;; comment is NOT "safe").
267 ;;
268 ;; This function must only be called from the beginning of a CPP construct.
269 ;;
270 ;; Note that this function might do hidden buffer changes. See the comment
271 ;; at the start of cc-engine.el for more info.
272 (let* ((here (point))
273 (there (progn (c-end-of-macro) (point)))
274 (s (parse-partial-sexp here there)))
275 (while (and (or (nth 3 s) ; in a string
276 (nth 4 s)) ; in a comment (maybe at end of line comment)
277 (> there here)) ; No infinite loops, please.
278 (setq there (1- (nth 8 s)))
279 (setq s (parse-partial-sexp here there)))
280 (point)))
281
51c9af45
AM
282(defun c-forward-over-cpp-define-id ()
283 ;; Assuming point is at the "#" that introduces a preprocessor
284 ;; directive, it's moved forward to the end of the identifier which is
285 ;; "#define"d (or whatever c-opt-cpp-macro-define specifies). Non-nil
286 ;; is returned in this case, in all other cases nil is returned and
287 ;; point isn't moved.
288 ;;
289 ;; This function might do hidden buffer changes.
290 (when (and c-opt-cpp-macro-define-id
291 (looking-at c-opt-cpp-macro-define-id))
292 (goto-char (match-end 0))))
293
037558bf
MS
294(defun c-forward-to-cpp-define-body ()
295 ;; Assuming point is at the "#" that introduces a preprocessor
296 ;; directive, it's moved forward to the start of the definition body
0386b551
AM
297 ;; if it's a "#define" (or whatever c-opt-cpp-macro-define
298 ;; specifies). Non-nil is returned in this case, in all other cases
299 ;; nil is returned and point isn't moved.
300 ;;
301 ;; This function might do hidden buffer changes.
302 (when (and c-opt-cpp-macro-define-start
303 (looking-at c-opt-cpp-macro-define-start)
037558bf
MS
304 (not (= (match-end 0) (c-point 'eol))))
305 (goto-char (match-end 0))))
306
307\f
d9e94c22
MS
308;;; Basic utility functions.
309
0386b551 310(defun c-syntactic-content (from to paren-level)
d9e94c22
MS
311 ;; Return the given region as a string where all syntactic
312 ;; whitespace is removed or, where necessary, replaced with a single
0386b551
AM
313 ;; space. If PAREN-LEVEL is given then all parens in the region are
314 ;; collapsed to "()", "[]" etc.
315 ;;
316 ;; This function might do hidden buffer changes.
317
d9e94c22 318 (save-excursion
0386b551
AM
319 (save-restriction
320 (narrow-to-region from to)
321 (goto-char from)
322 (let* ((parts (list nil)) (tail parts) pos in-paren)
323
324 (while (re-search-forward c-syntactic-ws-start to t)
325 (goto-char (setq pos (match-beginning 0)))
326 (c-forward-syntactic-ws)
327 (if (= (point) pos)
328 (forward-char)
329
330 (when paren-level
331 (save-excursion
332 (setq in-paren (= (car (parse-partial-sexp from pos 1)) 1)
333 pos (point))))
334
335 (if (and (> pos from)
336 (< (point) to)
337 (looking-at "\\w\\|\\s_")
338 (save-excursion
339 (goto-char (1- pos))
340 (looking-at "\\w\\|\\s_")))
341 (progn
342 (setcdr tail (list (buffer-substring-no-properties from pos)
343 " "))
344 (setq tail (cddr tail)))
345 (setcdr tail (list (buffer-substring-no-properties from pos)))
346 (setq tail (cdr tail)))
347
348 (when in-paren
349 (when (= (car (parse-partial-sexp pos to -1)) -1)
350 (setcdr tail (list (buffer-substring-no-properties
351 (1- (point)) (point))))
352 (setq tail (cdr tail))))
353
354 (setq from (point))))
355
356 (setcdr tail (list (buffer-substring-no-properties from to)))
357 (apply 'concat (cdr parts))))))
358
359(defun c-shift-line-indentation (shift-amt)
360 ;; Shift the indentation of the current line with the specified
361 ;; amount (positive inwards). The buffer is modified only if
362 ;; SHIFT-AMT isn't equal to zero.
363 (let ((pos (- (point-max) (point)))
364 (c-macro-start c-macro-start)
365 tmp-char-inserted)
366 (if (zerop shift-amt)
367 nil
368 ;; If we're on an empty line inside a macro, we take the point
369 ;; to be at the current indentation and shift it to the
370 ;; appropriate column. This way we don't treat the extra
371 ;; whitespace out to the line continuation as indentation.
372 (when (and (c-query-and-set-macro-start)
373 (looking-at "[ \t]*\\\\$")
374 (save-excursion
375 (skip-chars-backward " \t")
376 (bolp)))
377 (insert ?x)
378 (backward-char)
379 (setq tmp-char-inserted t))
380 (unwind-protect
381 (let ((col (current-indentation)))
382 (delete-region (c-point 'bol) (c-point 'boi))
383 (beginning-of-line)
384 (indent-to (+ col shift-amt)))
385 (when tmp-char-inserted
386 (delete-char 1))))
387 ;; If initial point was within line's indentation and we're not on
388 ;; a line with a line continuation in a macro, position after the
389 ;; indentation. Else stay at same point in text.
390 (if (and (< (point) (c-point 'boi))
391 (not tmp-char-inserted))
392 (back-to-indentation)
393 (if (> (- (point-max) pos) (point))
394 (goto-char (- (point-max) pos))))))
d9e94c22
MS
395
396(defsubst c-keyword-sym (keyword)
397 ;; Return non-nil if the string KEYWORD is a known keyword. More
398 ;; precisely, the value is the symbol for the keyword in
399 ;; `c-keywords-obarray'.
400 (intern-soft keyword c-keywords-obarray))
401
402(defsubst c-keyword-member (keyword-sym lang-constant)
403 ;; Return non-nil if the symbol KEYWORD-SYM, as returned by
404 ;; `c-keyword-sym', is a member of LANG-CONSTANT, which is the name
405 ;; of a language constant that ends with "-kwds". If KEYWORD-SYM is
406 ;; nil then the result is nil.
407 (get keyword-sym lang-constant))
408
409;; String syntax chars, suitable for skip-syntax-(forward|backward).
410(defconst c-string-syntax (if (memq 'gen-string-delim c-emacs-features)
411 "\"|"
412 "\""))
413
0386b551 414;; Regexp matching string limit syntax.
d9e94c22
MS
415(defconst c-string-limit-regexp (if (memq 'gen-string-delim c-emacs-features)
416 "\\s\"\\|\\s|"
417 "\\s\""))
418
0386b551
AM
419;; Regexp matching WS followed by string limit syntax.
420(defconst c-ws*-string-limit-regexp
421 (concat "[ \t]*\\(" c-string-limit-regexp "\\)"))
422
d9e94c22
MS
423;; Holds formatted error strings for the few cases where parse errors
424;; are reported.
a66cd3ee 425(defvar c-parsing-error nil)
d9e94c22
MS
426(make-variable-buffer-local 'c-parsing-error)
427
428(defun c-echo-parsing-error (&optional quiet)
d9e94c22
MS
429 (when (and c-report-syntactic-errors c-parsing-error (not quiet))
430 (c-benign-error "%s" c-parsing-error))
431 c-parsing-error)
432
433;; Faces given to comments and string literals. This is used in some
434;; situations to speed up recognition; it isn't mandatory that font
435;; locking is in use. This variable is extended with the face in
436;; `c-doc-face-name' when fontification is activated in cc-fonts.el.
1e330469 437(defvar c-literal-faces
0386b551
AM
438 (append '(font-lock-comment-face font-lock-string-face)
439 (when (facep 'font-lock-comment-delimiter-face)
440 ;; New in Emacs 22.
441 '(font-lock-comment-delimiter-face))))
442
443(defsubst c-put-c-type-property (pos value)
444 ;; Put a c-type property with the given value at POS.
445 (c-put-char-property pos 'c-type value))
446
447(defun c-clear-c-type-property (from to value)
5a89f0a7 448 ;; Remove all occurrences of the c-type property that has the given
0386b551
AM
449 ;; value in the region between FROM and TO. VALUE is assumed to not
450 ;; be nil.
451 ;;
452 ;; Note: This assumes that c-type is put on single chars only; it's
453 ;; very inefficient if matching properties cover large regions.
454 (save-excursion
455 (goto-char from)
456 (while (progn
457 (when (eq (get-text-property (point) 'c-type) value)
458 (c-clear-char-property (point) 'c-type))
459 (goto-char (next-single-property-change (point) 'c-type nil to))
460 (< (point) to)))))
037558bf 461
d9e94c22
MS
462\f
463;; Some debug tools to visualize various special positions. This
464;; debug code isn't as portable as the rest of CC Mode.
465
466(cc-bytecomp-defun overlays-in)
467(cc-bytecomp-defun overlay-get)
468(cc-bytecomp-defun overlay-start)
469(cc-bytecomp-defun overlay-end)
470(cc-bytecomp-defun delete-overlay)
471(cc-bytecomp-defun overlay-put)
472(cc-bytecomp-defun make-overlay)
473
474(defun c-debug-add-face (beg end face)
475 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay)
476 (while overlays
477 (setq overlay (car overlays)
478 overlays (cdr overlays))
479 (when (eq (overlay-get overlay 'face) face)
480 (setq beg (min beg (overlay-start overlay))
481 end (max end (overlay-end overlay)))
482 (delete-overlay overlay)))
483 (overlay-put (make-overlay beg end) 'face face)))
484
485(defun c-debug-remove-face (beg end face)
486 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay
487 (ol-beg beg) (ol-end end))
488 (while overlays
489 (setq overlay (car overlays)
490 overlays (cdr overlays))
491 (when (eq (overlay-get overlay 'face) face)
492 (setq ol-beg (min ol-beg (overlay-start overlay))
493 ol-end (max ol-end (overlay-end overlay)))
494 (delete-overlay overlay)))
495 (when (< ol-beg beg)
496 (overlay-put (make-overlay ol-beg beg) 'face face))
497 (when (> ol-end end)
498 (overlay-put (make-overlay end ol-end) 'face face))))
499
500\f
501;; `c-beginning-of-statement-1' and accompanying stuff.
130c507e 502
64001211
RS
503;; KLUDGE ALERT: c-maybe-labelp is used to pass information between
504;; c-crosses-statement-barrier-p and c-beginning-of-statement-1. A
505;; better way should be implemented, but this will at least shut up
506;; the byte compiler.
0386b551 507(defvar c-maybe-labelp)
64001211 508
d9e94c22
MS
509;; New awk-compatible version of c-beginning-of-statement-1, ACM 2002/6/22
510
a66cd3ee
MS
511;; Macros used internally in c-beginning-of-statement-1 for the
512;; automaton actions.
513(defmacro c-bos-push-state ()
514 '(setq stack (cons (cons state saved-pos)
515 stack)))
516(defmacro c-bos-pop-state (&optional do-if-done)
517 `(if (setq state (car (car stack))
518 saved-pos (cdr (car stack))
519 stack (cdr stack))
520 t
521 ,do-if-done
522 (throw 'loop nil)))
523(defmacro c-bos-pop-state-and-retry ()
524 '(throw 'loop (setq state (car (car stack))
525 saved-pos (cdr (car stack))
526 ;; Throw nil if stack is empty, else throw non-nil.
527 stack (cdr stack))))
528(defmacro c-bos-save-pos ()
529 '(setq saved-pos (vector pos tok ptok pptok)))
530(defmacro c-bos-restore-pos ()
531 '(unless (eq (elt saved-pos 0) start)
532 (setq pos (elt saved-pos 0)
533 tok (elt saved-pos 1)
534 ptok (elt saved-pos 2)
535 pptok (elt saved-pos 3))
536 (goto-char pos)
537 (setq sym nil)))
538(defmacro c-bos-save-error-info (missing got)
539 `(setq saved-pos (vector pos ,missing ,got)))
540(defmacro c-bos-report-error ()
541 '(unless noerror
542 (setq c-parsing-error
543 (format "No matching `%s' found for `%s' on line %d"
544 (elt saved-pos 1)
545 (elt saved-pos 2)
546 (1+ (count-lines (point-min)
547 (c-point 'bol (elt saved-pos 0))))))))
548
549(defun c-beginning-of-statement-1 (&optional lim ignore-labels
550 noerror comma-delim)
551 "Move to the start of the current statement or declaration, or to
552the previous one if already at the beginning of one. Only
553statements/declarations on the same level are considered, i.e. don't
554move into or out of sexps (not even normal expression parentheses).
555
5a89f0a7 556If point is already at the earliest statement within braces or parens,
a85fd6da
AM
557this function doesn't move back into any whitespace preceding it; it
558returns 'same in this case.
559
d9e94c22
MS
560Stop at statement continuation tokens like \"else\", \"catch\",
561\"finally\" and the \"while\" in \"do ... while\" if the start point
562is within the continuation. If starting at such a token, move to the
563corresponding statement start. If at the beginning of a statement,
564move to the closest containing statement if there is any. This might
565also stop at a continuation clause.
a66cd3ee 566
0386b551
AM
567Labels are treated as part of the following statements if
568IGNORE-LABELS is non-nil. (FIXME: Doesn't work if we stop at a known
cb694ab7
AM
569statement start keyword.) Otherwise, each label is treated as a
570separate statement.
a66cd3ee 571
cb694ab7
AM
572Macros are ignored \(i.e. skipped over) unless point is within one, in
573which case the content of the macro is treated as normal code. Aside
574from any normal statement starts found in it, stop at the first token
575of the content in the macro, i.e. the expression of an \"#if\" or the
576start of the definition in a \"#define\". Also stop at start of
577macros before leaving them.
a66cd3ee 578
a85fd6da 579Return:
d28e7f28 580'label if stopped at a label or \"case...:\" or \"default:\";
a85fd6da
AM
581'same if stopped at the beginning of the current statement;
582'up if stepped to a containing statement;
583'previous if stepped to a preceding statement;
584'beginning if stepped from a statement continuation clause to
585 its start clause; or
586'macro if stepped to a macro start.
587Note that 'same and not 'label is returned if stopped at the same
588label without crossing the colon character.
a66cd3ee
MS
589
590LIM may be given to limit the search. If the search hits the limit,
591point will be left at the closest following token, or at the start
592position if that is less ('same is returned in this case).
593
594NOERROR turns off error logging to `c-parsing-error'.
595
cb694ab7
AM
596Normally only ';' and virtual semicolons are considered to delimit
597statements, but if COMMA-DELIM is non-nil then ',' is treated
598as a delimiter too.
0386b551
AM
599
600Note that this function might do hidden buffer changes. See the
601comment at the start of cc-engine.el for more info."
a66cd3ee 602
d9e94c22
MS
603 ;; The bulk of this function is a pushdown automaton that looks at statement
604 ;; boundaries and the tokens (such as "while") in c-opt-block-stmt-key. Its
605 ;; purpose is to keep track of nested statements, ensuring that such
5a89f0a7 606 ;; statements are skipped over in their entirety (somewhat akin to what C-M-p
d9e94c22 607 ;; does with nested braces/brackets/parentheses).
a66cd3ee
MS
608 ;;
609 ;; Note: The position of a boundary is the following token.
610 ;;
d9e94c22
MS
611 ;; Beginning with the current token (the one following point), move back one
612 ;; sexp at a time (where a sexp is, more or less, either a token or the
613 ;; entire contents of a brace/bracket/paren pair). Each time a statement
614 ;; boundary is crossed or a "while"-like token is found, update the state of
615 ;; the PDA. Stop at the beginning of a statement when the stack (holding
616 ;; nested statement info) is empty and the position has been moved.
617 ;;
618 ;; The following variables constitute the PDA:
619 ;;
620 ;; sym: This is either the "while"-like token (e.g. 'for) we've just
621 ;; scanned back over, 'boundary if we've just gone back over a
622 ;; statement boundary, or nil otherwise.
623 ;; state: takes one of the values (nil else else-boundary while
624 ;; while-boundary catch catch-boundary).
625 ;; nil means "no "while"-like token yet scanned".
626 ;; 'else, for example, means "just gone back over an else".
627 ;; 'else-boundary means "just gone back over a statement boundary
628 ;; immediately after having gone back over an else".
629 ;; saved-pos: A vector of either saved positions (tok ptok pptok, etc.) or
630 ;; of error reporting information.
631 ;; stack: The stack onto which the PDA pushes its state. Each entry
632 ;; consists of a saved value of state and saved-pos. An entry is
633 ;; pushed when we move back over a "continuation" token (e.g. else)
634 ;; and popped when we encounter the corresponding opening token
635 ;; (e.g. if).
636 ;;
637 ;;
b414f371 638 ;; The following diagram briefly outlines the PDA.
a66cd3ee
MS
639 ;;
640 ;; Common state:
d9e94c22
MS
641 ;; "else": Push state, goto state `else'.
642 ;; "while": Push state, goto state `while'.
643 ;; "catch" or "finally": Push state, goto state `catch'.
644 ;; boundary: Pop state.
a66cd3ee
MS
645 ;; other: Do nothing special.
646 ;;
d9e94c22
MS
647 ;; State `else':
648 ;; boundary: Goto state `else-boundary'.
649 ;; other: Error, pop state, retry token.
650 ;;
651 ;; State `else-boundary':
652 ;; "if": Pop state.
653 ;; boundary: Error, pop state.
654 ;; other: See common state.
655 ;;
656 ;; State `while':
657 ;; boundary: Save position, goto state `while-boundary'.
658 ;; other: Pop state, retry token.
659 ;;
660 ;; State `while-boundary':
661 ;; "do": Pop state.
662 ;; boundary: Restore position if it's not at start, pop state. [*see below]
663 ;; other: See common state.
664 ;;
665 ;; State `catch':
666 ;; boundary: Goto state `catch-boundary'.
667 ;; other: Error, pop state, retry token.
668 ;;
669 ;; State `catch-boundary':
670 ;; "try": Pop state.
671 ;; "catch": Goto state `catch'.
672 ;; boundary: Error, pop state.
673 ;; other: See common state.
674 ;;
675 ;; [*] In the `while-boundary' state, we had pushed a 'while state, and were
676 ;; searching for a "do" which would have opened a do-while. If we didn't
677 ;; find it, we discard the analysis done since the "while", go back to this
678 ;; token in the buffer and restart the scanning there, this time WITHOUT
679 ;; pushing the 'while state onto the stack.
680 ;;
a66cd3ee
MS
681 ;; In addition to the above there is some special handling of labels
682 ;; and macros.
683
684 (let ((case-fold-search nil)
685 (start (point))
686 macro-start
687 (delims (if comma-delim '(?\; ?,) '(?\;)))
688 (c-stmt-delim-chars (if comma-delim
689 c-stmt-delim-chars-with-comma
690 c-stmt-delim-chars))
d28e7f28 691 c-in-literal-cache c-maybe-labelp after-case:-pos saved
0386b551
AM
692 ;; Current position.
693 pos
694 ;; Position of last stmt boundary character (e.g. ;).
695 boundary-pos
696 ;; The position of the last sexp or bound that follows the
697 ;; first found colon, i.e. the start of the nonlabel part of
698 ;; the statement. It's `start' if a colon is found just after
699 ;; the start.
700 after-labels-pos
701 ;; Like `after-labels-pos', but the first such position inside
702 ;; a label, i.e. the start of the last label before the start
703 ;; of the nonlabel part of the statement.
704 last-label-pos
705 ;; The last position where a label is possible provided the
706 ;; statement started there. It's nil as long as no invalid
707 ;; label content has been found (according to
708 ;; `c-nonlabel-token-key'. It's `start' if no valid label
709 ;; content was found in the label. Note that we might still
710 ;; regard it a label if it starts with `c-label-kwds'.
711 label-good-pos
b248a85d
AM
712 ;; Putative positions of the components of a bitfield declaration,
713 ;; e.g. "int foo : NUM_FOO_BITS ;"
714 bitfield-type-pos bitfield-id-pos bitfield-size-pos
0386b551
AM
715 ;; Symbol just scanned back over (e.g. 'while or 'boundary).
716 ;; See above.
717 sym
718 ;; Current state in the automaton. See above.
719 state
720 ;; Current saved positions. See above.
721 saved-pos
722 ;; Stack of conses (state . saved-pos).
723 stack
724 ;; Regexp which matches "for", "if", etc.
725 (cond-key (or c-opt-block-stmt-key
a66cd3ee 726 "\\<\\>")) ; Matches nothing.
0386b551
AM
727 ;; Return value.
728 (ret 'same)
729 ;; Positions of the last three sexps or bounds we've stopped at.
730 tok ptok pptok)
a66cd3ee
MS
731
732 (save-restriction
733 (if lim (narrow-to-region lim (point-max)))
734
735 (if (save-excursion
736 (and (c-beginning-of-macro)
737 (/= (point) start)))
738 (setq macro-start (point)))
739
d9e94c22 740 ;; Try to skip back over unary operator characters, to register
a66cd3ee
MS
741 ;; that we've moved.
742 (while (progn
743 (setq pos (point))
0386b551
AM
744 (c-backward-syntactic-ws)
745 ;; Protect post-++/-- operators just before a virtual semicolon.
746 (and (not (c-at-vsemi-p))
747 (/= (skip-chars-backward "-+!*&~@`#") 0))))
d9e94c22
MS
748
749 ;; Skip back over any semicolon here. If it was a bare semicolon, we're
0386b551 750 ;; done. Later on we ignore the boundaries for statements that don't
d9e94c22
MS
751 ;; contain any sexp. The only thing that is affected is that the error
752 ;; checking is a little less strict, and we really don't bother.
a66cd3ee
MS
753 (if (and (memq (char-before) delims)
754 (progn (forward-char -1)
755 (setq saved (point))
0386b551 756 (c-backward-syntactic-ws)
a66cd3ee
MS
757 (or (memq (char-before) delims)
758 (memq (char-before) '(?: nil))
d9e94c22 759 (eq (char-syntax (char-before)) ?\()
0386b551 760 (c-at-vsemi-p))))
a66cd3ee
MS
761 (setq ret 'previous
762 pos saved)
763
764 ;; Begin at start and not pos to detect macros if we stand
765 ;; directly after the #.
766 (goto-char start)
767 (if (looking-at "\\<\\|\\W")
768 ;; Record this as the first token if not starting inside it.
769 (setq tok start))
770
b248a85d
AM
771
772 ;; The following while loop goes back one sexp (balanced parens,
773 ;; etc. with contents, or symbol or suchlike) each iteration. This
774 ;; movement is accomplished with a call to c-backward-sexp approx 170
775 ;; lines below.
776 ;;
777 ;; The loop is exited only by throwing nil to the (catch 'loop ...):
778 ;; 1. On reaching the start of a macro;
779 ;; 2. On having passed a stmt boundary with the PDA stack empty;
780 ;; 3. On reaching the start of an Objective C method def;
781 ;; 4. From macro `c-bos-pop-state'; when the stack is empty;
782 ;; 5. From macro `c-bos-pop-state-and-retry' when the stack is empty.
a66cd3ee
MS
783 (while
784 (catch 'loop ;; Throw nil to break, non-nil to continue.
785 (cond
b248a85d 786 ;; Are we in a macro, just after the opening #?
a66cd3ee 787 ((save-excursion
0386b551 788 (and macro-start ; Always NIL for AWK.
a66cd3ee
MS
789 (progn (skip-chars-backward " \t")
790 (eq (char-before) ?#))
791 (progn (setq saved (1- (point)))
792 (beginning-of-line)
793 (not (eq (char-before (1- (point))) ?\\)))
d9e94c22 794 (looking-at c-opt-cpp-start)
a66cd3ee
MS
795 (progn (skip-chars-forward " \t")
796 (eq (point) saved))))
797 (goto-char saved)
798 (if (and (c-forward-to-cpp-define-body)
799 (progn (c-forward-syntactic-ws start)
800 (< (point) start)))
801 ;; Stop at the first token in the content of the macro.
802 (setq pos (point)
803 ignore-labels t) ; Avoid the label check on exit.
804 (setq pos saved
805 ret 'macro
806 ignore-labels t))
b248a85d 807 (throw 'loop nil)) ; 1. Start of macro.
a66cd3ee 808
d9e94c22
MS
809 ;; Do a round through the automaton if we've just passed a
810 ;; statement boundary or passed a "while"-like token.
a66cd3ee
MS
811 ((or sym
812 (and (looking-at cond-key)
813 (setq sym (intern (match-string 1)))))
814
815 (when (and (< pos start) (null stack))
b248a85d 816 (throw 'loop nil)) ; 2. Statement boundary.
a66cd3ee 817
d9e94c22
MS
818 ;; The PDA state handling.
819 ;;
037558bf 820 ;; Refer to the description of the PDA in the opening
d9e94c22
MS
821 ;; comments. In the following OR form, the first leaf
822 ;; attempts to handles one of the specific actions detailed
823 ;; (e.g., finding token "if" whilst in state `else-boundary').
824 ;; We drop through to the second leaf (which handles common
825 ;; state) if no specific handler is found in the first cond.
826 ;; If a parsing error is detected (e.g. an "else" with no
827 ;; preceding "if"), we throw to the enclosing catch.
828 ;;
829 ;; Note that the (eq state 'else) means
830 ;; "we've just passed an else", NOT "we're looking for an
831 ;; else".
a66cd3ee
MS
832 (or (cond
833 ((eq state 'else)
834 (if (eq sym 'boundary)
835 (setq state 'else-boundary)
836 (c-bos-report-error)
837 (c-bos-pop-state-and-retry)))
838
839 ((eq state 'else-boundary)
840 (cond ((eq sym 'if)
841 (c-bos-pop-state (setq ret 'beginning)))
842 ((eq sym 'boundary)
843 (c-bos-report-error)
844 (c-bos-pop-state))))
845
846 ((eq state 'while)
847 (if (and (eq sym 'boundary)
848 ;; Since this can cause backtracking we do a
849 ;; little more careful analysis to avoid it:
850 ;; If there's a label in front of the while
851 ;; it can't be part of a do-while.
852 (not after-labels-pos))
853 (progn (c-bos-save-pos)
854 (setq state 'while-boundary))
d9e94c22 855 (c-bos-pop-state-and-retry))) ; Can't be a do-while
a66cd3ee
MS
856
857 ((eq state 'while-boundary)
858 (cond ((eq sym 'do)
859 (c-bos-pop-state (setq ret 'beginning)))
d9e94c22
MS
860 ((eq sym 'boundary) ; isn't a do-while
861 (c-bos-restore-pos) ; the position of the while
862 (c-bos-pop-state)))) ; no longer searching for do.
a66cd3ee
MS
863
864 ((eq state 'catch)
865 (if (eq sym 'boundary)
866 (setq state 'catch-boundary)
867 (c-bos-report-error)
868 (c-bos-pop-state-and-retry)))
869
870 ((eq state 'catch-boundary)
871 (cond
872 ((eq sym 'try)
873 (c-bos-pop-state (setq ret 'beginning)))
874 ((eq sym 'catch)
875 (setq state 'catch))
876 ((eq sym 'boundary)
877 (c-bos-report-error)
878 (c-bos-pop-state)))))
879
d9e94c22
MS
880 ;; This is state common. We get here when the previous
881 ;; cond statement found no particular state handler.
a66cd3ee 882 (cond ((eq sym 'boundary)
d9e94c22
MS
883 ;; If we have a boundary at the start
884 ;; position we push a frame to go to the
885 ;; previous statement.
886 (if (>= pos start)
887 (c-bos-push-state)
888 (c-bos-pop-state)))
a66cd3ee
MS
889 ((eq sym 'else)
890 (c-bos-push-state)
891 (c-bos-save-error-info 'if 'else)
892 (setq state 'else))
893 ((eq sym 'while)
0386b551
AM
894 ;; Is this a real while, or a do-while?
895 ;; The next `when' triggers unless we are SURE that
896 ;; the `while' is not the tailend of a `do-while'.
a66cd3ee 897 (when (or (not pptok)
d9e94c22 898 (memq (char-after pptok) delims)
0386b551
AM
899 ;; The following kludge is to prevent
900 ;; infinite recursion when called from
901 ;; c-awk-after-if-for-while-condition-p,
902 ;; or the like.
903 (and (eq (point) start)
904 (c-vsemi-status-unknown-p))
905 (c-at-vsemi-p pptok))
a66cd3ee
MS
906 ;; Since this can cause backtracking we do a
907 ;; little more careful analysis to avoid it: If
0386b551
AM
908 ;; the while isn't followed by a (possibly
909 ;; virtual) semicolon it can't be a do-while.
a66cd3ee
MS
910 (c-bos-push-state)
911 (setq state 'while)))
912 ((memq sym '(catch finally))
913 (c-bos-push-state)
914 (c-bos-save-error-info 'try sym)
915 (setq state 'catch))))
916
917 (when c-maybe-labelp
918 ;; We're either past a statement boundary or at the
919 ;; start of a statement, so throw away any label data
920 ;; for the previous one.
921 (setq after-labels-pos nil
922 last-label-pos nil
923 c-maybe-labelp nil))))
924
d9e94c22
MS
925 ;; Step to the previous sexp, but not if we crossed a
926 ;; boundary, since that doesn't consume an sexp.
a66cd3ee
MS
927 (if (eq sym 'boundary)
928 (setq ret 'previous)
d9e94c22
MS
929
930 ;; HERE IS THE SINGLE PLACE INSIDE THE PDA LOOP WHERE WE MOVE
0386b551
AM
931 ;; BACKWARDS THROUGH THE SOURCE.
932
0386b551 933 (c-backward-syntactic-ws)
0386b551 934 (let ((before-sws-pos (point))
0386b551
AM
935 ;; The end position of the area to search for statement
936 ;; barriers in this round.
b248a85d 937 (maybe-after-boundary-pos pos))
0386b551 938
b248a85d
AM
939 ;; Go back over exactly one logical sexp, taking proper
940 ;; account of macros and escaped EOLs.
0386b551
AM
941 (while
942 (progn
943 (unless (c-safe (c-backward-sexp) t)
944 ;; Give up if we hit an unbalanced block. Since the
945 ;; stack won't be empty the code below will report a
946 ;; suitable error.
a66cd3ee 947 (throw 'loop nil))
b248a85d
AM
948 (cond
949 ;; Have we moved into a macro?
950 ((and (not macro-start)
951 (c-beginning-of-macro))
952 ;; Have we crossed a statement boundary? If not,
953 ;; keep going back until we find one or a "real" sexp.
954 (and
955 (save-excursion
956 (c-end-of-macro)
957 (not (c-crosses-statement-barrier-p
958 (point) maybe-after-boundary-pos)))
959 (setq maybe-after-boundary-pos (point))))
960 ;; Have we just gone back over an escaped NL? This
961 ;; doesn't count as a sexp.
962 ((looking-at "\\\\$")))))
963
964 ;; Have we crossed a statement boundary?
965 (setq boundary-pos
966 (cond
967 ;; Are we at a macro beginning?
968 ((and (not macro-start)
969 c-opt-cpp-prefix
970 (looking-at c-opt-cpp-prefix))
971 (save-excursion
972 (c-end-of-macro)
973 (c-crosses-statement-barrier-p
974 (point) maybe-after-boundary-pos)))
975 ;; Just gone back over a brace block?
976 ((and
977 (eq (char-after) ?{)
978 (not (c-looking-at-inexpr-block lim nil t)))
979 (save-excursion
980 (c-forward-sexp) (point)))
981 ;; Just gone back over some paren block?
982 ((looking-at "\\s\(")
983 (save-excursion
984 (goto-char (1+ (c-down-list-backward
985 before-sws-pos)))
986 (c-crosses-statement-barrier-p
987 (point) maybe-after-boundary-pos)))
988 ;; Just gone back over an ordinary symbol of some sort?
989 (t (c-crosses-statement-barrier-p
990 (point) maybe-after-boundary-pos))))
991
992 (when boundary-pos
993 (setq pptok ptok
994 ptok tok
995 tok boundary-pos
996 sym 'boundary)
997 ;; Like a C "continue". Analyze the next sexp.
998 (throw 'loop t))))
a66cd3ee
MS
999
1000 ;; ObjC method def?
1001 (when (and c-opt-method-key
1002 (setq saved (c-in-method-def-p)))
1003 (setq pos saved
1004 ignore-labels t) ; Avoid the label check on exit.
b248a85d
AM
1005 (throw 'loop nil)) ; 3. ObjC method def.
1006
1007 ;; Might we have a bitfield declaration, "<type> <id> : <size>"?
1008 (if c-has-bitfields
1009 (cond
1010 ;; The : <size> and <id> fields?
1011 ((and (numberp c-maybe-labelp)
1012 (not bitfield-size-pos)
1013 (save-excursion
1014 (goto-char (or tok start))
1015 (not (looking-at c-keywords-regexp)))
1016 (not (looking-at c-keywords-regexp))
1017 (not (c-punctuation-in (point) c-maybe-labelp)))
1018 (setq bitfield-size-pos (or tok start)
1019 bitfield-id-pos (point)))
1020 ;; The <type> field?
1021 ((and bitfield-id-pos
1022 (not bitfield-type-pos))
1023 (if (and (looking-at c-symbol-key) ; Can only be an integer type. :-)
1024 (not (looking-at c-not-primitive-type-keywords-regexp))
1025 (not (c-punctuation-in (point) tok)))
1026 (setq bitfield-type-pos (point))
1027 (setq bitfield-size-pos nil
1028 bitfield-id-pos nil)))))
a66cd3ee 1029
0386b551
AM
1030 ;; Handle labels.
1031 (unless (eq ignore-labels t)
1032 (when (numberp c-maybe-labelp)
cb694ab7
AM
1033 ;; `c-crosses-statement-barrier-p' has found a colon, so we
1034 ;; might be in a label now. Have we got a real label
1035 ;; (including a case label) or something like C++'s "public:"?
d28e7f28
AM
1036 ;; A case label might use an expression rather than a token.
1037 (setq after-case:-pos (or tok start))
1038 (if (looking-at c-nonlabel-token-key) ; e.g. "while" or "'a'"
1039 (setq c-maybe-labelp nil)
1040 (if after-labels-pos ; Have we already encountered a label?
1041 (if (not last-label-pos)
1042 (setq last-label-pos (or tok start)))
1043 (setq after-labels-pos (or tok start)))
1044 (setq c-maybe-labelp t
1045 label-good-pos nil))) ; bogus "label"
cb694ab7
AM
1046
1047 (when (and (not label-good-pos) ; i.e. no invalid "label"'s yet
1048 ; been found.
1049 (looking-at c-nonlabel-token-key)) ; e.g. "while :"
0386b551
AM
1050 ;; We're in a potential label and it's the first
1051 ;; time we've found something that isn't allowed in
1052 ;; one.
1053 (setq label-good-pos (or tok start))))
1054
1055 ;; We've moved back by a sexp, so update the token positions.
a66cd3ee
MS
1056 (setq sym nil
1057 pptok ptok
1058 ptok tok
1059 tok (point)
b248a85d
AM
1060 pos tok) ; always non-nil
1061 ) ; end of (catch loop ....)
1062 ) ; end of sexp-at-a-time (while ....)
1063
a66cd3ee
MS
1064 ;; If the stack isn't empty there might be errors to report.
1065 (while stack
1066 (if (and (vectorp saved-pos) (eq (length saved-pos) 3))
1067 (c-bos-report-error))
1068 (setq saved-pos (cdr (car stack))
1069 stack (cdr stack)))
1070
1071 (when (and (eq ret 'same)
1072 (not (memq sym '(boundary ignore nil))))
1073 ;; Need to investigate closer whether we've crossed
1074 ;; between a substatement and its containing statement.
1075 (if (setq saved (if (looking-at c-block-stmt-1-key)
1076 ptok
1077 pptok))
1078 (cond ((> start saved) (setq pos saved))
1079 ((= start saved) (setq ret 'up)))))
1080
0386b551
AM
1081 (when (and (not ignore-labels)
1082 (eq c-maybe-labelp t)
d9e94c22 1083 (not (eq ret 'beginning))
0386b551 1084 after-labels-pos
b248a85d 1085 (not bitfield-type-pos) ; Bitfields take precedence over labels.
0386b551
AM
1086 (or (not label-good-pos)
1087 (<= label-good-pos pos)
1088 (progn
1089 (goto-char (if (and last-label-pos
1090 (< last-label-pos start))
1091 last-label-pos
1092 pos))
1093 (looking-at c-label-kwds-regexp))))
a66cd3ee
MS
1094 ;; We're in a label. Maybe we should step to the statement
1095 ;; after it.
1096 (if (< after-labels-pos start)
1097 (setq pos after-labels-pos)
1098 (setq ret 'label)
0386b551
AM
1099 (if (and last-label-pos (< last-label-pos start))
1100 ;; Might have jumped over several labels. Go to the last one.
a66cd3ee
MS
1101 (setq pos last-label-pos)))))
1102
d28e7f28 1103 ;; Have we got "case <expression>:"?
a66cd3ee 1104 (goto-char pos)
d28e7f28
AM
1105 (when (and after-case:-pos
1106 (not (eq ret 'beginning))
1107 (looking-at c-case-kwds-regexp))
1108 (if (< after-case:-pos start)
0000ee90
AM
1109 (setq pos after-case:-pos))
1110 (if (eq ret 'same)
1111 (setq ret 'label)))
d28e7f28
AM
1112
1113 ;; Skip over the unary operators that can start the statement.
a66cd3ee 1114 (while (progn
0386b551
AM
1115 (c-backward-syntactic-ws)
1116 ;; protect AWK post-inc/decrement operators, etc.
1117 (and (not (c-at-vsemi-p (point)))
1118 (/= (skip-chars-backward "-+!*&~@`#") 0)))
a66cd3ee
MS
1119 (setq pos (point)))
1120 (goto-char pos)
1121 ret)))
785eecbb 1122
b248a85d
AM
1123(defun c-punctuation-in (from to)
1124 "Return non-nil if there is a non-comment non-macro punctuation character
1125between FROM and TO. FROM must not be in a string or comment. The returned
1126value is the position of the first such character."
1127 (save-excursion
1128 (goto-char from)
1129 (let ((pos (point)))
1130 (while (progn (skip-chars-forward c-symbol-chars to)
1131 (c-forward-syntactic-ws to)
1132 (> (point) pos))
1133 (setq pos (point))))
1134 (and (< (point) to) (point))))
1135
785eecbb 1136(defun c-crosses-statement-barrier-p (from to)
a66cd3ee
MS
1137 "Return non-nil if buffer positions FROM to TO cross one or more
1138statement or declaration boundaries. The returned value is actually
d9e94c22
MS
1139the position of the earliest boundary char. FROM must not be within
1140a string or comment.
a66cd3ee
MS
1141
1142The variable `c-maybe-labelp' is set to the position of the first `:' that
1143might start a label (i.e. not part of `::' and not preceded by `?'). If a
0386b551
AM
1144single `?' is found, then `c-maybe-labelp' is cleared.
1145
1146For AWK, a statement which is terminated by an EOL (not a \; or a }) is
1147regarded as having a \"virtual semicolon\" immediately after the last token on
b414f371 1148the line. If this virtual semicolon is _at_ from, the function recognizes it.
0386b551
AM
1149
1150Note that this function might do hidden buffer changes. See the
1151comment at the start of cc-engine.el for more info."
a66cd3ee
MS
1152 (let ((skip-chars c-stmt-delim-chars)
1153 lit-range)
1154 (save-excursion
1155 (catch 'done
1156 (goto-char from)
1157 (while (progn (skip-chars-forward skip-chars to)
785eecbb 1158 (< (point) to))
0386b551
AM
1159 (cond
1160 ((setq lit-range (c-literal-limits from)) ; Have we landed in a string/comment?
1161 (goto-char (cdr lit-range)))
1162 ((eq (char-after) ?:)
1163 (forward-char)
1164 (if (and (eq (char-after) ?:)
1165 (< (point) to))
1166 ;; Ignore scope operators.
1167 (forward-char)
1168 (setq c-maybe-labelp (1- (point)))))
1169 ((eq (char-after) ??)
1170 ;; A question mark. Can't be a label, so stop
1171 ;; looking for more : and ?.
1172 (setq c-maybe-labelp nil
1173 skip-chars (substring c-stmt-delim-chars 0 -2)))
1174 ((memq (char-after) '(?# ?\n ?\r)) ; A virtual semicolon?
1175 (if (and (eq (char-before) ?\\) (memq (char-after) '(?\n ?\r)))
1176 (backward-char))
1177 (skip-chars-backward " \t" from)
1178 (if (c-at-vsemi-p)
1179 (throw 'done (point))
1180 (forward-line)))
1181 (t (throw 'done (point)))))
1182 ;; In trailing space after an as yet undetected virtual semicolon?
1183 (c-backward-syntactic-ws from)
1184 (if (and (< (point) to)
1185 (c-at-vsemi-p))
1186 (point)
1187 nil)))))
1188
1189(defun c-at-statement-start-p ()
1190 "Return non-nil if the point is at the first token in a statement
1191or somewhere in the syntactic whitespace before it.
1192
1193A \"statement\" here is not restricted to those inside code blocks.
1194Any kind of declaration-like construct that occur outside function
1195bodies is also considered a \"statement\".
1196
1197Note that this function might do hidden buffer changes. See the
1198comment at the start of cc-engine.el for more info."
1199
1200 (save-excursion
1201 (let ((end (point))
1202 c-maybe-labelp)
1203 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1204 (or (bobp)
1205 (eq (char-before) ?})
1206 (and (eq (char-before) ?{)
1207 (not (and c-special-brace-lists
1208 (progn (backward-char)
1209 (c-looking-at-special-brace-list)))))
1210 (c-crosses-statement-barrier-p (point) end)))))
1211
1212(defun c-at-expression-start-p ()
1213 "Return non-nil if the point is at the first token in an expression or
1214statement, or somewhere in the syntactic whitespace before it.
1215
1216An \"expression\" here is a bit different from the normal language
1217grammar sense: It's any sequence of expression tokens except commas,
1218unless they are enclosed inside parentheses of some kind. Also, an
1219expression never continues past an enclosing parenthesis, but it might
1220contain parenthesis pairs of any sort except braces.
1221
1222Since expressions never cross statement boundaries, this function also
1223recognizes statement beginnings, just like `c-at-statement-start-p'.
1224
1225Note that this function might do hidden buffer changes. See the
1226comment at the start of cc-engine.el for more info."
1227
1228 (save-excursion
1229 (let ((end (point))
1230 (c-stmt-delim-chars c-stmt-delim-chars-with-comma)
1231 c-maybe-labelp)
1232 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1233 (or (bobp)
1234 (memq (char-before) '(?{ ?}))
1235 (save-excursion (backward-char)
1236 (looking-at "\\s("))
1237 (c-crosses-statement-barrier-p (point) end)))))
785eecbb
RS
1238
1239\f
d9e94c22
MS
1240;; A set of functions that covers various idiosyncrasies in
1241;; implementations of `forward-comment'.
1242
1243;; Note: Some emacsen considers incorrectly that any line comment
1244;; ending with a backslash continues to the next line. I can't think
1245;; of any way to work around that in a reliable way without changing
1246;; the buffer, though. Suggestions welcome. ;) (No, temporarily
1247;; changing the syntax for backslash doesn't work since we must treat
1248;; escapes in string literals correctly.)
1249
1250(defun c-forward-single-comment ()
1251 "Move forward past whitespace and the closest following comment, if any.
1252Return t if a comment was found, nil otherwise. In either case, the
1253point is moved past the following whitespace. Line continuations,
1254i.e. a backslashes followed by line breaks, are treated as whitespace.
1255The line breaks that end line comments are considered to be the
1256comment enders, so the point will be put on the beginning of the next
1257line if it moved past a line comment.
1258
1259This function does not do any hidden buffer changes."
1260
1261 (let ((start (point)))
1262 (when (looking-at "\\([ \t\n\r\f\v]\\|\\\\[\n\r]\\)+")
1263 (goto-char (match-end 0)))
1264
1265 (when (forward-comment 1)
1266 (if (eobp)
1267 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1268 ;; forwards at eob.
1269 nil
1270
1271 ;; Emacs includes the ending newline in a b-style (c++)
1272 ;; comment, but XEmacs doesn't. We depend on the Emacs
1273 ;; behavior (which also is symmetric).
1274 (if (and (eolp) (elt (parse-partial-sexp start (point)) 7))
1275 (condition-case nil (forward-char 1)))
1276
1277 t))))
1278
1279(defsubst c-forward-comments ()
1280 "Move forward past all following whitespace and comments.
1281Line continuations, i.e. a backslashes followed by line breaks, are
1282treated as whitespace.
1283
0386b551
AM
1284Note that this function might do hidden buffer changes. See the
1285comment at the start of cc-engine.el for more info."
d9e94c22
MS
1286
1287 (while (or
1288 ;; If forward-comment in at least XEmacs 21 is given a large
1289 ;; positive value, it'll loop all the way through if it hits
1290 ;; eob.
1291 (and (forward-comment 5)
1292 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1293 ;; forwards at eob.
1294 (not (eobp)))
1295
1296 (when (looking-at "\\\\[\n\r]")
1297 (forward-char 2)
1298 t))))
1299
1300(defun c-backward-single-comment ()
1301 "Move backward past whitespace and the closest preceding comment, if any.
1302Return t if a comment was found, nil otherwise. In either case, the
1303point is moved past the preceding whitespace. Line continuations,
1304i.e. a backslashes followed by line breaks, are treated as whitespace.
1305The line breaks that end line comments are considered to be the
1306comment enders, so the point cannot be at the end of the same line to
1307move over a line comment.
1308
1309This function does not do any hidden buffer changes."
1310
1311 (let ((start (point)))
1312 ;; When we got newline terminated comments, forward-comment in all
1313 ;; supported emacsen so far will stop at eol of each line not
1314 ;; ending with a comment when moving backwards. This corrects for
1315 ;; that, and at the same time handles line continuations.
1316 (while (progn
1317 (skip-chars-backward " \t\n\r\f\v")
1318 (and (looking-at "[\n\r]")
0386b551 1319 (eq (char-before) ?\\)))
d9e94c22
MS
1320 (backward-char))
1321
1322 (if (bobp)
1323 ;; Some emacsen (e.g. Emacs 19.34) return t when moving
1324 ;; backwards at bob.
1325 nil
1326
1327 ;; Leave point after the closest following newline if we've
1328 ;; backed up over any above, since forward-comment won't move
1329 ;; backward over a line comment if point is at the end of the
1330 ;; same line.
1331 (re-search-forward "\\=\\s *[\n\r]" start t)
1332
bf2c1571 1333 (if (if (let (open-paren-in-column-0-is-defun-start) (forward-comment -1))
d9e94c22
MS
1334 (if (eolp)
1335 ;; If forward-comment above succeeded and we're at eol
1336 ;; then the newline we moved over above didn't end a
1337 ;; line comment, so we give it another go.
bf2c1571
AM
1338 (let (open-paren-in-column-0-is-defun-start)
1339 (forward-comment -1))
d9e94c22
MS
1340 t))
1341
1342 ;; Emacs <= 20 and XEmacs move back over the closer of a
1343 ;; block comment that lacks an opener.
1344 (if (looking-at "\\*/")
1345 (progn (forward-char 2) nil)
1346 t)))))
1347
1348(defsubst c-backward-comments ()
1349 "Move backward past all preceding whitespace and comments.
1350Line continuations, i.e. a backslashes followed by line breaks, are
1351treated as whitespace. The line breaks that end line comments are
1352considered to be the comment enders, so the point cannot be at the end
0386b551
AM
1353of the same line to move over a line comment. Unlike
1354c-backward-syntactic-ws, this function doesn't move back over
1355preprocessor directives.
d9e94c22 1356
0386b551
AM
1357Note that this function might do hidden buffer changes. See the
1358comment at the start of cc-engine.el for more info."
d9e94c22
MS
1359
1360 (let ((start (point)))
1361 (while (and
0386b551 1362 ;; `forward-comment' in some emacsen (e.g. XEmacs 21.4)
d9e94c22
MS
1363 ;; return t when moving backwards at bob.
1364 (not (bobp))
1365
bf2c1571
AM
1366 (if (let (open-paren-in-column-0-is-defun-start)
1367 (forward-comment -1))
d9e94c22
MS
1368 (if (looking-at "\\*/")
1369 ;; Emacs <= 20 and XEmacs move back over the
1370 ;; closer of a block comment that lacks an opener.
1371 (progn (forward-char 2) nil)
1372 t)
1373
1374 ;; XEmacs treats line continuations as whitespace but
1375 ;; only in the backward direction, which seems a bit
1376 ;; odd. Anyway, this is necessary for Emacs.
1377 (when (and (looking-at "[\n\r]")
1378 (eq (char-before) ?\\)
1379 (< (point) start))
1380 (backward-char)
1381 t))))))
1382
1383\f
d9e94c22 1384;; Tools for skipping over syntactic whitespace.
a66cd3ee 1385
d9e94c22
MS
1386;; The following functions use text properties to cache searches over
1387;; large regions of syntactic whitespace. It works as follows:
1388;;
1389;; o If a syntactic whitespace region contains anything but simple
1390;; whitespace (i.e. space, tab and line breaks), the text property
1391;; `c-in-sws' is put over it. At places where we have stopped
1392;; within that region there's also a `c-is-sws' text property.
1393;; That since there typically are nested whitespace inside that
1394;; must be handled separately, e.g. whitespace inside a comment or
1395;; cpp directive. Thus, from one point with `c-is-sws' it's safe
1396;; to jump to another point with that property within the same
1397;; `c-in-sws' region. It can be likened to a ladder where
1398;; `c-in-sws' marks the bars and `c-is-sws' the rungs.
1399;;
1400;; o The `c-is-sws' property is put on the simple whitespace chars at
1401;; a "rung position" and also maybe on the first following char.
1402;; As many characters as can be conveniently found in this range
1403;; are marked, but no assumption can be made that the whole range
1404;; is marked (it could be clobbered by later changes, for
1405;; instance).
1406;;
1407;; Note that some part of the beginning of a sequence of simple
1408;; whitespace might be part of the end of a preceding line comment
1409;; or cpp directive and must not be considered part of the "rung".
1410;; Such whitespace is some amount of horizontal whitespace followed
1411;; by a newline. In the case of cpp directives it could also be
1412;; two newlines with horizontal whitespace between them.
1413;;
1414;; The reason to include the first following char is to cope with
1415;; "rung positions" that doesn't have any ordinary whitespace. If
1416;; `c-is-sws' is put on a token character it does not have
1417;; `c-in-sws' set simultaneously. That's the only case when that
1418;; can occur, and the reason for not extending the `c-in-sws'
1419;; region to cover it is that the `c-in-sws' region could then be
1420;; accidentally merged with a following one if the token is only
1421;; one character long.
1422;;
1423;; o On buffer changes the `c-in-sws' and `c-is-sws' properties are
1424;; removed in the changed region. If the change was inside
1425;; syntactic whitespace that means that the "ladder" is broken, but
1426;; a later call to `c-forward-sws' or `c-backward-sws' will use the
1427;; parts on either side and use an ordinary search only to "repair"
1428;; the gap.
1429;;
1430;; Special care needs to be taken if a region is removed: If there
1431;; are `c-in-sws' on both sides of it which do not connect inside
1432;; the region then they can't be joined. If e.g. a marked macro is
1433;; broken, syntactic whitespace inside the new text might be
1434;; marked. If those marks would become connected with the old
1435;; `c-in-sws' range around the macro then we could get a ladder
1436;; with one end outside the macro and the other at some whitespace
1437;; within it.
1438;;
1439;; The main motivation for this system is to increase the speed in
1440;; skipping over the large whitespace regions that can occur at the
1441;; top level in e.g. header files that contain a lot of comments and
1442;; cpp directives. For small comments inside code it's probably
1443;; slower than using `forward-comment' straightforwardly, but speed is
1444;; not a significant factor there anyway.
1445
1446; (defface c-debug-is-sws-face
1447; '((t (:background "GreenYellow")))
1448; "Debug face to mark the `c-is-sws' property.")
1449; (defface c-debug-in-sws-face
1450; '((t (:underline t)))
1451; "Debug face to mark the `c-in-sws' property.")
1452
1453; (defun c-debug-put-sws-faces ()
1454; ;; Put the sws debug faces on all the `c-is-sws' and `c-in-sws'
1455; ;; properties in the buffer.
1456; (interactive)
1457; (save-excursion
0386b551 1458; (c-save-buffer-state (in-face)
d9e94c22
MS
1459; (goto-char (point-min))
1460; (setq in-face (if (get-text-property (point) 'c-is-sws)
1461; (point)))
1462; (while (progn
1463; (goto-char (next-single-property-change
1464; (point) 'c-is-sws nil (point-max)))
1465; (if in-face
1466; (progn
1467; (c-debug-add-face in-face (point) 'c-debug-is-sws-face)
1468; (setq in-face nil))
1469; (setq in-face (point)))
1470; (not (eobp))))
1471; (goto-char (point-min))
1472; (setq in-face (if (get-text-property (point) 'c-in-sws)
1473; (point)))
1474; (while (progn
1475; (goto-char (next-single-property-change
1476; (point) 'c-in-sws nil (point-max)))
1477; (if in-face
1478; (progn
1479; (c-debug-add-face in-face (point) 'c-debug-in-sws-face)
1480; (setq in-face nil))
1481; (setq in-face (point)))
1482; (not (eobp)))))))
1483
1484(defmacro c-debug-sws-msg (&rest args)
1485 ;;`(message ,@args)
1486 )
1487
1488(defmacro c-put-is-sws (beg end)
0386b551 1489 ;; This macro does a hidden buffer change.
d9e94c22
MS
1490 `(let ((beg ,beg) (end ,end))
1491 (put-text-property beg end 'c-is-sws t)
1492 ,@(when (facep 'c-debug-is-sws-face)
1493 `((c-debug-add-face beg end 'c-debug-is-sws-face)))))
1494
1495(defmacro c-put-in-sws (beg end)
0386b551 1496 ;; This macro does a hidden buffer change.
d9e94c22
MS
1497 `(let ((beg ,beg) (end ,end))
1498 (put-text-property beg end 'c-in-sws t)
1499 ,@(when (facep 'c-debug-is-sws-face)
1500 `((c-debug-add-face beg end 'c-debug-in-sws-face)))))
1501
1502(defmacro c-remove-is-sws (beg end)
0386b551 1503 ;; This macro does a hidden buffer change.
d9e94c22
MS
1504 `(let ((beg ,beg) (end ,end))
1505 (remove-text-properties beg end '(c-is-sws nil))
1506 ,@(when (facep 'c-debug-is-sws-face)
1507 `((c-debug-remove-face beg end 'c-debug-is-sws-face)))))
1508
1509(defmacro c-remove-in-sws (beg end)
0386b551 1510 ;; This macro does a hidden buffer change.
d9e94c22
MS
1511 `(let ((beg ,beg) (end ,end))
1512 (remove-text-properties beg end '(c-in-sws nil))
1513 ,@(when (facep 'c-debug-is-sws-face)
1514 `((c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1515
1516(defmacro c-remove-is-and-in-sws (beg end)
0386b551 1517 ;; This macro does a hidden buffer change.
d9e94c22
MS
1518 `(let ((beg ,beg) (end ,end))
1519 (remove-text-properties beg end '(c-is-sws nil c-in-sws nil))
1520 ,@(when (facep 'c-debug-is-sws-face)
1521 `((c-debug-remove-face beg end 'c-debug-is-sws-face)
1522 (c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1523
1524(defsubst c-invalidate-sws-region-after (beg end)
1525 ;; Called from `after-change-functions'. Note that if
1526 ;; `c-forward-sws' or `c-backward-sws' are used outside
1527 ;; `c-save-buffer-state' or similar then this will remove the cache
1528 ;; properties right after they're added.
0386b551
AM
1529 ;;
1530 ;; This function does hidden buffer changes.
d9e94c22
MS
1531
1532 (save-excursion
1533 ;; Adjust the end to remove the properties in any following simple
1534 ;; ws up to and including the next line break, if there is any
1535 ;; after the changed region. This is necessary e.g. when a rung
1536 ;; marked empty line is converted to a line comment by inserting
1537 ;; "//" before the line break. In that case the line break would
1538 ;; keep the rung mark which could make a later `c-backward-sws'
1539 ;; move into the line comment instead of over it.
1540 (goto-char end)
1541 (skip-chars-forward " \t\f\v")
1542 (when (and (eolp) (not (eobp)))
1543 (setq end (1+ (point)))))
1544
1545 (when (and (= beg end)
1546 (get-text-property beg 'c-in-sws)
2a15eb73 1547 (> beg (point-min))
d9e94c22
MS
1548 (get-text-property (1- beg) 'c-in-sws))
1549 ;; Ensure that an `c-in-sws' range gets broken. Note that it isn't
1550 ;; safe to keep a range that was continuous before the change. E.g:
1551 ;;
1552 ;; #define foo
1553 ;; \
1554 ;; bar
1555 ;;
1556 ;; There can be a "ladder" between "#" and "b". Now, if the newline
1557 ;; after "foo" is removed then "bar" will become part of the cpp
1558 ;; directive instead of a syntactically relevant token. In that
1559 ;; case there's no longer syntactic ws from "#" to "b".
1560 (setq beg (1- beg)))
1561
1562 (c-debug-sws-msg "c-invalidate-sws-region-after [%s..%s]" beg end)
1563 (c-remove-is-and-in-sws beg end))
1564
1565(defun c-forward-sws ()
1566 ;; Used by `c-forward-syntactic-ws' to implement the unbounded search.
0386b551
AM
1567 ;;
1568 ;; This function might do hidden buffer changes.
d9e94c22
MS
1569
1570 (let (;; `rung-pos' is set to a position as early as possible in the
1571 ;; unmarked part of the simple ws region.
1572 (rung-pos (point)) next-rung-pos rung-end-pos last-put-in-sws-pos
1573 rung-is-marked next-rung-is-marked simple-ws-end
1574 ;; `safe-start' is set when it's safe to cache the start position.
1575 ;; It's not set if we've initially skipped over comments and line
1576 ;; continuations since we might have gone out through the end of a
1577 ;; macro then. This provision makes `c-forward-sws' not populate the
1578 ;; cache in the majority of cases, but otoh is `c-backward-sws' by far
1579 ;; more common.
1580 safe-start)
1581
1582 ;; Skip simple ws and do a quick check on the following character to see
1583 ;; if it's anything that can't start syntactic ws, so we can bail out
1584 ;; early in the majority of cases when there just are a few ws chars.
1585 (skip-chars-forward " \t\n\r\f\v")
1586 (when (looking-at c-syntactic-ws-start)
1587
1588 (setq rung-end-pos (min (1+ (point)) (point-max)))
1589 (if (setq rung-is-marked (text-property-any rung-pos rung-end-pos
1590 'c-is-sws t))
1591 ;; Find the last rung position to avoid setting properties in all
1592 ;; the cases when the marked rung is complete.
1593 ;; (`next-single-property-change' is certain to move at least one
1594 ;; step forward.)
1595 (setq rung-pos (1- (next-single-property-change
1596 rung-is-marked 'c-is-sws nil rung-end-pos)))
1597 ;; Got no marked rung here. Since the simple ws might have started
1598 ;; inside a line comment or cpp directive we must set `rung-pos' as
1599 ;; high as possible.
1600 (setq rung-pos (point)))
1601
1602 (while
1603 (progn
1604 (while
1605 (when (and rung-is-marked
1606 (get-text-property (point) 'c-in-sws))
1607
1608 ;; The following search is the main reason that `c-in-sws'
1609 ;; and `c-is-sws' aren't combined to one property.
1610 (goto-char (next-single-property-change
1611 (point) 'c-in-sws nil (point-max)))
1612 (unless (get-text-property (point) 'c-is-sws)
1613 ;; If the `c-in-sws' region extended past the last
1614 ;; `c-is-sws' char we have to go back a bit.
1615 (or (get-text-property (1- (point)) 'c-is-sws)
1616 (goto-char (previous-single-property-change
1617 (point) 'c-is-sws)))
1618 (backward-char))
1619
1620 (c-debug-sws-msg
1621 "c-forward-sws cached move %s -> %s (max %s)"
1622 rung-pos (point) (point-max))
1623
1624 (setq rung-pos (point))
1625 (and (> (skip-chars-forward " \t\n\r\f\v") 0)
1626 (not (eobp))))
1627
1628 ;; We'll loop here if there is simple ws after the last rung.
1629 ;; That means that there's been some change in it and it's
1630 ;; possible that we've stepped into another ladder, so extend
1631 ;; the previous one to join with it if there is one, and try to
1632 ;; use the cache again.
1633 (c-debug-sws-msg
1634 "c-forward-sws extending rung with [%s..%s] (max %s)"
1635 (1+ rung-pos) (1+ (point)) (point-max))
1636 (unless (get-text-property (point) 'c-is-sws)
1637 ;; Remove any `c-in-sws' property from the last char of
1638 ;; the rung before we mark it with `c-is-sws', so that we
1639 ;; won't connect with the remains of a broken "ladder".
1640 (c-remove-in-sws (point) (1+ (point))))
1641 (c-put-is-sws (1+ rung-pos)
1642 (1+ (point)))
1643 (c-put-in-sws rung-pos
1644 (setq rung-pos (point)
1645 last-put-in-sws-pos rung-pos)))
1646
1647 (setq simple-ws-end (point))
1648 (c-forward-comments)
1649
1650 (cond
1651 ((/= (point) simple-ws-end)
1652 ;; Skipped over comments. Don't cache at eob in case the buffer
1653 ;; is narrowed.
1654 (not (eobp)))
1655
1656 ((save-excursion
1657 (and c-opt-cpp-prefix
1658 (looking-at c-opt-cpp-start)
1659 (progn (skip-chars-backward " \t")
1660 (bolp))
1661 (or (bobp)
1662 (progn (backward-char)
1663 (not (eq (char-before) ?\\))))))
1664 ;; Skip a preprocessor directive.
1665 (end-of-line)
1666 (while (and (eq (char-before) ?\\)
1667 (= (forward-line 1) 0))
1668 (end-of-line))
1669 (forward-line 1)
1670 (setq safe-start t)
1671 ;; Don't cache at eob in case the buffer is narrowed.
1672 (not (eobp)))))
1673
1674 ;; We've searched over a piece of non-white syntactic ws. See if this
1675 ;; can be cached.
1676 (setq next-rung-pos (point))
1677 (skip-chars-forward " \t\n\r\f\v")
1678 (setq rung-end-pos (min (1+ (point)) (point-max)))
1679
1680 (if (or
1681 ;; Cache if we haven't skipped comments only, and if we started
1682 ;; either from a marked rung or from a completely uncached
1683 ;; position.
1684 (and safe-start
1685 (or rung-is-marked
1686 (not (get-text-property simple-ws-end 'c-in-sws))))
1687
1688 ;; See if there's a marked rung in the encountered simple ws. If
1689 ;; so then we can cache, unless `safe-start' is nil. Even then
1690 ;; we need to do this to check if the cache can be used for the
1691 ;; next step.
1692 (and (setq next-rung-is-marked
1693 (text-property-any next-rung-pos rung-end-pos
1694 'c-is-sws t))
1695 safe-start))
b2acd789 1696
0ec8351b 1697 (progn
d9e94c22
MS
1698 (c-debug-sws-msg
1699 "c-forward-sws caching [%s..%s] - [%s..%s] (max %s)"
1700 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1701 (point-max))
1702
1703 ;; Remove the properties for any nested ws that might be cached.
1704 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
1705 ;; anyway.
1706 (c-remove-is-sws (1+ simple-ws-end) next-rung-pos)
1707 (unless (and rung-is-marked (= rung-pos simple-ws-end))
1708 (c-put-is-sws rung-pos
1709 (1+ simple-ws-end))
1710 (setq rung-is-marked t))
1711 (c-put-in-sws rung-pos
1712 (setq rung-pos (point)
1713 last-put-in-sws-pos rung-pos))
1714 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
1715 ;; Remove any `c-in-sws' property from the last char of
1716 ;; the rung before we mark it with `c-is-sws', so that we
1717 ;; won't connect with the remains of a broken "ladder".
1718 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
1719 (c-put-is-sws next-rung-pos
1720 rung-end-pos))
1721
1722 (c-debug-sws-msg
1723 "c-forward-sws not caching [%s..%s] - [%s..%s] (max %s)"
1724 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1725 (point-max))
1726
1727 ;; Set `rung-pos' for the next rung. It's the same thing here as
1728 ;; initially, except that the rung position is set as early as
1729 ;; possible since we can't be in the ending ws of a line comment or
1730 ;; cpp directive now.
1731 (if (setq rung-is-marked next-rung-is-marked)
1732 (setq rung-pos (1- (next-single-property-change
1733 rung-is-marked 'c-is-sws nil rung-end-pos)))
1734 (setq rung-pos next-rung-pos))
1735 (setq safe-start t)))
1736
1737 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
1738 ;; another one after the point (which might occur when editing inside a
1739 ;; comment or macro).
1740 (when (eq last-put-in-sws-pos (point))
1741 (cond ((< last-put-in-sws-pos (point-max))
1742 (c-debug-sws-msg
1743 "c-forward-sws clearing at %s for cache separation"
1744 last-put-in-sws-pos)
1745 (c-remove-in-sws last-put-in-sws-pos
1746 (1+ last-put-in-sws-pos)))
1747 (t
1748 ;; If at eob we have to clear the last character before the end
1749 ;; instead since the buffer might be narrowed and there might
1750 ;; be a `c-in-sws' after (point-max). In this case it's
1751 ;; necessary to clear both properties.
1752 (c-debug-sws-msg
1753 "c-forward-sws clearing thoroughly at %s for cache separation"
1754 (1- last-put-in-sws-pos))
1755 (c-remove-is-and-in-sws (1- last-put-in-sws-pos)
1756 last-put-in-sws-pos))))
1757 )))
b2acd789 1758
d9e94c22
MS
1759(defun c-backward-sws ()
1760 ;; Used by `c-backward-syntactic-ws' to implement the unbounded search.
0386b551
AM
1761 ;;
1762 ;; This function might do hidden buffer changes.
d9e94c22
MS
1763
1764 (let (;; `rung-pos' is set to a position as late as possible in the unmarked
1765 ;; part of the simple ws region.
1766 (rung-pos (point)) next-rung-pos last-put-in-sws-pos
1767 rung-is-marked simple-ws-beg cmt-skip-pos)
1768
1769 ;; Skip simple horizontal ws and do a quick check on the preceding
1770 ;; character to see if it's anying that can't end syntactic ws, so we can
1771 ;; bail out early in the majority of cases when there just are a few ws
1772 ;; chars. Newlines are complicated in the backward direction, so we can't
1773 ;; skip over them.
1774 (skip-chars-backward " \t\f")
1775 (when (and (not (bobp))
1776 (save-excursion
1777 (backward-char)
1778 (looking-at c-syntactic-ws-end)))
1779
1780 ;; Try to find a rung position in the simple ws preceding point, so that
1781 ;; we can get a cache hit even if the last bit of the simple ws has
1782 ;; changed recently.
1783 (setq simple-ws-beg (point))
1784 (skip-chars-backward " \t\n\r\f\v")
1785 (if (setq rung-is-marked (text-property-any
1786 (point) (min (1+ rung-pos) (point-max))
1787 'c-is-sws t))
1788 ;; `rung-pos' will be the earliest marked position, which means that
1789 ;; there might be later unmarked parts in the simple ws region.
1790 ;; It's not worth the effort to fix that; the last part of the
1791 ;; simple ws is also typically edited often, so it could be wasted.
1792 (goto-char (setq rung-pos rung-is-marked))
1793 (goto-char simple-ws-beg))
1794
1795 (while
1796 (progn
1797 (while
1798 (when (and rung-is-marked
1799 (not (bobp))
1800 (get-text-property (1- (point)) 'c-in-sws))
1801
1802 ;; The following search is the main reason that `c-in-sws'
1803 ;; and `c-is-sws' aren't combined to one property.
1804 (goto-char (previous-single-property-change
1805 (point) 'c-in-sws nil (point-min)))
1806 (unless (get-text-property (point) 'c-is-sws)
1807 ;; If the `c-in-sws' region extended past the first
1808 ;; `c-is-sws' char we have to go forward a bit.
1809 (goto-char (next-single-property-change
1810 (point) 'c-is-sws)))
1811
1812 (c-debug-sws-msg
1813 "c-backward-sws cached move %s <- %s (min %s)"
1814 (point) rung-pos (point-min))
1815
1816 (setq rung-pos (point))
1817 (if (and (< (min (skip-chars-backward " \t\f\v")
1818 (progn
1819 (setq simple-ws-beg (point))
1820 (skip-chars-backward " \t\n\r\f\v")))
1821 0)
1822 (setq rung-is-marked
1823 (text-property-any (point) rung-pos
1824 'c-is-sws t)))
1825 t
1826 (goto-char simple-ws-beg)
1827 nil))
1828
1829 ;; We'll loop here if there is simple ws before the first rung.
1830 ;; That means that there's been some change in it and it's
1831 ;; possible that we've stepped into another ladder, so extend
1832 ;; the previous one to join with it if there is one, and try to
1833 ;; use the cache again.
1834 (c-debug-sws-msg
1835 "c-backward-sws extending rung with [%s..%s] (min %s)"
1836 rung-is-marked rung-pos (point-min))
1837 (unless (get-text-property (1- rung-pos) 'c-is-sws)
1838 ;; Remove any `c-in-sws' property from the last char of
1839 ;; the rung before we mark it with `c-is-sws', so that we
1840 ;; won't connect with the remains of a broken "ladder".
1841 (c-remove-in-sws (1- rung-pos) rung-pos))
1842 (c-put-is-sws rung-is-marked
1843 rung-pos)
1844 (c-put-in-sws rung-is-marked
1845 (1- rung-pos))
1846 (setq rung-pos rung-is-marked
1847 last-put-in-sws-pos rung-pos))
1848
1849 (c-backward-comments)
1850 (setq cmt-skip-pos (point))
a66cd3ee 1851
d9e94c22
MS
1852 (cond
1853 ((and c-opt-cpp-prefix
1854 (/= cmt-skip-pos simple-ws-beg)
1855 (c-beginning-of-macro))
1856 ;; Inside a cpp directive. See if it should be skipped over.
1857 (let ((cpp-beg (point)))
1858
1859 ;; Move back over all line continuations in the region skipped
1860 ;; over by `c-backward-comments'. If we go past it then we
1861 ;; started inside the cpp directive.
1862 (goto-char simple-ws-beg)
1863 (beginning-of-line)
1864 (while (and (> (point) cmt-skip-pos)
1865 (progn (backward-char)
1866 (eq (char-before) ?\\)))
1867 (beginning-of-line))
1868
1869 (if (< (point) cmt-skip-pos)
1870 ;; Don't move past the cpp directive if we began inside
1871 ;; it. Note that the position at the end of the last line
1872 ;; of the macro is also considered to be within it.
1873 (progn (goto-char cmt-skip-pos)
1874 nil)
1875
1876 ;; It's worthwhile to spend a little bit of effort on finding
1877 ;; the end of the macro, to get a good `simple-ws-beg'
1878 ;; position for the cache. Note that `c-backward-comments'
1879 ;; could have stepped over some comments before going into
1880 ;; the macro, and then `simple-ws-beg' must be kept on the
1881 ;; same side of those comments.
1882 (goto-char simple-ws-beg)
1883 (skip-chars-backward " \t\n\r\f\v")
1884 (if (eq (char-before) ?\\)
1885 (forward-char))
1886 (forward-line 1)
1887 (if (< (point) simple-ws-beg)
1888 ;; Might happen if comments after the macro were skipped
1889 ;; over.
1890 (setq simple-ws-beg (point)))
1891
1892 (goto-char cpp-beg)
1893 t)))
1894
1895 ((/= (save-excursion
1896 (skip-chars-forward " \t\n\r\f\v" simple-ws-beg)
1897 (setq next-rung-pos (point)))
1898 simple-ws-beg)
1899 ;; Skipped over comments. Must put point at the end of
1900 ;; the simple ws at point since we might be after a line
1901 ;; comment or cpp directive that's been partially
1902 ;; narrowed out, and we can't risk marking the simple ws
1903 ;; at the end of it.
1904 (goto-char next-rung-pos)
1905 t)))
1906
1907 ;; We've searched over a piece of non-white syntactic ws. See if this
1908 ;; can be cached.
1909 (setq next-rung-pos (point))
1910 (skip-chars-backward " \t\f\v")
1911
1912 (if (or
1913 ;; Cache if we started either from a marked rung or from a
1914 ;; completely uncached position.
1915 rung-is-marked
1916 (not (get-text-property (1- simple-ws-beg) 'c-in-sws))
1917
1918 ;; Cache if there's a marked rung in the encountered simple ws.
1919 (save-excursion
1920 (skip-chars-backward " \t\n\r\f\v")
1921 (text-property-any (point) (min (1+ next-rung-pos) (point-max))
1922 'c-is-sws t)))
a66cd3ee 1923
d9e94c22
MS
1924 (progn
1925 (c-debug-sws-msg
1926 "c-backward-sws caching [%s..%s] - [%s..%s] (min %s)"
1927 (point) (1+ next-rung-pos)
1928 simple-ws-beg (min (1+ rung-pos) (point-max))
1929 (point-min))
1930
1931 ;; Remove the properties for any nested ws that might be cached.
1932 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
1933 ;; anyway.
1934 (c-remove-is-sws (1+ next-rung-pos) simple-ws-beg)
1935 (unless (and rung-is-marked (= simple-ws-beg rung-pos))
1936 (let ((rung-end-pos (min (1+ rung-pos) (point-max))))
1937 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
1938 ;; Remove any `c-in-sws' property from the last char of
1939 ;; the rung before we mark it with `c-is-sws', so that we
1940 ;; won't connect with the remains of a broken "ladder".
1941 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
1942 (c-put-is-sws simple-ws-beg
1943 rung-end-pos)
1944 (setq rung-is-marked t)))
1945 (c-put-in-sws (setq simple-ws-beg (point)
1946 last-put-in-sws-pos simple-ws-beg)
1947 rung-pos)
1948 (c-put-is-sws (setq rung-pos simple-ws-beg)
1949 (1+ next-rung-pos)))
1950
1951 (c-debug-sws-msg
1952 "c-backward-sws not caching [%s..%s] - [%s..%s] (min %s)"
1953 (point) (1+ next-rung-pos)
1954 simple-ws-beg (min (1+ rung-pos) (point-max))
1955 (point-min))
1956 (setq rung-pos next-rung-pos
1957 simple-ws-beg (point))
1958 ))
1959
1960 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
1961 ;; another one before the point (which might occur when editing inside a
1962 ;; comment or macro).
1963 (when (eq last-put-in-sws-pos (point))
1964 (cond ((< (point-min) last-put-in-sws-pos)
1965 (c-debug-sws-msg
1966 "c-backward-sws clearing at %s for cache separation"
1967 (1- last-put-in-sws-pos))
1968 (c-remove-in-sws (1- last-put-in-sws-pos)
1969 last-put-in-sws-pos))
1970 ((> (point-min) 1)
1971 ;; If at bob and the buffer is narrowed, we have to clear the
1972 ;; character we're standing on instead since there might be a
1973 ;; `c-in-sws' before (point-min). In this case it's necessary
1974 ;; to clear both properties.
1975 (c-debug-sws-msg
1976 "c-backward-sws clearing thoroughly at %s for cache separation"
1977 last-put-in-sws-pos)
1978 (c-remove-is-and-in-sws last-put-in-sws-pos
1979 (1+ last-put-in-sws-pos)))))
1980 )))
785eecbb 1981
d9e94c22 1982\f
580fba94
AM
1983;; Other whitespace tools
1984(defun c-partial-ws-p (beg end)
1985 ;; Is the region (beg end) WS, and is there WS (or BOB/EOB) next to the
1986 ;; region? This is a "heuristic" function. .....
b414f371 1987 ;;
c421028a
AM
1988 ;; The motivation for the second bit is to check whether removing this
1989 ;; region would coalesce two symbols.
580fba94
AM
1990 ;;
1991 ;; FIXME!!! This function doesn't check virtual semicolons in any way. Be
1992 ;; careful about using this function for, e.g. AWK. (2007/3/7)
1993 (save-excursion
1994 (let ((end+1 (min (1+ end) (point-max))))
1995 (or (progn (goto-char (max (point-min) (1- beg)))
1996 (c-skip-ws-forward end)
1997 (eq (point) end))
1998 (progn (goto-char beg)
1999 (c-skip-ws-forward end+1)
2000 (eq (point) end+1))))))
2001\f
0386b551 2002;; A system for finding noteworthy parens before the point.
e1c458ae 2003
0ec1d2c5
AM
2004(defconst c-state-cache-too-far 5000)
2005;; A maximum comfortable scanning distance, e.g. between
2006;; `c-state-cache-good-pos' and "HERE" (where we call c-parse-state). When
2007;; this distance is exceeded, we take "emergency meausures", e.g. by clearing
2008;; the cache and starting again from point-min or a beginning of defun. This
2009;; value can be tuned for efficiency or set to a lower value for testing.
2010
d9e94c22
MS
2011(defvar c-state-cache nil)
2012(make-variable-buffer-local 'c-state-cache)
2013;; The state cache used by `c-parse-state' to cut down the amount of
0ec1d2c5
AM
2014;; searching. It's the result from some earlier `c-parse-state' call. See
2015;; `c-parse-state''s doc string for details of its structure.
0386b551 2016;;
d9e94c22
MS
2017;; The use of the cached info is more effective if the next
2018;; `c-parse-state' call is on a line close by the one the cached state
2019;; was made at; the cache can actually slow down a little if the
2020;; cached state was made very far back in the buffer. The cache is
2021;; most effective if `c-parse-state' is used on each line while moving
2022;; forward.
e1c458ae 2023
0386b551
AM
2024(defvar c-state-cache-good-pos 1)
2025(make-variable-buffer-local 'c-state-cache-good-pos)
0ec1d2c5
AM
2026;; This is a position where `c-state-cache' is known to be correct, or
2027;; nil (see below). It's a position inside one of the recorded unclosed
2028;; parens or the top level, but not further nested inside any literal or
2029;; subparen that is closed before the last recorded position.
0386b551
AM
2030;;
2031;; The exact position is chosen to try to be close to yet earlier than
2032;; the position where `c-state-cache' will be called next. Right now
2033;; the heuristic is to set it to the position after the last found
2034;; closing paren (of any type) before the line on which
2035;; `c-parse-state' was called. That is chosen primarily to work well
2036;; with refontification of the current line.
0ec1d2c5
AM
2037;;
2038;; 2009-07-28: When `c-state-point-min' and the last position where
2039;; `c-parse-state' or for which `c-invalidate-state-cache' was called, are
2040;; both in the same literal, there is no such "good position", and
2041;; c-state-cache-good-pos is then nil. This is the ONLY circumstance in which
2042;; it can be nil. In this case, `c-state-point-min-literal' will be non-nil.
2043;;
2044;; 2009-06-12: In a brace desert, c-state-cache-good-pos may also be in
2045;; the middle of the desert, as long as it is not within a brace pair
2046;; recorded in `c-state-cache' or a paren/bracket pair.
2047
2048
2049;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2050;; We maintain a simple cache of positions which aren't in a literal, so as to
2051;; speed up testing for non-literality.
2052(defconst c-state-nonlit-pos-interval 10000)
2053;; The approximate interval between entries in `c-state-nonlit-pos-cache'.
2054
2055(defvar c-state-nonlit-pos-cache nil)
2056(make-variable-buffer-local 'c-state-nonlit-pos-cache)
e84efb70
AM
2057;; A list of buffer positions which are known not to be in a literal or a cpp
2058;; construct. This is ordered with higher positions at the front of the list.
2059;; Only those which are less than `c-state-nonlit-pos-cache-limit' are valid.
0ec1d2c5
AM
2060
2061(defvar c-state-nonlit-pos-cache-limit 1)
2062(make-variable-buffer-local 'c-state-nonlit-pos-cache-limit)
2063;; An upper limit on valid entries in `c-state-nonlit-pos-cache'. This is
2064;; reduced by buffer changes, and increased by invocations of
2065;; `c-state-literal-at'.
2066
2067(defsubst c-state-pp-to-literal (from to)
2068 ;; Do a parse-partial-sexp from FROM to TO, returning the bounds of any
2069 ;; literal at TO as a cons, otherwise NIL.
2070 ;; FROM must not be in a literal, and the buffer should already be wide
2071 ;; enough.
2072 (save-excursion
2073 (let ((s (parse-partial-sexp from to)))
2074 (when (or (nth 3 s) (nth 4 s)) ; in a string or comment
2075 (parse-partial-sexp (point) (point-max)
2076 nil ; TARGETDEPTH
2077 nil ; STOPBEFORE
2078 s ; OLDSTATE
2079 'syntax-table) ; stop at end of literal
2080 (cons (nth 8 s) (point))))))
2081
2082(defun c-state-literal-at (here)
2083 ;; If position HERE is inside a literal, return (START . END), the
2084 ;; boundaries of the literal (which may be outside the accessible bit of the
2085 ;; buffer). Otherwise, return nil.
2086 ;;
2087 ;; This function is almost the same as `c-literal-limits'. It differs in
2088 ;; that it is a lower level function, and that it rigourously follows the
2089 ;; syntax from BOB, whereas `c-literal-limits' uses a "local" safe position.
e84efb70
AM
2090 ;;
2091 ;; NOTE: This function manipulates `c-state-nonlit-pos-cache'. This cache
2092 ;; MAY NOT contain any positions within macros, since macros are frequently
2093 ;; turned into comments by use of the `c-cpp-delimiter' category properties.
2094 ;; We cannot rely on this mechanism whilst determining a cache pos since
2095 ;; this function is also called from outwith `c-parse-state'.
0ec1d2c5
AM
2096 (save-restriction
2097 (widen)
2098 (save-excursion
2099 (let ((c c-state-nonlit-pos-cache)
2100 pos npos lit)
2101 ;; Trim the cache to take account of buffer changes.
2102 (while (and c (> (car c) c-state-nonlit-pos-cache-limit))
2103 (setq c (cdr c)))
2104 (setq c-state-nonlit-pos-cache c)
2105
2106 (while (and c (> (car c) here))
2107 (setq c (cdr c)))
2108 (setq pos (or (car c) (point-min)))
2109
2110 (while (<= (setq npos (+ pos c-state-nonlit-pos-interval))
2111 here)
2112 (setq lit (c-state-pp-to-literal pos npos))
2113 (setq pos (or (cdr lit) npos)) ; end of literal containing npos.
e84efb70
AM
2114 (goto-char pos)
2115 (when (and (c-beginning-of-macro) (/= (point) pos))
2116 (c-syntactic-end-of-macro)
2117 (or (eobp) (forward-char))
2118 (setq pos (point)))
0ec1d2c5
AM
2119 (setq c-state-nonlit-pos-cache (cons pos c-state-nonlit-pos-cache)))
2120
2121 (if (> pos c-state-nonlit-pos-cache-limit)
2122 (setq c-state-nonlit-pos-cache-limit pos))
2123 (if (< pos here)
2124 (setq lit (c-state-pp-to-literal pos here)))
2125 lit))))
2126
2127(defsubst c-state-lit-beg (pos)
2128 ;; Return the start of the literal containing POS, or POS itself.
2129 (or (car (c-state-literal-at pos))
2130 pos))
2131
2132(defsubst c-state-cache-non-literal-place (pos state)
9c4aeabf 2133 ;; Return a position outside of a string/comment/macro at or before POS.
0ec1d2c5 2134 ;; STATE is the parse-partial-sexp state at POS.
9c4aeabf
AM
2135 (let ((res (if (or (nth 3 state) ; in a string?
2136 (nth 4 state)) ; in a comment?
2137 (nth 8 state)
2138 pos)))
2139 (save-excursion
2140 (goto-char res)
2141 (if (c-beginning-of-macro)
2142 (point)
2143 res))))
0ec1d2c5
AM
2144
2145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2146;; Stuff to do with point-min, and coping with any literal there.
2147(defvar c-state-point-min 1)
2148(make-variable-buffer-local 'c-state-point-min)
2149;; This is (point-min) when `c-state-cache' was last calculated. A change of
2150;; narrowing is likely to affect the parens that are visible before the point.
2151
2152(defvar c-state-point-min-lit-type nil)
2153(make-variable-buffer-local 'c-state-point-min-lit-type)
2154(defvar c-state-point-min-lit-start nil)
2155(make-variable-buffer-local 'c-state-point-min-lit-start)
2156;; These two variables define the literal, if any, containing point-min.
2157;; Their values are, respectively, 'string, c, or c++, and the start of the
2158;; literal. If there's no literal there, they're both nil.
2159
2160(defvar c-state-min-scan-pos 1)
2161(make-variable-buffer-local 'c-state-min-scan-pos)
2162;; This is the earliest buffer-pos from which scanning can be done. It is
2163;; either the end of the literal containing point-min, or point-min itself.
2164;; It becomes nil if the buffer is changed earlier than this point.
2165(defun c-state-get-min-scan-pos ()
2166 ;; Return the lowest valid scanning pos. This will be the end of the
2167 ;; literal enclosing point-min, or point-min itself.
2168 (or c-state-min-scan-pos
2169 (save-restriction
2170 (save-excursion
2171 (widen)
2172 (goto-char c-state-point-min-lit-start)
2173 (if (eq c-state-point-min-lit-type 'string)
2174 (forward-sexp)
2175 (forward-comment 1))
2176 (setq c-state-min-scan-pos (point))))))
2177
2178(defun c-state-mark-point-min-literal ()
2179 ;; Determine the properties of any literal containing POINT-MIN, setting the
2180 ;; variables `c-state-point-min-lit-type', `c-state-point-min-lit-start',
2181 ;; and `c-state-min-scan-pos' accordingly. The return value is meaningless.
2182 (let ((p-min (point-min))
2183 lit)
2184 (save-restriction
2185 (widen)
2186 (setq lit (c-state-literal-at p-min))
2187 (if lit
2188 (setq c-state-point-min-lit-type
2189 (save-excursion
2190 (goto-char (car lit))
2191 (cond
2192 ((looking-at c-block-comment-start-regexp) 'c)
2193 ((looking-at c-line-comment-starter) 'c++)
2194 (t 'string)))
2195 c-state-point-min-lit-start (car lit)
2196 c-state-min-scan-pos (cdr lit))
2197 (setq c-state-point-min-lit-type nil
2198 c-state-point-min-lit-start nil
2199 c-state-min-scan-pos p-min)))))
2200
2201
2202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2203;; A variable which signals a brace dessert - helpful for reducing the number
2204;; of fruitless backward scans.
2205(defvar c-state-brace-pair-desert nil)
2206(make-variable-buffer-local 'c-state-brace-pair-desert)
e84efb70 2207;; Used only in `c-append-lower-brace-pair-to-state-cache'. It is set when
0ec1d2c5
AM
2208;; that defun has searched backwards for a brace pair and not found one. Its
2209;; value is either nil or a cons (PA . FROM), where PA is the position of the
2210;; enclosing opening paren/brace/bracket which bounds the backwards search (or
2211;; nil when at top level) and FROM is where the backward search started. It
2212;; is reset to nil in `c-invalidate-state-cache'.
2213
2214
2215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2216;; Lowish level functions/macros which work directly on `c-state-cache', or a
2217;; list of like structure.
2218(defmacro c-state-cache-top-lparen (&optional cache)
2219 ;; Return the address of the top left brace/bracket/paren recorded in CACHE
2220 ;; (default `c-state-cache') (or nil).
2221 (let ((cash (or cache 'c-state-cache)))
2222 `(if (consp (car ,cash))
2223 (caar ,cash)
2224 (car ,cash))))
2225
2226(defmacro c-state-cache-top-paren (&optional cache)
2227 ;; Return the address of the latest brace/bracket/paren (whether left or
2228 ;; right) recorded in CACHE (default `c-state-cache') or nil.
2229 (let ((cash (or cache 'c-state-cache)))
2230 `(if (consp (car ,cash))
2231 (cdar ,cash)
2232 (car ,cash))))
2233
2234(defmacro c-state-cache-after-top-paren (&optional cache)
2235 ;; Return the position just after the latest brace/bracket/paren (whether
2236 ;; left or right) recorded in CACHE (default `c-state-cache') or nil.
2237 (let ((cash (or cache 'c-state-cache)))
2238 `(if (consp (car ,cash))
2239 (cdar ,cash)
2240 (and (car ,cash)
2241 (1+ (car ,cash))))))
2242
2243(defun c-get-cache-scan-pos (here)
2244 ;; From the state-cache, determine the buffer position from which we might
2245 ;; scan forward to HERE to update this cache. This position will be just
2246 ;; after a paren/brace/bracket recorded in the cache, if possible, otherwise
2247 ;; return the earliest position in the accessible region which isn't within
2248 ;; a literal. If the visible portion of the buffer is entirely within a
2249 ;; literal, return NIL.
2250 (let ((c c-state-cache) elt)
2251 ;(while (>= (or (c-state-cache-top-lparen c) 1) here)
2252 (while (and c
2253 (>= (c-state-cache-top-lparen c) here))
2254 (setq c (cdr c)))
2255
2256 (setq elt (car c))
2257 (cond
2258 ((consp elt)
2259 (if (> (cdr elt) here)
2260 (1+ (car elt))
2261 (cdr elt)))
2262 (elt (1+ elt))
2263 ((<= (c-state-get-min-scan-pos) here)
2264 (c-state-get-min-scan-pos))
2265 (t nil))))
2266
2267;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2268;; Variables which keep track of preprocessor constructs.
2269(defvar c-state-old-cpp-beg nil)
2270(make-variable-buffer-local 'c-state-old-cpp-beg)
2271(defvar c-state-old-cpp-end nil)
2272(make-variable-buffer-local 'c-state-old-cpp-end)
2273;; These are the limits of the macro containing point at the previous call of
2274;; `c-parse-state', or nil.
2275
2276;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2277;; Defuns which analyse the buffer, yet don't change `c-state-cache'.
2278(defun c-get-fallback-scan-pos (here)
2279 ;; Return a start position for building `c-state-cache' from
2280 ;; scratch. This will be at the top level, 2 defuns back.
0386b551
AM
2281 (save-excursion
2282 ;; Go back 2 bods, but ignore any bogus positions returned by
2283 ;; beginning-of-defun (i.e. open paren in column zero).
2284 (goto-char here)
2285 (let ((cnt 2))
2286 (while (not (or (bobp) (zerop cnt)))
0ec1d2c5 2287 (c-beginning-of-defun-1) ; Pure elisp BOD.
0386b551
AM
2288 (if (eq (char-after) ?\{)
2289 (setq cnt (1- cnt)))))
2290 (point)))
2291
c0209c2c
AM
2292(defun c-state-balance-parens-backwards (here- here+ top)
2293 ;; Return the position of the opening paren/brace/bracket before HERE- which
2294 ;; matches the outermost close p/b/b between HERE+ and TOP. Except when
2295 ;; there's a macro, HERE- and HERE+ are the same. Like this:
0ec1d2c5 2296 ;;
c0209c2c
AM
2297 ;; ............................................
2298 ;; | |
2299 ;; ( [ ( .........#macro.. ) ( ) ] )
2300 ;; ^ ^ ^ ^
2301 ;; | | | |
2302 ;; return HERE- HERE+ TOP
0ec1d2c5
AM
2303 ;;
2304 ;; If there aren't enough opening paren/brace/brackets, return the position
c0209c2c
AM
2305 ;; of the outermost one found, or HERE- if there are none. If there are no
2306 ;; closeing p/b/bs between HERE+ and TOP, return HERE-. HERE-/+ and TOP
2307 ;; must not be inside literals. Only the accessible portion of the buffer
2308 ;; will be scanned.
2309
2310 ;; PART 1: scan from `here+' up to `top', accumulating ")"s which enclose
2311 ;; `here'. Go round the next loop each time we pass over such a ")". These
2312 ;; probably match "("s before `here-'.
0ec1d2c5
AM
2313 (let (pos pa ren+1 lonely-rens)
2314 (save-excursion
2315 (save-restriction
2316 (narrow-to-region (point-min) top) ; This can move point, sometimes.
c0209c2c 2317 (setq pos here+)
0ec1d2c5
AM
2318 (c-safe
2319 (while
2320 (setq ren+1 (scan-lists pos 1 1)) ; might signal
2321 (setq lonely-rens (cons ren+1 lonely-rens)
2322 pos ren+1)))))
2323
c0209c2c 2324 ;; PART 2: Scan back before `here-' searching for the "("s
0ec1d2c5
AM
2325 ;; matching/mismatching the ")"s found above. We only need to direct the
2326 ;; caller to scan when we've encountered unmatched right parens.
c0209c2c
AM
2327 (setq pos here-)
2328 (when lonely-rens
2329 (c-safe
2330 (while
2331 (and lonely-rens ; actual values aren't used.
2332 (setq pa (scan-lists pos -1 1)))
2333 (setq pos pa)
2334 (setq lonely-rens (cdr lonely-rens)))))
2335 pos))
0ec1d2c5
AM
2336
2337(defun c-parse-state-get-strategy (here good-pos)
2338 ;; Determine the scanning strategy for adjusting `c-parse-state', attempting
2339 ;; to minimise the amount of scanning. HERE is the pertinent position in
2340 ;; the buffer, GOOD-POS is a position where `c-state-cache' (possibly with
2341 ;; its head trimmed) is known to be good, or nil if there is no such
2342 ;; position.
2343 ;;
2344 ;; The return value is a list, one of the following:
2345 ;;
2346 ;; o - ('forward CACHE-POS START-POINT) - scan forward from START-POINT,
2347 ;; which is not less than CACHE-POS.
2348 ;; o - ('backward CACHE-POS nil) - scan backwards (from HERE).
2349 ;; o - ('BOD nil START-POINT) - scan forwards from START-POINT, which is at the
2350 ;; top level.
2351 ;; o - ('IN-LIT nil nil) - point is inside the literal containing point-min.
2352 ;; , where CACHE-POS is the highest position recorded in `c-state-cache' at
2353 ;; or below HERE.
2354 (let ((cache-pos (c-get-cache-scan-pos here)) ; highest position below HERE in cache (or 1)
2355 BOD-pos ; position of 2nd BOD before HERE.
2356 strategy ; 'forward, 'backward, 'BOD, or 'IN-LIT.
2357 start-point
2358 how-far) ; putative scanning distance.
2359 (setq good-pos (or good-pos (c-state-get-min-scan-pos)))
2360 (cond
2361 ((< here (c-state-get-min-scan-pos))
2362 (setq strategy 'IN-LIT
2363 start-point nil
2364 cache-pos nil
2365 how-far 0))
2366 ((<= good-pos here)
2367 (setq strategy 'forward
2368 start-point (max good-pos cache-pos)
2369 how-far (- here start-point)))
2370 ((< (- good-pos here) (- here cache-pos)) ; FIXME!!! ; apply some sort of weighting.
2371 (setq strategy 'backward
2372 how-far (- good-pos here)))
2373 (t
2374 (setq strategy 'forward
2375 how-far (- here cache-pos)
2376 start-point cache-pos)))
2377
2378 ;; Might we be better off starting from the top level, two defuns back,
2379 ;; instead?
2380 (when (> how-far c-state-cache-too-far)
2381 (setq BOD-pos (c-get-fallback-scan-pos here)) ; somewhat EXPENSIVE!!!
2382 (if (< (- here BOD-pos) how-far)
2383 (setq strategy 'BOD
2384 start-point BOD-pos)))
2385
2386 (list
2387 strategy
2388 (and (memq strategy '(forward backward)) cache-pos)
2389 (and (memq strategy '(forward BOD)) start-point))))
2390
2391
2392;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2393;; Routines which change `c-state-cache' and associated values.
2394(defun c-renarrow-state-cache ()
2395 ;; The region (more precisely, point-min) has changed since we
2396 ;; calculated `c-state-cache'. Amend `c-state-cache' accordingly.
2397 (if (< (point-min) c-state-point-min)
2398 ;; If point-min has MOVED BACKWARDS then we drop the state completely.
2399 ;; It would be possible to do a better job here and recalculate the top
2400 ;; only.
2401 (progn
2402 (c-state-mark-point-min-literal)
2403 (setq c-state-cache nil
2404 c-state-cache-good-pos c-state-min-scan-pos
2405 c-state-brace-pair-desert nil))
2406
2407 ;; point-min has MOVED FORWARD.
2408
2409 ;; Is the new point-min inside a (different) literal?
2410 (unless (and c-state-point-min-lit-start ; at prev. point-min
2411 (< (point-min) (c-state-get-min-scan-pos)))
2412 (c-state-mark-point-min-literal))
2413
2414 ;; Cut off a bit of the tail from `c-state-cache'.
2415 (let ((ptr (cons nil c-state-cache))
2416 pa)
2417 (while (and (setq pa (c-state-cache-top-lparen (cdr ptr)))
2418 (>= pa (point-min)))
2419 (setq ptr (cdr ptr)))
2420
2421 (when (consp ptr)
2422 (if (eq (cdr ptr) c-state-cache)
2423 (setq c-state-cache nil
2424 c-state-cache-good-pos c-state-min-scan-pos)
2425 (setcdr ptr nil)
2426 (setq c-state-cache-good-pos (1+ (c-state-cache-top-lparen))))
2427 )))
2428
2429 (setq c-state-point-min (point-min)))
2430
2431(defun c-append-lower-brace-pair-to-state-cache (from &optional upper-lim)
2432 ;; If there is a brace pair preceding FROM in the buffer (not necessarily
2433 ;; immediately preceding), push a cons onto `c-state-cache' to represent it.
2434 ;; FROM must not be inside a literal. If UPPER-LIM is non-nil, we append
2435 ;; the highest brace pair whose "}" is below UPPER-LIM.
2436 ;;
2437 ;; Return non-nil when this has been done.
2438 ;;
2439 ;; This routine should be fast. Since it can get called a LOT, we maintain
2440 ;; `c-state-brace-pair-desert', a small cache of "failures", such that we
2441 ;; reduce the time wasted in repeated fruitless searches in brace deserts.
2442 (save-excursion
2443 (save-restriction
2444 (let ((bra from) ce ; Positions of "{" and "}".
2445 new-cons
2446 (cache-pos (c-state-cache-top-lparen)) ; might be nil.
2447 (macro-start-or-from
2448 (progn (goto-char from)
2449 (c-beginning-of-macro)
2450 (point))))
2451 (or upper-lim (setq upper-lim from))
2452
2453 ;; If we're essentially repeating a fruitless search, just give up.
2454 (unless (and c-state-brace-pair-desert
2455 (eq cache-pos (car c-state-brace-pair-desert))
2456 (<= from (cdr c-state-brace-pair-desert)))
2457 ;; Only search what we absolutely need to:
2458 (if (and c-state-brace-pair-desert
2459 (> from (cdr c-state-brace-pair-desert)))
2460 (narrow-to-region (cdr c-state-brace-pair-desert) (point-max)))
2461
2462 ;; In the next pair of nested loops, the inner one moves back past a
2463 ;; pair of (mis-)matching parens or brackets; the outer one moves
2464 ;; back over a sequence of unmatched close brace/paren/bracket each
2465 ;; time round.
2466 (while
2467 (progn
2468 (c-safe
2469 (while
2470 (and (setq ce (scan-lists bra -1 -1)) ; back past )/]/}; might signal
2471 (setq bra (scan-lists ce -1 1)) ; back past (/[/{; might signal
2472 (or (> ce upper-lim)
2473 (not (eq (char-after bra) ?\{))
2474 (and (goto-char bra)
2475 (c-beginning-of-macro)
2476 (< (point) macro-start-or-from))))))
2477 (and ce (< ce bra)))
2478 (setq bra ce)) ; If we just backed over an unbalanced closing
2479 ; brace, ignore it.
2480
2481 (if (and ce (< bra ce) (eq (char-after bra) ?\{))
2482 ;; We've found the desired brace-pair.
2483 (progn
2484 (setq new-cons (cons bra (1+ ce)))
2485 (cond
2486 ((consp (car c-state-cache))
2487 (setcar c-state-cache new-cons))
2488 ((and (numberp (car c-state-cache)) ; probably never happens
2489 (< ce (car c-state-cache)))
2490 (setcdr c-state-cache
2491 (cons new-cons (cdr c-state-cache))))
2492 (t (setq c-state-cache (cons new-cons c-state-cache)))))
2493
2494 ;; We haven't found a brace pair. Record this.
2495 (setq c-state-brace-pair-desert (cons cache-pos from))))))))
2496
2497(defsubst c-state-push-any-brace-pair (bra+1 macro-start-or-here)
2498 ;; If BRA+1 is nil, do nothing. Otherwise, BRA+1 is the buffer position
2499 ;; following a {, and that brace has a (mis-)matching } (or ]), and we
2500 ;; "push" "a" brace pair onto `c-state-cache'.
2501 ;;
2502 ;; Here "push" means overwrite the top element if it's itself a brace-pair,
2503 ;; otherwise push it normally.
2504 ;;
2505 ;; The brace pair we push is normally the one surrounding BRA+1, but if the
2506 ;; latter is inside a macro, not being a macro containing
2507 ;; MACRO-START-OR-HERE, we scan backwards through the buffer for a non-macro
2508 ;; base pair. This latter case is assumed to be rare.
2509 ;;
2510 ;; Note: POINT is not preserved in this routine.
2511 (if bra+1
2512 (if (or (> bra+1 macro-start-or-here)
2513 (progn (goto-char bra+1)
2514 (not (c-beginning-of-macro))))
2515 (setq c-state-cache
2516 (cons (cons (1- bra+1)
2517 (scan-lists bra+1 1 1))
2518 (if (consp (car c-state-cache))
2519 (cdr c-state-cache)
2520 c-state-cache)))
2521 ;; N.B. This defsubst codes one method for the simple, normal case,
2522 ;; and a more sophisticated, slower way for the general case. Don't
2523 ;; eliminate this defsubst - it's a speed optimisation.
2524 (c-append-lower-brace-pair-to-state-cache (1- bra+1)))))
2525
2526(defun c-append-to-state-cache (from)
2527 ;; Scan the buffer from FROM to (point-max), adding elements into
2528 ;; `c-state-cache' for braces etc. Return a candidate for
2529 ;; `c-state-cache-good-pos'.
2530 ;;
2531 ;; FROM must be after the latest brace/paren/bracket in `c-state-cache', if
2532 ;; any. Typically, it is immediately after it. It must not be inside a
2533 ;; literal.
2534 (let ((here-bol (c-point 'bol (point-max)))
2535 (macro-start-or-here
2536 (save-excursion (goto-char (point-max))
2537 (if (c-beginning-of-macro)
2538 (point)
2539 (point-max))))
2540 pa+1 ; pos just after an opening PAren (or brace).
2541 (ren+1 from) ; usually a pos just after an closing paREN etc.
2542 ; Is actually the pos. to scan for a (/{/[ from,
2543 ; which sometimes is after a silly )/}/].
2544 paren+1 ; Pos after some opening or closing paren.
2545 paren+1s ; A list of `paren+1's; used to determine a
2546 ; good-pos.
2547 bra+1 ce+1 ; just after L/R bra-ces.
2548 bra+1s ; list of OLD values of bra+1.
2549 mstart) ; start of a macro.
2550
2551 (save-excursion
2552 ;; Each time round the following loop, we enter a succesively deeper
2553 ;; level of brace/paren nesting. (Except sometimes we "continue at
2554 ;; the existing level".) `pa+1' is a pos inside an opening
2555 ;; brace/paren/bracket, usually just after it.
2556 (while
2557 (progn
2558 ;; Each time round the next loop moves forward over an opening then
2559 ;; a closing brace/bracket/paren. This loop is white hot, so it
2560 ;; plays ugly tricks to go fast. DON'T PUT ANYTHING INTO THIS
2561 ;; LOOP WHICH ISN'T ABSOLUTELY NECESSARY!!! It terminates when a
2562 ;; call of `scan-lists' signals an error, which happens when there
2563 ;; are no more b/b/p's to scan.
2564 (c-safe
2565 (while t
2566 (setq pa+1 (scan-lists ren+1 1 -1) ; Into (/{/[; might signal
2567 paren+1s (cons pa+1 paren+1s))
2568 (setq ren+1 (scan-lists pa+1 1 1)) ; Out of )/}/]; might signal
2569 (if (and (eq (char-before pa+1) ?{)) ; Check for a macro later.
2570 (setq bra+1 pa+1))
2571 (setcar paren+1s ren+1)))
2572
2573 (if (and pa+1 (> pa+1 ren+1))
2574 ;; We've just entered a deeper nesting level.
2575 (progn
2576 ;; Insert the brace pair (if present) and the single open
2577 ;; paren/brace/bracket into `c-state-cache' It cannot be
2578 ;; inside a macro, except one around point, because of what
2579 ;; `c-neutralize-syntax-in-CPP' has done.
2580 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2581 ;; Insert the opening brace/bracket/paren position.
2582 (setq c-state-cache (cons (1- pa+1) c-state-cache))
2583 ;; Clear admin stuff for the next more nested part of the scan.
2584 (setq ren+1 pa+1 pa+1 nil bra+1 nil bra+1s nil)
2585 t) ; Carry on the loop
2586
2587 ;; All open p/b/b's at this nesting level, if any, have probably
2588 ;; been closed by matching/mismatching ones. We're probably
2589 ;; finished - we just need to check for having found an
2590 ;; unmatched )/}/], which we ignore. Such a )/}/] can't be in a
2591 ;; macro, due the action of `c-neutralize-syntax-in-CPP'.
2592 (c-safe (setq ren+1 (scan-lists ren+1 1 1)))))) ; acts as loop control.
2593
2594 ;; Record the final, innermost, brace-pair if there is one.
2595 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2596
2597 ;; Determine a good pos
2598 (while (and (setq paren+1 (car paren+1s))
2599 (> (if (> paren+1 macro-start-or-here)
2600 paren+1
2601 (goto-char paren+1)
2602 (setq mstart (and (c-beginning-of-macro)
2603 (point)))
2604 (or mstart paren+1))
2605 here-bol))
2606 (setq paren+1s (cdr paren+1s)))
2607 (cond
2608 ((and paren+1 mstart)
2609 (min paren+1 mstart))
2610 (paren+1)
2611 (t from)))))
2612
2613(defun c-remove-stale-state-cache (good-pos pps-point)
2614 ;; Remove stale entries from the `c-cache-state', i.e. those which will
2615 ;; not be in it when it is amended for position (point-max).
2616 ;; Additionally, the "outermost" open-brace entry before (point-max)
2617 ;; will be converted to a cons if the matching close-brace is scanned.
2618 ;;
2619 ;; GOOD-POS is a "maximal" "safe position" - there must be no open
2620 ;; parens/braces/brackets between GOOD-POS and (point-max).
2621 ;;
2622 ;; As a second thing, calculate the result of parse-partial-sexp at
2623 ;; PPS-POINT, w.r.t. GOOD-POS. The motivation here is that
2624 ;; `c-state-cache-good-pos' may become PPS-POINT, but the caller may need to
2625 ;; adjust it to get outside a string/comment. (Sorry about this! The code
2626 ;; needs to be FAST).
2627 ;;
2628 ;; Return a list (GOOD-POS SCAN-BACK-POS PPS-STATE), where
2629 ;; o - GOOD-POS is a position where the new value `c-state-cache' is known
2630 ;; to be good (we aim for this to be as high as possible);
2631 ;; o - SCAN-BACK-POS, if not nil, indicates there may be a brace pair
2632 ;; preceding POS which needs to be recorded in `c-state-cache'. It is a
2633 ;; position to scan backwards from.
2634 ;; o - PPS-STATE is the parse-partial-sexp state at PPS-POINT.
2635 (save-restriction
2636 (narrow-to-region 1 (point-max))
2637 (save-excursion
eb2f6eeb 2638 (let* ((in-macro-start ; start of macro containing (point-max) or nil.
0ec1d2c5
AM
2639 (save-excursion
2640 (goto-char (point-max))
2641 (and (c-beginning-of-macro)
2642 (point))))
2643 (good-pos-actual-macro-start ; Start of macro containing good-pos
2644 ; or nil
2645 (and (< good-pos (point-max))
2646 (save-excursion
2647 (goto-char good-pos)
2648 (and (c-beginning-of-macro)
2649 (point)))))
2650 (good-pos-actual-macro-end ; End of this macro, (maybe
2651 ; (point-max)), or nil.
2652 (and good-pos-actual-macro-start
2653 (save-excursion
2654 (goto-char good-pos-actual-macro-start)
2655 (c-end-of-macro)
2656 (point))))
2657 pps-state ; Will be 9 or 10 elements long.
2658 pos
2659 upper-lim ; ,beyond which `c-state-cache' entries are removed
2660 scan-back-pos
2661 pair-beg pps-point-state target-depth)
2662
2663 ;; Remove entries beyond (point-max). Also remove any entries inside
2664 ;; a macro, unless (point-max) is in the same macro.
2665 (setq upper-lim
2666 (if (or (null c-state-old-cpp-beg)
2667 (and (> (point-max) c-state-old-cpp-beg)
2668 (< (point-max) c-state-old-cpp-end)))
2669 (point-max)
2670 (min (point-max) c-state-old-cpp-beg)))
657071fc 2671 (while (and c-state-cache (>= (c-state-cache-top-lparen) upper-lim))
0ec1d2c5
AM
2672 (setq c-state-cache (cdr c-state-cache)))
2673 ;; If `upper-lim' is inside the last recorded brace pair, remove its
2674 ;; RBrace and indicate we'll need to search backwards for a previous
2675 ;; brace pair.
2676 (when (and c-state-cache
2677 (consp (car c-state-cache))
2678 (> (cdar c-state-cache) upper-lim))
2679 (setcar c-state-cache (caar c-state-cache))
2680 (setq scan-back-pos (car c-state-cache)))
2681
2682 ;; The next loop jumps forward out of a nested level of parens each
2683 ;; time round; the corresponding elements in `c-state-cache' are
2684 ;; removed. `pos' is just after the brace-pair or the open paren at
2685 ;; (car c-state-cache). There can be no open parens/braces/brackets
2686 ;; between `good-pos'/`good-pos-actual-macro-start' and (point-max),
2687 ;; due to the interface spec to this function.
dd21b621 2688 (setq pos (if (and good-pos-actual-macro-end
eb2f6eeb
AM
2689 (not (eq good-pos-actual-macro-start
2690 in-macro-start)))
0ec1d2c5
AM
2691 (1+ good-pos-actual-macro-end) ; get outside the macro as
2692 ; marked by a `category' text property.
2693 good-pos))
2694 (goto-char pos)
2695 (while (and c-state-cache
2696 (< (point) (point-max)))
2697 (cond
2698 ((null pps-state) ; first time through
2699 (setq target-depth -1))
2700 ((eq (car pps-state) target-depth) ; found closing ),},]
2701 (setq target-depth (1- (car pps-state))))
2702 ;; Do nothing when we've merely reached pps-point.
2703 )
2704
2705 ;; Scan!
2706 (setq pps-state
2707 (parse-partial-sexp
2708 (point) (if (< (point) pps-point) pps-point (point-max))
2709 target-depth
2710 nil pps-state))
2711
2712 (if (= (point) pps-point)
2713 (setq pps-point-state pps-state))
2714
2715 (when (eq (car pps-state) target-depth)
2716 (setq pos (point)) ; POS is now just after an R-paren/brace.
2717 (cond
2718 ((and (consp (car c-state-cache))
2719 (eq (point) (cdar c-state-cache)))
2720 ;; We've just moved out of the paren pair containing the brace-pair
2721 ;; at (car c-state-cache). `pair-beg' is where the open paren is,
2722 ;; and is potentially where the open brace of a cons in
2723 ;; c-state-cache will be.
2724 (setq pair-beg (car-safe (cdr c-state-cache))
2725 c-state-cache (cdr-safe (cdr c-state-cache)))) ; remove {}pair + containing Lparen.
2726 ((numberp (car c-state-cache))
2727 (setq pair-beg (car c-state-cache)
2728 c-state-cache (cdr c-state-cache))) ; remove this
2729 ; containing Lparen
2730 ((numberp (cadr c-state-cache))
2731 (setq pair-beg (cadr c-state-cache)
2732 c-state-cache (cddr c-state-cache))) ; Remove a paren pair
2733 ; together with enclosed brace pair.
2734 ;; (t nil) ; Ignore an unmated Rparen.
2735 )))
2736
2737 (if (< (point) pps-point)
2738 (setq pps-state (parse-partial-sexp (point) pps-point
2739 nil nil ; TARGETDEPTH, STOPBEFORE
2740 pps-state)))
2741
2742 ;; If the last paren pair we moved out of was actually a brace pair,
2743 ;; insert it into `c-state-cache'.
2744 (when (and pair-beg (eq (char-after pair-beg) ?{))
2745 (if (consp (car-safe c-state-cache))
2746 (setq c-state-cache (cdr c-state-cache)))
2747 (setq c-state-cache (cons (cons pair-beg pos)
2748 c-state-cache)))
2749
2750 (list pos scan-back-pos pps-state)))))
2751
2752(defun c-remove-stale-state-cache-backwards (here cache-pos)
2753 ;; Strip stale elements of `c-state-cache' by moving backwards through the
2754 ;; buffer, and inform the caller of the scenario detected.
2755 ;;
2756 ;; HERE is the position we're setting `c-state-cache' for.
2757 ;; CACHE-POS is just after the latest recorded position in `c-state-cache'
2758 ;; before HERE, or a position at or near point-min which isn't in a
2759 ;; literal.
2760 ;;
2761 ;; This function must only be called only when (> `c-state-cache-good-pos'
2762 ;; HERE). Usually the gap between CACHE-POS and HERE is large. It is thus
2763 ;; optimised to eliminate (or minimise) scanning between these two
2764 ;; positions.
2765 ;;
2766 ;; Return a three element list (GOOD-POS SCAN-BACK-POS FWD-FLAG), where:
2767 ;; o - GOOD-POS is a "good position", where `c-state-cache' is valid, or
2768 ;; could become so after missing elements are inserted into
2769 ;; `c-state-cache'. This is JUST AFTER an opening or closing
2770 ;; brace/paren/bracket which is already in `c-state-cache' or just before
2771 ;; one otherwise. exceptionally (when there's no such b/p/b handy) the BOL
2772 ;; before `here''s line, or the start of the literal containing it.
2773 ;; o - SCAN-BACK-POS, if non-nil, indicates there may be a brace pair
2774 ;; preceding POS which isn't recorded in `c-state-cache'. It is a position
2775 ;; to scan backwards from.
2776 ;; o - FWD-FLAG, if non-nil, indicates there may be parens/braces between
2777 ;; POS and HERE which aren't recorded in `c-state-cache'.
2778 ;;
2779 ;; The comments in this defun use "paren" to mean parenthesis or square
2780 ;; bracket (as contrasted with a brace), and "(" and ")" likewise.
2781 ;;
2782 ;; . {..} (..) (..) ( .. { } ) (...) ( .... . ..)
2783 ;; | | | | | |
2784 ;; CP E here D C good
2785 (let ((pos c-state-cache-good-pos)
2786 pa ren ; positions of "(" and ")"
2787 dropped-cons ; whether the last element dropped from `c-state-cache'
2788 ; was a cons (representing a brace-pair)
2789 good-pos ; see above.
2790 lit ; (START . END) of a literal containing some point.
2791 here-lit-start here-lit-end ; bounds of literal containing `here'
2792 ; or `here' itself.
c0209c2c 2793 here- here+ ; start/end of macro around HERE, or HERE
0ec1d2c5
AM
2794 (here-bol (c-point 'bol here))
2795 (too-far-back (max (- here c-state-cache-too-far) 1)))
2796
2797 ;; Remove completely irrelevant entries from `c-state-cache'.
2798 (while (and c-state-cache
2799 (>= (setq pa (c-state-cache-top-lparen)) here))
2800 (setq dropped-cons (consp (car c-state-cache)))
2801 (setq c-state-cache (cdr c-state-cache))
2802 (setq pos pa))
2803 ;; At this stage, (> pos here);
2804 ;; (< (c-state-cache-top-lparen) here) (or is nil).
2805
c0209c2c
AM
2806 (cond
2807 ((and (consp (car c-state-cache))
2808 (> (cdar c-state-cache) here))
2809 ;; CASE 1: The top of the cache is a brace pair which now encloses
2810 ;; `here'. As good-pos, return the address. of the "{". Since we've no
2811 ;; knowledge of what's inside these braces, we have no alternative but
2812 ;; to direct the caller to scan the buffer from the opening brace.
2813 (setq pos (caar c-state-cache))
2814 (setcar c-state-cache pos)
2815 (list (1+ pos) pos t)) ; return value. We've just converted a brace pair
2816 ; entry into a { entry, so the caller needs to
2817 ; search for a brace pair before the {.
2818
2819 ;; `here' might be inside a literal. Check for this.
2820 ((progn
2821 (setq lit (c-state-literal-at here)
2822 here-lit-start (or (car lit) here)
2823 here-lit-end (or (cdr lit) here))
2824 ;; Has `here' just "newly entered" a macro?
2825 (save-excursion
2826 (goto-char here-lit-start)
2827 (if (and (c-beginning-of-macro)
2828 (or (null c-state-old-cpp-beg)
2829 (not (= (point) c-state-old-cpp-beg))))
2830 (progn
2831 (setq here- (point))
2832 (c-end-of-macro)
2833 (setq here+ (point)))
2834 (setq here- here-lit-start
2835 here+ here-lit-end)))
2836
2837 ;; `here' might be nested inside any depth of parens (or brackets but
2838 ;; not braces). Scan backwards to find the outermost such opening
2839 ;; paren, if there is one. This will be the scan position to return.
2840 (save-restriction
2841 (narrow-to-region cache-pos (point-max))
2842 (setq pos (c-state-balance-parens-backwards here- here+ pos)))
2843 nil)) ; for the cond
2844
2845 ((< pos here-lit-start)
2846 ;; CASE 2: Address of outermost ( or [ which now encloses `here', but
2847 ;; didn't enclose the (previous) `c-state-cache-good-pos'. If there is
2848 ;; a brace pair preceding this, it will already be in `c-state-cache',
2849 ;; unless there was a brace pair after it, i.e. there'll only be one to
2850 ;; scan for if we've just deleted one.
2851 (list pos (and dropped-cons pos) t)) ; Return value.
2852
2853 ;; `here' isn't enclosed in a (previously unrecorded) bracket/paren.
2854 ;; Further forward scanning isn't needed, but we still need to find a
2855 ;; GOOD-POS. Step out of all enclosing "("s on HERE's line.
2856 ((progn
0ec1d2c5
AM
2857 (save-restriction
2858 (narrow-to-region here-bol (point-max))
2859 (setq pos here-lit-start)
2860 (c-safe (while (setq pa (scan-lists pos -1 1))
2861 (setq pos pa)))) ; might signal
c0209c2c
AM
2862 nil)) ; for the cond
2863
2864 ((setq ren (c-safe-scan-lists pos -1 -1 too-far-back))
2865 ;; CASE 3: After a }/)/] before `here''s BOL.
2866 (list (1+ ren) (and dropped-cons pos) nil)) ; Return value
2867
2868 (t
2869 ;; CASE 4; Best of a bad job: BOL before `here-bol', or beginning of
2870 ;; literal containing it.
2871 (setq good-pos (c-state-lit-beg (c-point 'bopl here-bol)))
2872 (list good-pos (and dropped-cons good-pos) nil)))))
0ec1d2c5
AM
2873
2874
2875;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2876;; Externally visible routines.
2877
2878(defun c-state-cache-init ()
2879 (setq c-state-cache nil
2880 c-state-cache-good-pos 1
2881 c-state-nonlit-pos-cache nil
2882 c-state-nonlit-pos-cache-limit 1
2883 c-state-brace-pair-desert nil
2884 c-state-point-min 1
2885 c-state-point-min-lit-type nil
2886 c-state-point-min-lit-start nil
2887 c-state-min-scan-pos 1
2888 c-state-old-cpp-beg nil
2889 c-state-old-cpp-end nil)
2890 (c-state-mark-point-min-literal))
2891
e84efb70
AM
2892;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2893;; Debugging routines to dump `c-state-cache' in a "replayable" form.
2894;; (defmacro c-sc-de (elt) ; "c-state-cache-dump-element"
2895;; `(format ,(concat "(setq " (symbol-name elt) " %s) ") ,elt))
2896;; (defmacro c-sc-qde (elt) ; "c-state-cache-quote-dump-element"
2897;; `(format ,(concat "(setq " (symbol-name elt) " '%s) ") ,elt))
2898;; (defun c-state-dump ()
2899;; ;; For debugging.
2900;; ;(message
2901;; (concat
2902;; (c-sc-qde c-state-cache)
2903;; (c-sc-de c-state-cache-good-pos)
2904;; (c-sc-qde c-state-nonlit-pos-cache)
2905;; (c-sc-de c-state-nonlit-pos-cache-limit)
2906;; (c-sc-qde c-state-brace-pair-desert)
2907;; (c-sc-de c-state-point-min)
2908;; (c-sc-de c-state-point-min-lit-type)
2909;; (c-sc-de c-state-point-min-lit-start)
2910;; (c-sc-de c-state-min-scan-pos)
2911;; (c-sc-de c-state-old-cpp-beg)
2912;; (c-sc-de c-state-old-cpp-end)))
2913;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2914
0ec1d2c5
AM
2915(defun c-invalidate-state-cache-1 (here)
2916 ;; Invalidate all info on `c-state-cache' that applies to the buffer at HERE
2917 ;; or higher and set `c-state-cache-good-pos' accordingly. The cache is
2918 ;; left in a consistent state.
2919 ;;
2920 ;; This is much like `c-whack-state-after', but it never changes a paren
2921 ;; pair element into an open paren element. Doing that would mean that the
2922 ;; new open paren wouldn't have the required preceding paren pair element.
785eecbb 2923 ;;
0ec1d2c5
AM
2924 ;; This function is called from c-after-change.
2925
2926 ;; The cache of non-literals:
2927 (if (< here c-state-nonlit-pos-cache-limit)
2928 (setq c-state-nonlit-pos-cache-limit here))
2929
2930 ;; `c-state-cache':
2931 ;; Case 1: if `here' is in a literal containing point-min, everything
2932 ;; becomes (or is already) nil.
2933 (if (or (null c-state-cache-good-pos)
2934 (< here (c-state-get-min-scan-pos)))
2935 (setq c-state-cache nil
2936 c-state-cache-good-pos nil
2937 c-state-min-scan-pos nil)
2938
2939;;; Truncate `c-state-cache' and set `c-state-cache-good-pos' to a value below
2940;;; `here'. To maintain its consistency, we may need to insert a new brace
2941;;; pair.
2942 (let ((here-bol (c-point 'bol here))
2943 too-high-pa ; recorded {/(/[ next above here, or nil.
2944 dropped-cons ; was the last removed element a brace pair?
2945 pa)
2946 ;; The easy bit - knock over-the-top bits off `c-state-cache'.
2947 (while (and c-state-cache
2948 (>= (setq pa (c-state-cache-top-paren)) here))
2949 (setq dropped-cons (consp (car c-state-cache))
2950 too-high-pa (c-state-cache-top-lparen)
2951 c-state-cache (cdr c-state-cache)))
2952
2953 ;; Do we need to add in an earlier brace pair, having lopped one off?
2954 (if (and dropped-cons
2955 (< too-high-pa (+ here c-state-cache-too-far)))
2956 (c-append-lower-brace-pair-to-state-cache too-high-pa here-bol))
2957 (setq c-state-cache-good-pos (or (c-state-cache-after-top-paren)
2958 (c-state-get-min-scan-pos)))))
2959
2960 ;; The brace-pair desert marker:
2961 (when (car c-state-brace-pair-desert)
2962 (if (< here (car c-state-brace-pair-desert))
2963 (setq c-state-brace-pair-desert nil)
2964 (if (< here (cdr c-state-brace-pair-desert))
2965 (setcdr c-state-brace-pair-desert here)))))
2966
2967(defun c-parse-state-1 ()
2968 ;; Find and record all noteworthy parens between some good point earlier in
2969 ;; the file and point. That good point is at least the beginning of the
2970 ;; top-level construct we are in, or the beginning of the preceding
2971 ;; top-level construct if we aren't in one.
2972 ;;
2973 ;; The returned value is a list of the noteworthy parens with the last one
2974 ;; first. If an element in the list is an integer, it's the position of an
2975 ;; open paren (of any type) which has not been closed before the point. If
2976 ;; an element is a cons, it gives the position of a closed BRACE paren
2977 ;; pair[*]; the car is the start brace position and the cdr is the position
2978 ;; following the closing brace. Only the last closed brace paren pair
2979 ;; before each open paren and before the point is recorded, and thus the
2980 ;; state never contains two cons elements in succession. When a close brace
2981 ;; has no matching open brace (e.g., the matching brace is outside the
2982 ;; visible region), it is not represented in the returned value.
2983 ;;
2984 ;; [*] N.B. The close "brace" might be a mismatching close bracket or paren.
2985 ;; This defun explicitly treats mismatching parens/braces/brackets as
2986 ;; matching. It is the open brace which makes it a "brace" pair.
2987 ;;
2988 ;; If POINT is within a macro, open parens and brace pairs within
2989 ;; THIS macro MIGHT be recorded. This depends on whether their
2990 ;; syntactic properties have been suppressed by
2991 ;; `c-neutralize-syntax-in-CPP'. This might need fixing (2008-12-11).
d9e94c22
MS
2992 ;;
2993 ;; Currently no characters which are given paren syntax with the
2994 ;; syntax-table property are recorded, i.e. angle bracket arglist
2995 ;; parens are never present here. Note that this might change.
2996 ;;
0386b551 2997 ;; BUG: This function doesn't cope entirely well with unbalanced
0ec1d2c5
AM
2998 ;; parens in macros. (2008-12-11: this has probably been resolved
2999 ;; by the function `c-neutralize-syntax-in-CPP'.) E.g. in the
3000 ;; following case the brace before the macro isn't balanced with the
3001 ;; one after it:
0386b551
AM
3002 ;;
3003 ;; {
3004 ;; #define X {
3005 ;; }
3006 ;;
0ec1d2c5
AM
3007 ;; Note to maintainers: this function DOES get called with point
3008 ;; within comments and strings, so don't assume it doesn't!
3009 ;;
0386b551 3010 ;; This function might do hidden buffer changes.
0ec1d2c5
AM
3011 (let* ((here (point))
3012 (here-bopl (c-point 'bopl))
3013 strategy ; 'forward, 'backward etc..
3014 ;; Candidate positions to start scanning from:
3015 cache-pos ; highest position below HERE already existing in
3016 ; cache (or 1).
3017 good-pos
3018 start-point
3019 bopl-state
3020 res
3021 scan-backward-pos scan-forward-p) ; used for 'backward.
3022 ;; If POINT-MIN has changed, adjust the cache
3023 (unless (= (point-min) c-state-point-min)
3024 (c-renarrow-state-cache))
3025
3026 ;; Strategy?
3027 (setq res (c-parse-state-get-strategy here c-state-cache-good-pos)
3028 strategy (car res)
3029 cache-pos (cadr res)
3030 start-point (nth 2 res))
3031
3032 (when (eq strategy 'BOD)
3033 (setq c-state-cache nil
3034 c-state-cache-good-pos start-point))
3035
3036 ;; SCAN!
3037 (save-restriction
3038 (cond
3039 ((memq strategy '(forward BOD))
0386b551 3040 (narrow-to-region (point-min) here)
0ec1d2c5
AM
3041 (setq res (c-remove-stale-state-cache start-point here-bopl))
3042 (setq cache-pos (car res)
3043 scan-backward-pos (cadr res)
3044 bopl-state (car (cddr res))) ; will be nil if (< here-bopl
3045 ; start-point)
3046 (if scan-backward-pos
3047 (c-append-lower-brace-pair-to-state-cache scan-backward-pos))
3048 (setq good-pos
3049 (c-append-to-state-cache cache-pos))
3050 (setq c-state-cache-good-pos
3051 (if (and bopl-state
3052 (< good-pos (- here c-state-cache-too-far)))
3053 (c-state-cache-non-literal-place here-bopl bopl-state)
3054 good-pos)))
3055
3056 ((eq strategy 'backward)
3057 (setq res (c-remove-stale-state-cache-backwards here cache-pos)
3058 good-pos (car res)
3059 scan-backward-pos (cadr res)
3060 scan-forward-p (car (cddr res)))
3061 (if scan-backward-pos
3062 (c-append-lower-brace-pair-to-state-cache
3063 scan-backward-pos))
3064 (setq c-state-cache-good-pos
3065 (if scan-forward-p
3066 (progn (narrow-to-region (point-min) here)
3067 (c-append-to-state-cache good-pos))
3068
3069 (c-get-cache-scan-pos good-pos))))
3070
3071 (t ; (eq strategy 'IN-LIT)
3072 (setq c-state-cache nil
3073 c-state-cache-good-pos nil)))))
3074
3075 c-state-cache)
3076
3077(defun c-invalidate-state-cache (here)
3078 ;; This is a wrapper over `c-invalidate-state-cache-1'.
3079 ;;
3080 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3081 ;; of all parens in preprocessor constructs, except for any such construct
3082 ;; containing point. We can then call `c-invalidate-state-cache-1' without
3083 ;; worrying further about macros and template delimiters.
3084 (c-with-<->-as-parens-suppressed
3e8f7d91
AM
3085 (if (and c-state-old-cpp-beg
3086 (< c-state-old-cpp-beg here))
0ec1d2c5 3087 (c-with-all-but-one-cpps-commented-out
3e8f7d91
AM
3088 c-state-old-cpp-beg
3089 (min c-state-old-cpp-end here)
0ec1d2c5
AM
3090 (c-invalidate-state-cache-1 here))
3091 (c-with-cpps-commented-out
3092 (c-invalidate-state-cache-1 here)))))
3093
3094(defun c-parse-state ()
3095 ;; This is a wrapper over `c-parse-state-1'. See that function for a
3096 ;; description of the functionality and return value.
3097 ;;
3098 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3099 ;; of all parens in preprocessor constructs, except for any such construct
3100 ;; containing point. We can then call `c-parse-state-1' without worrying
3101 ;; further about macros and template delimiters.
3102 (let (here-cpp-beg here-cpp-end)
3103 (save-excursion
3104 (when (c-beginning-of-macro)
3105 (setq here-cpp-beg (point))
3106 (unless
3107 (> (setq here-cpp-end (c-syntactic-end-of-macro))
3108 here-cpp-beg)
3109 (setq here-cpp-beg nil here-cpp-end nil))))
3110 ;; FIXME!!! Put in a `condition-case' here to protect the integrity of the
3111 ;; subsystem.
3112 (prog1
3113 (c-with-<->-as-parens-suppressed
3114 (if (and here-cpp-beg (> here-cpp-end here-cpp-beg))
3115 (c-with-all-but-one-cpps-commented-out
3116 here-cpp-beg here-cpp-end
3117 (c-parse-state-1))
3118 (c-with-cpps-commented-out
3119 (c-parse-state-1))))
3e8f7d91
AM
3120 (setq c-state-old-cpp-beg (and here-cpp-beg (copy-marker here-cpp-beg t))
3121 c-state-old-cpp-end (and here-cpp-end (copy-marker here-cpp-end t)))
3122 )))
0ec1d2c5
AM
3123
3124;; Debug tool to catch cache inconsistencies. This is called from
3125;; 000tests.el.
a66cd3ee
MS
3126(defvar c-debug-parse-state nil)
3127(unless (fboundp 'c-real-parse-state)
3128 (fset 'c-real-parse-state (symbol-function 'c-parse-state)))
3129(cc-bytecomp-defun c-real-parse-state)
3130(defun c-debug-parse-state ()
0ec1d2c5 3131 (let ((here (point)) (res1 (c-real-parse-state)) res2)
0386b551 3132 (let ((c-state-cache nil)
0ec1d2c5
AM
3133 (c-state-cache-good-pos 1)
3134 (c-state-nonlit-pos-cache nil)
3135 (c-state-nonlit-pos-cache-limit 1)
3136 (c-state-brace-pair-desert nil)
3137 (c-state-point-min 1)
3138 (c-state-point-min-lit-type nil)
3139 (c-state-point-min-lit-start nil)
3140 (c-state-min-scan-pos 1)
3141 (c-state-old-cpp-beg nil)
3142 (c-state-old-cpp-end nil))
a66cd3ee
MS
3143 (setq res2 (c-real-parse-state)))
3144 (unless (equal res1 res2)
0386b551
AM
3145 ;; The cache can actually go further back due to the ad-hoc way
3146 ;; the first paren is found, so try to whack off a bit of its
3147 ;; start before complaining.
3148 (save-excursion
3149 (goto-char (or (c-least-enclosing-brace res2) (point)))
3150 (c-beginning-of-defun-1)
3151 (while (not (or (bobp) (eq (char-after) ?{)))
3152 (c-beginning-of-defun-1))
3153 (unless (equal (c-whack-state-before (point) res1) res2)
0ec1d2c5 3154 (message (concat "c-parse-state inconsistency at %s: "
0386b551 3155 "using cache: %s, from scratch: %s")
0ec1d2c5 3156 here res1 res2))))
a66cd3ee 3157 res1))
0ec1d2c5 3158
a66cd3ee
MS
3159(defun c-toggle-parse-state-debug (&optional arg)
3160 (interactive "P")
3161 (setq c-debug-parse-state (c-calculate-state arg c-debug-parse-state))
3162 (fset 'c-parse-state (symbol-function (if c-debug-parse-state
3163 'c-debug-parse-state
3164 'c-real-parse-state)))
3165 (c-keep-region-active))
0386b551
AM
3166(when c-debug-parse-state
3167 (c-toggle-parse-state-debug 1))
a66cd3ee 3168
0ec1d2c5 3169\f
d9e94c22
MS
3170(defun c-whack-state-before (bufpos paren-state)
3171 ;; Whack off any state information from PAREN-STATE which lies
3172 ;; before BUFPOS. Not destructive on PAREN-STATE.
d9e94c22
MS
3173 (let* ((newstate (list nil))
3174 (ptr newstate)
3175 car)
3176 (while paren-state
3177 (setq car (car paren-state)
3178 paren-state (cdr paren-state))
3179 (if (< (if (consp car) (car car) car) bufpos)
3180 (setq paren-state nil)
3181 (setcdr ptr (list car))
3182 (setq ptr (cdr ptr))))
3183 (cdr newstate)))
3184
3185(defun c-whack-state-after (bufpos paren-state)
3186 ;; Whack off any state information from PAREN-STATE which lies at or
3187 ;; after BUFPOS. Not destructive on PAREN-STATE.
d9e94c22
MS
3188 (catch 'done
3189 (while paren-state
3190 (let ((car (car paren-state)))
3191 (if (consp car)
3192 ;; just check the car, because in a balanced brace
3193 ;; expression, it must be impossible for the corresponding
3194 ;; close brace to be before point, but the open brace to
3195 ;; be after.
3196 (if (<= bufpos (car car))
3197 nil ; whack it off
3198 (if (< bufpos (cdr car))
3199 ;; its possible that the open brace is before
3200 ;; bufpos, but the close brace is after. In that
3201 ;; case, convert this to a non-cons element. The
3202 ;; rest of the state is before bufpos, so we're
3203 ;; done.
3204 (throw 'done (cons (car car) (cdr paren-state)))
3205 ;; we know that both the open and close braces are
3206 ;; before bufpos, so we also know that everything else
3207 ;; on state is before bufpos.
3208 (throw 'done paren-state)))
3209 (if (<= bufpos car)
3210 nil ; whack it off
3211 ;; it's before bufpos, so everything else should too.
3212 (throw 'done paren-state)))
3213 (setq paren-state (cdr paren-state)))
3214 nil)))
3215
3216(defun c-most-enclosing-brace (paren-state &optional bufpos)
3217 ;; Return the bufpos of the innermost enclosing open paren before
0386b551 3218 ;; bufpos, or nil if none was found.
d9e94c22
MS
3219 (let (enclosingp)
3220 (or bufpos (setq bufpos 134217727))
3221 (while paren-state
3222 (setq enclosingp (car paren-state)
3223 paren-state (cdr paren-state))
3224 (if (or (consp enclosingp)
3225 (>= enclosingp bufpos))
3226 (setq enclosingp nil)
d9e94c22
MS
3227 (setq paren-state nil)))
3228 enclosingp))
3229
0386b551
AM
3230(defun c-least-enclosing-brace (paren-state)
3231 ;; Return the bufpos of the outermost enclosing open paren, or nil
3232 ;; if none was found.
d9e94c22 3233 (let (pos elem)
d9e94c22
MS
3234 (while paren-state
3235 (setq elem (car paren-state)
3236 paren-state (cdr paren-state))
0386b551
AM
3237 (if (integerp elem)
3238 (setq pos elem)))
d9e94c22
MS
3239 pos))
3240
3241(defun c-safe-position (bufpos paren-state)
0386b551
AM
3242 ;; Return the closest "safe" position recorded on PAREN-STATE that
3243 ;; is higher up than BUFPOS. Return nil if PAREN-STATE doesn't
3244 ;; contain any. Return nil if BUFPOS is nil, which is useful to
3245 ;; find the closest limit before a given limit that might be nil.
d9e94c22 3246 ;;
0386b551
AM
3247 ;; A "safe" position is a position at or after a recorded open
3248 ;; paren, or after a recorded close paren. The returned position is
3249 ;; thus either the first position after a close brace, or the first
3250 ;; position after an enclosing paren, or at the enclosing paren in
3251 ;; case BUFPOS is immediately after it.
d9e94c22
MS
3252 (when bufpos
3253 (let (elem)
3254 (catch 'done
3255 (while paren-state
3256 (setq elem (car paren-state))
3257 (if (consp elem)
3258 (cond ((< (cdr elem) bufpos)
3259 (throw 'done (cdr elem)))
3260 ((< (car elem) bufpos)
3261 ;; See below.
3262 (throw 'done (min (1+ (car elem)) bufpos))))
3263 (if (< elem bufpos)
3264 ;; elem is the position at and not after the opening paren, so
3265 ;; we can go forward one more step unless it's equal to
3266 ;; bufpos. This is useful in some cases avoid an extra paren
3267 ;; level between the safe position and bufpos.
3268 (throw 'done (min (1+ elem) bufpos))))
3269 (setq paren-state (cdr paren-state)))))))
3270
3271(defun c-beginning-of-syntax ()
3272 ;; This is used for `font-lock-beginning-of-syntax-function'. It
3273 ;; goes to the closest previous point that is known to be outside
3274 ;; any string literal or comment. `c-state-cache' is used if it has
3275 ;; a position in the vicinity.
3276 (let* ((paren-state c-state-cache)
3277 elem
3278
3279 (pos (catch 'done
3280 ;; Note: Similar code in `c-safe-position'. The
3281 ;; difference is that we accept a safe position at
3282 ;; the point and don't bother to go forward past open
3283 ;; parens.
3284 (while paren-state
3285 (setq elem (car paren-state))
3286 (if (consp elem)
3287 (cond ((<= (cdr elem) (point))
3288 (throw 'done (cdr elem)))
3289 ((<= (car elem) (point))
3290 (throw 'done (car elem))))
3291 (if (<= elem (point))
3292 (throw 'done elem)))
3293 (setq paren-state (cdr paren-state)))
3294 (point-min))))
3295
3296 (if (> pos (- (point) 4000))
3297 (goto-char pos)
3298 ;; The position is far back. Try `c-beginning-of-defun-1'
3299 ;; (although we can't be entirely sure it will go to a position
3300 ;; outside a comment or string in current emacsen). FIXME:
3301 ;; Consult `syntax-ppss' here.
3302 (c-beginning-of-defun-1)
3303 (if (< (point) pos)
3304 (goto-char pos)))))
3305
3306\f
3307;; Tools for scanning identifiers and other tokens.
3308
3309(defun c-on-identifier ()
3310 "Return non-nil if the point is on or directly after an identifier.
3311Keywords are recognized and not considered identifiers. If an
3312identifier is detected, the returned value is its starting position.
0386b551
AM
3313If an identifier ends at the point and another begins at it \(can only
3314happen in Pike) then the point for the preceding one is returned.
d9e94c22 3315
0386b551
AM
3316Note that this function might do hidden buffer changes. See the
3317comment at the start of cc-engine.el for more info."
3318
3319 ;; FIXME: Shouldn't this function handle "operator" in C++?
d9e94c22
MS
3320
3321 (save-excursion
0386b551
AM
3322 (skip-syntax-backward "w_")
3323
3324 (or
3325
3326 ;; Check for a normal (non-keyword) identifier.
3327 (and (looking-at c-symbol-start)
3328 (not (looking-at c-keywords-regexp))
3329 (point))
3330
3331 (when (c-major-mode-is 'pike-mode)
3332 ;; Handle the `<operator> syntax in Pike.
3333 (let ((pos (point)))
3334 (skip-chars-backward "-!%&*+/<=>^|~[]()")
3335 (and (if (< (skip-chars-backward "`") 0)
3336 t
3337 (goto-char pos)
3338 (eq (char-after) ?\`))
3339 (looking-at c-symbol-key)
3340 (>= (match-end 0) pos)
3341 (point))))
3342
3343 ;; Handle the "operator +" syntax in C++.
3344 (when (and c-overloadable-operators-regexp
3345 (= (c-backward-token-2 0) 0))
3346
3347 (cond ((and (looking-at c-overloadable-operators-regexp)
51c9af45 3348 (or (not c-opt-op-identifier-prefix)
0386b551 3349 (and (= (c-backward-token-2 1) 0)
51c9af45 3350 (looking-at c-opt-op-identifier-prefix))))
0386b551
AM
3351 (point))
3352
3353 ((save-excursion
51c9af45
AM
3354 (and c-opt-op-identifier-prefix
3355 (looking-at c-opt-op-identifier-prefix)
0386b551
AM
3356 (= (c-forward-token-2 1) 0)
3357 (looking-at c-overloadable-operators-regexp)))
3358 (point))))
3359
3360 )))
d9e94c22
MS
3361
3362(defsubst c-simple-skip-symbol-backward ()
3363 ;; If the point is at the end of a symbol then skip backward to the
3364 ;; beginning of it. Don't move otherwise. Return non-nil if point
3365 ;; moved.
0386b551
AM
3366 ;;
3367 ;; This function might do hidden buffer changes.
d9e94c22
MS
3368 (or (< (skip-syntax-backward "w_") 0)
3369 (and (c-major-mode-is 'pike-mode)
3370 ;; Handle the `<operator> syntax in Pike.
3371 (let ((pos (point)))
2a15eb73 3372 (if (and (< (skip-chars-backward "-!%&*+/<=>^|~[]()") 0)
d9e94c22
MS
3373 (< (skip-chars-backward "`") 0)
3374 (looking-at c-symbol-key)
3375 (>= (match-end 0) pos))
3376 t
3377 (goto-char pos)
3378 nil)))))
3379
0386b551 3380(defun c-beginning-of-current-token (&optional back-limit)
d9e94c22
MS
3381 ;; Move to the beginning of the current token. Do not move if not
3382 ;; in the middle of one. BACK-LIMIT may be used to bound the
3383 ;; backward search; if given it's assumed to be at the boundary
a85fd6da 3384 ;; between two tokens. Return non-nil if the point is moved, nil
580fba94 3385 ;; otherwise.
0386b551
AM
3386 ;;
3387 ;; This function might do hidden buffer changes.
d9e94c22 3388 (let ((start (point)))
580fba94
AM
3389 (if (looking-at "\\w\\|\\s_")
3390 (skip-syntax-backward "w_" back-limit)
3391 (when (< (skip-syntax-backward ".()" back-limit) 0)
3392 (while (let ((pos (or (and (looking-at c-nonsymbol-token-regexp)
3393 (match-end 0))
3394 ;; `c-nonsymbol-token-regexp' should always match
3395 ;; since we've skipped backward over punctuator
3396 ;; or paren syntax, but consume one char in case
3397 ;; it doesn't so that we don't leave point before
3398 ;; some earlier incorrect token.
3399 (1+ (point)))))
3400 (if (<= pos start)
3401 (goto-char pos))))))
3402 (< (point) start)))
d9e94c22 3403
ff959bab 3404(defun c-end-of-current-token (&optional back-limit)
d9e94c22
MS
3405 ;; Move to the end of the current token. Do not move if not in the
3406 ;; middle of one. BACK-LIMIT may be used to bound the backward
3407 ;; search; if given it's assumed to be at the boundary between two
ff959bab 3408 ;; tokens. Return non-nil if the point is moved, nil otherwise.
0386b551
AM
3409 ;;
3410 ;; This function might do hidden buffer changes.
d9e94c22
MS
3411 (let ((start (point)))
3412 (cond ((< (skip-syntax-backward "w_" (1- start)) 0)
3413 (skip-syntax-forward "w_"))
3414 ((< (skip-syntax-backward ".()" back-limit) 0)
3415 (while (progn
3416 (if (looking-at c-nonsymbol-token-regexp)
3417 (goto-char (match-end 0))
3418 ;; `c-nonsymbol-token-regexp' should always match since
3419 ;; we've skipped backward over punctuator or paren
3420 ;; syntax, but move forward in case it doesn't so that
3421 ;; we don't leave point earlier than we started with.
3422 (forward-char))
ff959bab
MS
3423 (< (point) start)))))
3424 (> (point) start)))
d9e94c22
MS
3425
3426(defconst c-jump-syntax-balanced
3427 (if (memq 'gen-string-delim c-emacs-features)
3428 "\\w\\|\\s_\\|\\s\(\\|\\s\)\\|\\s\"\\|\\s|"
3429 "\\w\\|\\s_\\|\\s\(\\|\\s\)\\|\\s\""))
3430
3431(defconst c-jump-syntax-unbalanced
3432 (if (memq 'gen-string-delim c-emacs-features)
3433 "\\w\\|\\s_\\|\\s\"\\|\\s|"
3434 "\\w\\|\\s_\\|\\s\""))
3435
3436(defun c-forward-token-2 (&optional count balanced limit)
3437 "Move forward by tokens.
3438A token is defined as all symbols and identifiers which aren't
3439syntactic whitespace \(note that multicharacter tokens like \"==\" are
3440treated properly). Point is always either left at the beginning of a
3441token or not moved at all. COUNT specifies the number of tokens to
3442move; a negative COUNT moves in the opposite direction. A COUNT of 0
3443moves to the next token beginning only if not already at one. If
3444BALANCED is true, move over balanced parens, otherwise move into them.
3445Also, if BALANCED is true, never move out of an enclosing paren.
3446
3447LIMIT sets the limit for the movement and defaults to the point limit.
3448The case when LIMIT is set in the middle of a token, comment or macro
3449is handled correctly, i.e. the point won't be left there.
3450
3451Return the number of tokens left to move \(positive or negative). If
3452BALANCED is true, a move over a balanced paren counts as one. Note
3453that if COUNT is 0 and no appropriate token beginning is found, 1 will
3454be returned. Thus, a return value of 0 guarantees that point is at
3455the requested position and a return value less \(without signs) than
0386b551
AM
3456COUNT guarantees that point is at the beginning of some token.
3457
3458Note that this function might do hidden buffer changes. See the
3459comment at the start of cc-engine.el for more info."
d9e94c22
MS
3460
3461 (or count (setq count 1))
3462 (if (< count 0)
3463 (- (c-backward-token-2 (- count) balanced limit))
3464
3465 (let ((jump-syntax (if balanced
3466 c-jump-syntax-balanced
3467 c-jump-syntax-unbalanced))
3468 (last (point))
3469 (prev (point)))
3470
3471 (if (zerop count)
3472 ;; If count is zero we should jump if in the middle of a token.
3473 (c-end-of-current-token))
3474
3475 (save-restriction
3476 (if limit (narrow-to-region (point-min) limit))
3477 (if (/= (point)
3478 (progn (c-forward-syntactic-ws) (point)))
3479 ;; Skip whitespace. Count this as a move if we did in
3480 ;; fact move.
3481 (setq count (max (1- count) 0)))
3482
3483 (if (eobp)
3484 ;; Moved out of bounds. Make sure the returned count isn't zero.
3485 (progn
3486 (if (zerop count) (setq count 1))
3487 (goto-char last))
3488
3489 ;; Use `condition-case' to avoid having the limit tests
3490 ;; inside the loop.
3491 (condition-case nil
3492 (while (and
3493 (> count 0)
3494 (progn
3495 (setq last (point))
3496 (cond ((looking-at jump-syntax)
3497 (goto-char (scan-sexps (point) 1))
3498 t)
3499 ((looking-at c-nonsymbol-token-regexp)
3500 (goto-char (match-end 0))
3501 t)
3502 ;; `c-nonsymbol-token-regexp' above should always
3503 ;; match if there are correct tokens. Try to
3504 ;; widen to see if the limit was set in the
3505 ;; middle of one, else fall back to treating
3506 ;; the offending thing as a one character token.
3507 ((and limit
3508 (save-restriction
3509 (widen)
3510 (looking-at c-nonsymbol-token-regexp)))
3511 nil)
3512 (t
3513 (forward-char)
3514 t))))
3515 (c-forward-syntactic-ws)
3516 (setq prev last
3517 count (1- count)))
3518 (error (goto-char last)))
3519
3520 (when (eobp)
3521 (goto-char prev)
3522 (setq count (1+ count)))))
3523
3524 count)))
3525
3526(defun c-backward-token-2 (&optional count balanced limit)
3527 "Move backward by tokens.
3528See `c-forward-token-2' for details."
3529
3530 (or count (setq count 1))
3531 (if (< count 0)
3532 (- (c-forward-token-2 (- count) balanced limit))
3533
3534 (or limit (setq limit (point-min)))
3535 (let ((jump-syntax (if balanced
3536 c-jump-syntax-balanced
3537 c-jump-syntax-unbalanced))
3538 (last (point)))
3539
3540 (if (zerop count)
3541 ;; The count is zero so try to skip to the beginning of the
3542 ;; current token.
3543 (if (> (point)
3544 (progn (c-beginning-of-current-token) (point)))
3545 (if (< (point) limit)
3546 ;; The limit is inside the same token, so return 1.
3547 (setq count 1))
3548
3549 ;; We're not in the middle of a token. If there's
3550 ;; whitespace after the point then we must move backward,
3551 ;; so set count to 1 in that case.
3552 (and (looking-at c-syntactic-ws-start)
3553 ;; If we're looking at a '#' that might start a cpp
3554 ;; directive then we have to do a more elaborate check.
3555 (or (/= (char-after) ?#)
3556 (not c-opt-cpp-prefix)
3557 (save-excursion
3558 (and (= (point)
3559 (progn (beginning-of-line)
3560 (looking-at "[ \t]*")
3561 (match-end 0)))
3562 (or (bobp)
3563 (progn (backward-char)
3564 (not (eq (char-before) ?\\)))))))
3565 (setq count 1))))
3566
3567 ;; Use `condition-case' to avoid having to check for buffer
3568 ;; limits in `backward-char', `scan-sexps' and `goto-char' below.
3569 (condition-case nil
3570 (while (and
3571 (> count 0)
3572 (progn
3573 (c-backward-syntactic-ws)
3574 (backward-char)
3575 (if (looking-at jump-syntax)
3576 (goto-char (scan-sexps (1+ (point)) -1))
3577 ;; This can be very inefficient if there's a long
3578 ;; sequence of operator tokens without any separation.
3579 ;; That doesn't happen in practice, anyway.
3580 (c-beginning-of-current-token))
3581 (>= (point) limit)))
3582 (setq last (point)
3583 count (1- count)))
3584 (error (goto-char last)))
3585
3586 (if (< (point) limit)
3587 (goto-char last))
3588
3589 count)))
3590
3591(defun c-forward-token-1 (&optional count balanced limit)
3592 "Like `c-forward-token-2' but doesn't treat multicharacter operator
3593tokens like \"==\" as single tokens, i.e. all sequences of symbol
3594characters are jumped over character by character. This function is
3595for compatibility only; it's only a wrapper over `c-forward-token-2'."
3596 (let ((c-nonsymbol-token-regexp "\\s.\\|\\s\(\\|\\s\)"))
3597 (c-forward-token-2 count balanced limit)))
3598
3599(defun c-backward-token-1 (&optional count balanced limit)
3600 "Like `c-backward-token-2' but doesn't treat multicharacter operator
3601tokens like \"==\" as single tokens, i.e. all sequences of symbol
3602characters are jumped over character by character. This function is
3603for compatibility only; it's only a wrapper over `c-backward-token-2'."
3604 (let ((c-nonsymbol-token-regexp "\\s.\\|\\s\(\\|\\s\)"))
3605 (c-backward-token-2 count balanced limit)))
3606
3607\f
3608;; Tools for doing searches restricted to syntactically relevant text.
3609
3610(defun c-syntactic-re-search-forward (regexp &optional bound noerror
3611 paren-level not-inside-token
3612 lookbehind-submatch)
3613 "Like `re-search-forward', but only report matches that are found
3614in syntactically significant text. I.e. matches in comments, macros
3615or string literals are ignored. The start point is assumed to be
3616outside any comment, macro or string literal, or else the content of
3617that region is taken as syntactically significant text.
3618
3619If PAREN-LEVEL is non-nil, an additional restriction is added to
2a15eb73
MS
3620ignore matches in nested paren sexps. The search will also not go
3621outside the current list sexp, which has the effect that if the point
3622should be moved to BOUND when no match is found \(i.e. NOERROR is
3623neither nil nor t), then it will be at the closing paren if the end of
3624the current list sexp is encountered first.
d9e94c22
MS
3625
3626If NOT-INSIDE-TOKEN is non-nil, matches in the middle of tokens are
3627ignored. Things like multicharacter operators and special symbols
3628\(e.g. \"`()\" in Pike) are handled but currently not floating point
3629constants.
3630
3631If LOOKBEHIND-SUBMATCH is non-nil, it's taken as a number of a
3632subexpression in REGEXP. The end of that submatch is used as the
3633position to check for syntactic significance. If LOOKBEHIND-SUBMATCH
3634isn't used or if that subexpression didn't match then the start
3635position of the whole match is used instead. The \"look behind\"
3636subexpression is never tested before the starting position, so it
3637might be a good idea to include \\=\\= as a match alternative in it.
3638
3639Optimization note: Matches might be missed if the \"look behind\"
2a15eb73 3640subexpression can match the end of nonwhite syntactic whitespace,
d9e94c22 3641i.e. the end of comments or cpp directives. This since the function
2a15eb73
MS
3642skips over such things before resuming the search. It's on the other
3643hand not safe to assume that the \"look behind\" subexpression never
3644matches syntactic whitespace.
3645
3646Bug: Unbalanced parens inside cpp directives are currently not handled
3647correctly \(i.e. they don't get ignored as they should) when
0386b551
AM
3648PAREN-LEVEL is set.
3649
3650Note that this function might do hidden buffer changes. See the
3651comment at the start of cc-engine.el for more info."
d9e94c22
MS
3652
3653 (or bound (setq bound (point-max)))
3654 (if paren-level (setq paren-level -1))
3655
3656 ;;(message "c-syntactic-re-search-forward %s %s %S" (point) bound regexp)
3657
3658 (let ((start (point))
2a15eb73
MS
3659 tmp
3660 ;; Start position for the last search.
3661 search-pos
3662 ;; The `parse-partial-sexp' state between the start position
3663 ;; and the point.
3664 state
3665 ;; The current position after the last state update. The next
3666 ;; `parse-partial-sexp' continues from here.
3667 (state-pos (point))
3668 ;; The position at which to check the state and the state
3669 ;; there. This is separate from `state-pos' since we might
3670 ;; need to back up before doing the next search round.
3671 check-pos check-state
3672 ;; Last position known to end a token.
d9e94c22 3673 (last-token-end-pos (point-min))
2a15eb73
MS
3674 ;; Set when a valid match is found.
3675 found)
d9e94c22
MS
3676
3677 (condition-case err
3678 (while
3679 (and
2a15eb73
MS
3680 (progn
3681 (setq search-pos (point))
3682 (re-search-forward regexp bound noerror))
d9e94c22
MS
3683
3684 (progn
2a15eb73
MS
3685 (setq state (parse-partial-sexp
3686 state-pos (match-beginning 0) paren-level nil state)
3687 state-pos (point))
d9e94c22 3688 (if (setq check-pos (and lookbehind-submatch
2a15eb73
MS
3689 (or (not paren-level)
3690 (>= (car state) 0))
d9e94c22
MS
3691 (match-end lookbehind-submatch)))
3692 (setq check-state (parse-partial-sexp
2a15eb73
MS
3693 state-pos check-pos paren-level nil state))
3694 (setq check-pos state-pos
d9e94c22
MS
3695 check-state state))
3696
2a15eb73
MS
3697 ;; NOTE: If we got a look behind subexpression and get
3698 ;; an insignificant match in something that isn't
d9e94c22
MS
3699 ;; syntactic whitespace (i.e. strings or in nested
3700 ;; parentheses), then we can never skip more than a
2a15eb73
MS
3701 ;; single character from the match start position
3702 ;; (i.e. `state-pos' here) before continuing the
3703 ;; search. That since the look behind subexpression
3704 ;; might match the end of the insignificant region in
3705 ;; the next search.
d9e94c22
MS
3706
3707 (cond
d9e94c22
MS
3708 ((elt check-state 7)
3709 ;; Match inside a line comment. Skip to eol. Use
3710 ;; `re-search-forward' instead of `skip-chars-forward' to get
3711 ;; the right bound behavior.
3712 (re-search-forward "[\n\r]" bound noerror))
3713
3714 ((elt check-state 4)
3715 ;; Match inside a block comment. Skip to the '*/'.
3716 (search-forward "*/" bound noerror))
3717
3718 ((and (not (elt check-state 5))
3719 (eq (char-before check-pos) ?/)
2a15eb73 3720 (not (c-get-char-property (1- check-pos) 'syntax-table))
d9e94c22
MS
3721 (memq (char-after check-pos) '(?/ ?*)))
3722 ;; Match in the middle of the opener of a block or line
3723 ;; comment.
3724 (if (= (char-after check-pos) ?/)
3725 (re-search-forward "[\n\r]" bound noerror)
3726 (search-forward "*/" bound noerror)))
3727
2a15eb73
MS
3728 ;; The last `parse-partial-sexp' above might have
3729 ;; stopped short of the real check position if the end
3730 ;; of the current sexp was encountered in paren-level
3731 ;; mode. The checks above are always false in that
3732 ;; case, and since they can do better skipping in
3733 ;; lookbehind-submatch mode, we do them before
3734 ;; checking the paren level.
3735
3736 ((and paren-level
3737 (/= (setq tmp (car check-state)) 0))
3738 ;; Check the paren level first since we're short of the
3739 ;; syntactic checking position if the end of the
3740 ;; current sexp was encountered by `parse-partial-sexp'.
3741 (if (> tmp 0)
3742
3743 ;; Inside a nested paren sexp.
3744 (if lookbehind-submatch
3745 ;; See the NOTE above.
3746 (progn (goto-char state-pos) t)
3747 ;; Skip out of the paren quickly.
3748 (setq state (parse-partial-sexp state-pos bound 0 nil state)
3749 state-pos (point)))
3750
3751 ;; Have exited the current paren sexp.
3752 (if noerror
3753 (progn
3754 ;; The last `parse-partial-sexp' call above
3755 ;; has left us just after the closing paren
3756 ;; in this case, so we can modify the bound
3757 ;; to leave the point at the right position
3758 ;; upon return.
3759 (setq bound (1- (point)))
3760 nil)
3761 (signal 'search-failed (list regexp)))))
3762
3763 ((setq tmp (elt check-state 3))
3764 ;; Match inside a string.
3765 (if (or lookbehind-submatch
3766 (not (integerp tmp)))
3767 ;; See the NOTE above.
3768 (progn (goto-char state-pos) t)
3769 ;; Skip to the end of the string before continuing.
3770 (let ((ender (make-string 1 tmp)) (continue t))
3771 (while (if (search-forward ender bound noerror)
3772 (progn
3773 (setq state (parse-partial-sexp
3774 state-pos (point) nil nil state)
3775 state-pos (point))
3776 (elt state 3))
3777 (setq continue nil)))
3778 continue)))
d9e94c22
MS
3779
3780 ((save-excursion
3781 (save-match-data
3782 (c-beginning-of-macro start)))
3783 ;; Match inside a macro. Skip to the end of it.
3784 (c-end-of-macro)
3785 (cond ((<= (point) bound) t)
3786 (noerror nil)
2a15eb73 3787 (t (signal 'search-failed (list regexp)))))
d9e94c22 3788
2a15eb73
MS
3789 ((and not-inside-token
3790 (or (< check-pos last-token-end-pos)
3791 (< check-pos
3792 (save-excursion
3793 (goto-char check-pos)
3794 (save-match-data
3795 (c-end-of-current-token last-token-end-pos))
3796 (setq last-token-end-pos (point))))))
3797 ;; Inside a token.
3798 (if lookbehind-submatch
3799 ;; See the NOTE above.
3800 (goto-char state-pos)
3801 (goto-char (min last-token-end-pos bound))))
d9e94c22
MS
3802
3803 (t
3804 ;; A real match.
3805 (setq found t)
2a15eb73
MS
3806 nil)))
3807
3808 ;; Should loop to search again, but take care to avoid
3809 ;; looping on the same spot.
3810 (or (/= search-pos (point))
3811 (if (= (point) bound)
3812 (if noerror
3813 nil
3814 (signal 'search-failed (list regexp)))
3815 (forward-char)
3816 t))))
d9e94c22
MS
3817
3818 (error
3819 (goto-char start)
3820 (signal (car err) (cdr err))))
3821
2a15eb73 3822 ;;(message "c-syntactic-re-search-forward done %s" (or (match-end 0) (point)))
d9e94c22
MS
3823
3824 (if found
3825 (progn
2a15eb73
MS
3826 (goto-char (match-end 0))
3827 (match-end 0))
d9e94c22
MS
3828
3829 ;; Search failed. Set point as appropriate.
2a15eb73
MS
3830 (if (eq noerror t)
3831 (goto-char start)
3832 (goto-char bound))
d9e94c22
MS
3833 nil)))
3834
47641aac
GM
3835(defvar safe-pos-list) ; bound in c-syntactic-skip-backward
3836
d0fcee66
AM
3837(defsubst c-ssb-lit-begin ()
3838 ;; Return the start of the literal point is in, or nil.
3839 ;; We read and write the variables `safe-pos', `safe-pos-list', `state'
3840 ;; bound in the caller.
3841
3842 ;; Use `parse-partial-sexp' from a safe position down to the point to check
3843 ;; if it's outside comments and strings.
3844 (save-excursion
3845 (let ((pos (point)) safe-pos state pps-end-pos)
3846 ;; Pick a safe position as close to the point as possible.
3847 ;;
3848 ;; FIXME: Consult `syntax-ppss' here if our cache doesn't give a good
3849 ;; position.
47641aac 3850
d0fcee66
AM
3851 (while (and safe-pos-list
3852 (> (car safe-pos-list) (point)))
3853 (setq safe-pos-list (cdr safe-pos-list)))
3854 (unless (setq safe-pos (car-safe safe-pos-list))
3855 (setq safe-pos (max (or (c-safe-position
3856 (point) (or c-state-cache
3857 (c-parse-state)))
3858 0)
3859 (point-min))
3860 safe-pos-list (list safe-pos)))
3861
3862 ;; Cache positions along the way to use if we have to back up more. We
3863 ;; cache every closing paren on the same level. If the paren cache is
3864 ;; relevant in this region then we're typically already on the same
3865 ;; level as the target position. Note that we might cache positions
3866 ;; after opening parens in case safe-pos is in a nested list. That's
3867 ;; both uncommon and harmless.
3868 (while (progn
3869 (setq state (parse-partial-sexp
3870 safe-pos pos 0))
3871 (< (point) pos))
3872 (setq safe-pos (point)
3873 safe-pos-list (cons safe-pos safe-pos-list)))
3874
3875 ;; If the state contains the start of the containing sexp we cache that
3876 ;; position too, so that parse-partial-sexp in the next run has a bigger
3877 ;; chance of starting at the same level as the target position and thus
3878 ;; will get more good safe positions into the list.
3879 (if (elt state 1)
3880 (setq safe-pos (1+ (elt state 1))
3881 safe-pos-list (cons safe-pos safe-pos-list)))
3882
3883 (if (or (elt state 3) (elt state 4))
3884 ;; Inside string or comment. Continue search at the
3885 ;; beginning of it.
3886 (elt state 8)))))
3887
0386b551 3888(defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
d9e94c22
MS
3889 "Like `skip-chars-backward' but only look at syntactically relevant chars,
3890i.e. don't stop at positions inside syntactic whitespace or string
3891literals. Preprocessor directives are also ignored, with the exception
3892of the one that the point starts within, if any. If LIMIT is given,
0386b551
AM
3893it's assumed to be at a syntactically relevant position.
3894
3895If PAREN-LEVEL is non-nil, the function won't stop in nested paren
3896sexps, and the search will also not go outside the current paren sexp.
3897However, if LIMIT or the buffer limit is reached inside a nested paren
3898then the point will be left at the limit.
3899
3900Non-nil is returned if the point moved, nil otherwise.
3901
3902Note that this function might do hidden buffer changes. See the
3903comment at the start of cc-engine.el for more info."
d9e94c22
MS
3904
3905 (let ((start (point))
d0fcee66 3906 state-2
d9e94c22
MS
3907 ;; A list of syntactically relevant positions in descending
3908 ;; order. It's used to avoid scanning repeatedly over
3909 ;; potentially large regions with `parse-partial-sexp' to verify
d0fcee66 3910 ;; each position. Used in `c-ssb-lit-begin'
d9e94c22
MS
3911 safe-pos-list
3912 ;; The result from `c-beginning-of-macro' at the start position or the
3913 ;; start position itself if it isn't within a macro. Evaluated on
3914 ;; demand.
0386b551
AM
3915 start-macro-beg
3916 ;; The earliest position after the current one with the same paren
3917 ;; level. Used only when `paren-level' is set.
d0fcee66 3918 lit-beg
0386b551 3919 (paren-level-pos (point)))
d9e94c22 3920
d0fcee66
AM
3921 (while
3922 (progn
3923 ;; The next loop "tries" to find the end point each time round,
3924 ;; loops when it hasn't succeeded.
3925 (while
3926 (and
3927 (< (skip-chars-backward skip-chars limit) 0)
3928
3929 (let ((pos (point)) state-2 pps-end-pos)
3930
3931 (cond
3932 ;; Don't stop inside a literal
3933 ((setq lit-beg (c-ssb-lit-begin))
3934 (goto-char lit-beg)
3935 t)
3936
3937 ((and paren-level
3938 (save-excursion
3939 (setq state-2 (parse-partial-sexp
3940 pos paren-level-pos -1)
3941 pps-end-pos (point))
3942 (/= (car state-2) 0)))
3943 ;; Not at the right level.
3944
3945 (if (and (< (car state-2) 0)
3946 ;; We stop above if we go out of a paren.
3947 ;; Now check whether it precedes or is
3948 ;; nested in the starting sexp.
3949 (save-excursion
3950 (setq state-2
3951 (parse-partial-sexp
3952 pps-end-pos paren-level-pos
3953 nil nil state-2))
3954 (< (car state-2) 0)))
3955
3956 ;; We've stopped short of the starting position
3957 ;; so the hit was inside a nested list. Go up
3958 ;; until we are at the right level.
3959 (condition-case nil
3960 (progn
3961 (goto-char (scan-lists pos -1
3962 (- (car state-2))))
3963 (setq paren-level-pos (point))
3964 (if (and limit (>= limit paren-level-pos))
0386b551 3965 (progn
d0fcee66
AM
3966 (goto-char limit)
3967 nil)
3968 t))
3969 (error
3970 (goto-char (or limit (point-min)))
3971 nil))
3972
3973 ;; The hit was outside the list at the start
3974 ;; position. Go to the start of the list and exit.
3975 (goto-char (1+ (elt state-2 1)))
3976 nil))
3977
3978 ((c-beginning-of-macro limit)
3979 ;; Inside a macro.
3980 (if (< (point)
3981 (or start-macro-beg
3982 (setq start-macro-beg
3983 (save-excursion
3984 (goto-char start)
3985 (c-beginning-of-macro limit)
3986 (point)))))
3987 t
3988
3989 ;; It's inside the same macro we started in so it's
3990 ;; a relevant match.
3991 (goto-char pos)
3992 nil))))))
3993
3994 (> (point)
3995 (progn
3996 ;; Skip syntactic ws afterwards so that we don't stop at the
3997 ;; end of a comment if `skip-chars' is something like "^/".
3998 (c-backward-syntactic-ws)
3999 (point)))))
d9e94c22 4000
0386b551
AM
4001 ;; We might want to extend this with more useful return values in
4002 ;; the future.
4003 (/= (point) start)))
4004
4005;; The following is an alternative implementation of
4006;; `c-syntactic-skip-backward' that uses backward movement to keep
4007;; track of the syntactic context. It turned out to be generally
4008;; slower than the one above which uses forward checks from earlier
4009;; safe positions.
4010;;
4011;;(defconst c-ssb-stop-re
4012;; ;; The regexp matching chars `c-syntactic-skip-backward' needs to
4013;; ;; stop at to avoid going into comments and literals.
4014;; (concat
4015;; ;; Match comment end syntax and string literal syntax. Also match
4016;; ;; '/' for block comment endings (not covered by comment end
4017;; ;; syntax).
4018;; "\\s>\\|/\\|\\s\""
4019;; (if (memq 'gen-string-delim c-emacs-features)
4020;; "\\|\\s|"
4021;; "")
4022;; (if (memq 'gen-comment-delim c-emacs-features)
4023;; "\\|\\s!"
4024;; "")))
4025;;
4026;;(defconst c-ssb-stop-paren-re
4027;; ;; Like `c-ssb-stop-re' but also stops at paren chars.
4028;; (concat c-ssb-stop-re "\\|\\s(\\|\\s)"))
4029;;
4030;;(defconst c-ssb-sexp-end-re
4031;; ;; Regexp matching the ending syntax of a complex sexp.
4032;; (concat c-string-limit-regexp "\\|\\s)"))
4033;;
4034;;(defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4035;; "Like `skip-chars-backward' but only look at syntactically relevant chars,
4036;;i.e. don't stop at positions inside syntactic whitespace or string
4037;;literals. Preprocessor directives are also ignored. However, if the
4038;;point is within a comment, string literal or preprocessor directory to
4039;;begin with, its contents is treated as syntactically relevant chars.
4040;;If LIMIT is given, it limits the backward search and the point will be
4041;;left there if no earlier position is found.
4042;;
4043;;If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4044;;sexps, and the search will also not go outside the current paren sexp.
4045;;However, if LIMIT or the buffer limit is reached inside a nested paren
4046;;then the point will be left at the limit.
4047;;
4048;;Non-nil is returned if the point moved, nil otherwise.
4049;;
4050;;Note that this function might do hidden buffer changes. See the
4051;;comment at the start of cc-engine.el for more info."
4052;;
4053;; (save-restriction
4054;; (when limit
4055;; (narrow-to-region limit (point-max)))
4056;;
4057;; (let ((start (point)))
4058;; (catch 'done
4059;; (while (let ((last-pos (point))
4060;; (stop-pos (progn
4061;; (skip-chars-backward skip-chars)
4062;; (point))))
4063;;
4064;; ;; Skip back over the same region as
4065;; ;; `skip-chars-backward' above, but keep to
4066;; ;; syntactically relevant positions.
4067;; (goto-char last-pos)
4068;; (while (and
4069;; ;; `re-search-backward' with a single char regexp
4070;; ;; should be fast.
4071;; (re-search-backward
4072;; (if paren-level c-ssb-stop-paren-re c-ssb-stop-re)
4073;; stop-pos 'move)
4074;;
4075;; (progn
4076;; (cond
4077;; ((looking-at "\\s(")
4078;; ;; `paren-level' is set and we've found the
4079;; ;; start of the containing paren.
4080;; (forward-char)
4081;; (throw 'done t))
4082;;
4083;; ((looking-at c-ssb-sexp-end-re)
4084;; ;; We're at the end of a string literal or paren
4085;; ;; sexp (if `paren-level' is set).
4086;; (forward-char)
4087;; (condition-case nil
4088;; (c-backward-sexp)
4089;; (error
4090;; (goto-char limit)
4091;; (throw 'done t))))
4092;;
4093;; (t
4094;; (forward-char)
4095;; ;; At the end of some syntactic ws or possibly
4096;; ;; after a plain '/' operator.
4097;; (let ((pos (point)))
4098;; (c-backward-syntactic-ws)
4099;; (if (= pos (point))
4100;; ;; Was a plain '/' operator. Go past it.
4101;; (backward-char)))))
4102;;
4103;; (> (point) stop-pos))))
4104;;
4105;; ;; Now the point is either at `stop-pos' or at some
4106;; ;; position further back if `stop-pos' was at a
4107;; ;; syntactically irrelevant place.
4108;;
4109;; ;; Skip additional syntactic ws so that we don't stop
4110;; ;; at the end of a comment if `skip-chars' is
4111;; ;; something like "^/".
4112;; (c-backward-syntactic-ws)
4113;;
4114;; (< (point) stop-pos))))
4115;;
4116;; ;; We might want to extend this with more useful return values
4117;; ;; in the future.
4118;; (/= (point) start))))
d9e94c22
MS
4119
4120\f
4121;; Tools for handling comments and string literals.
4122
4123(defun c-slow-in-literal (&optional lim detect-cpp)
4124 "Return the type of literal point is in, if any.
4125The return value is `c' if in a C-style comment, `c++' if in a C++
4126style comment, `string' if in a string literal, `pound' if DETECT-CPP
4127is non-nil and in a preprocessor line, or nil if somewhere else.
4128Optional LIM is used as the backward limit of the search. If omitted,
4129or nil, `c-beginning-of-defun' is used.
4130
4131The last point calculated is cached if the cache is enabled, i.e. if
4132`c-in-literal-cache' is bound to a two element vector.
4133
0386b551
AM
4134Note that this function might do hidden buffer changes. See the
4135comment at the start of cc-engine.el for more info."
4136
d9e94c22
MS
4137 (if (and (vectorp c-in-literal-cache)
4138 (= (point) (aref c-in-literal-cache 0)))
4139 (aref c-in-literal-cache 1)
4140 (let ((rtn (save-excursion
4141 (let* ((pos (point))
4142 (lim (or lim (progn
4143 (c-beginning-of-syntax)
4144 (point))))
4145 (state (parse-partial-sexp lim pos)))
4146 (cond
4147 ((elt state 3) 'string)
4148 ((elt state 4) (if (elt state 7) 'c++ 'c))
4149 ((and detect-cpp (c-beginning-of-macro lim)) 'pound)
4150 (t nil))))))
4151 ;; cache this result if the cache is enabled
4152 (if (not c-in-literal-cache)
4153 (setq c-in-literal-cache (vector (point) rtn)))
4154 rtn)))
4155
4156;; XEmacs has a built-in function that should make this much quicker.
4157;; I don't think we even need the cache, which makes our lives more
4158;; complicated anyway. In this case, lim is only used to detect
4159;; cpp directives.
4160;;
4161;; Note that there is a bug in Xemacs's buffer-syntactic-context when used in
4162;; conjunction with syntax-table-properties. The bug is present in, e.g.,
4163;; Xemacs 21.4.4. It manifested itself thus:
4164;;
4165;; Starting with an empty AWK Mode buffer, type
4166;; /regexp/ {<C-j>
4167;; Point gets wrongly left at column 0, rather than being indented to tab-width.
4168;;
4169;; AWK Mode is designed such that when the first / is typed, it gets the
4170;; syntax-table property "string fence". When the second / is typed, BOTH /s
4171;; are given the s-t property "string". However, buffer-syntactic-context
4172;; fails to take account of the change of the s-t property on the opening / to
4173;; "string", and reports that the { is within a string started by the second /.
4174;;
4175;; The workaround for this is for the AWK Mode initialisation to switch the
4176;; defalias for c-in-literal to c-slow-in-literal. This will slow down other
4177;; cc-modes in Xemacs whenever an awk-buffer has been initialised.
b414f371 4178;;
d9e94c22
MS
4179;; (Alan Mackenzie, 2003/4/30).
4180
4181(defun c-fast-in-literal (&optional lim detect-cpp)
0386b551 4182 ;; This function might do hidden buffer changes.
d9e94c22
MS
4183 (let ((context (buffer-syntactic-context)))
4184 (cond
4185 ((eq context 'string) 'string)
4186 ((eq context 'comment) 'c++)
4187 ((eq context 'block-comment) 'c)
4188 ((and detect-cpp (save-excursion (c-beginning-of-macro lim))) 'pound))))
4189
4190(defalias 'c-in-literal
4191 (if (fboundp 'buffer-syntactic-context)
7bfc3fdb 4192 'c-fast-in-literal ; XEmacs
d9e94c22
MS
4193 'c-slow-in-literal)) ; GNU Emacs
4194
4195;; The defalias above isn't enough to shut up the byte compiler.
4196(cc-bytecomp-defun c-in-literal)
4197
4198(defun c-literal-limits (&optional lim near not-in-delimiter)
4199 "Return a cons of the beginning and end positions of the comment or
4200string surrounding point (including both delimiters), or nil if point
4201isn't in one. If LIM is non-nil, it's used as the \"safe\" position
4202to start parsing from. If NEAR is non-nil, then the limits of any
4203literal next to point is returned. \"Next to\" means there's only
4204spaces and tabs between point and the literal. The search for such a
4205literal is done first in forward direction. If NOT-IN-DELIMITER is
4206non-nil, the case when point is inside a starting delimiter won't be
a85fd6da 4207recognized. This only has effect for comments which have starting
d9e94c22
MS
4208delimiters with more than one character.
4209
0386b551
AM
4210Note that this function might do hidden buffer changes. See the
4211comment at the start of cc-engine.el for more info."
d9e94c22
MS
4212
4213 (save-excursion
4214 (let* ((pos (point))
4215 (lim (or lim (progn
4216 (c-beginning-of-syntax)
4217 (point))))
4218 (state (parse-partial-sexp lim pos)))
4219
0386b551
AM
4220 (cond ((elt state 3) ; String.
4221 (goto-char (elt state 8))
d9e94c22
MS
4222 (cons (point) (or (c-safe (c-forward-sexp 1) (point))
4223 (point-max))))
4224
0386b551
AM
4225 ((elt state 4) ; Comment.
4226 (goto-char (elt state 8))
d9e94c22
MS
4227 (cons (point) (progn (c-forward-single-comment) (point))))
4228
4229 ((and (not not-in-delimiter)
4230 (not (elt state 5))
4231 (eq (char-before) ?/)
4232 (looking-at "[/*]"))
4233 ;; We're standing in a comment starter.
4234 (backward-char 1)
4235 (cons (point) (progn (c-forward-single-comment) (point))))
4236
4237 (near
4238 (goto-char pos)
4239
4240 ;; Search forward for a literal.
4241 (skip-chars-forward " \t")
4242
4243 (cond
4244 ((looking-at c-string-limit-regexp) ; String.
4245 (cons (point) (or (c-safe (c-forward-sexp 1) (point))
4246 (point-max))))
4247
4248 ((looking-at c-comment-start-regexp) ; Line or block comment.
4249 (cons (point) (progn (c-forward-single-comment) (point))))
4250
4251 (t
4252 ;; Search backward.
4253 (skip-chars-backward " \t")
4254
4255 (let ((end (point)) beg)
4256 (cond
4257 ((save-excursion
4258 (< (skip-syntax-backward c-string-syntax) 0)) ; String.
4259 (setq beg (c-safe (c-backward-sexp 1) (point))))
4260
4261 ((and (c-safe (forward-char -2) t)
4262 (looking-at "*/"))
4263 ;; Block comment. Due to the nature of line
4264 ;; comments, they will always be covered by the
4265 ;; normal case above.
4266 (goto-char end)
4267 (c-backward-single-comment)
4268 ;; If LIM is bogus, beg will be bogus.
4269 (setq beg (point))))
4270
4271 (if beg (cons beg end))))))
4272 ))))
4273
0386b551
AM
4274;; In case external callers use this; it did have a docstring.
4275(defalias 'c-literal-limits-fast 'c-literal-limits)
d9e94c22 4276
0386b551
AM
4277(defun c-collect-line-comments (range)
4278 "If the argument is a cons of two buffer positions (such as returned by
4279`c-literal-limits'), and that range contains a C++ style line comment,
4280then an extended range is returned that contains all adjacent line
4281comments (i.e. all comments that starts in the same column with no
4282empty lines or non-whitespace characters between them). Otherwise the
4283argument is returned.
d9e94c22 4284
0386b551
AM
4285Note that this function might do hidden buffer changes. See the
4286comment at the start of cc-engine.el for more info."
d9e94c22
MS
4287
4288 (save-excursion
0386b551
AM
4289 (condition-case nil
4290 (if (and (consp range) (progn
4291 (goto-char (car range))
4292 (looking-at c-line-comment-starter)))
b414f371 4293 (let ((col (current-column))
0386b551
AM
4294 (beg (point))
4295 (bopl (c-point 'bopl))
4296 (end (cdr range)))
4297 ;; Got to take care in the backward direction to handle
4298 ;; comments which are preceded by code.
4299 (while (and (c-backward-single-comment)
4300 (>= (point) bopl)
4301 (looking-at c-line-comment-starter)
4302 (= col (current-column)))
4303 (setq beg (point)
4304 bopl (c-point 'bopl)))
4305 (goto-char end)
4306 (while (and (progn (skip-chars-forward " \t")
4307 (looking-at c-line-comment-starter))
4308 (= col (current-column))
4309 (prog1 (zerop (forward-line 1))
4310 (setq end (point)))))
4311 (cons beg end))
4312 range)
4313 (error range))))
d9e94c22
MS
4314
4315(defun c-literal-type (range)
4316 "Convenience function that given the result of `c-literal-limits',
a85fd6da
AM
4317returns nil or the type of literal that the range surrounds, one
4318of the symbols 'c, 'c++ or 'string. It's much faster than using
4319`c-in-literal' and is intended to be used when you need both the
4320type of a literal and its limits.
d9e94c22 4321
0386b551
AM
4322Note that this function might do hidden buffer changes. See the
4323comment at the start of cc-engine.el for more info."
4324
d9e94c22
MS
4325 (if (consp range)
4326 (save-excursion
4327 (goto-char (car range))
4328 (cond ((looking-at c-string-limit-regexp) 'string)
4329 ((or (looking-at "//") ; c++ line comment
4330 (and (looking-at "\\s<") ; comment starter
4331 (looking-at "#"))) ; awk comment.
4332 'c++)
4333 (t 'c))) ; Assuming the range is valid.
4334 range))
4335
4336\f
4337;; `c-find-decl-spots' and accompanying stuff.
4338
4339;; Variables used in `c-find-decl-spots' to cache the search done for
4340;; the first declaration in the last call. When that function starts,
4341;; it needs to back up over syntactic whitespace to look at the last
4342;; token before the region being searched. That can sometimes cause
4343;; moves back and forth over a quite large region of comments and
4344;; macros, which would be repeated for each changed character when
4345;; we're called during fontification, since font-lock refontifies the
4346;; current line for each change. Thus it's worthwhile to cache the
4347;; first match.
4348;;
4349;; `c-find-decl-syntactic-pos' is a syntactically relevant position in
4350;; the syntactic whitespace less or equal to some start position.
4351;; There's no cached value if it's nil.
4352;;
4353;; `c-find-decl-match-pos' is the match position if
4354;; `c-find-decl-prefix-search' matched before the syntactic whitespace
4355;; at `c-find-decl-syntactic-pos', or nil if there's no such match.
4356(defvar c-find-decl-syntactic-pos nil)
4357(make-variable-buffer-local 'c-find-decl-syntactic-pos)
4358(defvar c-find-decl-match-pos nil)
4359(make-variable-buffer-local 'c-find-decl-match-pos)
4360
4361(defsubst c-invalidate-find-decl-cache (change-min-pos)
4362 (and c-find-decl-syntactic-pos
4363 (< change-min-pos c-find-decl-syntactic-pos)
4364 (setq c-find-decl-syntactic-pos nil)))
4365
4366; (defface c-debug-decl-spot-face
4367; '((t (:background "Turquoise")))
4368; "Debug face to mark the spots where `c-find-decl-spots' stopped.")
4369; (defface c-debug-decl-sws-face
4370; '((t (:background "Khaki")))
4371; "Debug face to mark the syntactic whitespace between the declaration
4372; spots and the preceding token end.")
4373
4374(defmacro c-debug-put-decl-spot-faces (match-pos decl-pos)
4375 (when (facep 'c-debug-decl-spot-face)
0386b551 4376 `(c-save-buffer-state ((match-pos ,match-pos) (decl-pos ,decl-pos))
d9e94c22
MS
4377 (c-debug-add-face (max match-pos (point-min)) decl-pos
4378 'c-debug-decl-sws-face)
4379 (c-debug-add-face decl-pos (min (1+ decl-pos) (point-max))
4380 'c-debug-decl-spot-face))))
4381(defmacro c-debug-remove-decl-spot-faces (beg end)
4382 (when (facep 'c-debug-decl-spot-face)
0386b551 4383 `(c-save-buffer-state ()
d9e94c22
MS
4384 (c-debug-remove-face ,beg ,end 'c-debug-decl-spot-face)
4385 (c-debug-remove-face ,beg ,end 'c-debug-decl-sws-face))))
4386
4387(defmacro c-find-decl-prefix-search ()
4388 ;; Macro used inside `c-find-decl-spots'. It ought to be a defun,
4389 ;; but it contains lots of free variables that refer to things
4390 ;; inside `c-find-decl-spots'. The point is left at `cfd-match-pos'
4391 ;; if there is a match, otherwise at `cfd-limit'.
0386b551
AM
4392 ;;
4393 ;; This macro might do hidden buffer changes.
d9e94c22
MS
4394
4395 '(progn
4396 ;; Find the next property match position if we haven't got one already.
4397 (unless cfd-prop-match
4398 (save-excursion
4399 (while (progn
4400 (goto-char (next-single-property-change
4401 (point) 'c-type nil cfd-limit))
4402 (and (< (point) cfd-limit)
4403 (not (eq (c-get-char-property (1- (point)) 'c-type)
4404 'c-decl-end)))))
4405 (setq cfd-prop-match (point))))
4406
0386b551
AM
4407 ;; Find the next `c-decl-prefix-or-start-re' match if we haven't
4408 ;; got one already.
d9e94c22 4409 (unless cfd-re-match
0386b551
AM
4410
4411 (if (> cfd-re-match-end (point))
4412 (goto-char cfd-re-match-end))
4413
4414 (while (if (setq cfd-re-match-end
4415 (re-search-forward c-decl-prefix-or-start-re
4416 cfd-limit 'move))
4417
4418 ;; Match. Check if it's inside a comment or string literal.
4419 (c-got-face-at
4420 (if (setq cfd-re-match (match-end 1))
4421 ;; Matched the end of a token preceding a decl spot.
4422 (progn
4423 (goto-char cfd-re-match)
4424 (1- cfd-re-match))
4425 ;; Matched a token that start a decl spot.
4426 (goto-char (match-beginning 0))
4427 (point))
4428 c-literal-faces)
4429
4430 ;; No match. Finish up and exit the loop.
4431 (setq cfd-re-match cfd-limit)
4432 nil)
4433
4434 ;; Skip out of comments and string literals.
d9e94c22
MS
4435 (while (progn
4436 (goto-char (next-single-property-change
0386b551 4437 (point) 'face nil cfd-limit))
d9e94c22 4438 (and (< (point) cfd-limit)
0386b551
AM
4439 (c-got-face-at (point) c-literal-faces)))))
4440
4441 ;; If we matched at the decl start, we have to back up over the
4442 ;; preceding syntactic ws to set `cfd-match-pos' and to catch
4443 ;; any decl spots in the syntactic ws.
d9e94c22 4444 (unless cfd-re-match
0386b551
AM
4445 (c-backward-syntactic-ws)
4446 (setq cfd-re-match (point))))
d9e94c22
MS
4447
4448 ;; Choose whichever match is closer to the start.
4449 (if (< cfd-re-match cfd-prop-match)
4450 (setq cfd-match-pos cfd-re-match
4451 cfd-re-match nil)
4452 (setq cfd-match-pos cfd-prop-match
4453 cfd-prop-match nil))
4454
4455 (goto-char cfd-match-pos)
4456
4457 (when (< cfd-match-pos cfd-limit)
4458 ;; Skip forward past comments only so we don't skip macros.
4459 (c-forward-comments)
4460 ;; Set the position to continue at. We can avoid going over
4461 ;; the comments skipped above a second time, but it's possible
4462 ;; that the comment skipping has taken us past `cfd-prop-match'
4463 ;; since the property might be used inside comments.
4464 (setq cfd-continue-pos (if cfd-prop-match
4465 (min cfd-prop-match (point))
4466 (point))))))
4467
4468(defun c-find-decl-spots (cfd-limit cfd-decl-re cfd-face-checklist cfd-fun)
0386b551 4469 ;; Call CFD-FUN for each possible spot for a declaration, cast or
a85fd6da
AM
4470 ;; label from the point to CFD-LIMIT.
4471 ;;
4472 ;; CFD-FUN is called with point at the start of the spot. It's
4473 ;; passed two arguments: The first is the end position of the token
4474 ;; preceding the spot, or 0 for the implicit match at bob. The
4475 ;; second is a flag that is t when the match is inside a macro. If
4476 ;; CFD-FUN adds `c-decl-end' properties somewhere below the current
4477 ;; spot, it should return non-nil to ensure that the next search
4478 ;; will find them.
0386b551 4479 ;;
a85fd6da 4480 ;; Such a spot is:
0386b551
AM
4481 ;; o The first token after bob.
4482 ;; o The first token after the end of submatch 1 in
4483 ;; `c-decl-prefix-or-start-re' when that submatch matches.
4484 ;; o The start of each `c-decl-prefix-or-start-re' match when
4485 ;; submatch 1 doesn't match.
5a89f0a7 4486 ;; o The first token after the end of each occurrence of the
0386b551
AM
4487 ;; `c-type' text property with the value `c-decl-end', provided
4488 ;; `c-type-decl-end-used' is set.
4489 ;;
4490 ;; Only a spot that match CFD-DECL-RE and whose face is in the
4491 ;; CFD-FACE-CHECKLIST list causes CFD-FUN to be called. The face
4492 ;; check is disabled if CFD-FACE-CHECKLIST is nil.
d9e94c22
MS
4493 ;;
4494 ;; If the match is inside a macro then the buffer is narrowed to the
4495 ;; end of it, so that CFD-FUN can investigate the following tokens
4496 ;; without matching something that begins inside a macro and ends
4497 ;; outside it. It's to avoid this work that the CFD-DECL-RE and
4498 ;; CFD-FACE-CHECKLIST checks exist.
4499 ;;
0386b551
AM
4500 ;; The spots are visited approximately in order from top to bottom.
4501 ;; It's however the positions where `c-decl-prefix-or-start-re'
4502 ;; matches and where `c-decl-end' properties are found that are in
4503 ;; order. Since the spots often are at the following token, they
4504 ;; might be visited out of order insofar as more spots are reported
4505 ;; later on within the syntactic whitespace between the match
4506 ;; positions and their spots.
4507 ;;
4508 ;; It's assumed that comments and strings are fontified in the
d9e94c22
MS
4509 ;; searched range.
4510 ;;
4511 ;; This is mainly used in fontification, and so has an elaborate
4512 ;; cache to handle repeated calls from the same start position; see
4513 ;; the variables above.
4514 ;;
4515 ;; All variables in this function begin with `cfd-' to avoid name
4516 ;; collision with the (dynamically bound) variables used in CFD-FUN.
0386b551
AM
4517 ;;
4518 ;; This function might do hidden buffer changes.
d9e94c22 4519
0386b551
AM
4520 (let ((cfd-start-pos (point))
4521 (cfd-buffer-end (point-max))
4522 ;; The end of the token preceding the decl spot last found
4523 ;; with `c-decl-prefix-or-start-re'. `cfd-limit' if there's
4524 ;; no match.
d9e94c22 4525 cfd-re-match
0386b551
AM
4526 ;; The end position of the last `c-decl-prefix-or-start-re'
4527 ;; match. If this is greater than `cfd-continue-pos', the
4528 ;; next regexp search is started here instead.
4529 (cfd-re-match-end (point-min))
4530 ;; The end of the last `c-decl-end' found by
4531 ;; `c-find-decl-prefix-search'. `cfd-limit' if there's no
4532 ;; match. If searching for the property isn't needed then we
4533 ;; disable it by setting it to `cfd-limit' directly.
d9e94c22 4534 (cfd-prop-match (unless c-type-decl-end-used cfd-limit))
0386b551
AM
4535 ;; The end of the token preceding the decl spot last found by
4536 ;; `c-find-decl-prefix-search'. 0 for the implicit match at
4537 ;; bob. `cfd-limit' if there's no match. In other words,
4538 ;; this is the minimum of `cfd-re-match' and `cfd-prop-match'.
d9e94c22
MS
4539 (cfd-match-pos cfd-limit)
4540 ;; The position to continue searching at.
4541 cfd-continue-pos
4542 ;; The position of the last "real" token we've stopped at.
4543 ;; This can be greater than `cfd-continue-pos' when we get
4544 ;; hits inside macros or at `c-decl-end' positions inside
4545 ;; comments.
4546 (cfd-token-pos 0)
4547 ;; The end position of the last entered macro.
4548 (cfd-macro-end 0))
4549
4550 ;; Initialize by finding a syntactically relevant start position
0386b551
AM
4551 ;; before the point, and do the first `c-decl-prefix-or-start-re'
4552 ;; search unless we're at bob.
d9e94c22 4553
0386b551 4554 (let (start-in-literal start-in-macro syntactic-pos)
d9e94c22
MS
4555 ;; Must back up a bit since we look for the end of the previous
4556 ;; statement or declaration, which is earlier than the first
4557 ;; returned match.
4558
0386b551
AM
4559 (cond
4560 ;; First we need to move to a syntactically relevant position.
4561 ;; Begin by backing out of comment or string literals.
4562 ((and
4563 (when (c-got-face-at (point) c-literal-faces)
4564 ;; Try to use the faces to back up to the start of the
4565 ;; literal. FIXME: What if the point is on a declaration
4566 ;; inside a comment?
4567 (while (and (not (bobp))
4568 (c-got-face-at (1- (point)) c-literal-faces))
4569 (goto-char (previous-single-property-change
4570 (point) 'face nil (point-min))))
4571
4572 ;; XEmacs doesn't fontify the quotes surrounding string
4573 ;; literals.
4574 (and (featurep 'xemacs)
4575 (eq (get-text-property (point) 'face)
4576 'font-lock-string-face)
4577 (not (bobp))
4578 (progn (backward-char)
4579 (not (looking-at c-string-limit-regexp)))
4580 (forward-char))
4581
4582 ;; Don't trust the literal to contain only literal faces
4583 ;; (the font lock package might not have fontified the
4584 ;; start of it at all, for instance) so check that we have
4585 ;; arrived at something that looks like a start or else
4586 ;; resort to `c-literal-limits'.
4587 (unless (looking-at c-literal-start-regexp)
4588 (let ((range (c-literal-limits)))
4589 (if range (goto-char (car range)))))
4590
4591 (setq start-in-literal (point)))
4592
4593 ;; The start is in a literal. If the limit is in the same
4594 ;; one we don't have to find a syntactic position etc. We
4595 ;; only check that if the limit is at or before bonl to save
4596 ;; time; it covers the by far most common case when font-lock
4597 ;; refontifies the current line only.
4598 (<= cfd-limit (c-point 'bonl cfd-start-pos))
4599 (save-excursion
4600 (goto-char cfd-start-pos)
4601 (while (progn
4602 (goto-char (next-single-property-change
4603 (point) 'face nil cfd-limit))
4604 (and (< (point) cfd-limit)
4605 (c-got-face-at (point) c-literal-faces))))
4606 (= (point) cfd-limit)))
4607
4608 ;; Completely inside a literal. Set up variables to trig the
4609 ;; (< cfd-continue-pos cfd-start-pos) case below and it'll
4610 ;; find a suitable start position.
4611 (setq cfd-continue-pos start-in-literal))
4612
4613 ;; Check if the region might be completely inside a macro, to
4614 ;; optimize that like the completely-inside-literal above.
4615 ((save-excursion
4616 (and (= (forward-line 1) 0)
4617 (bolp) ; forward-line has funny behavior at eob.
4618 (>= (point) cfd-limit)
4619 (progn (backward-char)
4620 (eq (char-before) ?\\))))
4621 ;; (Maybe) completely inside a macro. Only need to trig the
4622 ;; (< cfd-continue-pos cfd-start-pos) case below to make it
4623 ;; set things up.
4624 (setq cfd-continue-pos (1- cfd-start-pos)
4625 start-in-macro t))
d9e94c22 4626
0386b551
AM
4627 (t
4628 ;; Back out of any macro so we don't miss any declaration
4629 ;; that could follow after it.
4630 (when (c-beginning-of-macro)
4631 (setq start-in-macro t))
4632
4633 ;; Now we're at a proper syntactically relevant position so we
4634 ;; can use the cache. But first clear it if it applied
4635 ;; further down.
4636 (c-invalidate-find-decl-cache cfd-start-pos)
4637
4638 (setq syntactic-pos (point))
4639 (unless (eq syntactic-pos c-find-decl-syntactic-pos)
4640 ;; Don't have to do this if the cache is relevant here,
4641 ;; typically if the same line is refontified again. If
4642 ;; we're just some syntactic whitespace further down we can
4643 ;; still use the cache to limit the skipping.
4644 (c-backward-syntactic-ws c-find-decl-syntactic-pos))
4645
4646 ;; If we hit `c-find-decl-syntactic-pos' and
4647 ;; `c-find-decl-match-pos' is set then we install the cached
4648 ;; values. If we hit `c-find-decl-syntactic-pos' and
4649 ;; `c-find-decl-match-pos' is nil then we know there's no decl
4650 ;; prefix in the whitespace before `c-find-decl-syntactic-pos'
4651 ;; and so we can continue the search from this point. If we
4652 ;; didn't hit `c-find-decl-syntactic-pos' then we're now in
4653 ;; the right spot to begin searching anyway.
4654 (if (and (eq (point) c-find-decl-syntactic-pos)
4655 c-find-decl-match-pos)
d9e94c22
MS
4656 (setq cfd-match-pos c-find-decl-match-pos
4657 cfd-continue-pos syntactic-pos)
0386b551
AM
4658
4659 (setq c-find-decl-syntactic-pos syntactic-pos)
4660
4661 (when (if (bobp)
4662 ;; Always consider bob a match to get the first
4663 ;; declaration in the file. Do this separately instead of
4664 ;; letting `c-decl-prefix-or-start-re' match bob, so that
4665 ;; regexp always can consume at least one character to
4666 ;; ensure that we won't get stuck in an infinite loop.
4667 (setq cfd-re-match 0)
4668 (backward-char)
4669 (c-beginning-of-current-token)
4670 (< (point) cfd-limit))
4671 ;; Do an initial search now. In the bob case above it's
4672 ;; only done to search for a `c-decl-end' spot.
4673 (c-find-decl-prefix-search))
4674
4675 (setq c-find-decl-match-pos (and (< cfd-match-pos cfd-start-pos)
4676 cfd-match-pos)))))
4677
4678 ;; Advance `cfd-continue-pos' if it's before the start position.
4679 ;; The closest continue position that might have effect at or
4680 ;; after the start depends on what we started in. This also
4681 ;; finds a suitable start position in the special cases when the
4682 ;; region is completely within a literal or macro.
4683 (when (and cfd-continue-pos (< cfd-continue-pos cfd-start-pos))
4684
4685 (cond
4686 (start-in-macro
4687 ;; If we're in a macro then it's the closest preceding token
4688 ;; in the macro. Check this before `start-in-literal',
4689 ;; since if we're inside a literal in a macro, the preceding
4690 ;; token is earlier than any `c-decl-end' spot inside the
4691 ;; literal (comment).
4692 (goto-char (or start-in-literal cfd-start-pos))
4693 ;; The only syntactic ws in macros are comments.
d9e94c22 4694 (c-backward-comments)
0386b551
AM
4695 (backward-char)
4696 (c-beginning-of-current-token))
4697
4698 (start-in-literal
4699 ;; If we're in a comment it can only be the closest
4700 ;; preceding `c-decl-end' position within that comment, if
4701 ;; any. Go back to the beginning of such a property so that
4702 ;; `c-find-decl-prefix-search' will find the end of it.
4703 ;; (Can't stop at the end and install it directly on
4704 ;; `cfd-prop-match' since that variable might be cleared
4705 ;; after `cfd-fun' below.)
4706 ;;
4707 ;; Note that if the literal is a string then the property
4708 ;; search will simply skip to the beginning of it right
4709 ;; away.
4710 (if (not c-type-decl-end-used)
4711 (goto-char start-in-literal)
4712 (goto-char cfd-start-pos)
4713 (while (progn
4714 (goto-char (previous-single-property-change
4715 (point) 'c-type nil start-in-literal))
4716 (and (> (point) start-in-literal)
4717 (not (eq (c-get-char-property (point) 'c-type)
4718 'c-decl-end))))))
4719
4720 (when (= (point) start-in-literal)
4721 ;; Didn't find any property inside the comment, so we can
4722 ;; skip it entirely. (This won't skip past a string, but
4723 ;; that'll be handled quickly by the next
4724 ;; `c-find-decl-prefix-search' anyway.)
4725 (c-forward-single-comment)
4726 (if (> (point) cfd-limit)
4727 (goto-char cfd-limit))))
d9e94c22 4728
0386b551
AM
4729 (t
4730 ;; If we started in normal code, the only match that might
4731 ;; apply before the start is what we already got in
4732 ;; `cfd-match-pos' so we can continue at the start position.
4733 ;; (Note that we don't get here if the first match is below
4734 ;; it.)
4735 (goto-char cfd-start-pos)))
4736
4737 ;; Delete found matches if they are before our new continue
4738 ;; position, so that `c-find-decl-prefix-search' won't back up
4739 ;; to them later on.
4740 (setq cfd-continue-pos (point))
4741 (when (and cfd-re-match (< cfd-re-match cfd-continue-pos))
4742 (setq cfd-re-match nil))
4743 (when (and cfd-prop-match (< cfd-prop-match cfd-continue-pos))
4744 (setq cfd-prop-match nil)))
4745
4746 (if syntactic-pos
4747 ;; This is the normal case and we got a proper syntactic
4748 ;; position. If there's a match then it's always outside
4749 ;; macros and comments, so advance to the next token and set
4750 ;; `cfd-token-pos'. The loop below will later go back using
4751 ;; `cfd-continue-pos' to fix declarations inside the
4752 ;; syntactic ws.
4753 (when (and cfd-match-pos (< cfd-match-pos syntactic-pos))
4754 (goto-char syntactic-pos)
4755 (c-forward-syntactic-ws)
4756 (and cfd-continue-pos
4757 (< cfd-continue-pos (point))
4758 (setq cfd-token-pos (point))))
4759
4760 ;; Have one of the special cases when the region is completely
4761 ;; within a literal or macro. `cfd-continue-pos' is set to a
4762 ;; good start position for the search, so do it.
4763 (c-find-decl-prefix-search)))
d9e94c22 4764
51c9af45 4765 ;; Now loop. Round what? (ACM, 2006/7/5). We already got the first match.
d9e94c22
MS
4766
4767 (while (progn
4768 (while (and
4769 (< cfd-match-pos cfd-limit)
4770
4771 (or
4772 ;; Kludge to filter out matches on the "<" that
4773 ;; aren't open parens, for the sake of languages
4774 ;; that got `c-recognize-<>-arglists' set.
4775 (and (eq (char-before cfd-match-pos) ?<)
4776 (not (c-get-char-property (1- cfd-match-pos)
4777 'syntax-table)))
4778
4779 ;; If `cfd-continue-pos' is less or equal to
4780 ;; `cfd-token-pos', we've got a hit inside a macro
4781 ;; that's in the syntactic whitespace before the last
4782 ;; "real" declaration we've checked. If they're equal
4783 ;; we've arrived at the declaration a second time, so
4784 ;; there's nothing to do.
4785 (= cfd-continue-pos cfd-token-pos)
4786
4787 (progn
4788 ;; If `cfd-continue-pos' is less than `cfd-token-pos'
4789 ;; we're still searching for declarations embedded in
4790 ;; the syntactic whitespace. In that case we need
4791 ;; only to skip comments and not macros, since they
4792 ;; can't be nested, and that's already been done in
4793 ;; `c-find-decl-prefix-search'.
4794 (when (> cfd-continue-pos cfd-token-pos)
4795 (c-forward-syntactic-ws)
4796 (setq cfd-token-pos (point)))
4797
4798 ;; Continue if the following token fails the
4799 ;; CFD-DECL-RE and CFD-FACE-CHECKLIST checks.
4800 (when (or (>= (point) cfd-limit)
4801 (not (looking-at cfd-decl-re))
4802 (and cfd-face-checklist
4803 (not (c-got-face-at
4804 (point) cfd-face-checklist))))
4805 (goto-char cfd-continue-pos)
4806 t)))
4807
4808 (< (point) cfd-limit))
4809 (c-find-decl-prefix-search))
4810
4811 (< (point) cfd-limit))
4812
0386b551
AM
4813 (when (and
4814 (>= (point) cfd-start-pos)
d9e94c22 4815
0386b551
AM
4816 (progn
4817 ;; Narrow to the end of the macro if we got a hit inside
4818 ;; one, to avoid recognizing things that start inside the
4819 ;; macro and end outside it.
4820 (when (> cfd-match-pos cfd-macro-end)
4821 ;; Not in the same macro as in the previous round.
4822 (save-excursion
4823 (goto-char cfd-match-pos)
4824 (setq cfd-macro-end
4825 (if (save-excursion (and (c-beginning-of-macro)
4826 (< (point) cfd-match-pos)))
4827 (progn (c-end-of-macro)
4828 (point))
4829 0))))
4830
4831 (if (zerop cfd-macro-end)
4832 t
4833 (if (> cfd-macro-end (point))
4834 (progn (narrow-to-region (point-min) cfd-macro-end)
4835 t)
4836 ;; The matched token was the last thing in the macro,
4837 ;; so the whole match is bogus.
4838 (setq cfd-macro-end 0)
4839 nil))))
d9e94c22
MS
4840
4841 (c-debug-put-decl-spot-faces cfd-match-pos (point))
0386b551
AM
4842 (if (funcall cfd-fun cfd-match-pos (/= cfd-macro-end 0))
4843 (setq cfd-prop-match nil))
d9e94c22
MS
4844
4845 (when (/= cfd-macro-end 0)
4846 ;; Restore limits if we did macro narrowment above.
4847 (narrow-to-region (point-min) cfd-buffer-end)))
4848
4849 (goto-char cfd-continue-pos)
4850 (if (= cfd-continue-pos cfd-limit)
4851 (setq cfd-match-pos cfd-limit)
4852 (c-find-decl-prefix-search)))))
4853
4854\f
4855;; A cache for found types.
4856
4857;; Buffer local variable that contains an obarray with the types we've
4858;; found. If a declaration is recognized somewhere we record the
4859;; fully qualified identifier in it to recognize it as a type
4860;; elsewhere in the file too. This is not accurate since we do not
4861;; bother with the scoping rules of the languages, but in practice the
4862;; same name is seldom used as both a type and something else in a
4863;; file, and we only use this as a last resort in ambiguous cases (see
0386b551
AM
4864;; `c-forward-decl-or-cast-1').
4865;;
580fba94
AM
4866;; Not every type need be in this cache. However, things which have
4867;; ceased to be types must be removed from it.
4868;;
0386b551
AM
4869;; Template types in C++ are added here too but with the template
4870;; arglist replaced with "<>" in references or "<" for the one in the
4871;; primary type. E.g. the type "Foo<A,B>::Bar<C>" is stored as
4872;; "Foo<>::Bar<". This avoids storing very long strings (since C++
4873;; template specs can be fairly sized programs in themselves) and
4874;; improves the hit ratio (it's a type regardless of the template
4875;; args; it's just not the same type, but we're only interested in
4876;; recognizing types, not telling distinct types apart). Note that
4877;; template types in references are added here too; from the example
4878;; above there will also be an entry "Foo<".
d9e94c22
MS
4879(defvar c-found-types nil)
4880(make-variable-buffer-local 'c-found-types)
4881
4882(defsubst c-clear-found-types ()
4883 ;; Clears `c-found-types'.
d9e94c22
MS
4884 (setq c-found-types (make-vector 53 0)))
4885
4886(defun c-add-type (from to)
4887 ;; Add the given region as a type in `c-found-types'. If the region
4888 ;; doesn't match an existing type but there is a type which is equal
4889 ;; to the given one except that the last character is missing, then
4890 ;; the shorter type is removed. That's done to avoid adding all
4891 ;; prefixes of a type as it's being entered and font locked. This
4892 ;; doesn't cover cases like when characters are removed from a type
4893 ;; or added in the middle. We'd need the position of point when the
4894 ;; font locking is invoked to solve this well.
0386b551
AM
4895 ;;
4896 ;; This function might do hidden buffer changes.
4897 (let ((type (c-syntactic-content from to c-recognize-<>-arglists)))
4898 (unless (intern-soft type c-found-types)
4899 (unintern (substring type 0 -1) c-found-types)
4900 (intern type c-found-types))))
d9e94c22 4901
580fba94
AM
4902(defun c-unfind-type (name)
4903 ;; Remove the "NAME" from c-found-types, if present.
4904 (unintern name c-found-types))
4905
d9e94c22
MS
4906(defsubst c-check-type (from to)
4907 ;; Return non-nil if the given region contains a type in
4908 ;; `c-found-types'.
0386b551
AM
4909 ;;
4910 ;; This function might do hidden buffer changes.
4911 (intern-soft (c-syntactic-content from to c-recognize-<>-arglists)
4912 c-found-types))
d9e94c22
MS
4913
4914(defun c-list-found-types ()
4915 ;; Return all the types in `c-found-types' as a sorted list of
4916 ;; strings.
4917 (let (type-list)
4918 (mapatoms (lambda (type)
4919 (setq type-list (cons (symbol-name type)
4920 type-list)))
4921 c-found-types)
4922 (sort type-list 'string-lessp)))
a66cd3ee 4923
2f42c75f
DN
4924;; Shut up the byte compiler.
4925(defvar c-maybe-stale-found-type)
4926
580fba94
AM
4927(defun c-trim-found-types (beg end old-len)
4928 ;; An after change function which, in conjunction with the info in
4929 ;; c-maybe-stale-found-type (set in c-before-change), removes a type
4930 ;; from `c-found-types', should this type have become stale. For
4931 ;; example, this happens to "foo" when "foo \n bar();" becomes
4932 ;; "foo(); \n bar();". Such stale types, if not removed, foul up
4933 ;; the fontification.
b414f371 4934 ;;
580fba94
AM
4935 ;; Have we, perhaps, added non-ws characters to the front/back of a found
4936 ;; type?
4937 (when (> end beg)
4938 (save-excursion
4939 (when (< end (point-max))
4940 (goto-char end)
4941 (if (and (c-beginning-of-current-token) ; only moves when we started in the middle
4942 (progn (goto-char end)
4943 (c-end-of-current-token)))
4944 (c-unfind-type (buffer-substring-no-properties
4945 end (point)))))
4946 (when (> beg (point-min))
4947 (goto-char beg)
4948 (if (and (c-end-of-current-token) ; only moves when we started in the middle
4949 (progn (goto-char beg)
4950 (c-beginning-of-current-token)))
4951 (c-unfind-type (buffer-substring-no-properties
4952 (point) beg))))))
b414f371 4953
580fba94
AM
4954 (if c-maybe-stale-found-type ; e.g. (c-decl-id-start "foo" 97 107 " (* ooka) " "o")
4955 (cond
4956 ;; Changing the amount of (already existing) whitespace - don't do anything.
4957 ((and (c-partial-ws-p beg end)
4958 (or (= beg end) ; removal of WS
580fba94
AM
4959 (string-match "^[ \t\n\r\f\v]*$" (nth 5 c-maybe-stale-found-type)))))
4960
4961 ;; The syntactic relationship which defined a "found type" has been
4962 ;; destroyed.
4963 ((eq (car c-maybe-stale-found-type) 'c-decl-id-start)
4964 (c-unfind-type (cadr c-maybe-stale-found-type)))
4965;; ((eq (car c-maybe-stale-found-type) 'c-decl-type-start) FIXME!!!
4966 )))
4967
d9e94c22 4968\f
dd969a56
AM
4969;; Setting and removing syntax properties on < and > in languages (C++
4970;; and Java) where they can be template/generic delimiters as well as
4971;; their normal meaning of "less/greater than".
4972
4973;; Normally, < and > have syntax 'punctuation'. When they are found to
4974;; be delimiters, they are marked as such with the category properties
4975;; c-<-as-paren-syntax, c->-as-paren-syntax respectively.
4976
4977;; STRATEGY:
4978;;
4979;; It is impossible to determine with certainty whether a <..> pair in
4980;; C++ is two comparison operators or is template delimiters, unless
4981;; one duplicates a lot of a C++ compiler. For example, the following
4982;; code fragment:
4983;;
4984;; foo (a < b, c > d) ;
4985;;
4986;; could be a function call with two integer parameters (each a
4987;; relational expression), or it could be a constructor for class foo
4988;; taking one parameter d of templated type "a < b, c >". They are
4989;; somewhat easier to distinguish in Java.
4990;;
4991;; The strategy now (2010-01) adopted is to mark and unmark < and
4992;; > IN MATCHING PAIRS ONLY. [Previously, they were marked
4993;; individually when their context so indicated. This gave rise to
4994;; intractible problems when one of a matching pair was deleted, or
4995;; pulled into a literal.]
4996;;
4997;; At each buffer change, the syntax-table properties are removed in a
4998;; before-change function and reapplied, when needed, in an
4999;; after-change function. It is far more important that the
5000;; properties get removed when they they are spurious than that they
5001;; be present when wanted.
5002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5003(defun c-clear-<-pair-props (&optional pos)
5004 ;; POS (default point) is at a < character. If it is marked with
5005 ;; open paren syntax-table text property, remove the property,
5006 ;; together with the close paren property on the matching > (if
5007 ;; any).
5008 (save-excursion
5009 (if pos
5010 (goto-char pos)
5011 (setq pos (point)))
5012 (when (equal (c-get-char-property (point) 'syntax-table)
5013 c-<-as-paren-syntax)
5014 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5015 (c-go-list-forward))
5016 (when (equal (c-get-char-property (1- (point)) 'syntax-table)
5017 c->-as-paren-syntax) ; should always be true.
8a249abc
AM
5018 (c-clear-char-property (1- (point)) 'category))
5019 (c-clear-char-property pos 'category))))
dd969a56
AM
5020
5021(defun c-clear->-pair-props (&optional pos)
5022 ;; POS (default point) is at a > character. If it is marked with
5023 ;; close paren syntax-table property, remove the property, together
5024 ;; with the open paren property on the matching < (if any).
5025 (save-excursion
5026 (if pos
5027 (goto-char pos)
5028 (setq pos (point)))
5029 (when (equal (c-get-char-property (point) 'syntax-table)
5030 c->-as-paren-syntax)
5031 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5032 (c-go-up-list-backward))
5033 (when (equal (c-get-char-property (point) 'syntax-table)
5034 c-<-as-paren-syntax) ; should always be true.
8a249abc
AM
5035 (c-clear-char-property (point) 'category))
5036 (c-clear-char-property pos 'category))))
dd969a56
AM
5037
5038(defun c-clear-<>-pair-props (&optional pos)
5039 ;; POS (default point) is at a < or > character. If it has an
5040 ;; open/close paren syntax-table property, remove this property both
5041 ;; from the current character and its partner (which will also be
5042 ;; thusly marked).
5043 (cond
5044 ((eq (char-after) ?\<)
5045 (c-clear-<-pair-props pos))
5046 ((eq (char-after) ?\>)
5047 (c-clear->-pair-props pos))
5048 (t (c-benign-error
5049 "c-clear-<>-pair-props called from wrong position"))))
5050
5051(defun c-clear-<-pair-props-if-match-after (lim &optional pos)
5052 ;; POS (default point) is at a < character. If it is both marked
5053 ;; with open/close paren syntax-table property, and has a matching >
5054 ;; (also marked) which is after LIM, remove the property both from
43a91810
AM
5055 ;; the current > and its partner. Return t when this happens, nil
5056 ;; when it doesn't.
dd969a56
AM
5057 (save-excursion
5058 (if pos
5059 (goto-char pos)
5060 (setq pos (point)))
5061 (when (equal (c-get-char-property (point) 'syntax-table)
5062 c-<-as-paren-syntax)
5063 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5064 (c-go-list-forward))
5065 (when (and (>= (point) lim)
5066 (equal (c-get-char-property (1- (point)) 'syntax-table)
5067 c->-as-paren-syntax)) ; should always be true.
5068 (c-unmark-<->-as-paren (1- (point)))
43a91810
AM
5069 (c-unmark-<->-as-paren pos))
5070 t)))
dd969a56
AM
5071
5072(defun c-clear->-pair-props-if-match-before (lim &optional pos)
5073 ;; POS (default point) is at a > character. If it is both marked
5074 ;; with open/close paren syntax-table property, and has a matching <
5075 ;; (also marked) which is before LIM, remove the property both from
43a91810
AM
5076 ;; the current < and its partner. Return t when this happens, nil
5077 ;; when it doesn't.
dd969a56
AM
5078 (save-excursion
5079 (if pos
5080 (goto-char pos)
5081 (setq pos (point)))
5082 (when (equal (c-get-char-property (point) 'syntax-table)
5083 c->-as-paren-syntax)
5084 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5085 (c-go-up-list-backward))
5086 (when (and (<= (point) lim)
5087 (equal (c-get-char-property (point) 'syntax-table)
5088 c-<-as-paren-syntax)) ; should always be true.
5089 (c-unmark-<->-as-paren (point))
43a91810
AM
5090 (c-unmark-<->-as-paren pos))
5091 t)))
dd969a56 5092
f3b554af
GM
5093;; Set by c-common-init in cc-mode.el.
5094(defvar c-new-BEG)
5095(defvar c-new-END)
5096
dd969a56
AM
5097(defun c-before-change-check-<>-operators (beg end)
5098 ;; Unmark certain pairs of "< .... >" which are currently marked as
5099 ;; template/generic delimiters. (This marking is via syntax-table
5100 ;; text properties).
5101 ;;
5102 ;; These pairs are those which are in the current "statement" (i.e.,
5103 ;; the region between the {, }, or ; before BEG and the one after
5104 ;; END), and which enclose any part of the interval (BEG END).
5105 ;;
5106 ;; Note that in C++ (?and Java), template/generic parens cannot
5107 ;; enclose a brace or semicolon, so we use these as bounds on the
5108 ;; region we must work on.
5109 ;;
5110 ;; This function is called from before-change-functions (via
5111 ;; c-get-state-before-change-functions). Thus the buffer is widened,
5112 ;; and point is undefined, both at entry and exit.
5113 ;;
5114 ;; FIXME!!! This routine ignores the possibility of macros entirely.
5115 ;; 2010-01-29.
5116 (save-excursion
5117 (let ((beg-lit-limits (progn (goto-char beg) (c-literal-limits)))
43a91810
AM
5118 (end-lit-limits (progn (goto-char end) (c-literal-limits)))
5119 new-beg new-end need-new-beg need-new-end)
dd969a56
AM
5120 ;; Locate the barrier before the changed region
5121 (goto-char (if beg-lit-limits (car beg-lit-limits) beg))
5122 (c-syntactic-skip-backward "^;{}" (max (- beg 2048) (point-min)))
43a91810 5123 (setq new-beg (point))
dd969a56
AM
5124
5125 ;; Remove the syntax-table properties from each pertinent <...> pair.
5126 ;; Firsly, the ones with the < before beg and > after beg.
5127 (while (c-search-forward-char-property 'category 'c-<-as-paren-syntax beg)
43a91810
AM
5128 (if (c-clear-<-pair-props-if-match-after beg (1- (point)))
5129 (setq need-new-beg t)))
dd969a56
AM
5130
5131 ;; Locate the barrier after END.
5132 (goto-char (if end-lit-limits (cdr end-lit-limits) end))
5133 (c-syntactic-re-search-forward "[;{}]"
5134 (min (+ end 2048) (point-max)) 'end)
43a91810 5135 (setq new-end (point))
dd969a56
AM
5136
5137 ;; Remove syntax-table properties from the remaining pertinent <...>
5138 ;; pairs, those with a > after end and < before end.
5139 (while (c-search-backward-char-property 'category 'c->-as-paren-syntax end)
43a91810
AM
5140 (if (c-clear->-pair-props-if-match-before end)
5141 (setq need-new-end t)))
5142
5143 ;; Extend the fontification region, if needed.
5144 (when need-new-beg
5145 (goto-char new-beg)
5146 (c-forward-syntactic-ws)
5147 (and (< (point) c-new-BEG) (setq c-new-BEG (point))))
5148
5149 (when need-new-end
5150 (and (> new-end c-new-END) (setq c-new-END new-end))))))
dd969a56
AM
5151
5152
d9e94c22 5153
0386b551
AM
5154(defun c-after-change-check-<>-operators (beg end)
5155 ;; This is called from `after-change-functions' when
5156 ;; c-recognize-<>-arglists' is set. It ensures that no "<" or ">"
5157 ;; chars with paren syntax become part of another operator like "<<"
5158 ;; or ">=".
5159 ;;
5160 ;; This function might do hidden buffer changes.
5161
cb694ab7
AM
5162 (save-excursion
5163 (goto-char beg)
5164 (when (or (looking-at "[<>]")
5165 (< (skip-chars-backward "<>") 0))
5166
0386b551 5167 (goto-char beg)
cb694ab7
AM
5168 (c-beginning-of-current-token)
5169 (when (and (< (point) beg)
5170 (looking-at c-<>-multichar-token-regexp)
5171 (< beg (setq beg (match-end 0))))
5172 (while (progn (skip-chars-forward "^<>" beg)
5173 (< (point) beg))
dd969a56 5174 (c-clear-<>-pair-props)
cb694ab7
AM
5175 (forward-char))))
5176
5177 (when (< beg end)
5178 (goto-char end)
0386b551
AM
5179 (when (or (looking-at "[<>]")
5180 (< (skip-chars-backward "<>") 0))
5181
cb694ab7 5182 (goto-char end)
0386b551 5183 (c-beginning-of-current-token)
cb694ab7 5184 (when (and (< (point) end)
0386b551 5185 (looking-at c-<>-multichar-token-regexp)
cb694ab7
AM
5186 (< end (setq end (match-end 0))))
5187 (while (progn (skip-chars-forward "^<>" end)
5188 (< (point) end))
dd969a56 5189 (c-clear-<>-pair-props)
cb694ab7 5190 (forward-char)))))))
d9e94c22 5191
dd969a56
AM
5192
5193\f
5194;; Handling of small scale constructs like types and names.
5195
d9e94c22
MS
5196;; Dynamically bound variable that instructs `c-forward-type' to also
5197;; treat possible types (i.e. those that it normally returns 'maybe or
5198;; 'found for) as actual types (and always return 'found for them).
5199;; This means that it records them in `c-record-type-identifiers' if
5200;; that is set, and that it adds them to `c-found-types'.
5201(defvar c-promote-possible-types nil)
5202
0386b551
AM
5203;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
5204;; mark up successfully parsed arglists with paren syntax properties on
5205;; the surrounding angle brackets and with `c-<>-arg-sep' in the
5206;; `c-type' property of each argument separating comma.
5207;;
5208;; Setting this variable also makes `c-forward-<>-arglist' recurse into
5209;; all arglists for side effects (i.e. recording types), otherwise it
5210;; exploits any existing paren syntax properties to quickly jump to the
5211;; end of already parsed arglists.
5212;;
5213;; Marking up the arglists is not the default since doing that correctly
5214;; depends on a proper value for `c-restricted-<>-arglists'.
5215(defvar c-parse-and-markup-<>-arglists nil)
5216
d9e94c22 5217;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
037558bf
MS
5218;; not accept arglists that contain binary operators.
5219;;
5220;; This is primarily used to handle C++ template arglists. C++
5221;; disambiguates them by checking whether the preceding name is a
5222;; template or not. We can't do that, so we assume it is a template
5223;; if it can be parsed as one. That usually works well since
5224;; comparison expressions on the forms "a < b > c" or "a < b, c > d"
5225;; in almost all cases would be pointless.
5226;;
5227;; However, in function arglists, e.g. in "foo (a < b, c > d)", we
5228;; should let the comma separate the function arguments instead. And
5229;; in a context where the value of the expression is taken, e.g. in
5230;; "if (a < b || c > d)", it's probably not a template.
5231(defvar c-restricted-<>-arglists nil)
d9e94c22 5232
0386b551
AM
5233;; Dynamically bound variables that instructs
5234;; `c-forward-keyword-clause', `c-forward-<>-arglist',
5235;; `c-forward-name', `c-forward-type', `c-forward-decl-or-cast-1', and
5236;; `c-forward-label' to record the ranges of all the type and
5237;; reference identifiers they encounter. They will build lists on
5238;; these variables where each element is a cons of the buffer
5239;; positions surrounding each identifier. This recording is only
5240;; activated when `c-record-type-identifiers' is non-nil.
d9e94c22
MS
5241;;
5242;; All known types that can't be identifiers are recorded, and also
5243;; other possible types if `c-promote-possible-types' is set.
5244;; Recording is however disabled inside angle bracket arglists that
5245;; are encountered inside names and other angle bracket arglists.
0386b551 5246;; Such occurrences are taken care of by `c-font-lock-<>-arglists'
d9e94c22
MS
5247;; instead.
5248;;
5249;; Only the names in C++ template style references (e.g. "tmpl" in
5250;; "tmpl<a,b>::foo") are recorded as references, other references
5251;; aren't handled here.
0386b551
AM
5252;;
5253;; `c-forward-label' records the label identifier(s) on
5254;; `c-record-ref-identifiers'.
d9e94c22
MS
5255(defvar c-record-type-identifiers nil)
5256(defvar c-record-ref-identifiers nil)
5257
0386b551
AM
5258;; This variable will receive a cons cell of the range of the last
5259;; single identifier symbol stepped over by `c-forward-name' if it's
5260;; successful. This is the range that should be put on one of the
5261;; record lists above by the caller. It's assigned nil if there's no
5262;; such symbol in the name.
d9e94c22
MS
5263(defvar c-last-identifier-range nil)
5264
5265(defmacro c-record-type-id (range)
5266 (if (eq (car-safe range) 'cons)
5267 ;; Always true.
5268 `(setq c-record-type-identifiers
5269 (cons ,range c-record-type-identifiers))
5270 `(let ((range ,range))
5271 (if range
5272 (setq c-record-type-identifiers
5273 (cons range c-record-type-identifiers))))))
5274
5275(defmacro c-record-ref-id (range)
5276 (if (eq (car-safe range) 'cons)
5277 ;; Always true.
5278 `(setq c-record-ref-identifiers
5279 (cons ,range c-record-ref-identifiers))
5280 `(let ((range ,range))
5281 (if range
5282 (setq c-record-ref-identifiers
5283 (cons range c-record-ref-identifiers))))))
5284
5285;; Dynamically bound variable that instructs `c-forward-type' to
5286;; record the ranges of types that only are found. Behaves otherwise
5287;; like `c-record-type-identifiers'.
5288(defvar c-record-found-types nil)
5289
5290(defmacro c-forward-keyword-prefixed-id (type)
5291 ;; Used internally in `c-forward-keyword-clause' to move forward
5292 ;; over a type (if TYPE is 'type) or a name (otherwise) which
5293 ;; possibly is prefixed by keywords and their associated clauses.
5294 ;; Try with a type/name first to not trip up on those that begin
5295 ;; with a keyword. Return t if a known or found type is moved
5296 ;; over. The point is clobbered if nil is returned. If range
5297 ;; recording is enabled, the identifier is recorded on as a type
5298 ;; if TYPE is 'type or as a reference if TYPE is 'ref.
0386b551
AM
5299 ;;
5300 ;; This macro might do hidden buffer changes.
d9e94c22
MS
5301 `(let (res)
5302 (while (if (setq res ,(if (eq type 'type)
5303 `(c-forward-type)
5304 `(c-forward-name)))
5305 nil
5306 (and (looking-at c-keywords-regexp)
0386b551 5307 (c-forward-keyword-clause 1))))
d9e94c22
MS
5308 (when (memq res '(t known found prefix))
5309 ,(when (eq type 'ref)
5310 `(when c-record-type-identifiers
5311 (c-record-ref-id c-last-identifier-range)))
5312 t)))
5313
0386b551 5314(defmacro c-forward-id-comma-list (type update-safe-pos)
d9e94c22
MS
5315 ;; Used internally in `c-forward-keyword-clause' to move forward
5316 ;; over a comma separated list of types or names using
5317 ;; `c-forward-keyword-prefixed-id'.
0386b551
AM
5318 ;;
5319 ;; This macro might do hidden buffer changes.
d9e94c22 5320 `(while (and (progn
0386b551
AM
5321 ,(when update-safe-pos
5322 `(setq safe-pos (point)))
d9e94c22
MS
5323 (eq (char-after) ?,))
5324 (progn
5325 (forward-char)
5326 (c-forward-syntactic-ws)
5327 (c-forward-keyword-prefixed-id ,type)))))
5328
0386b551
AM
5329(defun c-forward-keyword-clause (match)
5330 ;; Submatch MATCH in the current match data is assumed to surround a
5331 ;; token. If it's a keyword, move over it and any immediately
5332 ;; following clauses associated with it, stopping at the start of
5333 ;; the next token. t is returned in that case, otherwise the point
d9e94c22
MS
5334 ;; stays and nil is returned. The kind of clauses that are
5335 ;; recognized are those specified by `c-type-list-kwds',
5336 ;; `c-ref-list-kwds', `c-colon-type-list-kwds',
5337 ;; `c-paren-nontype-kwds', `c-paren-type-kwds', `c-<>-type-kwds',
5338 ;; and `c-<>-arglist-kwds'.
0386b551
AM
5339 ;;
5340 ;; This function records identifier ranges on
5341 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5342 ;; `c-record-type-identifiers' is non-nil.
5343 ;;
5344 ;; Note that for `c-colon-type-list-kwds', which doesn't necessary
5345 ;; apply directly after the keyword, the type list is moved over
5346 ;; only when there is no unaccounted token before it (i.e. a token
5347 ;; that isn't moved over due to some other keyword list). The
5348 ;; identifier ranges in the list are still recorded if that should
5349 ;; be done, though.
5350 ;;
5351 ;; This function might do hidden buffer changes.
5352
5353 (let ((kwd-sym (c-keyword-sym (match-string match))) safe-pos pos
5354 ;; The call to `c-forward-<>-arglist' below is made after
5355 ;; `c-<>-sexp-kwds' keywords, so we're certain they actually
5356 ;; are angle bracket arglists and `c-restricted-<>-arglists'
5357 ;; should therefore be nil.
5358 (c-parse-and-markup-<>-arglists t)
5359 c-restricted-<>-arglists)
d9e94c22 5360
d9e94c22 5361 (when kwd-sym
0386b551 5362 (goto-char (match-end match))
d9e94c22
MS
5363 (c-forward-syntactic-ws)
5364 (setq safe-pos (point))
a66cd3ee 5365
d9e94c22
MS
5366 (cond
5367 ((and (c-keyword-member kwd-sym 'c-type-list-kwds)
5368 (c-forward-keyword-prefixed-id type))
5369 ;; There's a type directly after a keyword in `c-type-list-kwds'.
0386b551 5370 (c-forward-id-comma-list type t))
d9e94c22
MS
5371
5372 ((and (c-keyword-member kwd-sym 'c-ref-list-kwds)
5373 (c-forward-keyword-prefixed-id ref))
5374 ;; There's a name directly after a keyword in `c-ref-list-kwds'.
0386b551 5375 (c-forward-id-comma-list ref t))
d9e94c22
MS
5376
5377 ((and (c-keyword-member kwd-sym 'c-paren-any-kwds)
5378 (eq (char-after) ?\())
5379 ;; There's an open paren after a keyword in `c-paren-any-kwds'.
5380
5381 (forward-char)
5382 (when (and (setq pos (c-up-list-forward))
5383 (eq (char-before pos) ?\)))
5384 (when (and c-record-type-identifiers
5385 (c-keyword-member kwd-sym 'c-paren-type-kwds))
5386 ;; Use `c-forward-type' on every identifier we can find
5387 ;; inside the paren, to record the types.
5388 (while (c-syntactic-re-search-forward c-symbol-start pos t)
5389 (goto-char (match-beginning 0))
5390 (unless (c-forward-type)
5391 (looking-at c-symbol-key) ; Always matches.
5392 (goto-char (match-end 0)))))
5393
5394 (goto-char pos)
5395 (c-forward-syntactic-ws)
5396 (setq safe-pos (point))))
5397
5398 ((and (c-keyword-member kwd-sym 'c-<>-sexp-kwds)
5399 (eq (char-after) ?<)
0386b551 5400 (c-forward-<>-arglist (c-keyword-member kwd-sym 'c-<>-type-kwds)))
d9e94c22
MS
5401 (c-forward-syntactic-ws)
5402 (setq safe-pos (point)))
5403
5404 ((and (c-keyword-member kwd-sym 'c-nonsymbol-sexp-kwds)
449a2b0d
MS
5405 (not (looking-at c-symbol-start))
5406 (c-safe (c-forward-sexp) t))
d9e94c22
MS
5407 (c-forward-syntactic-ws)
5408 (setq safe-pos (point))))
5409
0386b551
AM
5410 (when (c-keyword-member kwd-sym 'c-colon-type-list-kwds)
5411 (if (eq (char-after) ?:)
5412 ;; If we are at the colon already, we move over the type
5413 ;; list after it.
5414 (progn
5415 (forward-char)
5416 (c-forward-syntactic-ws)
5417 (when (c-forward-keyword-prefixed-id type)
5418 (c-forward-id-comma-list type t)))
5419 ;; Not at the colon, so stop here. But the identifier
5420 ;; ranges in the type list later on should still be
5421 ;; recorded.
5422 (and c-record-type-identifiers
5423 (progn
5424 ;; If a keyword matched both one of the types above and
5425 ;; this one, we match `c-colon-type-list-re' after the
5426 ;; clause matched above.
5427 (goto-char safe-pos)
5428 (looking-at c-colon-type-list-re))
5429 (progn
5430 (goto-char (match-end 0))
5431 (c-forward-syntactic-ws)
5432 (c-forward-keyword-prefixed-id type))
5433 ;; There's a type after the `c-colon-type-list-re' match
5434 ;; after a keyword in `c-colon-type-list-kwds'.
5435 (c-forward-id-comma-list type nil))))
d9e94c22
MS
5436
5437 (goto-char safe-pos)
5438 t)))
5439
f3b554af
GM
5440;; cc-mode requires cc-fonts.
5441(declare-function c-fontify-recorded-types-and-refs "cc-fonts" ())
5442
0386b551
AM
5443(defun c-forward-<>-arglist (all-types)
5444 ;; The point is assumed to be at a "<". Try to treat it as the open
b4dc7d98 5445 ;; paren of an angle bracket arglist and move forward to the
0386b551
AM
5446 ;; corresponding ">". If successful, the point is left after the
5447 ;; ">" and t is returned, otherwise the point isn't moved and nil is
d9e94c22
MS
5448 ;; returned. If ALL-TYPES is t then all encountered arguments in
5449 ;; the arglist that might be types are treated as found types.
5450 ;;
0386b551
AM
5451 ;; The variable `c-parse-and-markup-<>-arglists' controls how this
5452 ;; function handles text properties on the angle brackets and argument
5453 ;; separating commas.
d9e94c22 5454 ;;
0386b551
AM
5455 ;; `c-restricted-<>-arglists' controls how lenient the template
5456 ;; arglist recognition should be.
5457 ;;
5458 ;; This function records identifier ranges on
5459 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5460 ;; `c-record-type-identifiers' is non-nil.
5461 ;;
5462 ;; This function might do hidden buffer changes.
d9e94c22
MS
5463
5464 (let ((start (point))
5465 ;; If `c-record-type-identifiers' is set then activate
5466 ;; recording of any found types that constitute an argument in
5467 ;; the arglist.
abfc152b 5468 (c-record-found-types (if c-record-type-identifiers t)))
d9e94c22
MS
5469 (if (catch 'angle-bracket-arglist-escape
5470 (setq c-record-found-types
0386b551 5471 (c-forward-<>-arglist-recur all-types)))
d9e94c22
MS
5472 (progn
5473 (when (consp c-record-found-types)
5474 (setq c-record-type-identifiers
5475 ;; `nconc' doesn't mind that the tail of
5476 ;; `c-record-found-types' is t.
5477 (nconc c-record-found-types c-record-type-identifiers)))
452ea855 5478 (if (c-major-mode-is 'java-mode) (c-fontify-recorded-types-and-refs))
d9e94c22
MS
5479 t)
5480
5481 (goto-char start)
a66cd3ee 5482 nil)))
785eecbb 5483
0386b551 5484(defun c-forward-<>-arglist-recur (all-types)
d9e94c22 5485 ;; Recursive part of `c-forward-<>-arglist'.
0386b551
AM
5486 ;;
5487 ;; This function might do hidden buffer changes.
d9e94c22
MS
5488
5489 (let ((start (point)) res pos tmp
5490 ;; Cover this so that any recorded found type ranges are
5491 ;; automatically lost if it turns out to not be an angle
5492 ;; bracket arglist. It's propagated through the return value
5493 ;; on successful completion.
5494 (c-record-found-types c-record-found-types)
5495 ;; List that collects the positions after the argument
5496 ;; separating ',' in the arglist.
5497 arg-start-pos)
0386b551
AM
5498 ;; If the '<' has paren open syntax then we've marked it as an angle
5499 ;; bracket arglist before, so skip to the end.
5500 (if (and (not c-parse-and-markup-<>-arglists)
5501 (c-get-char-property (point) 'syntax-table))
5502
5503 (progn
5504 (forward-char)
5505 (if (and (c-go-up-list-forward)
5506 (eq (char-before) ?>))
5507 t
0386b551
AM
5508 ;; Got unmatched paren angle brackets. We don't clear the paren
5509 ;; syntax properties and retry, on the basis that it's very
5510 ;; unlikely that paren angle brackets become operators by code
5511 ;; manipulation. It's far more likely that it doesn't match due
5512 ;; to narrowing or some temporary change.
5513 (goto-char start)
5514 nil))
d9e94c22 5515
abfc152b 5516 (forward-char) ; Forward over the opening '<'.
452ea855 5517
d9e94c22 5518 (unless (looking-at c-<-op-cont-regexp)
abfc152b
AM
5519 ;; go forward one non-alphanumeric character (group) per iteration of
5520 ;; this loop.
22c3ce97 5521 (while (and
d9e94c22 5522 (progn
22c3ce97
AM
5523 (c-forward-syntactic-ws)
5524 (let ((orig-record-found-types c-record-found-types))
5525 (when (or (and c-record-type-identifiers all-types)
5526 (c-major-mode-is 'java-mode))
5527 ;; All encountered identifiers are types, so set the
5528 ;; promote flag and parse the type.
5529 (progn
5530 (c-forward-syntactic-ws)
5531 (if (looking-at "\\?")
5532 (forward-char)
5533 (when (looking-at c-identifier-start)
5534 (let ((c-promote-possible-types t)
5535 (c-record-found-types t))
5536 (c-forward-type))))
5537
5538 (c-forward-syntactic-ws)
5539
5540 (when (or (looking-at "extends")
5541 (looking-at "super"))
5542 (forward-word)
5543 (c-forward-syntactic-ws)
5544 (let ((c-promote-possible-types t)
5545 (c-record-found-types t))
5546 (c-forward-type)
5547 (c-forward-syntactic-ws))))))
5548
abfc152b 5549 (setq pos (point)) ; e.g. first token inside the '<'
22c3ce97 5550
a4ee83cc
AM
5551 ;; Note: These regexps exploit the match order in \| so
5552 ;; that "<>" is matched by "<" rather than "[^>:-]>".
5553 (c-syntactic-re-search-forward
5554 ;; Stop on ',', '|', '&', '+' and '-' to catch
5555 ;; common binary operators that could be between
5556 ;; two comparison expressions "a<b" and "c>d".
5557 "[<;{},|+&-]\\|[>)]"
5558 nil t t))
22c3ce97
AM
5559
5560 (cond
5561 ((eq (char-before) ?>)
d9e94c22
MS
5562 ;; Either an operator starting with '>' or the end of
5563 ;; the angle bracket arglist.
5564
0386b551 5565 (if (looking-at c->-op-cont-regexp)
d9e94c22 5566 (progn
0386b551
AM
5567 (goto-char (match-end 0))
5568 t) ; Continue the loop.
d9e94c22 5569
0386b551
AM
5570 ;; The angle bracket arglist is finished.
5571 (when c-parse-and-markup-<>-arglists
d9e94c22 5572 (while arg-start-pos
0386b551
AM
5573 (c-put-c-type-property (1- (car arg-start-pos))
5574 'c-<>-arg-sep)
d9e94c22
MS
5575 (setq arg-start-pos (cdr arg-start-pos)))
5576 (c-mark-<-as-paren start)
0386b551
AM
5577 (c-mark->-as-paren (1- (point))))
5578 (setq res t)
5579 nil)) ; Exit the loop.
d9e94c22
MS
5580
5581 ((eq (char-before) ?<)
5582 ;; Either an operator starting with '<' or a nested arglist.
d9e94c22
MS
5583 (setq pos (point))
5584 (let (id-start id-end subres keyword-match)
abfc152b
AM
5585 (cond
5586 ;; The '<' begins a multi-char operator.
5587 ((looking-at c-<-op-cont-regexp)
5588 (setq tmp (match-end 0))
5589 (goto-char (match-end 0)))
5590 ;; We're at a nested <.....>
5591 ((progn
5592 (setq tmp pos)
5593 (backward-char) ; to the '<'
5594 (and
5595 (save-excursion
5596 ;; There's always an identifier before an angle
5597 ;; bracket arglist, or a keyword in `c-<>-type-kwds'
5598 ;; or `c-<>-arglist-kwds'.
5599 (c-backward-syntactic-ws)
5600 (setq id-end (point))
5601 (c-simple-skip-symbol-backward)
5602 (when (or (setq keyword-match
5603 (looking-at c-opt-<>-sexp-key))
5604 (not (looking-at c-keywords-regexp)))
5605 (setq id-start (point))))
5606 (setq subres
5607 (let ((c-promote-possible-types t)
5608 (c-record-found-types t))
5609 (c-forward-<>-arglist-recur
5610 (and keyword-match
5611 (c-keyword-member
5612 (c-keyword-sym (match-string 1))
5613 'c-<>-type-kwds)))))))
d9e94c22
MS
5614
5615 ;; It was an angle bracket arglist.
5616 (setq c-record-found-types subres)
5617
5618 ;; Record the identifier before the template as a type
5619 ;; or reference depending on whether the arglist is last
5620 ;; in a qualified identifier.
5621 (when (and c-record-type-identifiers
5622 (not keyword-match))
5623 (if (and c-opt-identifier-concat-key
5624 (progn
5625 (c-forward-syntactic-ws)
5626 (looking-at c-opt-identifier-concat-key)))
5627 (c-record-ref-id (cons id-start id-end))
abfc152b
AM
5628 (c-record-type-id (cons id-start id-end)))))
5629
5630 ;; At a "less than" operator.
5631 (t
5632 (forward-char)
5633 )))
5634 t) ; carry on looping.
22c3ce97
AM
5635
5636 ((and (not c-restricted-<>-arglists)
5637 (or (and (eq (char-before) ?&)
5638 (not (eq (char-after) ?&)))
5639 (eq (char-before) ?,)))
5640 ;; Just another argument. Record the position. The
5641 ;; type check stuff that made us stop at it is at
5642 ;; the top of the loop.
d9e94c22
MS
5643 (setq arg-start-pos (cons (point) arg-start-pos)))
5644
5645 (t
5646 ;; Got a character that can't be in an angle bracket
5647 ;; arglist argument. Abort using `throw', since
5648 ;; it's useless to try to find a surrounding arglist
5649 ;; if we're nested.
5650 (throw 'angle-bracket-arglist-escape nil))))))
d9e94c22
MS
5651 (if res
5652 (or c-record-found-types t)))))
5653
0386b551
AM
5654(defun c-backward-<>-arglist (all-types &optional limit)
5655 ;; The point is assumed to be directly after a ">". Try to treat it
5656 ;; as the close paren of an angle bracket arglist and move back to
5657 ;; the corresponding "<". If successful, the point is left at
5658 ;; the "<" and t is returned, otherwise the point isn't moved and
5659 ;; nil is returned. ALL-TYPES is passed on to
5660 ;; `c-forward-<>-arglist'.
5661 ;;
5662 ;; If the optional LIMIT is given, it bounds the backward search.
5663 ;; It's then assumed to be at a syntactically relevant position.
5664 ;;
5665 ;; This is a wrapper around `c-forward-<>-arglist'. See that
5666 ;; function for more details.
5667
5668 (let ((start (point)))
5669 (backward-char)
5670 (if (and (not c-parse-and-markup-<>-arglists)
5671 (c-get-char-property (point) 'syntax-table))
5672
5673 (if (and (c-go-up-list-backward)
5674 (eq (char-after) ?<))
5675 t
5676 ;; See corresponding note in `c-forward-<>-arglist'.
5677 (goto-char start)
5678 nil)
5679
51c9af45 5680 (while (progn
0386b551
AM
5681 (c-syntactic-skip-backward "^<;{}" limit t)
5682
51c9af45
AM
5683 (and
5684 (if (eq (char-before) ?<)
5685 t
5686 ;; Stopped at bob or a char that isn't allowed in an
5687 ;; arglist, so we've failed.
5688 (goto-char start)
5689 nil)
0386b551 5690
51c9af45
AM
5691 (if (> (point)
5692 (progn (c-beginning-of-current-token)
5693 (point)))
5694 ;; If we moved then the "<" was part of some
5695 ;; multicharacter token.
5696 t
0386b551 5697
51c9af45
AM
5698 (backward-char)
5699 (let ((beg-pos (point)))
5700 (if (c-forward-<>-arglist all-types)
5701 (cond ((= (point) start)
5702 ;; Matched the arglist. Break the while.
5703 (goto-char beg-pos)
5704 nil)
5705 ((> (point) start)
5706 ;; We started from a non-paren ">" inside an
5707 ;; arglist.
5708 (goto-char start)
5709 nil)
5710 (t
5711 ;; Matched a shorter arglist. Can be a nested
5712 ;; one so continue looking.
5713 (goto-char beg-pos)
5714 t))
5715 t))))))
0386b551
AM
5716
5717 (/= (point) start))))
5718
d9e94c22
MS
5719(defun c-forward-name ()
5720 ;; Move forward over a complete name if at the beginning of one,
e15f8aaa
AM
5721 ;; stopping at the next following token. A keyword, as such,
5722 ;; doesn't count as a name. If the point is not at something that
5723 ;; is recognized as a name then it stays put.
5724 ;;
5725 ;; A name could be something as simple as "foo" in C or something as
d9e94c22
MS
5726 ;; complex as "X<Y<class A<int>::B, BIT_MAX >> b>, ::operator<> ::
5727 ;; Z<(a>b)> :: operator const X<&foo>::T Q::G<unsigned short
5728 ;; int>::*volatile const" in C++ (this function is actually little
5729 ;; more than a `looking-at' call in all modes except those that,
e15f8aaa
AM
5730 ;; like C++, have `c-recognize-<>-arglists' set).
5731 ;;
5732 ;; Return
5733 ;; o - nil if no name is found;
5734 ;; o - 'template if it's an identifier ending with an angle bracket
5735 ;; arglist;
5736 ;; o - 'operator of it's an operator identifier;
5737 ;; o - t if it's some other kind of name.
0386b551
AM
5738 ;;
5739 ;; This function records identifier ranges on
5740 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5741 ;; `c-record-type-identifiers' is non-nil.
5742 ;;
5743 ;; This function might do hidden buffer changes.
d9e94c22 5744
0386b551 5745 (let ((pos (point)) (start (point)) res id-start id-end
d9e94c22
MS
5746 ;; Turn off `c-promote-possible-types' here since we might
5747 ;; call `c-forward-<>-arglist' and we don't want it to promote
5748 ;; every suspect thing in the arglist to a type. We're
5749 ;; typically called from `c-forward-type' in this case, and
5750 ;; the caller only wants the top level type that it finds to
5751 ;; be promoted.
5752 c-promote-possible-types)
5753 (while
5754 (and
5755 (looking-at c-identifier-key)
5756
5757 (progn
5758 ;; Check for keyword. We go to the last symbol in
5759 ;; `c-identifier-key' first.
0386b551
AM
5760 (goto-char (setq id-end (match-end 0)))
5761 (c-simple-skip-symbol-backward)
5762 (setq id-start (point))
d9e94c22
MS
5763
5764 (if (looking-at c-keywords-regexp)
5765 (when (and (c-major-mode-is 'c++-mode)
5766 (looking-at
5767 (cc-eval-when-compile
5768 (concat "\\(operator\\|\\(template\\)\\)"
5769 "\\(" (c-lang-const c-nonsymbol-key c++)
5770 "\\|$\\)")))
5771 (if (match-beginning 2)
5772 ;; "template" is only valid inside an
5773 ;; identifier if preceded by "::".
5774 (save-excursion
5775 (c-backward-syntactic-ws)
5776 (and (c-safe (backward-char 2) t)
5777 (looking-at "::")))
5778 t))
5779
5780 ;; Handle a C++ operator or template identifier.
5781 (goto-char id-end)
5782 (c-forward-syntactic-ws)
5783 (cond ((eq (char-before id-end) ?e)
5784 ;; Got "... ::template".
5785 (let ((subres (c-forward-name)))
5786 (when subres
5787 (setq pos (point)
5788 res subres))))
5789
5790 ((looking-at c-identifier-start)
5791 ;; Got a cast operator.
5792 (when (c-forward-type)
5793 (setq pos (point)
5794 res 'operator)
5795 ;; Now we should match a sequence of either
5796 ;; '*', '&' or a name followed by ":: *",
5797 ;; where each can be followed by a sequence
5798 ;; of `c-opt-type-modifier-key'.
5799 (while (cond ((looking-at "[*&]")
5800 (goto-char (match-end 0))
5801 t)
5802 ((looking-at c-identifier-start)
5803 (and (c-forward-name)
5804 (looking-at "::")
5805 (progn
5806 (goto-char (match-end 0))
5807 (c-forward-syntactic-ws)
5808 (eq (char-after) ?*))
5809 (progn
5810 (forward-char)
5811 t))))
5812 (while (progn
5813 (c-forward-syntactic-ws)
5814 (setq pos (point))
5815 (looking-at c-opt-type-modifier-key))
5816 (goto-char (match-end 1))))))
5817
5818 ((looking-at c-overloadable-operators-regexp)
5819 ;; Got some other operator.
0386b551
AM
5820 (setq c-last-identifier-range
5821 (cons (point) (match-end 0)))
d9e94c22
MS
5822 (goto-char (match-end 0))
5823 (c-forward-syntactic-ws)
5824 (setq pos (point)
5825 res 'operator)))
5826
5827 nil)
5828
0386b551
AM
5829 ;; `id-start' is equal to `id-end' if we've jumped over
5830 ;; an identifier that doesn't end with a symbol token.
5831 ;; That can occur e.g. for Java import directives on the
5832 ;; form "foo.bar.*".
5833 (when (and id-start (/= id-start id-end))
d9e94c22
MS
5834 (setq c-last-identifier-range
5835 (cons id-start id-end)))
5836 (goto-char id-end)
5837 (c-forward-syntactic-ws)
5838 (setq pos (point)
5839 res t)))
5840
5841 (progn
5842 (goto-char pos)
5843 (when (or c-opt-identifier-concat-key
5844 c-recognize-<>-arglists)
5845
5846 (cond
5847 ((and c-opt-identifier-concat-key
5848 (looking-at c-opt-identifier-concat-key))
5849 ;; Got a concatenated identifier. This handles the
5850 ;; cases with tricky syntactic whitespace that aren't
5851 ;; covered in `c-identifier-key'.
5852 (goto-char (match-end 0))
5853 (c-forward-syntactic-ws)
5854 t)
5855
5856 ((and c-recognize-<>-arglists
5857 (eq (char-after) ?<))
5858 ;; Maybe an angle bracket arglist.
452ea855
AM
5859 (when (let ((c-record-type-identifiers t)
5860 (c-record-found-types t))
0386b551
AM
5861 (c-forward-<>-arglist nil))
5862
5863 (c-add-type start (1+ pos))
d9e94c22 5864 (c-forward-syntactic-ws)
0386b551
AM
5865 (setq pos (point)
5866 c-last-identifier-range nil)
5867
d9e94c22
MS
5868 (if (and c-opt-identifier-concat-key
5869 (looking-at c-opt-identifier-concat-key))
0386b551 5870
d9e94c22
MS
5871 ;; Continue if there's an identifier concatenation
5872 ;; operator after the template argument.
5873 (progn
0386b551
AM
5874 (when (and c-record-type-identifiers id-start)
5875 (c-record-ref-id (cons id-start id-end)))
d9e94c22
MS
5876 (forward-char 2)
5877 (c-forward-syntactic-ws)
5878 t)
0386b551
AM
5879
5880 (when (and c-record-type-identifiers id-start)
5881 (c-record-type-id (cons id-start id-end)))
d9e94c22
MS
5882 (setq res 'template)
5883 nil)))
5884 )))))
5885
5886 (goto-char pos)
5887 res))
5888
e15f8aaa 5889(defun c-forward-type (&optional brace-block-too)
d9e94c22 5890 ;; Move forward over a type spec if at the beginning of one,
e15f8aaa
AM
5891 ;; stopping at the next following token. The keyword "typedef"
5892 ;; isn't part of a type spec here.
5893 ;;
5894 ;; BRACE-BLOCK-TOO, when non-nil, means move over the brace block in
5895 ;; constructs like "struct foo {...} bar ;" or "struct {...} bar;".
5896 ;; The current (2009-03-10) intention is to convert all uses of
5897 ;; `c-forward-type' to call with this parameter set, then to
5898 ;; eliminate it.
5899 ;;
5900 ;; Return
5901 ;; o - t if it's a known type that can't be a name or other
5902 ;; expression;
5903 ;; o - 'known if it's an otherwise known type (according to
5904 ;; `*-font-lock-extra-types');
5905 ;; o - 'prefix if it's a known prefix of a type;
5906 ;; o - 'found if it's a type that matches one in `c-found-types';
5907 ;; o - 'maybe if it's an identfier that might be a type; or
5908 ;; o - nil if it can't be a type (the point isn't moved then).
5909 ;;
5910 ;; The point is assumed to be at the beginning of a token.
d9e94c22
MS
5911 ;;
5912 ;; Note that this function doesn't skip past the brace definition
5913 ;; that might be considered part of the type, e.g.
5914 ;; "enum {a, b, c} foo".
0386b551
AM
5915 ;;
5916 ;; This function records identifier ranges on
5917 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5918 ;; `c-record-type-identifiers' is non-nil.
5919 ;;
5920 ;; This function might do hidden buffer changes.
0e5cf2b8
AM
5921 (when (and c-recognize-<>-arglists
5922 (looking-at "<"))
452ea855
AM
5923 (c-forward-<>-arglist t)
5924 (c-forward-syntactic-ws))
0386b551
AM
5925
5926 (let ((start (point)) pos res name-res id-start id-end id-range)
d9e94c22
MS
5927
5928 ;; Skip leading type modifiers. If any are found we know it's a
5929 ;; prefix of a type.
e15f8aaa 5930 (when c-opt-type-modifier-key ; e.g. "const" "volatile", but NOT "typedef"
d9e94c22
MS
5931 (while (looking-at c-opt-type-modifier-key)
5932 (goto-char (match-end 1))
5933 (c-forward-syntactic-ws)
5934 (setq res 'prefix)))
5935
5936 (cond
e15f8aaa
AM
5937 ((looking-at c-type-prefix-key) ; e.g. "struct", "class", but NOT
5938 ; "typedef".
d9e94c22
MS
5939 (goto-char (match-end 1))
5940 (c-forward-syntactic-ws)
5941 (setq pos (point))
e15f8aaa
AM
5942
5943 (setq name-res (c-forward-name))
5944 (setq res (not (null name-res)))
5945 (when (eq name-res t)
5946 ;; In many languages the name can be used without the
5947 ;; prefix, so we add it to `c-found-types'.
5948 (c-add-type pos (point))
5949 (when (and c-record-type-identifiers
5950 c-last-identifier-range)
5951 (c-record-type-id c-last-identifier-range)))
5952 (when (and brace-block-too
5953 (memq res '(t nil))
5954 (eq (char-after) ?\{)
5955 (save-excursion
5956 (c-safe
5957 (progn (c-forward-sexp)
5958 (c-forward-syntactic-ws)
5959 (setq pos (point))))))
5960 (goto-char pos)
5961 (setq res t))
5962 (unless res (goto-char start))) ; invalid syntax
d9e94c22
MS
5963
5964 ((progn
5965 (setq pos nil)
5966 (if (looking-at c-identifier-start)
5967 (save-excursion
5968 (setq id-start (point)
0386b551
AM
5969 name-res (c-forward-name))
5970 (when name-res
d9e94c22
MS
5971 (setq id-end (point)
5972 id-range c-last-identifier-range))))
5973 (and (cond ((looking-at c-primitive-type-key)
5974 (setq res t))
5975 ((c-with-syntax-table c-identifier-syntax-table
5976 (looking-at c-known-type-key))
5977 (setq res 'known)))
5978 (or (not id-end)
5979 (>= (save-excursion
5980 (save-match-data
5981 (goto-char (match-end 1))
5982 (c-forward-syntactic-ws)
5983 (setq pos (point))))
5984 id-end)
5985 (setq res nil))))
5986 ;; Looking at a primitive or known type identifier. We've
5987 ;; checked for a name first so that we don't go here if the
5988 ;; known type match only is a prefix of another name.
5989
5990 (setq id-end (match-end 1))
5991
5992 (when (and c-record-type-identifiers
5993 (or c-promote-possible-types (eq res t)))
5994 (c-record-type-id (cons (match-beginning 1) (match-end 1))))
5995
5996 (if (and c-opt-type-component-key
5997 (save-match-data
5998 (looking-at c-opt-type-component-key)))
5999 ;; There might be more keywords for the type.
6000 (let (safe-pos)
0386b551 6001 (c-forward-keyword-clause 1)
d9e94c22
MS
6002 (while (progn
6003 (setq safe-pos (point))
6004 (looking-at c-opt-type-component-key))
6005 (when (and c-record-type-identifiers
6006 (looking-at c-primitive-type-key))
6007 (c-record-type-id (cons (match-beginning 1)
6008 (match-end 1))))
0386b551 6009 (c-forward-keyword-clause 1))
d9e94c22
MS
6010 (if (looking-at c-primitive-type-key)
6011 (progn
6012 (when c-record-type-identifiers
6013 (c-record-type-id (cons (match-beginning 1)
6014 (match-end 1))))
0386b551 6015 (c-forward-keyword-clause 1)
d9e94c22
MS
6016 (setq res t))
6017 (goto-char safe-pos)
6018 (setq res 'prefix)))
0386b551 6019 (unless (save-match-data (c-forward-keyword-clause 1))
d9e94c22
MS
6020 (if pos
6021 (goto-char pos)
6022 (goto-char (match-end 1))
6023 (c-forward-syntactic-ws)))))
6024
0386b551
AM
6025 (name-res
6026 (cond ((eq name-res t)
d9e94c22
MS
6027 ;; A normal identifier.
6028 (goto-char id-end)
6029 (if (or res c-promote-possible-types)
6030 (progn
6031 (c-add-type id-start id-end)
0386b551 6032 (when (and c-record-type-identifiers id-range)
d9e94c22
MS
6033 (c-record-type-id id-range))
6034 (unless res
6035 (setq res 'found)))
6036 (setq res (if (c-check-type id-start id-end)
6037 ;; It's an identifier that has been used as
6038 ;; a type somewhere else.
6039 'found
6040 ;; It's an identifier that might be a type.
6041 'maybe))))
0386b551 6042 ((eq name-res 'template)
d9e94c22
MS
6043 ;; A template is a type.
6044 (goto-char id-end)
6045 (setq res t))
6046 (t
6047 ;; Otherwise it's an operator identifier, which is not a type.
6048 (goto-char start)
6049 (setq res nil)))))
6050
6051 (when res
e15f8aaa 6052 ;; Skip trailing type modifiers. If any are found we know it's
d9e94c22
MS
6053 ;; a type.
6054 (when c-opt-type-modifier-key
e15f8aaa 6055 (while (looking-at c-opt-type-modifier-key) ; e.g. "const", "volatile"
d9e94c22
MS
6056 (goto-char (match-end 1))
6057 (c-forward-syntactic-ws)
6058 (setq res t)))
d9e94c22
MS
6059 ;; Step over any type suffix operator. Do not let the existence
6060 ;; of these alter the classification of the found type, since
6061 ;; these operators typically are allowed in normal expressions
6062 ;; too.
6063 (when c-opt-type-suffix-key
6064 (while (looking-at c-opt-type-suffix-key)
6065 (goto-char (match-end 1))
6066 (c-forward-syntactic-ws)))
6067
e15f8aaa 6068 (when c-opt-type-concat-key ; Only/mainly for pike.
0386b551
AM
6069 ;; Look for a trailing operator that concatenates the type
6070 ;; with a following one, and if so step past that one through
6071 ;; a recursive call. Note that we don't record concatenated
6072 ;; types in `c-found-types' - it's the component types that
6073 ;; are recorded when appropriate.
d9e94c22
MS
6074 (setq pos (point))
6075 (let* ((c-promote-possible-types (or (memq res '(t known))
6076 c-promote-possible-types))
6077 ;; If we can't promote then set `c-record-found-types' so that
6078 ;; we can merge in the types from the second part afterwards if
6079 ;; it turns out to be a known type there.
6080 (c-record-found-types (and c-record-type-identifiers
0386b551
AM
6081 (not c-promote-possible-types)))
6082 subres)
d9e94c22
MS
6083 (if (and (looking-at c-opt-type-concat-key)
6084
6085 (progn
6086 (goto-char (match-end 1))
6087 (c-forward-syntactic-ws)
0386b551 6088 (setq subres (c-forward-type))))
d9e94c22
MS
6089
6090 (progn
6091 ;; If either operand certainly is a type then both are, but we
6092 ;; don't let the existence of the operator itself promote two
6093 ;; uncertain types to a certain one.
6094 (cond ((eq res t))
0386b551
AM
6095 ((eq subres t)
6096 (unless (eq name-res 'template)
6097 (c-add-type id-start id-end))
6098 (when (and c-record-type-identifiers id-range)
d9e94c22
MS
6099 (c-record-type-id id-range))
6100 (setq res t))
2a15eb73 6101 ((eq res 'known))
0386b551 6102 ((eq subres 'known)
2a15eb73 6103 (setq res 'known))
d9e94c22 6104 ((eq res 'found))
0386b551 6105 ((eq subres 'found)
d9e94c22
MS
6106 (setq res 'found))
6107 (t
6108 (setq res 'maybe)))
6109
6110 (when (and (eq res t)
6111 (consp c-record-found-types))
6112 ;; Merge in the ranges of any types found by the second
6113 ;; `c-forward-type'.
6114 (setq c-record-type-identifiers
6115 ;; `nconc' doesn't mind that the tail of
6116 ;; `c-record-found-types' is t.
6117 (nconc c-record-found-types
6118 c-record-type-identifiers))))
6119
6120 (goto-char pos))))
6121
6122 (when (and c-record-found-types (memq res '(known found)) id-range)
6123 (setq c-record-found-types
6124 (cons id-range c-record-found-types))))
6125
6126 ;;(message "c-forward-type %s -> %s: %s" start (point) res)
6127
6128 res))
6129
452ea855
AM
6130(defun c-forward-annotation ()
6131 ;; Used for Java code only at the moment. Assumes point is on the
6132 ;; @, moves forward an annotation. returns nil if there is no
6133 ;; annotation at point.
6134 (and (looking-at "@")
6135 (progn (forward-char) t)
6136 (c-forward-type)
6137 (progn (c-forward-syntactic-ws) t)
6138 (if (looking-at "(")
6139 (c-go-list-forward)
6140 t)))
6141
785eecbb 6142\f
d9e94c22
MS
6143;; Handling of large scale constructs like statements and declarations.
6144
0386b551
AM
6145;; Macro used inside `c-forward-decl-or-cast-1'. It ought to be a
6146;; defsubst or perhaps even a defun, but it contains lots of free
6147;; variables that refer to things inside `c-forward-decl-or-cast-1'.
6148(defmacro c-fdoc-shift-type-backward (&optional short)
6149 ;; `c-forward-decl-or-cast-1' can consume an arbitrary length list
6150 ;; of types when parsing a declaration, which means that it
6151 ;; sometimes consumes the identifier in the declaration as a type.
6152 ;; This is used to "backtrack" and make the last type be treated as
6153 ;; an identifier instead.
6154 `(progn
6155 ,(unless short
6156 ;; These identifiers are bound only in the inner let.
6157 '(setq identifier-type at-type
6158 identifier-start type-start
6159 got-parens nil
6160 got-identifier t
6161 got-suffix t
6162 got-suffix-after-parens id-start
6163 paren-depth 0))
6164
6165 (if (setq at-type (if (eq backup-at-type 'prefix)
6166 t
6167 backup-at-type))
6168 (setq type-start backup-type-start
6169 id-start backup-id-start)
6170 (setq type-start start-pos
6171 id-start start-pos))
6172
6173 ;; When these flags already are set we've found specifiers that
6174 ;; unconditionally signal these attributes - backtracking doesn't
6175 ;; change that. So keep them set in that case.
6176 (or at-type-decl
6177 (setq at-type-decl backup-at-type-decl))
6178 (or maybe-typeless
6179 (setq maybe-typeless backup-maybe-typeless))
6180
6181 ,(unless short
6182 ;; This identifier is bound only in the inner let.
6183 '(setq start id-start))))
6184
6185(defun c-forward-decl-or-cast-1 (preceding-token-end context last-cast-end)
6186 ;; Move forward over a declaration or a cast if at the start of one.
6187 ;; The point is assumed to be at the start of some token. Nil is
6188 ;; returned if no declaration or cast is recognized, and the point
6189 ;; is clobbered in that case.
6190 ;;
6191 ;; If a declaration is parsed:
6192 ;;
6193 ;; The point is left at the first token after the first complete
6194 ;; declarator, if there is one. The return value is a cons where
022d0cf4
AM
6195 ;; the car is the position of the first token in the declarator. (See
6196 ;; below for the cdr.)
0386b551
AM
6197 ;; Some examples:
6198 ;;
6199 ;; void foo (int a, char *b) stuff ...
6200 ;; car ^ ^ point
6201 ;; float (*a)[], b;
6202 ;; car ^ ^ point
6203 ;; unsigned int a = c_style_initializer, b;
6204 ;; car ^ ^ point
6205 ;; unsigned int a (cplusplus_style_initializer), b;
6206 ;; car ^ ^ point (might change)
6207 ;; class Foo : public Bar {}
6208 ;; car ^ ^ point
6209 ;; class PikeClass (int a, string b) stuff ...
6210 ;; car ^ ^ point
6211 ;; enum bool;
6212 ;; car ^ ^ point
6213 ;; enum bool flag;
6214 ;; car ^ ^ point
6215 ;; void cplusplus_function (int x) throw (Bad);
6216 ;; car ^ ^ point
6217 ;; Foo::Foo (int b) : Base (b) {}
6218 ;; car ^ ^ point
e15f8aaa
AM
6219 ;;
6220 ;; The cdr of the return value is non-nil when a
6221 ;; `c-typedef-decl-kwds' specifier is found in the declaration.
6222 ;; Specifically it is a dotted pair (A . B) where B is t when a
6223 ;; `c-typedef-kwds' ("typedef") is present, and A is t when some
6224 ;; other `c-typedef-decl-kwds' (e.g. class, struct, enum)
6225 ;; specifier is present. I.e., (some of) the declared
6226 ;; identifier(s) are types.
6227 ;;
0386b551
AM
6228 ;; If a cast is parsed:
6229 ;;
6230 ;; The point is left at the first token after the closing paren of
6231 ;; the cast. The return value is `cast'. Note that the start
6232 ;; position must be at the first token inside the cast parenthesis
6233 ;; to recognize it.
6234 ;;
6235 ;; PRECEDING-TOKEN-END is the first position after the preceding
6236 ;; token, i.e. on the other side of the syntactic ws from the point.
6237 ;; Use a value less than or equal to (point-min) if the point is at
6238 ;; the first token in (the visible part of) the buffer.
6239 ;;
6240 ;; CONTEXT is a symbol that describes the context at the point:
022d0cf4 6241 ;; 'decl In a comma-separated declaration context (typically
0386b551
AM
6242 ;; inside a function declaration arglist).
6243 ;; '<> In an angle bracket arglist.
6244 ;; 'arglist Some other type of arglist.
a85fd6da
AM
6245 ;; nil Some other context or unknown context. Includes
6246 ;; within the parens of an if, for, ... construct.
0386b551
AM
6247 ;;
6248 ;; LAST-CAST-END is the first token after the closing paren of a
6249 ;; preceding cast, or nil if none is known. If
6250 ;; `c-forward-decl-or-cast-1' is used in succession, it should be
6251 ;; the position after the closest preceding call where a cast was
6252 ;; matched. In that case it's used to discover chains of casts like
6253 ;; "(a) (b) c".
6254 ;;
6255 ;; This function records identifier ranges on
6256 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6257 ;; `c-record-type-identifiers' is non-nil.
6258 ;;
6259 ;; This function might do hidden buffer changes.
6260
6261 (let (;; `start-pos' is used below to point to the start of the
6262 ;; first type, i.e. after any leading specifiers. It might
6263 ;; also point at the beginning of the preceding syntactic
6264 ;; whitespace.
6265 (start-pos (point))
6266 ;; Set to the result of `c-forward-type'.
6267 at-type
6268 ;; The position of the first token in what we currently
6269 ;; believe is the type in the declaration or cast, after any
6270 ;; specifiers and their associated clauses.
6271 type-start
6272 ;; The position of the first token in what we currently
6273 ;; believe is the declarator for the first identifier. Set
6274 ;; when the type is found, and moved forward over any
6275 ;; `c-decl-hangon-kwds' and their associated clauses that
6276 ;; occurs after the type.
6277 id-start
6278 ;; These store `at-type', `type-start' and `id-start' of the
6279 ;; identifier before the one in those variables. The previous
6280 ;; identifier might turn out to be the real type in a
6281 ;; declaration if the last one has to be the declarator in it.
6282 ;; If `backup-at-type' is nil then the other variables have
6283 ;; undefined values.
6284 backup-at-type backup-type-start backup-id-start
e15f8aaa
AM
6285 ;; Set if we've found a specifier (apart from "typedef") that makes
6286 ;; the defined identifier(s) types.
0386b551 6287 at-type-decl
e15f8aaa
AM
6288 ;; Set if we've a "typedef" keyword.
6289 at-typedef
0386b551
AM
6290 ;; Set if we've found a specifier that can start a declaration
6291 ;; where there's no type.
6292 maybe-typeless
6293 ;; If a specifier is found that also can be a type prefix,
6294 ;; these flags are set instead of those above. If we need to
6295 ;; back up an identifier, they are copied to the real flag
6296 ;; variables. Thus they only take effect if we fail to
6297 ;; interpret it as a type.
6298 backup-at-type-decl backup-maybe-typeless
6299 ;; Whether we've found a declaration or a cast. We might know
6300 ;; this before we've found the type in it. It's 'ids if we've
6301 ;; found two consecutive identifiers (usually a sure sign, but
6302 ;; we should allow that in labels too), and t if we've found a
6303 ;; specifier keyword (a 100% sure sign).
6304 at-decl-or-cast
6305 ;; Set when we need to back up to parse this as a declaration
6306 ;; but not as a cast.
6307 backup-if-not-cast
6308 ;; For casts, the return position.
6309 cast-end
6310 ;; Save `c-record-type-identifiers' and
6311 ;; `c-record-ref-identifiers' since ranges are recorded
6312 ;; speculatively and should be thrown away if it turns out
6313 ;; that it isn't a declaration or cast.
6314 (save-rec-type-ids c-record-type-identifiers)
6315 (save-rec-ref-ids c-record-ref-identifiers))
6316
452ea855
AM
6317 (while (c-forward-annotation)
6318 (c-forward-syntactic-ws))
6319
0386b551
AM
6320 ;; Check for a type. Unknown symbols are treated as possible
6321 ;; types, but they could also be specifiers disguised through
6322 ;; macros like __INLINE__, so we recognize both types and known
6323 ;; specifiers after them too.
6324 (while
6325 (let* ((start (point)) kwd-sym kwd-clause-end found-type)
6326
6327 ;; Look for a specifier keyword clause.
6328 (when (looking-at c-prefix-spec-kwds-re)
e15f8aaa
AM
6329 (if (looking-at c-typedef-key)
6330 (setq at-typedef t))
0386b551
AM
6331 (setq kwd-sym (c-keyword-sym (match-string 1)))
6332 (save-excursion
6333 (c-forward-keyword-clause 1)
6334 (setq kwd-clause-end (point))))
6335
e15f8aaa 6336 (when (setq found-type (c-forward-type t)) ; brace-block-too
0386b551
AM
6337 ;; Found a known or possible type or a prefix of a known type.
6338
6339 (when at-type
6340 ;; Got two identifiers with nothing but whitespace
6341 ;; between them. That can only happen in declarations.
6342 (setq at-decl-or-cast 'ids)
6343
6344 (when (eq at-type 'found)
6345 ;; If the previous identifier is a found type we
6346 ;; record it as a real one; it might be some sort of
6347 ;; alias for a prefix like "unsigned".
6348 (save-excursion
6349 (goto-char type-start)
6350 (let ((c-promote-possible-types t))
6351 (c-forward-type)))))
6352
6353 (setq backup-at-type at-type
6354 backup-type-start type-start
6355 backup-id-start id-start
6356 at-type found-type
6357 type-start start
6358 id-start (point)
6359 ;; The previous ambiguous specifier/type turned out
6360 ;; to be a type since we've parsed another one after
6361 ;; it, so clear these backup flags.
6362 backup-at-type-decl nil
6363 backup-maybe-typeless nil))
6364
6365 (if kwd-sym
6366 (progn
6367 ;; Handle known specifier keywords and
6368 ;; `c-decl-hangon-kwds' which can occur after known
6369 ;; types.
6370
6371 (if (c-keyword-member kwd-sym 'c-decl-hangon-kwds)
6372 ;; It's a hang-on keyword that can occur anywhere.
6373 (progn
6374 (setq at-decl-or-cast t)
6375 (if at-type
6376 ;; Move the identifier start position if
6377 ;; we've passed a type.
6378 (setq id-start kwd-clause-end)
6379 ;; Otherwise treat this as a specifier and
6380 ;; move the fallback position.
6381 (setq start-pos kwd-clause-end))
6382 (goto-char kwd-clause-end))
6383
6384 ;; It's an ordinary specifier so we know that
6385 ;; anything before this can't be the type.
6386 (setq backup-at-type nil
6387 start-pos kwd-clause-end)
6388
6389 (if found-type
6390 ;; It's ambiguous whether this keyword is a
6391 ;; specifier or a type prefix, so set the backup
6392 ;; flags. (It's assumed that `c-forward-type'
6393 ;; moved further than `c-forward-keyword-clause'.)
6394 (progn
6395 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
6396 (setq backup-at-type-decl t))
6397 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
6398 (setq backup-maybe-typeless t)))
6399
6400 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
e15f8aaa
AM
6401 ;; This test only happens after we've scanned a type.
6402 ;; So, with valid syntax, kwd-sym can't be 'typedef.
0386b551
AM
6403 (setq at-type-decl t))
6404 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
6405 (setq maybe-typeless t))
6406
6407 ;; Haven't matched a type so it's an umambiguous
6408 ;; specifier keyword and we know we're in a
6409 ;; declaration.
6410 (setq at-decl-or-cast t)
6411
6412 (goto-char kwd-clause-end))))
6413
6414 ;; If the type isn't known we continue so that we'll jump
6415 ;; over all specifiers and type identifiers. The reason
6416 ;; to do this for a known type prefix is to make things
6417 ;; like "unsigned INT16" work.
6418 (and found-type (not (eq found-type t))))))
6419
6420 (cond
6421 ((eq at-type t)
6422 ;; If a known type was found, we still need to skip over any
6423 ;; hangon keyword clauses after it. Otherwise it has already
6424 ;; been done in the loop above.
6425 (while (looking-at c-decl-hangon-key)
6426 (c-forward-keyword-clause 1))
6427 (setq id-start (point)))
6428
6429 ((eq at-type 'prefix)
6430 ;; A prefix type is itself a primitive type when it's not
6431 ;; followed by another type.
6432 (setq at-type t))
6433
6434 ((not at-type)
6435 ;; Got no type but set things up to continue anyway to handle
6436 ;; the various cases when a declaration doesn't start with a
6437 ;; type.
6438 (setq id-start start-pos))
6439
6440 ((and (eq at-type 'maybe)
6441 (c-major-mode-is 'c++-mode))
6442 ;; If it's C++ then check if the last "type" ends on the form
6443 ;; "foo::foo" or "foo::~foo", i.e. if it's the name of a
6444 ;; (con|de)structor.
6445 (save-excursion
6446 (let (name end-2 end-1)
6447 (goto-char id-start)
6448 (c-backward-syntactic-ws)
6449 (setq end-2 (point))
6450 (when (and
6451 (c-simple-skip-symbol-backward)
6452 (progn
6453 (setq name
6454 (buffer-substring-no-properties (point) end-2))
6455 ;; Cheating in the handling of syntactic ws below.
6456 (< (skip-chars-backward ":~ \t\n\r\v\f") 0))
6457 (progn
6458 (setq end-1 (point))
6459 (c-simple-skip-symbol-backward))
6460 (>= (point) type-start)
6461 (equal (buffer-substring-no-properties (point) end-1)
6462 name))
6463 ;; It is a (con|de)structor name. In that case the
6464 ;; declaration is typeless so zap out any preceding
6465 ;; identifier(s) that we might have taken as types.
6466 (goto-char type-start)
6467 (setq at-type nil
6468 backup-at-type nil
6469 id-start type-start))))))
6470
6471 ;; Check for and step over a type decl expression after the thing
6472 ;; that is or might be a type. This can't be skipped since we
6473 ;; need the correct end position of the declarator for
6474 ;; `max-type-decl-end-*'.
6475 (let ((start (point)) (paren-depth 0) pos
6476 ;; True if there's a non-open-paren match of
6477 ;; `c-type-decl-prefix-key'.
6478 got-prefix
6479 ;; True if the declarator is surrounded by a parenthesis pair.
6480 got-parens
6481 ;; True if there is an identifier in the declarator.
6482 got-identifier
6483 ;; True if there's a non-close-paren match of
6484 ;; `c-type-decl-suffix-key'.
6485 got-suffix
6486 ;; True if there's a prefix match outside the outermost
6487 ;; paren pair that surrounds the declarator.
6488 got-prefix-before-parens
1379f2c5 6489 ;; True if there's a suffix match outside the outermost
0386b551
AM
6490 ;; paren pair that surrounds the declarator. The value is
6491 ;; the position of the first suffix match.
6492 got-suffix-after-parens
6493 ;; True if we've parsed the type decl to a token that is
6494 ;; known to end declarations in this context.
6495 at-decl-end
6496 ;; The earlier values of `at-type' and `type-start' if we've
6497 ;; shifted the type backwards.
6498 identifier-type identifier-start
6499 ;; If `c-parse-and-markup-<>-arglists' is set we need to
6500 ;; turn it off during the name skipping below to avoid
6501 ;; getting `c-type' properties that might be bogus. That
6502 ;; can happen since we don't know if
6503 ;; `c-restricted-<>-arglists' will be correct inside the
6504 ;; arglist paren that gets entered.
6505 c-parse-and-markup-<>-arglists)
6506
6507 (goto-char id-start)
6508
6509 ;; Skip over type decl prefix operators. (Note similar code in
6510 ;; `c-font-lock-declarators'.)
6511 (while (and (looking-at c-type-decl-prefix-key)
6512 (if (and (c-major-mode-is 'c++-mode)
05842630 6513 (match-beginning 3))
0386b551
AM
6514 ;; If the second submatch matches in C++ then
6515 ;; we're looking at an identifier that's a
6516 ;; prefix only if it specifies a member pointer.
6517 (when (setq got-identifier (c-forward-name))
6518 (if (looking-at "\\(::\\)")
6519 ;; We only check for a trailing "::" and
6520 ;; let the "*" that should follow be
6521 ;; matched in the next round.
6522 (progn (setq got-identifier nil) t)
6523 ;; It turned out to be the real identifier,
6524 ;; so stop.
6525 nil))
6526 t))
6527
6528 (if (eq (char-after) ?\()
6529 (progn
6530 (setq paren-depth (1+ paren-depth))
6531 (forward-char))
6532 (unless got-prefix-before-parens
6533 (setq got-prefix-before-parens (= paren-depth 0)))
6534 (setq got-prefix t)
6535 (goto-char (match-end 1)))
6536 (c-forward-syntactic-ws))
6537
6538 (setq got-parens (> paren-depth 0))
6539
6540 ;; Skip over an identifier.
6541 (or got-identifier
6542 (and (looking-at c-identifier-start)
6543 (setq got-identifier (c-forward-name))))
6544
6545 ;; Skip over type decl suffix operators.
6546 (while (if (looking-at c-type-decl-suffix-key)
6547
6548 (if (eq (char-after) ?\))
6549 (when (> paren-depth 0)
6550 (setq paren-depth (1- paren-depth))
6551 (forward-char)
6552 t)
6553 (when (if (save-match-data (looking-at "\\s\("))
6554 (c-safe (c-forward-sexp 1) t)
6555 (goto-char (match-end 1))
6556 t)
6557 (when (and (not got-suffix-after-parens)
6558 (= paren-depth 0))
6559 (setq got-suffix-after-parens (match-beginning 0)))
6560 (setq got-suffix t)))
6561
6562 ;; No suffix matched. We might have matched the
6563 ;; identifier as a type and the open paren of a
6564 ;; function arglist as a type decl prefix. In that
6565 ;; case we should "backtrack": Reinterpret the last
6566 ;; type as the identifier, move out of the arglist and
6567 ;; continue searching for suffix operators.
6568 ;;
6569 ;; Do this even if there's no preceding type, to cope
6570 ;; with old style function declarations in K&R C,
6571 ;; (con|de)structors in C++ and `c-typeless-decl-kwds'
6572 ;; style declarations. That isn't applicable in an
6573 ;; arglist context, though.
6574 (when (and (= paren-depth 1)
6575 (not got-prefix-before-parens)
6576 (not (eq at-type t))
6577 (or backup-at-type
6578 maybe-typeless
6579 backup-maybe-typeless
6580 (when c-recognize-typeless-decls
6581 (not context)))
6582 (setq pos (c-up-list-forward (point)))
6583 (eq (char-before pos) ?\)))
6584 (c-fdoc-shift-type-backward)
6585 (goto-char pos)
6586 t))
6587
6588 (c-forward-syntactic-ws))
6589
6590 (when (and (or maybe-typeless backup-maybe-typeless)
6591 (not got-identifier)
6592 (not got-prefix)
6593 at-type)
6594 ;; Have found no identifier but `c-typeless-decl-kwds' has
6595 ;; matched so we know we're inside a declaration. The
6596 ;; preceding type must be the identifier instead.
6597 (c-fdoc-shift-type-backward))
6598
6599 (setq
6600 at-decl-or-cast
6601 (catch 'at-decl-or-cast
6602
a85fd6da 6603 ;; CASE 1
0386b551
AM
6604 (when (> paren-depth 0)
6605 ;; Encountered something inside parens that isn't matched by
6606 ;; the `c-type-decl-*' regexps, so it's not a type decl
6607 ;; expression. Try to skip out to the same paren depth to
6608 ;; not confuse the cast check below.
6609 (c-safe (goto-char (scan-lists (point) 1 paren-depth)))
6610 ;; If we've found a specifier keyword then it's a
6611 ;; declaration regardless.
6612 (throw 'at-decl-or-cast (eq at-decl-or-cast t)))
6613
6614 (setq at-decl-end
6615 (looking-at (cond ((eq context '<>) "[,>]")
6616 (context "[,\)]")
6617 (t "[,;]"))))
6618
6619 ;; Now we've collected info about various characteristics of
6620 ;; the construct we're looking at. Below follows a decision
6621 ;; tree based on that. It's ordered to check more certain
6622 ;; signs before less certain ones.
6623
6624 (if got-identifier
6625 (progn
6626
a85fd6da 6627 ;; CASE 2
0386b551
AM
6628 (when (and (or at-type maybe-typeless)
6629 (not (or got-prefix got-parens)))
6630 ;; Got another identifier directly after the type, so it's a
6631 ;; declaration.
6632 (throw 'at-decl-or-cast t))
6633
6634 (when (and got-parens
6635 (not got-prefix)
6636 (not got-suffix-after-parens)
6637 (or backup-at-type
6638 maybe-typeless
6639 backup-maybe-typeless))
6640 ;; Got a declaration of the form "foo bar (gnu);" where we've
6641 ;; recognized "bar" as the type and "gnu" as the declarator.
6642 ;; In this case it's however more likely that "bar" is the
6643 ;; declarator and "gnu" a function argument or initializer (if
6644 ;; `c-recognize-paren-inits' is set), since the parens around
6645 ;; "gnu" would be superfluous if it's a declarator. Shift the
6646 ;; type one step backward.
6647 (c-fdoc-shift-type-backward)))
6648
6649 ;; Found no identifier.
6650
6651 (if backup-at-type
6652 (progn
6653
b248a85d
AM
6654
6655 ;; CASE 3
6656 (when (= (point) start)
6657 ;; Got a plain list of identifiers. If a colon follows it's
6658 ;; a valid label, or maybe a bitfield. Otherwise the last
6659 ;; one probably is the declared identifier and we should
6660 ;; back up to the previous type, providing it isn't a cast.
452ea855
AM
6661 (if (and (eq (char-after) ?:)
6662 (not (c-major-mode-is 'java-mode)))
b248a85d
AM
6663 (cond
6664 ;; If we've found a specifier keyword then it's a
6665 ;; declaration regardless.
6666 ((eq at-decl-or-cast t)
6667 (throw 'at-decl-or-cast t))
6668 ((and c-has-bitfields
6669 (eq at-decl-or-cast 'ids)) ; bitfield.
6670 (setq backup-if-not-cast t)
6671 (throw 'at-decl-or-cast t)))
6672
6673 (setq backup-if-not-cast t)
6674 (throw 'at-decl-or-cast t)))
0386b551 6675
a85fd6da 6676 ;; CASE 4
0386b551
AM
6677 (when (and got-suffix
6678 (not got-prefix)
6679 (not got-parens))
6680 ;; Got a plain list of identifiers followed by some suffix.
6681 ;; If this isn't a cast then the last identifier probably is
6682 ;; the declared one and we should back up to the previous
6683 ;; type.
6684 (setq backup-if-not-cast t)
6685 (throw 'at-decl-or-cast t)))
6686
a85fd6da 6687 ;; CASE 5
0386b551
AM
6688 (when (eq at-type t)
6689 ;; If the type is known we know that there can't be any
6690 ;; identifier somewhere else, and it's only in declarations in
6691 ;; e.g. function prototypes and in casts that the identifier may
6692 ;; be left out.
6693 (throw 'at-decl-or-cast t))
6694
6695 (when (= (point) start)
6696 ;; Only got a single identifier (parsed as a type so far).
a85fd6da 6697 ;; CASE 6
0386b551
AM
6698 (if (and
6699 ;; Check that the identifier isn't at the start of an
6700 ;; expression.
6701 at-decl-end
6702 (cond
6703 ((eq context 'decl)
6704 ;; Inside an arglist that contains declarations. If K&R
6705 ;; style declarations and parenthesis style initializers
6706 ;; aren't allowed then the single identifier must be a
6707 ;; type, else we require that it's known or found
6708 ;; (primitive types are handled above).
6709 (or (and (not c-recognize-knr-p)
6710 (not c-recognize-paren-inits))
6711 (memq at-type '(known found))))
6712 ((eq context '<>)
6713 ;; Inside a template arglist. Accept known and found
6714 ;; types; other identifiers could just as well be
6715 ;; constants in C++.
6716 (memq at-type '(known found)))))
6717 (throw 'at-decl-or-cast t)
a85fd6da 6718 ;; CASE 7
0386b551
AM
6719 ;; Can't be a valid declaration or cast, but if we've found a
6720 ;; specifier it can't be anything else either, so treat it as
6721 ;; an invalid/unfinished declaration or cast.
6722 (throw 'at-decl-or-cast at-decl-or-cast))))
6723
6724 (if (and got-parens
6725 (not got-prefix)
6726 (not context)
6727 (not (eq at-type t))
6728 (or backup-at-type
6729 maybe-typeless
6730 backup-maybe-typeless
6731 (when c-recognize-typeless-decls
6732 (or (not got-suffix)
6733 (not (looking-at
6734 c-after-suffixed-type-maybe-decl-key))))))
6735 ;; Got an empty paren pair and a preceding type that probably
6736 ;; really is the identifier. Shift the type backwards to make
6737 ;; the last one the identifier. This is analogous to the
6738 ;; "backtracking" done inside the `c-type-decl-suffix-key' loop
6739 ;; above.
6740 ;;
6741 ;; Exception: In addition to the conditions in that
6742 ;; "backtracking" code, do not shift backward if we're not
6743 ;; looking at either `c-after-suffixed-type-decl-key' or "[;,]".
6744 ;; Since there's no preceding type, the shift would mean that
6745 ;; the declaration is typeless. But if the regexp doesn't match
6746 ;; then we will simply fall through in the tests below and not
6747 ;; recognize it at all, so it's better to try it as an abstract
6748 ;; declarator instead.
6749 (c-fdoc-shift-type-backward)
6750
6751 ;; Still no identifier.
a85fd6da 6752 ;; CASE 8
0386b551
AM
6753 (when (and got-prefix (or got-parens got-suffix))
6754 ;; Require `got-prefix' together with either `got-parens' or
6755 ;; `got-suffix' to recognize it as an abstract declarator:
6756 ;; `got-parens' only is probably an empty function call.
6757 ;; `got-suffix' only can build an ordinary expression together
6758 ;; with the preceding identifier which we've taken as a type.
6759 ;; We could actually accept on `got-prefix' only, but that can
6760 ;; easily occur temporarily while writing an expression so we
6761 ;; avoid that case anyway. We could do a better job if we knew
6762 ;; the point when the fontification was invoked.
6763 (throw 'at-decl-or-cast t))
6764
a85fd6da 6765 ;; CASE 9
0386b551
AM
6766 (when (and at-type
6767 (not got-prefix)
6768 (not got-parens)
6769 got-suffix-after-parens
6770 (eq (char-after got-suffix-after-parens) ?\())
6771 ;; Got a type, no declarator but a paren suffix. I.e. it's a
6772 ;; normal function call afterall (or perhaps a C++ style object
6773 ;; instantiation expression).
6774 (throw 'at-decl-or-cast nil))))
6775
a85fd6da 6776 ;; CASE 10
0386b551
AM
6777 (when at-decl-or-cast
6778 ;; By now we've located the type in the declaration that we know
6779 ;; we're in.
6780 (throw 'at-decl-or-cast t))
6781
a85fd6da 6782 ;; CASE 11
0386b551
AM
6783 (when (and got-identifier
6784 (not context)
6785 (looking-at c-after-suffixed-type-decl-key)
6786 (if (and got-parens
6787 (not got-prefix)
6788 (not got-suffix)
6789 (not (eq at-type t)))
6790 ;; Shift the type backward in the case that there's a
6791 ;; single identifier inside parens. That can only
6792 ;; occur in K&R style function declarations so it's
6793 ;; more likely that it really is a function call.
6794 ;; Therefore we only do this after
6795 ;; `c-after-suffixed-type-decl-key' has matched.
6796 (progn (c-fdoc-shift-type-backward) t)
6797 got-suffix-after-parens))
6798 ;; A declaration according to `c-after-suffixed-type-decl-key'.
6799 (throw 'at-decl-or-cast t))
6800
a85fd6da 6801 ;; CASE 12
0386b551
AM
6802 (when (and (or got-prefix (not got-parens))
6803 (memq at-type '(t known)))
6804 ;; It's a declaration if a known type precedes it and it can't be a
6805 ;; function call.
6806 (throw 'at-decl-or-cast t))
6807
6808 ;; If we get here we can't tell if this is a type decl or a normal
6809 ;; expression by looking at it alone. (That's under the assumption
6810 ;; that normal expressions always can look like type decl expressions,
6811 ;; which isn't really true but the cases where it doesn't hold are so
6812 ;; uncommon (e.g. some placements of "const" in C++) it's not worth
6813 ;; the effort to look for them.)
6814
6815 (unless (or at-decl-end (looking-at "=[^=]"))
6816 ;; If this is a declaration it should end here or its initializer(*)
6817 ;; should start here, so check for allowed separation tokens. Note
6818 ;; that this rule doesn't work e.g. with a K&R arglist after a
6819 ;; function header.
6820 ;;
6821 ;; *) Don't check for C++ style initializers using parens
6822 ;; since those already have been matched as suffixes.
6823 ;;
6824 ;; If `at-decl-or-cast' is then we've found some other sign that
6825 ;; it's a declaration or cast, so then it's probably an
6826 ;; invalid/unfinished one.
6827 (throw 'at-decl-or-cast at-decl-or-cast))
6828
6829 ;; Below are tests that only should be applied when we're certain to
6830 ;; not have parsed halfway through an expression.
6831
a85fd6da 6832 ;; CASE 14
0386b551
AM
6833 (when (memq at-type '(t known))
6834 ;; The expression starts with a known type so treat it as a
6835 ;; declaration.
6836 (throw 'at-decl-or-cast t))
6837
a85fd6da 6838 ;; CASE 15
0386b551
AM
6839 (when (and (c-major-mode-is 'c++-mode)
6840 ;; In C++ we check if the identifier is a known type, since
6841 ;; (con|de)structors use the class name as identifier.
6842 ;; We've always shifted over the identifier as a type and
6843 ;; then backed up again in this case.
6844 identifier-type
6845 (or (memq identifier-type '(found known))
6846 (and (eq (char-after identifier-start) ?~)
6847 ;; `at-type' probably won't be 'found for
6848 ;; destructors since the "~" is then part of the
6849 ;; type name being checked against the list of
6850 ;; known types, so do a check without that
6851 ;; operator.
6852 (or (save-excursion
6853 (goto-char (1+ identifier-start))
6854 (c-forward-syntactic-ws)
6855 (c-with-syntax-table
6856 c-identifier-syntax-table
6857 (looking-at c-known-type-key)))
6858 (save-excursion
6859 (goto-char (1+ identifier-start))
6860 ;; We have already parsed the type earlier,
6861 ;; so it'd be possible to cache the end
6862 ;; position instead of redoing it here, but
6863 ;; then we'd need to keep track of another
6864 ;; position everywhere.
6865 (c-check-type (point)
6866 (progn (c-forward-type)
6867 (point))))))))
6868 (throw 'at-decl-or-cast t))
6869
6870 (if got-identifier
6871 (progn
a85fd6da 6872 ;; CASE 16
0386b551
AM
6873 (when (and got-prefix-before-parens
6874 at-type
6875 (or at-decl-end (looking-at "=[^=]"))
6876 (not context)
6877 (not got-suffix))
6878 ;; Got something like "foo * bar;". Since we're not inside an
6879 ;; arglist it would be a meaningless expression because the
6880 ;; result isn't used. We therefore choose to recognize it as
6881 ;; a declaration. Do not allow a suffix since it could then
6882 ;; be a function call.
6883 (throw 'at-decl-or-cast t))
6884
a85fd6da 6885 ;; CASE 17
0386b551
AM
6886 (when (and (or got-suffix-after-parens
6887 (looking-at "=[^=]"))
6888 (eq at-type 'found)
6889 (not (eq context 'arglist)))
6890 ;; Got something like "a (*b) (c);" or "a (b) = c;". It could
6891 ;; be an odd expression or it could be a declaration. Treat
6892 ;; it as a declaration if "a" has been used as a type
6893 ;; somewhere else (if it's a known type we won't get here).
6894 (throw 'at-decl-or-cast t)))
6895
a85fd6da 6896 ;; CASE 18
0386b551
AM
6897 (when (and context
6898 (or got-prefix
6899 (and (eq context 'decl)
6900 (not c-recognize-paren-inits)
6901 (or got-parens got-suffix))))
6902 ;; Got a type followed by an abstract declarator. If `got-prefix'
6903 ;; is set it's something like "a *" without anything after it. If
6904 ;; `got-parens' or `got-suffix' is set it's "a()", "a[]", "a()[]",
6905 ;; or similar, which we accept only if the context rules out
6906 ;; expressions.
6907 (throw 'at-decl-or-cast t)))
6908
6909 ;; If we had a complete symbol table here (which rules out
6910 ;; `c-found-types') we should return t due to the disambiguation rule
6911 ;; (in at least C++) that anything that can be parsed as a declaration
6912 ;; is a declaration. Now we're being more defensive and prefer to
6913 ;; highlight things like "foo (bar);" as a declaration only if we're
6914 ;; inside an arglist that contains declarations.
6915 (eq context 'decl))))
6916
6917 ;; The point is now after the type decl expression.
6918
6919 (cond
6920 ;; Check for a cast.
6921 ((save-excursion
6922 (and
6923 c-cast-parens
6924
6925 ;; Should be the first type/identifier in a cast paren.
6926 (> preceding-token-end (point-min))
6927 (memq (char-before preceding-token-end) c-cast-parens)
6928
6929 ;; The closing paren should follow.
6930 (progn
6931 (c-forward-syntactic-ws)
6932 (looking-at "\\s\)"))
6933
6934 ;; There should be a primary expression after it.
6935 (let (pos)
6936 (forward-char)
6937 (c-forward-syntactic-ws)
6938 (setq cast-end (point))
6939 (and (looking-at c-primary-expr-regexp)
6940 (progn
6941 (setq pos (match-end 0))
6942 (or
6943 ;; Check if the expression begins with a prefix keyword.
6944 (match-beginning 2)
6945 (if (match-beginning 1)
6946 ;; Expression begins with an ambiguous operator. Treat
6947 ;; it as a cast if it's a type decl or if we've
6948 ;; recognized the type somewhere else.
6949 (or at-decl-or-cast
6950 (memq at-type '(t known found)))
6951 ;; Unless it's a keyword, it's the beginning of a primary
6952 ;; expression.
6953 (not (looking-at c-keywords-regexp)))))
6954 ;; If `c-primary-expr-regexp' matched a nonsymbol token, check
6955 ;; that it matched a whole one so that we don't e.g. confuse
6956 ;; the operator '-' with '->'. It's ok if it matches further,
6957 ;; though, since it e.g. can match the float '.5' while the
6958 ;; operator regexp only matches '.'.
6959 (or (not (looking-at c-nonsymbol-token-regexp))
6960 (<= (match-end 0) pos))))
6961
6962 ;; There should either be a cast before it or something that isn't an
6963 ;; identifier or close paren.
6964 (> preceding-token-end (point-min))
6965 (progn
6966 (goto-char (1- preceding-token-end))
6967 (or (eq (point) last-cast-end)
6968 (progn
6969 (c-backward-syntactic-ws)
6970 (if (< (skip-syntax-backward "w_") 0)
6971 ;; It's a symbol. Accept it only if it's one of the
6972 ;; keywords that can precede an expression (without
6973 ;; surrounding parens).
6974 (looking-at c-simple-stmt-key)
6975 (and
6976 ;; Check that it isn't a close paren (block close is ok,
6977 ;; though).
6978 (not (memq (char-before) '(?\) ?\])))
6979 ;; Check that it isn't a nonsymbol identifier.
6980 (not (c-on-identifier)))))))))
6981
6982 ;; Handle the cast.
6983 (when (and c-record-type-identifiers at-type (not (eq at-type t)))
6984 (let ((c-promote-possible-types t))
6985 (goto-char type-start)
6986 (c-forward-type)))
6987
6988 (goto-char cast-end)
6989 'cast)
6990
6991 (at-decl-or-cast
6992 ;; We're at a declaration. Highlight the type and the following
6993 ;; declarators.
6994
6995 (when backup-if-not-cast
6996 (c-fdoc-shift-type-backward t))
6997
6998 (when (and (eq context 'decl) (looking-at ","))
6999 ;; Make sure to propagate the `c-decl-arg-start' property to
7000 ;; the next argument if it's set in this one, to cope with
7001 ;; interactive refontification.
7002 (c-put-c-type-property (point) 'c-decl-arg-start))
7003
7004 (when (and c-record-type-identifiers at-type (not (eq at-type t)))
7005 (let ((c-promote-possible-types t))
7006 (save-excursion
7007 (goto-char type-start)
7008 (c-forward-type))))
7009
e15f8aaa
AM
7010 (cons id-start
7011 (and (or at-type-decl at-typedef)
7012 (cons at-type-decl at-typedef))))
0386b551
AM
7013
7014 (t
7015 ;; False alarm. Restore the recorded ranges.
7016 (setq c-record-type-identifiers save-rec-type-ids
7017 c-record-ref-identifiers save-rec-ref-ids)
7018 nil))))
7019
7020(defun c-forward-label (&optional assume-markup preceding-token-end limit)
51c9af45 7021 ;; Assuming that point is at the beginning of a token, check if it starts a
1379f2c5
AM
7022 ;; label and if so move over it and return non-nil (t in default situations,
7023 ;; specific symbols (see below) for interesting situations), otherwise don't
7024 ;; move and return nil. "Label" here means "most things with a colon".
51c9af45
AM
7025 ;;
7026 ;; More precisely, a "label" is regarded as one of:
1379f2c5
AM
7027 ;; (i) a goto target like "foo:" - returns the symbol `goto-target';
7028 ;; (ii) A case label - either the entire construct "case FOO:", or just the
7029 ;; bare "case", should the colon be missing. We return t;
7030 ;; (iii) a keyword which needs a colon, like "default:" or "private:"; We
7031 ;; return t;
51c9af45 7032 ;; (iv) One of QT's "extended" C++ variants of
1379f2c5
AM
7033 ;; "private:"/"protected:"/"public:"/"more:" looking like "public slots:".
7034 ;; Returns the symbol `qt-2kwds-colon'.
7035 ;; (v) QT's construct "signals:". Returns the symbol `qt-1kwd-colon'.
82ba65cf 7036 ;; (vi) One of the keywords matched by `c-opt-extra-label-key' (without any
51c9af45 7037 ;; colon). Currently (2006-03), this applies only to Objective C's
1379f2c5 7038 ;; keywords "@private", "@protected", and "@public". Returns t.
51c9af45
AM
7039 ;;
7040 ;; One of the things which will NOT be recognised as a label is a bit-field
7041 ;; element of a struct, something like "int foo:5".
7042 ;;
7043 ;; The end of the label is taken to be just after the colon, or the end of
7044 ;; the first submatch in `c-opt-extra-label-key'. The point is directly
7045 ;; after the end on return. The terminating char gets marked with
7046 ;; `c-decl-end' to improve recognition of the following declaration or
7047 ;; statement.
0386b551
AM
7048 ;;
7049 ;; If ASSUME-MARKUP is non-nil, it's assumed that the preceding
51c9af45 7050 ;; label, if any, has already been marked up like that.
0386b551
AM
7051 ;;
7052 ;; If PRECEDING-TOKEN-END is given, it should be the first position
7053 ;; after the preceding token, i.e. on the other side of the
7054 ;; syntactic ws from the point. Use a value less than or equal to
7055 ;; (point-min) if the point is at the first token in (the visible
7056 ;; part of) the buffer.
7057 ;;
7058 ;; The optional LIMIT limits the forward scan for the colon.
7059 ;;
7060 ;; This function records the ranges of the label symbols on
7061 ;; `c-record-ref-identifiers' if `c-record-type-identifiers' (!) is
7062 ;; non-nil.
7063 ;;
7064 ;; This function might do hidden buffer changes.
7065
51c9af45 7066 (let ((start (point))
1379f2c5 7067 label-end
51c9af45 7068 qt-symbol-idx
1379f2c5 7069 macro-start ; if we're in one.
f412a567
AM
7070 label-type
7071 kwd)
0386b551 7072 (cond
b414f371 7073 ;; "case" or "default" (Doesn't apply to AWK).
0386b551
AM
7074 ((looking-at c-label-kwds-regexp)
7075 (let ((kwd-end (match-end 1)))
7076 ;; Record only the keyword itself for fontification, since in
7077 ;; case labels the following is a constant expression and not
7078 ;; a label.
7079 (when c-record-type-identifiers
7080 (c-record-ref-id (cons (match-beginning 1) kwd-end)))
7081
7082 ;; Find the label end.
7083 (goto-char kwd-end)
1379f2c5
AM
7084 (setq label-type
7085 (if (and (c-syntactic-re-search-forward
7086 ;; Stop on chars that aren't allowed in expressions,
7087 ;; and on operator chars that would be meaningless
7088 ;; there. FIXME: This doesn't cope with ?: operators.
7089 "[;{=,@]\\|\\(\\=\\|[^:]\\):\\([^:]\\|\\'\\)"
7090 limit t t nil 1)
7091 (match-beginning 2))
7092
7093 (progn ; there's a proper :
7094 (goto-char (match-beginning 2)) ; just after the :
7095 (c-put-c-type-property (1- (point)) 'c-decl-end)
7096 t)
7097
7098 ;; It's an unfinished label. We consider the keyword enough
7099 ;; to recognize it as a label, so that it gets fontified.
7100 ;; Leave the point at the end of it, but don't put any
7101 ;; `c-decl-end' marker.
7102 (goto-char kwd-end)
7103 t))))
0386b551 7104
51c9af45 7105 ;; @private, @protected, @public, in Objective C, or similar.
0386b551
AM
7106 ((and c-opt-extra-label-key
7107 (looking-at c-opt-extra-label-key))
7108 ;; For a `c-opt-extra-label-key' match, we record the whole
7109 ;; thing for fontification. That's to get the leading '@' in
7110 ;; Objective-C protection labels fontified.
7111 (goto-char (match-end 1))
7112 (when c-record-type-identifiers
7113 (c-record-ref-id (cons (match-beginning 1) (point))))
7114 (c-put-c-type-property (1- (point)) 'c-decl-end)
1379f2c5 7115 (setq label-type t))
0386b551 7116
51c9af45
AM
7117 ;; All other cases of labels.
7118 ((and c-recognize-colon-labels ; nil for AWK and IDL, otherwise t.
0386b551
AM
7119
7120 ;; A colon label must have something before the colon.
7121 (not (eq (char-after) ?:))
7122
7123 ;; Check that we're not after a token that can't precede a label.
7124 (or
7125 ;; Trivially succeeds when there's no preceding token.
7126 (if preceding-token-end
7127 (<= preceding-token-end (point-min))
7128 (save-excursion
7129 (c-backward-syntactic-ws)
7130 (setq preceding-token-end (point))
7131 (bobp)))
7132
7133 ;; Check if we're after a label, if we're after a closing
7134 ;; paren that belong to statement, and with
7135 ;; `c-label-prefix-re'. It's done in different order
7136 ;; depending on `assume-markup' since the checks have
7137 ;; different expensiveness.
7138 (if assume-markup
7139 (or
7140 (eq (c-get-char-property (1- preceding-token-end) 'c-type)
7141 'c-decl-end)
7142
7143 (save-excursion
7144 (goto-char (1- preceding-token-end))
7145 (c-beginning-of-current-token)
51c9af45
AM
7146 (or (looking-at c-label-prefix-re)
7147 (looking-at c-block-stmt-1-key)))
0386b551
AM
7148
7149 (and (eq (char-before preceding-token-end) ?\))
7150 (c-after-conditional)))
7151
7152 (or
7153 (save-excursion
7154 (goto-char (1- preceding-token-end))
7155 (c-beginning-of-current-token)
51c9af45
AM
7156 (or (looking-at c-label-prefix-re)
7157 (looking-at c-block-stmt-1-key)))
0386b551
AM
7158
7159 (cond
7160 ((eq (char-before preceding-token-end) ?\))
7161 (c-after-conditional))
7162
7163 ((eq (char-before preceding-token-end) ?:)
7164 ;; Might be after another label, so check it recursively.
51c9af45
AM
7165 (save-restriction
7166 (save-excursion
7167 (goto-char (1- preceding-token-end))
7168 ;; Essentially the same as the
7169 ;; `c-syntactic-re-search-forward' regexp below.
7170 (setq macro-start
7171 (save-excursion (and (c-beginning-of-macro)
7172 (point))))
7173 (if macro-start (narrow-to-region macro-start (point-max)))
7174 (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+" nil t)
7175 ;; Note: the following should work instead of the
7176 ;; narrow-to-region above. Investigate why not,
7177 ;; sometime. ACM, 2006-03-31.
7178 ;; (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+"
7179 ;; macro-start t)
7180 (let ((pte (point))
7181 ;; If the caller turned on recording for us,
7182 ;; it shouldn't apply when we check the
7183 ;; preceding label.
7184 c-record-type-identifiers)
7185 ;; A label can't start at a cpp directive. Check for
7186 ;; this, since c-forward-syntactic-ws would foul up on it.
7187 (unless (and c-opt-cpp-prefix (looking-at c-opt-cpp-prefix))
7188 (c-forward-syntactic-ws)
7189 (c-forward-label nil pte start))))))))))
7190
1379f2c5 7191 ;; Point is still at the beginning of the possible label construct.
b414f371 7192 ;;
51c9af45
AM
7193 ;; Check that the next nonsymbol token is ":", or that we're in one
7194 ;; of QT's "slots" declarations. Allow '(' for the sake of macro
7195 ;; arguments. FIXME: Should build this regexp from the language
7196 ;; constants.
1379f2c5
AM
7197 (cond
7198 ;; public: protected: private:
7199 ((and
7200 (c-major-mode-is 'c++-mode)
7201 (search-forward-regexp
7202 "\\=p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\>[^_]" nil t)
7203 (progn (backward-char)
7204 (c-forward-syntactic-ws limit)
7205 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon.
7206 (forward-char)
7207 (setq label-type t))
7208 ;; QT double keyword like "protected slots:" or goto target.
7209 ((progn (goto-char start) nil))
7210 ((when (c-syntactic-re-search-forward
7211 "[ \t\n[:?;{=*/%&|,<>!@+-]" limit t t) ; not at EOB
7212 (backward-char)
7213 (setq label-end (point))
7214 (setq qt-symbol-idx
7215 (and (c-major-mode-is 'c++-mode)
7216 (string-match
7217 "\\(p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\|more\\)\\>"
b414f371 7218 (buffer-substring start (point)))))
1379f2c5
AM
7219 (c-forward-syntactic-ws limit)
7220 (cond
7221 ((looking-at ":\\([^:]\\|\\'\\)") ; A single colon.
7222 (forward-char)
7223 (setq label-type
f412a567
AM
7224 (if (or (string= "signals" ; Special QT macro
7225 (setq kwd (buffer-substring-no-properties start label-end)))
7226 (string= "Q_SIGNALS" kwd))
1379f2c5
AM
7227 'qt-1kwd-colon
7228 'goto-target)))
7229 ((and qt-symbol-idx
f412a567 7230 (search-forward-regexp "\\=\\(slots\\|Q_SLOTS\\)\\>" limit t)
1379f2c5
AM
7231 (progn (c-forward-syntactic-ws limit)
7232 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon
7233 (forward-char)
7234 (setq label-type 'qt-2kwds-colon)))))))
0386b551
AM
7235
7236 (save-restriction
7237 (narrow-to-region start (point))
7238
7239 ;; Check that `c-nonlabel-token-key' doesn't match anywhere.
7240 (catch 'check-label
7241 (goto-char start)
7242 (while (progn
7243 (when (looking-at c-nonlabel-token-key)
7244 (goto-char start)
1379f2c5 7245 (setq label-type nil)
0386b551
AM
7246 (throw 'check-label nil))
7247 (and (c-safe (c-forward-sexp)
7248 (c-forward-syntactic-ws)
7249 t)
7250 (not (eobp)))))
7251
7252 ;; Record the identifiers in the label for fontification, unless
7253 ;; it begins with `c-label-kwds' in which case the following
7254 ;; identifiers are part of a (constant) expression that
7255 ;; shouldn't be fontified.
7256 (when (and c-record-type-identifiers
7257 (progn (goto-char start)
7258 (not (looking-at c-label-kwds-regexp))))
7259 (while (c-syntactic-re-search-forward c-symbol-key nil t)
7260 (c-record-ref-id (cons (match-beginning 0)
7261 (match-end 0)))))
7262
7263 (c-put-c-type-property (1- (point-max)) 'c-decl-end)
82ba65cf 7264 (goto-char (point-max)))))
0386b551
AM
7265
7266 (t
7267 ;; Not a label.
1379f2c5
AM
7268 (goto-char start)))
7269 label-type))
0386b551
AM
7270
7271(defun c-forward-objc-directive ()
7272 ;; Assuming the point is at the beginning of a token, try to move
7273 ;; forward to the end of the Objective-C directive that starts
7274 ;; there. Return t if a directive was fully recognized, otherwise
7275 ;; the point is moved as far as one could be successfully parsed and
7276 ;; nil is returned.
7277 ;;
7278 ;; This function records identifier ranges on
7279 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
7280 ;; `c-record-type-identifiers' is non-nil.
7281 ;;
7282 ;; This function might do hidden buffer changes.
7283
7284 (let ((start (point))
7285 start-char
7286 (c-promote-possible-types t)
7287 ;; Turn off recognition of angle bracket arglists while parsing
7288 ;; types here since the protocol reference list might then be
7289 ;; considered part of the preceding name or superclass-name.
7290 c-recognize-<>-arglists)
7291
7292 (if (or
7293 (when (looking-at
7294 (eval-when-compile
7295 (c-make-keywords-re t
7296 (append (c-lang-const c-protection-kwds objc)
7297 '("@end"))
7298 'objc-mode)))
7299 (goto-char (match-end 1))
7300 t)
7301
7302 (and
7303 (looking-at
7304 (eval-when-compile
7305 (c-make-keywords-re t
7306 '("@interface" "@implementation" "@protocol")
7307 'objc-mode)))
7308
7309 ;; Handle the name of the class itself.
7310 (progn
cb694ab7
AM
7311; (c-forward-token-2) ; 2006/1/13 This doesn't move if the token's
7312; at EOB.
7313 (goto-char (match-end 0))
7314 (c-skip-ws-forward)
0386b551
AM
7315 (c-forward-type))
7316
7317 (catch 'break
7318 ;; Look for ": superclass-name" or "( category-name )".
7319 (when (looking-at "[:\(]")
7320 (setq start-char (char-after))
7321 (forward-char)
7322 (c-forward-syntactic-ws)
7323 (unless (c-forward-type) (throw 'break nil))
7324 (when (eq start-char ?\()
7325 (unless (eq (char-after) ?\)) (throw 'break nil))
7326 (forward-char)
7327 (c-forward-syntactic-ws)))
7328
7329 ;; Look for a protocol reference list.
7330 (if (eq (char-after) ?<)
7331 (let ((c-recognize-<>-arglists t)
7332 (c-parse-and-markup-<>-arglists t)
7333 c-restricted-<>-arglists)
7334 (c-forward-<>-arglist t))
7335 t))))
7336
7337 (progn
7338 (c-backward-syntactic-ws)
7339 (c-clear-c-type-property start (1- (point)) 'c-decl-end)
7340 (c-put-c-type-property (1- (point)) 'c-decl-end)
7341 t)
7342
7343 (c-clear-c-type-property start (point) 'c-decl-end)
7344 nil)))
7345
785eecbb
RS
7346(defun c-beginning-of-inheritance-list (&optional lim)
7347 ;; Go to the first non-whitespace after the colon that starts a
7348 ;; multiple inheritance introduction. Optional LIM is the farthest
7349 ;; back we should search.
0386b551
AM
7350 ;;
7351 ;; This function might do hidden buffer changes.
7352 (c-with-syntax-table c++-template-syntax-table
7353 (c-backward-token-2 0 t lim)
7354 (while (and (or (looking-at c-symbol-start)
7355 (looking-at "[<,]\\|::"))
7356 (zerop (c-backward-token-2 1 t lim))))))
785eecbb 7357
785eecbb
RS
7358(defun c-in-method-def-p ()
7359 ;; Return nil if we aren't in a method definition, otherwise the
7360 ;; position of the initial [+-].
0386b551
AM
7361 ;;
7362 ;; This function might do hidden buffer changes.
785eecbb
RS
7363 (save-excursion
7364 (beginning-of-line)
a66cd3ee
MS
7365 (and c-opt-method-key
7366 (looking-at c-opt-method-key)
785eecbb
RS
7367 (point))
7368 ))
7369
a66cd3ee
MS
7370;; Contributed by Kevin Ryde <user42@zip.com.au>.
7371(defun c-in-gcc-asm-p ()
7372 ;; Return non-nil if point is within a gcc \"asm\" block.
7373 ;;
7374 ;; This should be called with point inside an argument list.
7375 ;;
7376 ;; Only one level of enclosing parentheses is considered, so for
7377 ;; instance `nil' is returned when in a function call within an asm
7378 ;; operand.
0386b551
AM
7379 ;;
7380 ;; This function might do hidden buffer changes.
a66cd3ee
MS
7381
7382 (and c-opt-asm-stmt-key
7383 (save-excursion
7384 (beginning-of-line)
7385 (backward-up-list 1)
7386 (c-beginning-of-statement-1 (point-min) nil t)
7387 (looking-at c-opt-asm-stmt-key))))
7388
abb7e5cf 7389(defun c-at-toplevel-p ()
a85fd6da
AM
7390 "Return a determination as to whether point is \"at the top level\".
7391Informally, \"at the top level\" is anywhere where you can write
7392a function.
7393
7394More precisely, being at the top-level means that point is either
7395outside any enclosing block (such as a function definition), or
7396directly inside a class, namespace or other block that contains
7397another declaration level.
abb7e5cf
SM
7398
7399If point is not at the top-level (e.g. it is inside a method
7400definition), then nil is returned. Otherwise, if point is at a
7401top-level not enclosed within a class definition, t is returned.
7402Otherwise, a 2-vector is returned where the zeroth element is the
7403buffer position of the start of the class declaration, and the first
7404element is the buffer position of the enclosing class's opening
0386b551
AM
7405brace.
7406
7407Note that this function might do hidden buffer changes. See the
7408comment at the start of cc-engine.el for more info."
a66cd3ee
MS
7409 (let ((paren-state (c-parse-state)))
7410 (or (not (c-most-enclosing-brace paren-state))
7411 (c-search-uplist-for-classkey paren-state))))
7412
d9e94c22 7413(defun c-just-after-func-arglist-p (&optional lim)
0386b551
AM
7414 ;; Return non-nil if the point is in the region after the argument
7415 ;; list of a function and its opening brace (or semicolon in case it
7416 ;; got no body). If there are K&R style argument declarations in
7417 ;; that region, the point has to be inside the first one for this
7418 ;; function to recognize it.
a66cd3ee 7419 ;;
0386b551
AM
7420 ;; If successful, the point is moved to the first token after the
7421 ;; function header (see `c-forward-decl-or-cast-1' for details) and
7422 ;; the position of the opening paren of the function arglist is
7423 ;; returned.
7424 ;;
7425 ;; The point is clobbered if not successful.
7426 ;;
7427 ;; LIM is used as bound for backward buffer searches.
7428 ;;
7429 ;; This function might do hidden buffer changes.
7430
7431 (let ((beg (point)) end id-start)
7432 (and
7433 (eq (c-beginning-of-statement-1 lim) 'same)
7434
7435 (not (or (c-major-mode-is 'objc-mode)
7436 (c-forward-objc-directive)))
7437
7438 (setq id-start
7439 (car-safe (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil)))
7440 (< id-start beg)
7441
7442 ;; There should not be a '=' or ',' between beg and the
7443 ;; start of the declaration since that means we were in the
7444 ;; "expression part" of the declaration.
7445 (or (> (point) beg)
7446 (not (looking-at "[=,]")))
7447
7448 (save-excursion
7449 ;; Check that there's an arglist paren in the
7450 ;; declaration.
7451 (goto-char id-start)
7452 (cond ((eq (char-after) ?\()
7453 ;; The declarator is a paren expression, so skip past it
7454 ;; so that we don't get stuck on that instead of the
7455 ;; function arglist.
7456 (c-forward-sexp))
51c9af45
AM
7457 ((and c-opt-op-identifier-prefix
7458 (looking-at c-opt-op-identifier-prefix))
0386b551
AM
7459 ;; Don't trip up on "operator ()".
7460 (c-forward-token-2 2 t)))
7461 (and (< (point) beg)
7462 (c-syntactic-re-search-forward "(" beg t t)
7463 (1- (point)))))))
785eecbb 7464
a66cd3ee
MS
7465(defun c-in-knr-argdecl (&optional lim)
7466 ;; Return the position of the first argument declaration if point is
7467 ;; inside a K&R style argument declaration list, nil otherwise.
7468 ;; `c-recognize-knr-p' is not checked. If LIM is non-nil, it's a
7469 ;; position that bounds the backward search for the argument list.
7470 ;;
9cf17ef1
AM
7471 ;; Point must be within a possible K&R region, e.g. just before a top-level
7472 ;; "{". It must be outside of parens and brackets. The test can return
7473 ;; false positives otherwise.
0386b551
AM
7474 ;;
7475 ;; This function might do hidden buffer changes.
d9e94c22 7476
a66cd3ee
MS
7477 (save-excursion
7478 (save-restriction
9cf17ef1
AM
7479 ;; If we're in a macro, our search range is restricted to it. Narrow to
7480 ;; the searchable range.
7481 (let* ((macro-start (c-query-macro-start))
7482 (lim (max (or lim (point-min)) (or macro-start (point-min))))
6b6481ed
AM
7483 before-lparen after-rparen
7484 (pp-count-out 20)) ; Max number of paren/brace constructs before we give up
9cf17ef1
AM
7485 (narrow-to-region lim (c-point 'eol))
7486
7487 ;; Search backwards for the defun's argument list. We give up if we
7488 ;; encounter a "}" (end of a previous defun) or BOB.
7489 ;;
7490 ;; The criterion for a paren structure being the arg list is:
7491 ;; o - there is non-WS stuff after it but before any "{"; AND
7492 ;; o - the token after it isn't a ";" AND
7493 ;; o - it is preceded by either an identifier (the function name) or
7494 ;; a macro expansion like "DEFUN (...)"; AND
7495 ;; o - its content is a non-empty comma-separated list of identifiers
7496 ;; (an empty arg list won't have a knr region).
7497 ;;
7498 ;; The following snippet illustrates these rules:
7499 ;; int foo (bar, baz, yuk)
7500 ;; int bar [] ;
7501 ;; int (*baz) (my_type) ;
7502 ;; int (*) (void) (*yuk) (void) ;
7503 ;; {
7504
7505 (catch 'knr
6b6481ed
AM
7506 (while (> pp-count-out 0) ; go back one paren/bracket pair each time.
7507 (setq pp-count-out (1- pp-count-out))
10489fcb 7508 (c-syntactic-skip-backward "^)]}")
9cf17ef1
AM
7509 (cond ((eq (char-before) ?\))
7510 (setq after-rparen (point)))
10489fcb
AM
7511 ((eq (char-before) ?\])
7512 (setq after-rparen nil))
7513 (t ; either } (hit previous defun) or no more parens/brackets
7514 (throw 'knr nil)))
9cf17ef1
AM
7515
7516 (if after-rparen
7517 ;; We're inside a paren. Could it be our argument list....?
7518 (if
7519 (and
7520 (progn
7521 (goto-char after-rparen)
7522 (unless (c-go-list-backward) (throw 'knr nil)) ;
7523 ;; FIXME!!! What about macros between the parens? 2007/01/20
7524 (setq before-lparen (point)))
d9e94c22 7525
9cf17ef1
AM
7526 ;; It can't be the arg list if next token is ; or {
7527 (progn (goto-char after-rparen)
7528 (c-forward-syntactic-ws)
7529 (not (memq (char-after) '(?\; ?\{))))
d9e94c22 7530
9cf17ef1
AM
7531 ;; Is the thing preceding the list an identifier (the
7532 ;; function name), or a macro expansion?
7533 (progn
7534 (goto-char before-lparen)
7535 (eq (c-backward-token-2) 0)
7536 (or (c-on-identifier)
7537 (and (eq (char-after) ?\))
7538 (c-go-up-list-backward)
7539 (eq (c-backward-token-2) 0)
7540 (c-on-identifier))))
7541
7542 ;; Have we got a non-empty list of comma-separated
7543 ;; identifiers?
7544 (progn
7545 (goto-char before-lparen)
7546 (c-forward-token-2) ; to first token inside parens
7547 (and
7548 (c-on-identifier)
7549 (c-forward-token-2)
7550 (catch 'id-list
7551 (while (eq (char-after) ?\,)
7552 (c-forward-token-2)
7553 (unless (c-on-identifier) (throw 'id-list nil))
7554 (c-forward-token-2))
7555 (eq (char-after) ?\))))))
7556
7557 ;; ...Yes. We've identified the function's argument list.
7558 (throw 'knr
7559 (progn (goto-char after-rparen)
7560 (c-forward-syntactic-ws)
7561 (point)))
7562
7563 ;; ...No. The current parens aren't the function's arg list.
7564 (goto-char before-lparen))
7565
7566 (or (c-go-list-backward) ; backwards over [ .... ]
7567 (throw 'knr nil)))))))))
785eecbb
RS
7568
7569(defun c-skip-conditional ()
7570 ;; skip forward over conditional at point, including any predicate
7571 ;; statements in parentheses. No error checking is performed.
0386b551
AM
7572 ;;
7573 ;; This function might do hidden buffer changes.
0ec8351b
BW
7574 (c-forward-sexp (cond
7575 ;; else if()
a66cd3ee
MS
7576 ((looking-at (concat "\\<else"
7577 "\\([ \t\n]\\|\\\\\n\\)+"
7578 "if\\>\\([^_]\\|$\\)"))
7579 3)
0ec8351b 7580 ;; do, else, try, finally
a66cd3ee
MS
7581 ((looking-at (concat "\\<\\("
7582 "do\\|else\\|try\\|finally"
7583 "\\)\\>\\([^_]\\|$\\)"))
130c507e 7584 1)
ce8c7486 7585 ;; for, if, while, switch, catch, synchronized, foreach
0ec8351b 7586 (t 2))))
785eecbb 7587
a66cd3ee
MS
7588(defun c-after-conditional (&optional lim)
7589 ;; If looking at the token after a conditional then return the
7590 ;; position of its start, otherwise return nil.
0386b551
AM
7591 ;;
7592 ;; This function might do hidden buffer changes.
a66cd3ee 7593 (save-excursion
d9e94c22 7594 (and (zerop (c-backward-token-2 1 t lim))
a66cd3ee
MS
7595 (or (looking-at c-block-stmt-1-key)
7596 (and (eq (char-after) ?\()
d9e94c22 7597 (zerop (c-backward-token-2 1 t lim))
a66cd3ee
MS
7598 (looking-at c-block-stmt-2-key)))
7599 (point))))
7600
0386b551
AM
7601(defun c-after-special-operator-id (&optional lim)
7602 ;; If the point is after an operator identifier that isn't handled
7603 ;; like an ordinary symbol (i.e. like "operator =" in C++) then the
7604 ;; position of the start of that identifier is returned. nil is
7605 ;; returned otherwise. The point may be anywhere in the syntactic
7606 ;; whitespace after the last token of the operator identifier.
7607 ;;
7608 ;; This function might do hidden buffer changes.
7609 (save-excursion
7610 (and c-overloadable-operators-regexp
7611 (zerop (c-backward-token-2 1 nil lim))
7612 (looking-at c-overloadable-operators-regexp)
51c9af45 7613 (or (not c-opt-op-identifier-prefix)
0386b551
AM
7614 (and
7615 (zerop (c-backward-token-2 1 nil lim))
51c9af45 7616 (looking-at c-opt-op-identifier-prefix)))
0386b551
AM
7617 (point))))
7618
a66cd3ee
MS
7619(defsubst c-backward-to-block-anchor (&optional lim)
7620 ;; Assuming point is at a brace that opens a statement block of some
7621 ;; kind, move to the proper anchor point for that block. It might
7622 ;; need to be adjusted further by c-add-stmt-syntax, but the
7623 ;; position at return is suitable as start position for that
7624 ;; function.
0386b551
AM
7625 ;;
7626 ;; This function might do hidden buffer changes.
a66cd3ee
MS
7627 (unless (= (point) (c-point 'boi))
7628 (let ((start (c-after-conditional lim)))
7629 (if start
7630 (goto-char start)))))
7631
037558bf 7632(defsubst c-backward-to-decl-anchor (&optional lim)
a66cd3ee
MS
7633 ;; Assuming point is at a brace that opens the block of a top level
7634 ;; declaration of some kind, move to the proper anchor point for
7635 ;; that block.
0386b551
AM
7636 ;;
7637 ;; This function might do hidden buffer changes.
a66cd3ee 7638 (unless (= (point) (c-point 'boi))
037558bf 7639 (c-beginning-of-statement-1 lim)))
a66cd3ee 7640
ff959bab 7641(defun c-search-decl-header-end ()
a66cd3ee
MS
7642 ;; Search forward for the end of the "header" of the current
7643 ;; declaration. That's the position where the definition body
7644 ;; starts, or the first variable initializer, or the ending
7645 ;; semicolon. I.e. search forward for the closest following
7646 ;; (syntactically relevant) '{', '=' or ';' token. Point is left
7647 ;; _after_ the first found token, or at point-max if none is found.
0386b551
AM
7648 ;;
7649 ;; This function might do hidden buffer changes.
ff959bab
MS
7650
7651 (let ((base (point)))
7652 (if (c-major-mode-is 'c++-mode)
7653
7654 ;; In C++ we need to take special care to handle operator
7655 ;; tokens and those pesky template brackets.
7656 (while (and
7657 (c-syntactic-re-search-forward "[;{<=]" nil 'move t t)
7658 (or
7659 (c-end-of-current-token base)
7660 ;; Handle operator identifiers, i.e. ignore any
7661 ;; operator token preceded by "operator".
7662 (save-excursion
7663 (and (c-safe (c-backward-sexp) t)
51c9af45 7664 (looking-at c-opt-op-identifier-prefix)))
ff959bab
MS
7665 (and (eq (char-before) ?<)
7666 (c-with-syntax-table c++-template-syntax-table
7667 (if (c-safe (goto-char (c-up-list-forward (point))))
7668 t
7669 (goto-char (point-max))
7670 nil)))))
7671 (setq base (point)))
7672
7673 (while (and
7674 (c-syntactic-re-search-forward "[;{=]" nil 'move t t)
7675 (c-end-of-current-token base))
7676 (setq base (point))))))
a66cd3ee
MS
7677
7678(defun c-beginning-of-decl-1 (&optional lim)
7679 ;; Go to the beginning of the current declaration, or the beginning
7680 ;; of the previous one if already at the start of it. Point won't
0386b551 7681 ;; be moved out of any surrounding paren. Return a cons cell of the
a66cd3ee
MS
7682 ;; form (MOVE . KNR-POS). MOVE is like the return value from
7683 ;; `c-beginning-of-statement-1'. If point skipped over some K&R
7684 ;; style argument declarations (and they are to be recognized) then
7685 ;; KNR-POS is set to the start of the first such argument
7686 ;; declaration, otherwise KNR-POS is nil. If LIM is non-nil, it's a
7687 ;; position that bounds the backward search.
7688 ;;
7689 ;; NB: Cases where the declaration continues after the block, as in
7690 ;; "struct foo { ... } bar;", are currently recognized as two
7691 ;; declarations, e.g. "struct foo { ... }" and "bar;" in this case.
0386b551
AM
7692 ;;
7693 ;; This function might do hidden buffer changes.
a66cd3ee
MS
7694 (catch 'return
7695 (let* ((start (point))
d9e94c22 7696 (last-stmt-start (point))
0386b551 7697 (move (c-beginning-of-statement-1 lim nil t)))
a66cd3ee 7698
a66cd3ee
MS
7699 ;; `c-beginning-of-statement-1' stops at a block start, but we
7700 ;; want to continue if the block doesn't begin a top level
2a15eb73
MS
7701 ;; construct, i.e. if it isn't preceded by ';', '}', ':', bob,
7702 ;; or an open paren.
d9e94c22 7703 (let ((beg (point)) tentative-move)
51c9af45
AM
7704 ;; Go back one "statement" each time round the loop until we're just
7705 ;; after a ;, }, or :, or at BOB or the start of a macro or start of
7706 ;; an ObjC method. This will move over a multiple declaration whose
7707 ;; components are comma separated.
d9e94c22
MS
7708 (while (and
7709 ;; Must check with c-opt-method-key in ObjC mode.
7710 (not (and c-opt-method-key
7711 (looking-at c-opt-method-key)))
7712 (/= last-stmt-start (point))
7713 (progn
7714 (c-backward-syntactic-ws lim)
7715 (not (memq (char-before) '(?\; ?} ?: nil))))
2a15eb73
MS
7716 (save-excursion
7717 (backward-char)
7718 (not (looking-at "\\s(")))
d9e94c22
MS
7719 ;; Check that we don't move from the first thing in a
7720 ;; macro to its header.
7721 (not (eq (setq tentative-move
0386b551 7722 (c-beginning-of-statement-1 lim nil t))
d9e94c22
MS
7723 'macro)))
7724 (setq last-stmt-start beg
7725 beg (point)
7726 move tentative-move))
7727 (goto-char beg))
7728
7729 (when c-recognize-knr-p
7730 (let ((fallback-pos (point)) knr-argdecl-start)
7731 ;; Handle K&R argdecls. Back up after the "statement" jumped
7732 ;; over by `c-beginning-of-statement-1', unless it was the
7733 ;; function body, in which case we're sitting on the opening
7734 ;; brace now. Then test if we're in a K&R argdecl region and
7735 ;; that we started at the other side of the first argdecl in
7736 ;; it.
7737 (unless (eq (char-after) ?{)
7738 (goto-char last-stmt-start))
7739 (if (and (setq knr-argdecl-start (c-in-knr-argdecl lim))
7740 (< knr-argdecl-start start)
7741 (progn
7742 (goto-char knr-argdecl-start)
0386b551 7743 (not (eq (c-beginning-of-statement-1 lim nil t) 'macro))))
d9e94c22
MS
7744 (throw 'return
7745 (cons (if (eq (char-after fallback-pos) ?{)
7746 'previous
7747 'same)
7748 knr-argdecl-start))
7749 (goto-char fallback-pos))))
7750
51c9af45
AM
7751 ;; `c-beginning-of-statement-1' counts each brace block as a separate
7752 ;; statement, so the result will be 'previous if we've moved over any.
7753 ;; So change our result back to 'same if necessary.
7754 ;;
7755 ;; If they were brace list initializers we might not have moved over a
7756 ;; declaration boundary though, so change it to 'same if we've moved
7757 ;; past a '=' before '{', but not ';'. (This ought to be integrated
7758 ;; into `c-beginning-of-statement-1', so we avoid this extra pass which
7759 ;; potentially can search over a large amount of text.). Take special
7760 ;; pains not to get mislead by C++'s "operator=", and the like.
d9e94c22
MS
7761 (if (and (eq move 'previous)
7762 (c-with-syntax-table (if (c-major-mode-is 'c++-mode)
7763 c++-template-syntax-table
7764 (syntax-table))
7765 (save-excursion
51c9af45
AM
7766 (and
7767 (progn
7768 (while ; keep going back to "[;={"s until we either find
7769 ; no more, or get to one which isn't an "operator ="
7770 (and (c-syntactic-re-search-forward "[;={]" start t t t)
7771 (eq (char-before) ?=)
7772 c-overloadable-operators-regexp
7773 c-opt-op-identifier-prefix
7774 (save-excursion
7775 (eq (c-backward-token-2) 0)
7776 (looking-at c-overloadable-operators-regexp)
7777 (eq (c-backward-token-2) 0)
7778 (looking-at c-opt-op-identifier-prefix))))
7779 (eq (char-before) ?=))
7780 (c-syntactic-re-search-forward "[;{]" start t t)
7781 (eq (char-before) ?{)
7782 (c-safe (goto-char (c-up-list-forward (point))) t)
7783 (not (c-syntactic-re-search-forward ";" start t t))))))
d9e94c22
MS
7784 (cons 'same nil)
7785 (cons move nil)))))
a66cd3ee
MS
7786
7787(defun c-end-of-decl-1 ()
7788 ;; Assuming point is at the start of a declaration (as detected by
7789 ;; e.g. `c-beginning-of-decl-1'), go to the end of it. Unlike
7790 ;; `c-beginning-of-decl-1', this function handles the case when a
7791 ;; block is followed by identifiers in e.g. struct declarations in C
7792 ;; or C++. If a proper end was found then t is returned, otherwise
7793 ;; point is moved as far as possible within the current sexp and nil
7794 ;; is returned. This function doesn't handle macros; use
7795 ;; `c-end-of-macro' instead in those cases.
0386b551
AM
7796 ;;
7797 ;; This function might do hidden buffer changes.
ce8c7486 7798 (let ((start (point))
a66cd3ee
MS
7799 (decl-syntax-table (if (c-major-mode-is 'c++-mode)
7800 c++-template-syntax-table
7801 (syntax-table))))
7802 (catch 'return
7803 (c-search-decl-header-end)
7804
7805 (when (and c-recognize-knr-p
7806 (eq (char-before) ?\;)
7807 (c-in-knr-argdecl start))
7808 ;; Stopped at the ';' in a K&R argdecl section which is
7809 ;; detected using the same criteria as in
7810 ;; `c-beginning-of-decl-1'. Move to the following block
7811 ;; start.
d9e94c22 7812 (c-syntactic-re-search-forward "{" nil 'move t))
a66cd3ee
MS
7813
7814 (when (eq (char-before) ?{)
7815 ;; Encountered a block in the declaration. Jump over it.
7816 (condition-case nil
7817 (goto-char (c-up-list-forward (point)))
d9e94c22
MS
7818 (error (goto-char (point-max))
7819 (throw 'return nil)))
a66cd3ee
MS
7820 (if (or (not c-opt-block-decls-with-vars-key)
7821 (save-excursion
7822 (c-with-syntax-table decl-syntax-table
7823 (let ((lim (point)))
7824 (goto-char start)
b3cf7e18
MS
7825 (not (and
7826 ;; Check for `c-opt-block-decls-with-vars-key'
7827 ;; before the first paren.
7828 (c-syntactic-re-search-forward
d9e94c22 7829 (concat "[;=\(\[{]\\|\\("
b3cf7e18
MS
7830 c-opt-block-decls-with-vars-key
7831 "\\)")
d9e94c22 7832 lim t t t)
b3cf7e18
MS
7833 (match-beginning 1)
7834 (not (eq (char-before) ?_))
d9e94c22
MS
7835 ;; Check that the first following paren is
7836 ;; the block.
7837 (c-syntactic-re-search-forward "[;=\(\[{]"
7838 lim t t t)
b3cf7e18 7839 (eq (char-before) ?{)))))))
a66cd3ee
MS
7840 ;; The declaration doesn't have any of the
7841 ;; `c-opt-block-decls-with-vars' keywords in the
7842 ;; beginning, so it ends here at the end of the block.
7843 (throw 'return t)))
7844
7845 (c-with-syntax-table decl-syntax-table
7846 (while (progn
7847 (if (eq (char-before) ?\;)
7848 (throw 'return t))
d9e94c22 7849 (c-syntactic-re-search-forward ";" nil 'move t))))
a66cd3ee 7850 nil)))
ce8c7486 7851
0386b551
AM
7852(defun c-looking-at-decl-block (containing-sexp goto-start &optional limit)
7853 ;; Assuming the point is at an open brace, check if it starts a
7854 ;; block that contains another declaration level, i.e. that isn't a
7855 ;; statement block or a brace list, and if so return non-nil.
7856 ;;
7857 ;; If the check is successful, the return value is the start of the
7858 ;; keyword that tells what kind of construct it is, i.e. typically
7859 ;; what `c-decl-block-key' matched. Also, if GOTO-START is set then
7860 ;; the point will be at the start of the construct, before any
7861 ;; leading specifiers, otherwise it's at the returned position.
7862 ;;
7863 ;; The point is clobbered if the check is unsuccessful.
7864 ;;
7865 ;; CONTAINING-SEXP is the position of the open of the surrounding
7866 ;; paren, or nil if none.
7867 ;;
7868 ;; The optional LIMIT limits the backward search for the start of
7869 ;; the construct. It's assumed to be at a syntactically relevant
7870 ;; position.
7871 ;;
7872 ;; If any template arglists are found in the searched region before
7873 ;; the open brace, they get marked with paren syntax.
7874 ;;
7875 ;; This function might do hidden buffer changes.
7876
7877 (let ((open-brace (point)) kwd-start first-specifier-pos)
7878 (c-syntactic-skip-backward c-block-prefix-charset limit t)
7879
7880 (when (and c-recognize-<>-arglists
7881 (eq (char-before) ?>))
7882 ;; Could be at the end of a template arglist.
7883 (let ((c-parse-and-markup-<>-arglists t)
7884 (c-disallow-comma-in-<>-arglists
7885 (and containing-sexp
7886 (not (eq (char-after containing-sexp) ?{)))))
7887 (while (and
7888 (c-backward-<>-arglist nil limit)
7889 (progn
7890 (c-syntactic-skip-backward c-block-prefix-charset limit t)
7891 (eq (char-before) ?>))))))
7892
7893 ;; Note: Can't get bogus hits inside template arglists below since they
7894 ;; have gotten paren syntax above.
7895 (when (and
7896 ;; If `goto-start' is set we begin by searching for the
7897 ;; first possible position of a leading specifier list.
7898 ;; The `c-decl-block-key' search continues from there since
7899 ;; we know it can't match earlier.
7900 (if goto-start
7901 (when (c-syntactic-re-search-forward c-symbol-start
7902 open-brace t t)
7903 (goto-char (setq first-specifier-pos (match-beginning 0)))
7904 t)
7905 t)
7906
7907 (cond
7908 ((c-syntactic-re-search-forward c-decl-block-key open-brace t t t)
7909 (goto-char (setq kwd-start (match-beginning 0)))
7910 (or
7911
7912 ;; Found a keyword that can't be a type?
7913 (match-beginning 1)
7914
7915 ;; Can be a type too, in which case it's the return type of a
7916 ;; function (under the assumption that no declaration level
7917 ;; block construct starts with a type).
7918 (not (c-forward-type))
7919
7920 ;; Jumped over a type, but it could be a declaration keyword
7921 ;; followed by the declared identifier that we've jumped over
7922 ;; instead (e.g. in "class Foo {"). If it indeed is a type
7923 ;; then we should be at the declarator now, so check for a
7924 ;; valid declarator start.
7925 ;;
7926 ;; Note: This doesn't cope with the case when a declared
7927 ;; identifier is followed by e.g. '(' in a language where '('
7928 ;; also might be part of a declarator expression. Currently
7929 ;; there's no such language.
7930 (not (or (looking-at c-symbol-start)
7931 (looking-at c-type-decl-prefix-key)))))
7932
7933 ;; In Pike a list of modifiers may be followed by a brace
7934 ;; to make them apply to many identifiers. Note that the
7935 ;; match data will be empty on return in this case.
7936 ((and (c-major-mode-is 'pike-mode)
7937 (progn
7938 (goto-char open-brace)
7939 (= (c-backward-token-2) 0))
7940 (looking-at c-specifier-key)
7941 ;; Use this variant to avoid yet another special regexp.
7942 (c-keyword-member (c-keyword-sym (match-string 1))
7943 'c-modifier-kwds))
7944 (setq kwd-start (point))
7945 t)))
7946
7947 ;; Got a match.
7948
7949 (if goto-start
7950 ;; Back up over any preceding specifiers and their clauses
7951 ;; by going forward from `first-specifier-pos', which is the
7952 ;; earliest possible position where the specifier list can
7953 ;; start.
7954 (progn
7955 (goto-char first-specifier-pos)
7956
7957 (while (< (point) kwd-start)
7958 (if (looking-at c-symbol-key)
7959 ;; Accept any plain symbol token on the ground that
7960 ;; it's a specifier masked through a macro (just
7961 ;; like `c-forward-decl-or-cast-1' skip forward over
7962 ;; such tokens).
7963 ;;
7964 ;; Could be more restrictive wrt invalid keywords,
7965 ;; but that'd only occur in invalid code so there's
7966 ;; no use spending effort on it.
7967 (let ((end (match-end 0)))
7968 (unless (c-forward-keyword-clause 0)
7969 (goto-char end)
7970 (c-forward-syntactic-ws)))
7971
7972 ;; Can't parse a declaration preamble and is still
7973 ;; before `kwd-start'. That means `first-specifier-pos'
7974 ;; was in some earlier construct. Search again.
7975 (if (c-syntactic-re-search-forward c-symbol-start
7976 kwd-start 'move t)
7977 (goto-char (setq first-specifier-pos (match-beginning 0)))
7978 ;; Got no preamble before the block declaration keyword.
7979 (setq first-specifier-pos kwd-start))))
7980
7981 (goto-char first-specifier-pos))
7982 (goto-char kwd-start))
7983
7984 kwd-start)))
ce8c7486 7985
a66cd3ee 7986(defun c-search-uplist-for-classkey (paren-state)
0386b551
AM
7987 ;; Check if the closest containing paren sexp is a declaration
7988 ;; block, returning a 2 element vector in that case. Aref 0
7989 ;; contains the bufpos at boi of the class key line, and aref 1
7990 ;; contains the bufpos of the open brace. This function is an
7991 ;; obsolete wrapper for `c-looking-at-decl-block'.
7992 ;;
7993 ;; This function might do hidden buffer changes.
7994 (let ((open-paren-pos (c-most-enclosing-brace paren-state)))
7995 (when open-paren-pos
7996 (save-excursion
7997 (goto-char open-paren-pos)
7998 (when (and (eq (char-after) ?{)
7999 (c-looking-at-decl-block
8000 (c-safe-position open-paren-pos paren-state)
8001 nil))
8002 (back-to-indentation)
8003 (vector (point) open-paren-pos))))))
785eecbb 8004
a66cd3ee 8005(defun c-inside-bracelist-p (containing-sexp paren-state)
785eecbb
RS
8006 ;; return the buffer position of the beginning of the brace list
8007 ;; statement if we're inside a brace list, otherwise return nil.
8008 ;; CONTAINING-SEXP is the buffer pos of the innermost containing
0386b551 8009 ;; paren. PAREN-STATE is the remainder of the state of enclosing
130c507e 8010 ;; braces
785eecbb
RS
8011 ;;
8012 ;; N.B.: This algorithm can potentially get confused by cpp macros
0386b551 8013 ;; placed in inconvenient locations. It's a trade-off we make for
785eecbb 8014 ;; speed.
0386b551
AM
8015 ;;
8016 ;; This function might do hidden buffer changes.
785eecbb 8017 (or
d9e94c22 8018 ;; This will pick up brace list declarations.
b2acd789
RS
8019 (c-safe
8020 (save-excursion
8021 (goto-char containing-sexp)
0ec8351b 8022 (c-forward-sexp -1)
b2acd789 8023 (let (bracepos)
d9e94c22 8024 (if (and (or (looking-at c-brace-list-key)
0ec8351b 8025 (progn (c-forward-sexp -1)
d9e94c22 8026 (looking-at c-brace-list-key)))
a66cd3ee 8027 (setq bracepos (c-down-list-forward (point)))
b2acd789
RS
8028 (not (c-crosses-statement-barrier-p (point)
8029 (- bracepos 2))))
8030 (point)))))
785eecbb
RS
8031 ;; this will pick up array/aggregate init lists, even if they are nested.
8032 (save-excursion
0ec8351b
BW
8033 (let ((class-key
8034 ;; Pike can have class definitions anywhere, so we must
8035 ;; check for the class key here.
8036 (and (c-major-mode-is 'pike-mode)
a66cd3ee
MS
8037 c-decl-block-key))
8038 bufpos braceassignp lim next-containing)
785eecbb
RS
8039 (while (and (not bufpos)
8040 containing-sexp)
a66cd3ee
MS
8041 (when paren-state
8042 (if (consp (car paren-state))
8043 (setq lim (cdr (car paren-state))
8044 paren-state (cdr paren-state))
8045 (setq lim (car paren-state)))
8046 (when paren-state
8047 (setq next-containing (car paren-state)
8048 paren-state (cdr paren-state))))
785eecbb 8049 (goto-char containing-sexp)
a66cd3ee
MS
8050 (if (c-looking-at-inexpr-block next-containing next-containing)
8051 ;; We're in an in-expression block of some kind. Do not
8052 ;; check nesting. We deliberately set the limit to the
8053 ;; containing sexp, so that c-looking-at-inexpr-block
8054 ;; doesn't check for an identifier before it.
0ec8351b
BW
8055 (setq containing-sexp nil)
8056 ;; see if the open brace is preceded by = or [...] in
8057 ;; this statement, but watch out for operator=
a66cd3ee 8058 (setq braceassignp 'dontknow)
d9e94c22 8059 (c-backward-token-2 1 t lim)
6393fef2 8060 ;; Checks to do only on the first sexp before the brace.
d9e94c22 8061 (when (and c-opt-inexpr-brace-list-key
6393fef2
RS
8062 (eq (char-after) ?\[))
8063 ;; In Java, an initialization brace list may follow
8064 ;; directly after "new Foo[]", so check for a "new"
8065 ;; earlier.
8066 (while (eq braceassignp 'dontknow)
8067 (setq braceassignp
d9e94c22
MS
8068 (cond ((/= (c-backward-token-2 1 t lim) 0) nil)
8069 ((looking-at c-opt-inexpr-brace-list-key) t)
6393fef2
RS
8070 ((looking-at "\\sw\\|\\s_\\|[.[]")
8071 ;; Carry on looking if this is an
8072 ;; identifier (may contain "." in Java)
8073 ;; or another "[]" sexp.
8074 'dontknow)
8075 (t nil)))))
8076 ;; Checks to do on all sexps before the brace, up to the
8077 ;; beginning of the statement.
8078 (while (eq braceassignp 'dontknow)
0ec8351b
BW
8079 (cond ((eq (char-after) ?\;)
8080 (setq braceassignp nil))
8081 ((and class-key
8082 (looking-at class-key))
8083 (setq braceassignp nil))
8084 ((eq (char-after) ?=)
8085 ;; We've seen a =, but must check earlier tokens so
8086 ;; that it isn't something that should be ignored.
8087 (setq braceassignp 'maybe)
8088 (while (and (eq braceassignp 'maybe)
d9e94c22 8089 (zerop (c-backward-token-2 1 t lim)))
0ec8351b
BW
8090 (setq braceassignp
8091 (cond
8092 ;; Check for operator =
51c9af45
AM
8093 ((and c-opt-op-identifier-prefix
8094 (looking-at c-opt-op-identifier-prefix))
0386b551 8095 nil)
130c507e
GM
8096 ;; Check for `<opchar>= in Pike.
8097 ((and (c-major-mode-is 'pike-mode)
8098 (or (eq (char-after) ?`)
8099 ;; Special case for Pikes
8100 ;; `[]=, since '[' is not in
8101 ;; the punctuation class.
8102 (and (eq (char-after) ?\[)
8103 (eq (char-before) ?`))))
8104 nil)
0ec8351b
BW
8105 ((looking-at "\\s.") 'maybe)
8106 ;; make sure we're not in a C++ template
8107 ;; argument assignment
a66cd3ee
MS
8108 ((and
8109 (c-major-mode-is 'c++-mode)
8110 (save-excursion
8111 (let ((here (point))
8112 (pos< (progn
8113 (skip-chars-backward "^<>")
8114 (point))))
8115 (and (eq (char-before) ?<)
8116 (not (c-crosses-statement-barrier-p
8117 pos< here))
8118 (not (c-in-literal))
8119 ))))
0ec8351b 8120 nil)
6393fef2
RS
8121 (t t))))))
8122 (if (and (eq braceassignp 'dontknow)
d9e94c22 8123 (/= (c-backward-token-2 1 t lim) 0))
6393fef2
RS
8124 (setq braceassignp nil)))
8125 (if (not braceassignp)
0ec8351b
BW
8126 (if (eq (char-after) ?\;)
8127 ;; Brace lists can't contain a semicolon, so we're done.
8128 (setq containing-sexp nil)
a66cd3ee
MS
8129 ;; Go up one level.
8130 (setq containing-sexp next-containing
8131 lim nil
8132 next-containing nil))
0ec8351b
BW
8133 ;; we've hit the beginning of the aggregate list
8134 (c-beginning-of-statement-1
a66cd3ee 8135 (c-most-enclosing-brace paren-state))
0ec8351b 8136 (setq bufpos (point))))
a66cd3ee 8137 )
785eecbb
RS
8138 bufpos))
8139 ))
8140
0ec8351b
BW
8141(defun c-looking-at-special-brace-list (&optional lim)
8142