Home
last modified time | relevance | path

Searched refs:linkage (Results 1 – 25 of 284) sorted by relevance

12345678910>>...12

/external/mesa3d/src/gallium/drivers/svga/
Dsvga_link.c45 struct shader_linkage *linkage) in svga_link_shaders() argument
49 for (i = 0; i < ARRAY_SIZE(linkage->input_map); i++) { in svga_link_shaders()
50 linkage->input_map[i] = INVALID_INDEX; in svga_link_shaders()
73 linkage->input_map[i] = outshader_info->num_outputs + 1 + sem_index; in svga_link_shaders()
75 free_slot = MAX2(free_slot, linkage->input_map[i] + 1); in svga_link_shaders()
83 linkage->input_map[i] = j; in svga_link_shaders()
90 linkage->num_inputs = inshader_info->num_inputs; in svga_link_shaders()
94 if (linkage->input_map[i] == INVALID_INDEX) { in svga_link_shaders()
96 linkage->input_map[i] = j; in svga_link_shaders()
105 for (i = 0; i < linkage->num_inputs; i++) { in svga_link_shaders()
[all …]
/external/llvm/test/Linker/
Dlink-flags.ll1 ; RUN: llvm-link -S %S/Inputs/linkage.b.ll %S/Inputs/linkage.c.ll | FileCheck %s -check-prefix=B -c…
2 ; RUN: llvm-link -S -only-needed %S/Inputs/linkage.b.ll %S/Inputs/linkage.c.ll | FileCheck %s -chec…
3 ; RUN: llvm-link -S -internalize %S/Inputs/linkage.b.ll %S/Inputs/linkage.c.ll | FileCheck %s -chec…
4 ; RUN: llvm-link -S -internalize -only-needed %S/Inputs/linkage.b.ll %S/Inputs/linkage.c.ll | FileC…
Dlinkage.ll1 ; RUN: llvm-as %S/Inputs/linkage.a.ll -o %t.1.bc
2 ; RUN: llvm-as %S/Inputs/linkage.b.ll -o %t.2.bc
Doverride-different-linkage.ll1 ; RUN: llvm-link %s -override %S/Inputs/override-different-linkage.ll -S | FileCheck %s
2 ; RUN: llvm-link -override %S/Inputs/override-different-linkage.ll %s -S | FileCheck %s
Doverride-with-internal-linkage-2.ll1 ; RUN: llvm-link %s -override %S/Inputs/override-with-internal-linkage-2.ll -S | FileCheck %s
2 ; RUN: llvm-link -override %S/Inputs/override-with-internal-linkage-2.ll %s -S | FileCheck %s
Doverride-with-internal-linkage.ll1 ; RUN: llvm-link %s -override %S/Inputs/override-with-internal-linkage.ll -S | FileCheck %s
2 ; RUN: llvm-link -override %S/Inputs/override-with-internal-linkage.ll %s -S | FileCheck %s
/external/clang/docs/
DLTOVisibility.rst6 referenced from outside the current LTO unit. A *linkage unit* is a set of
7 translation units linked together into an executable or DSO, and a linkage
8 unit's *LTO unit* is the subset of the linkage unit that is linked together
10 linkage unit's LTO unit is empty. Each linkage unit has only a single LTO unit.
19 ODR violation to define a class with hidden LTO visibility in multiple linkage
20 units. A class with public LTO visibility may be defined in multiple linkage
33 other classes receive hidden LTO visibility. Classes with internal linkage
38 LTO visibility regardless of its object file visibility, linkage or other
44 1. As a corollary of the above rules, if a linkage unit is produced from a
51 visibility attributes in multiple linkage units and have virtual calls
[all …]
/external/llvm/lib/LTO/
DLTO.cpp53 GlobalValue::LinkageTypes OriginalLinkage = S->linkage(); in thinLTOResolveWeakForLinkerGUID()
68 if (S->linkage() != OriginalLinkage) in thinLTOResolveWeakForLinkerGUID()
69 recordNewLinkage(S->modulePath(), GUID, S->linkage()); in thinLTOResolveWeakForLinkerGUID()
104 if (GlobalValue::isLocalLinkage(S->linkage())) in thinLTOInternalizeAndPromoteGUID()
106 } else if (!GlobalValue::isLocalLinkage(S->linkage())) in thinLTOInternalizeAndPromoteGUID()
/external/llvm/test/DebugInfo/X86/
Ddwarf-linkage-names.ll1 ; DWARF linkage name attributes are optional; verify they are missing for
9 ; $ clang++ -emit-llvm -S -g dwarf-linkage-names.cpp
15 ; With linkage names, we get an attribute for the declaration (first) entry
34 ; Without linkage names, verify there aren't any linkage-name attributes,
57 !1 = !DIFile(filename: "dwarf-linkage-names.cpp", directory: "/home/probinson/projects/scratch")
DDW_AT_linkage_name.ll17 ; Test that we do not emit a linkage name for the declaration of a destructor.
18 ; Test that we do emit a linkage name for a specific instance of it.
81 !1 = !DIFile(filename: "linkage-name.cpp", directory: "")
97 !20 = !DIFile(filename: "linkage-name.cpp", directory: "")
/external/python/cpython3/Lib/
Dplatform.py801 def architecture(executable=sys.executable, bits='', linkage=''): argument
848 linkage = l
849 return bits, linkage
853 return bits, linkage
866 linkage = 'ELF'
870 linkage = 'WindowsPE'
872 linkage = 'PE'
874 linkage = 'COFF'
876 linkage = 'MSDOS'
881 return bits, linkage
[all …]
/external/python/cpython2/Lib/
Dplatform.py1032 def architecture(executable=sys.executable,bits='',linkage=''): argument
1079 linkage = l
1080 return bits, linkage
1087 return bits,linkage
1100 linkage = 'ELF'
1104 linkage = 'WindowsPE'
1106 linkage = 'PE'
1108 linkage = 'COFF'
1110 linkage = 'MSDOS'
1115 return bits,linkage
[all …]
/external/llvm/test/DebugInfo/Generic/
Dlinkage-name-abstract.ll1 ; RUN: %llc_dwarf -O0 -filetype=obj -dwarf-linkage-names=Abstract < %s | llvm-dwarfdump -debug-dump…
10 ; Verify that the only linkage-name present is the abstract origin of the
26 ; Locate the subprogram DIE with the linkage name.
60 !1 = !DIFile(filename: "linkage-name-abstract.cpp", directory: "/home/probinson/projects/scratch")
/external/v8/src/compiler/
Dpipeline.cc400 bool OptimizeGraph(Linkage* linkage);
403 Handle<Code> GenerateCode(Linkage* linkage);
405 bool ScheduleAndSelectInstructions(Linkage* linkage, bool trim_graph);
1234 void Run(PipelineData* data, Zone* temp_zone, Linkage* linkage) { in Run()
1236 temp_zone, data->graph()->NodeCount(), linkage, data->sequence(), in Run()
1426 void Run(PipelineData* data, Zone* temp_zone, Linkage* linkage) { in Run()
1427 CodeGenerator generator(data->frame(), linkage, data->sequence(), in Run()
1564 bool PipelineImpl::OptimizeGraph(Linkage* linkage) { in OptimizeGraph() argument
1654 return ScheduleAndSelectInstructions(linkage, true); in OptimizeGraph()
1706 Linkage linkage(Linkage::ComputeIncoming(data.instruction_zone(), info)); in GenerateCodeForTesting() local
[all …]
/external/deqp/doc/testspecs/GLES31/
Dfunctional.uniform_location.txt33 - Duplicate location with various linkage and usage
34 - Overlapping structs and arrays with various linkage and usage
57 linkage.
63 Struct, nested struct and linkage cases are randomized.
/external/llvm/lib/Transforms/IPO/
DFunctionImport.cpp172 if (GlobalValue::isInterposableLinkage(GVSummary->linkage())) in selectCallee()
182 if (!GlobalValue::isLinkOnceODRLinkage(GVSummary->linkage())) in selectCallee()
291 GlobalValue::isLinkOnceODRLinkage(ResolvedCalleeSummary->linkage()) && in computeImportForFunction()
486 auto NewLinkage = GS->second->linkage(); in thinLTOResolveWeakForLinkerModule()
547 Linkage = GS->second->linkage(); in thinLTOInternalizeModule()
549 Linkage = GS->second->linkage(); in thinLTOInternalizeModule()
552 Linkage = GS->second->linkage(); in thinLTOInternalizeModule()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dir_function.cc49 llvm::Function::LinkageTypes linkage, in IrFunction() argument
58 Initialize(function_name, linkage, optimize_for_size_requested, in IrFunction()
77 llvm::Function::LinkageTypes linkage, in Initialize() argument
143 llvm_ir::CreateFunction(function_type, linkage, in Initialize()
Dir_function.h54 IrFunction(const string& function_name, llvm::Function::LinkageTypes linkage,
93 llvm::Function::LinkageTypes linkage,
/external/swiftshader/third_party/LLVM/test/Other/
Dextract.ll14 ; The linkonce_odr linkage for foo() should be changed to external linkage.
/external/libcxx/lib/abi/
DCHANGELOG.TXT33 got emitted. This change is non-ABI breaking because every "linkage unit"
100 got emitted. This change is non-ABI breaking because every "linkage unit"
116 removing these symbols is safe because every "linkage unit" which uses these
188 got emitted. This change is non-ABI breaking because every "linkage unit"
/external/clang/test/ARCMT/Inputs/
Dmodule.map163 header "linkage-merge-sub.h"
208 header "cxx-linkage-cache.h"
262 header "linkage-merge-foo.h"
265 header "linkage-merge-bar.h"
/external/clang/test/Modules/
Dlinkage-merge.m12 // expected-note@Inputs/linkage-merge-sub.h:1{{previous declaration}}
20 // expected-note@Inputs/linkage-merge-sub.h:6{{previous declaration is here}}
/external/llvm/test/Other/
Dextract.ll14 ; The private linkage for foo() should be changed to external linkage and
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.3.x/src/
Dgles2-driver-issues.txt22 dEQP-GLES2.functional.shaders.linkage.varying_type_mismatch_1
23 dEQP-GLES2.functional.shaders.linkage.varying_illegal_usage_1
24 dEQP-GLES2.functional.shaders.linkage.uniform_struct_type_conflict_1
25 dEQP-GLES2.functional.shaders.linkage.uniform_struct_type_conflict_2
26 dEQP-GLES2.functional.shaders.linkage.uniform_struct_type_conflict_3
27 dEQP-GLES2.functional.shaders.linkage.uniform_struct_precision_conflict_1
28 dEQP-GLES2.functional.shaders.linkage.uniform_struct_precision_conflict_2
29 dEQP-GLES2.functional.shaders.linkage.uniform_struct_precision_conflict_3
30 dEQP-GLES2.functional.shaders.linkage.uniform_struct_precision_conflict_4
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.4.x/src/
Dgles2-driver-issues.txt22 dEQP-GLES2.functional.shaders.linkage.varying_type_mismatch_1
23 dEQP-GLES2.functional.shaders.linkage.varying_illegal_usage_1
24 dEQP-GLES2.functional.shaders.linkage.uniform_struct_type_conflict_1
25 dEQP-GLES2.functional.shaders.linkage.uniform_struct_type_conflict_2
26 dEQP-GLES2.functional.shaders.linkage.uniform_struct_type_conflict_3
27 dEQP-GLES2.functional.shaders.linkage.uniform_struct_precision_conflict_1
28 dEQP-GLES2.functional.shaders.linkage.uniform_struct_precision_conflict_2
29 dEQP-GLES2.functional.shaders.linkage.uniform_struct_precision_conflict_3
30 dEQP-GLES2.functional.shaders.linkage.uniform_struct_precision_conflict_4

12345678910>>...12