Home
last modified time | relevance | path

Searched refs:ipa (Results 1 – 25 of 34) sorted by relevance

12

/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_target.h74 FixupEntry(FixupApply apply, int ipa, int reg, int loc) : in FixupEntry()
75 apply(apply), ipa(ipa), reg(reg), loc(loc) {} in FixupEntry()
80 uint32_t ipa:4; // SC mode used to identify colors member
114 bool addInterp(int ipa, int reg, FixupApply apply);
Dnv50_ir_emit_gk110.cpp1926 code[1] |= (i->ipa & 0x3) << 21; // TODO: INTERP_SAMPLEID in emitInterpMode()
1927 code[1] |= (i->ipa & 0xc) << (19 - 2); in emitInterpMode()
1933 int ipa = entry->ipa; in interpApply() local
1938 (ipa & NV50_IR_INTERP_MODE_MASK) == NV50_IR_INTERP_SC) { in interpApply()
1939 ipa = NV50_IR_INTERP_FLAT; in interpApply()
1942 (ipa & NV50_IR_INTERP_SAMPLE_MASK) == NV50_IR_INTERP_DEFAULT && in interpApply()
1943 (ipa & NV50_IR_INTERP_MODE_MASK) != NV50_IR_INTERP_FLAT) { in interpApply()
1944 ipa |= NV50_IR_INTERP_CENTROID; in interpApply()
1947 code[loc + 1] |= (ipa & 0x3) << 21; in interpApply()
1948 code[loc + 1] |= (ipa & 0xc) << (19 - 2); in interpApply()
[all …]
Dnv50_ir.h873 unsigned ipa : 4; // interpolation mode variable
896 inline void setInterpolate(unsigned int mode) { ipa = mode; } in setInterpolate()
898 unsigned int getInterpMode() const { return ipa & 0x3; } in getInterpMode()
899 unsigned int getSampleMode() const { return ipa & 0xc; } in getSampleMode()
Dnv50_ir_emit_nvc0.cpp1693 code[0] |= i->ipa << 6; // TODO: INTERP_SAMPLEID in emitInterpMode()
1704 int ipa = entry->ipa; in interpApply() local
1709 (ipa & NV50_IR_INTERP_MODE_MASK) == NV50_IR_INTERP_SC) { in interpApply()
1710 ipa = NV50_IR_INTERP_FLAT; in interpApply()
1713 (ipa & NV50_IR_INTERP_SAMPLE_MASK) == NV50_IR_INTERP_DEFAULT && in interpApply()
1714 (ipa & NV50_IR_INTERP_MODE_MASK) != NV50_IR_INTERP_FLAT) { in interpApply()
1715 ipa |= NV50_IR_INTERP_CENTROID; in interpApply()
1718 code[loc + 0] |= ipa << 6; in interpApply()
1737 addInterp(i->ipa, SDATA(i->src(1)).id, interpApply); in emitINTERP()
1740 addInterp(i->ipa, 0x3f, interpApply); in emitINTERP()
Dnv50_ir_target.cpp443 CodeEmitter::addInterp(int ipa, int reg, FixupApply apply) in addInterp() argument
459 fixupInfo->entry[n] = FixupEntry(apply, ipa, reg, codeSize >> 2); in addInterp()
Dnv50_ir_emit_gm107.cpp2352 int ipa = entry->ipa; in interpApply() local
2357 (ipa & NV50_IR_INTERP_MODE_MASK) == NV50_IR_INTERP_SC) { in interpApply()
2358 ipa = NV50_IR_INTERP_FLAT; in interpApply()
2361 (ipa & NV50_IR_INTERP_SAMPLE_MASK) == NV50_IR_INTERP_DEFAULT && in interpApply()
2362 (ipa & NV50_IR_INTERP_MODE_MASK) != NV50_IR_INTERP_FLAT) { in interpApply()
2363 ipa |= NV50_IR_INTERP_CENTROID; in interpApply()
2366 code[loc + 1] |= (ipa & 0x3) << 0x16; in interpApply()
2367 code[loc + 1] |= (ipa & 0xc) << (0x14 - 2); in interpApply()
2410 addInterp(insn->ipa, insn->getSrc(1)->reg.data.id, interpApply); in emitIPA()
2415 addInterp(insn->ipa, 0xff, interpApply); in emitIPA()
Dnv50_ir_emit_nv50.cpp887 int ipa = entry->ipa; in interpApply() local
891 if ((ipa & NV50_IR_INTERP_SAMPLE_MASK) == NV50_IR_INTERP_DEFAULT && in interpApply()
892 (ipa & NV50_IR_INTERP_MODE_MASK) != NV50_IR_INTERP_FLAT) { in interpApply()
937 addInterp(i->ipa, i->encSize, interpApply); in emitINTERP()
Dnv50_ir.cpp576 ipa = 0; in init()
762 i->ipa = ipa; in clone()
Dnv50_ir_print.cpp581 PRINT("%s ", interpStr[ipa]); in print()
/external/llvm/tools/llvm-config/
DLibraryDependencies.inc54 { "ipa", "libLLVMipa.a", 1, { "analysis", "core", "support" } },
55 …{ "ipo", "libLLVMipo.a", 1, { "analysis", "core", "ipa", "instcombine", "scalaropts", "support", "…
60 …{ "lto", "libLLVMLTO.a", 1, { "bitreader", "bitwriter", "core", "ipa", "ipo", "instcombine", "link…
79 …{ "scalaropts", "libLLVMScalarOpts.a", 1, { "analysis", "core", "ipa", "instcombine", "support", "…
84 …{ "transformutils", "libLLVMTransformUtils.a", 1, { "analysis", "core", "ipa", "support", "target"…
/external/clang/docs/analyzer/
DIPA.txt5 inlining. The major one is -analyzer-config ipa:
7 -analyzer-config ipa=none - All inlining is disabled. This is the only mode
10 -analyzer-config ipa=basic-inlining - Turns on inlining for C functions, C++
15 -analyzer-config ipa=inlining - Turns on inlining when we can confidently find
21 -analyzer-config ipa=dynamic - Inline instance methods for which the type is
25 -analyzer-config ipa=dynamic-bifurcate - Same as -analyzer-config ipa=dynamic,
30 Currently, -analyzer-config ipa=dynamic-bifurcate is the default mode.
32 While -analyzer-config ipa determines in general how aggressively the analyzer
55 inlined under -analyzer-config ipa=none or -analyzer-config ipa=basic-inlining,
263 The -analyzer-config ipa option has five different modes: none, basic-inlining,
[all …]
/external/swiftshader/third_party/LLVM/unittests/VMCore/
DMakefile12 LINK_COMPONENTS := core support target ipa
/external/swiftshader/third_party/LLVM/unittests/Analysis/
DMakefile12 LINK_COMPONENTS := core support target analysis ipa
/external/clang/test/Analysis/inlining/
Dtest_objc_inlining_option.m1 // RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-config ipa=dynamic-bifurcate -analyzer…
DObjCImproperDynamictallyDetectableCast.m1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,debug.ExprInspection -analyzer-config ipa=dynami…
Dretain-count-self-init.m1 …zer-checker=core,osx.cocoa.RetainCount,osx.cocoa.SelfInit -analyzer-config ipa=dynamic-bifurcate -…
DObjCDynTypePopagation.m1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,debug.ExprInspection -analyzer-config ipa=dynami…
DRetainCountExamples.m1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,osx.cocoa.RetainCount -analyzer-config ipa=dynam…
DDynDispatchBifurcate.m1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,osx -analyzer-config ipa=dynamic-bifurcate -veri…
DInlineObjCClassMethod.m1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,debug.ExprInspection -analyzer-config ipa=dynami…
/external/skia/platform_tools/ios/bin/
Dios_setup.sh50 IOS_APP=iOSShell.ipa
/external/clang/test/Analysis/
Drefcnt_naming.m1 …e -analyzer-checker=core,osx.cocoa.RetainCount,alpha.core -analyzer-config ipa=none -analyzer-stor…
Dself-init.m1 // RUN: %clang_cc1 -analyze -analyzer-checker=osx.cocoa.SelfInit -analyzer-config ipa=dynamic -fno-…
/external/valgrind/coregrind/
Dm_libcfile.c1073 UInt ipa, i, j, c, any; in parse_inet_addr_and_port() local
1074 ipa = 0; in parse_inet_addr_and_port()
1085 ipa = (ipa << 8) + j; in parse_inet_addr_and_port()
1089 *ip_addr = ipa; in parse_inet_addr_and_port()
/external/valgrind/docs/internals/
D3_12_BUGSTATUS.txt234 378627 False positive with GCC 6.3.1 and -fno-ipa-cp-clone (-O3)
508 378627 False positive with GCC 6.3.1 and -fno-ipa-cp-clone (-O3)

12