/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_target.h | 74 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);
|
D | nv50_ir_emit_gk110.cpp | 1926 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 …]
|
D | nv50_ir.h | 873 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()
|
D | nv50_ir_emit_nvc0.cpp | 1693 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()
|
D | nv50_ir_target.cpp | 443 CodeEmitter::addInterp(int ipa, int reg, FixupApply apply) in addInterp() argument 459 fixupInfo->entry[n] = FixupEntry(apply, ipa, reg, codeSize >> 2); in addInterp()
|
D | nv50_ir_emit_gm107.cpp | 2352 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()
|
D | nv50_ir_emit_nv50.cpp | 887 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()
|
D | nv50_ir.cpp | 576 ipa = 0; in init() 762 i->ipa = ipa; in clone()
|
D | nv50_ir_print.cpp | 581 PRINT("%s ", interpStr[ipa]); in print()
|
/external/llvm/tools/llvm-config/ |
D | LibraryDependencies.inc | 54 { "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/ |
D | IPA.txt | 5 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/ |
D | Makefile | 12 LINK_COMPONENTS := core support target ipa
|
/external/swiftshader/third_party/LLVM/unittests/Analysis/ |
D | Makefile | 12 LINK_COMPONENTS := core support target analysis ipa
|
/external/clang/test/Analysis/inlining/ |
D | test_objc_inlining_option.m | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-config ipa=dynamic-bifurcate -analyzer…
|
D | ObjCImproperDynamictallyDetectableCast.m | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,debug.ExprInspection -analyzer-config ipa=dynami…
|
D | retain-count-self-init.m | 1 …zer-checker=core,osx.cocoa.RetainCount,osx.cocoa.SelfInit -analyzer-config ipa=dynamic-bifurcate -…
|
D | ObjCDynTypePopagation.m | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,debug.ExprInspection -analyzer-config ipa=dynami…
|
D | RetainCountExamples.m | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,osx.cocoa.RetainCount -analyzer-config ipa=dynam…
|
D | DynDispatchBifurcate.m | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,osx -analyzer-config ipa=dynamic-bifurcate -veri…
|
D | InlineObjCClassMethod.m | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,debug.ExprInspection -analyzer-config ipa=dynami…
|
/external/skia/platform_tools/ios/bin/ |
D | ios_setup.sh | 50 IOS_APP=iOSShell.ipa
|
/external/clang/test/Analysis/ |
D | refcnt_naming.m | 1 …e -analyzer-checker=core,osx.cocoa.RetainCount,alpha.core -analyzer-config ipa=none -analyzer-stor…
|
D | self-init.m | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=osx.cocoa.SelfInit -analyzer-config ipa=dynamic -fno-…
|
/external/valgrind/coregrind/ |
D | m_libcfile.c | 1073 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/ |
D | 3_12_BUGSTATUS.txt | 234 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)
|