Home
last modified time | relevance | path

Searched refs:funcInfo (Results 1 – 25 of 37) sorted by relevance

12

/external/v8/tools/
Dtickprocessor.js640 function addEntry(funcInfo) { argument
645 prevEntry.start < funcInfo.start &&
646 prevEntry.start >= libStart && funcInfo.start <= libEnd) {
647 processorFunc(prevEntry.name, prevEntry.start, funcInfo.start);
649 if (funcInfo.end &&
650 (!prevEntry || prevEntry.start != funcInfo.start) &&
651 funcInfo.start >= libStart && funcInfo.end <= libEnd) {
652 processorFunc(funcInfo.name, funcInfo.start, funcInfo.end);
654 prevEntry = funcInfo;
658 var funcInfo = this.parseNextLine();
[all …]
/external/deqp/modules/gles2/functional/
Des2fShaderOperatorTests.cpp1236 const BuiltinFuncInfo& funcInfo = outerGroupInfo.funcInfos[funcInfoNdx]; in init() local
1237 const char* shaderFuncName = funcInfo.shaderFuncName; in init()
1238 bool isBoolCase = (funcInfo.precisionMask == PRECMASK_NA); in init()
1239 …bool isIntCase = (funcInfo.input0.valueType & (VALUE_INT | VALUE_INT_VEC | VALUE_INT_GENTYPE)… in init()
1241 …bool isBoolOut = (funcInfo.outValue & (VALUE_BOOL | VALUE_BOOL_VEC | VALUE_BOOL_GENTYPE)) != … in init()
1242 bool isIntOut = (funcInfo.outValue & (VALUE_INT | VALUE_INT_VEC | VALUE_INT_GENTYPE)) != 0; in init()
1245 if (!innerGroup || (string(innerGroup->getName()) != funcInfo.caseName)) in init()
1248 innerGroup = new TestCaseGroup(m_context, funcInfo.caseName, groupDesc.c_str()); in init()
1254 …int outScalarSize = ((funcInfo.outValue == VALUE_FLOAT) || (funcInfo.outValue == VALUE_BOOL)) ? … in init()
1261 if (inScalarSize == 1) evalFunc = funcInfo.evalFuncScalar; in init()
[all …]
/external/autotest/client/deps/webgl_mpd/src/debug/
Dwebgl-debug.js217 var funcInfo = glValidEnumContexts[functionName];
218 if (funcInfo !== undefined) {
219 var funcInfo = funcInfo[numArgs];
220 if (funcInfo !== undefined) {
221 if (funcInfo[argumentIndex]) {
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderOperatorTests.cpp1835 const BuiltinFuncInfo& funcInfo = outerGroupInfo.funcInfos[funcInfoNdx]; in init() local
1836 const char* shaderFuncName = funcInfo.shaderFuncName; in init()
1837 const bool isBoolCase = (funcInfo.precisionMask == PRECMASK_NA); in init()
1838 …const bool isBoolOut = (funcInfo.outValue & (VALUE_BOOL | VALUE_BOOL_VEC | VALUE_BOOL_GENTYPE)… in init()
1839 …const bool isIntOut = (funcInfo.outValue & (VALUE_INT | VALUE_INT_VEC | VALUE_INT_GENTYPE)) !=… in init()
1840 …const bool isUintOut = (funcInfo.outValue & (VALUE_UINT | VALUE_UINT_VEC | VALUE_UINT_GENTYPE)… in init()
1843 if (!innerGroup || (std::string(innerGroup->getName()) != funcInfo.caseName)) in init()
1846 innerGroup = new TestCaseGroup(m_testCtx, funcInfo.caseName, groupDesc.c_str()); in init()
1852 …const int outScalarSize = ((funcInfo.outValue == VALUE_FLOAT) || (funcInfo.outValue == VALUE_BOOL… in init()
1860 if (inScalarSize == 1) evalFunc = funcInfo.evalFuncScalar; in init()
[all …]
/external/deqp/modules/gles3/functional/
Des3fShaderOperatorTests.cpp1874 const BuiltinFuncInfo& funcInfo = outerGroupInfo.funcInfos[funcInfoNdx]; in init() local
1875 const char* shaderFuncName = funcInfo.shaderFuncName; in init()
1876 bool isBoolCase = (funcInfo.precisionMask == PRECMASK_NA); in init()
1877 …bool isBoolOut = (funcInfo.outValue & (VALUE_BOOL | VALUE_BOOL_VEC | VALUE_BOOL_GENTYPE)) != … in init()
1878 bool isIntOut = (funcInfo.outValue & (VALUE_INT | VALUE_INT_VEC | VALUE_INT_GENTYPE)) != 0; in init()
1879 …bool isUintOut = (funcInfo.outValue & (VALUE_UINT | VALUE_UINT_VEC | VALUE_UINT_GENTYPE)) != … in init()
1882 if (!innerGroup || (string(innerGroup->getName()) != funcInfo.caseName)) in init()
1885 innerGroup = new TestCaseGroup(m_context, funcInfo.caseName, groupDesc.c_str()); in init()
1891 …int outScalarSize = ((funcInfo.outValue == VALUE_FLOAT) || (funcInfo.outValue == VALUE_BOOL)) ? … in init()
1899 if (inScalarSize == 1) evalFunc = funcInfo.evalFuncScalar; in init()
[all …]
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyISelLowering.h92 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
DWebAssemblyISelLowering.h100 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
/external/llvm/lib/Target/Mips/
DMipsFastISel.cpp201 explicit MipsFastISel(FunctionLoweringInfo &funcInfo, in MipsFastISel() argument
203 : FastISel(funcInfo, libInfo), TM(funcInfo.MF->getTarget()), in MipsFastISel()
204 Subtarget(&funcInfo.MF->getSubtarget<MipsSubtarget>()), in MipsFastISel()
206 MFI = funcInfo.MF->getInfo<MipsFunctionInfo>(); in MipsFastISel()
207 Context = &funcInfo.Fn->getContext(); in MipsFastISel()
1894 FastISel *Mips::createFastISel(FunctionLoweringInfo &funcInfo, in createFastISel() argument
1896 return new MipsFastISel(funcInfo, libInfo); in createFastISel()
DMipsISelLowering.h231 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
608 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DARMISelLowering.h349 virtual FastISel *createFastISel(FunctionLoweringInfo &funcInfo) const;
536 FastISel *createFastISel(FunctionLoweringInfo &funcInfo);
DARMFastISel.cpp97 explicit ARMFastISel(FunctionLoweringInfo &funcInfo) in ARMFastISel() argument
98 : FastISel(funcInfo), in ARMFastISel()
99 TM(funcInfo.MF->getTarget()), in ARMFastISel()
103 AFI = funcInfo.MF->getInfo<ARMFunctionInfo>(); in ARMFastISel()
105 Context = &funcInfo.Fn->getContext(); in ARMFastISel()
2114 llvm::FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo) { in createFastISel() argument
2116 const TargetMachine &TM = funcInfo.MF->getTarget(); in createFastISel()
2122 return new ARMFastISel(funcInfo); in createFastISel()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
DMipsFastISel.cpp253 explicit MipsFastISel(FunctionLoweringInfo &funcInfo, in MipsFastISel() argument
255 : FastISel(funcInfo, libInfo), TM(funcInfo.MF->getTarget()), in MipsFastISel()
256 Subtarget(&funcInfo.MF->getSubtarget<MipsSubtarget>()), in MipsFastISel()
258 MFI = funcInfo.MF->getInfo<MipsFunctionInfo>(); in MipsFastISel()
259 Context = &funcInfo.Fn->getContext(); in MipsFastISel()
2123 FastISel *Mips::createFastISel(FunctionLoweringInfo &funcInfo, in createFastISel() argument
2125 return new MipsFastISel(funcInfo, libInfo); in createFastISel()
DMipsISelLowering.h276 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
714 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DFastISel.h144 explicit FastISel(FunctionLoweringInfo &funcInfo);
/external/llvm/lib/Target/ARM/
DARMFastISel.cpp89 explicit ARMFastISel(FunctionLoweringInfo &funcInfo, in ARMFastISel() argument
91 : FastISel(funcInfo, libInfo), in ARMFastISel()
93 &static_cast<const ARMSubtarget &>(funcInfo.MF->getSubtarget())), in ARMFastISel()
94 M(const_cast<Module &>(*funcInfo.Fn->getParent())), in ARMFastISel()
95 TM(funcInfo.MF->getTarget()), TII(*Subtarget->getInstrInfo()), in ARMFastISel()
97 AFI = funcInfo.MF->getInfo<ARMFunctionInfo>(); in ARMFastISel()
99 Context = &funcInfo.Fn->getContext(); in ARMFastISel()
3059 FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo, in createFastISel() argument
3061 if (funcInfo.MF->getSubtarget<ARMSubtarget>().useFastISel()) in createFastISel()
3062 return new ARMFastISel(funcInfo, libInfo); in createFastISel()
DARMISelLowering.h401 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
690 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
DARMFastISel.cpp124 explicit ARMFastISel(FunctionLoweringInfo &funcInfo, in ARMFastISel() argument
126 : FastISel(funcInfo, libInfo), in ARMFastISel()
128 &static_cast<const ARMSubtarget &>(funcInfo.MF->getSubtarget())), in ARMFastISel()
129 M(const_cast<Module &>(*funcInfo.Fn->getParent())), in ARMFastISel()
130 TM(funcInfo.MF->getTarget()), TII(*Subtarget->getInstrInfo()), in ARMFastISel()
132 AFI = funcInfo.MF->getInfo<ARMFunctionInfo>(); in ARMFastISel()
134 Context = &funcInfo.Fn->getContext(); in ARMFastISel()
3080 FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo, in createFastISel() argument
3082 if (funcInfo.MF->getSubtarget<ARMSubtarget>().useFastISel()) in createFastISel()
3083 return new ARMFastISel(funcInfo, libInfo); in createFastISel()
DARMISelLowering.h466 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
802 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.h262 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
582 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86ISelLowering.h709 virtual FastISel *createFastISel(FunctionLoweringInfo &funcInfo) const;
982 FastISel *createFastISel(FunctionLoweringInfo &funcInfo);
DX86FastISel.cpp60 explicit X86FastISel(FunctionLoweringInfo &funcInfo) : FastISel(funcInfo) { in X86FastISel() argument
2159 llvm::FastISel *X86::createFastISel(FunctionLoweringInfo &funcInfo) { in createFastISel() argument
2160 return new X86FastISel(funcInfo); in createFastISel()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
DAArch64ISelLowering.h284 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
705 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
/external/llvm/lib/Target/X86/
DX86ISelLowering.h971 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
1236 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86ISelLowering.h1071 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
1380 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DFastISel.cpp995 FastISel::FastISel(FunctionLoweringInfo &funcInfo) in FastISel() argument
996 : FuncInfo(funcInfo), in FastISel()

12