The --gen_preprocessor_listing option generates a raw listing file that can help you understand how the compiler is preprocessing your source file. Whereas the preprocessed listing file (generated with the --preproc_only, --preproc_with_comment, --preproc_with_line, and --preproc_dependency preprocessor options) shows a preprocessed version of your source file, a raw listing file provides a comparison between the original source line and the preprocessed output. The raw listing file has the same name as the corresponding source file with an .rl extension.
Each source line in the raw listing file begins with one of the identifiers listed in Table 3-30 .
The --gen_preprocessor_listing option also includes diagnostic identifiers as defined in Table 3-31 .
var tiPageName = 'Literature reader-SPRUI04F-ja_JP';
var tiDocType = 'User\'s Guide';
var tiLibraryStore = new com.TI.tiLibrary.tiLibraryStore();
var tiLibraryViewerStore = tiLibraryStore.viewer_store;
RiotControl.addStore(tiLibraryStore);
var subRoutes = riot.route.create();
subRoutes("/document-viewer/*/datasheet/*\\?*#*", function(gpn, url, params, anchor) {
RiotControl.trigger("ti_library_open_viewer", {
document: tiLibraryViewerStore.document,
documentLocale: tiLibraryViewerStore.documentLocale,
url: "/document-viewer/" + gpn + "/datasheet/" + url + "#" + anchor,
toc: true,
set_content: true });
});
subRoutes("/document-viewer/*/datasheet/*#*", function(gpn, url, anchor) {
RiotControl.trigger("ti_library_open_viewer", {
document: tiLibraryViewerStore.document,
documentLocale: tiLibraryViewerStore.documentLocale,
url: "/document-viewer/" + gpn + "/datasheet/" + url + "#" + anchor,
toc: true,
set_content: true });
});
subRoutes("/document-viewer/*/datasheet/*", function(gpn, url) {
RiotControl.trigger("ti_library_open_viewer", {
document: tiLibraryViewerStore.document,
documentLocale: tiLibraryViewerStore.documentLocale,
url: "/document-viewer/" + gpn + "/datasheet/" + url,
toc: true,
set_content: true });
});
subRoutes("/document-viewer/*/*/datasheet/*\\?*#*", function(locale, gpn, url, params, anchor) {
RiotControl.trigger("ti_library_open_viewer", {
document: tiLibraryViewerStore.document,
documentLocale: tiLibraryViewerStore.documentLocale,
url: "/document-viewer/" + locale + "/" + gpn + "/datasheet/" + url + "#" + anchor,
toc: true,
set_content: true });
});
subRoutes("/document-viewer/*/*/datasheet/*#*", function(locale, gpn, url, anchor) {
RiotControl.trigger("ti_library_open_viewer", {
document: tiLibraryViewerStore.document,
documentLocale: tiLibraryViewerStore.documentLocale,
url: "/document-viewer/" + locale + "/" + gpn + "/datasheet/" + url + "#" + anchor,
toc: true,
set_content: true });
});
subRoutes("/document-viewer/*/*/datasheet/*", function(locale, gpn, url) {
RiotControl.trigger("ti_library_open_viewer", {
document: tiLibraryViewerStore.document,
documentLocale: tiLibraryViewerStore.documentLocale,
url: "/document-viewer/" + locale + "/" + gpn + "/datasheet/" + url,
toc: true,
set_content: true });
});
subRoutes("/document-viewer/*/datasheet#*/*", function(gpn, url, fragment) {
RiotControl.trigger("ti_library_open_viewer", {
document: tiLibraryViewerStore.document,
documentLocale: tiLibraryViewerStore.documentLocale,
url: "/document-viewer/" + gpn + "/datasheet#" + url + "/" + fragment,
toc: true,
set_content: true });
});
subRoutes("/document-viewer/*/*/datasheet#*/*", function(locale, gpn, url, fragment) {
RiotControl.trigger("ti_library_open_viewer", {
document: tiLibraryViewerStore.document,
documentLocale: tiLibraryViewerStore.documentLocale,
url: "/document-viewer/" + locale + "/" + gpn + "/datasheet#" + url + "/" + fragment,
toc: true,
set_content: true });
});
subRoutes("/document-viewer/lit/html/*", function(litnum) {
RiotControl.trigger("ti_library_open_viewer", {
document: tiLibraryViewerStore.document,
documentLocale: tiLibraryViewerStore.documentLocale,
url: "/document-viewer/lit/html/" + litnum,
toc: true,
set_content: true });
});
subRoutes("/document-viewer/lit/html/*/*\\?*#*", function(litnum, url, params, anchor) {
RiotControl.trigger("ti_library_open_viewer", {
document: tiLibraryViewerStore.document,
documentLocale: tiLibraryViewerStore.documentLocale,
url: "/document-viewer/lit/html/" + litnum + "/" + url + "#" + anchor,
toc: true,
set_content: true });
});
subRoutes("/document-viewer/lit/html/*/*#*", function(litnum, url, anchor) {
RiotControl.trigger("ti_library_open_viewer", {
document: tiLibraryViewerStore.document,
documentLocale: tiLibraryViewerStore.documentLocale,
url: "/document-viewer/lit/html/" + litnum + "/" + url + "#" + anchor,
toc: true,
set_content: true });
});
subRoutes("/document-viewer/lit/html/*#*/*", function(litnum, url, anchor) {
RiotControl.trigger("ti_library_open_viewer", {
document: tiLibraryViewerStore.document,
documentLocale: tiLibraryViewerStore.documentLocale,
url: "/document-viewer/lit/html/" + litnum + "#" + url + "/" + anchor,
toc: true,
set_content: true });
});
subRoutes("/document-viewer/*/lit/html/*#*/*", function(locale, litnum, url, anchor) {
RiotControl.trigger("ti_library_open_viewer", {
document: tiLibraryViewerStore.document,
documentLocale: tiLibraryViewerStore.documentLocale,
url: "/document-viewer/" + locale + "/lit/html/" + litnum + "#" + url + "/" + anchor,
toc: true,
set_content: true });
});
subRoutes("/document-viewer/lit/html/*/*", function(litnum, url) {
RiotControl.trigger("ti_library_open_viewer", {
document: tiLibraryViewerStore.document,
documentLocale: tiLibraryViewerStore.documentLocale,
url: "/document-viewer/lit/html/" + litnum + "/" + url,
toc: true,
set_content: true });
});
subRoutes("/document-viewer/*/lit/html/*/*\\?*#*", function(locale, litnum, url, params, anchor) {
RiotControl.trigger("ti_library_open_viewer", {
document: tiLibraryViewerStore.document,
documentLocale: tiLibraryViewerStore.documentLocale,
url: "/document-viewer/" + locale + "/lit/html/" + litnum + "/" + url + "#" + anchor,
toc: true,
set_content: true });
});
subRoutes("/document-viewer/*/lit/html/*/*#*", function(locale, litnum, url, anchor) {
RiotControl.trigger("ti_library_open_viewer", {
document: tiLibraryViewerStore.document,
documentLocale: tiLibraryViewerStore.documentLocale,
url: "/document-viewer/" + locale + "/lit/html/" + litnum + "/" + url + "#" + anchor,
toc: true,
set_content: true });
});
subRoutes("/document-viewer/*/lit/html/*/*", function(locale, litnum, url) {
RiotControl.trigger("ti_library_open_viewer", {
document: tiLibraryViewerStore.document,
documentLocale: tiLibraryViewerStore.documentLocale,
url: "/document-viewer/" + locale + "/lit/html/" + litnum + "/" + url,
toc: true,
set_content: true });
});
var compose_url = function(q) {
//URL format: scheme:[//[user[:password]@]host[:port]][/path][?query][#fragment]
var tempUrl = q.url.replace("//www.ti.com/", "");
var url = tempUrl.replace("//www.ti.com/", "");
if (q.search != null) {
var params = "";
var hash = "";
var url_parts = url.split('#');
if (url_parts.length == 2) {
url = url_parts[0];
hash = url_parts[1];
}
var param_parts = url.split('?');
if (param_parts.length == 2) {
url = param_parts[0];
var parsed_params = param_parts[1].split('&');
var keyword_param_found = false;
for (var i = 0; i < parsed_params.length; i++) {
if (parsed_params[i].indexOf('search=') == 0) {
keyword_param_found = true;
parsed_params[i] = 'search=' + q.search;
}
}
if (!keyword_param_found) {
parsed_params.push('search=' + q.search);
}
params = parsed_params.join('&');
} else {
params = 'search=' + q.search;
}
if (params > "") {
url = url + '?' + params;
}
if (hash > "") {
url = url + '#' + hash;
}
}
return url;
};
tiLibraryViewerStore.compose_url_route = function(location, q) {
return compose_url(q);
};
tiLibraryViewerStore.compute_content_href = function(href, url) {
return url;
};
tiLibraryViewerStore.compose_topic_url = function(location, q) {
return compose_url(q);
};
tiLibraryViewerStore.important_notice_url = "//www.ti.com/document-viewer/ja-jp/lit/html/SPRUI04F/important_notice#ImpNotice001";
var ods_reader = riot.mount('ti-library-viewer', {
store: tiLibraryStore.list_store,
viewerstore: tiLibraryViewerStore
});
riot.route.base('/');
riot.route.start(true);
compute_document_locale = function(docName) {
var locale = 'en_US';
if (docName) {
if (docName.toLowerCase().indexOf('z')===0) {
locale = 'zh_CN';
} else if (docName.toLowerCase().indexOf('j') == 0) {
locale = 'ja_JP';
}
}
return locale;
}
open_reader = function() {
var path = window.location.pathname.split('/');
var path_minus_filename = '';
for (var i = 0; i < path.length - 1; i++) {
if (i == 0 && path[i] == '') {
console.log("double slashes found in beginning of document path; treating document path as local machine path");
continue;
}
path_minus_filename += "/" + path[i];
}
RiotControl.trigger("ti_library_open_viewer", {
documentLocale: compute_document_locale( "SPRUI04F"),
document: {
href: path_minus_filename,
lit_num: "SPRUI04F",
doc_type: "User's Guide",
show_toc: "true",
translated_doc_type: "User guide",
gpn: "",
title: "TMS320C6000 Optimizing C/C++ Compiler v8.3.x",
disclaimer: "",
product: "//www.ti.com/product/ja-jp/",
email: 'mailto:?subject=SPRUI04F TMS320C6000 Optimizing C/C++ Compiler v8.3.x&body=http://www.ti.com/document-viewer/ja-jp/lit/html/SPRUI04',
download: '//www.ti.com/jp/lit/pdf/SPRUI04F',
tistore: '//store.ti.com/Search.aspx?k=&pt=-1',
productstatusdescription: ''
},
url: "/document-viewer/ja-jp//datasheet/GUID-9BFAC774-FE99-4657-9AA8-A99E6D0E9BAA.html",
prepopulated: true,
modalOptions: {
dismissible: false
}
});
}
open_reader();