Displaying 10 results from an estimated 10 matches for "templateparams".
2012 Aug 28
0
[LLVMdev] Please help to fix -Wdocumentation warninigs
...6:14: warning: parameter
'StringIndexMap' not found in the function
declaration [-Wdocumentation]
/// \param StringIndexMap [out] - Map from symbol names to offsets in the
Clang side:
/home/grib/clang-scp/llvm/tools/clang/lib/Parse/ParseTemplate.cpp:175:12:
warning: parameter 'TemplateParams' not found in the function
declaration [-Wdocumentation]
/// \param TemplateParams if non-NULL, the template parameter lists
^~~~~~~~~~~~~~
/home/grib/clang-scp/llvm/tools/clang/lib/Parse/ParseTemplate.cpp:181:12:
warning: parameter 'TemplateLoc' not found in the functi...
2018 Jul 30
2
ThinLTO Bug ?
...distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3,
> > retainedTypes: !4)
> >
> > !3 = !DIFile(filename: "f1", directory: "")
> >
> > !4 = !{!5, !9}
> >
> > !5 = !DICompositeType(tag: DW_TAG_class_type, file: !3,
> > templateParams: !6, scope: !8)
> >
> > !6 = !{!7}
> >
> >
> >
> > ; The reference to @b and struct.TA.0 (renamed) that will be loaded in
> > %a.o
> >
> >
> >
> > !7 = !DITemplateValueParameter(value: i1 (%struct.TA*)* @b)
> >
> > !8 =...
2016 Apr 30
2
Debug info scope of explicit casting type does not seem correct
...", scope: !7, file: !6, line: 16, baseType: !20)
!7 = distinct !DISubprogram(name: "foo<B>", linkageName: "_Z3fooI1BEiPv", scope: !6, file: !6, line: 15, type: !8, isLocal: false, isDefinition: true, scopeLine: 15, flags: DIFlagPrototyped, isOptimized: true, unit: !0, templateParams: !12, variables: !15)
Thanks,
Amjad
---------------------------------------------------------------------
Intel Israel (74) Limited
This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly p...
2018 Jul 28
2
ThinLTO Bug ?
...Info Version", i32 3}
!1 = !{i32 1, !"ThinLTO", i32 0}
!2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3,
retainedTypes: !4)
!3 = !DIFile(filename: "f1", directory: "")
!4 = !{!5, !9}
!5 = !DICompositeType(tag: DW_TAG_class_type, file: !3,
templateParams: !6, scope: !8)
!6 = !{!7}
; The reference to @b and struct.TA.0 (renamed) that will be loaded in %a.o
!7 = !DITemplateValueParameter(value: i1 (%struct.TA*)* @b)
!8 = distinct !DISubprogram(unit: !2)
!9 = !DICompositeType(tag: DW_TAG_array_type, identifier: "SHARED", scope: !...
2016 May 07
2
Debug info scope of explicit casting type does not seem correct
...", scope: !7, file: !6, line: 16, baseType: !20)
!7 = distinct !DISubprogram(name: "foo<B>", linkageName: "_Z3fooI1BEiPv", scope: !6, file: !6, line: 15, type: !8, isLocal: false, isDefinition: true, scopeLine: 15, flags: DIFlagPrototyped, isOptimized: true, unit: !0, templateParams: !12, variables: !15)
Thanks,
Amjad
---------------------------------------------------------------------
Intel Israel (74) Limited
This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly...
2016 Dec 07
4
[ThinLTO] Reducing imported debug metadata
...a module for function
importing. Then when parsing a METADATA_COMPOSITE_TYPE, if we are importing
a module I change the calls to buildODRType and GET_OR_DISTINCT to instead
create a type declaration:
- pass in flags Flags|DINode::FlagFwdDecl
- pass in nullptr for BaseType, Elements, VtableHolder, TemplateParams
- pass in 0 for OffsetInBits
Note that buildODRType will not mutate any existing DICompisiteType for
that identifier found in the DITypeMap to a type declaration (FlagFwdDecl)
though. This is good since we are sharing the DITypeMap with the original
(destination) module, and we don't want to...
2016 May 08
2
Debug info scope of explicit casting type does not seem correct
...", scope: !7, file: !6, line: 16, baseType: !20)
!7 = distinct !DISubprogram(name: "foo<B>", linkageName: "_Z3fooI1BEiPv", scope: !6, file: !6, line: 15, type: !8, isLocal: false, isDefinition: true, scopeLine: 15, flags: DIFlagPrototyped, isOptimized: true, unit: !0, templateParams: !12, variables: !15)
Thanks,
Amjad
---------------------------------------------------------------------
Intel Israel (74) Limited
This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly...
2016 Dec 07
2
[ThinLTO] Reducing imported debug metadata
...g. Then when parsing a METADATA_COMPOSITE_TYPE, if we are importing
> a module I change the calls to buildODRType and GET_OR_DISTINCT to instead
> create a type declaration:
> > - pass in flags Flags|DINode::FlagFwdDecl
> > - pass in nullptr for BaseType, Elements, VtableHolder, TemplateParams
> > - pass in 0 for OffsetInBits
> >
> > Note that buildODRType will not mutate any existing DICompisiteType for
> that identifier found in the DITypeMap to a type declaration (FlagFwdDecl)
> though. This is good since we are sharing the DITypeMap with the original
> (de...
2016 Dec 07
4
[ThinLTO] Reducing imported debug metadata
...g. Then when parsing a METADATA_COMPOSITE_TYPE, if we are importing
> a module I change the calls to buildODRType and GET_OR_DISTINCT to instead
> create a type declaration:
> > - pass in flags Flags|DINode::FlagFwdDecl
> > - pass in nullptr for BaseType, Elements, VtableHolder, TemplateParams
> > - pass in 0 for OffsetInBits
> >
> > Note that buildODRType will not mutate any existing DICompisiteType for
> that identifier found in the DITypeMap to a type declaration (FlagFwdDecl)
> though. This is good since we are sharing the DITypeMap with the original
> (de...
2014 Jul 21
4
[LLVMdev] LTO type uniquing: ODR assertion failure
On Mon, Jul 21, 2014 at 3:48 PM, Manman Ren <manman.ren at gmail.com> wrote:
>
>
>
> On Mon, Jul 21, 2014 at 3:41 PM, David Blaikie <dblaikie at gmail.com> wrote:
>>
>> On Mon, Jul 21, 2014 at 3:35 PM, Manman Ren <manman.ren at gmail.com> wrote:
>> >
>> >
>> >
>> > On Mon, Jul 21, 2014 at 1:14 PM, David Blaikie