1 /**************************************************************************
3 * Copyright 2009 VMware, Inc.
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
30 #include "sl_pp_context.h"
31 #include "sl_pp_public.h"
32 #include "sl_pp_process.h"
36 sl_pp_process_line(struct sl_pp_context
*context
,
37 struct sl_pp_token_buffer
*buffer
,
38 struct sl_pp_process_state
*pstate
)
40 struct sl_pp_process_state state
;
47 memset(&state
, 0, sizeof(state
));
49 struct sl_pp_token_info input
;
51 sl_pp_token_buffer_get(buffer
, &input
);
52 switch (input
.token
) {
53 case SL_PP_WHITESPACE
:
56 case SL_PP_IDENTIFIER
:
57 sl_pp_token_buffer_unget(buffer
, &input
);
58 if (sl_pp_macro_expand(context
, buffer
, NULL
, &state
, sl_pp_macro_expand_normal
)) {
70 if (sl_pp_process_out(&state
, &input
)) {
71 strcpy(context
->error_msg
, "out of memory");
78 if (state
.out_len
> 0 && state
.out
[0].token
== SL_PP_UINT
) {
79 line_number
= state
.out
[0].data
._uint
;
81 strcpy(context
->error_msg
, "expected a number after `#line'");
86 if (state
.out_len
> 1) {
87 if (state
.out
[1].token
== SL_PP_UINT
) {
88 file_number
= state
.out
[1].data
._uint
;
90 strcpy(context
->error_msg
, "expected a number after line number");
95 if (state
.out_len
> 2) {
96 strcpy(context
->error_msg
, "expected an end of line after file number");
104 line
= atoi(sl_pp_context_cstr(context
, line_number
));
105 if (file_number
!= -1) {
106 file
= atoi(sl_pp_context_cstr(context
, file_number
));
108 file
= context
->file
;
111 if (context
->line
!= line
|| context
->file
!= file
) {
112 struct sl_pp_token_info ti
;
114 ti
.token
= SL_PP_LINE
;
115 ti
.data
.line
.lineno
= line
;
116 ti
.data
.line
.fileno
= file
;
117 if (sl_pp_process_out(pstate
, &ti
)) {
118 strcpy(context
->error_msg
, "out of memory");
122 context
->line
= line
;
123 context
->file
= file
;